@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500,600,700&display=swap');


:root{
    --green: #a2c617;
    --green700: #617b10;
    --green950: #222E05;
    --darkGreen: #2d4b46;
    --darkGreen700: #30554E;
    --darkGreen800: #2D4B46;
    --darkGreen900: #263B38;
    --darkGreen950: #12211F;
    --lightGrey: #f3f5f0;
    --darkBlue: #27343a;
    --textColor: #263B38;
    --middleGrey: #e9e9e9;
    --orangeRed: #f8452b;
    --yellow: #ffca28;
    --grey100: #F5F6F1;
    --grey200: #EAEBE6;
    --grey300: #DADBD4;
    --grey400: #AEAFA8;
    --grey700: #404559;
    --robotoFont: 'Roboto', sans-serif;
    --robotoCondFont: 'Roboto Condensed', sans-serif;
    --poppinsFont: 'Poppins', sans-serif;
    --transitionSpeed: 200ms;
    --boxRadius: 8px;
    --boxLgRadius: 12px;
    --smallRadius: 4px;
}

.white-color{ color: #fff !important;}
.light-color{ color: var(--lightGrey); }
.dark-color{ color: var(--darkGreen) !important; }
.dark-color-900{ color: var(--darkGreen900) !important; }
.dark-color-950{ color: var(--darkGreen950) !important; }
.green-color{ color: var(--green); }
.black-color{color: #000;}

.dark-color-900:hover,
.dark-color-900:active,.dark-color-900:focus,
.dark-color-900:visited{ color: var(--darkGreen900); text-decoration: none; }

.green700-color,.green700-color:hover,
.green700-color:active,.green700-color:focus,
.green700-color:visited{ color: var(--green700); }

.yellow-color{ color: var(--yellow) !important; }

.white-bg{ background-color: #fff !important; }
.light-bg{ background-color:  var(--lightGrey) !important; }
.dark-bg{ background-color:  var(--darkGreen) !important; }
.green-bg{ background-color:  var(--green) !important; }
.darkgreen900-bg{ background-color:  var(--darkGreen950) !important; }
.grey100-bg{background-color: var(--grey100) !important;}
.grey300-bg{background-color: var(--grey300) !important;}

.letter-sp-1{
    letter-spacing: 1px;
}

.font-size-14{
    font-size: 14px !important;
}

.cursor-pointer{
    cursor: pointer;
}

label{
    margin-bottom: .1rem;
}

.poppins-font{
    font-family: var(--poppinsFont);
}

.toasti-container{
    position: fixed;
    z-index: 1000;
    top: 125px;
    height: 58px;
    margin: auto;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.toasti{
    padding: 16px 8px;
    display: block;
    width: 100%;
    z-index: 1000;
    border-radius: var(--smallRadius);
    box-shadow: 0px 4px 20px 0px #4044031A;

}

.toasti-success, .toasti-success:hover{
    background-color: #EBFFEE;
    color: var(--grey700);
    border: 1px solid var(--darkGreen900);
    font-size: 16px;
    padding-left: 48px;
    cursor: pointer;
    text-decoration: none !important;
}

    .toasti-success::before {
        content: '\f058';
        font-family: 'Font Awesome 6 Pro';
        font-weight: 900;
        margin-right: 10px;
        font-size: 28px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 26px;
    }


.alert-warning2{
    border-color: #FFC008;
    background-color: #FFFBEB;
    color: var(--darkGreen900);
    font-weight: 400;
    font-size: 16px;
    border-radius: 0px;
}

    .alert-warning2 .warning-icon{
        color: #522504;
    }

.inactive{
    opacity: 0.7;
}

a.inheritcolors,
a.inheritcolors:hover{
    color: inherit;
    text-decoration: none;
}


body{
    font-family: var(--poppinsFont);
    font-size: 16px;
    font-weight: 400;
    color: var(--textColor);
    padding: 0 !important;
}

body.lightgreen{
    background-color: #f3f9ef;
}

*:focus-visible{outline: none;}

.btn.focus, .btn:focus,
.form-control:focus{
    box-shadow: none;
}

button:focus{ outline: none;}

.input-group-text{
    background-color: var(--grey100) !important;
    color: var(--darkGreen950) !important;
    border-radius: 8px;
}

.custom-select{
    border-radius: 8px;
}

.modal-content{
    border: 0;
}

.modal-content, .modal-header{
    border-radius: var(--boxLgRadius);
}

.modal-header .close{
    font-weight: 200;
    font-size: 2rem;
    opacity: 1;
    color: #fff;
}

.modal-title.h5{
    font-weight: 500;
}

.modal-title.h5,.card-title.h5{
    font-size: 1.25rem;
}

.modal-header-alter{
    background-color: #fff !important;
    border-bottom: 0;
    padding: 1.7rem !important;
}

.modal-header-alter .modal-title{
    color: #000;
    font-size: 24px;
    font-weight: 600;
}

.modal-header-alter .close{
    color: #000;
    font-weight: 300;
}

.modal-footer-alter{
    border-top: 0;
}

.card-title.h5{
    font-family: var(--poppinsFont);
}

.btn{
    border-radius: 8px !important;
}

.input-group-prepend .btn{
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-right: 0;
}

.input-group-append .btn{
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-left: 0;
}

.input-group-prepend .btn,
.input-group-append .btn{
    padding: 6px 14px;
    color: var(--darkGreen950);
    background-color: var(--grey100);
    border-color: var(--grey300);
}


.btn-primary{
    background-color: var(--green) !important;
    border: 1px solid var(--green) !important;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    color: #fff;
    background-color: var(--darkGreen) !important;
    border-color: var(--darkGreen) !important;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, 
.btn-primary:not(:disabled):not(.disabled):active:focus, 
.show>.btn-primary.dropdown-toggle:focus{
    box-shadow: none;
    background-color: var(--darkGreen);
    border-color: var(--darkGreen);
}

.btn-outline-dark{
    background-color: #fff !important;
    border: 1px solid var(--darkGreen800);
    color: var(--darkGreen800);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn-outline-dark:hover,
.btn-outline-dark:active,
.btn-outline-dark:focus {
    color: #fff;
    background-color: var(--darkGreen800) !important;
}

.btn-outline-dark:not(:disabled):not(.disabled).active:focus, 
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, 
.show>.btn-outline-dark.dropdown-toggle:focus{
    box-shadow: none;
    background-color: var(--darkGreen800);
}


.btn-light{
    color: var(--textColor);
    background-color: var(--lightGrey);
}

.btn-pop{
    font-family: var(--poppinsFont);
}

.btn-flat-left{
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.input-flat-right{
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.btn-bigger{
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 14px;
    letter-spacing: 1px;
}

.form-control{
    border-radius: var(--boxRadius);
}

.modal-header{
    background-color: var(--darkGreen);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    color: #fff;
    padding: .6rem 1rem;
}

.small2{
    font-size: 14px;
    font-weight: 400;
}

.font-weight-600{font-weight: 600;}
.font-weight-400{font-weight: 400;}

img.alignright,
img.alignleft{
    display: block;
    margin: 15px auto;
}

img.aligncenter{
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: auto;
}

a.white-link,
a.white-link:visited{
    color: #fff;
    text-decoration: underline;
    transition: ease all var(--transitionSpeed);
}

a.white-link:hover,
a.white-link:active{
    color: var(--middleGrey);
}

a.green-link,
a.green-link:visited{
    color: var(--green);
    text-decoration: none;
    transition: ease all var(--transitionSpeed);
}

a.green-link:hover,
a.green-link:active{
    color: var(--darkGreen);
}

a.green-link-green-hover,
a.green-link-green-hover:visited{
    color: var(--green);
    text-decoration: none;
    transition: ease all var(--transitionSpeed);
}

a.green-link-green-hover:hover,
a.green-link-green-hover:active{
    color: var(--green);
}

a.dark-link,
a.dark-link:visited{
    color: var(--darkGreen);
    text-decoration: none;
    transition: ease all var(--transitionSpeed);
}

a.dark-link:hover,
a.dark-link:active{
    color: var(--darkGreen);
    text-decoration: underline;
}

.breadcrumb{
    padding: 0;
    background:none;
}

    .breadcrumb a,
    .breadcrumb a:visited{
        color: var(--darkGreen);
        text-decoration: none;
        transition: ease all var(--transitionSpeed);
    }

.w-10{width: 10%;}
.w-20{width: 20%;}
.w-30{width: 30%;}
.w-40{width: 40%;}
.w-50{width: 50%;}
.w-60{width: 60%;}
.w-70{width: 70%;}
.w-80{width: 80%;}
.w-90{width: 90%;}

.lh-1{line-height: 1;}
.lh-1-2{line-height: 1.2;}
.lh-1-8{line-height: 1.8;}

.text-decoration-underline{
    text-decoration: underline !important;
}

h2{
    font-family: var(--poppinsFont);
    font-size: 1.6rem; 
    margin-top: 20px;
    margin-bottom: 10px
}
h3{
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 10px
}

.card h5{
    font-family: var(--poppinsFont);
}

.alert ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.badge{
    line-height: 1.2;
    font-weight: 400 !important;
}

.badge-green{
    background-color: var(--green);
    color: #fff;
}

.badge-darkgreen{
    background-color: var(--darkGreen);
    color: #fff;
}

.badge-darkgreen800{
    background-color: var(--darkGreen800);
    color: #fff;
}

.badge-middlelight{
    background-color: var(--grey200);
}

.badge-fullfilled{
    background-color: #02542D;
    color: #fff;
}

/* .card{
    border-radius: 0 !important;
} */

.progress{
    border-radius: 0;
}

b, strong{
    font-weight: 700;
}

.modal-backdrop{
    z-index: 1240;
}

.modal{
    z-index: 1250;
}

/* Default settings & bootstrap redefines :: end -------------------  */

#fullLoader .spinner-border{
    color: var(--green) !important;
    border-width: 2px !important;
    -webkit-animation: spinner-border 1.2s ease infinite;
    animation: spinner-border 1.2s ease infinite;
    width: 7em !important;
    height: 7em !important;
}

hr.separator-line{
    border-top: 2px solid var(--lightGrey);
}

.narrowed-sm{
    width: 90%;
    margin: 0 auto;
}

.btn-transparent-green{
    border: 2px solid var(--green);
    font-family: var(--poppinsFont);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    background-color: rgba(162, 198, 23, .06);
    color: var(--green);
    border-radius: 0;
    padding: 1.25em 2em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 300px;
    margin: 0 auto;
}

.btn-transparent-green:hover{
    background-color: rgba(162, 198, 23, 1);
    color: var(--darkGreen);
}

.btn-big-green{
    border: 2px solid var(--green);
    font-family: var(--poppinsFont);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    background-color: rgba(162, 198, 23, 1);
    color: var(--darkGreen);
    border-radius: 0;
    padding: 1.25em 2em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 300px;
    margin: 0 auto;
}

.btn-big-green:hover{
    background-color: rgba(162, 198, 23, .06);
    color: var(--green);
}



.btn-large-with-icon{
    font-family: var(--poppinsFont);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    padding: 1.25em 2em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 300px;
}




/* CUSTOM CHECKBOX AND RADIO BUTTONS */
/* ------------------ RADIO -------------------- */
/* The container */
.custom-radio-container {
    display: block;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 45px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default radio button */
  .custom-radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  /* Create a custom radio button */
  .checkmark-radio {
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 30px;
    background-color: #fff;
    border: 1px solid var(--darkBlue);
    border-radius: 50%;
    transition: ease all var(--transitionSpeed);
    -webkit-transition: ease all var(--transitionSpeed);
  }
  
  /* On mouse-over, add a grey background color */
  .custom-radio-container:hover input ~ .checkmark-radio {
    background-color: #ccc;
  }
  
  /* When the radio button is checked, add a blue background */
  .custom-radio-container input:checked ~ .checkmark-radio {
    background-color: var(--green);
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmark-radio:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .custom-radio-container input:checked ~ .checkmark-radio:after {
    display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .custom-radio-container .checkmark-radio:after {
      top: 8px;
      left: 8px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: white;
  }

  /* ------------------ CHECKBOX -------------------- */

  /* The container */
.custom-checkbox-container {
    display: block;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 40px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .custom-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark-checkbox {
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 30px;
    background-color: #fff;
    border: 1px solid var(--darkGreen700);
    border-radius: var(--smallRadius );
    transition: ease all var(--transitionSpeed);
    -webkit-transition: ease all var(--transitionSpeed);
  }

  .checkmark-checkbox.is-invalid{
    background-color: palevioletred;
    border-color: #dc3545;
  }

  .checkmark-checkbox.radio{
    border-radius: 16px;
  }
  
  /* On mouse-over, add a grey background color */
  .custom-checkbox-container:hover input ~ .checkmark-checkbox {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .custom-checkbox-container input:checked ~ .checkmark-checkbox {
    background-color: var(--darkGreen700);
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark-checkbox:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .custom-checkbox-container input:checked ~ .checkmark-checkbox:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .custom-checkbox-container .checkmark-checkbox:after {
    left: 11px;
    top: 5px;
    width: 9px;
    height: 15px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
/* CUSTOM CHECKBOX AND RADIO BUTTONS END *****************************************/


.btn-darkgreen,
.btn-darkgreen:visited{
    background-color: var(--darkGreen);
    font-family: var(--poppinsFont);
    text-transform: uppercase;
    font-weight: 300;
    color: var(--lightGrey);
    border: 1px solid #517957;
}

.btn-darkgreen:hover,
.btn-darkgreen:active,
.btn-darkgreen:focus,
.btn-darkgreen:focus-visible{
    border: 1px solid #517957;
    background-color: #517957;
    color: #fff;
}

.green-cart-btn::before{
    content: "\f07a";
    /* background-image: url(../../images/page/cart-icon-white.svg); */
    background-repeat: no-repeat;
    font-family: 'Font Awesome 6 Pro';
    font-weight: 400;
    font-size: large;
    margin-right: 10px;
}

.green-cart-btn,
.green-cart-btn:visited,
.green-details-btn,
.green-details-btn:visited{
    background-color: var(--green);
    color: #fff;
    font-family: var(--poppinsFont);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 2rem;
}

.green-cart-btn:hover,
.green-cart-btn:active,
.green-details-btn:hover,
.green-details-btn:active{
    background-color: var(--darkGreen);
    color: #fff;
    font-family: var(--poppinsFont);
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 2rem;
}

.green-cart-btn,
.green-cart-btn:hover,
.green-cart-btn:active,
.green-cart-btn:visited{
    /* padding-left: 50px; */
}

.green-cart-btn-outline::before{
    content: " ";
    background-image: url(../../images/page/cart-icon-green.svg);
    background-repeat: no-repeat;
    width: 23px;
    height: 23px;
    position: absolute;
    left: 16px;
}

.green-cart-btn-outline,
.green-cart-btn-outline:visited,
.green-details-btn-outline,
.green-details-btn-outline:visited{
    background-color: #fff;
    border: 2px solid var(--green);
    color: var(--green);
    font-family: var(--poppinsFont);
    font-weight: 700;
    border-radius: 0;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    padding: 0.75rem 1.4rem;
}

.green-cart-btn-outline:hover,
.green-cart-btn-outline:active,
.green-details-btn-outline:hover,
.green-details-btn-outline:active{
    background-color: var(--lightGrey);
    color: var(--green);
    font-family: var(--poppinsFont);
    font-weight: 700;
    border-radius: 0;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    padding: 0.75rem 1.4rem;
}

.green-cart-btn-outline,
.green-cart-btn-outline:hover,
.green-cart-btn-outline:active,
.green-cart-btn-outline:visited{
    padding-left: 50px;
}

.green-details-btn-outline.heart,
.green-details-btn-outline.heart:visited,
.green-details-btn-outline.heart:hover,
.green-details-btn-outline.heart:active{
    color: var(--darkGreen800);
    border-color: var(--darkGreen800);
    padding: .375rem .75rem;
}

.green-cart-btn-outline.smaller,
.green-details-btn-outline.smaller{
    padding: .5rem 1rem;
}

.green-cart-btn-outline.smaller{
    padding-left: 40px;
}

.green-cart-btn-outline.smaller::before{left: 9px;}


.top-navbar-logo{
    height: 43px;
}

.top-navbar-icon{
    height: 26px;
    padding: 0;
}

.navbar{
    padding-left: 15px;
    padding-right: 15px;
}

.navbar-light .navbar-toggler {
    border: none;
    padding: 0;
    position: relative;
    top: 10px;
    margin-right: 10px;
}

.navbar-light .navbar-toggler-icon {
    /* background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e); */
    /* background-image: url(../../images/page/menu-toggler-icon-outline.svg); */
    background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iRWxrw7xsw7Zuw610w6lzX23Ds2QiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiDQoJIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSI1MiA3MC45IDUzMi4yIDUzMi4xIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDUyIDcwLjkgNTMyLjIgNTMyLjE7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJLnN0MHtmaWxsOiNBMkM2MTc7fQ0KPC9zdHlsZT4NCjxnPg0KCTxyZWN0IHg9IjUyIiB5PSIxMzcuOSIgY2xhc3M9InN0MCIgd2lkdGg9IjUzMi4yIiBoZWlnaHQ9IjQ0LjciLz4NCgk8cmVjdCB4PSI1MiIgeT0iMzE0LjYiIGNsYXNzPSJzdDAiIHdpZHRoPSI1MzIuMiIgaGVpZ2h0PSI0NC43Ii8+DQoJPHJlY3QgeD0iNTIiIHk9IjQ5MS4yIiBjbGFzcz0ic3QwIiB3aWR0aD0iNTMyLjIiIGhlaWdodD0iNDQuNyIvPg0KPC9nPg0KPC9zdmc+DQo=");
    width: 24px;
}

.navbar-brand{
    margin-right: 3rem;
}

.navbar-light .navbar-nav .nav-link{
    font-family: var(--poppinsFont);
    font-size: 14px;
    color: var(--green950);
    font-weight: 400;
    text-transform: uppercase;
}

.top-navbar-icons{
    position: relative;
    top: 5px;
}

.top-nav-tab-btn-container{
    display: flex;
    flex-direction: column;
}

.top-nav-tab-btn{
    width: 100%;
    border-radius: 0;
    border: none;
    font-family: var(--poppinsFont);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-nav-tab-btn span.picto{
    width: 23px;
    height: 23px;
    margin-right: 5px;
}

.top-nav-tab-btn.vegan span.picto{
    background-image: url(../../images/page/repa.svg);
    background-repeat: no-repeat;
}

.top-nav-tab-btn.apple span.picto{
    background-image: url(../../images/page/apple.svg);
    background-repeat: no-repeat;
    height: 20px;
    margin-bottom: 3px;
}

.top-nav-tab-btn.zold span.picto{
    background-image: url(../../images/page/ujrahasznositas-picto.svg);
    background-repeat: no-repeat;
}

.mobile-top-cart-icon-container{
    position: relative;
    margin-right: 30px;
}

.top-cart-qty-badge{
    top: -10px;
    position: absolute;
    right: -10px;
    height: 20px;
    width: 20px;
    text-align: center;
    font-size: 11px;
    padding: 0;
    padding-top: 4px;
    line-height: 1.2em;
    color: #fff;
    font-family: var(--robotoFont);
}


.homeMainBanner{
    display: none;
}

.homeMainBannerMobile{
    display: block;
}

/* .homeMainBanner img{
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 500px;
    -moz-object-fit: cover;
    object-fit: cover;
} */

.section-header{
    color: var(--green);
    font-family: var(--poppinsFont);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    border-bottom: 2px solid var(--green);
    padding: 0;
    padding-bottom: 6px;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 10px;
}

.section-header.lineless{
    border-bottom: none;
}

.section-header.dark{
    color: var(--darkGreen);
}

section.light{
    padding: 30px 0;
    background-color: var(--lightGrey);
}

section.dark{
    padding: 30px 0;
    background-color: var(--darkGreen);
}

.ourvalues-box{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-family: var(--poppinsFont);
    font-weight: 400;
    font-size: 16px;
    color: var(--darkBlue);
    margin-bottom: 1em;
}

.ourvalues-box img{
    height: 60px;
}

.ourvalues-box span{
    margin-left: 1em;
}

.blog-item-href:hover,
.blog-main-post-href:hover{
    text-decoration: none;
}

.blog-item{
    /* background-color: #fff;
    border: 1px solid #fff; */
    height: 100%;
}

.blog-item .blog-item-img-container{
    width: 100%;
    height: 110px;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-bottom: .25em;
}

.blog-item .blog-item-img-container img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    margin: auto;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    left: 50%;
    top: 50%;
    transition: ease all var(--transitionSpeed);
}

.blog-item .item-title{
    margin-top: 10px;
    line-height: 1.2em;
    color: var(--darkGreen);
    font-size: 15px;
    font-weight: 400;
    font-family: var(--robotoFont);
}

.dark .blog-item .item-title{
    color: #fff;
}

.blog-item-href:hover img{
    height: 105%;
    width: 105%;
}

.blog-item-href:hover .item-title,
.blog-main-post-href:hover .blog-main-title{
    border-bottom: 2px solid;
    border-bottom-color: var(--green);
}

.blog-list-section .blog-item{
    margin-bottom: 25px;
}

.blog-main-post .blog-main-post-img-container{
    position: relative;
    height: 240px;
    width: 100%;
    z-index: 1;
    overflow: hidden;
    margin-bottom: 8px;
}

.blog-main-post .blog-main-post-img-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: auto;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    left: 50%;
    top: 50%;
    transition: ease all var(--transitionSpeed);
}

.blog-main-post-href:hover img{
    height: 370px;
}


.blog-main-post .blog-main-title{
    font-size: 23px;
    line-height: 1.2em;
    color: var(--green);
    font-weight: 700;
    font-family: var(--robotoFont);
    display: inline;
}

.blog-main-post .blog-main-lead{
    font-family: var(--robotoFont);
    font-size: 17px;
    font-weight: 300;
    color: #fff;
    margin-top: 4px;
}




.slick-slide .product-box{
    margin: 0 10px;
}

.product-box .related-popup-product-form{
    height: 100%;
}

.product-box .related-popup-product-form .badge{
    position: relative;
    bottom: 12px;
}

.product-box form{
    height: 100%;
}

.product-box .product-item{
    position: relative;
    color: var(--darkBlue);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.related-popup-product .product-box .product-item{
    flex-direction: row;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--grey100);
}

.related-popup-product .product-box .product-item .product-image{
    width: 60px;
}

.related-popup-product .product-box .product-item .product-name{
    font-weight: 400;
    font-size: 14px;
    padding: 0;
    text-align: left;
}

.related-popup-product .product-box .product-item .product-info-container{
    padding: 0;
}

.related-popup-product .product-box .product-item .shipping-info{
    font-size: 14px;
}

.product-box .product-item-href:hover{
    text-decoration: none;
}

.product-box .product-item .product-item-img-container{
    width: 100%;
    height: 305px;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.product-box .product-item .product-item-img-container img{
    height: 305px;
    width: 100%;
    object-fit: cover;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
}

.product-box .product-item .product-item-img-container .product-ribbon{
    position: absolute;
    z-index: 1;
    font-weight: 400;
    background: var(--green);
    padding: 6px 12px;
    color: #fff;
    font-size: 14px;
}



.product-box .product-item .product-item-img-container .product-ribbon:nth-child(even){
    background: var(--darkGreen);
}

.product-box .product-item .product-item-img-container .product-ribbon:nth-child(even)::after{
    background: var(--darkGreen);
}



.product-box .product-item .product-info-container{
    text-align: center;
    padding: 10px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-box.fading-info .product-item .product-info-container{
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 1;
    height: 100%;
    opacity: 0;
    background-color: rgba(255, 255, 255, .8);
    transition: ease all var(--transitionSpeed);
}

.product-box .product-item .product-name{
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    color: var(--darkGreen950);
    line-height: 1.2;
    transition: ease all var(--transitionSpeed);
}

.product-box .product-item-href:hover .product-name{
    color: var(--darkGreen);
}


.product-box.fading-info .product-item-img-container{
    border: 1px solid var(--lightGrey);
    height: 162px;
}

.product-box.fading-info .product-item-img-container img{
    height: 162px;
}


.product-box.fading-info .product-item-href:hover .product-name{
    color: var(--green);
}

.product-box.fading-info .product-item .product-info-container{
    display: block;
    flex-direction: unset;
    justify-content: unset;
}

.product-box.fading-info .product-item .product-name:hover{
    color: var(--darkGreen);
}

.product-box .product-item .product-info-container .old-price{
    font-size: 14px;
    font-family: var(--robotoFont);
    font-weight: 400;
}

.product-box .product-item .product-info-container .price{
    font-size: 20px;
    font-weight: 600;
    color: var(--darkGreen950);
    margin-bottom: 10px;
}

.product-box .product-item .product-info-container .shipping-info{
    font-size: 12px;
    font-weight: 400;
    margin-top: .5em;
    color: var(--darkGreen950);
}

ul.goals{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

ul.goals li{
    margin-bottom: 20px;
    margin-right: 10px;
}

ul.goals li a{
    color: #fff;
    background-color: var(--darkGreen);
    font-size: 15px;
    font-family: var(--poppinsFont);
    font-weight: 400;
    transition: ease all var(--transitionSpeed);
    text-decoration: none;
    padding: .5rem .75rem;
}

ul.goals li a:hover{
    background-color: var(--green);
    color: var(--darkGreen);
}

ul.social-icons{
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.social-icons li{
    text-indent: -300px;
    overflow: hidden;
    margin: 0 10px;
    width: 38px;
    height: 38px;
}

ul.social-icons li a{
    width: 38px;
    height: 38px;
    display: block;
    background-repeat: no-repeat;
    background-size: 38px;
    background-position: center center;
    transition: ease all var(--transitionSpeed);
}

ul.social-icons li a.facebook{background-image: url(../../images/page/social-facebook-icon-white.svg);}
ul.social-icons li a.facebook:hover{background-image: url(../../images/page/social-facebook-icon-green.svg);}

ul.social-icons li a.tiktok{background-image: url(../../images/page/social-tiktok-icon-white.svg);}
ul.social-icons li a.tiktok:hover{background-image: url(../../images/page/social-tiktok-icon-green.svg);}

ul.social-icons li a.instagram{background-image: url(../../images/page/social-instagram-icon-white.svg);}
ul.social-icons li a.instagram:hover{background-image: url(../../images/page/social-instagram-icon-green.svg);}

ul.social-icons li a.pinterest{background-image: url(../../images/page/social-pinterest-icon-white.svg);}
ul.social-icons li a.pinterest:hover{background-image: url(../../images/page/social-pinterest-icon-green.svg);}

ul.social-icons li a.youtube{background-image: url(../../images/page/social-youtube-icon-white.svg);}
ul.social-icons li a.youtube:hover{background-image: url(../../images/page/social-youtube-icon-green.svg);}

ul.social-icons li a.email{background-image: url(../../images/page/social-email-icon-white.svg);}
ul.social-icons li a.email:hover{background-image: url(../../images/page/social-email-icon-green.svg);}

.copyright{
    border-top: 1px solid var(--darkBlue);
    text-align: center;
    padding: 20px;
}

footer .menu-container{
    
}

footer .menu-container .menubox{
    padding-left: 0;
    padding-right: 0;
}

footer .menu-container .title{
    font-family: var(--poppinsFont);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    background-color: var(--lightGrey);
    color: var(--darkBlue);
    border: 1px solid var(--green);
    padding: 15px;
    position: relative;
    cursor: pointer;
}

footer .menu-container .title::before{
    content: "+";
    font-family: var(--poppinsFont);
    font-size: 36px;
    font-weight: 400;
    position: absolute;
    top: 0px;
    right: 15px;
}

footer .menu-container .title.expand::before{
    content: "-";
    font-family: var(--poppinsFont);
    font-size: 36px;
    font-weight: 400;
    position: absolute;
    top: 0px;
    right: 15px;
}



footer .menu-container .menu{
    list-style-type: none;
    margin: 0;
    padding-left: 15px;
    padding-bottom: 15px;
    padding-top: 5px;
}

footer .menu-container .menu li a{
    color: var(--darkBlue);
    font-family: var(--robotoFont);
    font-size: 16px;
    font-weight: 400;
    position: relative;
    display: block;
    padding-left: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
}

footer .menu-container .menu li a::before{
    content: " ";
    background-image: url(../../images/page/menu-arrow-right.svg);
    background-repeat: no-repeat;
    width: 6px;
    height: 10px;
    position: absolute;
    left: 0px;
    top: 15px;
}

footer .newsletter-container{
    color: var(--darkBlue);
    padding-top: 25px;
}

footer .newsletter-header{
    padding-left: 70px;
    position: relative;
    padding-bottom: 20px;
}

footer .newsletter-header::before{
    content: " ";
    background-image: url(../../images/page/edm-footer-icon.svg);
    background-repeat: no-repeat;
    width: 56px;
    height: 66px;
    position: absolute;
    left: 3px;
    top: -7px;
    transform: rotate(-20deg);
}

footer .newsletter-header .lead{
    font-size: 13px;
    font-family: var(--robotoFont);
    line-height: 1.2em;
    font-weight: 400;
}

footer .newsletter-header .newsletter-title{
    font-family: var(--poppinsFont);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

footer .newsletter-body .newsletter-input-field{
    border: 1px solid var(--darkBlue);
}

footer .newsletter-body .aszf{
    font-size: 11px;
    font-family: var(--robotoFont);
    font-weight: 400;
}


/* slick modifier: begin */
.slick-prev:before, .slick-next:before{
    color: var(--green);
}

.slick-dots li button{
    transition: ease all var(--transitionSpeed);
}
.slick-dots li button:before{
    font-size: 17px;
    color: var(--green);
}
.slick-dots li.slick-active button:before{
    color: var(--green);
}
.home-main-banner-slicker .slick-dots,
.home-main-banner-mobile-slicker .slick-dots{
    bottom: 10px;
}
/* slick modifier: end */

.home-main-banner-mobile-slicker{
    height: 204px;
}

.home-main-banner-mobile-slicker img{
    height: 204px;
    margin: auto;
}


.footer-mobile-partnerlogos-container{
    /* height: 75px; */
}
.footer-mobile-partnerlogos-container img{
    max-height: 75px;
    margin: 10px;
}

/* pocketCart :: begin */    
.pocket-cart{
    max-width: 100%;
    width: 100%;
    right: 0;
    top: 65px;
    position: absolute;
    background: white;
    z-index: 1000;
    box-shadow: 10px 10px 22px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 10px 10px 22px rgba(0, 0, 0, 0.15);
    border-radius: var(--boxLgRadius);
    display: none;
}

    /* .pocket-cart::before{
        content: " ";
        background-image: url(../../images/page/m-top-collapse-arrow.svg);
        background-repeat: no-repeat;
        background-position: top left;
        height: 13px;
        width: 26px;
        top: -13px;
        position: absolute;
        right: 22px;
    } */

    .pocket-cart .pocketCartWarn p{
        margin-bottom: 0px !important;
    }

    .pocket-cart .head{
        padding: 15px; 
        /* background: var(--darkGreen900);  */
        background: #2D4B46; 
        color: #fff;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        font-weight: 500;
    }

    .pocket-cart .head .fa-xmark{
        cursor: pointer;
    }

    .pocket-cart .pr-container{
        max-height:265px; 
        overflow-y:auto;
    }

    .pocket-cart .pr-container > div {
        border-bottom: 1px dotted var(--grey400);
    }

    .pocket-cart .pr-container > div:last-child {
        border-bottom: none;
    }

    .pocket-cart .pr-image{
        height:55px
    }

    .pocket-cart .pr-data-container{
        width: 80%
    }

    .pocket-cart .pr-name{
        max-width: 65%; 
        line-height: 1.2em;
        font-size: 14px;
    }

    .pocket-cart .pr-special-price{
        color: var(--green);
    }

    .pocket-cart .pr-subtotal{
        font-weight: bold;
    }

    .pocket-cart .pr-remove{
        cursor: pointer;
    }

    .pocket-cart .foot{
        margin-top: 3px;
    }

    .pocket-cart .continue-shopping-btn,
    .product-in-cart-info .continue-shopping-btn{
        border: 1px solid var(--darkGreen800);
        color: var(--darkGreen800);
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
        padding: 12px;
    }
    .pocket-cart .continue-shopping-btn:hover,
    .product-in-cart-info .continue-shopping-btn:hover{
        background-color: var(--darkGreen800);
        color: #fff;
    }

    .pocket-cart .to-cart-btn,
    .product-in-cart-info .to-cart-btn{
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
        padding: 12px;
    }

/* pocketCart :: end */ 

.to-free-shipping-box{
    padding: 1em;
    margin-bottom: 1em;
    text-align: center;
    background-color: #F5F6F1;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin: 1em;
    border-radius: 8px;
}

.to-free-shipping-box .to-free-shipping-progress{
    height: 10px;
    border-radius: 5px;
    background-color: var(--grey300);
    position: relative;
    overflow: visible;
}

.to-free-shipping-box .to-free-shipping-progress-bar{
    border-radius: 5px;
}

.to-free-shipping-box .to-free-shipping-progress-flag{
    position: absolute;
    top: -15px;
    color: var(--darkGreen);
    font-size: large;
}

.product-discounts-box .to-free-shipping-box{
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
}


#headerSearchFormContainer{
    position: relative;
}

#headerSearchForm{
    position: absolute;
    bottom: -53px;
    right: 0;
    display: none;
    background: #fff;
    padding: 0 10px;
    z-index: 1001;
    box-shadow: 10px 10px 22px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 10px 10px 22px rgba(0, 0, 0, 0.15);
    border-radius: 3px;
}

#headerSearchForm.form-inline .form-control {
    display: inline-block;
    width: 210px;
    vertical-align: middle;
}

#headerSearchBtn {
    display: inline-block;
    padding: 6px 10px;
}


.blog-item-category-label{
    font-family: var(--robotoFont);
    font-weight: 400;
    border-radius: 0;
    position: absolute;
    bottom: 0;
    z-index: 1;
    white-space: normal;
    max-width: 100%;
    text-align: left;
}

/* quick view panel :: begin */
#quickViewModal .modal-header{
    background-color: var(--darkGreen);
}

.quick-view-panel{
    color: var(--darkBlue);
    font-size: 16px;
}

.quick-view-panel .product-info-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 125px;
}

.quick-view-panel .product-name{
    font-weight: 400;
    font-size: 1em;
    line-height: 1.2em;
    color: var(--darkGreen950);
}

.quick-view-panel del{
    font-family: var(--robotoFont);
    
}

.quick-view-panel .product-special-price{
    font-family: var(--robotoFont);
}

.quick-view-panel .product-price{
    font-weight: 600;
    font-size: 20px;
    color: var(--darkGreen);
    line-height: 1.2em;
}

.quick-view-panel .unit-price{
    font-size: 14px;
}

.quick-view-panel .quantity-discount,
.product-quantity-discount-container{
    text-align: left;
}

.quick-view-panel .quantity-discount > div,
.product-quantity-discount-container > div{
    display: flex;
    align-items: center;
    margin-top: 15px;
    background-color: var(--grey100);
    padding: 15px;
    border-radius: 8px;
}

.product-quantity-discount-container > div {
    padding: 0;
}

.quick-view-panel .quantity-discount > div > div:first-child,
.product-quantity-discount-container > div > div:first-child {
    width: 30px; /* "cetli" oszlop */
    font-size: 1.4em;
}



.quick-view-panel .quantity-discount > div > div:nth-child(2),
.product-quantity-discount-container > div > div:nth-child(2) {
    flex: 1; /* középső rugalmas */
    text-align: left;
    line-height: 1.2em;
}

.quick-view-panel .quantity-discount > div > div:last-child,
.product-quantity-discount-container > div > div:last-child{
    width: 58px; /* %-os oszlop */
    text-align: right;
}

.quick-view-panel .percent-tag,
.product-quantity-discount-container .percent-tag{
    background-color: var(--darkGreen900);
    color: #fff;
    text-align: center;
    padding: 5px;
    font-weight: 600;
    font-size: 14px;
}

.cartQtySpinner{
    font-family: var(--poppinsFont);
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    padding: 5px 10px !important;
}

.qtySpinner{
    font-family: var(--poppinsFont);
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
}



.quick-view-panel .qtyField,
.product-page-spinner .qtyField{
    max-width: 80px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    height: 44px;
}
/* quick view panel :: end */

.page-container{
    padding-top: 20px;
}

.category-product-list-container .product-box{
    height: 100%;
    max-width: 305px;
    margin: 0 auto;
}

.list-page-title-text{
    font-family: var(--poppinsFont);
    color: var(--green);
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 6px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--green);
}

.simple-page-title-text{
    font-family: var(--poppinsFont);
    color: var(--darkGreen950);
    font-size: 27px;
    font-weight: 600;
    padding-bottom: 6px;
    margin-bottom: 20px;
    text-align: left;
}

.list-page-description-container{
    margin-bottom: 60px;
    position: relative;
}

.list-page-description{
    overflow: hidden;
    position: relative;
    transition: ease all var(--transitionSpeed);
}


.list-page-description.opened{
    /* height: auto !important;
    max-height: unset; */
}

.list-page-description.opened .fader{
    opacity: 0;
    display: none;
}

.list-page-description .fader{
    position: absolute;
    display: block;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 70px;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 5%, rgba(255,255,255,0) 100%);
    opacity: 1;
}

.list-page-description-container .faderbtn{
    position: absolute;
    bottom: -30px;
    left: 0px;
    font-size: .8em;
    font-weight: 700;
    color: var(--darkBlue);
    padding-left: 0;
}

.list-page-description-container .faderbtn:hover,
.list-page-description-container .faderbtn:visited,
.list-page-description-container .faderbtn:focus
{
    text-decoration: none;
}

.list-page-description h2{
    font-size: 1.4rem;
}

.list-page-description h2:first-of-type,
.list-page-description h3:first-of-type,
.list-page-description h4:first-of-type
{
    margin-top: 0px;
}

.list-page-description a,
.list-page-description a:visited
{
    color: var(--green);
    font-weight: 700;
}

.btn-category-tree{
    padding: .25rem .8rem;
    font-size: 1.2em;
}

.btn-category-tree img{
    height: 21px;
}

.product-list-sortener-container{
    min-width: 50%;
}

.pagination{
    justify-content: center;
}

.pagination .page-link{
    font-family: var(--robotoCondFont);
    color: var(--textColor);
    font-family: var(--robotoFont);
    margin: 0 4px;
    padding: 0.35rem 0.65rem;
    background-color: var(--lightGrey);
}

.pagination .page-link:focus{
    box-shadow: none;
}

.pagination .page-item.active .page-link{
    background: var(--green);
    border-color: var(--green);
}

.category-pagination-container{
    border-top: 2px solid var(--lightGrey);
}

.follow-social-block{
    max-width: 360px;
    margin: auto;
}

.follow-social-block .title{
    font-family: var(--poppinsFont);
    color: var(--green);
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    margin-bottom: 20px;
}

.follow-social-block a img{
    width: 56px;
    height: 56px;
}

.follow-social-block.lg{
    max-width: unset;
    margin: 0;
    margin-top: 15px;
    padding: 15px;
    background-color: var(--lightGrey);
}

.follow-social-block.lg .title{
    color: var(--darkGreen);
    text-align: left;
}

.follow-social-block.lg a img{
    margin-bottom: 15px;
    width: 50px;
    height: 50px;
}

#category-tree-overlay{
    display: none;
}

.category-tree{
    will-change: transform;
    display: block;
    position: fixed;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    top: 0;
    bottom: 0;
    left: -300px;
    padding: 0 10px 10px;
    z-index: 2000;
    color: var(--textColor);
    background-color: var(--lightGrey);
    width: 280px;
    transition: all 0.4s cubic-bezier(0.46, 0.01, 0.32, 1);
}

.category-tree .ct-header{
    padding-top: 10px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--middleGrey);
}

.category-tree .ct-body{
    padding-top: 30px;
}

.category-tree .ct-body ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.category-tree .ct-body ul li{
    margin-bottom: 10px;
}

.category-tree .ct-body ul li a{
    font-family: var(--poppinsFont);
    font-size: 15px;
    color: var(--textColor);
    position: relative;
    display: block;
    padding-left: 20px;
}

.category-tree .ct-body ul li a::before{
    content: " ";
    background-image: url(../../images/page/category-tree-arrow.svg);
    background-repeat: no-repeat;
    width: 8px;
    height: 13px;
    position: absolute;
    top: 5px;
    left: 0;
}

.category-tree .ct-footer{
    display: none;
}


.video-thumbnail-block .title{
    font-family: var(--robotoFont);
    font-size: .9em;
    line-height: 1.2em;
    padding-top: 10px;
    font-weight: 700;
    color: var(--darkGreen);
    transition: ease all var(--transitionSpeed);
}

.video-thumbnail-block{
    transition: ease all var(--transitionSpeed);
}

.video-thumbnail-block:hover{
    text-decoration: none;
}

.video-thumbnail-block:hover .title{
    text-decoration: none;
    color: var(--green);
}

#alertModalBody{
    max-height: calc(90vh - 3.5rem);
    overflow: hidden;
    overflow-y: auto;
}

#alertModalBody .product-in-cart-info{
    margin-bottom: 15px;
    color: var(--darkGreen950);
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 400;
}

#alertModalBody .product-in-cart-info .btn{
    font-family: var(--poppinsFont);
}

#alertModalBody .product-in-cart-info .price{
    font-weight: 600;
    font-size: 20px;
    margin-top: 15px;
    color: var(--darkGreen);
}


#alertModalBody .product-in-cart-info .product-image{
    width: 100px;
    margin-right: 20px;
}

.product-main-img-container img{
    max-width: 100%;
    height: auto;
}

.product-picto-container img.product-picto{
    height: 48px;
}

.product-purple-stock-info-icon{
    background: var(--green);
    height: 48px;
}

.product-purple-stock-info-icon img{
    height: 48px;
}


.accordion .card-header button.collapsed::after {
    font-family: "Font Awesome 6 Pro";
    font: var(--fa-font-solid);
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f078"; /* content: down */
    position: absolute;
    font-size: 15px;
    right: 15px;
    top: 24px;
}

.accordion .card-header button::after {
    font-family: "Font Awesome 6 Pro";
    font: var(--fa-font-solid);  
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f077"; /* content: up */
    position: absolute;
    font-size: 15px;
    right: 15px;
    top: 24px;
}

#productDescriptionAccordion .card{
    border: 0;
}


#productDescriptionAccordion .card .card-header{
    padding: 0;
    background-color: var(--grey100);
    border-radius: 8px;
    margin-bottom: 15px;
    border: none;
}

#productDescriptionAccordion .card .card-header button{
    font-family: var(--poppinsFont);
    color: var(--darkGreen);
    font-size: 23px;
    text-transform: uppercase;
}

