﻿/*------- Fold CSS - Contents -------

1. reset.CSS
2. Navbar Styling
3. Hero Section
4. Flex features 1
5. Flex features 2
6. Pricing section
7. Background reviews
8. CTA Section and footer
9. Media Queries

----*/

/*----- 1. Reset.css -----*/

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* --- Common Styles ---*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat";
  font-size: 16px;
}

p {
  font-family: "Montserrat";
  font-size: 14px;
}

/*----- Helper Classes -----*/

html * {
  text-rendering: optimizeSpeed !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*
::-webkit-scrollbar {
	display: none;
}*/

::-moz-selection {
  color: #ffffff;
  background: #23d3d3;
}

::selection {
  color: #ffffff;
  background: #23d3d3;
}

.container-m {
  max-width: 1024px;
  margin: 0 auto !important;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}

.container-s {
  max-width: 920px;
  margin: 0 auto !important;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

#loading {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  position: fixed;
  opacity: 1;
  background-color: #f2f2f2;
  z-index: 9999;
  text-align: center;
}

#loading-image {
  display: inline;
  top: 40%;
  position: relative;
  z-index: 9999;
}

.logo {
  position: fixed;
  top: 3%;
  left: 5%;
  z-index: 11;
}

.logo .tld {
  background: #23d3d3;
}

.tld {
  width: 40px;
  height: 40px;
  background: #1e266d;
  color: #ffffff;
  border-radius: 50%;
  display: table;
}

.tld2 {
  background: #23d3d3;
}

.tld-text {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.tld-text h6 {
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none !important;
}

.tld-text a {
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 500;
  color: #ffffff !important;
  text-decoration: none !important;
}

.tld-text a::after {
  display: none;
}

/*------ Navbar Styling ------*/

.navbar {
  font-family: "Montserrat";
  padding: 15px 0;
  background-color: #ffffff !important;
  border-bottom: 1px solid #efeff1;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.navbar .navbar-brand {
  font-family: "Montserrat";
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #333347 !important;
  vertical-align: middle;
}

.navbar .navbar-brand img {
  vertical-align: middle;
  margin-right: 0.3em;
}

.navbar .navbar-toggler {
  border: none;
}

.navbar span.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar span.navbar-toggler-icon::before {
  outline: none;
}

.navbar .navbar-toggler:focus {
  outline: none;
}

.navbar-nav {
  height: auto;
  background: #ffffff;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  border-left: 1px solid #f3f3f5;
  -webkit-transition: 0.5s all ease; /* For Safari 3.1 to 6.0 */
  transition: 0.5s all ease;
}

.navbar-nav .nav-item {
  margin-right: 0;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #333347;
  display: flex;
}

.navbar-nav .nav-item .nav-link {
  color: #333347;
  font-weight: 500;
  display: flex;
  vertical-align: middle;
}

.navbar-nav .nav-item .nav-link:hover {
  color: #333347;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar-nav .nav-item .nav-link:focus {
  color: #333347;
}

.btn-nav {
  margin: 0 !important;
  border-radius: 50px !important;
}

.btn-nav:hover {
  color: #ffffff;
  background: #1e266d;
}

.btn-nav:focus,
.btn-nav:active {
  background: #1e266d;
  color: #ffffff;
}

.btn-alt-nav {
  background: #23d3d3 !important;
  border: 1px solid #23d3d3 !important;
  margin: 0 !important;
}

.btn-alt-nav:hover {
  color: #1e266d !important;
}

/*------ nav Transparent Styling ------*/

.nav-white {
  background-color: transparent !important;
  border-bottom: 1px solid transparent;
  padding: 20px 0;
}

.nav-white span.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(35, 211, 211, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.nav-white .navbar-nav {
  background: transparent !important;
  border-left: 1px solid transparent;
}

.nav-white .navbar-brand {
  color: #ffffff !important;
}

.nav-white .nav-item .nav-link {
  color: #ffffff;
}

.nav-white .nav-item .nav-link:hover {
  color: #23d3d3;
}

.nav-white .nav-item .nav-link:focus {
  color: #23d3d3;
}

@media only screen and (max-width: 767px) {
  .navbar {
    padding: 15px;
  }

  .navbar .navbar-nav {
    background: #ffffff !important;
    padding-bottom: 50px;
  }

  .navbar-nav .nav-item {
    display: block;
  }

  .nav-white .nav-item .nav-link {
    color: #4957b8;
  }

  .navbar .btn-cta {
    padding: 0 30px;
  }
}

@media only screen and (min-width: 240px) {
  .navbar.past-main {
    background: #ffffff !important;
    border-bottom: 1px solid #efeff1;
  }

  .navbar.effect-main {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .navbar.past-main .navbar-brand {
    color: #333347 !important;
  }

  .nav-white.past-main .nav-item .nav-link {
    color: #333347;
    font-weight: 500;
  }

  .navbar.past-main .nav-item .nav-link {
    color: #333347;
    font-weight: 500;
  }

  .navbar.past-main .nav-item:hover .nav-link {
    color: #23d3d3;
  }

  .navbar.past-main .navbar-brand {
    color: #333347;
  }

  .nav-white.past-main span.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.6)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
  }

  .nav-white.effect-main {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

.main {
  width: 100%;
  height: 100%;
}

.hero {
  background: linear-gradient(
      to right,
      rgba(243, 243, 245, 0),
      rgba(243, 243, 245, 0)
    ),
    url(../images/hero-bg.png) no-repeat center center;
  background-size: cover;
  background-position: left;
}

.hero-content {
  max-width: 600px;
}

/* .hero-list {
	display: block;
	font-family: 'Montserrat';
	font-size: 16px;
	line-height: 1.4;
	color: rgba(255, 255, 255);
	margin-top: 30px;
} */

/* .hero-list li{
	padding-bottom: 1rem;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.hero-list li img {
	align-self: baseline;
}

.hero-list span{
	margin-left: 5px;
} */

.hero-inner {
  padding: 150px 0 100px 0;
}

.hero-content .yd_alert {
  background: linear-gradient(
    to right,
    rgba(138, 155, 166, 0.1),
    transparent 60%
  );
  border-radius: 2px;
  padding: 8px;
  margin-bottom: 30px;
}

.hero-content .yd_alert span {
  background: #1e266d;
  border-radius: 2px;
  margin-right: 5px;
  padding: 3px 5px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
}

.hero-content .yd_alert a {
  font-size: 13px;
  font-weight: 500;
  color: #373a3c;
  text-decoration: none;
  line-height: 1;
}

.hero-content .yd_alert a:hover {
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

.hero-inner h2 {
  font-size: 28px;
  font-weight: 700;
  color: #373a3c;
  line-height: 1.4;
}

.hero-inner p {
  font-size: 15px;
  font-weight: 400;
  color: #373a3c;
  line-height: 1.4;
  margin-top: 15px;
}

.btn-action {
  font-family: "Montserrat";
  display: inline-block;
  height: 42px;
  padding: 0 30px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: 2px;
  margin: 20px 0;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;
  cursor: pointer;
  background-color: transparent;
  background: #1e266d;
  color: #ffffff;
  border: 1px solid #1e266d;
  border-radius: 50px;
  box-sizing: border-box;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
}

.btn-action:hover {
  color: #23d3d3;
  background: #1e266d;
  border: 1px solid #1e266d !important;
  outline: none !important;
  text-decoration: none;
}

.btn-action:focus,
.btn-action:active {
  background: #1e266d;
  color: #ffffff;
  border: 1px solid transparent !important;
  outline: none !important;
}

.btn-alt {
  background: #23d3d3;
  color: #040e1a !important;
  border: 1px solid #23d3d3 !important;
}

.btn-alt:hover,
.btn-alt:focus {
  background: #23d3d3;
  color: #040e1a;
  border: 1px solid #23d3d3 !important;
  outline: none !important;
  text-decoration: none;
}

.hero2 {
  background: #1e266d;
}

.hero2 .hero-inner {
  padding: 120px 0 60px 0;
}

.hero2 .hero-content {
  display: flex;
  background: transparent;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 25px;
}

.hero2 .hero-content .hero-content-inner {
  margin: auto; /* Important */
  text-align: left;
}

.hero-content-inner h2 {
  max-width: 80%;
}

.hero2 .hero-form {
  background: transparent;
  padding: 0;
}

.hero2 .hero-inner h4 {
  font-size: 14px;
  font-weight: 600;
  color: #23d3d3;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
}

.hero2 .hero-inner h2 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

.hero2 .hero-inner p {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.8;
  margin-top: 15px;
}

.hero2 .hero-form #contactForm {
  background: #ffffff;
  padding: 35px;
  border-radius: 10px;
  max-width: 380px !important;
  margin: 0 auto;
  float: none;
}

.hero2 .hero-form #contactForm label {
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 600;
  color: #1e266d;
  line-height: 1.4;
  margin: 10px 0;
}

.hero2 .hero-form #contactForm input,
.hero2 .hero-form #contactForm textarea {
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 400;
  color: #1e266d;
  border: 0;
  border-radius: 0;
  border-bottom: 2px solid #b4becb;
}

.hero2 .hero-form #contactForm .btn-action {
  margin: 20px 0;
  min-width: 100%;
}

