@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: "Open Sans", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-variation-settings: "wdth" 100;
}


/* --------------------------------------------------HEADER------------------------------------------------- */


li,
a {
	font-size: 14px;
	text-decoration: none;
	color: currentColor;
}

header {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 20px 3%;
	color: #253237;
	font-weight: 700;
}

.logo {
	cursor: pointer;
	margin-right: auto;
	max-width: 192px;
}

@media (min-width: 1074px) {
	.logo {
		margin-top: 0px;
	}
}


.nav_links {
	list-style: none;
}

.nav_links li {
	display: inline-block;
	padding: 18px 20px;
}

.nav_links li a {
	transition: all 0.5s ease;
}

.nav_links li a:hover {
	color: #e0afa0;
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	left: -320px;
	width: 320px;
	height: 100vh;
	background: white;
	box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
	transition: left 0.3s ease-in-out;
	display: flex;
	flex-direction: column;
	z-index: 999;
}

.mobile-menu.open {
	left: 0;
}


.hamburger-menu {
	font-size: 24px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 800;
	display: none;
}

.hamburger-menu:hover {
	color: #e0afa0;
}

.user {
	width: 22px;
}

.user-log {
	width: 10px;
}

.pre-header {
	display: flex;
	justify-content: space-between;
	/*border-bottom: 1px solid rgb(212, 209, 209);*/
	border-bottom: 1px solid #ebebeb;
	padding: .6rem .7rem .6rem 1rem;
}

.flex-center {
	display: flex;
	align-items: center;
}

.current-order {
	column-gap: 1rem;
	color: #7a7a7a;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0px;
}

.log-in a {
	font-size: 14px;
	color: #253237;
	transition: color .5s ease;
}

.log-in a:hover {
	color: #e0afa0;
}

.log-in {
	column-gap: 5px;
	padding-right: 10px;
	border-right: 1px solid rgb(212, 209, 209);
}

#language {
	border: none;
	padding-left: 10px;
}


/* --------------------------------------------------FOOTER------------------------------------------------- */

footer {
	background-color: #2b2a2a;
	color: rgb(237, 232, 232);
	font-weight: 500;
}

.footer-row-info {
	display: flex;
	max-width: 80%;
	margin: 0 auto;
	justify-content: space-between;
	padding-bottom: 15px;
	border-bottom: 1px solid gray;
	padding: 1rem 2rem 1rem 0;
}

.row-copy {
	display: flex;
	max-width: 80%;
	margin: 0 auto;
	justify-content: space-between;
	padding: 2rem 0.5rem 2rem 0.5rem;
}

.col {
	display: flex;
	flex-direction: column;
	padding: 2rem 2rem 2rem 0;
	text-align: left;
	row-gap: 15px;
}

.accordion-content {
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
}

.col-info {
	display: flex;
	flex-direction: column;
	padding: 2rem 2rem 2rem 0;
	text-align: left;
	justify-content: start;
	row-gap: 15px;
}

.col h3 {
	padding-bottom: 5px;
}

.col-copy {
	display: flex;
	column-gap: 35px;
	transition: filter 9s ease-in;
}

.col-copy a:hover {
	/*filter: drop-shadow(0 0 0.2rem #e0afa0);*/
}

.accordion-content a {
	transition: transform .6s ease;
}

.accordion-content a:hover {
	transform: translateX(15%);
	color: #e0afa0;
}

.col-copy a img {
	filter: invert(1);
	width: 19px;
}


/* --------------------------------------------------NASCOSTI------------------------------------------------- */

.hamburger-menu {
	display: none;
}

.links-responsive {
	display: none;
}


/* --------------------------------------------------RESPONSIVE HEADER------------------------------------------------- */

