/* WRITE YOUR CUSTOM CSS CODE. THIS WILL NOT BE DELETED ON UPDATE. */

:root {
  /* --primary-color: #d2aa67; */
  --primary-color: #181d24;
  /* --primary-color: #BC9664; */

  --viewport-height: calc(var(--vh, 1vh) * 100) !important;
  --transition: all 0.38s cubic-bezier(0.17, 0.84, 0.44, 1);

  --header-height: --header-height;

  --base-color: #739fc2;
  --secondary-color: #bc9664;
  --gray-color: #989898;
  --gradient: linear-gradient(182deg, var(--secondary-color) 0%, rgb(0 0 0) 100%);
  --gradient-h: linear-gradient(to right, var(--secondary-color) 70%, rgb(0 0 0) 100%);
  --tertiary-color: #050b1c;
  --dynamic-height: calc(var(--vh, 1vh) * 100);
  --transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}



/* Raleway font */
@font-face {
  font-family: Raleway;
  src: url(/css/fonts/Raleway/Raleway-Light.ttf);
  font-display: swap;
  font-weight: 100;
}

@font-face {
  font-family: Raleway;
  src: url(/css/fonts/Raleway/Raleway-Regular.ttf);
  font-display: swap;
  font-weight: 300;
}

@font-face {
  font-family: Raleway;
  src: url(/css/fonts/Raleway/Raleway-Medium.ttf);
  font-display: swap;
  font-weight: 500;
}

@font-face {
  font-family: Raleway;
  src: url(/css/fonts/Raleway/Raleway-SemiBold.ttf);
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: Raleway;
  src: url(/css/fonts/Raleway/Raleway-Bold.ttf);
  font-display: swap;
  font-weight: 900;
}

@font-face {
  font-family: Montserrat;
  src: url(/css/fonts/Montserrat/Montserrat-Light.ttf);
  font-display: swap;
  font-weight: 100;
}

@font-face {
  font-family: Montserrat;
  src: url(/css/fonts/Montserrat/Montserrat-Regular.ttf);
  font-display: swap;
  font-weight: 300;
}

@font-face {
  font-family: Montserrat;
  src: url(/css/fonts/Montserrat/Montserrat-Medium.ttf);
  font-display: swap;
  font-weight: 500;
}

@font-face {
  font-family: Montserrat;
  src: url(/css/fonts/Montserrat/Montserrat-SemiBold.ttf);
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: Montserrat;
  src: url(/css/fonts/Montserrat/Montserrat-Bold.ttf);
  font-display: swap;
  font-weight: 900;
}

body p,
a,
span,
h1,
h2,
h3,
h4,
h5 {
  font-family: "Raleway";
  font-weight: 300;
}
h1,
h2,
h2 span,
h3,
h4,
h5 {
  font-family: "Montserrat";
  font-weight: 300;
}

main {
  min-height: calc(var(--dynamic-height));
}

h1 {
  font-family: "Montserrat";
}

.section-title > * {
  font-family: "Montserrat";
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.section-title strong {
  background: -webkit-linear-gradient(#eee, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle>* {
  font-size: 1.375rem;
  font-weight: 300;
}

.headline>* {
  font-size: 1.275rem;
  color: var(--gray-color);
  margin-bottom: 20px;
  font-weight: 600;
}

a:hover {
  text-decoration: none;
}
.container {
  /* width: 90%;
  max-width: 1600px; */
}

.padding {
  padding-left: 7vw;
  padding-right: 7vw;
}

.padding-left {
  padding-left: 7vw;
}

.padding-right {
  padding-right: 7vw;
}

.mw-7 {
  max-width: 700px;
  margin: auto;
}

.common-desc>* {
  color: var(--gray-color);
  font-size: 1.2rem;
}

.text-gray {
  color: var(--gray-color);
}

.text-gray strong {
  color: #fff;
}

.text-gray a,
.common-desc a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

/* Buttons */
button:focus,
.btn:focus,
.btn:active {
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

.category-button a{
    background: var(--secondary-color);
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    font-size: 1.3rem;
    color: white !important;
    font-weight: 400 !important;
}
.category-button a:hover{
    background: var(--secondary-color) !important;
    border-radius: 10px !important;
    font-size: 1.350rem !important;
    color: white !important;
    font-weight: 500 !important;
    overflow: hidden;
}

.btn {
  position: relative;
  box-shadow: none;
  outline: none;
  border-radius: 30px;
  transition: var(--transition);
}

.btn-primary {
  border: none;
  padding: 13px 60px;
  color: #000;
  background-color: #fff;
  font-weight: 600;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #ffffffbf;
  color: #000 !important;
}

.btn-primary:active {
  color: #000 !important;
  background-color: #fff !important;
}

.btn-primary.white {
  color: #000;
  background-color: #fff;
}

.btn-primary.white:active {
  color: #000;
  background-color: #fff;
}

.btn-secondary {
  background-color: transparent;
  border: none;
  color: #fff;
  border-radius: 0;
  padding: 0;
  border-bottom: 2px solid #fff;
}

.btn-secondary:hover {
  background-color: transparent;
}

.btn-secondary:active,
.btn-secondary:focus {
  background-color: transparent !important;
}

.uppercase {
  text-transform: uppercase;
}

.btn-menu.btn-secondary {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0;
  border-radius: 0;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--primary-color);
}

.btn.gold {
  color: var(--primary-color);
}

.btn.radius {
  border-radius: 30px;
}

.btn.shadow:after {
  content: "";
  position: absolute;
  top: -2px;
  left: -10px;
  z-index: -2;
  width: calc(100% + 20px);
  height: calc(100% + 4px);
  background-image: linear-gradient(225deg, #32c5ff, #b620e0 51%, #f7b500);
  border-radius: 100%;
  opacity: 0.66;
  filter: blur(1em) saturate(1.18);
  transition: transform 0.2s;
}

.btn.shadow:hover:after {
  transform: scale(0.8);
}

.btn-link {
  color: #ffffff82;
  text-decoration: none !important;
}

.btn-link:hover {
  color: #fff;
  background: #ffffff12;
}

body.dark {
  background-color: #000;
}

.page-header {
  position: relative;
  min-height: 60vh;
}

.page-header-background:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.page-header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  background-position: bottom;
}

/* Contact Page */
.contact-page-section {
  padding: 4rem;
  transform: translateY(-85px);
  border-radius: 20px;
}

.contact-page-section a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-size: 1.275rem;
  padding: 3rem;
  color: var(--gray-color);
  transition: var(--transition);
}
.contact-page-section a:hover {

  color: #fff;
  
}

.details .module.module-text:hover {
  color: #fff;
  background-color: var(--secondary-color);
}

.accent>* {
  display: flex;
  align-items: center;
  gap: 20px;
}

.accent>*:before {
  content: "";
  position: relative;
  display: inline-block;
  width: 5rem;
  height: 2px;
  background: var(--secondary-color);
}

.contact-page-section .details {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid #ffffff14;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
}

.contact-page-section .details .module-text {
  border-right: 1px solid #ffffff14;
}

.contact-page-section .details .module-text:last-child {
  border-right: none;
}

.contact-page-section .details p {
  margin-bottom: 0;
}


/*  */







/* Contact Form */
input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]+.checkbox-text {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
}

/* 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;
} */

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-page-section .contact-form {
  padding-left: 4rem;
}

.contact .contact-page-section .contact-form {
  padding-left: 0;
}

.contact-form .container {
  width: 100%;
}

.contact-form .col-lg-12 {
  padding: 0;
}

.contact-form .form-group {
  position: relative;
  margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border: 1px solid var(--secondary-color);
  border-radius: 0;
  padding: 30px 20px;
  color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: transparent;
  outline: none;
  box-shadow: none;
}

.contact-form .form-group.focus input,
.contact-form .form-group.focus textarea {
  border-color: #fff;
}

.contact-form div:not(.agreement-radio) label {
  color: var(--gray-color);
  margin-bottom: 0;
  transform: translate(20px, 50%);
  background: #121212;
  padding: 0 15px;
}

.contact-form .agreement-radio {
  margin-top: 2rem;
  padding: 2.5rem;
}

.contact-form .agreement-radio label {
  color: var(--gray-color);
}

/* Loader */
.loader-wrapper {
  position: fixed;
  /* display: none; */
  display: grid;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
}

.loader-wrapper .mask,
.loader-wrapper .button-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.academy-form-section .contact-form .agreement-radio{
  padding: 1.5rem;
}

.academy-form-section .contact-form button.btn.btn-primary {
    background: var(--secondary-color);
    color: #ffffff;
    border: none;
    text-transform: uppercase;
    padding: 10px 18px;
    outline: none;
    box-shadow: none;
    transition: var(--transition);
    letter-spacing: 1px;
    width: 100%;
    border-radius: 3px;
}

.contact-page-section button.btn.btn-primary {
    background: var(--secondary-color);
    color: #ffffff;
    border: none;
    text-transform: uppercase;
    padding: 10px 18px;
    outline: none;
    box-shadow: none;
    transition: var(--transition);
    letter-spacing: 1px;
    width: -webkit-fill-available;
    border-radius: 3px;
}

.loader-wrapper .button-mask {
  z-index: -1;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  row-gap: 5vh;
}

.loader-logo {
  opacity: 0;
}

.loader-logo svg {
  width: 100%;
  max-width: 250px;
  height: auto;
}

.loader-logo .upper-letter {
  stroke: #ffffff;
  stroke-width: 2px;
  fill: none;
  stroke-miterlimit: 10;
}

.loader-logo .lower-letter {
  stroke-width: 0.5px;
  stroke: #d59c40;
  fill: none;
  stroke-miterlimit: 10;
}

.loader-language {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
}

.loader-language .message {
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--gray-color);
}

.loader-language .languages {
  display: flex;
  justify-content: center;
  gap: 15px;
  /* background: #ffffff1c; */
  /* border-radius: 30px; */
  /* padding: 2px; */
  /* margin: auto; */
  /* min-width: 200px; */
  /* border: 1px solid #393939; */
}