#productDescriptionAccordion .image-style-align-center{
    text-align: center;
}

#productDescriptionAccordion .image-style-align-left{
    display: inline;
    float: left;
    margin: 0;
    margin-right: 40px;
    margin-bottom: 40px
}

#productDescriptionAccordion .image-style-align-right{
    display: inline;
    float: right;
    margin: 0;
    margin-left: 40px;
    margin-bottom: 40px
}

#referencesTitle{
    border-bottom: 1px solid var(--middleGrey);
    cursor: pointer;
    background-color: var(--middleGrey);
    padding: 5px;
}

#referencesText{
    display: none;
    padding: 5px;
    border: 1px solid var(--middleGrey);
    border-top: 0;
}

#bottom-add-to-cart-container{
    position: fixed;
    z-index: 999;
    width: 100%;
    border-top: 1px solid var(--middleGrey);
    text-align: center;
    padding: 15px;
    bottom: 0;
    box-shadow: 0 0 20px rgba(0,0,0,.5);
    background: rgb(231,231,244);
    background: linear-gradient(0deg, rgba(231,231,244,1) 0%, rgba(255,255,255,1) 100%);
    display: none;
}
    #bottom-add-to-cart-container .flex-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 300px;
        margin: auto;
    }

    #bottom-add-to-cart-container .bottom-p-name{
        font-weight: 700;
        font-size: 20px;
        color: var(--green);
        line-height: 1em;
    }

    #bottom-add-to-cart-container .bottom-p-price{
        font-weight: 700;
        font-size: 20px;
        margin-bottom: 10px;
        color: var(--darkGreen);
        line-height: 1em;
    }