.help-block {
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 400;
  margin-top: 5px;
  color: #ff3333;
  font-style: normal !important;
}

.text-success,
.text-danger {
  font-size: 14px;
  font-family: "Poppins";
}

/*-----------------------------------------------------
-------------- Invest Features Section ----------------
-----------------------------------------------------*/

@media only screen and (min-width: 1028px) {
  .hero2 {
    width: 80%;
  }
  .hero-mixed {
    display: flex;
    justify-content: center;
    margin-top: 60px;
  }

  .hero-mixed .container-s {
    padding-left: 20px;
    padding-right: 20px;
  }
  .travel-next-hero-list {
    max-width: 250px;
  }
  .travel-next-hero-images {
    display: flex;
  }

  .amount-info {
    display: none;
  }
}

/*=============
Aesthetics 
=========================*/
.initial-balance-range {
  display: flex;
  align-items: center;
  width: 80%;
  background: #fff;
}

/***** Chrome, Safari, Opera, and Edge Chromium *****/
/* .initial-balance-range::-webkit-slider-runnable-track {
	outline: 0;
    border: 0;
    border-radius: 500px;
    width: 100%;
    max-width: 100%;
    transition: box-shadow .2s ease-in-out;
  } */

/******** Firefox ********/
/* .initial-balance-range::-moz-range-track {
	outline: 0;
    border: 0;
    border-radius: 500px;
    width: 100%;
    max-width: 100%;
    transition: box-shadow .2s ease-in-out;
} */

/* view-fund-btn */

.view-fund-btn {
  width: 100%;
  display: flex;
  justify-content: center;
}

.view-fund-btn a {
  margin-top: 30px;
}

/* amount-info */

.amount-info {
  margin-top: 30px;
  max-width: 75%;
}

/*-----------------------------------------------------
-------------- Flex Features Section 2 ----------------
-----------------------------------------------------*/

/*----------- Flex Features ------------*/

.flex-split {
  padding: 100px 0;
}

.flex-intro {
  margin-bottom: 50px;
  text-align: center;
}

.flex-intro h2 {
  font-size: 30px;
  font-weight: 600;
  color: #3a3a47;
  line-height: 1.3;
  margin-bottom: 10px;
}

.flex-intro p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #818198;
  max-width: 630px;
  margin: 0 auto;
  margin-top: 15px;
  margin-bottom: 15px;
}

.flex-inner {
  margin: 0 0;
}

.flex-inner .f-image {
  padding: 0 35px;
  margin-bottom: 25px;
}

.flex-inverted .f-image {
  padding: 0 35px;
  margin-top: 25px;
}

.flex-inner .f-text {
  padding: 0 35px;
}

.flex-inner .f-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: left;
}

.flex-inner .f-text h2 {
  font-size: 24px;
  font-weight: 600;
  color: #3a3a47;
  line-height: 1.3;
  margin-top: 20px;
}

.flex-inner .f-text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #818198;
  margin-top: 15px;
  margin-bottom: 15px;
}

.flex-inner .f-text .left-content a {
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: bold;
  color: #8798ab;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.flex-inner .f-text .left-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -30%;
  height: 2px;
  width: 0;
  background: #8798ab;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.flex-inner .f-text .left-content a:hover::after {
  width: 80px;
}

.flex-inner .f-text .left-content a:hover {
  text-decoration: none;
}

.flex-inner.flex-inverted .f-image {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

/*-----------------------------------------------------------
------------------- YD Custom Features Styling ------------------
------------------------------------------------------------*/

.yd_ft_cst {
  width: 100%;
  height: 100%;
  padding: 100px 0;
  background: #0c0c4a;
  background: #fafafa;
}

.ft_cst2 {
  background: #f8f8f9;
}

.yd_ft_cst .split_text {
  display: flex;
  max-width: 600px;
  margin: auto;
  height: 100%;
}

.yd_ft_cst .split_text_inner {
  margin: auto; /* Important */
}

.yd_ft_cst .split_text_inner h4 {
  font-size: 13px !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #607d9c;
  line-height: 1.3;
}

.yd_ft_cst .split_text_inner h2 {
  font-size: 28px !important;
  font-weight: 600;
  color: #445555;
  line-height: 1.4;
}

.yd_ft_cst .split_text_inner p {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  margin-top: 20px;
}

.yd_ft_cst .split_text_inner .btn-action {
  margin: 20px 0 0 0;
}

.yd_ft_cst .f-text {
  line-height: normal;
  text-align: center;
  background: #fafafa;
}

.ft_cst2 .f-text {
  line-height: normal;
  text-align: center;
  background: #f8f8f9;
  margin-top: 0;
}

.ft_cst2 .f-image {
  margin-top: 0 !important;
}

.yd_ft_cst .cst_box {
  text-align: center;
  padding: 75px 50px;
  max-width: 320px;
  margin: 0 auto;
  margin-bottom: 0;
  border-radius: 5px;
  background: #1e266d;
  border: 1px solid #ececec;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.yd_ft_cst .cst_box img {
  width: 80px;
  height: 80px;
}

.yd_ft_cst .cst_box h2 {
  font-size: 21px;
  font-weight: 600;
  color: #fafafa;
  line-height: 1.6;
  margin-top: 20px;
}

.yd_ft_cst .cst_box p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-top: 10px;
}

.yd_ft_cst .f-image {
  margin-top: 50px;
}

.yd_ft_cst ul {
  list-style-type: none;
  margin-top: 10px;
}

.yd_ft_cst ul li {
  display: block;
  font-family: "Montserrat";
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.5);
}

/*----------------------------------------------
------------ Single Feature section ------------
----------------------------------------------*/

.ft_single {
  position: relative;
  padding: 100px 0 100px 0;
  background: #1e266d;
}

.yd_flex {
  display: block;
  text-align: center;
}

.yd_flex_1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.yd_flex_2 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.yd_flex_1 .flex_content {
  max-width: 420px;
  margin: 0 auto;
  margin-bottom: 25px;
}

.yd_flex_1 .flex_content h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  color: #364655;
  color: #ffffff;
  margin-bottom: 15px;
}

.yd_flex_1 .flex_content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}

.flex_main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.flex_sub {
  align-items: center;
  flex-basis: calc(50% - 24px);
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 15px 10px;
  position: relative;
  background: rgb(248, 249, 250);
  background: #1e266d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1px;
  display: flex;
  cursor: pointer;
  margin-bottom: 0;
  transition: box-shadow 0.3s ease-in-out;
}

.flex_sub:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #0c0c4a;
}

.flex_sub .sub_image {
  margin: 0px 0 20px;
}

.flex_sub .sub_image img {
  width: 60px;
  height: 60px;
}

.flex_sub .sub_text {
  text-align: center;
}

.flex_sub .sub_text h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 5px;
}

.flex_sub .sub_text p {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  margin: 5px 0;
}

/*------------------------------------------------------
--------------- YD Features block Styling --------------
------------------------------------------------------*/

.yd_ft_block {
  padding: 100px 0;
  background: #1e266d;
}

.block_intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.block_intro h2 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  color: #23d3d3;
  color: #ffffff;
  margin-bottom: 20px;
}

.block_intro p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

.block_list {
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  list-style-type: none;
  text-align: center;
  padding: 0;
  margin-top: 75px;
  overflow: hidden;
}

.block_list li {
  float: left;
  line-height: 1.25;
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f5f4ff;
  text-transform: uppercase;
  padding: 25px 15px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.block_list li:last-child {
  border: none;
}

.block_list li {
  width: 50%;
  padding: 47px 0 37px;
  display: block;
}

.block_list li:nth-child(4),
.block_list li:nth-child(2),
.block_list li:nth-child(6) {
  border-right: none;
}

.block_list li:nth-child(n + 3) {
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.block_list li img {
  width: 60px;
  display: block;
  margin: 0 auto 23px;
}

.block_list li span {
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: capitalize;
}

.block_list li:hover {
  background: #0c0c4a;
}

/*------------------------------------------------
--------------- Review Card Styling --------------
-------------------------------------------------*/

/*---------- YD Flx2 Section Styling -----------*/

.single_review {
  width: 100%;
  height: 100%;
  padding: 100px 0;
}

.yd_flx2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  justify-content: space-around;
  line-height: 0;
}

.yd_flx2 > * {
  flex: 1 100%;
}

.flx_1 {
  background: #f3f3f5;
  padding: 0;
}

.flx_2 {
  background-color: #1e266d;
  line-height: normal;
  padding: 50px;
  position: relative;
}

.flx_2 .review-text {
  display: flex;
  margin: auto;
  height: 100%;
}

.flx_2 .review-text .review-text-inner {
  margin: auto;
}

.flx_2 h1 {
  font-size: 21px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.flx_2 h2 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  margin-top: 20px;
  margin-bottom: 5px;
}

.flx_2 h6 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.flx_2 a {
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.flx_2 a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -3px;
  left: 0;
  background-color: #ffffff;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

.flx_2 a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/*----------------------------------------------------------
----------------- BG Review Section Styling ----------------
----------------------------------------------------------*/

.yd_rev_bg {
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0)
    ),
    url(../images/bg1.jpg) no-repeat center center;
  background-size: cover;
  padding: 20px;
}

