
.ln-header {
    z-index: 100;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    position: relative;
}
/*@media(min-width: 1200px) {*/
/*    .ln-header {*/
/*        position: fixed;*/
/*        left: 0;*/
/*        right: 0;*/
/*        top: 0;*/
/*    }*/
/*    body {*/
/*        padding-top: 80px;*/
/*    }*/
/*}*/
body.homepage .ln-header {
    margin-bottom: 0;
}

.ln-header .dropdown-menu {
    min-width: 100px;
}
.ln-header .dropdown-menu.show {
    display: block !important;
    min-width: 100px;
}

.user-login-area li a {
    font-size: 0.7rem;
    display: block;
}

/* ===========================================================================
Header Components
============================================================================*/
/* --------------- language Selector --------------- */
.lang-dropdown {
    position: relative;
    display: inline-flex;
    font-family: inherit;
}

/* Toggle Button */
.lang-dropdown__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    transition: all 0.2s ease;
}

.lang-dropdown__toggle:hover {
    opacity: 0.8;
}

.lang-dropdown__toggle:focus {
    outline: none;
}

/* Chevron Icon */
.lang-dropdown__chevron {
    font-size: 12px;
    color: #1a1a1a;
    transition: transform 0.25s ease;
}
body.touchDeviceTrue .lang-dropdown__chevron {
    display: none;
}
@media(max-width: 991.98px) {
    .lang-dropdown__chevron {
        display: none;
    }
}

.lang-dropdown.is-open .lang-dropdown__chevron {
    transform: rotate(-180deg);
}

/* Current Language Text */
.lang-dropdown__current {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: 0.2px;
}
body.touchDeviceTrue .lang-dropdown__current {
    display: none;
}
@media(max-width: 991.98px) {
    .lang-dropdown__current {
        display: none;
    }
}

/* Globe Icon */
.lang-dropdown__globe {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Dropdown Menu (Desktop Only) */
/* testing : toogle opacity and visibility at dev */
.lang-dropdown__menu {
    position: absolute;
    top: calc(100% + 7px);
    right: 50%;
    min-width: 140px;
    padding: 15px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translate(50%,-8px);
    transition: all 0.25s ease;
    z-index: 1000;
}

.lang-dropdown.is-open .lang-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translate(50%, 0);
}

/* Menu Items */
.lang-dropdown__item {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 5px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-dropdown__item:hover {
    color: #e63946;
}

/* Active/Selected Item */
.lang-dropdown__item--active {
    background: #ffebec;
    color: #e63946;
}

.lang-dropdown__item--active:hover {
    cursor: default;
    background: #ffebec;
    color: #e63946;
}

/* ----- Language Modal (Touch Devices) ----- */

.lang-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.lang-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Backdrop Overlay */
.lang-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Modal Content */
.lang-modal__content {
    position: relative;
    width: 90%;
    max-width: 300px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.lang-modal.is-open .lang-modal__content {
    transform: scale(1) translateY(0);
}

/* Modal Header */
.lang-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.lang-modal__title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.lang-modal__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #666;
    font-size: 14px;
    transition: all 0.2s ease;
}

.lang-modal__close:hover {
    background: #e8e8e8;
    color: #1a1a1a;
}

.lang-modal__close:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(196, 149, 106, 0.3);
}

/* Modal Body */
.lang-modal__body {
    padding: 20px;
}

/* Modal Items */
.lang-modal__item {
    display: block;
    padding: 14px 20px;
    font-size: 15px;
    color: #1a1a1a;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.2s ease, color 0.2s ease;
    margin-bottom: 5px;
    background: #f9f9f9;
    border-radius: 8px;
}
.lang-modal__item[data-lang="ar"] {
    font-size: 1.15em;
    vertical-align: middle;
}
html[lang="en"] .lang-modal__item[data-lang="ar"] {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, "Arial", sans-serif !important;
}

.lang-modal__item:hover {
    background-color: #f9f9f9;
    color: #1a1a1a;
    text-decoration: none;
}

.lang-modal__item:active {
    background-color: #f0f0f0;
}

/* Active/Selected Modal Item */
.lang-modal__item--active {
    background: #ffebec;
    color: #e63946;
}

.lang-modal__item--active:hover {
    background: #ffebec;
    color: #e63946;
}

/* Body scroll lock when modal is open */
body.lang-modal-open {
    overflow: hidden;
}

