/*------------------------------------*\
	#MENU / MENÜ
	Navigasyon menüsü stilleri - Dil switcher ve menü öğeleri
\*------------------------------------*/
.language-switcher {
  position: relative;
  margin-left: 16px;
  z-index: 2200;
}
.language-switcher #languageDropdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid #ededed;
  background: #fff;
  color: #222;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 9px rgba(0,0,0,0.06);
  white-space: nowrap;
  min-width: 84px;
  font-size: 15px;
  transition: all .14s;
}
.language-switcher #languageDropdown:hover {
  background: #eceffd;
  border-color: #b6cbe7;
  color: #193675;
  box-shadow: 0 3px 10px rgba(38,72,168,0.09);
}
.language-switcher .dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: auto;
  min-width: 135px;
  border-radius: 7px;
  margin-top: 0;
  background: #fff;
  box-shadow: 0 8px 32px rgba(31,35,55,0.16);
  border: 1px solid #e7eaf2;
  padding: 0;
  z-index: 2250;
  font-size: 15px;
  overflow: hidden;
  display: none;
}
@media (min-width: 1181px) {
  .language-switcher:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.language-switcher .dropdown-menu.show { display:block; }
.language-switcher .dropdown-menu li a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  color: #2f3958;
  background: none;
  border: 0;
  white-space: nowrap;
  font-size: 14px;
  transition: background .13s, color .13s;
}
.language-switcher .dropdown-menu li a:hover {
  background: #f5f7fb;
  color: #195385;
}
@media (max-width:1181px) {
  .language-switcher {
    margin-left: 0;
    margin-top: 9px;
  }
  .language-switcher #languageDropdown {
    width: 98%;
    min-width: 78px;
  }
  .language-switcher .dropdown-menu{
    min-width: 90px;
    position: absolute;
    top: calc(100% + 6px);
  }
}
.genislik-container{

	width: 100% !important;
	max-width: 100% !important;
}
.navbar {
	margin-bottom     : 0;
	border-radius     : 0;
	min-height        : 80px;
	border            : none;
	z-index           : 55555;
	padding           : 0;
	-webkit-transition: all 300ms ease-in-out;
	-o-transition     : all 300ms ease-in-out;
	transition        : all 300ms ease-in-out;
}



.navbar.navbar-bordered {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 1181px) {

	.navbar.navbar-sticky,
	.navbar.navbar.navbar-fixed {
		border-color: rgba(0, 0, 0, 0.1);
	}
}

.navbar .navbar-nav>li {
	margin-right: 30px;
	position    : relative;
}

.navbar .navbar-nav>li:last-child {
	margin-right: 0;
}

.navbar .navbar-nav>li>a {
	font-family   : "Roboto", sans-serif;
	font-size     : 15px;
	text-transform: capitalize;
	font-weight   : 700;
	line-height   : 100px;
	color         : #ffffff;
	padding       : 0;
	position      : relative;
	display       : block;
}

.navbar .navbar-nav>li>a:before {
	position                : absolute;
	bottom                  : 0;
	left                    : 0;
	margin                  : auto;
	width                   : 100%;
	height                  : 3px;
	background              : #ffffff;
	content                 : "";
	-webkit-transition      : -webkit-transform 1s cubic-bezier(0.2, 1, 0.3, 1);
	transition              : -webkit-transform 1s cubic-bezier(0.2, 1, 0.3, 1);
	-o-transition           : transform 1s cubic-bezier(0.2, 1, 0.3, 1);
	transition              : transform 1s cubic-bezier(0.2, 1, 0.3, 1);
	transition              : transform 1s cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 1s cubic-bezier(0.2, 1, 0.3, 1);
	-webkit-transform-origin: 100% 50%;
	-ms-transform-origin    : 100% 50%;
	transform-origin        : 100% 50%;
	-webkit-transform       : scale3d(0, 1, 1);
	transform               : scale3d(0, 1, 1);
}

.navbar .navbar-nav>li.active>a::before,
.navbar .navbar-nav>li:hover a::before {
	-webkit-transform       : scale3d(1, 1, 1);
	transform               : scale3d(1, 1, 1);
	-webkit-transform-origin: 0 50%;
	-ms-transform-origin    : 0 50%;
	transform-origin        : 0 50%;
}

.navbar.navbar-light .navbar-nav>li>a {
	color: #1b1a1a;
}

.navbar.navbar-light .navbar-nav>li>a::before {
	background-color: #5f2e88;
	height          : 2px;
}

@media screen and (max-width: 1181px) {
	.navbar.navbar-light .navbar-nav>li>a::before {
		content: unset;
	}
}

.navbar.navbar-light .module-language .selected span,
.navbar.navbar-light .module-language .selected i {
	color: #1b1a1a;
}

.navbar.navbar-light .module-search .search-icon i {
	color: #1b1a1a;
}

.navbar .navbar-brand {
	margin-right  : 0;
	padding-top   : 0;
	padding-bottom: 0;
}

.navbar.navbar-fixed {
	position          : fixed;
	top               : 0;
	right             : 0;
	left              : 0;
	background        : #ffffff;
	-webkit-animation : fadeInDown 1s ease-in-out;
	animation         : fadeInDown 1s ease-in-out;
	-webkit-box-shadow: 0 2px 4px rgba(3, 27, 78, 0.1);
	box-shadow        : 0 2px 4px rgba(3, 27, 78, 0.1);
}

.navbar.navbar-fixed .navbar-brand .logo-dark {
	display: inline-block;
}

.navbar.navbar-fixed .navbar-brand .logo-light {
	display: none;
}

.navbar.navbar-fixed .navbar-nav>li>a {
	color: #1b1a1a;
}

.navbar.navbar-fixed .navbar-nav>li>a::before {
	background-color: #5f2e88;
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity          : 0;
		-webkit-transform: translateY(-200px);
		transform        : translateY(-200px);
	}

	100% {
		opacity          : 1;
		-webkit-transform: translateY(0);
		transform        : translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity          : 0;
		-webkit-transform: translateY(-200px);
		transform        : translateY(-200px);
	}

	100% {
		opacity          : 1;
		-webkit-transform: translateY(0);
		transform        : translateY(0);
	}
}

.navbar-nav>li.active>ul {
	margin-top: 0;
}

/* Menu Level #1 */
.dropdown-toggle::after {
	display: none;
}

