@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('/static/fonts/Roboto-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Monotype Corsiva';
    src: url('/static/fonts/monotype-corsiva.ttf') format('truetype');
}

@font-face {
    font-family: 'TeX Gyre Bonum Regular';
    src: url('/static/fonts/tex-gyre-bonum-regular.otf') format('opentype');
}

@font-face {
    font-family: 'TeX Gyre Bonum Italic';
    src: url('/static/fonts/tex-gyre-bonum-italic.otf') format('opentype');
}

@font-face {
    font-family: 'Lekhana Italic';
    src: url('/static/fonts/Lekhana Italic.otf') format('opentype');
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    font-family: 'TeX Gyre Bonum Regular', 'Source Serif Variable';
}

p, a, li, ul, textarea {
    font-family: 'TeX Gyre Bonum Regular', 'Source Serif Variable';
    font-weight: normal;
}

label, input, button {
    font-family: 'TeX Gyre Bonum Regular', 'Source Serif Variable';
    font-weight: normal;
}

.form-row {
    font-family: 'TeX Gyre Bonum Regular', 'Source Serif Variable';
    font-size: 1.5em;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.5;
    /* font-family: 'Roboto', sans-serif; */
    color: var(--textPrimary);
    font-size: var(--fontsize1);
     -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      -o-user-select: none;
      user-select: none; 
      /* border: 1px solid gray; */
}

.space5 {
    margin-top: 5vh;
}

body {
    width: 100%;
    overflow-x: hidden;
}

nav {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 2;
    /* background-color: rgba(255, 255, 255, 0.7); */
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: white;
}

.header.scroll {
    background: rgba(255, 255, 255, 0.7);
    /* flex-direction: initial; */
    transition: all 1s ease-in-out;
}

.econobile-header-logo-nav {
    margin-top: 0%;
    overflow: hidden;
}

.econobile-header-logo-nav img {
    height: 80px;
    transition: all 1s ease-in-out;
    width: 100%;
}

.header.scroll .econobile-header-logo-nav img {
    height: 65px;
    transition: all 1s ease-in-out;
}

.econobile-mobile-logo {
    display: none;
    margin-top: 0%;
}

.header.scroll .header-menu-items {
    width: auto;
    transition: all 1s ease-in-out;
    /* margin-top: -1%; */
}

.menu-btn {
    display: none;
}

.menu-btn__lines::before,
.menu-btn__lines::after {
    content: "";
    position: absolute;
}

.menu-btn__lines,
.menu-btn__lines::before,
.menu-btn__lines::after {
    width: 1.5rem;
    height: 0.1rem;
    background: #ffffff;
    transition: all 0.5s ease-in-out;
}

.menu-btn__lines::before {
    transform: translateY(-0.5rem);
}

.menu-btn__lines::after {
    transform: translateY(0.5rem);
}

/* animation */

.menu-btn.open .menu-btn__lines {
    transform: translateX(2rem);
    background: transparent;
}

.menu-btn.open .menu-btn__lines::before {
    transform: rotate(45deg) translate(-1.4rem, 1.4rem);
    background: #000;
}

.menu-btn.open .menu-btn__lines::after {
    transform: rotate(-45deg) translate(-1.4rem, -1.4rem);
    background: #000;
}

.header-menu-items {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s ease-in-out;
}

::marker {
    content: "";
}

.header-menu-items .header-menu-main-item {
    padding: 15px 20px;
    list-style-type: none;
}

.header-menu-items .header-menu-main-item a {
    color: #859E7E;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.header-menu-items .header-menu-main-item .logo {
    width: 80px;
    transition: all 0.5s ease;
}

.sticky .header-menu-items .header-menu-main-item .logo {
    width: 70px;
}

.header-menu-items .header-menu-main-item a:hover {
    color: #000000;
}

/* START About us dropdown options */

.header-menu-main-item .dropdown {
    position: absolute;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease-in-out;
    z-index: 99;
    text-align: left;
}

@media screen and (max-width:970px) {
    .header-menu-main-item .dropdown {
        left: 21%;
    }
}

.header-menu-main-item:hover .dropdown{
    display: block;
}

.header-menu-main-item .dropdown ul {
    list-style: none;
    padding: 0;
}