/* .loader-language .languages input {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  border: 0;
  overflow: hidden;
} */
/* .loader-language .languages label {
  position: relative;
  width: 100%;
  padding: 3px 16px;
  border-radius: 30px;
  overflow: hidden;
  letter-spacing: 1px;
  color: #fff;
  background-color: #ffffff1c;
  text-align: center;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  cursor: pointer;
  margin-bottom: 0;
  transition: var(--transition);
} */
/* .loader-language .languages input:checked + label {
	box-shadow: none;
  color: #000;
  font-weight: 600;
} */
.loader-language .lang-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff1a;
  padding: 3px 15px 3px 3px;
  border-radius: 30px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
}

.loader-language .lang-link:hover {
  background-color: #fff;
  color: #000;
}

.loader-language .lang-link:before {
  width: 35px;
  height: 35px;
}

.loader-language .lang_url_English:before {
  content: url("../uploads/icons/en.svg");
}

.loader-language .lang_url_Espanõl:before {
  content: url("../uploads/icons/es.svg");
}

.loader-language .languages div.active {
  font-weight: 500;
}

.loader-language .next {
  width: 100%;
  max-width: 200px;
  margin: auto;
  border-radius: 30px;
}

/* --------------- Header --------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: var(--transition);
}

[data-pagetype="account"] {
  background-color: #000;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px calc(2.5% + 15px);
}

.header-menu {
  display: flex;
  align-items: center;
}

.btn-menu {
  display: flex;
  align-items: center;
  border: none;
  box-shadow: none;
  outline: 0;
  background: 0 0;
  margin-right: 50px;
}

.btn-menu .icon-bars {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 25px;
}

.btn-menu .icon-bar {
  width: 100%;
  height: 1px;
  background: #fff;
  margin-bottom: 5px;
  transition: var(--transition);
}

.btn-menu .icon-bar.middle-bar {
  width: 50%;
}

.btn-menu:hover .icon-bar.middle-bar {
  width: 100%;
}

.btn-menu .icon-bar.bottom-bar {
  margin-bottom: 0;
}

.btn-menu .sr-only {
  position: relative;
  width: auto;
  height: auto;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 600;
  margin-left: 10px;
  letter-spacing: 1px;
  transition: var(--transition);
}

.navbar-brand {
  display: grid;
  align-items: center;
  position: relative;
  margin: 0;
  padding: 0;
}

.logo {
  grid-row: 1/2;
  grid-column: 1/2;
  max-height: 60px;
  transition: var(--transition);
}

.nav-item {
  list-style-type: none;
}

.header-inner .nav-item {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-item .login {
  display: flex;
  align-items: center;
}

.header-contact {
  display: flex;
  justify-content: flex-end;
}

.header-contact-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.header-contact-inner a {
  padding-top: 6px;
  /* padding-bottom: 6px; */
}

.header-contact-inner .language-select a {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

.header-contact-inner .language-select .dropdown-menu {
  border: none;
  padding: 0;
  min-width: auto;
  margin: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px -5px #000;
}

.header-contact-inner .language-select .dropdown-menu li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-contact-inner .language-select .dropdown-menu a {
  padding: 5px 10px;
  color: #000;
}

.header-contact-inner .language-select:hover .dropdown-menu {
  display: flex;
}

.header-contact-inner .book-now a {
  padding: 6px 30px;
}

header .menu-dropdown .dropdown-menu {
  min-width: 100%;
  left: auto;
  right: 0;
  opacity: 0;
  transform: translateY(-20px) scale(0);
  transform-origin: top right;
  margin-top: 0;
  border-radius: 20px 0 20px 20px;
  background: var(--secondary-color);
  border: none;
  margin-top: -1px;
  padding-top: 15px;
  padding-bottom: 15px;
  box-shadow: 0 0 20px -8px #000;
  pointer-events: none;
  transition: var(--transition);
}

header #dropdownMenuButton {
  background-color: var(--secondary-color) !important;
}

header #dropdownMenuButton:after {
  display: none;
}

header .menu-dropdown .dropdown-menu li,
header .menu-dropdown .dropdown-menu li form {
  width: 100%;
}

header .menu-dropdown .dropdown-menu li:hover {
  background-color: #00000012;
}

header .menu-dropdown .dropdown-menu li a,
header .menu-dropdown .dropdown-menu li button {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: #000;
  font-weight: 600;
  width: 100%;
  padding: 6px 1rem !important;
  border: none;
}

header .menu-dropdown .dropdown-menu li a lord-icon {
  width: 25px;
  height: 25px;
}

header .menu-dropdown:hover>.dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

header .dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-weight: 900;
  text-transform: uppercase;
  border: none;
  transition: var(--transition);
  font-size: 1.2rem;
}

header .dropdown:hover .dropdown-toggle {
  border-radius: 30px 30px 0 0;
}

#main-menu {
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--gradient);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: var(--transition);
  z-index: -1;
}

#main-menu .left-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 49%;
  min-width: 300px;
  padding: 1.8rem calc(2.5% + 15px);
  padding-top: 150px;
}

#main-menu ul {
  margin-left: 0 !important;
  align-items: flex-start;
  flex-direction: column;
  padding-bottom: 11px;
}

#main-menu a {
  color: #fff;
  font-size: 45px;
  font-weight: 400;
  font-family: "Montserrat";
  padding: 0;
  transition: var(--transition);
}

#main-menu a:hover {
  color: var(--primary-color);
}

.secondary-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.secondary-menu .book-now a {
  width: 100%;
  font-size: 1rem !important;
  padding: 10px 20px !important;
  color: #000 !important;
  background: var(--primary-color);
}

.menu-social-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    font-size: 1.2rem;
    opacity: 0.6;
    color: white;
}

.menu-social-wrapper .line {
  width: 99%;
  height: 1px;
  background-color: var(--primary-color);
}

#main-menu .social-media-items {
  flex-direction: row;
  gap: 5px;
  padding-bottom: 0;
}

#main-menu .social-media-items a {
  display: flex;
  border-radius: 100%;
  overflow: hidden;
}

#main-menu .social-media-items a svg {
  width: 40px;
  height: auto;
  background-color: #ffffff1c;
}

#main-menu .social-media-items a svg path {
  stroke: white;
}

#main-menu .social-media-items a:hover {
  scale: 1.2;
}

#main-menu .right-side {
  align-items: center;
  justify-content: center;
  width: 51%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  column-gap: 40px;
}

.menu-images .menu-static-image.show {
  opacity: 1;
}

.menu-images-col {
  display: flex;
  flex-wrap: wrap;
}

.menu-images-col-transform {
  width: 100%;
}

.left .menu-images-col-transform {
  transform: translateY(-47.5vh);
  transition: var(--transition);
  transition-duration: 1s;
}

.right .menu-images-col-transform {
  transform: translateY(calc(-100% + 142vh - 10vh));
  transition: var(--transition);
  transition-duration: 1s;
}

.menu-images-col-transform .nav-item-image {
  height: 65vh;
}

.menu-images figure {
  position: relative;
  width: 100%;
  margin: 0;
  transition: var(--transition);
  padding: 20px 0;
  border-radius: 20px;
  overflow: hidden;
}

.menu-images figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
  border-radius: 20px;
  transition: var(--transition);
}

.menu-images figure.show img {
  filter: brightness(1);
}

/* Header Fixed */
header.fixed {
  background-color: #000;
}

header.fixed .logo-dark {
  opacity: 0;
}

header.fixed .btn-menu .sr-only {
  color: #fff;
}

header.fixed .btn-menu .icon-bar {
  background: #fff;
}

header.fixed .header-contact-inner .language-select a {
  color: #fff;
}

header.fixed .header-contact-inner .language-select .dropdown-menu a {
  color: #000;
}

/* Opened Menu */
body.menu-opened {
  overflow: hidden;
}

.menu-opened #main-menu {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.menu-opened .btn-menu .icon-bar {
  background: #fff;
}

.menu-opened .btn-menu .sr-only {
  color: #fff;
}

.menu-opened .logo-dark {
  opacity: 0 !important;
}

.menu-opened .logo-white {
  opacity: 1 !important;
}

.menu-opened .header-contact-inner .language-select a {
  color: #fff;
}

.menu-opened .header-contact-inner .language-select .dropdown-menu a {
  color: #000;
}

.intro-section {
  /* min-height: calc(var(--dynamic-height) + 50px);
  display: grid; */
  /* grid-template-columns: 1fr minmax(400px, 30%); */
  /* grid-template-rows: 90px 1fr auto 50px;
  align-items: center;
  overflow: hidden; */
  /* background: linear-gradient(182deg, rgba(233,208,205,1) 0%, rgba(179,185,201,1) 100%); */
  /* background: var(--gradient);
  padding-left: 7vw;
  padding-bottom: 50px; */
}

.header-section {
  background: var(--gradient);
  padding-left: 7vw;
  padding-bottom: 250px;
  padding-top: 250px;
  height: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-section .headline {
  display: flex;
  align-items: center;
  grid-column: 1/3;
  gap: 30px;
}

.header-section .headline>* {
  color: var(--primary-color);
  margin-bottom: 0;
}

.header-section .headline:before {
  content: "";
  position: relative;
  display: inline-flex;
  height: 2px;
  width: 15.5%;
  background: var(--primary-color);
}

.header-section p {
  color: #fff;
  width: 80%;
}

/* .header-vacation .module-fickle {
  background-color: #fff;
  width: fit-content;
  padding: 20px;
  backdrop-filter: blur(5px);

} */


.header-vacation {
  /* background-color: #141414; */
  /* backdrop-filter: blur(52px);
  background-color: rgba(255, 255, 255, 0.50); */
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 20px;
  /* box-shadow: 1px -1px 5px 1px var(--secondary-color) !important; */
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.col-lg-7.header-vacation {
  background: var(--gradient-h);
}

.header-vacation .module-fickle {
  /* display: flex;
  flex-direction: column; */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover !important;
  max-width: 350px !important;
  width: 300px;
  padding: 0px;
  /* background: #212529; */
  /* background: transparent; */

  /* background-color: rgba(255, 255, 255, 0.50); */

  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  /* height: 100%; */
  min-height: 550px;
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  /* box-shadow: 1px -1px 1px -1px #fff!important; */
  margin-right: 20px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  right: -100%;
  /* opacity: 0; */
  flex-grow: 1;


  background-color: rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);

}

/* .over-image {
  filter: brightness(100%) contrast(100%) saturate(20%) blur(0px) hue-rotate(0deg);
}

.over-image:hover {
  filter: none;
} */


.over-image {
  position: relative;
  overflow: hidden;
  filter: brightness(100%) contrast(100%) saturate(20%) blur(0px) hue-rotate(0deg);
  min-height: 605px !important;
}

.over-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease-in-out;
  z-index: -1;
}