.yd_rev_bg .rev_block {
  padding: 30px;
  max-width: 420px;
  background: #ffffff;
  overflow: hidden;
}

.yd_rev_bg .rev_img {
  display: block;
}

.yd_rev_bg .rev_img img {
  width: 60px;
  margin-bottom: 20px;
}

.yd_rev_bg .rev_txt h3 {
  font-size: 21px;
  color: #364655;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
}

.yd_rev_bg .rev_txt p {
  font-size: 16px;
  color: #364655;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 20px;
}

.yd_rev_bg .rev_txt h6 {
  font-size: 14px;
  color: #364655;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 3px;
}

/*-----------------------------------------------------------
------------------- Split Features Styling ------------------
------------------------------------------------------------*/

.split_features {
  width: 100%;
  height: 100%;
  padding: 100px 0;
}

.split_features .yd_flx2 {
  min-height: 500px;
}

.split_features .yd_flx2 .flx_1 {
  line-height: normal;
  background: #eee;
  padding: 0 75px;
  min-height: 420px;
}

.split_features .yd_flx2 .flx_1 .split_text {
  display: flex;
  margin: auto;
  height: 100%;
}

.split_features .yd_flx2 .flx_1 .split_text_inner {
  margin: auto; /* Important */
}

.split_features .yd_flx2 .flx_1 h2 {
  font-family: "Roboto" !important;
  font-size: 32px;
  font-weight: 300;
  color: #111111;
  line-height: 1.4;
  margin-bottom: 15px;
}

.split_features .yd_flx2 .flx_1 p {
  font-family: "Roboto" !important;
  font-size: 17px;
  font-weight: 400;
  color: #777;
  line-height: 1.6;
  margin-top: 15px;
}

.split_features .yd_flx2 .flx_2 {
  padding: 0;
  background: url(../images/hg.jpg) no-repeat center center;
  background-size: cover;
  min-height: 300px;
}

/*----------------------------------------------------------
----------------- YD Pricing Section Two -------------------
-----------------------------------------------------------*/

.yd_prc2 {
  width: 100%;
  height: 100%;
  background: #ffffff;
  padding: 100px 0;
}

.yd_prc2 .pricing-intro {
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 75px;
  text-align: center;
}

.pricing-intro h1 {
  font-size: 30px;
  color: #364655;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
}

.pricing-intro p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #8b92ab;
  margin: 10px 0;
}

.yd_prc2 .yd_flx2 .flx_2 {
  padding: 50px 30px;
  text-align: center;
  border-radius: 0 0 20px 20px;
}

.yd_prc2 .yd_flx2 .flx_1 {
  line-height: normal;
  padding: 50px 30px;
  background: #fafafa;
  text-align: center;
  border-radius: 20px 20px 0 0;
}

.yd_prc2 .yd_flx2 .btn-action {
  margin-top: 25px;
}

.yd_prc2 .yd_flx2 .split_text {
  display: flex;
  margin: auto;
  height: 100%;
}

.yd_prc2 .yd_flx2 .split_text_inner {
  margin: auto;
}

.yd_prc2 .yd_flx2 h2 {
  font-size: 26px;
  font-weight: 600;
  color: rgb(54, 70, 85);
  margin: 0;
}

.yd_prc2 .yd_flx2 span {
  font-family: "Montserrat";
  font-size: 36px;
  font-weight: 600;
  display: inline-block;
  color: #97a6b5;
  margin: 15px 0 0 0;
}

.sub_span {
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 600;
  color: #97a6b5;
  margin: 10px 0;
}

.yd_prc2 .prc_features {
  list-style-type: none;
  margin-top: 25px;
  text-align: left;
}

.yd_prc2 .prc_features li span {
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 500;
  color: #97a6b5;
  vertical-align: middle;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 0 0 10px 0;
}

.yd_prc2 .flx_2 h2,
.yd_prc2 .flx_2 span,
.yd_prc2 .flx_2 .prc_features li {
  color: #97a6b5;
  color: rgba(255, 255, 255, 0.7);
}

.yd_prc2 .flx_2 span {
  color: #23d3d3;
}

.yd_prc2 .prc_features li img {
  vertical-align: top;
  margin-right: 3px;
}

.yd_prc2 .yd_flx2 a:hover::before {
  display: none !important;
}

/*---------------- YD CTA Box Styling --------------------*/

.yd_cta_box {
  padding: 0;
  text-align: center;
  background: #1e266d;
}

.cta_box {
  background: #1e266d;
  border-radius: 0;
  display: flex;
  margin: auto;
  height: 420px;
  max-width: 800px;
}

.cta_box .cta_box_inner {
  margin: auto;
  padding: 0 20px;
}

.cta_box .cta_box_inner .box_txt {
  padding: 0;
}

.cta_box .cta_box_inner h4 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.cta_box .cta_box_inner h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
}

.cta_box .cta_box_inner .btn-action {
  margin: 30px 0 0 0;
}

/* ------------ Bact-to-Top Styling Starts Here ------------*/

.footer {
  background: #040e1a;
  background: #1e266d;
  padding: 35px 0;
  border-top: 2px solid #2e2d72;
}

.footer-inner {
  background: #1e266d;
}

.footer .footer-logo {
  text-align: center;
}

.footer .footer-logo h2 {
  font-size: 18px;
  font-weight: 500;
  color: #e5e5e5;
  /*text-transform: uppercase;*/
  line-height: 1.4;
  letter-spacing: 1px;
}

.footer p {
  font-size: 24px;
  font-weight: 700;
  color: #e5e5e5;
  line-height: 1.4;
  margin-top: 0;
}

/* ------------ Bact-to-Top Styling Starts Here ------------*/
/*

.bk-top {
	z-index: 90;
	width: 50px;
	height: 75px;
	background: #6d48e5;
	color: #f2f2f0;
	display: table;
	box-shadow:0 5px 15px rgba(0, 0, 0, .1);
}

.bk-top-txt {
	display: table-cell;
  vertical-align: middle;
  text-align: center;
}
*/
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  font-family: "Montserrat";
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #333333;
  line-height: 1.8;
  display: inline-block;
  padding: 1.5rem 1.2rem;
  margin-top: 0;
  border-radius: 2px;
  background: url(../icons/arrow.svg) center top 1.2rem no-repeat #23d3d3;
  text-decoration: none;
  -webkit-transition: 200ms;
  -moz-transition: 200ms;
  -o-transition: 200ms;
  transition: 200ms;
}

.back-to-top:hover {
  color: #333333;
  text-decoration: none;
}

.footer ul {
  list-style-type: none;
  text-align: center;
  margin-top: 0;
}

.footer .footer-menu {
  text-align: center;
  margin: 20px 0;
}

.footer .footer-links ul {
  text-align: center;
}

.footer ul li {
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
}

.footer ul li a {
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
}

.footer ul li a:hover {
  text-decoration: none;
  color: #97a6b5;
}

.footer .footer-links ul li {
  margin-left: 10px;
  margin-right: 10px;
}

.footer .footer-links ul li a img {
  width: 24px;
  vertical-align: middle;
}

/*---------- Split Coming Soon Demo Styling -----------*/

.split_home {
  width: 100%;
  height: 100%;
}

.split_home .yd_flx2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  justify-content: space-around;
  line-height: 0;
  min-height: 100vh;
}

.split_home .yd_flx2 > * {
  flex: 1 100%;
}

.split_home .flx_1 {
  background: #1e3b70;
  background: #dbd9cd;
  background: #1e266d;
  line-height: normal;
  order: 1;
  min-height: 720px;
  text-align: center;
}

.split_home .flx_2 {
  background: #23d3d3;
  min-height: 720px;
  order: 2;
  padding: 0 !important;
}

.split_home .flx_1 .section-txt {
  display: flex;
  max-width: 600px;
  margin: auto;
  height: 100%;
}

.split_home .flx_1 .section-txt .section-txt-inner {
  margin: auto; /* Important */
}

.split_home .flx_1 .section-txt {
  padding: 50px 50px;
}