.header-menu-main-item .dropdown li {
    padding: 10px;
    margin: 10px;
    list-style: none;
}

/* END About us dropdown options */

.header-menu-items .drop-menu {
    position: absolute;
    /* visibility: hidden; */
}

.header-menu-items .header-menu-main-item:hover .drop-menu {
    visibility: visible;
}

.header-menu-items .header-menu-main-item:hover ul {
    transform: translateY(0px);
    opacity: 1;
}

/* Product drop down menu START */

.header-menu-main-item {
    /* position: relative; */
    display: inline-block;
    text-align: center;
}

.header-menu-items li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transition: 0s;
    transition: all 0.5s ease-in-out;
}

.mega-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    visibility: hidden;
    box-shadow: 0 6px 10px rgb(0 0 0 / 15%);
    justify-content: center;
    display: flex;
    align-items: center;
    transition: all 0.5s ease-in-out;
    z-index: 999;
}

.mega-menu .content {
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    width: 100%;
}

.content .col {
    display: flex;
    width: 50%;
    margin-left: 5%;
    margin-right: auto;
}

.content .col .mega-links li {
    padding: 10px 10px;
    text-align: left;
}

.content .col .mega-links i {
    visibility: hidden;
    margin-right: 5px;
}

.content .col .mega-links li a:hover i {
    visibility: visible;
}

.content .col .mega-links li a:hover {
    text-decoration: none;
    color: #000000;
}

.dropdown-header-second {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header-menu-main-item .dropdown-border-line {
    position: relative;
    width: 20%;
    height: 1px;
    background-color: #859E7E;
    margin-top: 2%;
}

.category-logo {
    max-width: 30px;
    margin-right: 10px;
}

.products-drop-container {
    display: flex;
    align-items: center;
}

@media screen and (max-width:970px) {
    .mega-menu {
        position: absolute;
        left: 10%;
        top: 30%;
        width: 80%;
        border-radius: 10px;

    }
    .mega-menu .content {
        background: rgba(255, 255, 255, 0.9);
        display: flex;
        width: 100%;
        height: 400px;
        flex-direction: column;
        /* overflow-x: scroll; */
        overflow-y: scroll;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .mega-menu .content::-webkit-scrollbar {
        width: 0;
    }
    .content .col {
        display: flex;
        width: 100%;
        margin-left: 1%;
        margin-right: auto;
    }
    .content .col .mega-links li a {
        font-size: 1em;
    }
}

/* Product drop down menu END */

.secondary-nav-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin-top: -25px;
}

.user-menu-area {
    display: flex;
}

/* Search bar style code START */

.search {
    padding: 10px;
}

.search .search-box {
    position: relative;
    color: #8b8b8b;
}

.search .search-box button {
    position: absolute;
    background: none;
    border: none;
    height: 100%;
    left: 10px;
}

.search .search-box button i {
    color: #8b8b8b;
    transition: all 0.5s ease;
}

.search .search-box button i:hover {
    color: darkgray;
}

.search .search-box input {
    padding: 8px 0px 7px 40px;
    border: 1px solid #859E7E;
    border-radius: 20px;
    outline: none;
    color: #859E7E;
}

.search .search-box input:focus {
    box-shadow: 0 0 11px rgba(133,158,126,.2); 
}

.search .search-box input::placeholder {
    color: lightgray;
    /* font-size: 1.3em; */
    font-style: italic;
    transition: all 0.5s ease;
}

.search .search-box input:hover::placeholder {
    color: darkgray;
}

/*Search bar results-card*/
.not-visible {
    opacity: 0;
}

.results-card {
    position: absolute;
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.25);
    transition: 0.5s;
    border-radius: 7px;
    padding: 15px 15px;
    background-color: #ffffff;
    z-index: 12;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-height: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* flex-direction: column; */
    margin: 1%;
    right: 1%;
    width: max-content;
    max-width: 800px;
    border-radius: 10px;
}

.results-card::-webkit-scrollbar {
    width: 0;
}

.results-card b {
    display: flex;
    justify-content: center;
    font-family: 'TeX Gyre Bonum Regular', 'Source Serif Variable';
    font-size: 1.1rem;
    color: #859E7E;
}