@media (max-width: 1074px) {

	.hamburger-menu {
		display: block;
	}

	.links-responsive {
		display: flex;
		column-gap: 8px;
	}

	nav {
		display: none;
	}

	header {
		justify-content: space-between;
	}

	.logo {
		cursor: pointer;
		margin-right: inherit;
		max-width: 192px;
	}

	.hamburger-menu {
		display: block;
	}

	.nav_links {
		display: flex;
		flex-direction: column;
		/* row-gap: 1.1rem; */
	}

	.nav_links li {
		display: inline-block;
		padding: 0.7rem 1.4rem;
		border-bottom: 1px solid #f0e7e7;
		font-size: 14px;
	}

	.nav_links li:first-child {
		font-size: 18px;
		/* font-weight: 700; */
	}

	.close-aside-arrow {
		display: flex;
		justify-content: space-between;
		color: white;
		align-items: center;
	}

	.close-menu {
		cursor: pointer;
		filter: invert(1);
		width: 24px;
	}

	.bg-dark {
		background-color: #253237;
	}
}

@media (max-width: 620px) {
	.pre-header {
		flex-direction: column;
		row-gap: 10px;
	}
}


/* --------------------------------------------------RESPONSIVE FOOTER------------------------------------------------- */

@media (max-width: 766px) {
	.accordion-content {
		flex-direction: column;
		animation: fade 1s ease-in-out;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.5s ease-in-out;
	}

	.accordion h3 {
		cursor: pointer;
		position: relative;
	}

	.accordion h3::after {
		content: "";
		position: absolute;
		right: 10px;
		width: 12px;
		height: 12px;
		background-image: url('assets/arrow-down.png');
		background-size: contain;
		background-repeat: no-repeat;
		transition: transform 0.5s ease-in-out;
		filter: invert();
	}

	.accordion h3:hover {

		color: #e0afa0;
	}

	.accordion.open h3::after {
		transform: rotate(180deg);
	}

	.footer-row-info {
		flex-direction: column;
	}

	.col {
		padding: 0.7rem 0 0 0;
		row-gap: 0.5rem;
	}

	.accordion.open .accordion-content {
		max-height: 300px;
	}

	.col-info {
		padding: 0.5rem 0 0.5rem 0;
	}

	.footer-row-info {
		max-width: 95%;
		padding: 0;
	}

	.footer-row-info .col:first-of-type {
		padding: 3rem 0 2rem 0;
	}

	.footer-row-info .col:first-of-type h3 {
		padding-bottom: 1rem;
	}

	.row-copy {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		row-gap: 1.8rem;
	}

	.accordion-content a {
		max-width: 23%;
	}


}

/* --------------------------------------------------ANIMAZIONE ACCORDION------------------------------------------------- */

@keyframes fade {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

html, body, div, p, span {
	font-family: "Open Sans", sans-serif;
}

.nav_links a {
	letter-spacing: 0 !important;
	color: #123237;
}

.logo {
	margin-bottom: unset !important;
}

@font-face {
	font-family: 'roadthemes-icon';
	src: url("fonts/roadthemes-icon.eot");
	src: url("fonts/roadthemes-icon.eot?#iefix") format("embedded-opentype"),
	url("fonts/roadthemes-icon.woff") format("woff"),
	url("fonts/roadthemes-icon.ttf") format("truetype"),
	url("fonts/roadthemes-icon.svg#roadthemes-icon") format("svg");
	font-weight: 400;
	font-style: normal;
	font-display: block;
}

[class^="icon-rt-"], [class*=" icon-rt-"] {
	font-family: 'roadthemes-icon' !important;
	speak: never;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.cart-icon {
	width: 26px;
	height: 26px;
	background-image: url("../images/icon-bag.png");
	background-size: cover;
	display: inline-block;
	transition: background-image 0.3s ease;
}

.cart-icon:hover {
	width: 26px;
	height: 26px;
	background-image: url("../images/icon-bag-hover.png");
	background-size: cover;
	display: inline-block;
	transition: background-image 0.3s ease;
}

[class^="icon-rt-"], [class*=" icon-rt-"] {
	font-family: 'roadthemes-icon' !important;
	speak: never;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.user-icon {
	width: 26px;
	height: 26px;
	background-image: url("../images/user.png");
	background-size: cover;
	display: inline-block;
	transition: background-image 0.3s ease;
}

.search-icon {
	width: 26px;
	height: 26px;
	background-image: url("../images/search-icon.png");
	background-size: cover;
	display: inline-block;
	transition: background-image 0.3s ease;
}

#preheader_desktop {
	display: block;
}

@media (max-width: 768px) {
	#preheader_desktop {
		display: none;
	}
}

#preheader_mobile {
	display: none;
}