li.has-dropdown>ul.dropdown-menu>li.dropdown-submenu>a:before,
ul.dropdown-menu>li.has-dropdown>a:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	content    : "\f105";
	font-size  : 13px;
	position   : absolute;
	right      : 25px;
}

/* Menu Levels */
.dropdown-menu {
	background-color  : transparent;
	position          : relative;
	width             : 100%;
	border            : none;
	margin            : 0;
	border-radius     : 0;
	-webkit-box-shadow: none;
	box-shadow        : none;
}

@media screen and (min-width: 1181px) {
	.navbar.navbar-dark {
		background-color: #1b1a1a;
	}
}

.navbar.navbar-dark.navbar-fixed .module-social a {
	color: #ffffff;
}

.navbar.navbar-dark.navbar-fixed .module-social a:hover {
	color: #5f2e88;
}

.navbar.navbar-dark .module .module-icon i {
	color: #ffffff;
}

@media screen and (min-width: 1181px) {
	.navbar.navbar-dark .navbar-nav>li>a {
		color: #ffffff;
	}

	.navbar.navbar-dark .navbar-nav>li>a:hover {
		color: #5f2e88;
	}

	.navbar.navbar-dark .navbar-nav>li.active>a,
	.navbar.navbar-dark .navbar-nav>li:hover>a {
		color: #ffffff;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width: 1181px) {

	.navbar-sticky,
	.navbar.navbar-fixed {
		background        : #ffffff;
		-webkit-box-shadow: none;
		box-shadow        : none;
	}

	.navbar .navbar-brand .logo-light {
		display: none;
	}

	.navbar .navbar-brand .logo-dark {
		display: block;
	}

	.navbar .navbar-toggler {
		display           : -webkit-box;
		display           : -ms-flexbox;
		display           : flex;
		-webkit-box-pack  : center;
		-ms-flex-pack     : center;
		justify-content   : center;
		-webkit-box-align : center;
		-ms-flex-align    : center;
		align-items       : center;
		width             : 30px;
		height            : 30px;
		-webkit-transition: 0.3s ease-in-out;
		-o-transition     : 0.3s ease-in-out;
		transition        : 0.3s ease-in-out;
		border            : 0;
		padding           : 0;
		cursor            : pointer;
		border-radius     : 0;
		margin-right      : 30px;
	}

	/* Prevent overflow and keep mobile menu left-aligned */
	.navbar .navbar-nav{
		margin-left: 0 !important;
		justify-content: flex-start !important;
	}

	body{
		overflow-x: hidden;
	}
}

/* Force mobile stacking between 992px and 1180px even with navbar-expand-lg */
@media only screen and (min-width: 992px) and (max-width: 1180px) {
	.navbar-expand-lg .navbar-toggler {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}

	.navbar-expand-lg .navbar-collapse {
		display: none !important;
	}

	.navbar-expand-lg .navbar-collapse.show {
		display: block !important;
	}

	.navbar-expand-lg .navbar-nav {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
		width: 100% !important;
		margin-left: 0 !important;
	}

	.navbar-expand-lg .navbar-nav > li,
	.navbar-expand-lg .navbar-nav > li > a {
		width: 100% !important;
	}
}

@media only screen and (max-width: 1181px) and (min-width: 1181px) {
	.navbar .navbar-toggler {
		display: none;
	}
}

@media only screen and (max-width: 1181px) {
	.navbar .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
		background-color: transparent;
	}

	.navbar .navbar-toggler:not(.collapsed) .navbar-toggler-icon:before,
	.navbar .navbar-toggler:not(.collapsed) .navbar-toggler-icon:after {
		top: 0;
	}

	.navbar .navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
		-webkit-transform: rotate(45deg);
		-ms-transform    : rotate(45deg);
		transform        : rotate(45deg);
	}

	.navbar .navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
		-webkit-transform: rotate(-45deg);
		-ms-transform    : rotate(-45deg);
		transform        : rotate(-45deg);
	}

	.navbar .navbar-toggler .navbar-toggler-icon {
		background-color  : #1b1a1a;
		width             : 100%;
		height            : 2px;
		position          : relative;
		-webkit-transition: 0.3s ease-in-out;
		-o-transition     : 0.3s ease-in-out;
		transition        : 0.3s ease-in-out;
	}

	.navbar .navbar-toggler .navbar-toggler-icon::before,
	.navbar .navbar-toggler .navbar-toggler-icon::after {
		content           : '';
		position          : absolute;
		left              : 0;
		height            : 2px;
		width             : 100%;
		background-color  : #1b1a1a;
		-webkit-transition: 0.3s ease-in-out;
		-o-transition     : 0.3s ease-in-out;
		transition        : 0.3s ease-in-out;
	}

	.navbar .navbar-toggler .navbar-toggler-icon::before {
		top: -10px;
	}

	.navbar .navbar-toggler .navbar-toggler-icon::after {
		top: 10px;
	}

	.navbar .navbar-collapse {
		position          : absolute;
		left              : 0;
		top               : 100%;
		width             : 100%;
		background-color  : #ffffff;
		padding           : 15px;
		opacity           : 0;
		visibility        : hidden;
		-webkit-transform : translateY(20px);
		-ms-transform     : translateY(20px);
		transform         : translateY(20px);
		-webkit-transition: 0.3s linear;
		-o-transition     : 0.3s linear;
		transition        : 0.3s linear;
		z-index           : 9999;
		box-shadow        : 0 4px 15px rgba(0,0,0,0.1);
	}

	.navbar .navbar-collapse.show {
		visibility       : visible !important;
		opacity          : 1 !important;
		-webkit-transform: translateY(0px) !important;
		-ms-transform    : translateY(0px) !important;
		transform        : translateY(0px) !important;
		display          : block !important;
	}

	.navbar.navbar-bordered .navbar-collapse {
		top: calc(100% + 1px);
	}

	

	.navbar .navbar-nav>li {
		margin-right: 0;
	}

	.navbar .navbar-nav>li>a,
	.navbar .navbar-nav>li.active>a {
		line-height: 36px;
		color      : #1b1a1a;
		display    : block;
	}

	.navbar .menu-item::before {
		display: none;
	}

	.navbar .has-dropdown>.dropdown-menu {
		-webkit-transition: 0.3s ease-in-out;
		-o-transition     : 0.3s ease-in-out;
		transition        : 0.3s ease-in-out;
	}

	.navbar .has-dropdown::after {
		font-family       : "Font Awesome 5 Free";
		font-weight       : 700;
		content           : "\f107";
		display           : -webkit-box;
		display           : -ms-flexbox;
		display           : flex;
		-webkit-box-pack  : center;
		-ms-flex-pack     : center;
		justify-content   : center;
		-webkit-box-align : center;
		-ms-flex-align    : center;
		align-items       : center;
		font-size         : 14px;
		position          : absolute;
		right             : 0;
		top               : 5px;
		color             : #ffffff;
		background-color  : #5f2e88;
		width             : 25px;
		height            : 25px;
		-webkit-transition: all 300ms ease-in-out;
		-o-transition     : all 300ms ease-in-out;
		transition        : all 300ms ease-in-out;
		z-index           : 1;
		cursor            : pointer;
	}

	.navbar .has-dropdown::after:hover {
		background-color: #1b1a1a;
	}

	.navbar .has-dropdown.show::after {
		content: '\f106';
		background-color: #1b1a1a;
	}

	.navbar .dropdown-menu.show {
		border-top   : 1px solid rgba(0, 0, 0, 0.1);
		padding-top  : 10px;
		border-radius: 0;
		display      : block !important;
		visibility   : visible !important;
		opacity      : 1 !important;
	}

	.navbar .dropdown-menu li {
		line-height: 26px;
	}

	.navbar .dropdown-menu li a {
		padding-left  : 20px;
		color         : #1b1a1a;
		font-size     : 15px;
		display       : block;
		text-transform: capitalize;
	}

	.navbar .show>.dropdown-menu {
		display: block;
	}

	.navbar .dropdown-submenu.show .dropdown-menu {
		display: block;
	}

	.navbar .dropdown-submenu .dropdown-menu {
		padding-left: 20px;
	}

	.navbar li.has-dropdown.mega-dropdown>.dropdown-menu .row .menu-head {
		font-size     : 14px;
		font-family   : "Roboto", sans-serif;
		font-weight   : 700;
		color         : "Rubik", sans-serif;
		text-transform: capitalize;
		margin-bottom : 15px;
	}

	/* Header Modifers */
	.navbar.navbar-light .navbar-nav>li>a {
		color: #1b1a1a;
	}

	.navbar-light:not(.navbar-fixed) .navbar-toggler {
		color       : #ffffff;
		border-color: #ffffff;
	}

	.navbar-light:not(.navbar-fixed) .navbar-toggler-icon {
		background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,225, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
	}

	.navbar-dark .navbar-toggler,
	.navbar-light.navbar-fixed .navbar-toggler {
		color       : #222;
		border-color: #222;
	}

	.navbar-dark .navbar-toggler-icon,
	.navbar-light.navbar-fixed .navbar-toggler-icon {
		background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(34,34,34, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
	}
}