.carbon-footprint{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--lightGrey);
    padding: 10px;
    margin-bottom: 20px;
}

.carbon-footprint .info-text{
    font-family: var(--poppinsFont);
}

.carbon-footprint .info-text strong{
    font-weight: 700;
    text-transform: uppercase;
}

.carbon-footprint .foot{
    height: 58px;
}

.product-main-img-container{
    border: 1px solid var(--middleGrey);
    position: relative;
}

.product-main-img-container .ribbons-container{
    position: absolute;
    width: 100%;
    top: 15px;
}

.product-main-img-container .ribbons-container .product-ribbon{
    position: absolute;
    z-index: 1;
    font-weight: 400;
    background: var(--green);
    padding: 6px 12px;
    color: #fff;
    font-size: 14px;
}

.product-main-img-container .ribbons-container .product-ribbon:nth-child(even){
    background: var(--darkGreen);
}

.product-main-img-container .ribbons-container .product-ribbon:nth-child(even)::after{
    background: var(--darkGreen);
}


.product-picto-container{
    display: flex;
    align-items: baseline;
    justify-content: start;
    flex-direction: column;
    gap: 10px;
}

.product-picto-container .picto-icon-container{
    height: 34px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 0 5px;
}

.product-picto-container .picto-icon-container img{
    width: 34px;
    height: 68px;
    position: absolute;
    top: 0px;
    left: 0px;
    /* transition: ease all var(--transitionSpeed); */
}