.split_home .flx_1 h2 {
  font-family: "Josefin Sans";
  font-size: 40px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.split_home .flx_1 h4 {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  line-height: 1.4;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.split_home .flx_1 p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 360px;
  margin: 0 auto;
}

.split_home .flx_1 a {
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 500;
  color: #23a393;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.split_home .btm_block {
  position: relative;
  width: 100%;
  height: auto;
}

.split_home .block_inner {
  position: absolute;
  bottom: 0;
  left: 50px;
}

.split_home .block_txt {
  margin: 0 auto;
}

.split_home .block_txt p {
  font-size: 14px;
  font-weight: 500;
  color: #8f2c34;
}

@media only screen and (min-width: 767px) {
  .split_home .flx_1 {
    flex: 1.1 0 0;
    order: 1;
    flex-basis: 50%;
    transition: 0.3s ease-in;
  }

  .split_home .flx_2 {
    flex: 1 0 0;
    order: 2;
    flex-basis: 50%;
    transition: 0.3s ease-out;
  }
}

.split_footer {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}

.split_footer p {
  font-size: 12px !important;
}

.split_footer ul {
  list-style-type: none;
  text-align: center;
  margin-bottom: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.split_footer ul li {
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
}

.split_footer ul li a {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
}

.split_footer ul li a:hover {
  text-decoration: none;
  color: #97a6b5;
}

.split_footer ul li {
  margin-left: 8px;
  margin-right: 8px;
}

.split_footer ul li a img {
  width: 21px;
  vertical-align: middle;
}

ul#countdown {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  display: inline-block;
  text-align: center;
}

ul#countdown li {
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  ul#countdown li span {
    font-size: 34px;
  }

  .split_home .btn-alt {
    display: block;
  }
}

/*-------- Center Circle Demo  -------- */

.prk-center {
  position: relative;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  display: table;
}

.prk-circle-box {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.prk-circle {
  margin: 0 auto;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: #1e266d;
  box-shadow: 0 3px 50px 0 rgba(255, 94, 58, 0.1);
  color: #e84545;
  transition: all 400ms ease-in;
}

.prk-text {
  position: relative;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  display: table;
}

.txt-box {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.txt-box ul#countdown li span {
  font-family: Arial;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  color: #23d3d3;
  padding: 6px;
  transition: all 400ms ease-in;
}

.txt-box ul#countdown li.seperator {
  font-size: 21px;
  line-height: 1;
  vertical-align: top;
  color: #23d3d3;
  transition: all 400ms ease-in;
}

.txt-box ul#countdown li p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 500;
  padding-top: 15px;
  transition: all 400ms ease-in;
}

.txt-box h2 {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5em;
  transition: all 400ms ease-in;
}

.txt-box h2 span {
  color: #23d3d3;
  font-weight: 700;
}

.txt-box h3 {
  font-size: 16px;
  font-weight: 500;
  color: #e84545;
  margin-top: 0.5em;
}

h4{
  font-size: 1.5rem;
  margin-top: 20px;
}

/** Metody Platnosci **/

.dpd-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dpd-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.dpd-map-frame {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

.dpd-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e00;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
}

.checkout-payment-logo{
  width: 30px;
  height: auto;
}

.checkout-input-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 15px;
}

.checkout-payment-wrapper{
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid black;
  padding: 10px;
  @media screen and (max-width: 910px) and (min-width: 767px){
    padding: 20px 10px;
    gap: 20px;
  }
  @media screen and (max-width: 377px){
    padding: 20px 10px;
    gap: 20px;
  }
}

.checkout-icons-wrapper{
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: flex-end;
}

.payment-input-wrapper{
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
}
.payment-fieldset{
  margin-top: 10px;
  margin-bottom: 25px;
}

.delivery-fieldset{
  margin-top: -10px;
  margin-bottom: 25px;
}

#dpd-pickup-adress{
  font-size: 14px;
  font-weight: bold;
  margin-left: 18px;
}

.checkout-input-row div label, .checkout-input-row div{
  font-family: "Montserrat";
  font-size: 14px;
}

.dpd-button{
  text-align: right;
  cursor: pointer;
  text-decoration: underline;
}

#dpd-pickup-frame{
    display: none;
    z-index: 99999;
}

#dpd-pickup-frame iframe {
    position: fixed;
    width: 90% !important;
    height: max-content;
    min-height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    border-radius: 12px;
  }

  #dpd-close {
    position: fixed;
    top: 8%;
    right: 5%;
    z-index: 10011223;
    background: #fff;
    border: none;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    padding: 5px 12px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    @media screen and (max-width: 867px){
      top: 5%;
    }
  }

  #dpd-close:hover {
    background: #f0f0f0;
    color: #000;
  }
  #dpd-pickup-adress{
    display: none;
  }


.txt-box a {
  color: #6142d2;
}

.txt-box a:hover {
  color: #6142d2;
}

.chimp-form .mail {
  position: relative;
  background-color: #f9f9f9;
  box-shadow: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  transition: all 0.3s;
}

.form {
  padding-top: 25px;
  position: relative;
  text-align: none;
}

.form input {
  color: #222222;
  font-family: "Montserrat";
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  height: 45px;
  border: 0;
  border-radius: 30px;
  background-color: #f3f3f3;
  outline: none;
  padding: 0 100px 0 20px;
  box-shadow: 0 5px 30px rgba(255, 255, 255, 0.1);
}

.form input:focus {
  outline: none !important;
  border-color: transparent;
}

.form .submit-button {
  height: 45px;
  border: 0;
  border-radius: 30px;
  margin-left: -35px;
  padding: 0 25px 0 25px;
  background: #23d3d3;
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0;
  color: #ffffff;
  cursor: pointer;
  outline: none;
  box-shadow: 0 5px 30px rgba(255, 255, 255, 0.05);
  -webkit-transition: 500ms;
  -moz-transition: 500ms;
  transition: 500ms;
}

#email-error {
  position: absolute;
  left: 20%;
  right: 0;
  bottom: 0%;
  font-family: "Montserrat";
  font-size: 13px;
  font-weight: 500;
  color: #ff3333;
}

#response {
  position: absolute;
  left: 20%;
  bottom: -90%;
  vertical-align: middle;
  font-family: "Montserrat";
  font-size: 13px !important;
  font-weight: 500 !important;
  margin: 0 !important;
  color: #15ccbe;
}

#response h4 {
  font-size: 13px !important;
  font-weight: 500 !important;
  text-align: center;
}

#chimp-email-error {
  position: absolute;
  left: 15%;
  bottom: -50%;
  vertical-align: middle;
  text-align: center;
  font-family: "Montserrat";
  font-size: 13px;
  font-weight: 500;
  color: #23d3d3;
}

.yd_cta_box #chimp-email-error {
  position: absolute;
  left: 25%;
  bottom: -50%;
}

.yd_cta_box #response {
  position: absolute;
  left: 25%;
  bottom: -90%;
}

.success-message {
  color: #33cc33;
  margin-top: 5px;
}

.form-note p {
  font-size: 12px;
}

/* FAQ Styles*/
.faq-container {
  max-width: calc(100% - 50px);
  margin: 3% auto;
  font-family: "Montserrat", sans-serif;
}
.faq-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}
.faq-li {
  border-top: 1px solid #ccc;
  padding: 15px 0;
}
.faq-li:last-child {
  border-bottom: 1px solid #ccc;
}
.faq-list {
  list-style: none;
  padding: 0;
}
.faq-item {
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background: #bee4ef;
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.faq-item:hover {
  background: #9ad6e7;
}
.faq-question {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.3;
}
.faq-answer {
  display: block;
  padding: 0 15px;
  font-size: 11pt;
  height: 0;
  border-radius: 8px;
  opacity: 0;
  line-height: 1.6;
  transform-origin: top;
  transition: opacity 0.3s ease, padding 0.3s ease, height 0.3s ease;
}
.faq-answer a:link,
.faq-answer a:visited {
  color: black;
  text-decoration: underline;
}
.faq-item.active + .faq-answer {
  opacity: 1;
  height: auto;
  padding: 20px 15px;
}

.faq-item::after {
  content: "";
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  transform-origin: center;
  margin-left: 5px;
  background: url("../icons/arrow-down.svg") no-repeat center;
  background-size: contain;
}

.faq-item.active::after {
  transform: rotate(180deg);
}

.main-order {
  display: flex;
  flex-direction: column;
  height: 100vh; 
}

.order-success-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  flex-grow: 1; 
  padding: 0 5%;
  line-height: 1.6;

}

.order-header {
  font-size: 1rem;
}

.order-subheader {
  max-width: 550px;
  padding: 0 4%;
  font-size: 1rem;
}

.order-number {
  font-size: 1rem;
  font-weight: bold;
}

.travel-next-footer {
  position: relative; 
}

/* Icons menu */

.contact-icon{
  width: 33px; 
}
.mobile-wrapper{
  display: flex;
  align-items: center;
  gap: 5px;   
  @media screen and (max-width: 767px){
    display: none;
  }
}
.nav-mobile{
  display: none;
  @media screen and (max-width: 767px){
    display: flex;
  }
}
.nav-desktop{
  margin-right: 5px; 
}
.contact-handler{
  @media screen and (max-width: 359px){
    display: none;
  }
}

.shipping-cart{
    display: none;
}

/* end */


/* walidacja forma*/
.input-error {
  border: 2px solid red !important;
  background-color: #ffe6e6;
}

.shake {
  animation: shake 0.3s;
}

@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