/* ---------- Responsive Styles --------- */
@media (max-width: 1199.98px) {
    .lang-dropdown__toggle {
        padding: 8px 10px;
    }
}

@media (max-width: 991.98px) {
    .lang-dropdown__toggle {
        padding: 6px 8px;
        gap: 5px;
    }

    .lang-dropdown__current {
        font-size: 13px;
    }

    .lang-dropdown__menu {
        min-width: 110px;
    }

    .lang-dropdown__item {
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (max-width: 767.98px) {
    .lang-dropdown__toggle {
        padding: 6px;
        gap: 4px;
    }

    .lang-dropdown__chevron {
        font-size: 11px;
    }

    .lang-dropdown__current {
        font-size: 12px;
    }

    /* Hide dropdown menu on mobile - use modal instead */
    .lang-dropdown__menu {
        display: none !important;
    }

    /* Modal adjustments */
    .lang-modal__content {
        width: 85%;
        max-width: 280px;
    }

    .lang-modal__header {
        padding: 14px 16px;
    }

    .lang-modal__title {
        font-size: 15px;
    }

    .lang-modal__item {
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .lang-dropdown__toggle {
        padding: 5px;
        gap: 3px;
    }

    .lang-dropdown__chevron {
        font-size: 10px;
    }

    .lang-dropdown__current {
        font-size: 11px;
    }

    .lang-modal__content {
        width: 88%;
        max-width: 260px;
        border-radius: 12px;
    }

    .lang-modal__header {
        padding: 12px 14px;
    }

    .lang-modal__title {
        font-size: 14px;
    }

    .lang-modal__close {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .lang-modal__item {
        padding: 11px 14px;
    }
}

/* fix arabic lang name in english version */
.lang-dropdown__item[data-lang="ar"] {
    font-size: 1.15em;
    vertical-align: middle;
}
html[lang="en"] .lang-dropdown__item[data-lang="ar"] {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, "Arial", sans-serif !important;
}

/* --------------- language + currency selectors --------------- */
/*
.currency-selector .btn,
.language-selector .btn,
.store-selector .btn {
    color: white;
    height: 20px;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}

.lang-selector > a.active {
    display: none !important;
}

.currency-selector .btn-group .btn .mdi::before,
.language-selector .btn .mdi::before {
    margin-top: 3px !important;
}

@media(max-width: 1199.98px) {
    .currency-selector .btn,
    .language-selector .btn {
        color: white;
    }
}

.currency-selector .dropdown-menu a,
.language-selector .dropdown-menu a {
    color: black;
    font-size: 13px;
    padding: 5px 7px !important;
    text-align: left;
}
html[lang="ar"] .currency-selector .dropdown-menu a,
html[lang="ar"] .language-selector .dropdown-menu a {
    text-align: right;
}

@media(min-width: 1200px){
    .currency-selector .dropdown-menu > ul > li:not(:last-child) a,
    .language-selector .dropdown-menu > ul > li:not(:last-child) a {
        border-bottom: 1px solid aliceblue;
    }
}

.language-selector .dropdown-menu ul li:first-child a {
    font-family: "Geeza Pro", "Nadeem", "Al Bayan", "DecoType Naskh", "DejaVu Sans", "STFangsong", "STHeiti", "STKaiti", "STSong", "AB AlBayan", "AB Geeza", "AB Kufi", "DecoType Naskh", "Aldhabi", "Andalus", "Sakkal Majalla", "Simplified Arabic", "Traditional Arabic", "Arabic Typesetting", "Urdu Typesetting", "Droid Naskh", "Droid Kufi", "Roboto", "Tahoma", "Times New Roman", "Arial", serif;
    font-size: 14px;
}

@media(max-width: 1199.98px) {
    .currency-selector .dropdown-menu a,
    .language-selector .dropdown-menu a {
        color: white;
        line-height: 1;
    }
}
*/

/* -------------------- search -------------------- */
.ln-search {
    padding: 20px 0;
    z-index: 50;
    position: relative;
    background: white;
    border-top: 1px solid #f2f2f2;
    box-shadow: 0 5px 5px rgba(0,0,0,0.05);
    border-bottom: 1px solid white;
    display: none;
}

@media (max-width: 1199.98px) {
    .ln-search {
        position: fixed;
        background: rgba(0,0,0,0.7);
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 15px;
        border: none;
        box-shadow: none;
    }
}

.searchBox .search-holder {
    position: relative;
    border-radius: 25px;
    box-shadow: inset 0px 1px 1px rgba(0,0,0,.1);
    background: rgb(238, 238, 238);
}

#small-searchterms {
    min-width: 320px;
    background-color: transparent;
    border: none;
    border-radius: 20px !important;
    padding: 8px 36px 8px 20px;
}

html[lang="ar"] #small-searchterms {
    padding: 8px 20px 8px 36px;
}

@media (max-width: 1199.98px) {
    #small-searchterms {
        min-width: unset;
    }
}

#small-searchterms:focus {
    box-shadow: none;
}