@media (max-width: 768px) {
	#preheader_mobile {
		display: block;
	}
}

#preheader-mobile-contents {
	position: relative;
}

.pre-header {
	height: auto;
}

@media (max-width: 768px) {
	#preheader-mobile-contents {
		position: absolute;
		right: 0;
	}

	.pre-header {
		height: 56px;
	}
}

#icon-signin {
	display: block;
}

@media (max-width: 768px) {
	#icon-signin {
		display: none;
	}

}

footer p {
	font-size: 17px;
	color: white;
	margin-bottom: 10px;
	font-family: "Open Sans", sans-serif !important;
	font-optical-sizing: auto !important;
	font-style: normal !important;
	font-variation-settings: "wdth" 100 !important;
	letter-spacing: 0;
}

@media (max-width: 766px) {
	footer h3 {
		padding-bottom: 1rem;
		color: white;
		font-size: 19px;
		letter-spacing: 0;
		font-family: "Rubik", sans-serif !important;
		font-weight: 600 !important;
		line-height: 24px;
	}

	footer p {
		font-size: 16px;
		color: white;
		margin-bottom: 5px;
		font-family: "Open Sans", sans-serif !important;
		font-optical-sizing: auto !important;
		font-style: normal !important;
		font-variation-settings: "wdth" 100 !important;
		letter-spacing: 0;
	}

	#header-menu {
		padding: 20px 3%;
		width: 100%;
		max-width: 1500px;
		margin: auto;
	}
}

footer h3 {
	padding-bottom: 5px;
	color: white;
	letter-spacing: 0;
	margin-bottom: unset;
	font-family: "Rubik", sans-serif !important;
	font-weight: 600;
	line-height: 24px;
}

@media (max-width: 766px) {
	.accordion h3::after {
		content: "";
		position: absolute;
		right: 10px;
		width: 12px;
		height: 12px;
		background-image: url(../images/arrow-down.png);
		background-size: contain;
		background-repeat: no-repeat;
		transition: transform 0.5s ease-in-out;
		filter: invert();
	}

	.accordion h3 {
		margin-bottom: 10px;
	}

	#footer-company {
		margin-top: 15px;
		margin-bottom: 15px;
	}
}

footer a {
	font-size: 14px;
	color: white;
	margin-bottom: 0;
	font-family: "Rubik", sans-serif !important;
	font-optical-sizing: auto !important;
	font-style: normal !important;
	font-variation-settings: "wdth" 100 !important;
	letter-spacing: 0;
}

footer {
	padding-top: 25px;
}

#header-menu {
	/*padding:20px 3%;*/
	padding: 20px 0px 20px 20px;
	width: 100%;
	max-width: 1500px;
	margin: auto;
}

.logo {
	max-width: 200px !important;
}

/*@media (min-width: 576px) {*/
/*    #header-menu{*/
/*        padding:20px 3%;*/
/*        width:100%;*/
/*        max-width: 1500px;*/
/*        margin: auto;*/
/*    }*/
/*}*/

.footer-row-info {
	max-width: 1200px !important;
}

.row-copy {
	max-width: 1200px !important;
}

@media (max-width: 1200px) {
	.footer-row-info {
		max-width: 90% !important;
	}

	.row-copy {
		max-width: 90% !important;
	}
}

#footer-company p {
	font-size: 14px !important;
	line-height: 24px !important;
}

@font-face {
	font-family: 'roadthemes-icon';
	src: url(fonts/roadthemes-icon.eot?txsi0l);
	src: url("fonts/roadthemes-icon.eot?txsi0l#iefix") format("embedded-opentype"), url(fonts/roadthemes-icon.ttf?txsi0l) format("truetype"), url(fonts/roadthemes-icon.woff?txsi0l) format("woff"), url("fonts/roadthemes-icon.svg?txsi0l#roadthemes-icon") format("svg");
	font-weight: 400;
	font-style: normal;
	font-display: block
}