.error-label {
  color: red;
  font-size: 0.95em;
  margin: 5px 0 10px 0;

}



.checkout-container {
  width: 100%;

  @media screen and (max-width: 1000px) {
    padding-top: 25px;
  }
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
}

.checkout-row {
  display: flex;
}
.checkout-header {
  font-weight: bold;
  margin-left: -3px;
  margin-bottom: 15px;
}
.adress-header {
  margin-top: 10px;
}
.payment-icons-checkout {
  width: 250px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);

  @media screen and (max-width: 767px) {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
.checkout-inputs {
  margin: 10px;
}

.travel-next-select-position {
  -webkit-appearance: none;
  width: 95% !important;
  margin: 10px;
}

.checkout-row input,
.checkout-row select {
  flex: 1;
  padding: 10px 30px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  -webkit-appearance: none;
  @media screen and (max-width: 1416px) {
    padding: 10px 12px;
  }
  @media screen and (max-width: 1243px) {
    padding: 10px 8px;
  }
}
#vat {
  margin-right: 5px;
  margin-bottom: 5px;
  @media screen and (max-width: 480px) {
    margin-bottom: 0;
  }
}
.vat-row {
  margin: 15px 0;
  font-size: 14px;
  @media screen and (max-width: 480px) {
    margin-bottom: 25px;
  }
}

#vat-details {
  display: none;
  margin-top: 15px;
  margin-bottom: 15px;
}

.secure-text {
  text-align: center;
  margin: 20px 0 10px;
  color: #666;
}

@media (max-width: 600px) {
  .checkout-row {
    flex-direction: column;
  }
}

/* Configurator styles */

.cell-shapes {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.cell-shapes label {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.cell-shapes img {
  width: 50px;
  height: 50px;
  border: 2px solid transparent;
  border-radius: 50%;
}
.cell-shapes input[type="radio"] {
  display: none;
}
.cell-shapes input[type="radio"]:checked + img {
  border-color: rgb(117, 0, 0);
}

.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0.8rem 0 1rem;
  @media screen and (max-width: 1150px ){
    max-width: 250px;
  }
}
.color {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;

}
.color.selected {
  border: 2px solid rgb(117, 0, 0); 
}

.configurator-wrapper{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.configurator-responsive{
  @media screen and (max-width: 768px){
    display: none;
  }
}

.configurator-type-label{
  margin-top: 10px;
}
.configurator-headers{
  font-weight: bold;
}
.responsive-preview {
  display: none;
  @media screen and (max-width: 768px){
    display: flex;
    margin: auto;
  }
}
@media screen and (max-width: 360px){
  .mat-preview{
    width: 80vw !important;
  }
  .border-preview{
      width: 80vw !important;
  }
}

@media (max-width: 1024px) {
  .brand-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    
  }
  .brand-grid span{
    text-align: center;
  }
}

.brand-title {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}
.discount-info {
  color: white;
  background-color: #b3b3b3;
  font-family: "Montserrat";
  padding: 6px 0; 
  text-align: center;
  font-size: 15px;
  @media screen and (max-width:767px){
    font-size: 14px;
  }
}

.selected-set-configuration{
  border: 2px solid rgb(117, 0, 0);
}
.configuration-img{
  width: 65px; /* 70px; */
  cursor: pointer;
  
}
.configurator-margins{
  margin-top: 2rem;
}
.configuration-options{
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 20px;
}
/* OgÃ³lny styl summary */
.product-selected-car {
  display: flex;
  gap: 15px;
  align-items: center;
 
}

.product-selected-media {
  display: flex;
  height: fit-content;
  border: 1px solid #bdbdbd;
  border-radius: 6px;
}

.product-selected-media img {
  width: 80px;
  height: fit-content;
  border-radius: 6px;
  height: 80px; 
  object-fit: contain; 
}

.product-selected-title {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 700;
  color: #292929;
  text-align: left;
  display: block;
  @media screen and (min-width: 1250px){
    font-size: 12px;
  }
}

.product-selected-desc {
  font-size: 13px;
  font-weight: 400;
  color: #464646;
  @media screen and (min-width: 1250px){
    font-size: 12px;
  }
}
.price-new{
  font-size: 24px;
}
.price{
  @media screen and (max-width:1395px) {
    display: flex;
    flex-direction: column-reverse;
    
  }
}
.product-controls {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 0;
  flex-wrap: wrap;
}

.product-controls[disabled] .product-change {
  display: none;
}

.product-change {
  font-size: 12px;
  color: #989898;
  cursor: pointer;
  text-decoration: underline;
}

.product-change:hover{
    color:inherit;
}

.responsive-change-tablet{
  display: none;
  @media screen and (max-width:1249px) and (min-width: 767px){
    display: block;
  }
  
}
.responsive-change-mobile{
  display: none;
  margin-top: 10px;
  @media screen and (max-width:767px){
    display: block;
  }
}
.delivery-time{
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  @media screen and (max-width: 495px) {
    font-size: 12px;
  }
}

.responsive-change-desktop{
display: block;
margin-top: 10px;
    @media screen and (max-width:1249px){
      display: none;
    }
}

.price-wrapper {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.popular-car-brands {
  margin-top: 30px;
  font-family: sans-serif;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px 20px;
  font-size: 16px;
  margin-top: 10px;
}

.brand-grid span {
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .brand-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    
  }
  .brand-grid span{
    text-align: center;
  }
}

.brand-title {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}

.price-wrapper .price {
  display: flex;
  align-items: center;
  gap: 20px;
  @media screen and (max-width:1395px) {
    align-items: revert;
    gap: 10px;
  }
}

.price-wrapper p {
  margin: 0;
  font-weight: 700;
  color: #292929;
}

.price-compare {
  font-size: 13px;
  color: #989898;
  text-decoration: line-through;
}

.price-badge-sale {
  padding: 4px 11px;
  font-size: 11px;
  font-weight: 700;
  color: #f7f7f7;
  background-color: #393;
  border-radius: 2px;
  text-transform: uppercase;
}

.vat-info {
  margin-top: 6px;
  font-size: 11px;
  color: #525252;
}
.free-delivery{
  text-align: center;
  margin-top: -5px;
  margin-bottom: 5px;
}
.bold{
  font-weight: bold;
}
.product-selected-wrapper{
  border-top: 1px solid black;
  margin-top: 30px;
  padding-top: 20px;

  @media screen and (max-width: 1250px) {
    margin-top: 30px;
  padding-top: 20px;
  }
}
@media screen and (max-width: 1395px){
  .product-selected-car,
  .product-controls {
    margin: 0;
    flex: auto !important;
    
  }
  .product-controls {
    margin-left: 30px !important;
    
  }
}
@media screen and (min-width: 1250px) {
  .product-selected-wrapper {
    display: flex;
    justify-content: space-between;
    
  }

  .product-selected-car,
  .product-controls {
    margin: 0;
    flex: 1;
  }
}

@media screen and (max-width: 1250px) {
  .product-selected-car{
    margin-bottom: 10px;
  }
}

.delivery-icon-wrapper{
  font-weight: bold;
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 15px;
  justify-content: center;
  margin-top: 10px;
}
.delivery-icon{
  width: 35px;
}


/*------------------------------------------
-------------- Media Queries ---------------
------------------------------------------*/

@media only screen and (min-width: 767px) {
  .logo {
    position: fixed;
    top: 5%;
    left: 2%;
  }

  .navbar-nav {
    margin-top: 0;
  }

  .navbar-nav .nav-item {
    margin-top: 0;
    margin-right: 15px;
    font-size: 0.85rem;
    font-weight: 400;
  }

  .container-s {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-m {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-inner {
    padding: 200px 0 150px 0;
  }

  .hero2 .hero-form #contactForm {
    float: none;
  }

  .hero2 .hero-inner {
    padding: 100px 0 100px 0;
  }

  .hero-inner h2 {
    font-size: 34px;
  }

  .hero2 .hero-content {
    text-align: left;
    margin-bottom: 0;
  }

  .hero2 .hero-inner h2 {
    font-size: 34px;
  }

  .flex-inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0;
  }

  .flex-inner .f-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 420px;
    flex: 0 0 420px;
  }

  .flex-inner .f-text h2 {
    font-size: 24px;
  }

  .flex-inner .f-text p {
    font-size: 16px;
    font-weight: 500;
  }

  .yd_flex {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .yd_flex .yd_flex_2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 568px;
    flex: 0 0 568px;
  }

  .yd_flex_1 .flex_content {
    max-width: 420px;
    margin: 0;
  }

  .yd_flex_1 .flex_content h2 {
    font-size: 30px;
  }

  .flex_main {
    display: flex;
  }

  .flex_sub {
    margin: 0;
    padding: 32px;
  }

  .flex_sub .sub_text h4 {
    font-size: 16px;
  }

  .flx_1 {
    flex: 1 0 0;
  }

  .flx_2 {
    flex: 1 0 0;
  }

  .split_features .yd_flx2 .flx_1 {
    flex: 1 0 0;
    flex-basis: 50%;
    padding: 0 100px;
  }

  .split_features .yd_flx2 .flx_2 {
    flex: 1 0 0;
    flex-basis: 50%;
  }

  .split_features .yd_flx2 .flx_1 h2 {
    font-size: 38px;
  }

  .yd_prc2 .yd_flx2 .flx_1 {
    flex: 1 0 0;
    flex-basis: 50%;
    padding: 75px;
    border-radius: 10px 0 0 10px;
  }

  .yd_prc2 .yd_flx2 .flx_2 {
    flex: 1 0 0;
    flex-basis: 50%;
    padding: 75px;
    border-radius: 0 10px 10px 0;
  }

  .yd_ft_cst .f-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 360px;
    flex: 0 0 360px;
  }

  .yd_ft_cst .split_text_inner h2 {
    font-size: 30px !important;
  }

  .yd_ft_cst .split_text_inner p {
    font-size: 17px !important;
  }

  .yd_ft_cst .cst_box {
    margin-bottom: 0;
  }

  .block_list li {
    width: 25%;
    padding: 47px 0 37px;
    display: block;
  }

  .block_list li:nth-child(4) {
    border-right: none;
  }

  .block_list li:nth-child(2),
  .block_list li:nth-child(6) {
    border-right: 2px solid rgba(255, 255, 255, 0.3);
  }

  .block_list li:nth-child(n + 5) {
    border-top: 2px solid rgba(255, 255, 255, 0.3) !important;
  }

  .block_list li:nth-child(n + 3) {
    border-top: none;
  }

  .yd_cta_box {
    padding: 0 0;
  }

  .cta_box .cta_box_inner {
    padding: 0 50px;
  }

  .cta_box .cta_box_inner h2 {
    font-size: 28px;
    line-height: 1.6;
  }

  .yd_rev_bg {
    padding: 100px;
  }

  .yd_rev_bg .rev_block {
    padding: 60px;
  }

  .footer .footer-logo {
    text-align: left;
  }

  .footer .footer-menu {
    text-align: right;
    margin: 0;
  }

  .footer .footer-links ul {
    text-align: right;
  }
}