.search-box-select {
    border-radius: 0 !important;
    padding: 5px;
    height: 100%;
    border: 0;
    border-right: 2px solid #dfdfdf;
    border-left: 2px solid #dfdfdf;
    background-color: #ececec;
}

.search-box-select:focus {
    box-shadow: none;
    outline: none;
    border-right: 2px solid #dfdfdf;
    border-left: 2px solid #dfdfdf;
    background-color: #c4c4c4;
}

.search-box-button {
    border: 0;
    color: #c8c8c8;
    border-radius: 50%;
    width: 40px;
    height: 38px;
    display: inline-flex !important;
    position: absolute;
    top: 1px;
    right: 3px;
    padding: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: transparent;
    font-size: 15px;
    line-height: 1;
}
html[lang="ar"] .search-box-button {
    right: unset;
    left: 3px;
}

.search-box-button:hover {
    background-color: #e1e1e1;
    color: var(--colorRed);
}

/*search results dropdown*/
.advanced-search-results.open {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    max-height: calc(100vh - 200px);
}
@media(min-width: 1200px){
    .advanced-search-results.open {
        min-width: 600px;
    }
}
@media(max-width: 1199.98px){
    .advanced-search-results.open {
        top: 45px;
        left: 15px;
        transform: none;
    }
}
.advanced-search-results .products-container .container-off,
.advanced-search-results .blog-container .container-off {
    justify-content: center;
}
.advanced-search-results img{
    width: 65px;
    height: 65px;
}
.advanced-search-results .left-side{order: 2;}
.advanced-search-results .right-side{order: 1;}

.advanced-search-results .in-separator,
.advanced-search-results .product-in {
    display: none !important;
}
.advanced-search-results .title {
    font-size: 18px;
}

/* ===========================================================================
Topbar
============================================================================*/
/*
.sl-topbar {
    background: var(--colorRed);
    color: white;
    font-size: 13px;
    padding: 7px 0;
}
.sl-topbar a {
	color: white;
}

.sl-topbar a.topbar-parent-link {
    color: white;
    font-weight: bold;
    padding: 1px 5px;
	border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
}
.sl-topbar a.topbar-parent-link:hover {
    color: var(--colorGreen);
    background-color: white;
}

.sl-topbar .dropdown-toggle {
	color: white;
	font-size: 12px;
	padding: 4px 7px;
	line-height: 12px;
	font-weight: bold;
	background: transparent;
	border: transparent;
}
.sl-topbar .dropdown-toggle:hover {
	background-color: white;
	color: var(--colorRed);
}
.sl-topbar .dropdown.show .dropdown-toggle {
	background-color: white;
	color: var(--colorRed);
}

.sl-topbar .dropdown-item {
    color: #000;
	font-size: 13px;
}

.sl-topbar li.active .dropdown-item {
	color: green;
}
*/

/*
.sl-topbar ul.sl-topbar-left-menu li a.btn {
    background-color: transparent;
    color: white;
    padding: 3px 5px;
    line-height: 1;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.sl-topbar ul.sl-topbar-left-menu li a.btn.dropdown-toggle::after {
    margin-top: 5px;
    margin-left: 5px !important;
}

.sl-topbar ul.sl-topbar-left-menu .dropdown-menu {
    min-width: 3.6rem;
    background-color: black;
    padding: 0;
}

.sl-topbar ul.sl-topbar-left-menu .dropdown-menu .dropdown-item {
    color: white;
    background-color: black;
    font-size: 14px;
    padding: 5px;
    border-top: 1px solid #646464;
    text-align: center;
}

.sl-topbar ul.sl-topbar-left-menu .dropdown-menu .dropdown-item:focus,
.sl-topbar ul.sl-topbar-left-menu .dropdown-menu .dropdown-item:hover {
    color: white;
    background-color: #d71c24;
}

.sl-topbar ul.sl-topbar-right-menu .list-inline-item:not(:last-child) {
    margin-right: 0;
    padding-right: 15px;
    line-height: 1;
}

.sl-topbar ul.sl-topbar-right-menu .list-inline-item-currency.list-inline-item:not(:last-child) {
    padding-right: 5px;
    padding-left: 5px;
}

.sl-topbar ul.sl-topbar-right-menu li a {
    color: #777;
    font-size: 11px;
    display: block;
    padding: 0;
    text-align: left;
}

.sl-topbar ul.sl-topbar-right-menu li a:hover {
    color: var(--colorBlue);
    text-decoration: none;
}

.sl-topbar ul.sl-topbar-right-menu .dropdown-menu li.active a {
    color: var(--colorBlue);
}
*/