.product-picto-container .picto-icon-container div{
    margin-left: 48px;
    margin-top: 6px;
}

.product-picto-container .picto-icon-container:hover img{
    top: -34px;
}

.product-info-container .main-info-container h1{
    font-family: var(--poppinsFont);
    color: var(--darkGreen950);
    font-size: 27px;
    font-weight: 600;
}

.product-info-container .main-info-container .packaging{
    font-family: var(--poppinsFont);
    color: var(--darkGreen950);
    font-weight: 700;
    font-size: 18px;
}

.product-section-header{
    color: var(--darkGreen950);
    font-weight: 600;
    text-align: center;
    font-size: 24px;
    padding: 0;
    padding-bottom: 6px;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 20px;
}

#productExcerptContainer ul,
.check-ok-list {
    list-style: none;
    list-style-type: none;
    padding-left: 0;
}

#productExcerptContainer ul li,
.check-ok-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 7px;
    font-weight: 400;
}

#productExcerptContainer ul li::before,
.check-ok-list li::before{
    font-family: "Font Awesome 6 Pro";
    font: var(--fa-font-solid);
    font-weight: 700;
    content: "\f00c";
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    left: 0px;
    top: 3px;
    color: var(--darkGreen700);
}

#productExcerptContainer a,
#productExcerptContainer a:visited,
#productDescriptionContainer a,
#productDescriptionContainer a:visited,
#productExcerptContainer a span,
#productExcerptContainer a:visited span,
#productDescriptionContainer a span,
#productDescriptionContainer a:visited span,
.post-content-container a,
.post-content-container a:visited
{
    color: var(--green) !important;
    transition: ease all var(--transitionSpeed);
    text-decoration: none;
}