@media only screen and (min-width: 480px) {
  .container-s {
    padding-left: 10px;
    padding-right: 10px;
  }

  .flex-inner .f-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: left;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .navbar-nav {
    padding: 0 0.5rem;
  }

  .yd_flex .yd_flex_2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 420px;
    flex: 0 0 420px;
  }
}

@media only screen and (min-width: 1025px) {
  .hero2 .hero-form #contactForm {
    float: right;
  }

  .flex-inner .f-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 500px;
    flex: 0 0 500px;
  }

  .yd_ft_cst .f-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 540px;
    flex: 0 0 540px;
  }
}

@media only screen and (min-width: 240px) and (max-width: 420px) {
  .form input {
    padding: 0 75px 0 20px;
  }
  .form .submit-button {
    margin-left: 0;
    margin-top: 10px;
  }
}

@media only screen and (min-width: 24em) {
  .prk-circle {
    width: 360px;
    height: 360px;
  }

  .txt-box h2 {
    font-size: 21px;
    font-weight: 500;
  }

  .txt-box .btn-action {
    padding: 10px 24px;
    font-size: 12px;
    margin: 25px 10px 0 0;
  }

  .txt-box ul#countdown li span {
    font-size: 38px;
  }

  .txt-box ul#countdown li.seperator {
    font-size: 32px;
  }

  .txt-box ul#countdown li p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 420px) {
  .form {
    text-align: center;
  }

  .form input {
    padding: 0 75px 0 20px;
  }

  .form .submit-button {
    margin-left: 0;
    margin-top: 10px;
  }

  #chimp-email-error {
    left: 5%;
    bottom: -30%;
  }

  .yd_cta_box #response {
    position: absolute;
    left: 5%;
    bottom: -50%;
  }

  .yd_cta_box #chimp-email-error {
    left: 15%;
    bottom: -25%;
  }
}
.popular-link:hover {
  color: #23d3d3;
  transition: 0.3s;
}

.popular-link{
  width: fit-content;
  text-align: center;
}

.popular-section {
  background-color: #bee4ef;
  padding: 40px 20px;
}

.popular-container {
  font-family: "Montserrat";
  margin: 0 auto;
}

.popular-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}

.popular-description {
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-size: 16px;
}

.popular-list {
  display: grid;
  max-width: 1200px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
 
}

.popular-item {
  padding: 5px;
  text-align: center;
}

.popular-link {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 16px;
  display: block;
}

/* Mobile - 2 kolumny */
@media (max-width: 520px) {
  .popular-list {
      grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .popular-title {
      font-size: 24px;
  }
  
  .popular-item {
      padding: 12px 15px;
  }
  
  .popular-link {
      font-size: 14px;
  }
}
@media (max-width: 767px) {
  .popular-list {
      grid-template-columns: repeat(3, 1fr);
  }
  
  
}
/* Tablet - 4 kolumny */
@media (min-width: 768px) and (max-width: 1240px) {
  .popular-list {
      grid-template-columns: repeat(4, 1fr);
  }
}

/* Desktop - 7 kolumn */
@media (min-width: 1240px) {
  .popular-list {
      grid-template-columns: repeat(7, 1fr);
  }
}
.selected-car-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 15px; 
  margin-top: 30px;
  @media screen and  (max-width:1260px){
    grid-template-columns: repeat(2, 1fr); 
    
  }  
  @media screen and (max-width:767px) and (min-width:640px){
    grid-template-columns: repeat(3, 1fr); 
  }  
  @media screen and (max-width:650px){
    display: none;
  }
}

.selected-car-img {
  width: 260px;       
  height: 250px;      
  object-fit: cover;  
  display: block;   
  @media screen and (max-width:1450px) and (min-width:1260px){
    width: 210px;       
    height: 200px;
  }  
  @media screen and (max-width:1050px) and (min-width:900px){
    width: 210px;       
    height: 200px;
  }  
  @media screen and (max-width:900px) and (min-width:820px){
    width: 190px;       
    height: 180px;
  }  
  @media screen and (max-width:820px) and (min-width:767px){
    width: 170px;       
    height: 160px;
  }  
  @media screen and (max-width:767px) and (min-width:650px){
    width: 190px;       
    height: 180px;
  }  
}



.config-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin: 45px auto !important;
  max-width: 1140px;
  align-items: center;
  padding-bottom: 45px !important;
  padding: 0 2%;
  @media screen and (max-width:850px){
    display: none;
  }
}
.mobile-config-row {
  display: none;
  align-items: flex-start;
  gap: 40px;
  max-width: 1140px;
  align-items: center;
  padding: 3%;
  
  @media screen and (max-width:850px){
    display: flex;
  }
}
.blue{
  background-color: #bee4ef;
  padding-top: 20px;
}
.config-text-content {
  flex: 1;
  font-family: "Montserrat";
}

.config-image-wrapper {
  flex: 0 0 400px;
  height: 100%;
  object-fit: cover;
}
.mobile-config-image-wrapper {
  flex: 0 0 400px;
  height: 100%;
  object-fit: cover;
  margin-bottom: 30px;

}
.config-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  @media screen and (min-width:850px){
    min-height: 450px;
  }
}

.config-title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.config-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.config-features-list {
  list-style: none;
  padding: 0;
  font-family: "Montserrat";
}

.config-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.5;
}

.config-check-icon {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  margin-top: 2px;
  flex-shrink: 0;
  fill: #28a745;
}

.config-feature-text {
  color: #333;
}

.config-feature-label {
  font-weight: bold;
  margin-right: 8px;
}

.config-specs-title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
}
.config-section .mobile-config-row:not(.blue .mobile-config-row){
  @media screen and (max-width:850px){
    margin: 30px 0;
  }
}
.config-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.config-specs-table td {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

.config-specs-table td:first-child {
  font-weight: bold;
  color: #333;
  width: 40%;
  padding-right: 20px;
}

.config-specs-table td:last-child {
  color: #666;
}

.config-specs-table tr:last-child td {
  border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
  .config-row {
      flex-direction: column;
      gap: 20px;
  }
  
  .config-image-wrapper {
      flex: none;
      order: -1;
  }
  
  .config-title, .config-specs-title {
      font-size: 24px;
  }
  
  .config-specs-table td:first-child {
      width: 50%;
  }
}

.carousel-container {
  overflow: hidden;
  position: relative;

  margin: 40px auto;
  padding: 0 20px;
  max-width: calc(100% - 50px);
 
}

.preview-wrapper-border{
    border: 1px solid black;
}

.preview-wrapper{
  width: 260px;
  height: 250px;
  @media screen and (max-width:1950px) and (min-width:1451px){
    width: 260px !important;       
    height: 250px !important;
  }  
  @media screen and (max-width:1450px) and (min-width:1260px){
    width: 210px !important;       
    height: 200px !important;
  }  
  @media screen and (max-width:1050px) and (min-width:900px){
    width: 210px !important;       
    height: 200px !important;
  }  
  @media screen and (max-width:900px) and (min-width:820px){
    width: 190px !important;       
    height: 180px !important;
  }  
  @media screen and (max-width:820px) and (min-width:767px){
    width: 170px !important;       
    height: 160px !important;
  }  
  @media screen and (max-width:767px) and (min-width:650px){
    width: 190px !important;       
    height: 180px !important;
  }  
}
.preview-wrapper img{
  transform: scale(0.9);
}
.carousel-grid {
  display: inline-flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
  width: max-content;
}

.travel-card {
  position: relative;
  flex: 0 0 auto;
  width: 180px;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  background: #000;
}

.travel-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.travel-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.4s ease;
}