/*
.sl-topbar ul.sl-topbar-right-menu .dropdown-menu {
    background-color: white;
    padding: 10px;
    min-width: 100px;
}
*/

/*
.sl-topbar ul.sl-topbar-right-menu .dropdown-menu.country-list-dropdown-wrap {
    width: 200px;
}

.sl-topbar ul.sl-topbar-right-menu .dropdown-menu.country-list-dropdown-wrap #country-list {
    max-height: 400px;
    overflow-y: scroll;
    margin-top: 8px;
}

.sl-topbar ul.sl-topbar-right-menu .dropdown-menu.country-list-dropdown-wrap #country-list li a {
    border-bottom: 1px solid #efefef;
    display: block;
    padding: 9px 0px !important;
}
*/

/* ===========================================================================
Logobar
============================================================================*/
.logobar{
    /*padding: 12px 0;*/
    background-color: white;
    position: relative;
}

.col-hamburger{
    cursor: pointer;
}
.hamburger {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-logo > img {
    max-height: 56px;
}


@media(max-width: 1199.98px){
    .col-menu {
        display: contents;
    }
    .col-header-icons {
        z-index: 50;
        display: contents;
    }
    .col-btn-search-trigger-mobile {
        z-index: 25;
    }
}

/* mobile only header links */
@media(max-width: 1199.98px) {
    .col-hamburger {
        padding-inline-end: 5px;
    }
    .col-mobile-only-header-links a {
        display: inline-flex;
        align-items: center;
        font-size: 14px;
        gap: 3px;
        color: black;
    }
    .col-mobile-only-header-links .menu-icon {
        color: var(--colorRed);
        font-size: 16px;
    }
}
@media(max-width: 479.98px) {
    html[lang="en"] .col-mobile-only-header-links a {
        font-size: 13px;
    }
    html[lang="en"] .col-mobile-only-header-links .menu-icon {
        font-size: 14px;
    }
}
@media(max-width: 409.98px) {
    html[lang="en"] .header-logo > img {
        max-height: 40px;
    }
    html[lang="en"] .col-mobile-only-header-links a {
        font-size: 12px;
    }
}
@media(max-width: 419.98px) {
    .header-logo > img {
        max-height: 50px;
    }
}
@media(max-width: 399.98px) {
    .col-mobile-only-header-links a {
        font-size: 12px;
    }
    .col-mobile-only-header-links .menu-icon {
        font-size: 14px;
    }
}

/* right icons */
.header-icons-ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
}
@media(max-width: 1199.98px){
    .header-icons-ul {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 7px;
        box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
        max-width: 100vw;
        z-index: 50;
        border-top: 5px solid #fff;
    }
}


html[lang="en"] .header-icons-ul .list-inline-item:not(:last-child) {
    margin-left: 0;
	margin-right: 7px;
	padding-right: 7px;
}
html[lang="ar"] .header-icons-ul .list-inline-item:not(:last-child) {
    margin-right: 0;
	margin-left: 7px;
	padding-left: 7px;
}
@media(max-width: 1199.98px ){
    html[lang="en"] .header-icons-ul .list-inline-item:not(:last-child) {
        margin-left: 0;
        margin-right: 0;
        border-right: 0;
        padding-right: 0;
    }
    html[lang="ar"] .header-icons-ul .list-inline-item:not(:last-child) {
        margin-right: 0;
        margin-left: 0;
        border-left: 0;
        padding-left: 0;
    }
}