/* Large Devices, Wide Screens */
@media only screen and (min-width: 1181px) and (max-width: 1200px) {
	.navbar-nav>li {
		margin-right: 16px;
	}

	.module .module-icon,
	.module-consultation .btn {
		margin-right: 0;
	}
}

@media only screen and (min-width: 1181px) {
	.navbar-collapse {
		padding-right: 0;
		padding-left : 0;
	}

	

	.navbar-nav>li.has-dropdown>ul.dropdown-menu {
		background-color        : white;
		-webkit-transition      : all 300ms linear;
		-o-transition           : all 300ms linear;
		transition              : all 300ms linear;
		opacity                 : 0;
		visibility              : hidden;
		position                : absolute;
		left                    : 0;
		right                   : auto;
		-webkit-transform-origin: left top;
		-ms-transform-origin    : left top;
		transform-origin        : left top;
		-webkit-transform       : translateY(20px);
		-ms-transform           : translateY(20px);
		transform               : translateY(20px);
		display                 : block;
		width                   : 245px;
		min-width               : 220px;
		padding                 : 27px 0;
		background-color        : white;
	}

	.navbar-nav>li.has-dropdown>ul.dropdown-menu::after {
		content          : '';
		position         : absolute;
		bottom           : 0;
		left             : 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform    : translateX(-50%);
		transform        : translateX(-50%);
		width            : calc(100% - 80px);
		height           : 3px;
		background-color : #5f2e88;
	}

	.navbar-nav>li.has-dropdown>ul.dropdown-menu>li {
		padding-right : 0;
		position      : relative;
		vertical-align: top;
	}

	.navbar-nav>li.has-dropdown>ul.dropdown-menu li {
		padding: 0px 40px;
	}

	.navbar-nav>li.has-dropdown>ul.dropdown-menu li:last-of-type a {
		border-bottom: 0;
	}

	.navbar-nav>li.has-dropdown>ul.dropdown-menu li.current a {
		background-color: transparent;
		color           : #5f2e88;
		padding-left    : 22px;
	}

	.navbar-nav>li.has-dropdown>ul.dropdown-menu li.current a::before {
		opacity          : 1;
		visibility       : visible;
		-webkit-transform: translateX(0px);
		-ms-transform    : translateX(0px);
		transform        : translateX(0px);
	}

	.navbar-nav>li.has-dropdown>ul.dropdown-menu li a {
		position          : relative;
		font-family       : "Roboto", sans-serif;
		line-height       : 36px;
		color             : #9b9b9b;
		padding           : 0;
		display           : block;
		font-size         : 14px;
		font-weight       : 400;
		-webkit-transition: all 300ms;
		-o-transition     : all 300ms;
		transition        : all 300ms;
		text-transform    : capitalize;
		border-bottom     : 1px solid #eaeaea;
	}

	.navbar-nav>li.has-dropdown>ul.dropdown-menu li a:active,
	.navbar-nav>li.has-dropdown>ul.dropdown-menu li a:focus,
	.navbar-nav>li.has-dropdown>ul.dropdown-menu li a:hover {
		background-color: transparent;
		color           : #5f2e88;
		padding-left    : 22px;
	}

	.navbar-nav>li.has-dropdown>ul.dropdown-menu li a:active::before,
	.navbar-nav>li.has-dropdown>ul.dropdown-menu li a:focus::before,
	.navbar-nav>li.has-dropdown>ul.dropdown-menu li a:hover::before {
		opacity          : 1;
		visibility       : visible;
		-webkit-transform: translateX(0px);
		-ms-transform    : translateX(0px);
		transform        : translateX(0px);
	}

	.navbar-nav>li.has-dropdown>ul.dropdown-menu li a::before {
		font-family       : "icomoon";
		content           : "\e901";
		font-weight       : 700;
		-webkit-transition: all 300ms;
		-o-transition     : all 300ms;
		transition        : all 300ms;
		font-size         : 11px;
		position          : absolute;
		left              : 0px;
		opacity           : 0;
		visibility        : hidden;
		-webkit-transform : translateX(-8px);
		-ms-transform     : translateX(-8px);
		transform         : translateX(-8px);
	}

	.navbar-nav>li.has-dropdown>ul.dropdown-menu li.current>a {
		color: #5f2e88;
	}

	.navbar-nav>li.has-dropdown:hover>ul.dropdown-menu {
		opacity          : 1;
		visibility       : visible;
		-webkit-transform: translateY(0);
		-ms-transform    : translateY(0);
		transform        : translateY(0);
		z-index          : 100;
		display          : block;
	}

	.navbar-nav li ul.dropdown-menu.left {
		left       : -650px !important;
		margin-left: 0 !important;
	}

	.navbar-nav li.has-dropdown.mega-dropdown>.dropdown-menu {
		background-color: #ffffff;
		padding         : 0;
		width           : 510px;
	}

	.navbar-nav li.has-dropdown.mega-dropdown>.dropdown-menu li {
		padding-left : 0;
		padding-right: 0;
	}

	.navbar-nav li.has-dropdown.mega-dropdown>.dropdown-menu .row {
		background-color: #ffffff;
		margin-right    : 0;
		margin-left     : 0;
		padding         : 35px 23px;
	}

	.navbar-nav li.has-dropdown.mega-dropdown>.dropdown-menu .row .menu-head {
		font-size     : 14px;
		font-family   : "Rubik", sans-serif;
		font-weight   : 700;
		color         : "Rubik", sans-serif;
		text-transform: capitalize;
		margin-bottom : 15px;
	}

	.navbar-nav li.has-dropdown.mega-dropdown>.dropdown-menu .row ul {
		margin : 0;
		padding: 0;
	}

	.navbar-nav li.has-dropdown.mega-dropdown>.dropdown-menu .row ul li {
		line-height: 2.5;
	}

	.navbar-nav li.has-dropdown.mega-dropdown>.dropdown-menu .row ul li.title {
		color         : #1b1a1a;
		font-size     : 13px;
		font-weight   : 600;
		text-transform: capitalize;
	}

	.navbar-nav li.has-dropdown.mega-dropdown>.dropdown-menu .row ul li a {
		margin: 0;
	}

	.navbar-nav.ml-auto.mr-auto li.has-dropdown.mega-dropdown {
		position: absolute;
	}

	.navbar-nav.ml-auto:not(.mr-auto) li.has-dropdown.mega-dropdown {
		position: relative;
	}

	/* Menu Level #2 */
	li.has-dropdown>ul.dropdown-menu>li.dropdown-submenu>ul.dropdown-menu {
		background-color  : #ffffff;
		padding           : 15px 0 10px;
		-webkit-transition: all 300ms linear;
		-o-transition     : all 300ms linear;
		transition        : all 300ms linear;
		opacity           : 0;
		-webkit-transform : translateX(10%);
		-ms-transform     : translateX(10%);
		transform         : translateX(10%);
		visibility        : hidden;
		display           : block;
		position          : absolute;
		left              : 100%;
		right             : auto;
		top               : 0;
		margin            : -1px 0 0;
		z-index           : 1001;
	}

	li.has-dropdown>ul.dropdown-menu>li.dropdown-submenu:hover>ul.dropdown-menu {
		visibility        : visible;
		-webkit-transform : translateX(0);
		-ms-transform     : translateX(0);
		transform         : translateX(0);
		opacity           : 1;
		z-index           : 1001;
		margin-top        : -1px;
		margin-left       : 0;
		-webkit-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.1);
		box-shadow        : 0 2px 3px rgba(40, 40, 40, 0.1);
	}

	li.dropdown-submenu.pull-left>ul.dropdown-menu {
		left        : auto;
		right       : 0;
		margin-right: 0;
	}

	/* Menu Level #3 */
	li.dropdown-submenu>ul.dropdown-menu>li.has-dropdown>ul.dropdown-menu {
		background-color: #1b1a1a;
		float           : none;
		position        : absolute;
		border-radius   : 0;
		left            : 100%;
		right           : auto;
		top             : 0;
		margin          : -1px 0 0;
		z-index         : 1;
		border          : 1px solid #eaeaea;
		padding         : 13px 0;
	}

	li.dropdown-submenu>ul.dropdown-menu>li.has-dropdown>ul.dropdown-menu.left {
		left: -185px !important;
	}
}