.travel-card:hover img {
  transform: scale(1.05);
}

.travel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 2;
}

.travel-card-content {
  position: relative;
  z-index: 3;
  padding: 20px 10px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.travel-card h3 {
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 0 10px;
  color: white;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  max-width: 160px;
  word-wrap: break-word;
  font-size: 13px;
  bottom: 40%;
}

.podstopnica-options {
  display: flex;
  gap: 25px;
  margin: 20px 0;
}

.podstopnica-label{
  display: flex;
  align-items: center;
  gap: 2px;
}
.radio-option {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  padding-left: 28px;
  user-select: none;
}

.radio-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-custom {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 2px solid #aaa;
  border-radius: 50%;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.radio-option input:checked ~ .radio-custom {
  background-color: #007bff;
  border-color: #007bff;
}

.radio-custom::after {
  content: "";
  position: absolute;
  display: none;
}

.radio-option input:checked ~ .radio-custom::after {
  display: block;
}

.radio-option .radio-custom::after {
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  position: absolute;
}

.gallery-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: none;
  @media screen and (max-width:650px){
    display: block;
  }
}

.gallery-slide {
  
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background: #fff;
  
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.preview-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  @media screen and (max-width: 480px){
    background-color: white;
  }
  
}

.mat-preview, .border-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /*height: 100%;*/
  object-fit: cover;
  @media screen and (max-width: 480px){
    width: fit-content;
  }
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.arrow:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}

.hidden {
  display: none;
}

.carousel-container {
  overflow: hidden;
  position: relative;
  margin: 40px auto;
  padding: 0 20px;
  max-width: calc(100% - 50px);
}

.popular-title {
  text-align: center;
  margin-bottom: 30px;

}

.carousel-wrapper {
  position: relative;
}

.carousel-grid {
  display: inline-flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
  width: max-content;
}

.travel-card {
  position: relative;
  flex: 0 0 auto;
  width: 180px;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  background: #000;
}

.travel-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.travel-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.4s ease;
}

.travel-card:hover img {
  transform: scale(1.05);
}

.travel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.6) 30%,
      rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 2;
}

.travel-card-content {
  position: relative;
  z-index: 3;
  padding: 20px 10px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.travel-card h3 {
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 0 10px;
  color: white;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  max-width: 160px;
  word-wrap: break-word;
  font-size: 13px;
  bottom: 40%;
}

.carousel-nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-nav.prev {
  left: -5px;
}

.carousel-nav.next {
  right: -5px;
}

.carousel-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.carousel-nav:disabled:hover {
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767px) {
  .carousel-nav {
      display: block;
  }
}

@media (max-width: 480px) {
  .carousel-container {
      padding: 0 10px;
  }
  
  .travel-card {
      width: 160px;
      height: 230px;
  }
  

}
.discount-code-section {
  margin: 20px 0;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.discount-code-header {
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
  font-size: 16px;
}

.discount-code-input-wrapper {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.discount-code-input {
  flex: 1;
  min-width: 200px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.discount-code-button {
  padding: 12px 20px;
  background-color: #bee4ef;
  color: #333;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  white-space: nowrap;
  min-width: 100px;
}

.discount-code-button:hover {
  background-color: #a8dae8;
  transform: translateY(-1px);
}

.discount-code-button:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
  color: white;
}

@media (max-width: 768px) {
  .discount-code-input-wrapper {
      flex-direction: column;
      gap: 12px;
  }
  
  .discount-code-input {
      min-width: 100%;
      font-size: 16px;
  }
  
  .discount-code-button {
      width: 100%;
      padding: 14px;
      font-size: 16px;
  }
}

.discount-message {
  margin-top: 10px;
  padding: 10px;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
}

.discount-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.discount-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.applied-discount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #d4edda;
  padding: 12px;
  border-radius: 4px;
  margin-top: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

.remove-discount {
  background: none;
  border: none;
  color: #721c24;
  cursor: pointer;
  font-size: 18px;
  padding: 2px 8px;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.remove-discount:hover {
  background-color: rgba(114, 28, 36, 0.1);
}

@media (max-width: 480px) {
  .discount-message {
      font-size: 13px;
      padding: 8px;
  }
  
  .applied-discount {
      font-size: 14px;
      padding: 10px;
  }
}

/* Style dla checkboxa regulaminu */
.terms-section {
  margin: 20px 0;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.terms-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.terms-checkbox {
  margin-top: 3px;
  transform: scale(1.2);
}

.terms-label {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  flex: 1;
}

.terms-link {
  color: black;
  text-decoration: none;
  font-weight: 900;
}

.terms-link:hover {
    text-decoration: underline;
    color: black;
}

.terms-error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 8px;
  display: none;
  text-align: center;
  padding: 8px;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .terms-section {
      padding: 12px;
  }
  
  .terms-checkbox-wrapper {
      gap: 10px;
  }
  
  .terms-label {
      font-size: 13px;
      line-height: 1.4;
  }
  
  .terms-error {
      font-size: 11px;
      margin-top: 6px;
  }
}

/* Style dla podsumowania zamÃ³wienia */
.order-summary {
  margin: 20px 0;
  padding: 20px;

  border-radius: 8px;
  border: 1px solid #dee2e6;
}

.order-summary-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
  text-align: center;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9ecef;
  flex-wrap: wrap;
  gap: 10px;
}
.first-order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}
.order-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.order-item-name {
  font-weight: 500;
  flex: 1;
  min-width: 200px;
}

.order-item-price {
  font-weight: bold;
  white-space: nowrap;
}

.discount-row {
  color: #28a745;
}

.total-row {
  font-size: 18px;
  font-weight: bold;
  padding-top: 15px;
  border-top: 2px solid #bee4ef;
  margin-top: 15px;
}

.total-savings {
  color: #28a745;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  margin-top: 10px;
  padding: 8px;
  background-color: #d4edda;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .order-summary {
      padding: 15px;
      margin: 15px 0;
  }
  
  .order-summary-title {
      font-size: 16px;
      margin-bottom: 12px;
  }
  
  .order-item {
      margin-bottom: 10px;
      padding-bottom: 8px;
  }
  
  .order-item-name {
      min-width: 150px;
      font-size: 14px;
  }
  
  .order-item-price {
      font-size: 14px;
  }
  
  .total-row {
      font-size: 16px;
      padding-top: 12px;
      margin-top: 12px;
  }
  
  .total-savings {
      font-size: 13px;
      margin-top: 8px;
      padding: 6px;
  }
}

@media (max-width: 480px) {
  .order-item {
      /*flex-direction: column;*/
      align-items: flex-start;
      gap: 5px;
  }
  
  .order-item-price {
      align-self: flex-end;
      font-size: 16px;
  }
  
  .total-row .order-item-price {
      font-size: 18px;
  }
}

/* Aktualizacja stylu przycisku */
.configurator-btn.disabled {
  background-color: #6c757d !important;
  cursor: not-allowed;
  opacity: 0.6;
}

/* ResponsywnoÅ›Ä‡ dla caÅ‚ego konfiguratora */
@media (max-width: 1024px) {
  .discount-code-section,
  .terms-section,
  .order-summary {
      margin: 15px 0;
  }
}

@media (max-width: 768px) {
  .configurator-wrapper {
      padding: 15px;
  }
  
  .discount-code-section,
  .terms-section,
  .order-summary {
      margin: 12px 0;
  }
}

@media (max-width: 480px) {
  .configurator-wrapper {
      padding: 10px;
  }
  
  .discount-code-section,
  .terms-section,
  .order-summary {
      margin: 10px 0;
      border-radius: 6px;
  }
  
  .discount-code-header,
  .order-summary-title {
      font-size: 15px;
  }
}

.photo-gallery {
  margin: 0 auto;
  width: 80vw;
  height: 85vw;
  max-width: 600px;
  max-height: 600px;
  border: 1px solid rgb(149, 149, 149);
  border-radius: 5%;
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
}

.indicators {
  position: absolute;
  z-index: 100;
  display: flex;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  gap: 8px;
}

.indicator {
  width: 10px;
  height: 10px;
  background-color: rgba(179, 179, 179, 0.8);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.indicator.active {
  background-color: #1e266d;
  transform: scale(1.2);
}

.photos-wrapper {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
  will-change: transform;
}

.gallery-photo {
  min-width: 100%;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5%;
}

.preview-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5%;
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
}

.video-thumbnail .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  fill: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  z-index: 10;
}