.oclasa {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-title {
    text-transform: uppercase;
    border-bottom: 1px solid lightgray;
    text-align: center;
    padding: 5px 0px;
    margin: 5px 0px;
    width: 60%;
    font-weight: 600;
    color: #777;
}

.search-content {
    width: 100%;
}

.productcard {
    display: flex;
    width: 90%;
    transition: all 0.5s ease;
    flex-direction: column;
    border-radius: 5px;
}

.productcard:hover {
    -ms-transform: scale(1.05);
    /* IE 9 */
    -webkit-transform: scale(1.05);
    /* Safari 3-8 */
    transform: scale(1.05);
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.10);
}

.search-results-card {
    display: flex;
    margin: 5px;
}

.search-col-img {
    display: flex;
}

.search-col-img:after {
    flex: 50%;
    padding: 40px;
    height: 300px;
}

.search-col:after {
    flex: 50%;
    padding: 40px;
    height: 300px;
}

.search-col-img h5 {
    padding: 1%;
    color: #859E7E;
}

.item {
    text-decoration: none;
    width: 100%
}

.search-card-product-title {
    margin-top: 1px;
    margin-left: 1px;
    display: flex;
    flex-direction: column;
}

.search-card-product-title h4 {
    color:#777;
}

.search-card-product-img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    padding: 1%;
}

.cat-name::first-letter {
    text-transform: uppercase;
}

#iconita-contact {
    display: none;
    height:20px;
    width: auto;
}

@media screen and (max-width: 970px) {
    .results-card {
        position: absolute;
        box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.25);
        transition: 0.5s;
        border-radius: 7px;
        padding: 15px 15px;
        background-color: #ffffff;
        z-index: 12;
        overflow-y: scroll;
        scrollbar-width: none;
        -ms-overflow-style: none;
        max-height: 350px;
        display: flex!important;
        flex-direction: column;
        margin: 1%;
        right: 0%;
        width: 300px;
        border-radius: 10px;
        top: -280%;
    }
}

/* Search bar style code END */

footer {
    background: #EEE9E5;
    padding: 20px 0px;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    color: #859E7E;
    /*font-weight: 500;*/
    font-weight: bold;
    /*font-size: 19px;*/
    margin-top: 2%;
    margin-bottom: 2%;
    width: 100%;
}

.footer-content a {
    text-decoration: none;
    color: #859E7E;
}

.footer-content p {
    font-size: 1.1em; 
}

.logo-econobile-dropleaf-footer a img {
    width: 40px;
    height: 55px;
    margin-bottom: 5%;
}

.econobile-footer-privacy-links {
    text-align: center;
    display: flex;
    justify-content: center;
}

.econobile-footer-privacy-links p {
    font-size: 1.1em;
}

.econobile-footer-privacy-links a:hover {
    color:#000;
}

.newsletter-form {
    width: 50%;
}

.container-newsletter-title {
    margin-bottom: 3%;
}

.container-newsletter-title h2 {
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
}

.container-newsletter input[type=text] {
    margin: 1px 0;
    border: 1px solid #ccc;
    border: none;
    outline: none;
    width: 45%;
}

.container-newsletter input[type=email] {
    margin: 1px 0;
    border: 1px solid #ccc;
    border: none;
    outline: none;
    width: 45%;
}

.container-newsletter input[type=email] {
    margin: 1px 0;
    border: 1px solid #ccc;
    border: none;
    outline: none;
}

.container-newsletter input[type=submit] {
    background-color: #859E7E;
    color: white;
    border: none;
}

.container-newsletter input[type="text"]::placeholder {
    font-family: 'TeX Gyre Bonum Regular', 'Source Serif Variable';
    font-size: 1.1em;
    color: #859E7E;
    font-weight: bold;
}

.container-newsletter input[type="email"]::placeholder {
    font-family: 'TeX Gyre Bonum Regular', 'Source Serif Variable';
    font-size: 1.1em;
    color: #859E7E;
    font-weight: bold;
}

.container-newsletter {
    font-family: 'TeX Gyre Bonum Regular', 'Source Serif Variable';
    font-size: 1.2em;
    color: #859E7E;
    font-weight: bold;
    padding: 12px 50px;
    width: 100%;
    margin-top: 5%;
    margin-bottom: 5%;
    border: solid 2px #859E7E;
    border-radius: 33px;
    display: flex;
    position: relative;
}