.over-image:hover::before {
  transform: scale(1.1);
  /* Aplicați zoom de 110% */
}

.over-image:hover {
  filter: none;
}


.header-vacation .fickle-item.fickle-image {
  order: 1;
  width: 100%;

  /* height: 100%; */
  /* min-height: 300px; */

  /* object-fit: cover; */
  /* object-position: top; */
  filter: brightness(100%) contrast(100%) saturate(20%) blur(0px) hue-rotate(0deg);
  transition-duration: 0.3s;
}

/* .fickle-image img {
  max-height: 350px;
} */

.header-vacation .fickle-item.fickle-image img {
  background-size: cover;
  background-repeat: no-repeat;
}

.header-vacation .fickle-item.fickle-subtitle {
  margin-top: 2rem;
}

.header-vacation .fickle-item.fickle-subtitle {
  color: #f7b500;
  font-weight: bold;
  font-family: 'Montserrat';
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  padding-bottom: 10px;
  /* letter-spacing: 2px; */

}

/* .header-vacation .fickle-item.fickle-image:hover {
  filter: none;
} */

.header-vacation .fickle-item.fickle-image {
  order: 1;
  width: 100%;
  filter: brightness(100%) contrast(100%) saturate(20%) blur(0px) hue-rotate(0deg);
  transition: transform 0.3s ease-in-out;
  /* Adaugă tranziție lină */
}

.header-vacation .fickle-item.fickle-image:hover {
  filter: none;
  transform: scale(1.1);
  /* Aplicați zoom de 110% */
}


/* .header-vacation .fickle-header {
  order: 2; 
  padding-left: 10px;
  margin-top: -50px !important;
  padding-right: 10px;
  padding-left: 10px;
  text-align: center;
  margin-bottom: 50px !important;

  background-color: rgba(0, 0, 0, 0.7); 
  color: rgba(255, 255, 255, 0.8); 
  backdrop-filter: blur(10px);
} */


.header-vacation .fickle-header {
  order: 2;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  margin-bottom: 50px !important;



}


.header-vacation .fickle-header h4 {
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  text-align: center !important;
  letter-spacing: 2px;

  /* transition: 0.9s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; */
  /* padding: 10px 0; */
}


.header-vacation .fickle-header h4 a:hover {
  color: var(--secondary-color);
}

.header-vacation .fickle-item.fickle-text-content {
  display: flex;
  justify-content: center;
  /* background-color: rgba(0, 0, 0, 0.7); 
  color: rgba(255, 255, 255, 0.8); 
  backdrop-filter: blur(10px); */
}

.header-vacation .fickle-item.fickle-text-content p a {
  /* text-align: center;
  width: 100% !important;
  margin-top: 15px; */
  display: block;
  padding: 10px 25px;
  color: #fff !important;
  text-align: center;
  background-color: var(--primary-color);
  margin-top: auto;
}

.header-vacation .fickle-content {
  order: 3;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}




@media (max-width: 1400px) {
  .res-d-none {
    display: none !important;
  }
}

@media (max-width: 992px) {
  .res-d-none {
    display: block !important;
  }

  .header-vacation {
    margin-top: 0;
  }

  #anchor {
    margin-top: 300px !important;

  }
}


@media (max-width: 765px) {
  .res-d-none {
    display: none !important;
  }

  /* .header-vacation {
    margin-top: 0;
  }
  #anchor {
    margin-top: 300px !important;

  } */
}

@media (max-width: 576px) {
  .res-d-none {
    display: none !important;
  }

  .over-image {
    display: none !important;
  }

  /* .header-vacation {
    margin-top: 0;
  }
  #anchor {
    margin-top: 300px !important;

  } */
  .intro-text>* {
    font-size: 1.5rem;
  }

  .header-section p {
    width: 100%;
  }
}



.intro-title {
  /* display: grid; */
  grid-template-columns: auto 1fr;
  align-content: center;
  row-gap: 15px;
  column-gap: 55px;
  align-items: center;
  grid-row: 2/3;
  height: 100%;
  grid-template-columns: 2fr 1fr;

}

.intro-title .headline {
  display: flex;
  align-items: center;
  grid-column: 1/3;
  gap: 30px;
}

.intro-title .headline>* {
  color: var(--primary-color);
  margin-bottom: 0;
}

.intro-title .headline:before {
  content: "";
  position: relative;
  display: inline-flex;
  height: 2px;
  width: 15.5%;
  background: var(--primary-color);
}

.intro-text {
  grid-column: 1/3;
}

.text-footer {
  font-family: "Montserrat" !important;
}

.text-footer,
.text-footer2nd {
  font-size: 19px;

}

/* .intro-header {
  grid-row: 2;
} */
.intro-text>* {
  display: flex;
  /* flex-direction: column; */
  /* font-size: 10vh; */
  /* font-size: calc(3vh + 3.5vw); */
  color: var(--primary-color);
  /* letter-spacing: -3px; */
  overflow: hidden;
}

.intro-text>* span {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.intro-text strong {
  color: #fff;
}

.intro-section .video-button {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

.intro-section .video-button span {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px;
  background-color: #fff;
  border-radius: 100%;
  box-shadow: 0px 5px 12px -5px #000;
}

.intro-section .video-button span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  box-shadow: 0 0 0px 10px #ffffff29;
  border-radius: 100%;
}

.intro-scroll {
  grid-row: 3/4;
}


.intro-scroll .scroll-down a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

/* Intro slider */
.intro-slider-col {
  grid-column: 2/3;
  grid-row: 1/5;
  height: 100%;
  border-radius: 50px 0 0 50px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 0 45px -20px #000;
}

.intro-slider {
  border-radius: 50px 0 0 50px;
  overflow: hidden;
}

.intro-slider,
.intro-slider .slick-list,
.intro-slider .slick-track {
  height: 100%;
}

.intro-slider .slick-slide {}

.intro-slider .slick-slide-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.intro-slider .slide-slick-title {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  top: 90px;
  right: 0;
  bottom: 50px;
  z-index: 9;
  /* opacity: .7; */
  mix-blend-mode: color-burn;
}

.intro-slider .slide-slick-title>* {
  font-size: 5vw;
  line-height: 0.75;
  font-family: "Montserrat";
  color: #234231;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  margin: 0;
}

.intro-slider .slide-slick-image {
  height: 100%;
  margin-bottom: 0;
}

.intro-slider .slide-slick-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.intro-slider .slide-slick-image img {
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slider-progress-wrapper {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 50px;
  left: calc(2.5vw + 15px);
  right: calc(2.5vw + 15px);
  background: #00000042;
  backdrop-filter: blur(10px);
  justify-content: center;
  padding: 10px 20px;
  justify-content: space-between;
  border-radius: 30px;
}

.slide-progress-full {
  display: flex;
  align-items: center;
  width: 50%;
  height: 2px;
  background-color: #ffffff45;
}

.slide-progress-line {
  height: 4px;
  background-color: #fff;
  border-radius: 10px;
  transition: var(--transition);
}

.slick-arrow {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.slick-arrow-left lord-icon {
  transform: rotate(-180deg);
}

#about-us-section {
  position: relative;
  height: calc(100vh - 89px);
  overflow: hidden;
  flex-wrap: nowrap;
  justify-content: space-between;
}

#about-us-section .col-lg-4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: var(--transition);
}

#about-us-section .col-lg-8 {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding: 0;
  transition: var(--transition);
}

#about-us-section .module-image {
  height: 100%;
}

#about-us-section img {
  max-height: 100%;
  height: 100%;
  object-fit: cover;
}

.textFromOpacity {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.textFromOpacity .inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.textFromOpacity .inner>div {
  display: flex;
  align-items: center;
}

.textFromOpacity p {
  margin-bottom: 0;
}

.services-slider {
  padding-right: 0;
}

.services-slider .slick-list {
  padding-left: 0 !important;
}

.services-slider .slick-slide {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 3rem 8rem;
  border-radius: 20px;
  background-color: #141414;
  margin-right: 50px;
  transition: var(--transition);
}

/* .services-slider .slick-slide:not(.slick-active), */
.services-slider .slick-slide:not(.slick-current) {
  opacity: 0.5;
  pointer-events: none;
}

.services-slider .slick-slide:not(.slick-current) .fickle-image {
  filter: blur(5px);
}

.services-slider .slick-arrow {
  position: absolute;
  top: 50%;
  background: #141414;
  padding: 10px;
  border-radius: 100%;
}

.services-slider .slick-arrow-left {
  left: 0;
  transform: translate(-50px, -50%);
}

.services-slider .slick-arrow-right {
  right: 7%;
  transform: translate(50px, -50%);
}

.services-slider .fickle-header {
  display: flex;
  align-items: center;
  gap: 20px;
  order: 1;
}

.services-slider .fickle-header:before {
  content: "";
  position: relative;
  display: inline-block;
  width: 5rem;
  height: 2px;
  background: var(--primary-color);
}

.services-slider .fickle-title>* {
  font-size: 2rem;
  font-family: "Montserrat";
  margin-bottom: 0;
}

.services-slider .fickle-content {
  order: 2;
  max-width: 500px;
}

.services-slider .fickle-text-content>* {
  font-size: 1.1rem;
  color: var(--gray-color);
  margin-bottom: 0;
}

.services-slider .fickle-image {
  order: 3;
  position: relative;
  padding-top: 65%;
  margin-bottom: 0;
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
}

.services-slider .fickle-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 100%;
  height: 100%;
  object-fit: cover;
}