#productExcerptContainer a:hover,
#productExcerptContainer a:active,
#productDescriptionContainer a:hover,
#productDescriptionContainer a:active,
.post-content-container a:hover,
.post-content-container a:active
{
    color: var(--darkGreen);
    text-decoration: none;
}

figure.image{
    text-align: center;
}

figure.image_resized img{
    width: 100%;
}

figure.image_resized.image-style-align-center {
    margin: auto;
}

figure.wp-block-image img{
    max-width: 100%;
}



.post-content-container .toc-container{
    background-color: var(--middleGrey);
    padding: 15px;
    display: block;
}

.post-content-container .toc-container .toc-title{
    font-weight: 400;
    font-size: 1.2em;
}

.post-content-container .toc-container ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.post-content-container .toc-container ul li{
    padding: 0;
    margin: 0;
}

.post-content-container .toc-container ul li a{
    font-weight: 700;
    font-family: var(--robotoFont);
    position: relative;
    padding-left: 15px;
    font-size: .9em;
}

.post-content-container .toc-container ul li a::before{
    font-family: "Font Awesome 6 Pro";
    font: var(--fa-font-solid);
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f105";
    /* content: "\f068"; minus */
    position: absolute;
    font-size: 15px;
    left: 0px;
    top: 0px;
}

.post-content-container p.has-background{
    padding: 2rem;
}

.stock-status-container{
    font-family: var(--poppinsFont);
    font-size: 16px;
    font-weight: 600;
    color: var(--darkGreen900);
}

.stock-status-container button{
    font-size: 16px;
    color: var(--green700);
    font-weight: 600;
}

.stock-status-container button::after{
    content: none;
}

.stock-status-container .shipping-info{
    cursor: pointer;
}

.stock-status-container .shipping-info-icon{
    width: 20px;
    height: 20px;
}

.stock-status-container .dropdown-menu{
    font-size: 13px;
    padding: .5rem;
    border-color: var(--green);
    border-radius: 0;
    width: 250px;
}
.stock-status-container .dropdown-menu div.head{
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid var(--middleGrey);
    padding-bottom: 3px;
}

.stock-status-container .dropdown-menu .dropdown-item{
    padding-left: 0;
    font-weight: 700;
    white-space: normal;
}

.stock-status-container .dropdown-menu .dropdown-item span{
    font-family: var(--robotoCondFont);
    font-weight: 400;
    text-transform: none;
}

.product-to-cart-container{
    padding: 0;
}

.product-discounts-box,
.checkout-shipping-box{
    padding: 15px;
    background-color: var(--grey100);
    border-radius: 8px;
    margin-top: 15px;
}

.additional-products-container .title{
    font-family: var(--robotoFont);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.addon-product-box{
    margin-bottom: 20px;
}

.addon-product-box .addon-product-img-container{
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--middleGrey);
}

.addon-product-box .addon-product-img-container img{
    min-height: 100px;
    min-width: 100%;
    max-width: 100px;
    object-fit: cover;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
}

.addon-product-box .product-name{
    font-family: var(--poppinsFont);
}

.addon-product-box .product-name a,
.addon-product-box .product-name a:visited,
.addon-product-box .product-name a:active,
.addon-product-box .product-name a:hover
{
    font-size: 17px;
    font-weight: 400;
    color: var(--darkGreen);
}

.addon-product-box .product-price{
    font-weight: 700;
    font-size: 20px;
    color: var(--darkGreen);
}

.addon-product-box.inactive{
    opacity: .7;
    background-color: var(--lightGrey);
    padding: 4px;
}

.addon-product-box.active{
    background-color: var(--lightGrey);
    border: 1px solid var(--middleGrey);
    padding: 4px;
}

.product-to-cart-container #pPrice{
    font-weight: 600;
    font-size: 27px;
    color: var(--darkGreen950);
    line-height: 1em;
}

.product-to-cart-container .orig-price{
    font-family: var(--poppinsFont);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2em;
}

.product-to-cart-container #savings{
    font-weight: 700;
    color: var(--orangeRed);
    font-size: 12px;
}

.product-to-cart-container .unit-price{
    font-family: var(--poppinsFont);
    font-size: 13px;
    font-weight: 400;
    color: var(--darkGreen950);
}

.product-to-cart-container .permanent-discount-text{
    font-family: 14px;
    color: var(--darkGreen);
    font-family: var(--poppinsFont);
}

.product-to-cart-container .cart-and-spinner-container{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.package-content .package-content-title{
    font-family: var(--poppinsFont);
    font-weight: 400;
}

.package-content{
    margin-top: 5px;
    padding-top: 5px;
    border-top: 2px solid var(--middleGrey);
}

.package-content ul{
    margin-bottom: 0;
}


.post-header .post-date{
    font-family: var(--robotoFont);
    color: var(--green);
    font-size: .8em;
}


.post-header .post-title{
    color: var(--green);
    margin-top: 5px;
    margin-bottom: 0;
    font-family: var(--robotoFont);
    font-size: 1.8rem;
}

.post-header .post-excerpt{
    font-family: var(--robotoFont);
    font-size: 17px;
    font-weight: 300;
    color: #fff;
    margin-top: 10px;
}

.radhl{
    background-color: var(--green);
    color: white;
    padding: 3px;
}

/* CART TOP PROGRESS LINE::BEGIN */
.progress-line{
    width: 100%;
    position: relative;
}    

    .progress-line::before{
        content: "";
        position: absolute;
        height: 4px;
        width: 75vw;
        top: 24px;
        left: 6vw;
    }

    .progress-line.step-zero::before,
    .progress-line.step-one::before,
    .progress-line.step-two::before,
    .progress-line.step-three::before,
    .progress-line.step-four::before
    {
        background-color: var(--middleGrey);
    }

    .progress-line .step{
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #fff;
        color: var(--middleGrey);
        border: 2px solid var(--middleGrey);
        text-align: center;
        margin: auto;
        font-size: 24px;
        font-weight: 700;
        line-height: 50px;
        margin-bottom: 10px;
    }

    .progress-line .step.completed{
        background-color: var(--darkGreen);
        border-color: var(--darkGreen);
        color: #fff;
    }

    .progress-line .step.next{
        background-color: var(--green);
        border-color: var(--green);
        color: #fff;
    }

    .progress-line span{
        font-weight: 700;
        font-size: 11px;
        line-height: 1.2em;
        display: inline-block;
    }

    .progress-line span.completed{
        color: var(--darkGreen);
    }

    .progress-line span.next{
        color: var(--green);
    }
/* CART TOP PROGRESS LINE::END */


/* CART ITEM GRID::BEGIN */
.cart-grid-item { 
    margin-bottom: 50px;
    border-bottom: 1px solid var(--grey200);
 }

/* .cart-grid-item:last-of-type { 
    border-bottom: none;
 } */

.cart-grid-item {
    display: grid; 
    grid-template-columns: 1fr 2fr; 
    grid-template-rows: 0.5fr 0.3fr 42px 56px; 
    gap: 5px 5px; 
    grid-template-areas: 
      "product-img product-name"
      "product-img quantity"
      ". gross-price"
      "quantity-discount-text remove"; 
}
  
.cart-grid-item .product-name { 
    grid-area: product-name; 
    line-height: 1em;
    font-size: 16px;
}
.cart-grid-item .packaging{
    font-size: 14px;
}
.cart-grid-item .quantity { grid-area: quantity; }
.cart-grid-item .gross-price { grid-area: gross-price; }
.cart-grid-item .quantity-discount-text { 
    grid-area: quantity-discount-text; 
}
.cart-grid-item .remove { 
    grid-area: remove; 
}
.cart-grid-item .product-img { grid-area: product-img; }


.cart-grid-item .unit-price,
.cart-grid-item .gross-price
{
    color: var(--darkGreen);
    line-height: 20px;
    font-size: 16px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.cart-grid-item .quantity{
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.cart-grid-item .qty-spinner-container{
    width: 130px;
}

.cart-grid-item .unit-price del{
    font-weight: 400;
    font-size: 14px;
}
.cart-grid-item .unit-price del small{
    font-size: 11px;
    font-weight: 400;
}

.cart-grid-item .unit-price small,
.cart-grid-item .gross-price small
{
    font-size: 14px;
    font-weight: 700;
}

.cart-grid-item .unit-price .qty-d-icon{
    font-size: 18px;
    color: var(--green);
}
.cart-grid-item .price-alert,
.cart-grid-item .price-alert small{
    font-weight: 600;
}

.cart-grid-item .cart-product-name{
    font-size: 16px;
    font-weight: 400;
    color: var(--darkGreen950);
}

.cart-grid-item .cart-product-name small{
    font-size: 14px;
    font-weight: 700;
    display: block;
}

.cart-grid-item .btn-outline-danger{
    border-radius: 40px;
}

.cart-grid-item .btn-darkgreen700{
    color: var(--darkGreen700);
}

.cart-grid-item .item-header-text{
    font-size: 14px;
    background-color: #f2f2f2;
    color: var(--green);
    font-weight: 700;
    text-transform: lowercase;
    font-family: var(--robotoFont);
}

.cart-grid-item .gift-box{
    color: var(--red);
    text-align: center;
    font-size: 24px;
    cursor: pointer;
}
/* CART ITEM GRID::END */

/* CART FOOTER GRID::BEGIN */

.cart-grid-foot {  
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
        "left right";
}
  
    .cart-grid-foot .left,
    .cart-grid-foot .right{
        padding: 5px 0px;
    }


    .cart-grid-foot .left { 
        grid-area: left; 
    }
  
    .cart-grid-foot .right { 
        grid-area: right; 
        text-align: right;
    }

    .cart-grid-foot#saveBar{
        cursor: pointer;
    }

    .cart-grid-foot.summa{
        border-top: 2px solid var(--grey300);
        border-bottom: none !important;
    }

    .cart-grid-foot.summa .right{
        font-size: 26px;
        font-weight: 600;
    }

    .cart-grid-foot.summa .right .small{
        font-size: 14px;
        margin-top: -5px;
    }

#saveDetails{
    display: none;
}
/* CART FOOTER GRID::END */



/* floating popup :: begin */
.floating-popup {
    border: 1px solid red;
    background: #fff;
    position: fixed;
    bottom: -165px;
    left: 15px;
    z-index: 999;
    width: 260px;
    height: 160px;
    -webkit-box-shadow: 0px -3px 10px 1px rgba(0,0,0,0.3); 
    box-shadow: 0px -3px 10px 1px rgba(0,0,0,0.3);
    transition: all ease-in-out .7s;
}

.floating-popup .title-bar{
    background-color: var(--lightGrey);
}

.floating-popup .title{
    font-weight: 700;
    font-size: 1.2em;
    color: var(--darkGreen);
    text-transform: uppercase;
}

.floating-popup button.close{
    padding: 10px 15px;
    background-color: var(--darkGreen);
    color: #fff;
}

.floating-popup img{
    height: 90px;
}

.floating-popup .thumbnail-container{
    height: 90px;
    width: 90px;
    z-index: 1;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.floating-popup .post-image{
    height: 90px;
    object-fit: cover;
    margin: auto;
    position: absolute;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    left: 50%;
}

.floating-popup .text{
    font-weight: bold;
    line-height: 1.2em;
}

.floating-popup .text a{
    color: var(--green);
}
/* floating popup :: end */

.card.cart-coupon-activation{
    border: none;
    background: none;
}

.card.cart-coupon-activation .card-body{
    padding: 0;
}


.card.cart-coupon-activation h5.card-title{
    color: var(--darkGreen900);
    font-size: 16px;
    font-weight: 600;
}

.cart-coupon-note{
    color: var(--darkGreen900);
    display: none;
}

.card.cart-coupon-activation .loyalty-points-block{
    background: white;
    border: none;
    text-align: center;
    padding: 10px;
    font-weight: normal;
    border-radius: var(--boxRadius);
}

/* CHECKOUT BUTTONS :: BEGIN */

.checkout-btn{
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 600;
    padding: 10px;
}
/*
    .checkout-btn:hover{
        color: #fff;
    }


    .checkout-btn small{
        display: block;
        font-size: 12px;
        font-weight: 600;
        font-family: var(--robotoFont);
    }

    .checkout-btn .circle-icon{
        border: 1px solid #fff;
        display: block;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 10px;
        font-size: 20px;
    }
*/
    .checkout-outline-btn{
        background-color: #fff;
        border-radius: 40px;
        border: 1px solid var(--green);
        color: var(--green);
        font-family: var(--poppinsFont);
        display: flex;
        justify-content: start;
        font-weight: 600;
        font-size: 20px;
        width: 290px;
        line-height: 22px;
        padding: 8px 10px 10px 10px;
        line-height: 30px;
        margin-right: 0px;
        margin-left: auto;
    }

    .checkout-outline-btn.sm{
        font-size: 15px;
    }


    .checkout-outline-btn:hover{
        color: var(--green);
    }

    .checkout-outline-btn .circle-icon{
        border: 1px solid var(--green);
        display: block;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 10px;
        font-size: 16px;
    }

    .checkout-outline-btn .btn-text{
        line-height: 1.4em;
        text-align: left;
    }
/*
    .checkout-btn.cart-refresh-btn{
        font-size: 20px;
        line-height: 37px;
    }
  */
.order-place-btn{
    font-size: 20px;
    background: var(--green);
    font-family: var(--poppinsFont);
    color: #fff;
    font-weight: 700;
    padding: 15px 20px;
}
/* CHECKOUT BUTTONS :: END */

/* SHIPPING RADIO CARD :: BEGIN */
.shipping-mode-bar,
.payment-mode-bar,
.shipping-radio-card,
.billing-radio-card{
    border: 1px solid var(--middleGrey);
    background-color: var(--lightGrey);
    width: 100%;
    padding: 10px 10px;
    cursor: pointer;
    transition: all var(--transitionSpeed) ease-in-out;
    text-align: center;
    font-weight: 700;
    font-family: var(--robotoFont);
    margin-bottom: 1rem;
}

    .shipping-mode-bar:hover,
    .payment-mode-bar:hover,
    .shipping-radio-card:hover,
    .billing-radio-card:hover
    {
        background-color: var(--middleGrey);
    }

    .shipping-mode-bar input[type=radio],
    .payment-mode-bar input[type=radio],
    .shipping-radio-card input[type=radio],
    .billing-radio-card input[type=radio]
    {
        display: none;
    }

    .shipping-mode-bar.active,
    .payment-mode-bar.active,
    .shipping-radio-card.active,
    .billing-radio-card.active
    {
        background-color: var(--green);
        color: #fff;
        position: relative;
    }

    .shipping-mode-bar,
    .payment-mode-bar
    {
        padding: 10px 45px;
    }

    .shipping-mode-bar.active::before,
    .payment-mode-bar.active::before{
        content: " ";
        background-image: url(../../images/page/stock-ok-white.svg);
        background-repeat: no-repeat;
        width: 20px;
        height: 20px;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(calc(-50% + 4px));
    }

.shipping-radio-card,
.billing-radio-card
{
    font-weight: normal;
}
/* SHIPPING RADIO CARD :: END */

/* PACKAGE POINT CARD :: BEGIN  */
.package-point-card{
    background-color: #fff;
    border: 2px solid;
    border-color: var(--middleGrey);
    width: 100%;
    padding: 10px;
    transition: all var(--transitionSpeed) ease-in-out;
}

    .package-point-card:hover{
        background-color: #f2f2f2;
        cursor: pointer;
    }

    .package-point-card label{
        cursor: pointer;
    }

    .package-point-card.active{
        background-color: var(--darkGreen900);
        color: #fff;
        border-radius: var(--boxRadius);
    }

    .package-point-card input[type=radio]{
        opacity: 0;
        position: absolute;
    }

    .package-point-card .shopinfo{
        display: none;
    }

/* PACKAGE POINT CARD :: END  */

.img-review{
    max-height: 85px;
    max-width: unset;
}

.review-product-name{
    font-weight: 700;
    font-size: 19px;
    line-height: 1.2em;
}

.review-price{
    font-weight: 700;
    font-size: 21px;
    color: var(--darkGreen);
}

#totalTable tfoot th:first-of-type{
    width: 66%;
}

#totalTable tr th:last-of-type,
#totalTable tr td:last-of-type{
    text-align: right;
}