/*------------------------------------*\
		#MODULE
\*------------------------------------*/
.module-container {
	padding-left     : 30px;
	display          : -webkit-box;
	display          : -ms-flexbox;
	display          : flex;
	-webkit-box-align: center;
	-ms-flex-align   : center;
	align-items      : center;
	height           : 100px;
}

@media screen and (max-width: 1181px) {
	.module-container {
		display              : none;
		height               : auto;
		-webkit-box-orient   : vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction   : column;
		flex-direction       : column;
		-webkit-box-align    : start;
		-ms-flex-align       : start;
		align-items          : flex-start;
	}
}

.module {
	display : inline-block;
	position: relative;
}

.module span.title {
	display: none;
}

.module .module-icon {
	margin-right: 20px;
	cursor      : pointer;
}

.module .module-icon i {
	font-size  : 14px;
	line-height: 24px;
	color      : #ffffff;
}

.module:last-of-type .module-icon {
	margin-right: 0;
}

.module .menu-icon-double i {
	margin-left: 30px;
}

.module .module-label {
	width           : 16px;
	height          : 16px;
	line-height     : 16px;
	border-radius   : 50%;
	background-color: #5f2e88;
	color           : #ffffff;
	font-size       : 10px;
	font-weight     : 400;
	text-align      : center;
	position        : absolute;
	top             : 34px;
	left            : 8px;
}

.module .module-content {
	height            : 0;
	opacity           : 0;
	-webkit-transition: all 350ms linear;
	-o-transition     : all 350ms linear;
	transition        : all 350ms linear;
}

