/* --------------------
   header
-------------------- */
#header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 6;
}
.header-top {
    background: var(--color1);
}
.header-bottom {
    background: var(--color3);
}
.header-logo img {
	display: table;
	margin: auto;
	padding:0 clamp(2.1rem,2vw,3.5rem)
}
.header-logo {
    display: block;
    background: #fff;
    z-index: 1;
}
.header-logo::after,
.header-logo::before{
	content: "";
    height: 100%;
    position: absolute;
	width: 20%;
    background: var(--color1);
    top: 0;
}
.header-logo::after {
  right: 0;
  border-radius: 0 0 0 50px;
}
.header-logo::before {
  left: 0;
  border-radius: 0 0 50px 0;
}
.header-menu {
   display:none;
}
.header-menu > li > a {
    display: inline-block;
    color: #fff;
    padding: 20px 0 18px;
	position:relative;
    font-size:14px;
}
.header-menu .sub-menu li a{
	font-size:14px;
    display: block;
    padding: 5px 10px;
    transition: 0.4s ease;
    background: #fff;
}
.header-menu .sub-menu li a:hover {
    background: #F3F3FF;
}
.header-menu > li > a:before {
    content: "";
    height: 2px;
    position: absolute;
    bottom: 0;
    width: 0;
    background: var(--color2);
	right:0;
	transition:0.3s;
}
.wrap-menu .header-menu > li:hover a:before {
	width:100%;
}

.item_has_sub:hover .sub_part {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}
.header-mm {
    display: flex;
    width: 32px;
    height: 32px;
    position: relative;
    text-align: center;
    align-items: center;
}
.header-mm i:before,
.header-mm i:after{
	content:"";
    position: absolute;
}

.header-mm i::before, .header-mm i::after, .header-mm i {
  width: 21px;
 height: 2px;
  background-color: #fff;
  transition: 0.4s;
  display: block;
  margin: auto;
  border-radius: 5px;
}
.header-mm i:before {
    top: 9px;
}
.header-mm i:after {
    top: 21px;
	width:15px;
}

.mobile .header-btns{
	margin-right:0;
}
.header-btns {
    margin-right: auto;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 8px;
    height: 100%;
}
.header-menu-wrapper {
    margin-right: 77px;
}
.wrap-menu .sub-menu {
    position: absolute;
    background-color: #fff;
    border-radius: 5px;
    min-width: 220px;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    transition: 250ms;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 20;
    box-shadow: 0px 10px 48px 0 rgba(0 0 0 / 10%);
}
.menu-item-has-children {
    position: relative;
    margin-left: 5px;
}
.wrap-menu .menu-item:hover>.sub-menu {
    overflow: visible;
    visibility: visible;
    opacity: 1;
}
.wrap-menu .menu-item .sub-menu li ul.sub-menu {
    right: 100%;
    top: 0;
}
.header-menu .menu-item-has-children:after {
    content: "\e916";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 7px;
    bottom: 0;
    left: -4px;
    right: auto;
    margin: auto;
    font-family: 'icomoon';
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: .4s;
	color:#fff;
}
.header-menu li ul li:after {
    transform: rotate(90deg);
}
.header-btns .button{
	display:none;
}

.en-wrapper .en-span {
    color: #fff;
    display: flex;
    align-items: center;
}
.en-wrapper {
	display: flex;
	align-items: center;
	font-size: 12px;
}
.en-wrapper:hover .en-span {
    opacity: 1;
}
.en-wrapper .en-span:hover {
    color: var(--color2);
}
.en-wrapper .en-span:after {
    content: "";
    height: 15px;
    width: 1px;
    display: inline-block;
    background: #fff;
    margin: auto 8px;
}
.fa-span {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    gap: 6px;
    line-height: 32px;
    color: var(--color2);
}
.date-wrap .date:after {
    content: "";
    height: 10px;
    width: 1px;
    display: inline-block;
    background: #fff;
    margin: 0 7px;
}
.date-wrap {
    height: 100%;
	display:none;
	font-size:12px;
}
.date-wrap .date {
    color: var(--color2);
	display:inline-block;
}
.date-wrap  .time {
    color: #fff;
	display:inline-block;
	min-width:45px;
}
.card-btn {
    min-width: 42px !important;
}
.card-btn span {
    padding: 0 2px 0 10px;
    transition: 0.4s ease;
}
.card-btn.active span {
    display: none;
}
/* --------------------
   Mobile menu Fixed bottom
-------------------- */
.fix-menu {
	position: fixed;
	bottom: -1px;
	right: 0;
	left: 0;
	padding: 1rem min(2rem, 2vw) 0.5rem;
	display: flex;
	z-index: 12;
	background: var(--color3);
	box-shadow: 0 -12px 10px 0 rgba(211,211,211,.15);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	gap: min(2vw, 16rem);
	align-items: center;
	justify-content: space-between;
}

.fix-menu a {
  color: #fff;
}