/* WP BLOCK COLUMNS :: BEGIN */

.wp-block-columns {
    display: flex;
    margin-bottom: 1.75em;
    box-sizing: border-box;
    flex-wrap: wrap;
    flex-direction: column;
}

.wp-block-column {
    flex-grow: 1;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* WP BLOCK COLUMNS :: END */

/* WP STYLES :: BEGIN */
.info-page .has-text-align-center{
    text-align: center;
}
.info-page .has-white-color{
    color: #fff;
}

.info-page h2.has-background{
    padding: 8px 12px;
}

.info-page .has-large-font-size{
    font-size: 36px;
}

.info-page .has-medium-font-size{
    font-size: 20px;
}

figure.alignright{
    text-align: right;
}

figure.wp-block-image.alignright{
    float: right;
    margin-left: 20px;
    margin-bottom: 10px;
}

figure.wp-block-image.aligncenter{
    text-align: center;
}
figure.wp-block-image.aligncenter img{
    display: block;
    margin: auto;
}
figure.wp-block-image.size-thumbnail img{
    width: 60px;
}

.info-page .wp-block-cover{
    position: relative;
    padding: 80px 55px;
    background-size: cover;
    background-position: center center;
}

.info-page .wp-block-cover span.wp-block-cover__background.has-background-dim{
    opacity: 0.5;
    background-color: #000;
}

.info-page .wp-block-cover span.wp-block-cover__background.has-background-dim-10{
    opacity: 0.3;
}

.info-page .wp-block-cover span.wp-block-cover__background.has-background-dim-20{
    opacity: 0.2;
}

.info-page .wp-block-cover span.wp-block-cover__background.has-background-dim-30{
    opacity: 0.3;
}

.info-page .wp-block-cover span.wp-block-cover__background.has-background-dim-40{
    opacity: 0.4;
}

.info-page .wp-block-cover span.wp-block-cover__background.has-background-dim-60{
    opacity: 0.6;
}

.info-page .wp-block-cover span.wp-block-cover__background.has-background-dim-70{
    opacity: 0.7;
}

.info-page .wp-block-cover span.wp-block-cover__background.has-background-dim-80{
    opacity: 0.8;
}

.info-page .wp-block-cover span.wp-block-cover__background.has-background-dim-90{
    opacity: 0.9;
}

.info-page .wp-block-cover span.wp-block-cover__background.has-background-dim-100{
    opacity: 1;
}

.info-page .wp-block-cover span.wp-block-cover__background.has-dark-gray-background-color{
    background-color: #1a1a1a;
}

.info-page .wp-block-cover span.wp-block-cover__background{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
}

.info-page .wp-block-cover .wp-block-cover__inner-container{
    position: relative;
    z-index: 2;
}

.info-page .confession-board .cb-title{
    font-size: 42px;
    font-family: var(--poppinsFont);
    line-height: 1.4;
}

.info-page .confession-board hr{
    height: 2px;
    color: #fff;
    background-color: #fff;
}

.info-page .confession-board ul{
    width: 80%;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.info-page .confession-board ul li{
    margin-bottom: 30px;
    color: var(--darkGreen);
    font-size: 1.2em;
    font-style: italic;
    line-height: 1.2;
}

.info-page .confession-board ul li strong{
    font-size: 1.2em;
    font-style: normal;
}





.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    border: 1px solid #aaaaaa;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.info-page .team-grid .wp-block-columns{
    padding: 0 15px;
}

.info-page .team-grid{
    flex-direction: column;
}

.info-page .team-grid .team-col{
    max-width: 100%;
}

.info-page .team-grid img{
    width: 100%;
}

.info-page .team-grid .name{
    background-color: var(--darkGreen);
    color: #fff;
    font-weight: 700;
    font-family: var(--poppinsFont);
    text-transform: uppercase;
    margin-bottom: 0;
    padding: 4px 8px;
}

.info-page .team-grid .info{
    background-color: var(--green);
    font-family: var(--poppinsFont);
    padding: 15px 25px;
    font-size: 14px;
    line-height: 1.2em;
}

/* WP STYLES :: END */

.free-shipping-box{
    display: flex;
    gap: 16px;
    height: 60px;
    align-items: center;
}

    .free-shipping-box .free-shipping-icon{
        flex: 0 0 60px;
    }

        .free-shipping-box .free-shipping-icon .fs-icon-bg{
            background-color: var(--grey200);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center
        }

    .free-shipping-box .free-shipping-text{
        flex: 1;
        font-weight: 400;
    }

.cart-progress{
    width: 80%;
    border-radius: var(--boxRadius);
}

.loyalty-points-block{
    font-weight: bold;
    border: 1px solid var(--middleGrey);
    padding: 20px;
    background-color: var(--lightGrey);
    color: var(--darkGreen);
}


.gift-warning-block{
    cursor: pointer;
    font-weight: bold;
    border: 1px solid var(--middleGrey);
    padding: 20px;
    background-color: var(--lightGrey);
    color: var(--darkGreen);
}

.gift-warning-block i{
    color: var(--green);
}

.gift-warning-block:hover{
    background-color: var(--middleGrey);
}

/* terméktanácsadó oldalak :: begin */
.product-consulting-page .toc i.fas{
    color: var(--green);
}

.product-consulting-page .toc-elem{
    font-family: var(--robotoFont);
    font-weight: 700;
    cursor: pointer;
    line-height: 1.2;
    margin-bottom: 12px;
    display: flex;
}

.product-consulting-page .toc-elem::before{
    font-family: "Font Awesome 6 Pro";
    font: var(--fa-font-solid);
    content: "\f0a6";
    font-weight: 900;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-size: 1.2em;
    color: var(--green);
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.product-consulting-page h2{
    color: var(--green);
    font-weight: 700;
}

.product-consulting-page h3{
    font-family: var(--robotoFont);
}

.product-consulting-page .article-recomm-title{
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 10px;
    font-family: var(--robotoFont);
    font-size: 1.2em;
}

.product-consulting-page .article-recomm-title::before{
    font-family: "Font Awesome 6 Pro";
    font: var(--fa-font-solid);
    content: "\f1ea";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    color: var(--green);
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.product-consulting-page h5.entry-title a,
.product-consulting-page h5.entry-title a:visited
{
    color: var(--green);
}

.product-consulting-page h5.entry-title a:active,
.product-consulting-page h5.entry-title a:hover
{
    color: var(--darkGreen);
}

.product-consulting-page ul.menu{
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.product-consulting-page ul.menu li a::before{
    font-family: "Font Awesome 6 Pro";
    font: var(--fa-font-solid);
    content: "\f054";
    font-weight: 600;
    color: var(--darkGreen);
    width: 20px;
    height: 20px;
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.product-consulting-page .termekloop-main{
    margin-top: 25px;
    border-top: 2px solid var(--middleGrey);
    padding-top: 25px;
}
.product-consulting-page .termekloop-main .block-title{
    margin-top: 0px;
}

.product-consulting-page .ref p{
    margin-bottom: 0px;
}

.product-consulting-page .btn-primary,
.product-consulting-page .btn-darkgreen
{
    margin-bottom: 10px;
}
/* terméktanácsadó oldalak :: end */

.succes-order-page .post-content figure.size-full img{
    max-width: 100%;
    height: 165px;
}

.succes-order-page .post-content .carbon-text{
    font-family: var(--poppinsFont);
    font-weight: 400;
}

.succes-order-page .post-content strong{
    font-weight: 700;
}

.not-found-page h2.bigtext{
    font-size: 2em;
    font-weight: 700;
    color: #000;
}

.not-found-page .info{
    font-family: var(--robotoFont);
    color: #000;
}

.not-found-page img{
    max-width: 100%;
}

.newsletter-page .icons-row .icon{
    height: 70px;
    display: block;
    margin: 0 auto;
}

.newsletter-page .icons-row .icon-caption{
    line-height: 1.2;
}

/* newsletter popup  */
#nl-pu.modal{
    pointer-events: none;
}

#nl-pu .modal-dialog {
    width: 360px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}


#nl-pu .modal-dialog .modal-header{
    background: none !important;
    padding: 5px 10px 5px 15px;
    position: relative;
}

#nl-pu .modal-dialog .modal-header .close{
    position: absolute;
    right: 30px;
    top: 20px;
    z-index: 2000;
    opacity: 1;
    text-shadow: none;
    color: white;
    background: #000;
    padding: 3px 5px;
    margin: -5px -11px -10px auto;
    font-size: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

#nl-pu .modal-dialog .modal-content {
    background-color: var(--lightGrey);
    background: url('../../images/page/popup-360x660-mobil-250328.webp') 100% 100% no-repeat;
    background-position: 0px 0px;
    border: 0px;
}

#nl-pu .modal-dialog .modal-content .modal-header { border-bottom: none }

#nl-pu .modal-dialog .modal-content .modal-body .nl-pu-text .lead { 
    font-family: var(--poppinsFont);
    color: var(--darkGreen);
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.2;
}