.services-slider .fickle-image img:hover {
  animation: zoom 1s ease-out alternate;
  animation-direction: alternate;
}

@keyframes zoom {
  0% {
    filter: blur(0);
    transform: scale(1);
  }

  50% {
    filter: blur(5px);
    transform: scale(1.1);
  }

  100% {
    filter: blur(0);
    transform: scale(1);
  }
}

.slick-dots {
  bottom: auto;
  margin-top: 10px;
  text-align: left;
}

.slick-dots li {
  width: 30px;
  padding: 5px 0;
}

.slick-dots li button {
  width: 100%;
  height: 2px;
  padding: 0;
  background-color: #fff;
}

.slick-dots li button:before {
  display: none;
}

.slick-dots li:not(.slick-active) button {
  background-color: var(--gray-color);
  opacity: 0.5;
}

/* HP Contact Section */
#contact-section {
  position: relative;
  min-height: 100vh;
}

.contact-image-col .module-image {
  position: relative;
  height: 100%;
  /* display: flex;
  align-items: flex-end; */
}

.contact-image-col .module-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.contact-image-col .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(18 18 18) 100%);
  z-index: 1;
}

.contact-image-col .module-image img {
  transform: rotateY(180deg);
  height: 100%;
  object-fit: cover;
  transition: all 0.35s linear;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 7rem;
}

.contact-info-col ul {
  display: flex;
  gap: 40px;
  list-style-type: none;
  padding-left: 0;
  margin-top: 20px;
  border-top: 1px solid #ffffff24;
  border-bottom: 1px solid #ffffff24;
  padding: 20px 0;
}

.contact-info-col ul a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-color);
  transition: var(--transition);
}

.contact-info-col ul a:hover {
  color: #fff;
}

/* Services Page */
#services-intro-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: var(--dynamic-height);
  padding-top: 90px;
  overflow: hidden;
}

#services-intro-section .section-subtitle {
  max-width: 600px;
}

#services-intro-section .gallery-wrapper {
  perspective: 100px;
  z-index: -1;
}

#services-intro-section .services-gallery-slider {
  transform: rotateY(2deg) rotateZ(-5deg);
}

#services-intro-section .gallery-wrapper .slick-list {
  overflow: visible;
}

#services-intro-section .gallery-wrapper .slick-slide {
  padding: 10px;
  pointer-events: none;
  filter: brightness(0.5);
}

body.services,
body.services .content-wrapper,
body.servicios,
body.servicios .content-wrapper {
  overflow: inherit;
}

.services-notification-col {
  position: sticky;
  top: 90px;
  z-index: 1;
}

.services-notification {
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
  position: sticky;
  top: 90px;
  z-index: 1;
}

.header-contact .cart-items {
  position: absolute;
  padding-left: 3px;
  font-size: x-large;
  font-weight: 800;
  color: var(--white);
  top: 15px;
}

.services-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5rem;
}

.services-cards .module-fickle {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}

.services-cards .module-fickle .fickle-image {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
  border-radius: 20px;
  transition: var(--transition);
}

.services-cards .fickle-has-link:hover .fickle-image {
  filter: brightness(0.3);
}

.services-cards .module-fickle:hover img {
  animation: zoom 0.5s ease-out alternate;
  animation-direction: alternate;
}

.services-cards .module-fickle img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 100%;
}

.services-cards .module-fickle .fickle-header .title {
  font-family: "Montserrat";
  color: #fff;
  font-size: 1.2rem;
}

.services-cards .module-fickle .fickle-header .title a {
  color: #fff;
  text-decoration: underline;
}

.services-cards .module-fickle .fickle-header .fickle-subtitle>* {
  color: var(--gray-color);
}

.services-cards .module-fickle .fickle-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-bottom: 22%; */
}

.services-cards .module-fickle .fickle-additional-html-code,
.services-cards .module-fickle .fickle-additional-html-code a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  font-weight: 600;
}

.services-cards .module-fickle .fickle-additional-html-code a {
  opacity: 0;
  transition: var(--transition);
  padding-bottom: 12%;
}

.services-cards .module-fickle:hover .fickle-additional-html-code a {
  opacity: 1;
}

/* About us page */
#about-us-intro {
  padding-top: 100px !important;
  height: var(--dynamic-height);
  align-items: center;
  overflow: hidden;
}

.about-map-col,
.about-map {
  height: 100%;
}

.about-map-col {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  /* max-width: 100%; */
}

.about-map {
  text-align: right;
}

.about-map svg {
  width: auto;
  height: 100%;
  margin-right: 0;
  margin-left: auto;
  /* transform: translate3d(50%, -60%, 0) scale(1.9534, 1.9534); */
  /* transform: translate3d(-20%, -30%, 0) scale(2.9534, 2.9534); */
  transform: translate3d(20%, 30%, 0) scale(1, 1);
  pointer-events: none;
}

.about-map path {
  fill: #ffffff1a;
  /* stroke: #0000004a; */
  stroke: #000;
  stroke-width: 1px;
}

.about-map svg circle {
  stroke-width: 1px;
}

.about-intro-image-col .module-image {
  margin: auto;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.about-intro-image-col .module-image img {
  object-fit: cover;
  border-radius: 100%;
  aspect-ratio: 1/1;
  padding: 15%;
}

.about-intro-desc-col {
  padding-right: 5rem;
}

/* Academy Page */
.academy-intro {
  background-size: auto 65%;
  background-position: top right;
  background-repeat: no-repeat;
  align-items: flex-start;
  justify-content: flex-start;
}

.academy-intro .bg-img {
  position: relative;
}

.academy-intro .bg-img:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.z2 {
  z-index: 2;
}

.academy-form-section {
  padding: 4rem;
  border-radius: 20px;
}

.bg-shape {
  position: relative;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
}

.bg-shape-inner {
  position: absolute;
  top: 120%;
  background-image: linear-gradient(135deg, var(--secondary-color), var(--secondary-color));
  width: 100%;
  height: 100%;
  filter: blur(40px);
  z-index: -1;
  border-radius: 9999px;
  width: 100vw;
  height: 100vw;
  transform: scale3d(1.8, 1.8, 1);
  z-index: 1;
}

.academy-intro-desc-col {
  padding-top: 40vh;
  margin-bottom: 10rem;
}

/* .academy-gallery {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
  z-index: 9;
}
.academy-gallery figure {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 0;
  display: flex;
  flex: 0 0 40%;
  max-width: 40%;
  height: 70vh;
}
.academy-gallery figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */
.nice {
  background-color: rgba(18, 18, 18, 1);
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  border: 1px solid var(--secondary-color);
  box-shadow: 0 0 3rem rgba(255, 255, 255, 0.1);
}

.spa-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  z-index: 9;
}

.spa-gallery figure {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 0;
  display: flex;
  flex: 0 0 20%;
  max-width: 20%;
  height: 40vh;
}

.spa-gallery figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1400px) {
  .spa-gallery figure {
    flex: 0 0 25%;
    max-width: 25%;
    height: 40vh;
  }

  .galerie .academy-intro-desc-col {
    margin-bottom: 5rem;
  }
}

@media (max-width: 992px) {
  .spa-gallery figure {
    flex: 0 0 40%;
    max-width: 40%;
    height: 40vh;
  }

  .galerie .academy-intro-desc-col {
    margin-bottom: 3rem;
  }
}

@media (max-width: 765px) {
  .spa-gallery figure {
    flex: 0 0 100%;
    max-width: 100%;
    height: 40vh;
  }

  .contact .contact-form .form-group {
    padding-left: 15px;
    padding-right: 15px;
  }

  .contact-page-section {
    margin-left: 0;
    margin-right: 0;
  }

  .galerie .academy-intro-desc-col {
    margin-bottom: 2rem;
  }

  .contact-page-section a {
    padding: 5px;
  }
}

/* Appointment Page */
#form-appointment {
  padding: 0;
  margin-top: 3rem;
}

#form-appointment .form-group {
  margin-bottom: 3rem;
}

#form-appointment label {
  color: var(--gray-color);
  font-size: 1.2rem;
}

.form-group-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  background: #ffffff17;
  border-radius: 20px;
  overflow: hidden;
  padding: 1rem;
}

.form-group-inner.select_hour {
  max-height: 400px;
  overflow-y: auto;
}

.btn-select-person {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 1rem;
  border: none;
  background: #ffffff05;
  font-size: 1.5rem;
  border-radius: 20px;
  color: var(--gray-color);
  width: 50%;
  transition: var(--transition);
}

.btn-select-person .person-img {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  overflow: hidden;
  box-shadow: 0 0 10px 0px #000;
}

.btn-select-person .person-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-select-person .person-img .added {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: var(--transition);
}

.btn-select-person.active .person-img img {
  filter: brightness(0.5);
}

.btn-select-person.active .person-img .added {
  opacity: 1;
}

.btn-select-person.active,
.btn-select-service.active,
.btn-select-hour.active {
  background-color: var(--secondary-color) !important;
  color: #fff;
}

.btn-select-person:hover,
.btn-select-service:hover,
.btn-select-hour:hover {
  background-color: #ffffff05;
  color: #fff;
}

#form-appointment .services-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  flex-wrap: wrap;
}

#form-appointment .services-wrapper.selected .btn-select-service:not(.active) {
  opacity: 0.5;
}