.container-newsletter input {
    font-family: 'TeX Gyre Bonum Regular', 'Source Serif Variable';
    font-size: 1.2em;
    color: #859E7E;
    font-weight: bold;
    border: none;
}

.newsletter-form-separator {
    font-size: 1.3em;
    margin-right: 2%;
    margin-left: 2%;
}

.newsletter-button {
    position: absolute;
    background-color: transparent;
    border: 0px solid white;
    right: -2px;
    top: 0px;
    bottom: 0px;
    cursor:pointer;
}

.newsletter-button img {
    background-color: #859E7E;
    border-radius: 0 33px 33px 0;
    width: 70px;
    height: 62px;
}

.footer-horizontal-line {
    position: relative;
    width: 10%;
    height: 4px;
    background-color: #859E7E;
    margin-top: 2%;
    margin-bottom: 2%;
}

.footer-horizontal-underline {
    position: relative;
    width: 40px;
    height: 1px;
    background-color: #859E7E;
    margin-top: 1px;
    margin-bottom: 1px;
}

.footer-three-column-section {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.footer-columns {
    padding: 20px;
    /* border: 1px solid #ccc; */
}

.footer-columns-title p {
    padding-bottom: 5px;
}

.footer-columns-menu a {
    font-size: 1.1em;
}

.footer-columns-menu a:hover {
    color: #000;
}

.footer-certifications p {
    font-size: 2em;
    color: #636060;
}

.footer-certifications {
    display: flex;
    /* flex-wrap: wrap; */
    width: 100%;
    justify-content: center;
}

.footer-certifications .footer-columns-menu {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1px;
}

.footer-certifications .footer-columns-menu:first-child {
    margin-left: 0;
}

.footer-certifications .footer-columns-menu:last-child {
    margin-right: 0;
}

/* .footer-columns-menu img {
    width: 150px;
    height: auto;
} */

/* Beginning of Cookie Banner */

.cookie-consent-banner {
    height: 100vh;
    width: 100vw;
    background-color: rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
    align-items: center;
    margin: 0 auto;
    background-attachment: fixed;
}

.cookie-consent-banner.active-cookie {
    display: flex;
}

.cookie-content-banner {
    background-color: #ffffff;
    padding: 2vw 2vw;
    border-radius: 0;   
    width: 45%;
    margin: 0 auto;
}

.cookie-content-banner h1 {
    font-family: 'Roboto';
    color: #000;
    margin-bottom: 1em;
    font-size: 20px;
}

.cookie-content-banner .main-cookie-message p {
    font-family: 'Roboto';
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    font-size: 16px;
}

.main-cookie-message a {
    font-family: 'Roboto';
}


.cookie-content-banner p {
    font-family: 'Roboto';
    color: #000;
}

.cookie-content-banner a {
    font-family: 'Roboto';
}

.cookie-consent-banner .btns {
    display: flex;
    margin-top: 2em;
    text-align: center;
    flex-wrap: nowrap;
    justify-content: center;
}

.cookie-consent-banner .acceptbtn {
    font-family: 'Roboto';
    width: 100%;
    margin-bottom: 1%;
}

.cookie-consent-banner .declinebtn {
    font-family: 'Roboto';
    width: 100%;
    margin-bottom: 1%;
}

.cookie-consent-banner .managebtn {
    font-family: 'Roboto';
    width: 100%;
    margin-bottom: 1%;
}

.cookie-consent-banner .privacy-links {
    background-color: white;
    text-align: center;
    display: flex;
    justify-content: center;
}

.cookie-consent-banner .privacy-links a {
    font-family: 'Roboto';
    text-decoration: none;
    color: #000;
}

.cookie-banner-menu {
    padding-top: inherit;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    padding-bottom: inherit;
}

.cookie-menu-title {
    padding-right: 1.5rem;
    color: inherit;
}

.cookie-menu-title h5 {
    font-size: 1em;
    color: inherit;
}

.separator{
    margin: 0 2rem;
}

.acceptbtn {
    background-color: #444444;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-size:0.7rem;
    padding:10px;
    text-decoration:none;
    margin: 0.25rem;
    border: none;
    letter-spacing: 2px;
}

.declinebtn {
    background-color: #444444;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-size:0.7rem;
    padding:10px;
    text-decoration:none;
    margin: 0.25rem;
    border: none;
    letter-spacing: 2px;
}

.managebtn {
    background-color:#ffffff;
    border: solid 1px #444444;
    display:inline-block;
    cursor:pointer;
    color:#000000;
    font-size:0.7rem;
    padding:10px;
    text-decoration:none;
    margin: 0.25rem;
    letter-spacing: 2px;
}

.acceptbtn:hover,
.declinebtn:hover {
    background-color: #707070;
}	

.managebtn:hover {
    color: #a0a0a0;
    background-color: #fff;
    border-color: #a0a0a0;
}

.switch{
    display: block;
    width: 45px;
    height: 20px !important;
    background-color: #444444;
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: 0.5s;	
    float: right;
    margin-top: -18px;
    margin-bottom: 0px;
}

.switch::after {
    content: "";
    width: 15px;
    height: 15px;
    background-color: #fff;
    position: absolute;
    border-radius: 70px;
    top: 3px;
    left: 3px;
    transition: 0.5s;
    }

input:checked + .switch:after {
    left: calc(100% - 3px);
    transform: translateX(-100%);
}

input:checked + .switch {
    background-color: #00a4cea3;
}

.switch:active:after {
    width: 20px;
}

input[type="checkbox"] {
    appearance: auto;
    -webkit-appearance: checkbox;
}

input[type="checkbox"] + label {
    height: inherit;
}

input[type="checkbox"]:checked + label:before{
    background-color: none;
    content: none;
    }

input[type="checkbox"] + label:before {
    content: none;		
}

input:checked + .switch:after {
    left: calc(100% - 3px);
    transform: translateX(-100%);
}

input:checked + .switch {
    background-color: #859E7E;
}

input.readonly {
    opacity: .5;
    cursor: default;
    pointer-events: none;
}

.accordion-cookie {
    background-color: white;
    cursor: pointer;
    padding: 4px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    /* display: flex; */
    align-items: center;
}

.accordion-cookie:before {
    content: '\002B';
    font-weight: bold;
    float: left;
    margin-left: 10px;
    margin-right: 10px;
}

.active-cookie:before {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    font-size: 15px;
}

.panel:before {
    display: none;
}

.hide-checkbox {
    display: none;
}

.toogleicon {
    padding-left: 1.5rem;
}

.space-between-title-toogle {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.cookie-menu-title {
    padding-right: 1.5rem;
}

@media (max-width: 1600px) {
    .cookie-content-banner {
        width: 70%;
    }
}

@media (max-width: 1100px) {
    .cookie-consent-banner .acceptbtn {
        width: 80%;
    }

    .cookie-consent-banner .declinebtn {
        width: 80%;
    }

    .cookie-consent-banner .managebtn {
        width: 80%
    }
}

@media screen and (max-width: 1000px) {
    .cookie-content-banner .main-cookie-message p {
        font-size: 15px;
    }
    .cookie-consent-banner .privacy-links a {
        font-size: 15px;
    }
    .panel {
        font-size: 12px;
    }
    .cookie-consent-banner .acceptbtn {
        width: 50%;
        margin-bottom: 3%;
    }
    .cookie-consent-banner .declinebtn {
        width: 50%;
        margin-bottom: 3%;
    }

    .cookie-consent-banner .managebtn {
        width: 50%;
        margin-bottom: 3%;
    }
}

@media screen and (max-width: 600px) {
    .cookie-content-banner {
        width: 80%;
    }
    .cookie-consent-banner .btns {
        flex-direction: column;
        display: block;
    }
    .cookie-consent-banner .acceptbtn {
        width: 100%;
        margin: 0px;
        margin-bottom: 10px;
    }

    .cookie-consent-banner .declinebtn {
        width: 100%;
        margin: 0px;
        /* margin-bottom: 10px; */
    }

    .cookie-consent-banner .managebtn {
        width: 100%;
        margin: 0px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 350px) {
    .cookie-content-banner {
        width: 90%;
    }
}

@media screen and (max-width: 350px) {
    .cookie-content-banner h1 {
        font-size: 15px;
    }
    .cookie-content-banner .main-cookie-message p {
        font-size: 12px;
    }
    .cookie-menu-title h3 {
        font-size: 13px;
    }
}

/* End of Cookie Banner */

/* Start of up Button */

.arrow-up {
    border: solid black;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 12px;
    width: 1.5vw;
    height: 1.5vw;
    opacity: 0.6;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
}
  
.upBtn {
    position: fixed;
    bottom: 15vh;
    right: 0px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background: rgba(200, 200, 200, 0.5);
    cursor: pointer;
    border-radius: 50%;
    transform: none;
    pointer-events: visible;
    box-shadow: 0 0 5px rgb(0 0 0 / 17%);
    width: 70px;
    height: 70px;
    transition: ease 0.5s all;
}

.upBtn p:nth-child(2) {
    display: none;
}

.upBtn:hover{
    background-color: rgb(133,159,124);
}

.upBtn:hover .arrow-up {
    display: none;
}

.upBtn:hover .arrow-mask {
    display: none;
}

.upBtn:hover p {
    display: block;
    color: #fff;
    transition: ease 0.5s all;
    font-family: 'Roboto';
    font-weight: bold;
}

/* End of up Button */

/* Start of translate NEW Button */

.translate-container {
    position: absolute;
    top: 10px;
    right: 5%;
    z-index: 99;
    width: 100px;
    height: 40px;
    background: rgba(200, 200, 200, 0.5);
    border-radius: 15px;
    transition: all 0.5s ease;
    box-shadow: 0 0 5px rgb(0 0 0 / 17%);
    padding-left: 10px;
    padding-right: 10px;
}

.translate-container:hover {
    background:  rgb(133,159,124);
    transition: all 0.5s ease;
}

.header-translate {
    position: absolute;
    z-index: 99;
    width: 25px;
    height: 40px;
    display: flex;
    border-radius: 15px;
    transition: all 0.5s ease;
}

.header-translate .header-flag {
    display: flex;
}

@media screen and (max-width:1550px) {
    .translate-container {
        top: 5px;
        right: 1%;
        height: 40px;
    }
    .header-translate {
        height: 40px;
    }
    .header-translate .header-flag {
        display: flex;
    }
}

@media screen and (max-width:1400px) {
    .translate-container {
        top: 5px;
        right: 1%;
        height: 25px;
        border-radius: 10px;
    }
    .header-translate {
        height: 25px;
    }
    .header-translate .header-flag {
        display: flex;
    }
}

@media screen and (max-width:1100px) {
    .header.scroll .header-menu-items {
        margin-top: 1%;
    }
}

@media screen and (max-width:970px) {
    .translate-container {
        position: relative;
        top: 10px;
        right: 0%;
        height: 40px;
        border-radius: 15px;
    }
    .header-translate {
        height: 40px;
    }
}

.header-translate .header-lang {
    visibility: hidden;
}

.header-translate .header-flag li:nth-child(1) {
    background: url('../images/ro.png') no-repeat;
    background-position: left;
    margin-left: 10px;
    margin-right: 10px;
}

.header-translate .header-flag li:nth-child(2) {
    background: url('../images/en.png') no-repeat;
    background-position: left;
    margin-left: 10px;
    margin-right: 10px;
}

.header-translate .header-flag a:hover {
    text-decoration: underline;
}

.header-flag li {
    list-style-type: none;
}

/* End of translate NEW Button */

/* -- user -- */
#itm-user {
    position: relative;
}

.header .user-items {
    top: 10%;
    right: 1%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-account a {
    display: flex;
    text-decoration: none;
    align-items: center;
}

.user-account img {
    width: auto;
    height: 60px;
}

.user-account .drop-menu {
    position: absolute;
    visibility: hidden;
    width: max-content;
    margin-left: -150%;
}

#mobile-list{
    display: none;
}

@supports (-webkit-touch-callout: none) {
  .search-box button{
      display: none;
  }
}
 
.user-account:hover .drop-menu {
    visibility: visible;
}

.user-account .drop-menu ul {
    list-style: none;
    background: white;
    box-shadow: 1px 1px 10px 1px #888888;
    transform: translateY(10px);
    transition: all 0.2s ease;
    border-radius: 5px;
    padding: 10px 0px;
}

.user-account .drop-menu ul li {
    margin: 0px 15px;
    padding: 10px 10px;
    border-bottom: solid 1px #859E7E;
}

.user-account .drop-menu ul li:hover a {
    color: #859E7E;
}

.user-cart .cart {
    display: flex;
}

.cart .cart-image {
    position: relative;
}

#cart-items {
    position: absolute;
    top: -0%;
    background: #859E7E;
    border-radius: 50%;
    right: 0%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart .cart-price{
    display: flex;
    margin-left: 25px;
}
.user-cart img {
    height: 60px;
    width: auto;
}

#page-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-contact {
    display: flex;
}

.header-contact a {
    text-decoration: none;
    font-weight: bold;
}

.line-separator {
    margin-left: 3px;
    margin-right: 3px;
    font-weight: bold;
    color: #859E7E;
}

.header-contact p {
    color: #859E7E;
    font-weight: bold;
    display: flex;
}

/* Base header menu cart drop down START */

.user-cart .drop-menu {
    position: absolute;
    visibility: hidden;
    width: 20%;
    margin-left: -13%;
    box-shadow: 1px 1px 10px 1px #888888;
    background-color: #ffffff;
    z-index: 12;
    overflow-y: scroll;
    max-height: 600px;
    padding: 5px;
    border-radius: 10px;
    margin-right: 10px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.user-cart .drop-menu::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.user-cart:hover .drop-menu {
    visibility: visible;
}

@media screen and (max-width: 1700px) {
    .user-cart .drop-menu {
        width: 25%;
        margin-left: -18%;
    }
}

@media screen and (max-width: 1600px) {
    .footer-certifications {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 1400px) {
    .user-cart .drop-menu {
        width: 30%;
        margin-left: -22%;
    }
}

@media screen and (max-width: 1400px) {
    .user-cart .drop-menu {
        width: 35%;
        margin-left: -26%;
    }
}

@media screen and (max-width: 970px) {
    .user-cart .drop-menu {
        max-height: 380px;
        width: 120%;
        margin-left: -59%;
        top: -255%;
    }
    .base-cart-image {
        min-width: 30%!important;
    }
}

.base-cart-content {
    display: flex;
    border-bottom: 1px solid #859E7E;
}

.base-cart-image {
    display: flex;
    min-width: 25%;
    overflow: hidden;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    /* justify-content: space-around; */
}

.base-cart-image img {
    max-width: 90%;
    max-height: 80%;
    overflow: hidden;
    width: auto;
    height: 100%;
    /* object-fit: cover; */
    align-items: center;
    height: 100%;
    margin: 2%;
    border-radius: 10px;
}

.base-cart-info {
    flex-grow: 1;
    padding: 3%;
    min-width: 75%;
}

.user-cart p {
    font-size: 13px;
    color: #859E7E;
    padding: 1%;
}

.cart-list {
    padding: 5px;
}

.cart-drop-summary {
    display: grid;
    grid-row-gap: 5px;
    width: 100%;
    align-items: start;
}

.base-QtyBtn {
    width: 25px;
    height: 25px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 1rem;
    background-color: lightgrey;
    border-radius: 3px;
    border: none;
    cursor: pointer;
}

.base-QtyValue {
    width: 40px;
    border-radius: 10px;
    padding: 1px;
    border: 2px solid black;
    margin: 10px;
    text-align: center;
    cursor: pointer;
}

.base-QtyBtn {
    width: 25px;
    height: 25px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 1rem;
    background-color: lightgrey;
    border-radius: 3px;
    border: none;
    cursor: pointer;
}

.base-QtyBtn:hover {
    transform: scale(1.1);
    cursor: pointer;
    background-color: #88a081;
}

.base-DeleteBtn {
    width: 25px;
    height: 25px;
    color: rgb(255, 255, 255);
    font-size: 1rem;
    background-color: lightgrey;
    border-radius: 3px;
    margin-left: 10px;
    font-size: 1em;
    border: none;
    color: black;
    cursor: pointer;
}

.base-DeleteBtn:hover {
    transform: scale(1.1);
    cursor: pointer;
    background-color: red;
}

.base-empty-basket {
    text-align: center;
}

.base-empty-basket p {
    font-size: 1.3em;
}

.base-empty-basket a {
    text-decoration: none;
}

.base-card-quantity {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.base-card-quantity input::-webkit-outer-spin-button,
.base-card-quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.phone-emoji img {
    width: 25px;
}

/* Base header menu cart drop down END */

@media screen and (max-width: 1600px) {
    .newsletter-form {
        width: 80%;
    }
}

@media screen and (max-width: 1300px) {
    .header-menu-items {
        flex-wrap: wrap;
    }
    .econobile-header-logo-nav img {
        height: 65px;
    }
    .header.scroll .econobile-header-logo-nav img {
        height: 50px;
    }
    .header-menu-items .header-menu-main-item {
        padding: 15px 10px;
    }
    /*.header-menu-items .header-menu-main-item a {*/
    /*    font-size: 1.1em;*/
    /*}*/
    .user-account .drop-menu {
        margin-left: -150%;
    }
        li:hover .dropdown-header-main {
        display: none;
    }    
}

@media screen and (max-width: 970px){
    .menu-btn__lines,
    .menu-btn__lines::before,
    .menu-btn__lines::after {
        background: #000;
    }
    .header {
        background: white;
        max-width: 350px;
        height: 100vh;
        position: relative;
        display: flex;
        justify-content: flex-start; 
        position: absolute;
        left: -350px;
    }
    .menu-btn {
        position: absolute;
        top: 10px;
        left: 360px;
        height: 40px;
        width: 40px;
        border-radius: 10px;
        cursor: pointer;
        background-color: rgba(200, 200, 200, 0.5);
        display: grid;
        place-content: center;
        transition: all 0.5s ease-in-out;
    }
    .header-menu-items {
        display: contents;
    }
    .header-menu-items ul li {
        padding: 15px 30px;
    }
    .menu-btn.open {        
        left: 300px;        
    }
    .header.open {
        transform: translateX(350px);
        transition: all 0.5s ease-in-out;
        overflow-y: scroll;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .header.open::-webkit-scrollbar {
        width: 0;
    }
    .header {
        transform: translateX(0);
        transition: all 0.5s ease-out;
    }
    .econobile-header-logo-nav img {
        display: none;
    }
    .econobile-mobile-logo {
        display: block;
        margin-top: 0%;
    }
    
    .econobile-mobile-logo img {
        height: 75px;
        transition: all 1s ease-in-out;
        width: 100%;
    }
    .header.scroll .econobile-mobile-logo img {
        height: 50px;
        transition: all 1s ease-in-out;
    }
    .header .user-items {
        position: relative;
        top: 0%;
        right: 0%;
    }
    .header-menu-items .header-menu-main-item {
        padding: 10px 10px;
    }
    .secondary-nav-options {
        display: flex;
        width: 100%;
        margin-top: 0px;
        flex-direction: row;
        justify-content: center;
    }
    .header-contact {
        display: none;
    }
    .header .user-items {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }
    .user-account .drop-menu {
        top: -600%;
    }
    ul li:hover .dropdown-header-main {
        display: none;
    }
}

@media screen and (max-width: 790px) {
    .footer-three-column-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    .header-menu-main-item .dropdown-header-main {
        min-width: 300px;
    }
    .container-newsletter-title h2 {
        font-size: 1.3em;
    }
    .footer-three-column-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .newsletter-form {
        width: 90%;
    }
    .footer-horizontal-underline {
        display: none;
    }
    .footer-columns-title {
        text-decoration: underline;
    }
}

@media screen and (max-width: 450px) {
    .container-newsletter {
        font-size: 1.1em;
        padding: 12px 12px;
        display: flex;
        flex-direction: column;
    }

    .newsletter-form-separator {
        display: none;
    }

    .container-newsletter input[type=text] {
        width: 80%;
        border-bottom: 2px solid #859E7E;
    }

    .container-newsletter input[type=email] {
        width: 80%;
    }
    .newsletter-button img {
        background-color: #859E7E;
        border-radius: 40px 40px 40px 40px;
        width: 60px;
        height: 60px;
    }
    .footer-columns {
        padding: 10px;
    }
    .econobile-footer-privacy-links a {
        display: flex;
        flex-direction: column;
    }
    .privacy-links-separator {
        display: none;
    }
}

@media screen and (max-width: 300px) {
    .footer-content p {
        font-size: 1.1em;
    }
}

/* Hide number input arrows */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* Hide number input arrows for Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