.module .module-content.module-fullscreen {
	height            : 100%;
	opacity           : 1;
	-webkit-transition: all 600ms ease-in-out;
	-o-transition     : all 600ms ease-in-out;
	transition        : all 600ms ease-in-out;
}

.module .module-box {
	position          : absolute;
	display           : block;
	-webkit-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.1);
	box-shadow        : 0 2px 3px rgba(40, 40, 40, 0.1);
	background-color  : #1b1a1a;
	opacity           : 0;
	visibility        : hidden;
	-webkit-transition: all 100ms linear;
	-o-transition     : all 100ms linear;
	transition        : all 100ms linear;
	right             : 0;
	width             : 290px;
	border-radius     : 6px;
	padding           : 30px;
	z-index           : 99;
	-webkit-transform : translateY(10%);
	-ms-transform     : translateY(10%);
	transform         : translateY(10%);
	height            : 0;
	margin-top        : 1px;
}

.module .widget-contact-info {
	padding-bottom: 18px;
}

.module .widget-contact-info ul {
	-webkit-transform: translateY(-5px);
	-ms-transform    : translateY(-5px);
	transform        : translateY(-5px);
}

.module .widget-contact-info ul li {
	font-size     : 14px;
	font-weight   : 400;
	text-transform: capitalize;
	font-family   : "Roboto", sans-serif;
	line-height   : 23px;
	color         : #a5a5a5;
}

.module .widget-contact-info ul li:first-of-type {
	margin-bottom: 12px;
}

/* Module Fullscreen */
.module-fullscreen {
	left              : 0;
	top               : 0;
	right             : 0;
	z-index           : 99;
	display           : block;
	height            : 100%;
	width             : 100%;
	opacity           : 0;
	visibility        : hidden;
	-webkit-transform : scale(0);
	-ms-transform     : scale(0);
	transform         : scale(0);
	-webkit-transition: 360ms linear;
	-o-transition     : 360ms linear;
	transition        : 360ms linear;
	background-color  : #ffffff;
	position          : fixed;
}

.module-fullscreen .container {
	display           : none;
	-webkit-transition: all 100ms linear;
	-o-transition     : all 100ms linear;
	transition        : all 100ms linear;
}

.module-fullscreen .module-cancel {
	top              : 50px;
	left             : 50%;
	border-radius    : 5px;
	-webkit-transform: translateX(-50%);
	-ms-transform    : translateX(-50%);
	transform        : translateX(-50%);
	position         : absolute;
	width            : 50px;
	height           : 50px;
	font-size        : 14px;
	font-weight      : 700;
	text-transform   : uppercase;
	color            : #ffffff;
	background-color : #5f2e88;
	display          : -webkit-box;
	display          : -ms-flexbox;
	display          : flex;
	-webkit-box-pack : center;
	-ms-flex-pack    : center;
	justify-content  : center;
	-webkit-box-align: center;
	-ms-flex-align   : center;
	align-items      : center;
}

.module-fullscreen.fullscreen-light {
	background-color: #ffffff;
}

.module-active .module-fullscreen {
	-webkit-transform: scale(1);
	-ms-transform    : scale(1);
	transform        : scale(1);
	visibility       : visible;
	opacity          : 1;
}

.module-active .container {
	display: block;
}

.module-active .module-box {
	opacity          : 1;
	visibility       : visible;
	display          : block;
	-webkit-transform: translateY(0px);
	-ms-transform    : translateY(0px);
	transform        : translateY(0px);
	height           : inherit;
}

/* Module SideArea*/
.module-sidearea .module-sidearea-wrap {
	background-color        : #ffffff;
	padding                 : 106px 40px 40px 40px;
	height                  : 100%;
	width                   : 370px;
	position                : fixed;
	z-index                 : 9999;
	top                     : 0;
	right                   : 0;
	opacity                 : 1;
	visibility              : visible;
	display                 : block;
	overflow-x              : hidden;
	-webkit-transition      : 500ms ease-in-out;
	-o-transition           : 500ms ease-in-out;
	transition              : 500ms ease-in-out;
	-webkit-transition-delay: 300ms;
	-o-transition-delay     : 300ms;
	transition-delay        : 300ms;
	-webkit-transform       : translateX(370px);
	-ms-transform           : translateX(370px);
	transform               : translateX(370px);
	-webkit-box-shadow      : 0 9px 30px rgba(40, 40, 40, 0.15);
	box-shadow              : 0 9px 30px rgba(40, 40, 40, 0.15);
}

.module-sidearea .module-sidearea-wrap::-webkit-scrollbar {
	display: none;
}

.module-sidearea .module-sidearea-wrap .sidearea-header {
	margin-bottom: 28px;
}

.module-sidearea .module-sidearea-wrap .sidearea-header .logo {
	width        : 100px;
	margin-bottom: 30px;
	display      : block;
}

.module-sidearea .module-sidearea-wrap .sidearea-header .logo img {
	max-width: 100%;
}

.module-sidearea .module-sidearea-wrap .sidearea-header p {
	font-family: "Rubik", sans-serif;
	color      : #a5a5a5;
	font-size  : 13px;
	font-weight: 400;
	line-height: 25px;
}

.module-sidearea .module-sidearea-wrap .sidearea-body {
	margin-bottom: 42px;
}

.module-sidearea .module-sidearea-wrap .sidearea-body .widget {
	background   : transparent;
	border-radius: 0;
	padding      : 0;
}

.module-sidearea .module-sidearea-wrap .sidearea-footer .social-share a {
	line-height       : 32px;
	font-size         : 17px;
	font-weight       : 400;
	color             : #333333;
	text-align        : center;
	display           : inline-block;
	background-color  : transparent;
	margin-right      : 18px;
	-webkit-transition: all 400ms ease-in-out;
	-o-transition     : all 400ms ease-in-out;
	transition        : all 400ms ease-in-out;
}

.module-sidearea .module-sidearea-wrap .sidearea-footer .social-share a:last-of-type {
	margin-right: 0;
}

.module-sidearea .module-sidearea-wrap .sidearea-footer .social-share a:hover {
	color: #5f2e88;
}

.module-sidearea .module-sidearea-wrap .sidearea-footer .copywright {
	font-size  : 12px;
	font-weight: 400;
	line-height: 24px;
	color      : #9b9b9b;
}