.footer-social i {
	font-size: 21px;
}

.footer-social i:hover {
	color: #e0afa0;
}

.footer-social i:before {
	font-family: "roadthemes-icon", sans-serif;
	display: inline-block;
}

.icon-rt-bag-outline:before {
	content: "\e900";
}

.icon-rt-cart-outline:before {
	content: "\e901";
}

.icon-rt-bag:before {
	content: "\e902";
}

.icon-rt-handbag:before {
	content: "\e903";
}

.icon-rt-shopping-cart:before {
	content: "\e904";
}

.icon-rt-bag2:before {
	content: "\e905";
}

.icon-rt-shopping-cart-solid:before {
	content: "\e906";
}

.icon-rt-basket-outline:before {
	content: "\e907";
}

.icon-rt-shopping-basket-solid:before {
	content: "\e908";
}

.icon-rt-heart:before {
	content: "\e909";
}

.icon-rt-heart2:before {
	content: "\e90a";
}

.icon-rt-heart-solid:before {
	content: "\e90b";
}

.icon-rt-heart-outline:before {
	content: "\e90c";
}

.icon-rt-ios-heart-outline:before {
	content: "\e90d";
}

.icon-rt-shuffle:before {
	content: "\e90e";
}

.icon-rt-refresh:before {
	content: "\e90f";
}

.icon-rt-ios-shuffle:before {
	content: "\e910";
}

.icon-rt-ios-shuffle-strong:before {
	content: "\e911";
}

.icon-rt-repeat-outline:before {
	content: "\e912";
}

.icon-rt-sync-alt-solid:before {
	content: "\e913";
}

.icon-rt-star2:before {
	content: "\e914";
}

.icon-rt-star-solid:before {
	content: "\e915";
}

.icon-rt-star-half-alt-solid:before {
	content: "\e916";
}

.icon-rt-search:before {
	content: "\e917";
}

.icon-rt-magnifier:before {
	content: "\e918";
}

.icon-rt-search2:before {
	content: "\e919";
}

.icon-rt-loupe:before {
	content: "\e91a";
}

.icon-rt-search1:before {
	content: "\e91b";
}

.icon-rt-eye-outline:before {
	content: "\e91c";
}

.icon-rt-eye:before {
	content: "\e91d";
}

.icon-rt-look:before {
	content: "\e91e";
}

.icon-rt-eye2:before {
	content: "\e91f";
}

.icon-rt-bars-solid:before {
	content: "\e920";
}

.icon-rt-menu-outline:before {
	content: "\e921";
}

.icon-rt-navicon-round:before {
	content: "\e922";
}

.icon-rt-grid-outline:before {
	content: "\e923";
}

.icon-rt-grid:before {
	content: "\e924";
}

.icon-rt-grid2:before {
	content: "\e925";
}

.icon-rt-apps-outline:before {
	content: "\e926";
}

.icon-rt-apps-sharp:before {
	content: "\e927";
}

.icon-rt-list:before {
	content: "\e928";
}

.icon-rt-list-outline:before {
	content: "\e929";
}

.icon-rt-list-solid:before {
	content: "\e92a";
}

.icon-rt-arrow-down:before {
	content: "\e92b";
}

.icon-rt-arrow-left:before {
	content: "\e92c";
}

.icon-rt-arrow-right:before {
	content: "\e92d";
}

.icon-rt-arrow-up:before {
	content: "\e92e";
}

.icon-rt-logo-facebook:before {
	content: "\e92f";
}

.icon-rt-logo-google:before {
	content: "\e930";
}

.icon-rt-logo-pinterest:before {
	content: "\e931";
}

.icon-rt-logo-twitter:before {
	content: "\e932";
}

.icon-rt-logo-youtube:before {
	content: "\e933";
}

.icon-rt-logo-instagram:before {
	content: "\e934";
}

.icon-rt-logo-linkedin:before {
	content: "\e935";
}

.icon-rt-logo-rss:before {
	content: "\e936";
}

.icon-rt-logo-twitch:before {
	content: "\e937";
}