.menu--item.access-link {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.menu--item.home-access-link {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  top: -27px;
}
.menu--item.home-access-link:after{
	position:absolute;
	width:100%;
	content:"";
	height: 100%;
	border-radius:5px;
	border:1px solid #fff;
	transform:rotate(45deg);
	background: var(--color2);
}
.menu--item.home-access-link i {
	width: 70%;
	height: 70%;
	margin: auto;
	z-index: 1;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color1);
	font-weight: bold;
}
.menu--item.access-link {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex: 0 0 50%;
	max-width: 50%;
	gap: 5px;
	font-size: 15px;
}
.menu--item.access-link i.icon-shop {
    font-size: 21px;
}
.menu--item.access-link i.icon-order-fast {
    font-size: 18px;
}
a.menu--item.access-link:hover {
    color: var(--color2);
}
/* --------------------
    Menu Mobile
-------------------- */
#mask{
    position: fixed;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}

#menumobile{
    position: fixed;
    top: 0;
    bottom: 0;
    right: -300px;
    width: 250px;
    background: #fff;
    font-weight: bold;
    z-index: 99991;
    transition: all 0.5s;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.3) !important;
    overflow-y: auto;
}

#menumobile img{
    max-width: 130px;
}

#nomenumobile {
    cursor: pointer;
    transition: all 0.5s;
    width: 25px;
    height: 25px;
    background: var(--color3);
    text-align: center;
    border-radius: 3px;
    display: inline-flex;
    color: #fff;
    font-size: 18px;
    align-items: center;
    justify-content: center;
}
.come-menumobile{
    right: 0 !important;
}
.title-mm{
    background: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title-mm img{
    user-select: none;
}

.btn-mm{
    padding: 0 20px;
    margin-top: 20px;
}

.btn-mm a{
    display: flex;
}

.title-sub-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-flow: row-reverse;
}


.title-sub-head strong {
    font-family: var(--bold_font);
}

.main-mm{
    padding: 5px 20px;
}

.main-mm ul li a{
    color: #222;
    display: block;
    padding: 8px 0;
    position: relative;
    width: 80%;
}

.main-mm ul li a:hover{
    color: var(--color3);
}

.main-mm ul li > .sub-menu{
    position: fixed;
    top: 0;
    bottom: 0;
    width: 250px;
    background:#fff;
    right: -250px;
    transition: 0.3s;
    z-index: 9;
    padding: 20px;
}

.childer i{
    position: absolute;
    cursor: pointer;
    top: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    left: 10px;
}

.childer{
    position: absolute;
    left: -25%;
    cursor: pointer;
    top: 10px;
    width: 25px;
    height: 25px;
    background: var(--bg_footer);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.come-submenu{
    right: 0 !important;
}

.sub-closer{
    cursor: pointer;
    top: 10px;
    width: 25px;
    height: 25px;
    background: var(--color3);
    border-radius: 3px;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-closer i{
    cursor: pointer;
    top: -1px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    position: relative;
    left: -1px;

}

.title-subcome{
    color: var(--color3);
    font-weight: normal;
    position: relative;
    top: 2px;
}

/* --------------------
  Breadcrumb Style
-------------------- */
#breadcrumbs a:after{
	content:"";
	display:inline-block;
	margin:0 8.5px;
	width:5px;
	height:5px;
	border-radius:50%;
	background:var(--color3);
}
#breadcrumbs {
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    margin: 3.1rem 0 1.5rem;
    font-size: 13px;
}
#breadcrumbs a{
	color:#212121;
}
#breadcrumbs.no_ab_breadcrumb a:hover,
#breadcrumbs a:hover{
	color:var(--color3);
}
.breadcrumb_last {
  color: var(--color3);
}


@media screen and (min-width: 992px) { 
	.header-top {
		padding: 0.5rem  0;
	}
	.header-logo img {
		padding:0;
	}
	.header-logo::after,
	.header-logo::before{
		content:none;
	}
    .header-logo {
        display: block;
        background: #fff;
        /*padding: clamp(1.5rem, 2vw, 2rem);*/
        padding: clamp(0.5rem, 2vw, 1.3rem);
        position: absolute;
        border-radius: 0 0 40px 40px;
        left: 0;
        right: 0;
        top: -0.5rem;
        margin: auto;
        /*filter: drop-shadow(0px 6px 9px rgb(0 0 0 / 15%));*/
    }
    .fix-menu {
		display: none;
	}
    .header-btns .button{
	    display: flex;
	    justify-content: center;
	    align-items: center;
    } 
	.header-mm{
		display:none;
	}
	.date-wrap{
		display: flex;
        align-items: center;
	}
	.header-menu.right-menu {
		  justify-content: flex-start;
	}
	.header-menu.left-menu {
		  justify-content: flex-end;
	}
	.header-menu {
        display: flex;
        align-items: center;
        gap: 15px;
	}
    .header-menu > li {
        padding-left: 16px;
    }
	#header {
      filter: drop-shadow(0px 14px 14px rgb(0 0 0 / 25%));
	}
}