.module-sidearea .sidearea-overlay::before {
	content           : "";
	position          : fixed;
	top               : 0;
	left              : auto;
	right             : -100%;
	width             : 100%;
	height            : 100%;
	background-color  : rgba(0, 0, 0, 0.9);
	z-index           : 2000;
	visibility        : hidden;
	opacity           : 0;
	-webkit-transition: 500ms ease-in-out;
	-o-transition     : 500ms ease-in-out;
	transition        : 500ms ease-in-out;
}

.module-sidearea .module-cancel {
	position   : absolute;
	right      : 40px;
	top        : 45px;
	height     : 9px;
	line-height: 9px;
	font-size  : 12px;
	color      : #5f2e88;
	z-index    : 3;
}

.module-active .module-sidearea-wrap {
	-webkit-transform: translateX(0);
	-ms-transform    : translateX(0);
	transform        : translateX(0);
}

/* Module Search */
@media screen and (max-width: 1181px) {
	.module-search .module-icon i {
		margin-right: 5px;
	}
}

.module-search.module-search-2 .form-search {
	margin-bottom: 0;
	display      : -webkit-box;
	display      : -ms-flexbox;
	display      : flex;
}

.module-search.module-search-2 .form-search button::before {
	position          : absolute;
	content           : "\e906";
	top               : 0;
	right             : 0;
	color             : #ffffff;
	font-family       : "icomoon";
	font-size         : 24px;
	font-weight       : 400;
	line-height       : 70px;
	z-index           : 999;
	cursor            : pointer;
	font-size         : 17px;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition     : 0.3s ease-in-out;
	transition        : 0.3s ease-in-out;
}

.module-search.module-search-2 .form-search button::before:hover {
	opacity: 0.8;
}

.module-search.module-search-2 .form-search .form-control {
	height       : 70px;
	border       : 0;
	margin-bottom: 0;
	padding      : 20px 30px;
	font-size    : 13px;
	color        : #9b9b9b;
}

.module-search.module-search-2 .form-search .form-control::-webkit-input-placeholder {
	color      : #9b9b9b;
	font-family: "Rubik", sans-serif;
	font-size  : 13px;
}

.module-search.module-search-2 .form-search .form-control::-moz-placeholder {
	color      : #9b9b9b;
	font-family: "Rubik", sans-serif;
	font-size  : 13px;
}

.module-search-box .module-cancel {
	color: #ffffff;
}

.module-search-box .form-search {
	margin-bottom: 0;
}

.module-search-box .form-search button::before {
	position   : absolute;
	left       : 0;
	top        : 0;
	content    : "\e906";
	color      : #1b1a1a;
	font-family: "icomoon";
	font-size  : 24px;
	font-weight: 400;
	line-height: 70px;
	z-index    : 999;
	cursor     : pointer;
}

.module-search-box .form-control {
	position          : relative;
	color             : #ffffff;
	font-family       : "Rubik", sans-serif;
	font-size         : 35px;
	font-weight       : 400;
	line-height       : 70px;
	height            : 70px;
	color             : #9b9b9b;
	border            : none;
	background-color  : transparent;
	width             : 100%;
	border-bottom     : 2px solid #eaeaea;
	padding           : 17px 30px 17px 46px;
	margin-bottom     : 0;
	-webkit-transition: 400ms linear;
	-o-transition     : 400ms linear;
	transition        : 400ms linear;
	text-transform    : capitalize;
}

.module-search-box .form-control:focus,
.module-search-box .form-control:active {
	border-color: #5f2e88;
}

.module-search-box .form-control::-webkit-input-placeholder {
	color      : #9b9b9b;
	font-family: "Rubik", sans-serif;
	font-size  : 35px;
}

.module-search-box .form-control::-moz-placeholder {
	color      : #9b9b9b;
	font-family: "Rubik", sans-serif;
	font-size  : 35px;
}

.module-search-box .form-control::-moz-placeholder {
	color      : #9b9b9b;
	font-family: "Rubik", sans-serif;
	font-size  : 35px;
}

.module-search-box .form-control:-ms-input-placeholder {
	color      : #9b9b9b;
	font-family: "Rubik", sans-serif;
	font-size  : 35px;
}

.module-search-box .btn {
	background-color: transparent;
	border-radius   : 0;
	width           : 35px;
	line-height     : 57px;
	color           : #ffffff;
	font-size       : 28px;
	font-weight     : 400;
	text-align      : right;
	margin-left     : 0;
	padding         : 0;
}

/* Module Cart */
.module-cart .module-icon {
	position: relative;
}

.module-cart .module-icon i {
	font-size: 16px;
	position : relative;
}

.module-cart .cart-box {
	top               : 100%;
	left              : -253px;
	width             : 290px;
	background-color  : #ffffff;
	padding           : 40px;
	opacity           : 0;
	visibility        : hidden;
	-webkit-transform : translateY(40px);
	-ms-transform     : translateY(40px);
	transform         : translateY(40px);
	-webkit-transition: 500ms;
	-o-transition     : 500ms;
	transition        : 500ms;
}

@media screen and (min-width: 1181px) {
	.module-cart .cart-box {
		position: absolute;
	}
}

.module-cart .cart-box.active {
	opacity          : 1;
	visibility       : visible;
	-webkit-transform: translateY(0);
	-ms-transform    : translateY(0);
	transform        : translateY(0);
}

.module-cart .cart-box .cart-overview {
	margin-bottom: 0;
	width        : 100%;
}

.module-cart .cart-box .cart-overview li {
	padding-bottom: 30px;
	position      : relative;
}

.module-cart .cart-box .cart-overview li:last-child {
	margin-bottom: 0;
}

.module-cart .cart-box .cart-overview li .cart-cancel {
	position         : absolute;
	right            : 0;
	top              : 0;
	display          : -webkit-box;
	display          : -ms-flexbox;
	display          : flex;
	-webkit-box-pack : center;
	-ms-flex-pack    : center;
	justify-content  : center;
	-webkit-box-align: center;
	-ms-flex-align   : center;
	align-items      : center;
	color            : #ffffff;
	font-size        : 7px;
	width            : 20px;
	height           : 20px;
	background-color : #333333;
}

.module-cart .cart-box .cart-overview li .cart-cancel:hover {
	background-color: #5f2e88;
}

.module-cart .cart-box .cart-overview img {
	width       : 40px;
	height      : 40px;
	margin-right: 15px;
	position    : absolute;
}

.module-cart .cart-box .cart-overview .product-meta {
	padding-left: 60px;
}