.btn-select-service,
.btn-select-hour {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff12;
  color: var(--gray-color);
  border: none;
  border-radius: 10px;
  font-size: 1.2rem;
  padding: 10px 20px;
  transition: var(--transition);
  line-height: 1.2;
}

.btn-select-service {
  justify-content: space-between;
}

.btn-select-service .service-title {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.btn-select-service .icon,
.btn-select-hour .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.btn-select-service .added,
.btn-select-hour .added {
  position: absolute;
  left: 1px;
}

.btn-select-service .added,
.btn-select-service.active .add,
.btn-select-hour .added,
.btn-select-hour.active .add {
  opacity: 0;
}

.btn-select-service.active .added,
.btn-select-hour.active .added {
  opacity: 1;
}

.btn-select-hour-available {
  color: #fff;
}

.btn-select-hour-not-available {
  color: #757373;
  opacity: 0.8;
}

.btn-select-hour-available {
  background-color: #643f00;
}

.ui-datepicker {
  padding: 1rem;
  border: none !important;
  border-radius: 20px;
  background: #171717;
  width: fit-content;
}

.ui-datepicker .ui-datepicker-header {
  background: transparent;
  border: none;
}

.ui-widget-header .ui-icon {
  background-image: none;
  position: relative;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
}

.ui-datepicker-prev .ui-icon {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.ui-datepicker-next .ui-icon {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.ui-datepicker .ui-datepicker-title,
.ui-datepicker th {
  font-weight: 500;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled {
  opacity: 1;
  color: #474747 !important;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled span {
  color: #474747 !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
  color: #fff;
  background: transparent;
  border: none;
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ui-widget-content .ui-state-default:hover {
  background: #47474733;
}

/* Selected Date */
.ui-state-active,
.ui-widget-content .ui-state-active {
  background: var(--secondary-color) !important;
  border-radius: 100%;
  color: #fff;
}

.ui-datepicker-header .ui-state-hover {
  background: none !important;
  border: none !important;
}

.time-wrapper {
  display: flex;
  gap: 5rem;
}

.select_hour {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.btn-select-hour {
  justify-content: center;
}

#form-appointment .contact-form {
  flex-direction: column;
  padding-bottom: 4rem;
}

#form-appointment .contact-form input,
#form-appointment .contact-form textarea {
  border-color: var(--primary-color);
}

#form-appointment .contact-form div:not(.agreement-radio) label {
  background: #171717;
  font-size: 1.2rem;
}

/* Pricelist */
.pricelist-services-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.pricelist-services-inner .service-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background: #ffffff14;
  border-radius: 10px;
}

.pricelist-services-inner .service-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.pricelist-services-inner .service-card .title {
  color: #fff;
  font-family: "Montserrat";
  font-size: 1rem;
}

.pricelist-services-inner .service-card .price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: var(--primary-color);
  border-radius: 5px;
  color: #000;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1em;
}

.pricelist-services-inner .service-card .price span {
  line-height: 1em;
}

.pricelist-services-inner .service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricelist-services-inner .service-cta .time {
  color: #fff;
}

.pricelist-services-inner .service-cta .cta a {
  color: #fff;
  font-family: "Montserrat";
  font-size: 0.725rem;
  border-bottom: 1px solid #fff;
}

/* Login Page */
.site-login {
  padding-top: 100px;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.auth-section-inner {
  width: 100%;
  max-width: 380px;
  background: #ffffff0d;
  border-radius: 20px;
  padding: 20px;
  margin: auto;
}

.auth-header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  box-shadow: 0 1px 0 0 rgb(255 255 255 / 20%);
}

.auth-header .buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 1px 0 0 rgb(255 255 255 / 20%);
  margin-bottom: 15px;
}

.auth-header .buttons>* {
  padding: 5px 10px;
  margin-bottom: 0;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 1px 0 0 #fff;
  width: 100%;
  text-align: center;
}

.auth-header .buttons a {
  color: rgb(255 255 255 / 60%);
  box-shadow: none;
}

.auth-header .message>* {
  margin-bottom: 0;
  color: #fff;
}

.auth-section .form-group {
  margin-bottom: 0;
}

.auth-section .form-goup label {
  font-size: 0.875rem;
}

.auth-section .form-control {
  background-color: rgb(242 242 242 / 10%);
  border: none;
  font-family: "Montserrat";
  font-weight: 300;
  color: #fff;
  font-size: 0.875rem;
}

.auth-section .help-block-error {
  font-size: 0.825rem;
  text-align: right;
  color: #ce1d3f;
}

.auth-section .form-control:focus {
  box-shadow: 0 0 0 2px var(--primary-color);
}

.alternative-links {
  display: flex;
  justify-content: space-between;
}

.alternative-links .help-links {
  text-align: right;
}

.alternative-links .help-links a {
  color: var(--gray-color);
}

.auth-section label {
  color: #fff;
}

.alternative-links .custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

.custom-control-label,
.custom-control-input.is-valid~.custom-control-label {
  color: var(--gray-color);
}

.alternative-links a {
  color: #000;
  font-size: 0.875rem;
  text-decoration: underline;
}

#loginform-rememberme:checked~.custom-control-label::before,
.custom-control-input.is-valid:checked~.custom-control-label::before {
  background-color: #000;
  border-color: #000;
}

.auth-section form button[type="submit"] {
  width: 100%;
  background: var(--secondary-color);
  margin-top: 20px;
  border: none !important;
}

.field-loginform-rememberme .checkbox-text {
  font-size: 0.875rem;
  color: var(--gray-color);
}

.field-signupform-acceptance label {
  color: var(--gray-color);
}

.field-signupform-acceptance a {
  color: #fff;
}

/* ---------------- Footer ---------------- */
footer {
  background-color: #121212;
  padding-top: 30px;
}

.footer_logo img {
  max-width: 150px;
}

.footer-title>* {
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-menu {
  margin-bottom: 30px;
}

.footer-menu ul {
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-bottom: 0;
}
.center-align {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.footer-nav ul {
  display: flex;
  /* justify-content: center !important; */
  flex-direction: column;
}


.footer-menu ul li {
  /* margin-right: 30px; */
  /* text-align: center; */
  text-transform: uppercase;
}

.footer-menu ul li:last-child {
  margin-right: 0;
}

.footer-menu ul li,
.footer-menu ul li>* {
  text-transform: uppercase;
  opacity: 0.8;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  transition: var(--transition);
}

.social-icons ul {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.social-icons svg {
  width: 40px;
  height: auto;
  border: 1px solid #ffffff17;
  border-radius: 100%;
  background: var(--secondary-color);
}

.social-icons svg rect {
  stroke: none;
}

.copyright p {
  color: #ffffffa6;
}

.tur-virtual img {
  max-width: 80px;
}

/* Booking Pop-ups */
.jconfirm.jconfirm-modern .jconfirm-box {
  background: #000;
  border-radius: 20px;
}

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c,
.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title,
.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-content {
  color: #fff;
}

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-content {
  margin-bottom: 0;
}

.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons button {
  border-radius: 30px;
  background-color: var(--primary-color);
}

.alert-success {
  display: flex;
  align-items: center;
  justify-content: center;
  /* flex-direction: row-reverse; */
  background: #fff;
  border-radius: 0;
  margin-bottom: 0;
  padding: 15px 20px;
  color: #000;
}

.alert-success .close {
  opacity: 1;
  font-weight: 400;
  display: flex;
  align-items: center;
  line-height: 30px;
}

/* Blog */
.post-item-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #fff;
  background: #141414;
  padding: 1rem;
  border-radius: 10px;
  transition: var(--transition);
}

.post-item-inner:hover {
  color: #cbcbcb;
}

.post-image-wrapper {
  position: relative;
  padding-top: 70%;
  border-radius: 10px;
  overflow: hidden;
}

.post-image-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.post-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-item-inner .post-title {
  font-size: 1.275rem;
}

/* Single Post Page */
.blog-post-header {
  position: relative;
  text-align: center;
}

.blog-post-header .page-header-background {
  background-size: cover;
}

.blog-post-header .page-header-background:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.blog-post-header-content {
  padding: 13rem 0 10rem 0;
}

.back-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post-date {
  color: var(--gray-color);
  font-size: 1.275rem;
}

.back-btn-wrapper a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 20px;
  border-radius: 5px;
  background-color: var(--primary-color);
  color: #000;
}

.back-btn-wrapper a lord-icon {
  transform: rotate(-180deg);
}

/* My account */
.col-my-account-nav ul {
  background: #121212;
  border-radius: 20px;
  padding: 20px;
  gap: 15px;
}

.col-my-account-nav ul li {
  background-color: #ffffff12;
  padding: 0;
  border-radius: 10px !important;
  border: none;
  transition: var(--transition);
}

.col-my-account-nav ul li:hover {
  background: #ffffff05;
}

.col-my-account-nav ul li.active {
  background: var(--secondary-color);
}

.col-my-account-nav ul li a {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 0.75rem 1.25rem;
  color: #fff;
  font-weight: 600;
  opacity: 0.5;
}

.col-my-account-nav ul li.active a {
  opacity: 1;
}

.account-wrapper-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.account-inner-section {
  padding: 20px;
  border-radius: 20px;
  background: #121212;
}

.appointments-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.appointment-item {
  /* display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem; */
}

.row-my-account-content .appointment-item {
  border-radius: 15px;
  padding: 5px 15px;
}

.row-my-account-content .appointment-item.status-canceled {
  background-color: red;
}

.row-my-account-content .appointment-item.status-canceled .info {
  color: #fff;
}

.row-my-account-content .appointment-item.status-canceled .status-info {
  color: red;
  text-transform: uppercase;
  background: #fff;
  padding: 5px 10px;
  border-radius: 10px;
}

.row-my-account-content .appointment-item.status-canceled .service-name strong span {
  color: #fff !important;
}

.row-my-account-content .appointment-item .status-info {
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 900;
}

.row-my-account-content .appointment-item.status-confirmed {
  background-color: #51b1ee;
}

.row-my-account-content .appointment-item.status-confirmed .info {
  color: #fff;
}

.row-my-account-content .appointment-item.status-confirmed .status-info {
  color: #1787ce;
  text-transform: uppercase;
  background: #fff;
  padding: 5px 10px;
  border-radius: 10px;
}

.row-my-account-content .appointment-item.status-confirmed .service-name strong span {
  color: #fff !important;
}

.row-my-account-content .appointment-item.status-confirmed .cancel-appointment-trigger {
  background-color: rgba(0, 0, 0, 0.35);
}

.row-my-account-content .appointment-item.status-pending {
  background-color: #d59c40;
}

.row-my-account-content .appointment-item.status-pending .info {
  color: #fff;
}

.row-my-account-content .appointment-item.status-pending .status-info {
  color: #d59c40;
  text-transform: uppercase;
  background: #fff;
  padding: 5px 10px;
  border-radius: 10px;
}

.row-my-account-content .appointment-item.status-pending .service-name strong span {
  color: #fff !important;
}

.account-inner-section-incoming {
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: #000;
}

.account-inner-section-past {
  opacity: 0.8;
}

.account-inner-section-incoming .headline>* {
  color: #fff;
}

.appointment-item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.appointment-item .left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.appointment-item .icon {
  display: flex;
  align-items: center;
  padding: 10px;
  background: #ffffff12;
  border-radius: 100%;
}

.appointment-item .service-name,
.appointment-item .service-price {
  font-size: 1.275rem;
  font-weight: 600;
}

.appointment-item .right {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.appointment-item .info {
  color: var(--gray-color);
}

.appointment-item .left .info {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.appointment-item .appointment-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: calc(1rem + 45px);
  margin-top: 1rem;
}

.appointment-item .appointment-buttons button {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--secondary-color);
  border-radius: 5px;
  color: #fff;
  border: none;
  box-shadow: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 5px 10px 5px 5px;
}

.appointment-item .appointment-buttons .cancel-appointment-trigger {
  background: #ffffff12;
}

.account-inner-section.welcome p {
  margin-bottom: 0;
  color: var(--gray-color);
}

/* Edit Appointment */
.col-edit-appointment-hour .select_hour {
  grid-template-columns: 1fr;
}

.select-hour-scroller-L2 {
  max-height: 301px !important;
}

.icon-basket svg {
  fill: white;
}

.virtual-tur {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 0 15px;
}

.header-logo,
.footer_logo img {
  filter: invert(1);
}

.p-general {
  color: var(--gray-color);
  font-size: 1.2rem;
}

.h2-general {
  font-family: "Montserrat";
  font-size: 2.5rem;
}

.center-content {
  /* display: flex; */
  /* flex-direction: column; */
  /* justify-content: start; */
  align-items: center;
}

/* product card css */
.products-grid {
  row-gap: 30px;
}

.product-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* height: 100%; */
}