.icon-rt-0-facebook2:before {
	content: "\e938";
}

.icon-rt-1-twitter2:before {
	content: "\e939";
}

.icon-rt-2-youtube2:before {
	content: "\e93a";
}

.icon-rt-3-dribbble:before {
	content: "\e93b";
}

.icon-rt-4-facebook-f:before {
	content: "\e93c";
}

.icon-rt-5-google-plus-g:before {
	content: "\e93d";
}

.icon-rt-6-pinterest-p:before {
	content: "\e93e";
}

.icon-rt-close-outline:before {
	content: "\e93f";
}

.icon-rt-close-circle:before {
	content: "\e940";
}

.icon-rt-close-circle-outline:before {
	content: "\e941";
}

.icon-rt-person-outline:before {
	content: "\e942";
}

.icon-rt-person-circle-outline:before {
	content: "\e943";
}

.icon-rt-user:before {
	content: "\e944";
}

.icon-rt-user-circle:before {
	content: "\e945";
}

.icon-rt-call-outline:before {
	content: "\e946";
}

.icon-rt-call-sharp:before {
	content: "\e947";
}

.icon-rt-headphones:before {
	content: "\e948";
}

.icon-rt-headphones-mic:before {
	content: "\e949";
}

.icon-rt-headphones2:before {
	content: "\e94a";
}

.icon-rt-phone-volume-solid:before {
	content: "\e94b";
}

.icon-rt-phone-call:before {
	content: "\e94c";
}

.icon-rt-headset-outline:before {
	content: "\e94d";
}

.icon-rt-settings-outline:before {
	content: "\e94e";
}

.icon-rt-settings:before {
	content: "\e94f";
}

.icon-rt-shipping-fast-solid:before {
	content: "\e950";
}

.icon-rt-truck-solid:before {
	content: "\e951";
}

.icon-rt-ship-solid:before {
	content: "\e952";
}

.icon-rt-boat-outline:before {
	content: "\e953";
}

.icon-rt-rocket:before {
	content: "\e954";
}

.icon-rt-rocket-outline:before {
	content: "\e955";
}

.icon-rt-location-pin:before {
	content: "\e956";
}

.icon-rt-map-marked-alt-solid:before {
	content: "\e957";
}

.icon-rt-location-outline:before {
	content: "\e958";
}

.icon-rt-mail-outline:before {
	content: "\e959";
}

.icon-rt-mail-open-outline:before {
	content: "\e95a";
}

.icon-rt-globe-solid:before {
	content: "\e95b";
}

.icon-rt-globe-alt:before {
	content: "\e95c";
}

.icon-rt-scan-outline:before {
	content: "\e95d";
}

.icon-rt-expand-outline:before {
	content: "\e95e";
}

.icon-rt-checkmark:before {
	content: "\e95f";
}

.icon-rt-card-outline:before {
	content: "\e960";
}

.icon-rt-credit-card-solid:before {
	content: "\e961";
}

.icon-rt-money-bill-wave-solid:before {
	content: "\e962";
}

.icon-rt-cash-outline:before {
	content: "\e963";
}

.icon-rt-gift-outline:before {
	content: "\e964";
}

.icon-rt-gift-solid:before {
	content: "\e965";
}

.icon-rt-gifts-solid:before {
	content: "\e966";
}

.icon-rt-ribbon-outline:before {
	content: "\e967";
}

.icon-rt-time-outline:before {
	content: "\e968";
}

.icon-rt-help-buoy-outline:before {
	content: "\e969";
}

.icon-rt-exchange-1:before {
	content: "\e96a";
}

.icon-rt-call-center-24-7:before {
	content: "\e96b";
}

.icon-rt-headphone-24-7:before {
	content: "\e96c";
}

.icon-rt-credit-card-secure1:before {
	content: "\e96d";
}

.icon-rt-payment-security:before {
	content: "\e96e";
}

.icon-rt-logo-vk:before {
	content: "\e96f";
}

.icon-rt-logo-whatsapp:before {
	content: "\e970";
}

.icon-rt-logo-telegram:before {
	content: "\e971";
}