/* icons */
.header-icons-ul a.icon-link {
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 14px;
    cursor: pointer;
    padding: 3px 8px;
    min-width: 38px;
    height: 38px;
    position: relative;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.header-icons-ul a.icon-link:hover {
    transform: scale(1.1);
}
.header-icons-ul a.icon-link .icon {
	font-size: 18px;
	color: var(--colorRedDeep);
}
@media(max-width: 1199.98px) {
    .header-icons-ul a.icon-link .icon {
        color: white;
    }
}
.header-icons-ul a.icon-link:hover .icon {
	color: white
}
.header-icons-ul a.icon-link-user .icon {
	font-size: 20px;
}
.header-icons-ul a.icon-link-wishlist .icon {
	font-size: 20px;
}
.header-icons-ul a.icon-link-cart .icon {
	font-size: 20px;
}
.header-icons-ul .btn-cart-icon {
	color: var(--colorBlue);
}

/* language dropdown */
@media(max-width: 1199.98px){
    .ln-header .dropdown-aldar-language-selector .dropdown-toggle {
        padding: 0;
        width: 34px;
        height: 34px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        color: var(--colorBlue);
        font-size: 20px;
        border-color: #c4c4c4;
    }
    .ln-header .dropdown-aldar-language-selector .dropdown-toggle .icon{
        font-size: 16px;
        color: var(--colorBlue);
    }
}

.qty-indicator {
    position: absolute;
    right: 5px;
    top: 4px;
    transform: translate(50%,-50%);
    border: 2px solid white;
    border-radius: 50%;
    width: 23px;
    height: 23px;
    font-size: 12px;
    text-align: center;
    padding: 0;
    background-color: #f4322e;
    color: white;
    display: block;
    line-height: 1.7;
    font-family: sans-serif;
}
@media(max-width: 1199.98px) {
    .qty-indicator {
        border: 2px solid white;
        background: #f4322e;
        color: white;
        top: 7px;
    }
}
html[lang="ar"] .qty-indicator {
	line-height: 1.5;
}

@media(max-width: 1199.98px) {
    .logobar.col-header-icons {
        display: contents;
    }

    .logobar.col-header-icons a.icon-link > .form-row.align-items-center {
        flex-direction: column-reverse;
        font-size: 11px;
    }
    .header-icons-ul a.icon-link {
        min-width: unset;
        height: 45px;
        box-shadow: none;
        padding: 5px;
        color: white;
    }

    .li-header-icon-cart {
        padding: 0 10px;
    }


    /*orders*/
    .li-header-icon-lang { order: 1;}
    .li-header-icon-gift { order: 2;}
    .li-header-icon-cart { order: 3;}
    .li-header-icon-wallet { order: 4;}
    .li-header-icon-profile { order: 5;}
}




/*------------------------------- mobile -------------------------*/

@media(max-width: 1199.98px) {

    /*------logobar ----- */
    .logobar{
        padding: 7px 0;
        border-bottom: 0;
        z-index: 50;
        border-bottom: 1px solid #e8e8e8;
    }
    .sl-logobar.sticky {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        background-color: white;
        box-shadow: 3px 2px 4px #c3c3c3;
        z-index: 99;
    }

    .hamburger {
        cursor: pointer;
    }

}


@media(max-width: 1199.98px) {

    .currency-selector .dropdown-menu, .language-selector .dropdown-menu {
        background-color: black;
        margin: 0;
    }

    .currency-selector .dropdown-menu li, .language-selector .dropdown-menu li {
        text-align: center;
        padding: 3px;
    }

    .currency-selector .dropdown-menu li:hover, .language-selector .dropdown-menu li:hover {
        background-color: white;
    }

    .currency-selector .dropdown-menu a:hover, .language-selector .dropdown-menu a:hover {
        color: black;
    }

    .currency-selector .dropdown-menu li.active a, 
    .language-selector .dropdown-menu li.active a{
        color: orangered !important;
    }

}


/* Animated Hamburger icon on desktop */
#nav-icon1 {
    width: 25px;
    height: 16px;
    position: relative;
    margin: 0 auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon1 span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--colorBlue);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
    top: 0px;
}

#nav-icon1 span:nth-child(2) {
    top: 7px;
}

#nav-icon1 span:nth-child(3) {
    top: 14px;
}

#nav-icon1.open span:nth-child(1) {
    top: 6px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -40px;
}

#nav-icon1.open span:nth-child(3) {
    top: 6px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