.module-cart .cart-box .cart-overview h5 {
	color         : #282828;
	font-family   : "Rubik", sans-serif;
	font-size     : 14px;
	text-transform: capitalize;
	line-height   : 1;
	font-weight   : 600;
	margin-bottom : 8px;
}

.module-cart .cart-box .cart-overview p {
	font-family  : "Rubik", sans-serif;
	color        : #9b9b9b;
	font-size    : 13px;
	line-height  : 20px;
	font-weight  : 600;
	margin-bottom: 0;
}

.module-cart .cart-box span {
	font-family      : "Rubik", sans-serif;
	color            : #9b9b9b;
	font-size        : 15px;
	font-weight      : 600;
	line-height      : 22px;
	display          : inline-block;
	text-transform   : capitalize;
	-webkit-transform: translateY(-6px);
	-ms-transform    : translateY(-6px);
	transform        : translateY(-6px);
	margin-bottom    : 18px;
}

.module-cart .cart-box span .total-price {
	color     : #5f2e88;
	font-style: normal;
}

.module-cart .cart-box .cart--control .btn {
	height          : 42px;
	width           : 209px;
	line-height     : 31px;
	margin-right    : 10px;
	border-radius   : 0;
	background-color: #5f2e88;
	color           : #ffffff;
}

@media screen and (max-width: 1181px) {
	.module-cart .cart-box .cart--control .btn {
		width: 250px;
	}
}

.module-cart .cart-box .cart--control .btn:hover {
	background-color: #1b1a1a;
}

.module-cart .cart-box .cart--control:last-of-type {
	margin-right: 0;
}

/* Module Contact */
.module-contact {
	float            : left;
	display          : -webkit-box;
	display          : -ms-flexbox;
	display          : flex;
	-webkit-box-align: center;
	-ms-flex-align   : center;
	align-items      : center;
}

@media (min-width: 1181px) and (max-width: 1200px) {
	.module-contact {
		float: none;
	}
}

.module-contact .btn {
	width             : 135px;
	height            : 39px;
	line-height       : 36px;
	margin-right      : 20px;
	text-transform    : capitalize;
	display           : block;
	font-size         : 14px;
	font-weight       : bold;
	cursor            : pointer;
	border-radius     : 2px;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition     : all 0.3s ease-in-out;
	transition        : all 0.3s ease-in-out;
	color             : #ffffff;
	overflow          : none;
	border            : 2px solid #5f2e88;
	background-color  : #5f2e88;
}

.module-contact .btn:hover,
.module-contact .btn:focus,
.module-contact .btn:active {
	background-color: #1b1a1a;
	border-color    : #1b1a1a;
	outline         : none;
}

.module-contact .btn.btn--transparent {
	background-color: transparent;
	border-color    : #ffffff;
	color           : #ffffff;
}

@media screen and (max-width: 1181px) {
	.module-contact .btn.btn--transparent {
		color       : #1b1a1a;
		border-color: #1b1a1a;
	}
}

.module-contact .btn.btn--transparent:hover {
	background-color: #1b1a1a;
	color           : #ffffff;
	border-color    : #1b1a1a;
}

.module-contact .btn.btn--small {
	width: 85px;
}

.module-contact .btn-dark {
	border-color: #1b1a1a;
	color       : #ffffff;
	background  : #1b1a1a;
}

.module-contact .btn-dark:hover {
	background-color: #ffffff;
	color           : #1b1a1a;
	border-color    : #1b1a1a;
}

/* Module Language */
.module-language {
	display          : -webkit-inline-box;
	display          : -ms-inline-flexbox;
	display          : inline-flex;
	-webkit-box-align: center;
	-ms-flex-align   : center;
	align-items      : center;
	position         : relative;
	height           : 39px;
}

@media screen and (max-width: 1181px) {
	.module-language {
		height               : auto;
		display              : -webkit-box;
		display              : -ms-flexbox;
		display              : flex;
		-webkit-box-orient   : vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow        : column;
		flex-flow            : column;
		-webkit-box-align    : start;
		-ms-flex-align       : start;
		align-items          : flex-start;
	}

	.module-language.module-active .lang-list {
		max-height: none;
		padding   : 10px;
	}
}

.module-language.module-active .lang-list,
.module-language:hover .lang-list {
	opacity   : 1;
	visibility: visible;
}

.module-language .selected {
	display          : -webkit-box;
	display          : -ms-flexbox;
	display          : flex;
	-webkit-box-align: center;
	-ms-flex-align   : center;
	align-items      : center;
}

.module-language .selected span {
	font-size     : 14px;
	font-weight   : bold;
	text-transform: capitalize;
	color         : #ffffff;
	margin-right  : 5px;
	cursor        : pointer;
}

@media screen and (max-width: 1181px) {
	.module-language .selected span {
		color: #1b1a1a;
	}
}

.module-language .selected i {
	font-size: 11px;
	color    : #ffffff;
}

@media screen and (max-width: 1181px) {
	.module-language .selected i {
		color: #1b1a1a;
	}
}

.module-language .lang-list {
	background-color  : #fff;
	color             : #9b9b9b;
	position          : absolute;
	top               : 100%;
	padding           : 6px 22px;
	left              : -16px;
	visibility        : hidden;
	opacity           : 0;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition     : 0.3s ease-in-out;
	transition        : 0.3s ease-in-out;
}

@media screen and (max-width: 1181px) {
	.module-language .lang-list {
		position  : relative;
		left      : auto;
		top       : auto;
		max-height: 0;
		padding   : 0;
		overflow  : hidden;
		border    : 1px solid #eaeaea;
	}
}

.module-language .lang-list ul {
	margin-bottom: 0;
}

.module-language .lang-list ul li:last-of-type a {
	border-bottom: none;
}

.module-language .lang-list ul li:last-of-type a::after {
	content: none;
}

.module-language .lang-list ul li a {
	font-size         : 14px;
	display           : block;
	color             : #9b9b9b;
	text-transform    : capitalize;
	border-bottom     : 1px solid #eaeaea;
	padding           : 8px 0px;
	cursor            : pointer;
	-webkit-transition: 0.3s ease;
	-o-transition     : 0.3s ease;
	transition        : 0.3s ease;
	position          : relative;
}

.module-language .lang-list ul li a::after {
	content           : '';
	position          : absolute;
	bottom            : 0;
	left              : 0;
	height            : 1px;
	width             : 0px;
	-webkit-transition: 0.3s ease;
	-o-transition     : 0.3s ease;
	transition        : 0.3s ease;
	background-color  : transparent;
}