.badge {
  position: absolute;
  right: -5px;
  top: -5px;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--secondary-color);
  color: #fff;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: unset;
  border-bottom-left-radius: 20px;
  font-size: 14px;
  z-index: 1;
}

.badge lord-icon {
  max-width: 25px;
  max-height: 25px;
}

.product-tumb {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #121212;
  height: 35vh;
  position: relative;
  overflow: hidden;
}

.product-tumb img {
  min-width: 400px;
  height: 350px;

  object-fit: cover;
  object-position: top;
}

.page-id-6 .product-details {
  padding: 10px;
  background: #212529;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.page-id-6 .product-details h4 a {
  padding-top: 20px;
  padding-bottom: 0;
  margin-bottom: 20px;
}

.page-id-6 .product-tumb img {
  min-width: 400px;
  height: 350px;
  object-fit: cover;
  object-position: top;
}
.page-id-6 .filter-title.text-center.mb-0 {
  margin-bottom: 30px !important;
}


.product-tumb img:hover {
  animation: zoom 1s ease-out alternate;
  animation-direction: alternate;
}

.product-details {
  padding: 10px;
  background: #212529;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.product-details h4 a {
  font-weight: 400;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  transition: 0.9s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  /* padding: 20px 0; */
  padding-top: 20px;
  padding-bottom: 0;
  margin-bottom: 20px;
}

.product-details h4 a:hover {
  color: var(--secondary-color);
  ;
}

.product-bottom-details {
  overflow: hidden;
  border-top: 1px solid var(--secondary-color);
  padding-top: 20px;
}

.product-price {
  color: white;
  font-weight: 500;
  font-size: x-large;
  background: var(--secondary-color);
  padding: 5px 15px;
  display: flex;
  align-items: center;
  border-radius: unset;
  border-top-right-radius: 20px;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.product-links button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 1.1rem;
  width: 100%;
  border: none;
}

.product-links button:not(:disabled):not(.disabled):active,
.product-links button:hover,
.product-links button:focus {
  /* background: var(--primary-color); */
  background-color: var(--secondary-color) !important;
  box-shadow: 1px 0px 5px 1px var(--secondary-color) !important;
}

.product-links a {
  /* display: inline-block;
    margin-left: 5px;
    color: #e1e1e1;
    transition: 0.3s;
    font-size: 17px; */

  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 1.1rem;
  width: 100%;
  border: none;
}

/* single  product */

.single-product .badge {
  display: none;
}

.single-product .container-product {
  background-color: rgba(18, 18, 18, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 3rem rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 20px;
}

.single-product .box-shadow {
  box-shadow: 0 0 1rem rgba(255, 255, 255, 0.1);
}

.single-product .product-price-wrapper .price {
     font-size: 50px;
    font-family: "Montserrat";
    color: var(--secondary-color);
    font-weight: 600 !important;
}

.single-product .mw-50 {
  max-width: 50% !important;
  width: 100%;
}

.single-product .btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  position: relative;
}

.single-product input,
.single-product select,
.single-product textarea {
  background: transparent;
  border: none;
  border: 1px solid var(--primary-color);
  border-radius: 0;
  padding: 10px 5px;
  color: #fff;
  outline: none;
}

.single-product select option {
  background-color: rgba(18, 18, 18, 1);
  color: #fff;
  border: 1px solid var(--primary-color) !important;
}

.single-product select option:hover {
  background-color: red !important;
}

.single-product input::placeholder {
  color: #fff;
  opacity: 1;
}


.single-product input {
  display: block;
  color: #fff !important;
}

.single-product .btn::after {
  content: "Adaugă în coș";
  margin-left: 8px;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
}

.single-product .tab-content {
  background-color: #121212;
  border-radius: 5px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: 1px solid var(--secondary-color) !important;
  /* border-top: 1px solid var(--secondary-color) !important;
  border-bottom: 1px solid var(--secondary-color) !important; */
}

.single-product .nav-tabs .nav-link.active {
  color: #fff;
  background-color: var(--secondary-color) !important;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-product .product-gallery {}

.single-product .product-summary-main-title {
  justify-content: center;
  display: flex;
  align-items: center;
}

.single-product .product-details__short-description p {
  max-width: 30vw;
}

.single-product .product-gallery img {
  width: 100%;
  border-radius: 5px;
}

.h2-general {
  font-size: 40px;
  font-family: 'Montserrat';
  color: #fff;
  margin-bottom: 20px;
  font-weight: 800;
}

.single-product+.related-product .category-item-inner .categ-title {
  padding: 10px;
  /* background: #212529;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; */
}

.product-item-wrapper {
  /* display: flex; */
  /* min-width: 300px; */
  margin-bottom: 30px;
}

.categ-title h4 a {
  font-weight: 400;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  transition: 0.9s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  /* padding: 20px 0; */
  padding-top: 20px;
  padding-bottom: 0;
  margin-bottom: 20px;
  text-align: start;
}

.categ-title h4 a:hover {
  color: var(--secondary-color) !important;
}

.categ-title .short-desc p,
.categ-title .short-desc ul li {
  color: #fff;
  text-align: left;
}

.categ-title .price {
  display: none !important;
}

.categ-title {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.short-desc,
.product-stock {
  margin-bottom: 10px;
}

.product-bottom-details {
  margin-top: auto;
}

strong,
.product-bottom-details {
  margin-top: auto;
}


.categ-link a {
  color: var(--secondary-color);
  font-weight: bold;
}


.category-item-inner .categ-title {
  padding: 10px;
  min-height: 300px;
}

.category-item {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #212529;

}

/* .categories-item-wrapper {
  min-width: 25% !important;
} */


/* .img-card-cadou {
  position: relative;

  overflow: hidden;
  width: 100%;

  min-width: 400px;
  width: 100%;
  min-height: 300px;
  
}



.img-card-cadou img {
  position: relative;

 
  object-fit: contain;
}

.ofera-card-cadou {
  position: absolute;
} */



.img-card-cadou {
  position: relative;
  width: 80%;
  height: 300px;
  overflow: hidden;
  margin: 30px 0;
}

.img-card-cadou img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% 25%;
  border-radius: 5px;
}

.overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
}

.ofera-card-cadou {
  margin: 0;
  font-size: 1.5em;
  text-align: center;
}

.solicita-card {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.3s;
}

.solicita-card:hover {
  background-color: var(--secondary-color);
  color: #fff;
}


@media (max-width: 1599px) {
  .categories-item-wrapper {
    flex: 1 1 25% !important;
    max-width: 25% !important;
  }

  .page-id-1.home .categories-item-wrapper {
    flex: 1 1 50% !important;
    max-width: 50% !important;
  }

  .page-id-1.home .services-slider .slick-slide {
    padding: 2rem 4rem !important;
  }
}