#nl-pu .modal-dialog .modal-content .modal-body .nl-pu-text .lead span{
    display: block;
    font-size: 2.5em;
    line-height: 1;
}

#nl-pu .modal-dialog .modal-content .modal-body .nl-pu-text .info{
    font-family: var(--robotoFont);
    line-height: 1.2;
}

#nl-pu .modal-dialog .modal-content .modal-body .nl-pu-text .info span{
    font-size: 1.2em;
    font-weight: 700;
    display: block;
}

#nl-pu .nl-pu-cta-container{
    padding-top: 510px;
}

#nl-pu .nl-pu-cta{
    display: block;
    margin: 0px auto;
    border-radius: 6px !important;
    font-family: var(--poppinsFont);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.2em;
    -webkit-box-shadow: 0 3px 0 0 rgba(162,198,23,.3);
    box-shadow: 0 3px 0 0 rgba(162,198,23,.3);
}

#nl-pu .nl-pu-nothanks{
    color: #000;
    font-family: var(--poppinsFont);
    text-align: center;
    text-decoration: underline;
    font-size: .8em;
    display: block;
    width: 200px;
    cursor: pointer;
}

#nl-pu-msg{
    text-align: center;
}

#nl-pu-subscribe-success{
    width: 75%;
    margin: auto;
    text-align: center;
    color: var(--green);
    font-weight: bold;
}

.animate-bottom {
    position: relative;
    animation: animatebottom 0.4s
}

@keyframes animatebottom {
    from {
        bottom: -300px;
        right: -180px;
        opacity: 0
    }

    to {
        bottom: 0;
        right: 0;
        opacity: 1
    }
}

/* newsletter popup :: end  */


.top-features{
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 400;
}

.top-features i{
    color: var(--green);
}

/* TOP NAV PRODUCTS DESKTOP MENU :: begin */
.top-nav-products-desktop-menu-container{
    position: relative;
}

.top-nav-products-desktop-menu{
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 20px;
    width: 100%;
    background: #fff;
    z-index: 1000;
    padding-top: 32px;
    padding-bottom: 32px;
    border-top: 1px solid var(--middleGrey);
    transition: ease all var(--transitionSpeed);
    box-shadow: 0px 10px 22px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 10px 22px rgba(0, 0, 0, 0.15);
}

.top-nav-products-desktop-menu.show{
    visibility: visible;
    opacity: 1;
    top: -24px;
}

.top-nav-products-desktop-menu ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.top-nav-products-desktop-menu ul li{
    line-height: 1.2;
}
.top-nav-products-desktop-menu ul li a{
    padding: 7px 0;
    display: block;
    font-size: 13px;
    color: var(--textColor);
    text-decoration: none;
    font-family: var(--robotoFont);
    font-weight: 400;
    border-bottom: 3px solid #fff;
    transition: ease all var(--transitionSpeed);
}
.top-nav-products-desktop-menu ul li a:hover{
    border-bottom-color: var(--middleGrey);
}
/* TOP NAV PRODUCTS DESKTOP MENU :: end */


/* TOP NAV PRODUCTS MOBILE MENU :: begin */
#top-nav-products-mobile-menu-overlay{
    display: none;
}

.top-nav-products-mobile-menu-container{
    position: relative;
}

.top-nav-products-mobile-menu{
    position: fixed;
    left: -300px;
    top: 0;
    bottom: 0;
    width: 280px;
    overflow-y: auto;
    overflow-x: hidden; 
    padding: 0 10px;
    z-index: 2000;
    background-color: #fff;
    transition: ease all var(--transitionSpeed);
    box-shadow: 10px 0px 22px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 10px 0px 22px rgba(0, 0, 0, 0.15);
    font-weight: 400;
}

.top-nav-products-mobile-menu.show{
    left: 0;
}

.top-nav-products-mobile-menu ul{
    padding: 0;
    margin: 0;
}

.top-nav-products-mobile-menu .tnpmm-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 70px;
    border-bottom: 1px solid var(--middleGrey);
    margin-bottom: 20px;
}

.top-nav-products-mobile-menu .tnpmm-body{
    position: relative;
}

.top-nav-products-mobile-menu .tnpmm-nav{
    padding: 0;
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
    list-style: none;
    text-transform: uppercase;
    line-height: 1.2;
}

.top-nav-products-mobile-menu .tnpmm-nav ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.top-nav-products-mobile-menu .tnpmm-nav .has-sub{
    display: flex;
}
.top-nav-products-mobile-menu .tnpmm-nav .has-sub ul{
    height: 0;
}

.top-nav-products-mobile-menu .tnpmm-nav .has-sub div:first-child{
    width: 260px;
    margin-right: 10px;
}

.top-nav-products-mobile-menu .tnpmm-nav .has-sub ul.sub-sub{
    width: 260px;
    margin-right: 10px;
}

.top-nav-products-mobile-menu #nav-step-back{
    display: none;
    text-transform: uppercase;
}

.top-nav-products-mobile-menu .tnpmm-nav .nav-step-next{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
}

.top-nav-products-mobile-menu .tnpmm-nav a{
    color: var(--textColor);
    display: block;
    padding: 10px 10px;
}

.top-nav-products-mobile-menu .tnpmm-nav a:hover,
.top-nav-products-mobile-menu .tnpmm-nav a:active{
    text-decoration: none;
}
/* TOP NAV PRODUCTS MOBILE MENU :: end */


/* DATEPICKER STYLES :: begin  */
.datepicker table tr td{
    font-weight: 700;
}
.datepicker table tr td.day{
    color: var(--green)
}

.datepicker table tr td.disabled{
    font-weight: 300;
    color: #aaaaaa;
}
/* DATEPICKER STYLES :: end  */

#packageContent .package-product-img{
    max-height: 150px;
    margin: 0 auto;
    display: block;
}

.inactiveLink {
    pointer-events: none;
    cursor: default;
}

#goUp{
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 150px;
    right: 10px;
    background: var(--green);
    background: linear-gradient(25deg, #2d4b46 0%, #a2c617 100%);
    color: #fff;
    font-size: 26px;
    border-radius: 50%;
    text-align: center;
    line-height: 48px;
    cursor: pointer;
    border: 2px solid #fff;
    z-index: 10000;
    display: none;
}


.orig-price-info-block{
    max-height:20px; 
    bottom: 4px; 
    position:relative;
    cursor:pointer;
}


/* USER MENU DROPDOWN :: BEGIN */
.navbar-nav .dropdown-menu.dropdown-user.show{
    position: absolute;
    transform: translate(-50%);
    left: 50%;
    right: 10px;
    top: 33px;
    width: 300px;
    padding: 10px 20px;
    border: none;
    border-radius: var(--boxLgRadius);
    box-shadow: 0px 10px 22px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 10px 22px rgba(0, 0, 0, 0.15);
}

