.sub-header {
	background-color: var(--color-primary);
	color: #fff;
	font-size: 16px;
	padding: 10px;
}

.sub-header .col-lg-6.row {
	gap: 10px;
	align-items: center !important;
}

.sub-header a {
	color: #fff;
	font-family: "Montserrat";
	font-size: 12px;

	display: flex;
	align-items: center;
	gap: 5px;
}

.sub-header,
.header {
	display: flex;
	align-items: center;
}

.header ul {
	gap: 16px;
	align-self: baseline;
}

.header li a {
	color: #7b7b7b;
	font-family: "Montserrat";
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	transition: var(--transition);
}

.header li a:hover {
	color: var(--color-primary);
}

.header ul li a.active {
	color: var(--color-black) !important;
	font-weight: 700;
	/* text-shadow: 0 0 0.65px #000, 0 0 0.65px #000; */

	background-image: linear-gradient(#b1010b, #b1010b);
	background-repeat: no-repeat;
	background-size: 70% 2px;
	background-position: left bottom;
}

.header ul .flex-row {
	gap: 24px;
}

.dropdown {
	position: absolute;
	width: max-content;
	background: #fff;
	z-index: 100;
	padding: 16px;
	border-radius: 7px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.dropdown.product {
	width: 300px;
}

.dropdown p {
	color: var(--color-primary);
}

.dropdown div {
	width: 150px;
	display: block;
}

.dropdown div img {
	width: 100%;
	display: block;
}

/* 
.dropdown a{
  text-decoration: underline;
} */

.fade-enter-active,
.fade-leave-active {
	transition: opacity 500ms;
}

.fade-enter,
.fade-leave-to {
	opacity: 0;
}

.gap__top-header {
	gap: 10px;
}

/*translation*/
body {
	top: 0 !important;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-yAWNEb-L7lbkb,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf{
	display: none !important;
}

.VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q{
	background-color: transparent !important;
    box-shadow: none !important;
    position: inherit !important;
}

.selectTranslate{
	position: relative;
	width: 80px;

	text-align: left;

	background: url("../../../images/svg/arrow-down.svg") no-repeat 95%/10px,
		white 100% 100%;
	cursor: pointer;
	color: black;

	font-size: 13px;
	font-family: "Montserrat";
	padding: 5px;

	border-radius: 9px;
}

.selectTranslate__options{
	display: none;

	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;

	outline: var(--color-primary) 1px solid;
	/* border-radius: 0 0 9px 9px; */
	border-radius: 9px;
	overflow: hidden;
}

.selectTranslate.open >.selectTranslate__options{
	display: block;
	width: 100%;
}

.selectTranslate__option {
	background-color: #fff;
	color: #000;
	padding: 5px;
	cursor: pointer;
}

.selectTranslate__option:not(:last-child) {
	border-bottom: var(--color-primary)	 1px solid;
}

.selectTranslate__option:last-child{
	border-radius: 0 0 9px 9px;
}

.selectTranslate__option--active{
	color: var(--);
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
}