.module-language .lang-list ul li a:hover {
	color: #5f2e88;
}

.module-language .lang-list ul li a:hover::after {
	width           : 100%;
	background-color: #5f2e88;
}

.navbar-fixed .module-language span,
.navbar-fixed .module-language i {
	color: #1b1a1a;
}

/* Module Social */
.module-social {
	line-height  : 100px;
	height       : 100px;
	margin-right : 20px;
	margin-bottom: 0;
}

@media screen and (max-width: 1181px) {
	.module-social {
		border-bottom: 0;
	}
}

.module-social:last-child {
	margin-right: 0;
}

.module-social a {
	color             : #ffffff;
	font-size         : 17px;
	font-weight       : 400;
	margin-right      : 10px;
	position          : relative;
	overflow          : hidden;
	width             : 35px;
	height            : 35px;
	background-color  : #5f2e88;
	border-radius     : 50%;
	display           : -webkit-inline-box;
	display           : -ms-inline-flexbox;
	display           : inline-flex;
	-webkit-box-pack  : center;
	-ms-flex-pack     : center;
	justify-content   : center;
	-webkit-box-align : center;
	-ms-flex-align    : center;
	align-items       : center;
	-webkit-transition: 300ms ease-in-out;
	-o-transition     : 300ms ease-in-out;
	transition        : 300ms ease-in-out;
}

.module-social a:hover {
	-webkit-transform: scale(0.9);
	-ms-transform    : scale(0.9);
	transform        : scale(0.9);
}

.module-social.module-social-2 {
	line-height : 70px;
	height      : 70px;
	border-right: 2px solid #292929;
	margin-right: 0;
}

.module-social.module-social-2:last-child {
	margin-right: 0;
}

.module-social.module-social-2 a {
	color           : #ffffff;
	background-color: transparent;
	margin-right    : 20px;
	width           : auto;
	height          : auto;
	border-radius   : 0;
}

.module-social.module-social-2 a:hover {
	color            : #5f2e88;
	-webkit-transform: scale(1);
	-ms-transform    : scale(1);
	transform        : scale(1);
}

/* Navbar For header Top Bar */
.header-topbar .topbar .contact-info {
	line-height  : 46px;
	margin-bottom: 0;
	font-size    : 13px;
	font-weight  : 400;
	line-height  : 46px;
	margin-right : 30px;
	display      : inline-block;
}

.header-topbar .topbar .contact-info i {
	color       : #5f2e88;
	margin-right: 9px;
	font-size   : 16px;
}

.header-topbar .topbar .contact-social {
	font-size    : 13px;
	font-weight  : 400;
	margin-bottom: 0;
	display      : inline-block;
}

.header-topbar .topbar .contact-social a {
	color      : #5f2e88;
	font-size  : 14px;
	font-weight: 400;
	line-height: 46px;
	margin-left: 20px;
	line-height: 46px;
}

.header-topbar .topbar .contact-social a:hover {
	color: #ffffff;
}

/* Header Fixed */
.navbar-fixed .module .module-icon i {
	color: #1b1a1a;
}

.navbar-fixed .module-consultation .btn {
	background  : #1b1a1a;
	border-color: #1b1a1a;
	color       : #ffffff;
}

.navbar-fixed .module-consultation .btn:hover {
	background: #ffffff;
	color     : #1b1a1a;
}

.navbar-fixed .module-social a {
	color: #1b1a1a;
}

.navbar-fixed .module-social a:hover {
	color: #5f2e88;
}

/* Small Devices, Tablets */
@media only screen and (max-width: 1181px) {
	.module {
		width        : 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		padding      : 6px 0;
	}

	.module .module-icon {
		padding-top: 0;
		line-height: 36px !important;
	}

	.module .module-icon i {
		color: #1b1a1a;
	}

	.module .module-box {
		position: relative;
		right   : 0;
		width   : 100%;
		border  : none;
	}

	.module .module-label {
		top     : -3px;
		position: relative;
	}

	.module span.title {
		display       : inline-block;
		color         : #1b1a1a;
		font-size     : 13px;
		font-weight   : 700;
		text-transform: capitalize;
	}

	.module .cart-box,
	.module .search-box {
		display      : none;
		padding-right: 10px;
		padding-left : 10px;
	}

	.module .module-content {
		margin-bottom: 10px;
	}

	.module .cart-box .cart-overview h5 {
		color: #ffffff;
	}

	.module .module-search .search-icon i {
		border-left  : none;
		padding-left : 0;
		padding-right: 5px;
	}

	.module-cart.active .cart-box {
		opacity          : 1;
		visibility       : visible;
		-webkit-transform: translateY(0);
		-ms-transform    : translateY(0);
		transform        : translateY(0);
		opacity          : 1;
	}

	.module.module-active .cart-box,
	.module.module-active .search-box {
		display: block !important;
	}

	.module-search.module-active .search-box .search-form {
		margin-bottom: 10px;
	}

	.module-search.module-active .search-box .search-form input {
		background-color: #ffffff;
		margin-bottom   : 0;
		height          : 35px;
		line-height     : 35px;
		padding-left    : 10px;
		max-width       : 100%;
	}

	.module-cart.module-active .cart-box {
		background-color: #222222;
		border          : none;
		padding         : 30px 20px;
		margin-bottom   : 10px;
	}

	.module-cart.module-active .cart-box .cart-control {
		margin-right: auto;
		margin-left : auto;
		text-align  : center;
	}

	.module-cart.module-active .cart-box .cart-control .pull-right {
		float: none !important;
	}

	.module-consultation {
		padding: 10px 0;
	}

	.module-consultation .btn {
		border-color: #1b1a1a;
		color       : #1b1a1a;
		margin      : 0;
	}

	.module-social a {
		color      : #1b1a1a;
		line-height: 36px;
	}

	.module-container {
		padding-left: 0;
	}

	.module-search-box .form-control {
		font-size: 24px;
	}

	.module-sidearea .module-sidearea-wrap {
		width  : 320px;
		padding: 40px;
	}
}

/* Large Devices, Wide Screens */
@media only screen and (min-width: 1181px) and (max-width: 1200px) {
	.module-search .search-icon i {
		padding-left : 16px;
		padding-right: 16px;
	}
}