.navbar-nav .dropdown-menu.dropdown-user.show hr{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.navbar-nav .dropdown-menu.dropdown-user .dropdown-item{
    color: #000;
    font-size: 14px;
    font-family: var(--poppinsFont);
    padding: .6rem;
    display: flex;
    justify-content: start;
    align-items: baseline;
}

.navbar-nav .dropdown-menu.dropdown-user .dropdown-item:hover{
    background-color: var(--grey100) !important;
}

.navbar-nav .dropdown-menu.dropdown-user .dropdown-item .icon-container{
    width: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-nav .dropdown-menu.dropdown-user .dropdown-item span:last-child {
    flex-grow: 1; 
}


.navbar-nav .dropdown-menu.dropdown-user .dropdown-item:active{
    background-color: #f8f9fa;
}

.navbar-nav .dropdown-menu.dropdown-user .user-info{
    padding: .35rem 0rem;
}

.navbar-nav .dropdown-menu.dropdown-user .user-info .user-info-name{
    font-size: 1.2em;
    font-family: var(--poppinsFont);
    font-weight: 600;
    color: var(--darkGreen900);
    margin-bottom: .1rem;
}
/* USER MENU DROPDOWN :: END */

/* PASSWORD EYE :: BEGIN */
.password-box{
    position: relative;
}

.password-box .eye-toggle{
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 2;
    cursor: pointer;
    height: 100%;
    width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* PASSWORD EYE :: END */

.alert-country{
    position: fixed;
    z-index: 1010;
    top: 115px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,.13);
    -moz-box-shadow: 0 2px 4px 0 rgba(0,0,0,.13);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.13);
    display: none;
}

/* rating */
.rating {
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.star {
    font-size: 2em;
    line-height: 1em;
    color: #ccc;
    transition: color 0.2s;
}

.star.hover,
.star.selected {
    color: var(--yellow);
}

.rated-star{
    font-size: 1.4em;
    line-height: 1em;
}

.rated-star.small-star{
    font-size: 1.1em !important;
}
/* rating :: end */


.igy-talalsz-el-video-container {
    position: relative;
    width: 100%;
    max-width: 440px; /* Maximális szélesség nagy kijelzőkön */
    margin: 0 auto; /* Középre igazítás */
}

.igy-talalsz-el-video-container video {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Opcionális, ha kerekített sarkakat akarsz */
}

.sz2020-infoblokk {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 999; 
}

.top-favourites-icon,
.top-user-icon,
.top-magnifying-icon,
.top-cart-icon,
.mobile-top-cart-icon,
.top-hamburger-icon{
    font-size: x-large;
    color: var(--darkGreen900);
}

.mobile-top-cart-icon{
    cursor: pointer;
}

.not-available-btn{
    font-family: var(--poppinsFont);
    padding: 0.75rem 1.4rem;
    font-size: .92em;
}

.top-favourites-container,
.top-user-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favourites-counter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-family: var(--poppinsFont);
    color: white;
    font-size: 11px;
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favourites-share-url-container{
    flex-grow: 1;
    padding-right: 1em; 
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.menu-shadow{
    -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,0.1);
    box-shadow: 0 4px 5px 0 rgba(0,0,0,0.1);
    margin-bottom: 24px;
}

.navbar{
    padding-left: 0;
    padding-right: 0;
}

.loyalty-info-chevron-down.rotated,
.coupon-info-chevron-down.rotated,
.hazhozszallitas-chevron-down.rotated,
.csomagautomata-chevron-down.rotated,
.telephely-chevron-down.rotated,
.szall-datum-chevron-down.rotated,
.savebar-chevron-down.rotated,
.customer-chevron-down.rotated
{
    transform: rotate(180deg);
}

.loyalty-info-chevron-down,
.coupon-info-chevron-down,
.savebar-chevron-down,
.customer-chevron-down {
    transform: rotate(0deg);
    transition: transform 0.2s ease;
}

#loyalty-info{
    display: none;
}

.cart-summary-box{
    background-color: var(--grey100);
    padding: 20px 10px;
    font-size: 16px;
    font-weight: 400;
    border-radius: var(--boxRadius);
}

.cart-summary-box h3,
.cart-gifts-box h3{
    font-size: 20px;
    color: var(--darkGreen950);
    font-weight: 600;
    margin-top: 0;
}

.cart-gifts-box{
    border: 1px solid var(--grey200);
    padding: 20px 10px;
    border-radius: var(--boxRadius);
    font-size: 16px;
    font-weight: 400;
}

.cart-gift-product-box{
    display: flex;
    align-items: center;
    gap: 16px;
}

    .cart-gift-product-box .gift-image{
        flex: 0 0 60px;
    }
    .cart-gift-product-box .gift-name{
        flex: 1;
    }
    .cart-gift-product-box .gift-cart{
        flex: 0 0 60px;
        text-align: right;
    }

    .cart-gift-product-box .addToGiftPrdToCart{
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .cart-gift-product-box.inactive{
        opacity: .7;
    }

.wide-padding-btn{
    padding: 1rem 6rem;
    width: max-content;
    max-width: 100%;
    box-sizing: border-box;
}

.divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 15px;
}

.divider::before,
.divider::after {
    content: "";
    height: 1px;
    background: #ccc;
}

.simple-card{
    font-weight: 400;
    border: none;
    border-radius: var(--boxRadius);
}

.checkout-right{
    background: var(--grey100);
    padding-bottom: 20px;
}

.checkout-top-bar{
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-left-container{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 16px;
    font-weight: 400;
    color: var(--darkGreen900);
}

    .checkout-left-container .section-title{
        font-size: 27px;
        font-weight: 600;
        color: var(--darkGreen900);
    }

.checkout-right-container{
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    font-size: 16px;
    font-weight: 400;
    color: var(--darkGreen900);
    position: relative;
}

.checkout-right-container .title{
    font-size: 20px;
}

.checkout-user-panel{
    border-radius: var(--boxRadius);
    border: 1px solid var(--grey400);
    padding: 15px;
}

#checkout-logout-toggler{
    position: relative;
}

.checkout-logout-panel{
    position: absolute;
    top: 30px;
    right: 0;
    z-index: 100;
    background-color: #fff;
    padding: 1rem;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    border-radius: var(--boxRadius);
}

.checkout-shipping-method-info{
    background-color: #fff;
    border-radius: var(--boxRadius);
    font-size: 14px;
    padding: 10px;
}

.checkout-cart-item{
    display: flex;
    align-items: start;
    gap: 12px;
}

    .checkout-cart-item .cart-item-image {
        flex: 0 0 60px;
    }

    .checkout-cart-item .cart-item-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .checkout-cart-item .cart-item-content {
        flex: 1 1 auto;        /* kitölti a maradék helyet */
        min-width: 0;          /* nagyon fontos! */
    }

    /* 3️⃣ ár – jobbra zárva */
    .checkout-cart-item .cart-item-price {
        flex: 0 0 auto;
        margin-left: auto;     /* EZ tolja jobbra */
        text-align: right;
        font-weight: 600;
        white-space: nowrap;
    }

.checkout-saved-shipping-address-box{
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: var(--darkGreen900);
    color: #fff;
    border-radius: var(--boxRadius);
}

.modal-address-item-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid var(--grey200);
    margin-bottom: 1rem;
}

.checkout-codfee-summary{
    display: flex;
}

.checkout-aszf-text{
    font-size: 14px;
    line-height: 1.2em;
}

.successorder-success-title{
    font-size: 20px;
}

.successorder-success-pipa{
    font-size: 70px;
    color: var(--green);
}

.successorder-support-box{
    background-color: var(--grey100);
    color: var(--darkGreen900);
    padding: 20px;
    border-radius: var(--boxRadius);
    font-weight: 400;
    height: 100%;
}

.successorder-loyalty-promo-box{
    padding: 20px;
    text-align: center;
    border: 2px solid var(--grey200);
    border-radius: var(--boxRadius);
}

.successorder-carbon-box{
    background-color: var(--darkGreen800);
    color: #fff;
    border-radius: var(--boxRadius);
    padding: 20px;
}

.successorder-carbon-box{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.successorder-carbon-box .right{
    width: 80px;
    text-align: right;
}


.successorder-carbon-box .right img{
    width: 80px;
}


.modal-fullwidth {
    max-width: 100%;
    margin: 0;
    border-radius: 0;
}

.modal-fullwidth .modal-content {
    min-height: 100vh;
    border-radius: 0;
}

.badge-danger{
    color: #721c24 !important;
    background-color: #f8d7da !important;
    border-color: #f5c6cb !important;
    border-style: solid !important;
    border-width: 1px !important;
}

.szamlazasi-cim-show-container{
    display: flex;
    align-items: center;
}

.cc-icons{
    width: 180px;
}

.free-shipping-status-bar{
    min-height: 83px;
}

.customer-first-letter-container{
    border: 1px solid #b7d8cf;
    color: var(--darkGreen900);
    border-radius: 20px;
    /*padding: 6px 8px;*/
    display: flex;
    align-items: center;
}

.customer-first-letter{
    background-color: var(--darkGreen950);
    color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.customer-chevron-down{
    color: var(--darkGreen950);
    display: inline-block;          /* fontos, hogy transform működjön */
    transform: rotate(0deg) translateZ(0); /* hint a GPU-nak */
    transition: transform 0.2s ease;
    backface-visibility: hidden;
}

.customer-dropdown.show .customer-chevron-down {
    transform: rotate(180deg) translateZ(0);
}

#userDropdown:hover{
    text-decoration: none;
}

.customer-menu-page-link{
    font-size: 16px;
    color: #000;
    padding: .7rem 1rem;
}

.customer-menu-page-link:hover{
    color: #000;
}

.customer-menu-page-link.active{
    background-color: var(--grey200);
}

.customer-menu-card{
    border: 0px;
    border-radius: var(--boxLgRadius);
    margin-bottom: 3rem;
}

.customer-menu-card .card-body{
    padding: 12px 0;
}

/* Mobile horizontal menu */
.profile-menu-wrapper.d-flex {
    position: relative;
    align-items: center;
    height: 50px;
}

.profile-menu {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    padding: 0;
    scrollbar-width: none;
}

.profile-menu::-webkit-scrollbar {
    display: none;
}

.profile-menu .nav-link.customer-menu-page-link {
    flex-shrink: 0;
    padding: 8px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 400;
    color: #333;
}

.profile-menu .nav-link.customer-menu-page-link.active {
    font-weight: 600;
    background: #EAEBE6;
}

#navbarSupportedContent {
    margin: 16px 0;
    border-top: 1px solid #EAEBE6;
}

#navbarSupportedContent .nav-link {
    font-weight: 600;
    text-transform: none;
    border-bottom: 2px solid transparent;
}

#navbarSupportedContent .nav-item .dropdown-menu .dropdown-item {
    margin: 8px 0;
}

#navbarSupportedContent .nav-item .dropdown-menu .dropdown-item:hover,
#navbarSupportedContent .nav-item .dropdown-menu .dropdown-item:active {
    background: var(--grey100);
    color: var(--green950);
}

.mobile-menu-item {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--darkGreen950);
    text-decoration: none;
}

.mobile-open-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    font-size: 15px;
    color: var(--darkGreen950);
    text-decoration: none;
    font-weight: 600;
}

#mobilePanel1 ul li a.simple-item:hover,
.mobile-open-panel:hover {
    color: var(--darkGreen950);
    text-decoration: none;
}

.mobile-open-panel i {
    color: var(--darkGreen950);
    font-size: 12px;
}

#mobilePanel1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#mobilePanel1 ul li a.simple-item {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    color: var(--darkGreen950);
    text-decoration: none;
    font-weight: 600;
}

#mobilePanel2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

#mobilePanel2 #mobilePanel2Title {
    padding: 12px 24px 4px;
    font-size: 16px;
    letter-spacing: 0.08em;
    color: var(--darkGreen950);
    text-transform: uppercase;
}

#mobilePanel2 #mobilePanel2List {
    list-style: none;
    padding: 0;
    margin: 0;
}

#mobilePanel2List li a {
    font-weight: 600;
    display:block;
    padding:14px 24px;
    font-size:15px;
    color: var(--darkGreen950);
    text-decoration:none;
}

#headerSearchField,
#headerSearchFieldMobile {
    border-radius: 8px 0 0 8px;
    border-right: none;
    background: #f5f5f5;
    border-color: #e0e0e0;
}

.search-spinner {
    font-size: 175%;
    width: 48px;
    height: 40px;
    display: none;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1000;
}

.search-spinner i {
    color: #888;
}

#searchResults,
#searchResultsMobile {
    position: absolute;
    width: 100%;
    left: 0;
    top: 42px;
    background: #fff;
    z-index: 1002;
    box-shadow: 10px 10px 22px rgba(0,0,0,.15);
    padding: 10px;
    display: none;
    border-radius: 10px;
}

.search-result-item a {
    color: var(--darkGreen900);
    text-decoration: none;
}

.search-result-item:hover,
.search-result-item.active {
    background: #f0f0f0;
    border-radius: 4px;
}

.search-result-item.active a {
    text-decoration: none;
}

/* Scroll arrows */
.customer-menu-card .scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 2;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,0.1);
    box-shadow: 0 4px 5px 0 rgba(0,0,0,0.1);
}

.customer-menu-card .scroll-arrow.left { left: 0; }
.customer-menu-card .scroll-arrow.right { right: 0; }
.customer-menu-card .scroll-arrow.hidden { display: none; }

.myorder-list-item-container{
    border: 1px solid var(--grey200);
    border-radius: var(--boxRadius);
}

.myorder-list-item-container .card-body{
    padding: .6rem;
}

.myorder-list-item-container .myorder-base-info{
    background-color: var(--grey100);
    padding: .5rem;
}

.klaviyo-form-T3UXNa{
    margin-top: 30px;
}
.reorder-modal-product{
    color: var(--darkGreen900);
}