/* ==========================================================================
Custom Menu Primary
========================================================================== */


{% set ulColor       = "" %} /* Set ul background color */
{% set liColor       = "" %} /* Set li background Color */
{% set aColor        = "" %} /* Set link Color */
{% set aColorHover   = "" %} /* Set link Hover Color */

/* Parent List */
.custom-menu-primary .hs-menu-wrapper > ul{ 
  background:;
}
.custom-menu-primary .hs-menu-wrapper > ul > li{
  background:;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a{
  color:;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a:hover{
  color:;
}

/* Child List */
.custom-menu-primary .hs-menu-wrapper > ul ul{}
.custom-menu-primary .hs-menu-wrapper > ul ul li{
  background:;
}
.custom-menu-primary .hs-menu-wrapper > ul ul li a{
  color:;
}
.custom-menu-primary .hs-menu-wrapper > ul ul li a:hover{
  color:;
}
.custom-menu-primary a{text-decoration:none;}
/* Override max width on menu links */
.custom-menu-primary .hs-menu-wrapper > ul li a, 
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
  overflow: visible !important;
  max-width: none !important;
  width: auto !important;
}

/* Fix menu disappearing on desktop after toggling mobile menu */
@media screen and (min-width:992px) {
  .custom-menu-primary .hs-menu-wrapper { 
    display:block !important;
  }
}




/* ==========================================================================
Mobile Menu - Hubspot Standard Toggle Menu
========================================================================== */


/**
* Special Note
*
* When the menu is open, a class of .mobile-open is applied to the body. You can 
* use this for custom styling on any element when the menu is in the open position.                     
*/

.mobile-trigger, .child-trigger{
  display: none; /* Hide button on Desktop */
}

@media (max-width:991px){


  /* Variables
  ========================================================================== */

  {% set menuColorMobile = "#000000" %}   /* Set Mobile Menu Background Color */
  {% set aColorMobile = "#ffffff" %}      /* Set Link Color */
  {% set aColorHoverMobile = "#ffffff" %} /* Set Link Hover Color */

  /* 
  * Menu Reset
  *
  * Remove styling from desktop version of custom-menu-primary. Place any 
  * additional CSS you want removed from the mobile menu in this reset 
  */

  .custom-menu-primary,
  .custom-menu-primary .hs-menu-wrapper > ul,
  .custom-menu-primary .hs-menu-wrapper > ul li,
  .custom-menu-primary .hs-menu-wrapper > ul li a{
    display: block;
    float: none;
    position: static;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    padding: 0px;
    margin: 0px;
    background-image: none;
    background-color: transparent;
    border: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow:    none;
    box-shadow:         none; 
    max-width: none;
    width: 100%;
    height: auto;
    line-height: 1;  
    font-family:var(--primary_font_regular);
    text-decoration: none;
    text-indent: 0px;
    text-align: left;
    color:;
  }


  /* Toggle Button
  ========================================================================== */

  .mobile-trigger{
    display: inline-block !important; /* Show button on mobile */
    cursor: pointer; /* Mouse pointer type on hover */
    position: absolute; /*******************************************/
    top: -60px;          /* Position Button at right of screen  */
    right: 10px;        /*******************************************/
    width: auto; /* Button width */
    height: auto; /* Button height */      
    padding: 7px 10px 8px 10px;
    background: transparent; /* Background color */
    border: 1px solid #002c6b;
    font-size: 16px;
    font-family:var(--primary_font_regular);
    text-align: left;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: ; 
  }
  .mobile-trigger:hover{
    text-decoration: none; /* Removes link text underline on button */
    color:;
    background-color: ; 
    border-color: #002c6b;
  }

  /* Change button when menu is open */
  .mobile-open .mobile-trigger{
    color:;
    background-color: ; 
    border-color: #002c6b;
  }


  /* Toggle Button Icon
  ========================================================================== */

  /*   .mobile-trigger i{
  display: inline;
  position: relative;
  top: -4px;
}
  .mobile-trigger i:before, .mobile-trigger i:after{
  position: absolute;
  content: '';
}
  .mobile-trigger i, .mobile-trigger i:before, .mobile-trigger i:after{
  width: 22px; 
  height: 2px;  
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  color: #002c6b;
  background-color: #002c6b;
  display: inline-block;
}
  .mobile-trigger i:before{
  top: -6px; 
}
  .mobile-trigger i:after{
  top: 6px;  
}

  .mobile-trigger:hover i, .mobile-trigger:hover i:before, .mobile-trigger:hover i:after,  
  .mobile-open .mobile-trigger i, .mobile-open .mobile-trigger i:before, .mobile-open .mobile-trigger i:after{
  background-color:#002c6b;  
} */


  /* Child Toggle Button
  ========================================================================== */

  .child-trigger{
    display: block !important; /* Hide button on Desktop */
    cursor: pointer; /* Mouse pointer type on hover */
    position: absolute;
    top: 0px;
    right: 0px;
    width: 55px !important; /* Button width */
    min-width: 55px !important;
    height: 45px !important; /* Button height */  
    padding: 0 !important;
    border-left: 1px dotted rgba(255, 255, 255, .20);
  }
  .child-trigger:hover{
    text-decoration: none;
  }
  .child-trigger i{
    position: relative;
    top: 50%; /* Centers icon inside button */
    margin: 0 auto !important;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .child-trigger i:after{
    position: absolute;
    content: '';
  }
  .child-trigger i, .child-trigger i:after{
    width: 10px; /* Icon line width */
    height: 1px; /* Icon line height */
    background-color:; /* Icon color */
    display: block;

  }
  .child-trigger i:after{
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .child-trigger.child-open i:after{
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .child-trigger.child-open i{
  }


  /* Menu Styles on Mobile Devices
  ========================================================================== */  

  .custom-menu-primary.js-enabled{
    position: relative;
    padding-top: 44px; /* Makes room for button */
    margin: 10px 0 10px 0;
  }

  /* Hide menu on mobile */
  .custom-menu-primary.js-enabled .hs-menu-wrapper,
  .custom-menu-primary.js-enabled .hs-menu-children-wrapper{
    display: none;
  }  

  /* Make child lists appear below parent items */
  .custom-menu-primary ul.hs-menu-children-wrapper{
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    display: none;
  }

  /* Mobile Menu Styles */ 
  .custom-menu-primary.js-enabled .hs-menu-wrapper{
    width: 100%;
    position: relative; /**************************************************************/
    top: 0;             /* Positions the menu to drop from the very top of the screen */
    left: 0;          /**************************************************************/
    padding: 0;
  }
  .custom-menu-primary .hs-menu-wrapper{
    background-color:; /* Menu background color set off global menuColorMobile variable */
    width: 100%; /* Full screen width */
  }

  /* Level 1 Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul > li{
    position: relative;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li a{
    font-size: 22px; /* Font size of top level list items */
    line-height: 45px;
    overflow: visible;
  }

  /* Level 1 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul li{
    border-top: 1px dotted rgba(255, 255, 255, .35); /* Adds transparent dark highlights to top of top level list items */
  }
  .custom-menu-primary .hs-menu-wrapper >  ul li a{
    padding: 0 10px;
    color:; /* link color set by global mobile-aColor variable */
  }
  .custom-menu-primary .hs-menu-wrapper > ul li a:hover{
    color:; /* link hover color set by global mobile-aColorHover variable */
  }

  /* Level 2 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul ul li{
    background-color: rgba(255, 255, 255, .08);
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul li a{
    text-indent: 10px; /* Indent Child lists */
    font-size: 16px; /* Font size of child lists */
  }

  /* Level 3 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul ul ul li a{
    text-indent: 30px; /* Indent Child lists */
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul ul ul li a{
    text-indent: 50px; /* Indent Child lists */
  }
}


.botttom-header { width: 100%; display: inline-block; padding: 28px 0; background: #F5F5F5; transition: 0.3s ease-in-out; }
.botttom-header .bottom-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.botttom-header .bottom-inner .logo { width: 120px; display: inline-block; margin: 0; line-height: 0; }
.botttom-header .bottom-inner .logo a { width: 100%; display: inline-block; }
.botttom-header .bottom-inner .logo a img { object-fit: contain; object-position: center; }
.botttom-header .bottom-inner .menu { width: auto; display: inline-block; margin: 0; }
.botttom-header .bottom-inner .cta-cart { width: auto; display: flex; align-items: center; justify-content: center; margin: 0; gap: 16px; }
.botttom-header .cta-cart .cta { width: auto; display: inline-block; }
.botttom-header .cta-cart .cta a { text-decoration:none;font-family:var(--primary_font_semibold);font-weight:600; font-size: 16px; line-height: 100%; text-align: center; color: var(--primary_color); background-color: var(--tertiary_color); padding: 11px 16px; width: auto; display: inline-block; transition:0.3s ease-in-out; }
.botttom-header .cta-cart .cta a:hover { background-color: var(--primary_color); color: #fff; }
.botttom-header .cta-cart .bookmark { width: auto; display: inline-block; }
.botttom-header .cta-cart .bookmark a {text-decoration:none; width: auto; display: flex; align-items: center; justify-content: center; gap: 8px; line-height: 0; }
.botttom-header .cta-cart .bookmark a img { width: 13px; display: inline-block; object-fit: contain; object-position: center; }
.botttom-header .cta-cart .bookmark a span {  font-size: 14px; line-height: 100%; color: var(--primary_color); }
.botttom-header .cta-cart .cart { width: auto; display: inline-block; }
.botttom-header .cta-cart .cart a { text-decoration:none;width: auto; display: flex; align-items: center; justify-content: center; gap: 8px; line-height: 0; }
.botttom-header .cta-cart .cart a img { width: 20px; display: inline-block; object-fit: contain; object-position: center; }
.botttom-header .cta-cart .cart a span { text-decoration:none; font-size: 14px; line-height: 100%; color: var(--primary_color); }
.botttom-header .bottom-inner .hs-menu-wrapper > ul { width: 100%; }
.botttom-header .bottom-inner .hs-menu-wrapper > ul > li { width: auto; display: inline-block; }
.botttom-header .bottom-inner .hs-menu-wrapper > ul > li > a {text-decoration:none; font-family:var(--primary_font_semibold);font-weight:600; font-size: 14px; line-height: 24px; width: auto; display: inline-block; color: var(--primary_color); padding: 0 15px; } 
.botttom-header .bottom-inner .hs-menu-wrapper > ul > li > ul.hs-menu-children-wrapper { width: auto;display: inline-block; background: #FFFFFF;  z-index: 9; }
.botttom-header .bottom-inner .hs-menu-wrapper > ul > li > ul.hs-menu-children-wrapper > li { width: 100%; display: inline-block; text-align: left; vertical-align: top; }
.botttom-header .bottom-inner .hs-menu-wrapper > ul > li > ul.hs-menu-children-wrapper > li > a {  font-size: 14px; line-height: 24px; color: var(--primary_color); padding: 5px 15px; }
.botttom-header .bottom-inner .hs-menu-wrapper > ul > li:hover > a, .botttom-header .bottom-inner .hs-menu-wrapper > ul > li.active > a{ position:relative; }
.botttom-header .bottom-inner .hs-menu-wrapper > ul > li:hover > a:before, .botttom-header .bottom-inner .hs-menu-wrapper > ul > li.active > a:before{ position:absolute; bottom:-34px; content:''; width:100%; height:7px; background-color:var(--secondary_color); left: 0; }

.botttom-header .bottom-inner .hs-menu-wrapper > ul > li.hs-item-has-children > a { position: relative; z-index: 1; padding-right: 30px; }
.botttom-header .bottom-inner .hs-menu-wrapper > ul > li.hs-item-has-children > a:after { content: ''; position: absolute; top: 9px; right: 6px; width: 13px; height: 6px; background-position: center; background-size: contain; background-repeat: no-repeat; background-image: url(https://25747658.fs1.hubspotusercontent-eu1.net/hubfs/25747658/Luma-arles-2025/down.svg); }
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children.hs-menu-depth-2:hover .hs-menu-children-wrapper > li:hover > a,
.botttom-header .bottom-inner .hs-menu-wrapper > ul > li > ul.hs-menu-children-wrapper > li:hover > a { background-color: #f59f35; }
body.mobile-open { overflow: hidden; }
.botttom-header .bottom-inner .menu .menu-btn-wraper { display: none; }
.header.sticky .botttom-header { position: fixed; top: 0; left: 0; right: 0; z-index: 999; transition: 0.3s ease-in-out; }

.lang_switcher_class .globe_class { width: auto !important; display: inline-block; background: none; height: auto !important; }
.lang_switcher_class .globe_class > li { width: auto; display: inline-block; }
.lang_switcher_class .lang_list_class { top: 20px;  padding: 5px 0 0; }
.lang_switcher_class .globe_class > li > a {text-decoration:none; width: auto; position: relative; z-index: 1; margin: 0; font-size: 0; display: flex; align-items: center; justify-content: center; gap: 3px; pointer-events: none; }
.lang_switcher_class .globe_class > li > a:after { content: ''; vertical-align: middle; background-position: 50%; background-repeat: no-repeat; background-size: contain; border-radius: 0; width: 13px; height: 6px; cursor: pointer; background-image: url('https://25747658.fs1.hubspotusercontent-eu1.net/hubfs/25747658/Luma-arles-2025/down.svg'); display: inline-block; }
.lang_switcher_class .globe_class > li > a:before { content: attr(lang);  font-size: 14px; line-height: 22px; text-align: center; text-transform: capitalize; color: var(--primary_color); width: auto; display: inline-block; }
.lang_switcher_class .lang_list_class:before,.lang_switcher_class .lang_list_class:after{display:none;}
.lang_switcher_class .lang_list_class li{border: none !important;width:100%;display:inline-block;padding:0!important;}
.lang_switcher_class .lang_list_class li a{font-size:14px;line-height:22px;text-align:center;text-transform:capitalize;color:var(--primary_color);width:100%;display:inline-block;padding:6px 10px;}
.lang_switcher_class .lang_list_class li a:hover { color: var(--primary_color) !important; } 
.lang_switcher_class .globe_class {border-radius: 0;padding: 0px 15px;}
.lang_switcher_class .globe_class:hover {background-color: #fff;}
header.header.sticky {margin-bottom: 75px;}

@media(max-width:1229px){
  .botttom-header .bottom-inner .hs-menu-wrapper > ul > li { margin: 0; }
  .botttom-header .bottom-inner .hs-menu-wrapper > ul > li > a { padding: 0 10px; }
}

@media(max-width:991px){
  .botttom-header .bottom-inner .hs-menu-wrapper > ul > li:hover > a:before{display:none;}
  .botttom-header .bottom-inner .hs-menu-wrapper > ul > li.active > a:before{bottom:5px;left: 15px;}
  header.header.sticky {margin-bottom: 75px;}
  .botttom-header { position: relative; z-index: 99; padding: 20px 0; }
  .botttom-header .cta-cart .bookmark { display: none; }
  .botttom-header .container { width: 100%; }
  .botttom-header .menu .mobile-trigger { top: -48px; right: 30px; display: flex !important; align-items: center; justify-content: center; gap: 10px; font-family:var(--primary_font_semibold);font-weight:600; font-size: 16px; line-height: 100%; color: var(--primary_color); padding: 0; border: none; }
  .botttom-header .bottom-inner .cta-cart .cta, .botttom-header .bottom-inner .cta-cart .cart  { display: none; }
  .lang_switcher_class .globe_class > li {position: relative;}
  .botttom-header .lang-switch {display:initial;position: relative;right: 66px;}
  .botttom-header .menu .mobile-trigger i {font-family: FontAwesome !important; transform: rotate(90deg); width: auto; display: inline-block; font-size: 22px; line-height: 20px; }
  .botttom-header .bottom-inner .menu { background: #FFFFFF; width: 100%; position: absolute; right: 0; top: 100%; padding: 0; }
  .botttom-header .bottom-inner .hs-menu-wrapper > ul { width: 100%; display: inline-block; /* background: #fff; */ padding:0; }
  .botttom-header .bottom-inner .hs-menu-wrapper > ul > li { width: 100%; display: inline-block; border: none; }
  .botttom-header .bottom-inner .hs-menu-wrapper > ul > li > a {display: inline-block; padding: 15px 15px;  font-size: 20px; line-height: 30px; }
  .botttom-header .bottom-inner .menu .hs-menu-wrapper { background: #FFFFFF; width: 100%; position: absolute; top: 1px; right: 0; height: calc(100vh - 76px); overflow-y: scroll; min-height: 100%; padding: 15px 0 120px 0; }
  .botttom-header .bottom-inner .hs-menu-wrapper > ul > li.hs-item-has-children > a:after { display:none; }
  .botttom-header .bottom-inner .hs-menu-wrapper > ul > li.hs-item-has-children > a { padding: 15px 15px; }
  .botttom-header .bottom-inner .child-trigger { border: none; z-index: 99; content: ''; position: absolute; top:8px; right: 0; background-position: center; background-size: 16px; background-repeat: no-repeat; background-image: url(https://25747658.fs1.hubspotusercontent-eu1.net/hubfs/25747658/Luma-arles-2025/down.svg); width: 50px !important; height: 45px !important; min-width: 45px !important; }
  .botttom-header .bottom-inner .child-trigger.child-open { transform: rotate(180deg); }
  .botttom-header .bottom-inner .hs-menu-wrapper > ul > li > ul.hs-menu-children-wrapper { width: 100%; box-shadow: none; }
  .botttom-header .bottom-inner .hs-menu-wrapper > ul > li > ul.hs-menu-children-wrapper > li { border: none; }
  .botttom-header .bottom-inner .hs-menu-wrapper > ul > li > ul.hs-menu-children-wrapper > li > a { font-size: 16px; line-height: 26px; padding: 15px 15px; }
  body.mobile-open .botttom-header { background: #fff; border-bottom: 1px solid #000000; }
  body.mobile-open .botttom-header .menu .mobile-trigger { font-size: 0; background-image: url(https://25747658.fs1.hubspotusercontent-eu1.net/hubfs/25747658/Luma-arles-2025/cross.png); width: 20px; height: 20px; background-position: center; background-repeat: no-repeat; background-size: contain; display: inline-block; }
  body.mobile-open .botttom-header .menu .mobile-trigger i { display: none; }
  .botttom-header .bottom-inner .menu .menu-btn-wraper { width: 100%; max-width: 400px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 20px 0 20px; }
  .botttom-header .menu-btn-wraper .cta a { width: auto; display: inline-block; margin: 0;  font-size: 20px; line-height: 30px; padding: 8px 24px; color: var(--primary_color); border: 1px solid var(--primary_color); }
  .botttom-header .menu-btn-wraper .cta { width: auto; display: inline-block; margin: 0; }
  .botttom-header .menu-btn-wraper .cart { width: auto; display: inline-block; margin: 0; }
  .botttom-header .menu-btn-wraper .cart a { width: auto; display: flex; align-items: center; justify-content: center; gap: 10px; margin: 0;  font-size: 20px; line-height: 30px; padding: 9px 16px; color: var(--primary_color); }
  .botttom-header .menu-btn-wraper .cart a img { object-fit: contain; object-position: center; max-width: 20px; display: inline-block; }
  .botttom-header .menu-btn-wraper .cart a span { width: auto; display: inline-block; }
  .header.sticky .botttom-header .bottom-inner .menu .hs-menu-wrapper { height: calc(100vh - 76px); }

  .botttom-header .bottom-inner .bookmark { width: auto; display: inline-block; margin: 0 170px 0 0; position: absolute; right: 0; }
  .botttom-header .bottom-inner .bookmark a {  text-decoration:none;width: auto; display: flex; align-items: center; justify-content: center; gap: 8px; line-height: 0; }
  .botttom-header .bottom-inner .bookmark a img { width: 13px; display: inline-block; object-fit: contain; object-position: center; }
  .botttom-header .bottom-inner .bookmark a span {  text-decoration:none;font-size: 14px; line-height: 100%; color: var(--primary_color); }
}

/* 
@media(max-width:767px){
.botttom-header .bottom-inner .bookmark { margin: 0 190px 0 0; }
} */




.Bookmark-popup__overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: #444444B2; display: flex; /* keep it flex to allow animation */ justify-content: center; align-items: center; z-index: 1000; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.Bookmark-popup__overlay.active { opacity: 1; pointer-events: auto; }
.Bookmark-popup { background: #fff; padding: 40px; border-radius: 0; position: relative; width: 792px; max-width: 90%; transform: translateY(-20px); opacity: 0; transition: opacity 0.3s ease, transform 0.3s ease; max-height: 90vh; overflow-y: auto; }
.Bookmark-popup__overlay.active .Bookmark-popup { opacity: 1; transform: translateY(0); }
.Bookmark-popup__close { position: absolute; top: 30px; right: 30px; cursor: pointer; font-size: 18px; font-family:var(--primary_font_semibold); line-height: 1; }
.Bookmark-popup .title { width: 100%; display: inline-block; font-family:var(--primary_font_semibold); font-size: 40px; line-height: 100%; margin: 0 0 28px 0; }
.Bookmark-popup .pop-content { width: 100%; display: inline-block; }
.Bookmark-popup .result-text { width: 100%;  }
.Bookmark-popup .result-text p { width: 100%; display: inline-block; letter-spacing: -0.3px; }
.Bookmark-popup .bookmark-list-popup { width: 100%; display: inline-block; }
.Bookmark-popup .bookmark-list-popup ul { width: 100%; display: inline-block; padding: 0; margin: 0; }
.Bookmark-popup .bookmark-list-popup ul li { width: 100%; display: inline-block; padding-bottom: 16px; margin-bottom:24px; border-bottom: 1px solid var(--primary_color); }
.Bookmark-popup .bookmark-list-popup ul li .wrap-item { width: 100%; display: flex; justify-content: flex-start; gap: 20px; }
.Bookmark-popup .bookmark-list-popup ul li .wrap-item a {text-decoration:none; width: auto; display: flex; flex-direction: column-reverse; align-items: flex-start; justify-content: center; margin: 0; font-size: 18px; line-height: 24px; font-style: normal; font-family: var(--secondary_font) !important; color: var(--primary_color); font-family:var(--primary_font_semibold); }
.Bookmark-popup .bookmark-list-popup ul li .wrap-item a i { width: 100%; display: inline-block; color: var(--primary_color);  padding:3px 0 0  0; }
.Bookmark-popup .bookmark-list-popup ul li:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
.Bookmark-popup .bookmark-list-form { width: 100%; display: inline-block; margin: 20px 0 0 0; }
.Bookmark-popup .bookmark-list-form form { width: 100%; display: inline-block; position: relative; z-index: 1; }
.Bookmark-popup .bookmark-list-form form .hs-form-field { width: 60%; display: inline-block; margin-bottom: 10px; }
.Bookmark-popup .bookmark-list-form form .hs-form-field label { width: 100%; display: inline-block; }
.Bookmark-popup .bookmark-list-form form .hs-form-field label span { width: 100%; display: inline-block;  font-size: 14px; line-height: 22px; letter-spacing: -0.3px; }
.Bookmark-popup .bookmark-list-form form .hs-form-field label span.hs-form-required { display: none; }
.Bookmark-popup .bookmark-list-form form .hs-form-field .input { width: 100%; display: inline-block; }
.Bookmark-popup .bookmark-list-form form .hs-form-field .input input { border: 1px solid var(--primary_color); height: auto; padding: 12px 12px; }
.Bookmark-popup .bookmark-list-form form .hs_submit.hs-submit { width: 40%; position: absolute; top: 28px; right: 0; text-align: right; }
.Bookmark-popup .bookmark-list-form form .hs_submit.hs-submit input { background: var(--secondary_color); color: #fff; font-size: 16px; line-height: 100%; font-family: var(--primary_font); height: auto; padding: 13px 12px; width: auto; display: inline-block; }
.Bookmark-popup .bookmark-list-form form .hs_submit.hs-submit input:hover { background: var(--primary_color); }
.Bookmark-popup .bookmark-list-form form ul.hs-error-msgs { width: 100%; display: inline-block; margin: 0; }
.Bookmark-popup .bookmark-list-form form ul.hs-error-msgs li { width: 100%; display: inline-block; margin: 0; }
.Bookmark-popup .bookmark-list-form form .hs-form-field ul.inputs-list { width: 100%; display: inline-block; }
.Bookmark-popup .bookmark-list-form form .hs-form-field ul.inputs-list li.hs-form-booleancheckbox { width: 100%; display: inline-block; margin: 0; }
.Bookmark-popup .bookmark-list-form form .hs-form-field ul.inputs-list li.hs-form-booleancheckbox label { width: 100%; margin: 0; display: flex; align-items: flex-start; justify-content: flex-start; }
.Bookmark-popup .bookmark-list-form form .hs-form-field ul.inputs-list li.hs-form-booleancheckbox label input { width: 16px; height: 16px; margin: 0; }
.Bookmark-popup .bookmark-list-form form .hs-form-field ul.inputs-list li.hs-form-booleancheckbox label span { width: calc(100% - 32px); display: inline-block;  font-size: 12px; line-height: 16px; }
.Bookmark-popup .bookmark-list-form form .hs_error_rollup ul.no-list.hs-error-msgs.inputs-list { display: none !important; }

.Bookmark-popup .no-result-text { width: 100%; }
.Bookmark-popup .no-result-text p { margin-bottom:28px;letter-spacing: -0.3px; width: 100%; display: inline-block; color: var(--primary_color); }
.Bookmark-popup .no-result-text p strong { font-family:var(--primary_font_semibold); }
.Bookmark-popup .popup-cta-wrap { width: 100%; display: flex; align-items: flex-start; justify-content: flex-start; gap: 30px; }
.Bookmark-popup .popup-cta-wrap a { text-decoration:none;width: auto; display: inline-block; margin: 0; background: var(--secondary_color);    border: 2px solid var(--secondary_color); color: #fff; font-family:var(--primary_font_semibold); font-size: 16px; line-height: 100%; padding: 11px 15px; }
.Bookmark-popup .popup-cta-wrap a + a { font-family:var(--primary_font_semibold); font-size: 16px; line-height: 100%; background: transparent; border: 2px solid var(--tertiary_color); color: var(--primary_color); }
.Bookmark-popup .popup-cta-wrap a + a:hover {background-color: var(--primary_color);border: 2px solid var(--primary_color); color: #fff;}
.Bookmark-popup .popup-cta-wrap a:hover { background: var(--primary_color);border: 2px solid var(--primary_color); }


@media(max-width:767px){
  .botttom-header .bottom-inner .hs-menu-wrapper > ul > li > ul.hs-menu-children-wrapper > li:hover > a{font-weight:600;}
  .Bookmark-popup { padding: 24px; }
  .Bookmark-popup .title { font-family:var(--primary_font_semibold); font-size: 24px; line-height: 30px; margin: 0 0 20px 0; }
  .Bookmark-popup__close { top: 20px; right: 20px; }
  .Bookmark-popup__close svg { height: 18px; width: 18px; display: inline-block; }
  .Bookmark-popup .bookmark-list-form form .hs-form-field { width: 100%; }
  .Bookmark-popup .bookmark-list-form form .hs_submit.hs-submit { position: unset; width: 100%; text-align: left; }

  .Bookmark-popup .popup-cta-wrap { flex-wrap: wrap; gap: 16px; }
  .Bookmark-popup .popup-cta-wrap a { width: 100%; text-align: center; }
  .Bookmark-popup .popup-cta-wrap a + a { line-height: 120%; }
}