@media (max-width: 1199px) {
  .categories-item-wrapper {
    flex: 1 1 33.33%;
    max-width: 33.33%;
  }

  .page-id-1.home .categories-item-wrapper {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .services-slider .slick-slide {
    padding: 2rem;
  }
}

@media (max-width: 991px) {
  .categories-item-wrapper {
    flex: 1 1 50% !important;
    max-width: 50% !important;
    margin-bottom: 30px;
  }

  .img-card-cadou {
    width: 100%;
  }

  .page-id-1.home .services-slider .slick-slide {
    margin-right: 2rem;
    margin-left: 3rem;
    padding: 1rem 2rem !important;
  }

  .page-id-1.home .category-item-inner .categ-title {
    min-height: auto;
  }

  .product-links button {
    /* margin-bottom: 3rem; */
  }

  .page-id-1.home .product-bottom-details {
    overflow: visible;
    padding-top: 0px;
    margin-top: auto;
  }

  .single-product {
    margin: 0 15px;
  }
}

.bg-image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (max-width: 767px) {
  .categories-item-wrapper {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }

  .page-id-1.home .categories-item-wrapper {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    margin-bottom: 2rem;
  }

  .page-id-1.home .services-slider .slick-slide {
    margin-right: 0rem;
    margin-left: 1rem;
    padding-left: .5rem !important;
    padding-right: .5rem !important;
  }

  .single-product .product-details__short-description p {
    max-width: 100vw;
  }

  .page-id-3 .row-subcategories {
    display: flex;
    flex-wrap: wrap;
  }

  .row-subcategories .col-subcategory {
    flex: 0 0 45%;
    max-width: 45%;
    margin-bottom: 20px;
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}


.nav-tabs {
  border: none !important;
}

.categ-image-wrapper figure img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
}

.single-product,
.related-product .category-item-inner .price {
  color: #fff;
  text-align: start;
}

.single-product,
.related-product .category-item-inner .categ-title h2 {
  color: #fff;
  text-align: start;
}

/* .breadcrumbs .breadcrumbs-wrapper{
  background: var(--primary-color) !important;
    font-size: x-large !important;
    font-weight: 600 !important;
    color: black !important;
    opacity: 0.7 !important;
    box-shadow: 4px 3px 10px 5px var(--secondary-color) !important;
} */

.breadcrumbs .breadcrumbs-wrapper .fa-chevron-right {
  padding-right: 10px !important;
  padding-left: 10px !important;
  color: #fff;
}

.breadcrumb {
  /* background-color: #212529; */
  /* background-color: #121212; */
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(18, 18, 18, 1);
  box-shadow: 0 0 1rem rgba(255, 255, 255, 0.2);
}

.border {
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.breadcrumbs .breadcrumbs-wrapper .breadcrumb-item.active {
  color: var(--secondary-color) !important;
  /* color: var(--primary-color) !important; */
}

.breadcrumbs .breadcrumbs-wrapper li a {
  color: #fff !important;
}

.row-subcategories .col-subcategory {
  /* background: var(--primary-color); */
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
  font-size: x-large;
  /* background-color: var(--primary-color); */
  /* box-shadow: 1px 2px 5px 4px var(--secondary-color) !important; */
  opacity: 0.9;
  cursor: pointer;
}

.row-subcategories .col-subcategory a {
    padding: 1px 100px;
    color: #fff;
    justify-content: space-between;
    align-items: center;
}

.row-subcategories{
    padding: 1rem ;
    /* justify-content: space-between!important; */
    display: inline-flex;
    border-radius: 5px;
    border: 1px solid var(--secondary-color);
    background-color: rgba(18, 18, 18, 1);
    box-shadow: 0 0 1rem rgba(255, 255, 255, 0.2);
    margin-right: 10px;
}

@media (max-width: 1800px) {
  .row-subcategories .col-subcategory a {
      padding: 1px 80px; 
  }
}
@media (max-width: 1700px) {
  .row-subcategories .col-subcategory a {
      padding: 1px 65px; 
  }
}
@media (max-width: 1500px) {
  .row-subcategories .col-subcategory a {
      padding: 1px 50px; 
  }
}

@media (max-width: 1400px) {
  .row-subcategories .col-subcategory a {
      padding: 1px 45px; 
  }
}

@media (max-width: 1200px) {
  .row-subcategories .col-subcategory a {
      padding: 1px 40px; 
  }
}

@media (max-width: 1300px) {
  .row-subcategories .col-subcategory a {
      padding: 1px 30px; 
  }
}

@media (max-width: 1200px) {
  .row-subcategories .col-subcategory a {
      padding: 1px 25px; 
  }
}

@media (max-width: 1200px) {
  .row-subcategories .col-subcategory a {
      padding: 1px 5px; 
  }
}

@media (max-width: 765px) {
.row-subcategories .col-subcategory a {
    padding: 1px 100px;
      color: #fff;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
}


/* .row-subcategories .col-subcategory:hover{
    background: var(--secondary-color);
    border-bottom-left-radius: 5px;
    border-top-right-radius: 5px;
    font-size: x-large;
    box-shadow: 1px 2px 10px 4px var(--primary-color) !important;
    opacity: 0.9;
} */
.row-subcategories .col-subcategory:hover a {
  /* color: var(--primary-color); */
}

.row-subcategories .col-subcategory a:hover {
  /* color: var(--primary-color); */
  /* background-color: var(--secondary-color); */
  color: var(--secondary-color);

  transition: all 0.3s ease-in-out;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
}

.page-id-3 .container-categories {
  display: flex;
  justify-content: space-between;
}

.container-categories h1 {
  display: block;
  color: var(--secondary-color);
}
.page-id-3 .container-categories h1 {
  display: flex;
  align-items: center;
}

.pagination {
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding-top: 40px;
}

.pagination .prev.disabled,
.pagination .next.disabled {
  display: none;
}

.pagination .active {
  background-color: var(--secondary-color);
}

.pagination .active a {
  color: var(--white);
}

.pagination li {
  width: 45px;
  height: 45px;
  border-radius: 5px;
  border: 1px solid var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.pagination li:hover {
  background-color: var(--primary-color);
}

.pagination li a {
  color: var(--white);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: larger;
  font-weight: 800;
}

.zoom-result {
  width: 350px;
  height: 350px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
  left: 100%;
  margin-top: -17px;
  margin-left: 15px;
  overflow: hidden;
  z-index: 1000;
  display: none;
}

.zoom-result img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  transition: transform 0.2s ease;
}

.zoom-container:hover {
  cursor: zoom-in;
}

.border-gallery {
  border-radius: 10px;
  padding-top: 30px;
  overflow: hidden;
  /* max-height: 50vh; */
  height: 100%;
  object-fit: cover;
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  border: 1px solid var(--secondary-color) !important;

}

.single-product .product-gallery img {
  height: 50vh;
}


/* CART PAGE */

.page-id-cart .page-header {
  min-height: 20vh;
}

.page-id-cart {
  background-color: #000;
  color: #fff;
}

.page-id-cart .cart-page__container {
  padding: 4rem;
  transform: translateY(-85px);
  border-radius: 20px;
  background-color: rgba(18, 18, 18, 1);
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  border: 1px solid var(--secondary-color);
  box-shadow: 0 0 3rem rgba(255, 255, 255, 0.1);
}

.cart-row .cart-content .cart-content-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item-inner>* {
  flex-grow: 1;
  max-width: 300px;
}

.cart-item-product-group figure {
  width: 100px;
  margin: 0;
}

.cart-item-product-group img {
  width: 100%;
}

/* #cart-message-box, #fav-message-box {
  padding: 20px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  bottom: 20px;
  right: 20px;
  border-radius: 20px;
  transition: all .2s linear;
} */
#cart-message-box span {
  font-family: #fff;
  font-size: 14px;
}

#cart-message-box .cart-message-box-buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}


.cart-content .cart-content-body {
  /* margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px; */
}

.cart-page__container .cart-title {
  color: #fff;
  border-bottom: 1px solid var(--secondary-color);
  padding-bottom: 10px;
}

.cart-title h1 {
  display: flex;
  align-items: baseline;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.cart-title h1 span {
  font-size: 16px;
  font-weight: light !important;
  font-family: "Montserrat";
}

.cart-row {
  margin-top: 50px;
}

.checkout-form-col .cart-heading {
  font-family: 'Montserrat';
  border-bottom: 1px solid var(--secondary-color);
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.cart-item-inner {
  background-color: rgba(18, 18, 18, 1);
  box-shadow: 0 0 .2rem rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  margin-top: 10px;

  display: flex;
  justify-content: center;
  align-items: center;
}


.cart-summary {
  background-color: rgba(18, 18, 18, 1);
  box-shadow: 0 0 .2rem rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  margin-top: 10px;

  border-top: 1px solid var(--secondary-color) !important;
  padding: 20px;
}

.cart-sumar-details__total {
  border-bottom: 1px solid var(--secondary-color) !important;
  font-size: 20px;
  font-weight: bold;
}

.cart-sumar-details__total .taxes {
  font-weight: lighter;
  font-size: 16px;
}

.item-action a {
  color: var(--secondary-color);
  font-size: 20px;
}

.item-action a:hover {
  color: var(--secondary-color);

}

.h3-cart {
  font-size: 1.5rem;
}

.cart-item-product-group figure img {
  width: 80%;
  height: auto;
  max-width: 80px;
  min-width: 80px;
  border-radius: 5px;
}

.item-qty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.item-value {
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-qty input[type="number"] {
  background: transparent;
  border: none;
  /* border: 1px solid #ffffff14; */
  border: 1px solid var(--secondary-color);
  border-radius: 0;
  /* padding: 30px 20px; */
  color: #fff;
  text-align: center;

}


.item-qty input[type="number"]::-webkit-outer-spin-button,
.item-qty input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Ascunde săgețile din Firefox */
.item-qty input[type="number"] {
  -moz-appearance: textfield;
}

.cart-row .cart-content .cart-item .cart-item-inner {

  border-top: 1px solid var(--secondary-color) !important;
  padding: 20px;

  display: flex;
  justify-content: space-between;
  /* justify-content: center; */
  align-items: center;


  border-radius: 10px;

}

.cart-item-content {}

.cart-item-product-group {
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}

/* .cart-content-body {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
} */

/* .cart-item-wrapper {
  border: 1px solid #e1e1e1;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
} */


.cart__container {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  height: 100%;
}

.cart__container h4,
.cart-content-heading {
  text-align: center;
  border-bottom: 1px solid var(--secondary-color);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.cart-content-heading {
  padding-bottom: 3px;
}

.cart-sumar-details__products {
  padding: 10px 0;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--primary-color);

}


figure {
  margin: 0 0 0rem;
}

.cart-wrapper .cart-row .cart-content .cart-content-body .cart-item-wrapper {
  border: 1px solid #e1e1e1;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
}

.remove-btn {
  color: #dc3545;
  padding: 0;
}

.remove-btn:hover {
  color: #dc3545;
}

/* Checkout  PAGE */

.page-id- .page-header {
  min-height: 20vh;
}

.page-id- {
  background-color: #000;
  color: #fff;
}

.page-id- .checkout-page__container {
    padding: 4rem;
    transform: translateY(-85px);
    border-radius: 20px;
    background-color: rgba(18, 18, 18, 1);
    border: 1px solid var(--secondary-color);
    box-shadow: 0 0 3rem rgba(255, 255, 255, 0.1);
    margin: 1rem;
    max-width: -webkit-fill-available !important;
}

.page-id- .checkout-form-col .form-group {
  position: relative;
  margin-bottom: 2rem;

}

.page-id- .help-block {
  margin-top: 10px;
  color: #f7b500;
}

.checkout-form-col div:not(.agreement-radio) label {
  color: var(--gray-color);
  margin-bottom: 0;
  transform: translate(20px, 50%);
  background: #121212;
  padding: 0 15px;
}

.checkout-form-col input,
.checkout-form-col textarea,
.checkout-form-col select,
.field-checkoutform-voucher input {
  background: transparent;
    border: 1px solid var(--secondary-color);
    border-radius: 0;
    padding: 7px 10px;
    color: #fff;
}

input#checkoutform-otherdelivery {
  display: block;
  appearance: none;
}

input#checkoutform-otherdelivery:checked {
  background-color: var(--primary-color);
}

div.form-check.field-checkoutform-otherdelivery>label {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.checkout-form-col .select {
  border: none;
  border: 1px solid var(--primary-color);
  border-radius: 0;
  /* padding: 30px 20px; */
  color: #fff !important;
}

.checkout-form-col input:focus,
.checkout-form-col textarea:focus,
.field-checkoutform-voucher input:focus {
  background: transparent !important;
  outline: none;
  box-shadow: none;
  color: #fff;
}

.checkout-form-col .form-control:focus,
.field-checkoutform-voucher input:focus {
  background: transparent;
  color: #fff;
  border-color: #fff;
  outline: 0;
  box-shadow: none;
}

.select.form-control {
  background-color: transparent;
  height: 62px;

}

.select.form-control option {
  background-color: rgba(18, 18, 18, 1);
  color: #fff;
  border: 1px solid var(--primary-color) !important;

}

.select.form-control option:hover {
  background-color: #000;
}

.select.form-control option:checked {
  color: var(--primary-color);

}



.page-id- .field-checkoutform-gdpr input[type="checkbox"] {
  /* display: block !important; */
}

.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(--secondary-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;
}

input[type="radio"] {
  width: auto;
  height: auto;
  -webkit-appearance: radio;
  appearance: radio;
}




.section-title p {
  text-align: center;
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: lighter;
  font-family: 'MOntserrat';
}


.sumary-item {
  overflow: hidden;
  display: flex;
  justify-content: start;
  flex-wrap: nowrap;
  background-color: rgba(18, 18, 18, 1);
  box-shadow: 0 0 .2rem rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 30px;
  border-top: 1px solid var(--secondary-color) !important;
  padding: 10px;
}

.page-id- .item-title a {
  color: var(--secondary-color);
}

.page-id- .sumary-item-price-wrapper {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}

.page-id- .field-checkoutform-payment .control-label {
  border-bottom: 1px solid var(--secondary-color);
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 1.5rem;
  /* font-weight: lighter; */
  text-align: start;
  width: 100%;
}

.page-id- .item-qty {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #333;
  color: var(--secondary-color);
  border-radius: 50%;
  font-size: 13px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-id- .sumary-item-image-wrapper {
  position: relative;
  flex: 0 0 auto;
  margin-right: 10px;

}

.beneficiar-container {
  margin-top: 10px;
}

.page-id- .sumary-item-image img {
  width: 7vw;
  height: 14vh;
  object-fit: cover;
  border-radius: 5px;
  object-position: 100%;
}

.form-check {
  padding-left: 0;
}

.link {
  color: var(--secondary-color);
}

.link:hover {
  color: var(--primary-color);
}

.sumary-total {
  width: 100%;
  margin-top: 20px;
}

.sumary-total-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;

  font-size: 20px;
  font-weight: bold;
  padding: 10px;
}

.sumary-total span {
  padding-left: 10px;
  padding-right: 10px;
}

.help-block-error {
  margin-top: 10px;
}

.sumary-item-info {
  margin-left: 10px;
}

@media (max-width: 1399px) {
  .page-id- .checkout-page__container {
    padding: 2rem;
  }

  .page-id- .sumary-item-image img {
    width: 10vw;
    height: 14vh;
  }
}

/* @media (max-width: 1199px) {
  .page-id- .container {
    width: 96%;
  }

} */

@media (max-width: 991px) {

  .footer-menu ul li {
    text-align: center;
  }
  .page-id- .checkout-page__container {
    padding: 1rem;
  }

  .page-id- .sumary-item-image img {
    width: 20vw;
    height: 20vh;
  }

  .page-id- .item-title a {
    font-size: 20px;
  }

  .sumary-item-info {
    margin-left: 10px;
  }
  .center-footer-column {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .page-id-3 .container-categories h1 {
    display: block;
    text-align: center;
    
}
.row-subcategories {
  margin-right: -15px;
}

.page-id-3 .container-categories {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

}

@media (max-width: 767px) {

  .col-subcategory-1, .col-subcategory-2 {
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 15px;
    border-bottom-left-radius: 0!important;
  } 
  .page-id-3 .row-subcategories {
    margin-left: 5px;
    margin-right: 5px;
}
  .page-id- .sumary-item-image img {
    width: 30vw;
    height: 15vh;
  }
  .col-lg-12.legal-images {
    flex-direction: column;
  }
  .page-id- .item-title a {
    font-size: 20px;
  }

  .sumary-item-info {
    margin-left: 10px;
  }

  .cart-content-heading {
    display: none;
  }

  .cart-row .cart-content .cart-item .cart-item-inner {
    flex-direction: column;
    align-items: start;
  }

  .page-id-cart .cart-page__container {
    padding: .5rem;
  }

  .cart-item-inner>* {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .item-qty::before {
    content: "Cantitate: ";
    font-weight: bold;
    margin-right: 10px;
    display: inline;
  }

  .item-qty {
    display: inline;
    margin-top: 10px;
  }

  .item-value::before {
    content: "Preţ: ";
    font-weight: bold;
    margin-right: 10px;
  }

  .item-value {
    font-size: 20px;
    margin-bottom: 0;
  }

  .cart-title h1 {
    display: flex;
    flex-direction: column;
  }

  .cart__container {
    margin-top: 50px;
  }

  .page-id-cart .cart-backToShop-btn {
    margin-bottom: 60px;
  }

  .single-product .width-50 {
    max-width: 100% !important;
  }

  .single-product .mw-50 {
    max-width: 100% !important;
    width: 100%;
  }

  .single-product .container-product {
    padding: 20px 10px;
  }

  .cart-item-product-group {
    padding: 0;
  }
}

@media (max-width: 576px) {
  .cart-message-box-buttons .btn-primary {
    padding: 5px 10px;
  }

  .close-cart-message-box {
    background-color: var(--primary-color);
    color: #fff;
  }
}

.prod-title {
  color: var(--secondary-color);
    font-weight: bold;
}

.close-cart-message-box {
  background-color: var(--primary-color);
  color: #fff;
}


.col-my-account-view .orders-details-wrapper,
.col-my-account-view .orders-details-wrapper div.order-details-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

button.new-order-cancellation {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 5px;
  border: none;
  transition: background-color 0.3s;
}

button.new-order-cancellation:hover {
  background-color: var(--secondary-color);
}

.col-my-account-view .orders-details-wrapper .order-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--primary-color);
  padding: 1rem;
}

.my-account-view-inner li {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.my-account-view-inner ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

ul.products-list-wrapper li a figure img {
  width: 120px;
  height: 120px;
    object-fit: cover;
    object-position: top;
}

.products-wrapper ul li {
  border-top: 1px solid var(--primary-color);
  padding: 20px;
  border-radius: 10px;
}

.products-wrapper .products-list-wrapper {
  gap: 2rem;
} 
.external-menu-links {
  width: 100%;
}

.external-menu-links ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 0.5rem;
}

.external-menu-links .nav-item {
  margin-bottom: 0 !important;
  transition: var(--transition);
}

.external-menu-links .nav-item:hover {
  transform: translateY(-5px);
}

.external-menu-links .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.2rem !important;
  padding: 1rem !important;
  border-radius: 5px;
  background: #fff;
  color: #000 !important;
  text-align: center;
  font-weight: 200 !important;
}

.external-menu-links .nav-link:after {
  content: "";
  position: relative;
  display: flex;
  width: 25px;
  height: 25px;
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tIFVwbG9hZGVkIHRvOiBTVkcgUmVwbywgd3d3LnN2Z3JlcG8uY29tLCBHZW5lcmF0b3I6IFNWRyBSZXBvIE1peGVyIFRvb2xzIC0tPg0KPHN2ZyB3aWR0aD0iODAwcHgiIGhlaWdodD0iODAwcHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik03IDE3TDE3IDdNMTcgN0g4TTE3IDdWMTYiIHN0cm9rZT0iIzAwMDAwMCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4NCjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.external-menu-links .nav-link:hover {
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
}