.icon-rt-play-outline:before {
	content: "\e972";
}

.icon-rt-videocam-outline:before {
	content: "\e973";
}

.icon-rt-play-circle:before {
	content: "\e974";
}

.icon-rt-home-outline:before {
	content: "\e975";
}

.icon-rt-diamond-outline:before {
	content: "\e976";
}

.icon-rt-camera-outline:before {
	content: "\e977";
}

.icon-rt-fitness-outline:before {
	content: "\e978";
}

.icon-rt-medkit-outline:before {
	content: "\e979";
}

.icon-rt-nuclear-outline:before {
	content: "\e97a";
}

.icon-rt-shirt-outline:before {
	content: "\e97b";
}

.icon-rt-watch-outline:before {
	content: "\e97c";
}

.icon-rt-couch-solid:before {
	content: "\e97d";
}

.icon-rt-filter-outline:before {
	content: "\e97e";
}

.icon-rt-options-outline:before {
	content: "\e97f";
}

.icon-rt-chatbox-outline:before {
	content: "\e980";
}

.icon-rt-chatbubble-outline:before {
	content: "\e981";
}

.icon-rt-logo-behance:before {
	content: "\e982";
}

.icon-rt-logo-flickr:before {
	content: "\e983";
}

.icon-rt-logo-foursquare:before {
	content: "\e984";
}

.icon-rt-logo-github:before {
	content: "\e985";
}

.icon-rt-logo-skype:before {
	content: "\e986";
}

.icon-rt-logo-snapchat:before {
	content: "\e987";
}

.icon-rt-logo-soundcloud:before {
	content: "\e988";
}

.icon-rt-logo-tumblr:before {
	content: "\e989";
}

.icon-rt-logo-vimeo:before {
	content: "\e98a";
}

.icon-rt-logo-wechat:before {
	content: "\e98b";
}

.icon-rt-logo-weibo:before {
	content: "\e98c";
}

.icon-rt-add-outline:before {
	content: "\e98d";
}

.icon-rt-remove-outline:before {
	content: "\e98e";
}

.icon-rt-left-quotes-sign:before {
	content: "\e98f";
}

.icon-rt-right-quotes-symbol:before {
	content: "\e990";
}

.icon-rt-arrow-left-solid:before {
	content: "\e991";
}

.icon-rt-arrow-right-solid:before {
	content: "\e992";
}

.icon-rt-cauliflower:before {
	content: "\e993";
}

.icon-rt-bread:before {
	content: "\e994";
}

.icon-rt-meat:before {
	content: "\e995";
}

.icon-rt-anise-candy:before {
	content: "\e996";
}

.icon-rt-snowflake:before {
	content: "\e997";
}

.icon-rt-coffee-cup:before {
	content: "\e998";
}

.icon-rt-almond:before {
	content: "\e999";
}

.icon-rt-egg:before {
	content: "\e99a";
}

.icon-rt-Search:before {
	content: "\e99b";
}

.icon-rt-FullShoppingCart:before {
	content: "\e99c";
}

.icon-rt-ShoppingCart:before {
	content: "\e99d";
}

.icon-rt-Heart:before {
	content: "\e99e";
}

.icon-rt-MusicMixer:before {
	content: "\e99f";
}

.icon-rt-Eye:before {
	content: "\e9a0";
}

.icon-rt-Blog:before {
	content: "\e9a1";
}

.icon-rt-Agenda:before {
	content: "\e9a2";
}

.icon-rt-Edit:before {
	content: "\e9a3";
}

.icon-rt-Settings:before {
	content: "\e9a4";
}

.icon-rt-Mouse:before {
	content: "\e9a5";
}

.icon-rt-android-arrow-dropleft-circle:before {
	content: "\e9a6";
}

.icon-rt-android-arrow-dropright-circle:before {
	content: "\e9a7";
}

.icon-rt-logo-tiktok:before {
	content: "\e9a8";
}
#header-menu .nav_links a{
	font-family: "Rubik", sans-serif !important;
	font-weight: 500 !important;
	font-size: 14px !important;
}
.icon-rt-search:hover{
	color: #e0afa0;
}
