/* style switcher */

:root {
	--toolbar-font: var(--ambed-font);
	--toolbar-border-radius: 0px;
	--toolbar-letter-spacing: 0;
	--toolbar-black: var(--ambed-black);
	--toolbar-primary: var(--main-color-two);
}

.style-switcher {
	font-family: var(--toolbar-font);
	position: fixed;
	top: 65%;
	right: -180px;
	z-index: 99999;
	background: #f3f4f5;
	width: 180px;
	text-align: center;
	box-shadow: rgb(14 30 37 / 12%) 0px 2px 4px 0px, rgb(14 30 37 / 14%) 0px 2px 16px 0px;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 10px;
	padding-right: 10px;
	transform: translateX(-100%);
	transition: transform 500ms ease;
	border-top-right-radius: var(--toolbar-border-radius);
	border-bottom-right-radius: var(--toolbar-border-radius);
	transform: translateX(0%);
}

.style-switcher.active {
	transform: translateX(-100%);
}

.style-switcher h3 {
	margin: 0;
	text-transform: uppercase;
	color: var(--white-color);
	font-size: 16px;
	letter-spacing:
	var(--toolbar-letter-spacing);
	line-height: 1;
	font-family:
	var(--toolbar-font);
	margin-bottom: 15px;
	font-weight: 800;
}

.style-switcher .layout-feature,
.style-switcher .language-feature {
	/* display: grid; */
	/* grid-gap: 10px; */
	/* grid-template-columns: 1fr 1fr; */
	margin-top: 15px;
}
.style-switcher .layout-feature img{
    margin: 0 5px;
    width: 20px;
}
.style-switcher .layout-feature button,
.style-switcher .layout-feature a,
.style-switcher .language-feature button {
	border: none;
	outline: none;
	font-family: var(--toolbar-font);
	text-transform: uppercase;
	color: #fff;
	letter-spacing: var(--toolbar-letter-spacing);
	font-size: 12px;
	font-weight: 700;
	border-radius: var(--toobar-border-radius);
	background: #000;
	width: 100%;
	margin-bottom: 10px;
}

.style-switcher .layout-feature a:nth-child(odd),
.style-switcher .layout-feature button:nth-child(odd),
.style-switcher .language-feature button.rtl-switcher {
	background-color: var(--main-color-two);
	color: #111;
	display: inline-block;
	text-align: center;
	font-size: 15px;
}

/* .style-switcher .layout-feature button:last-child {
	grid-column-start: 1;
	 grid-column-end: 3;
} */

#switcher-toggler {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 90%;
	font-size: 15px;
	color: #fff;
	width: 120px;
	height: 40px;
    background: #222;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 500ms;
	transform: rotate(90deg);
	border-radius: 10px;
}

#switcher-toggler:hover {
	color: #fff;
	background-color: #CB2027;
}

#styleOptions {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-gap: 15px;
	grid-template-columns: 1fr 1fr 1fr;
}

#styleOptions li {
	width: 100%;
	height: 46.6667px;
	border-radius: 50%;
	overflow: hidden;
}

#styleOptions li a {
	display: block;
	width: 100%;
	height: 100%;
}

/* lang bar  */

.skiptranslate {
	display: none !important;
}
.style-switcher h5{
	margin: 10px;
	text-align: center;
	color: var(--white);
}
.style-switcher ul.social-icon{
	display: flex;
	border: 0 !important;
	list-style: none;
	width: 100%;
	justify-content: center;
}
.style-switcher ul.social-icon li a{
	color: #fff;
	width: 3.375rem;
	height: 3.375rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	margin: 0 10px;
}
.style-switcher ul.social-icon li a i{
	font-size: 24px;
	display: block;
	position: relative;
	border: 0 !important;
}
.layout-feature  a i{
	
margin: 0 10px;
	
font-size: 16px;
}
/* body fix */

body {
	top: auto !important;
}

.float-social{
    position: fixed;
    right: 25px;
    top: 50%;
    z-index: 999999999;
    list-style: none;
    padding: 0;
    margin: 0;
    width: max-content;
}
.float-social li{
    margin: 14px 0px;
    width: 30px;
    height: 30px;
}
.float-social li i{
    font-size: 26px;
}

.hvr-float-shadow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgb(0 0 0 / 0%);
    position: relative;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}
.hvr-float-shadow:active, .hvr-float-shadow:focus, .hvr-float-shadow:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}