.video-thumbnail .play-button:hover {
  fill: #ffffff;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail img {
  display: block;
  width: 100%;
}

.first-photo{
  transform: scale(0.85);
}

.first-photo img{
  object-fit: contain !important;
}
.summary-img{
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.order-details-summary{
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9ecef;
  @media screen and (max-width:465px){
    flex-direction:column
  }
  @media screen and (min-width:768px) and (max-width:1080px){
    flex-direction:column
  }
}
.bold{
  font-weight: bold;
}

.details-data div{
  margin: 5px 0;
  font-size: 12px;
  @media screen and (max-width:768px){
    font-size: 12px;
  }
}
.details-data div:first-child{
  margin-top: 0;
}
#model {
  display: inline-block;
  max-width: 200px; 
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  vertical-align: bottom;
}
.summary-preview{
  width: 90px !important;
  height: 90px !important;
}
.icons-wrapper{
  display: flex;
  font-size: 14px;
  justify-content: space-around;
}
.icons-wrapper img{
  width: 29px;
}
.icons-wrapper div{
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 5px;
}

.first-link{
  @media screen and (min-width: 480px){
    font-weight: 500;
  }
  margin: 0 auto !important;
  padding-bottom: 0;
  padding-top: 0;
}

.checkout-row select{
  -webkit-appearance: none;
  color: black !important;
}
.checkout-header{
  @media screen and (max-width: 480px){
    margin-bottom: 10px !important; /* Do regulacji ile pikseli */
  }
}

/* Popup - Phone and Email */


.contact-popup {
  position: absolute;
  background: white;
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: none;
  white-space: normal;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  min-width: 160px;
  text-align: center;
  background-color: rgb(242, 239, 239);
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  will-change: opacity, transform;
}

.contact-popup.popup-phone,
.contact-popup.popup-phone-mobile {
  min-width: 200px;
}

.contact-popup.popup-email,
.contact-popup.popup-email-mobile {
  min-width: 260px;
}

.contact-popup.active {
  display: block;
  animation: popupFadeIn 0.2s ease-in-out;
}

.popup-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.popup-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.popup-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.popup-text-line {
  display: flex;
  align-items: center;
  gap: 6px;
}

.popup-link {
  color: #333;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
  word-break: break-word;
}

.popup-link:hover {
  color: #0066cc;
}

.popup-hours {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.popup-hours-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

.contact-popup::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  border-width: 8px 8px 0 8px;
  border-color: rgb(242, 239, 239) transparent transparent transparent;
  filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
  .contact-popup {
    min-width: 130px;
    padding: 14px 16px;
    font-size: 14px;
  }
}

.contact-handler {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: visible;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
}

.popup-overlay.active {
  display: block;
}

.contact-icon {
  transition: transform 0.2s ease-in-out;
}

.contact-handler:hover .contact-icon {
  transform: scale(1.1);
}
.popup-email-icon{
  width: 18px;
  height: 18px;
}

.order-details-box {
  padding: 30px;
  border-radius: 10px;
  font-family: "Montserrat";
  max-width: 1100px;
  margin: 0 auto  auto;
 
}
.order-search-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  width: 100%;
  @media screen and (max-width: 390px) {
    flex-direction: column;
  }
}

.order-search-input-wrapper {
  position: relative;
  flex: 1;
  width: 100%;
}

.order-search-input-wrapper svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  fill: #666;
}

.order-search-input-wrapper input {
  width: 100%;
  padding: 10px 15px 10px 40px;
  border: 2px solid #000;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

.order-search-input-wrapper input:focus {
  border-color: #23d3d3;
}

.order-search-btn {
  flex-shrink: 0;
  padding: 10px 30px;
  border: 2px solid #000;
  background: #f9f9f9;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  @media screen and (max-width: 390px) {
    width:100%;
  }
}

.order-search-btn:hover {
  background: #23d3d3;
  color: #fff;
}
.order-details-box h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #2c3e50;
  font-weight: bold;
}

.order-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.order-detail-item {
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.order-detail-item-button-invoice {
  margin-top: -37px;
  margin-left: 100px;
  padding: 15px;
  background: #f8f9fa;
  color: #fff;
  border-radius: 8px;
}

.order-detail-item-button-invoice a {
    color: #666;
}

.order-detail-label {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.order-detail-value {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
}
.status-timeline-section {
  padding: 40px 0 20px 0;
  margin: 0 auto;
  border-radius: 10px;
  background: #fff;
  font-family: "Montserrat";
  font-size: 12px;
  max-width: 1100px;
}

.status-timeline-section h2 {
  font-size: 24px;
  margin-bottom: 40px;
  text-align: center;
  color: #2c3e50;
}

.status-timeline-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  flex-wrap: nowrap;
  padding: 20px 0;
}


.status-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  min-width: 100px;
  width: 305px;
}

.status-step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #000;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.status-step.active .status-step-icon {
  background: green;
  border-color: #000;
}

.status-step-icon svg {
  width: 32px;
  height: 32px;
  fill: #666;
}

.status-step.active .status-step-icon svg {
  fill: #fff;
}

.status-step-text {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  max-width: 140px;
  line-height: 1.4;
}

.status-step.active .status-step-text {
  color: #2c3e50;
}


@media (max-width: 768px) {
  .status-timeline-wrapper {
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  .status-timeline-section{
    margin-bottom: 0;
    padding: 0 20px;
  }
  .status-progress-line {
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 80%;
  }
  .order-steps-table{
    margin: 10px 20px 40px 20px !important;
  }
  .status-progress-fill {
    width: 100%;
    height: 0%;
    top: auto;
    bottom: 0;
    transition: height 0.8s ease;
  }

  .status-step {
    flex-direction: row;
    align-items: center;
    margin-bottom: 30px;
  }

  .status-step-icon {
    margin-right: 15px;
    margin-bottom: 0;
    transform: scale(0.9);
  }

  .status-step-text {
    max-width: 220px;
    text-align: left;
    overflow-wrap: break-word;
  }
}

.order-steps-table {
  max-width: 1100px;
  margin: 10px auto 40px auto;
  font-family: "Montserrat", sans-serif;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #ccc;
}

.order-steps-table table {
  width: 100%;
  border-collapse: collapse;
}
.order-steps-table tr{
  height: 60px;
}
.order-steps-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #ccc;
  font-size: 16px;
  color: #2c3e50;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
}

.order-steps-table a {
    color: black;
}

.order-steps-table tr:last-child td {
  border-bottom: none;
}

.order-steps-table .check-icon {
  width: 30px;
  text-align: center;
}

.order-steps-table .check-icon svg {
  width: 24px;
  height: 24px;
  fill: #00b300;
  display: none; 
}

.order-steps-table tr.active .check-icon svg {
  display: inline-block;
}


.order-steps-table tr:first-child td:first-child {
  border-top-left-radius: 10px;
}
.order-steps-table tr:first-child td:last-child {
  border-top-right-radius: 10px;
}
.order-steps-table tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
.order-steps-table tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

.video-wrapper {
  position: relative;
  width: calc(100% - 40px); 
  margin: 0 auto 30px auto; 
  padding-top: 56.25%; 
  max-width: 1100px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.language-selector {
  position: relative;
  cursor: pointer;
}
.language-icon {
  width: 28px;
  height: 28px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.language-icon:hover {
  opacity: 0.7;
}
.language-popup {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  min-width: 120px;
}
.language-popup.show {
  display: block;
}
.language-option {
  padding: 10px 16px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid #f0f0f0;
}
.language-option:last-child {
  border-bottom: none;
}
.language-option:hover {
  background-color: #f5f5f5;
}
.mobile-language-dropdown {
  display: none;
  margin-top: 20px;
  padding: 0 15px;
}
.mobile-language-dropdown select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .language-selector {
    display: none !important;
  }
  .mobile-language-dropdown {
    display: block;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    margin-right: 20px;
  }
  .language-selector {
    margin-left: 3px;
  }
}

.language-circle {
  width: 30px;
  height: 30px;
  border: 3.5px solid rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0,0,0,0.5);
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.language-circle:hover {
  border-color: rgba(0,0,0,0.8);
  color: rgba(0,0,0,0.8);
}

.main-logo{
  width: 25px;
  height: auto;
  @media screen and (max-width: 500px){
    width: 20px;
  }
  @media screen and (max-width:440px){
    width: 18px;
  }
  @media screen and (max-width:350px){
    display: none;
  }
}
.navbar-brand{
  display: flex;
  align-items: center;

}
.footer-language-dropdown {
  margin-top: 20px;
  text-align: center;
}

.footer-language-select {
    width: 45%;
    margin: 0 auto;
    padding: 10px 14px;
    border-radius: 20px;
    border: 1.5px solid rgba(0, 0, 0, 0.4);
    background: transparent;
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    background-color: white;
    font-family: "Montserrat";
    -webkit-appearance: none;
    -moz-appearance: none;
}
