@import url('https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i&display=swap.less');
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
/* width to begin showing full menu */
/* Common styles of menus */
.dl-menuwrapper button {
  border: none;
  overflow: hidden;
  cursor: pointer;
  outline: none;
}
.dl-menuwrapper ul {
  padding: 0;
  list-style: none;
}
.dl-menuwrapper li {
  position: relative;
  margin: 0;
}
.dl-menuwrapper li a {
  display: block;
  position: relative;
  outline: none;
  color: #333;
  white-space: initial;
}
.dl-menuwrapper li.mobile-main-item a {
  font-weight: 600;
}
.no-touch .dl-menuwrapper li a:hover {
  background: rgba(255, 248, 213, 0.1);
}
.dl-menuwrapper li.dl-back > a {
  padding: 15px 16px;
  text-decoration: none;
  color: #939598;
}
.dl-menuwrapper li.dl-back > a:after,
.dl-menuwrapper li > a:not(:only-child):after {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  float: right;
  border-color: #333;
  border-top-width: 1px;
  border-right-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  transform: rotate(135deg);
  margin: 14px 0;
  -webkit-transition: all .75s;
  -o-transition: all .75s;
  transition: all .75s;
}
li.nav-sub-item a:not(:only-child):after {
  margin: 7px 0 !important;
}
.dl-menuwrapper li.dl-back > a:after,
.dl-menuwrapper li > a.sub-menu-list-open:not(:only-child):after {
  transform: rotate(-45deg);
}
.dl-menuwrapper li.dl-back > a:after {
  color: #939598;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
  margin-right: 8px;
  float: left;
}
.dl-menuwrapper li > a:after {
  right: 10px;
  color: #000;
}
.dl-menuwrapper .dl-menu.dl-menu-toggle {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.dl-menuwrapper .dl-menu.dl-menuopen {
  opacity: 1;
  pointer-events: auto;
  height: auto !important;
  min-height: 100%;
  width: 100%;
  left: 0;
  transition: left 0.6s ease-in-out;
}
.dl-menuwrapper .dl-menu.dl-menuopen.sub-menu-open {
  left: -100%;
}
/* Hide the inner submenus */
.dl-menuwrapper li .dl-submenu {
  display: none;
}
/* 
When a submenu is openend, we will hide all li siblings.
For that we give a class to the parent menu called "dl-subview".
We also hide the submenu link. 
The opened submenu will get the class "dl-subviewopen".
All this is done for any sub-level being entered.
*/
.dl-menu.dl-subview li,
.dl-menu.dl-subview li.dl-subviewopen > a,
.dl-menu.dl-subview li.dl-subview > a {
  display: none;
}
.dl-menu.dl-subview li.dl-subview,
.dl-menu.dl-subview li.dl-subview .dl-submenu,
.dl-menu.dl-subview li.dl-subviewopen,
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu,
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu > li {
  display: block;
}
.dl-menu.dl-subview li.dl-subview .dl-submenu .mobile-main-item a {
  font-weight: 600;
}
/* Dynamically added submenu outside of the menu context */
.dl-menuwrapper > .dl-submenu {
  position: absolute;
  width: 100%;
  max-width: 268px;
  /*display: none !important;*/
  top: 0;
  left: 0;
  margin: 0;
  height: auto !important;
  min-height: 100%;
  background: #fff;
}
/* Animation classes for moving out and in */
.dl-menu.dl-animate-out-2 {
  -webkit-animation: MenuAnimOut2 0.6s ease;
  -moz-animation: MenuAnimOut2 0.6s ease;
  animation: MenuAnimOut2 0.6s ease;
}
@-webkit-keyframes MenuAnimOut2 {
  100% {
    opacity: 0;
  }
}
@-moz-keyframes MenuAnimOut2 {
  100% {
    /*  -moz-transform: translateX(-100%); */
    opacity: 0;
  }
}
@keyframes MenuAnimOut2 {
  100% {
    /* transform: translateX(-100%); */
    opacity: 0;
  }
}
.dl-menu.dl-animate-in-2 {
  -webkit-animation: MenuAnimIn2 0.6s ease;
  -moz-animation: MenuAnimIn2 0.6s ease;
  animation: MenuAnimIn2 0.6s ease;
}
@-webkit-keyframes MenuAnimIn2 {
  0% {
    opacity: 0;
    left: -268px;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@-moz-keyframes MenuAnimIn2 {
  0% {
    opacity: 0;
    left: -268px;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@keyframes MenuAnimIn2 {
  0% {
    opacity: 0;
    left: -268px;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
.dl-menuwrapper > .dl-submenu.dl-animate-in-1 {
  -webkit-animation: SubMenuAnimIn2 0.4s ease;
  -moz-animation: SubMenuAnimIn2 0.4s ease;
  animation: SubMenuAnimIn2 0.4s ease;
}
@-webkit-keyframes SubMenuAnimIn2 {
  0% {
    /*-webkit-transform: translateX(100%);*/
    opacity: 0;
    left: -268px;
  }
  100% {
    /*-webkit-transform: translateX(0px);*/
    opacity: 1;
    left: 0;
  }
}
@-moz-keyframes SubMenuAnimIn2 {
  0% {
    /*-moz-transform: translateX(100%);*/
    opacity: 0;
    left: -268px;
  }
  100% {
    /*-moz-transform: translateX(0px);*/
    opacity: 1;
    left: 0;
  }
}
@keyframes SubMenuAnimIn2 {
  0% {
    /*transform: translateX(100%);*/
    opacity: 0;
    left: -268px;
  }
  100% {
    /*transform: translateX(0px);*/
    opacity: 1;
    left: 0;
  }
}
.dl-menuwrapper > .dl-submenu.dl-animate-out-1 {
  -webkit-animation: SubMenuAnimOut2 0.4s ease;
  -moz-animation: SubMenuAnimOut2 0.4s ease;
  animation: SubMenuAnimOut2 0.4s ease;
}
@-webkit-keyframes SubMenuAnimOut2;
@-moz-keyframes SubMenuAnimOut2 {
  0% {
    opacity: 1;
    left: 0;
  }
  100% {
    opacity: 0;
    left: -268px;
  }
}
@keyframes SubMenuAnimOut2 {
  0% {
    opacity: 1;
    left: 0;
  }
  100% {
    opacity: 0;
    left: -268px;
  }
}
/* No JS Fallback */
.no-js .dl-menuwrapper .dl-menu {
  position: relative;
  opacity: 1;
  -webkit-transform: none;
  -moz-transform: none;
  transform: none;
}
.no-js .dl-menuwrapper li .dl-submenu {
  display: block;
}
.no-js .dl-menuwrapper li.dl-back {
  display: none;
}
.no-js .dl-menuwrapper li > a:not(:only-child) {
  background: rgba(0, 0, 0, 0.1);
}
.no-js .dl-menuwrapper li > a:not(:only-child):after {
  content: '';
}
@media only screen and (max-width: 767px) {
  .strip-banners {
    margin: 0;
  }
  .strip-banners .first-strip {
    font-size: 12px;
  }
  .strip-banners .first-strip span {
    display: block;
    padding: 5px 0;
  }
}
/* #3: CSS added for override at widths above mobile menu
--------------------------------------------------------- */
@media only screen and (min-width: 768px) {
  .dl-menuwrapper .dl-menu {
    opacity: 1;
    pointer-events: initial;
  }
  .dl-menuwrapper li > a:not(:only-child):after {
    display: none;
  }
  .nav-main .nav-handle {
    display: none;
  }
}
/* #4: CSS Styling for Menu 
--------------------------------------------------------- */
div:after,
.nav-main:after,
.nav-main-list:after,
.image-thumb-list:after,
.nav-footer-list:after,
.contact-info-list:after,
aside:after,
.special-offer:after,
.page-footer:after,
.buttons:after {
  content: "";
  display: table;
  clear: both;
}
a {
  text-decoration: none;
}
/* #Navigation
================================================== */
/* Main nav menu */
.nav-main {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
}
.home-item-link a:after {
  display: none !important;
}
.home-item-link a i {
  font-size: 14px;
  padding-right: 8px;
}
.showmenu_close {
  float: right;
  display: inline-block;
  z-index: 1;
}
.showmenu_close:after {
  display: none !important;
}
.showmenu_close:before {
  background: url(../images/close-icon.svg) center center no-repeat;
  width: 20px;
  height: 20px;
  content: "";
  display: block;
  background-size: 80%;
  z-index: 99;
}
.showmenu_close span {
  display: none;
}
.gray-link {
  background: #EFEFEF;
  -webkit-box-shadow: 0 0 1px #939598;
  box-shadow: 0 0 1px #939598;
}
.mobile-copyright-link a {
  font-size: 12px !important;
}
@media only screen and (min-width: 768px) {
  .nav-main {
    position: static;
    width: 100%;
    right: auto;
    top: auto;
    margin: 0 auto;
  }
}
.nav-main-list,
.nav-sub-list {
  list-style: none;
  padding: 0;
}
.nav-main-list {
  margin: 0 auto;
}
.nav-main-item {
  display: block;
  width: 100%;
  border-bottom: 1px solid #EFEFEF;
}
@media only screen and (min-width: 768px) {
  .nav-main-list {
    font-family: Lato, sans-serif;
    font-size: 16px;
    height: auto !important;
  }
  .nav-main-item:first-child {
    border-top: none;
  }
}
.nav-main-item > a {
  display: block;
  color: #333;
  padding: 13px 10px;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .nav-main-item {
    display: inline-block;
    width: auto;
    margin-bottom: 0;
    border-bottom: none;
    text-align: center;
  }
  .nav-main-item.home-item-link {
    display: none;
  }
  .nav-main-item:first-child {
    border-top: none;
  }
  .nav-main-item > a {
    display: block;
    font-size: 16px !important;
    color: #000;
    transition: all 0.28s ease-out;
  }
  .nav-main-item > a:after {
    content: '';
    display: block;
    border-bottom: 2px solid #c99d90;
    margin-top: 8px;
    margin-left: -4px;
    -webkit-transition: width 0.3s ease-in;
    -moz-transition: width 0.3s ease-in;
    -o-transition: width 0.3s ease-in;
    transition: width 0.3s ease-in;
    width: 0;
  }
  .nav-main-item > a:hover {
    color: #000 !important;
  }
  .nav-main-item > a:hover:after {
    width: 114%;
  }
}
@media (max-width: 1024px) {
  .nav-main-item > a {
    padding: 15px 5px;
  }
}
/* nav icon */
.nav-handle {
  width: 20px;
  height: 15px;
  cursor: pointer;
  position: absolute;
  top: 21px;
  right: 15px;
  display: block;
  padding: 0;
  background: transparent;
  color: white;
  font-size: 9px;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 0;
  box-shadow: none;
  border: 0;
}
.nav-handle.dl-active {
  top: 53px;
}
.nav-handle.dl-active.only-nav {
  top: 21px;
}
.nav-handle:active,
.nav-handle:focus,
.nav-handle:hover {
  background: transparent;
  box-shadow: none;
}
@media (max-width: 767px) {
  .nav-handle {
    /* Icon 1 */
    /* Icon 3 */
  }
  .nav-handle .hamburger-icon {
    width: 20px;
    height: 20px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    cursor: pointer;
  }
  .nav-handle .hamburger-icon span {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: #777d82;
    border-radius: 0;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .nav-handle .hamburger-icon span:nth-child(1) {
    top: 0px;
  }
  .nav-handle .hamburger-icon span:nth-child(2),
  .nav-handle .hamburger-icon span:nth-child(3) {
    top: 6px;
  }
  .nav-handle .hamburger-icon span:nth-child(4) {
    top: 12px;
  }
  .nav-handle .dl-active .hamburger-icon span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  .nav-handle.dl-active .hamburger-icon span:nth-child(1) {
    opacity: 0;
  }
  .nav-handle.dl-active .hamburger-icon span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .nav-handle.dl-active .hamburger-icon span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .nav-handle.dl-active .hamburger-icon span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  body.dl-open-menu {
    overflow: hidden;
  }
  .dl-open-menu .page-header .nav-main {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    overflow: auto;
    height: 100%;
  }
  .nav-main-item.mobile-menu-link {
    display: block;
  }
}
.nav-sub-list {
  position: absolute;
  left: 0;
  width: 100%;
  top: 100%;
  background: #ffffff;
  white-space: nowrap;
}
.nav-sub-item:first-child,
.dl-back {
  border-top: 1px solid #EFEFEF;
}
.nav-sub-item > a,
.dl-back > a {
  color: #000;
  display: block;
  padding: 15px 16px;
  font-size: 13px;
}
.nav-sub-item > a:hover {
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .nav-sub-list {
    display: block;
    max-height: 0;
    width: auto;
    overflow: hidden;
    text-align: left;
    min-width: 100%;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .nav-sub-list {
    position: absolute;
    max-width: 100%;
    text-align: left;
    background: #ffffff;
    white-space: nowrap;
    width: 100vw;
    top: 70px;
    left: 0;
    padding: 0 15px;
  }
  .nav-main-item:hover > .nav-sub-list {
    height: auto;
    max-height: 100vh;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    text-align: left;
    border-bottom: 0px solid #000;
    width: 100vw;
    left: 0;
    padding: 0 15px 20px;
    max-width: 100%;
  }
  .nav-sub-item > a {
    transition: all 0.28s ease-out;
  }
  .nav-sub-item > a:hover {
    color: #c99d90;
  }
  .nav-sub-item,
  .dl-back {
    border-bottom: none;
  }
  .dl-back {
    display: none;
  }
  .nav-sub-list > .nav-sub-item > a {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
  }
  .nav-sub-item > a,
  .dl-back > a {
    color: #273039;
    display: block;
    padding: 8px;
    padding-left: 0px;
    font-size: 13px;
  }
  .nav-sub-item {
    display: inline-block;
    vertical-align: top;
    width: 20%;
  }
  .nav-sub-item.nav-sub-images {
    width: 28.57143%;
  }
  .nav-sub-item > a {
    text-align: left;
  }
  .nav-sub-sub {
    display: block;
    padding: 0;
    margin: 0;
  }
  .nav-sub-sub a {
    font-size: 16px;
    line-height: 16px;
  }
  .nav-sub-sub .nav-sub-item {
    display: block;
    width: auto;
    margin: 0;
  }
  .mobile-main-item {
    display: none !important;
  }
}
.nav-headling {
  position: relative;
  margin: 20px 0px 40px;
  overflow: hidden;
}
.nav-headling .heading {
  position: relative;
  font-size: 25px;
  font-weight: 700 !important;
  font-family: 'Cormorant Garamond Bold', serif;
  z-index: 1;
  display: inline-block;
  background: #fff;
  float: left;
  color: #273039;
}
.heading {
  display: inline-block;
}
.nav-headling .heading a {
  display: inline-block;
  font-size: 10px;
  font-family: 'Lato,sans-serif';
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: underline;
  letter-spacing: 2px;
  margin-left: 0;
  margin-right: 12px;
  color: #000;
  font-weight: bold !important;
}
span.middle-border {
  border-left: rgba(39, 48, 57, 0.2);
  color: #fff;
  width: 1px;
  border-right: 1px solid rgba(39, 48, 57, 0.2);
  margin: 0 10px;
  vertical-align: middle;
  height: 17px;
  overflow: hidden;
  display: inline-block;
}
.nav-h-border {
  position: absolute;
  width: 95%;
  height: 1px;
  border-bottom: 1px solid rgba(39, 48, 57, 0.2);
  top: 24px;
  z-index: 0;
  right: 56px;
}
.nav-category-two-block-images {
  display: grid;
  grid-template-columns: 2fr 2fr;
  grid-gap: 20px;
}
li.nav-sub-item.two-block-img {
  width: 65%;
  float: right;
}
.nav-category-two-block-images {
  display: grid;
  grid-template-columns: 2fr 2fr;
  grid-gap: 35px;
}
.nav-category-two-block-images a {
  display: block;
}
.nav-category-two-block-images a img {
  display: block;
  width: 100%;
}
.nav-category-two-block-images a h6 {
  margin-top: 16px;
  margin-bottom: 16px;
  color: #273039;
  transition: all 0.28s ease-out;
  font-weight: 400;
}
.nav-category-two-block-images a h6:hover {
  color: #c99d90;
}
.nav-category-two-block-images a:hover {
  text-decoration: none;
}
li.navigation-six-cat-images-block {
  display: block;
  width: 100%;
}
.six-grid-cat-images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
  margin-top: 58px;
}
.six-grid-cat-images a {
  display: block;
}
.six-grid-cat-images a img {
  display: block;
}
.six-grid-cat-images a h3 {
  font-size: 22px;
  padding: 16px;
  font-family: 'Cormorant Garamond Bold';
  color: #273039;
  transition: all 0.28s ease-out;
}
.six-grid-cat-images a h3:hover {
  text-decoration: none;
  color: #c99d90;
}
.six-grid-cat-images a:hover {
  text-decoration: none;
}
.six-grid-cat-images a:hover h3 {
  color: #c99d90;
}
ul.dl-submenu.nav-sub-list {
  position: fixed;
  display: block !important;
  left: 100%;
  top: 85px;
  z-index: 999;
  background: #fff;
  width: 100%;
  padding: 0 15px;
  transition: left 0.6s ease-in-out;
  overflow: auto;
  height: 100%;
}
li.nav-main-item.open-sub-list ul.dl-submenu.nav-sub-list {
  left: 0 !important;
}
@media only screen and (max-width: 767px) {
  li.nav-sub-item.two-block-img {
    width: 100%;
    float: unset;
    padding: 16px;
  }
  li.nav-sub-item.two-block-img .nav-category-two-block-images {
    grid-gap: 15px;
  }
  li.navigation-six-cat-images-block {
    padding: 16px;
  }
  li.navigation-six-cat-images-block .six-grid-cat-images {
    grid-template-columns: 1fr;
    grid-gap: 0px;
    margin-top: 0;
  }
  li.nav-sub-item.mobile-main-item,
  span.middle-border,
  .nav-h-border {
    display: none;
  }
  .nav-headling {
    margin: 0 0 16px 0;
    width: 100%;
  }
  .nav-headling .heading {
    float: none;
    width: 100%;
    border-bottom: 1px solid #f5f1ec;
    padding: 16px;
    font-size: 24px;
  }
  .nav-headling a {
    display: inline-block !important;
    float: right;
    margin-top: 2.5%;
    margin-right: 0 !important;
  }
  .nav-sub-item > a {
    color: #000;
    display: block;
    padding: 15px 16px;
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
  }
  .nav-sub-sub .dl-back {
    display: none;
  }
  .nav-sub-sub a {
    text-transform: none;
    font-weight: normal;
    padding-top: 6px;
    padding-bottom: 6px;
    letter-spacing: unset;
    color: #273039 !important;
  }
  .nav-main-item {
    border-bottom: 1px solid #f9f9f9;
  }
  li.nav-main-item > a {
    padding: 24px 32px;
    font-family: 'Cormorant Garamond', serif;
    font-feature-settings: lnum;
    font-variant-numeric: lining-nums;
    font-size: 25px;
    font-weight: 500;
    position: relative;
    text-transform: capitalize;
    color: #000;
  }
  li.nav-main-item > a:hover {
    color: #000;
  }
  li.nav-main-item > a:after {
    transform: rotate(45deg) !important;
  }
  li.nav-main-item.gray-link.mobile-menu-link {
    display: none;
  }
  li.nav-main-item.mobile-menu-link.my-account {
    background-image: linear-gradient(89deg, #3f4955, #0f1316);
    color: #fff;
  }
  li.nav-main-item.mobile-menu-link.my-account a {
    color: #fff;
    font-family: Lato,sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .nav-header-back-btn {
    display: none;
    position: absolute;
    top: 2px;
    left: 5px;
    width: 25px;
    height: 25px;
  }
  .nav-header-back-btn .arrow-block {
    border: 1px solid red;
    height: 14px;
    width: 14px;
    display: block;
    border: 1px solid #414951;
    border-width: 0 0 1px 1px;
    transform: rotate(45deg);
    margin: 8px 7px;
  }
  li.dl-back {
    display: none;
  }
}
.nav-sub-sub .shop-all-sec-item {
  margin: 14px 0;
}
@media only screen and (max-width: 767px) {
  .nav-sub-sub .shop-all-sec-item {
    padding: 0px 16px;
    margin: 11px 0;
  }
}
.nav-sub-sub .shop-all-sec-item > a.shop-all-sec {
  font-size: 12px;
  letter-spacing: 2px;
  color: #000000;
  text-transform: uppercase;
  margin: 0;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600;
  margin: 10px 0;
}
@media only screen and (min-width: 768px) {
  html[lang="ar"] .nav-main-list {
    text-align: left;
  }
  html[lang="ar"] .nav-headling .heading {
    float: right;
  }
  html[lang="ar"] .nav-h-border {
    left: 56px;
    right: unset;
  }
  html[lang="ar"] .nav-sub-list {
    text-align: right;
  }
  html[lang="ar"] .nav-sub-item > a {
    text-align: right;
  }
  html[lang="ar"] .nav-main-item:hover > .nav-sub-list {
    text-align: right;
    padding-right: 30px;
  }
  html[lang="ar"] li.nav-sub-item.two-block-img {
    float: left;
  }
  html[lang="ar"] .nav-headling .heading a {
    margin-left: 12px;
    float: left;
    vertical-align: top;
    margin-top: 12px;
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  html[lang="ar"] .nav-main {
    right: 0;
    left: unset;
  }
  html[lang="ar"] .page-header .main-header-container .search-container-minicart {
    padding-left: 35px;
    padding-right: 0;
  }
  html[lang="ar"] .nav-handle {
    left: 15px;
    right: auto;
  }
  html[lang="ar"] .nav-header-back-btn {
    left: auto;
    right: 5px;
  }
  html[lang="ar"] .page-header .main-header-container .dl-menu {
    transition: right .6s ease;
    right: -100%;
    left: inherit;
  }
  html[lang="ar"] .dl-menuwrapper .dl-menu.dl-menuopen {
    right: 0;
    transition: right 0.6s ease-in-out;
  }
  html[lang="ar"] .dl-menuwrapper .dl-menu.dl-menuopen.sub-menu-open {
    right: -100%;
    left: unset;
  }
  html[lang="ar"] ul.dl-submenu.nav-sub-list {
    right: 100%;
    transition: right 0.6s ease-in-out;
  }
  html[lang="ar"] li.nav-main-item.open-sub-list ul.dl-submenu.nav-sub-list {
    right: 0 !important;
    left: unset;
  }
  html[lang="ar"] li.nav-main-item > a:after {
    transform: rotate(-135deg) !important;
  }
  html[lang="ar"] .nav-header-back-btn .arrow-block {
    transform: rotate(225deg);
  }
  html[lang="ar"] .search-form-close {
    background-position: center left;
  }
  html[lang="ar"] .nav-headling .heading a {
    float: left;
  }
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa-lg {
  font-size: 1.33333333em;
  line-height: .75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: .14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid .08em #eee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}
.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(../../../../../frontend/Magento/blank/en_US/Mageplaza_Core/css/owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Default theme - Owl Carousel CSS File
 */
.owl-carousel .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-carousel .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-carousel .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-carousel .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-carousel .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-carousel .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}
html {
  line-height: 1;
  font-family: 'Lato';
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  font-size: 14px;
  vertical-align: baseline;
}
body * {
  line-height: 1.2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body,
input,
select,
textarea {
  font-family: 'Lato,sans-serif' !important;
  color: #273039;
  -webkit-text-size-adjust: none;
}
._keyfocus *:focus,
input:not([disabled]):focus,
textarea:not([disabled]):focus,
select:not([disabled]):focus {
  box-shadow: none;
}
h1 {
  font-size: 26px;
  margin-top: 0;
  margin-bottom: 16px;
}
h2 {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 16px;
}
h3 {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 16px;
}
h4,
h5,
h6 {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 16px;
}
a {
  text-decoration: none;
  color: #273039;
  outline: none;
  transition: all 0.28s ease-out;
}
a:active,
a:hover,
a:focus,
a:visited {
  outline: 0;
  color: #273039;
}
p {
  font-size: 13px;
  line-height: 150%;
}
input[type=button],
input[type=submit],
input[type=image],
a.button,
a[class*=btn-] {
  font-size: 16px;
  padding: 0 8px;
  border-width: 0;
  cursor: pointer;
  color: #fff;
  background-color: #000;
  -webkit-appearance: none;
  -webkit-transition-duration: 0.75s;
  transition-duration: 0.75s;
}
.action.primary {
  padding: 0px 16px;
  font-size: 18px;
  line-height: 48px;
  cursor: pointer;
  color: #fff;
  border-radius: 0;
  border: none;
}
[data-content-type='row'][data-appearance='contained'] {
  max-width: 100%;
}
[data-content-type='row'][data-appearance='contained'] [data-element='inner'] {
  margin: 0 !important;
  padding: 0 !important;
}
.breadcrumbs {
  margin: 15px auto;
}
.breadcrumbs .items {
  font-size: 12px;
  line-height: 1.2;
  color: #333;
}
.breadcrumbs .items a,
.breadcrumbs .items strong {
  font-size: 12px;
  color: #333;
}
.breadcrumbs .item:not(:last-child):after {
  content: "/";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  color: #333;
}
:root body .ui-datepicker {
  background: #fff;
}
:root body .ui-datepicker .ui-datepicker-calendar {
  border: 0;
}
:root body .ui-datepicker .ui-datepicker-calendar th,
:root body .ui-datepicker .ui-datepicker-calendar td {
  border: 0;
  font-weight: normal;
  font-size: 14px;
  background: transparent;
}
:root body .ui-datepicker .ui-datepicker-calendar td a {
  padding: 0;
}
:root body .ui-datepicker td span,
:root body .ui-datepicker td a {
  background-color: #fff;
  cursor: pointer;
  float: none;
  height: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 14%;
  line-height: 48px;
  border-radius: 100%;
  width: 48px;
}
:root body .ui-datepicker .ui-datepicker-calendar .ui-state-disabled {
  background: transparent;
}
:root body .ui-datepicker .ui-datepicker-calendar .ui-state-disabled span {
  background: #f9f9f9;
}
:root body .ui-datepicker .ui-datepicker-calendar .ui-state-active {
  color: #fff;
  background-color: #ff4400;
}
:root body .ui-datepicker .ui-datepicker-next span {
  margin-top: -5px;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #000;
}
:root body .ui-datepicker .ui-datepicker-next span {
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #000;
}
:root body .ui-datepicker .ui-datepicker-prev span {
  border-width: 10px 10px 10px 0;
  border-color: transparent #000 transparent transparent;
}
.modal-popup .modal-inner-wrap {
  margin: 3rem auto;
  width: 54%;
}
.modal-popup .modal-header,
.modal-popup .modal-content,
.modal-popup .modal-footer {
  padding-left: 16px;
  padding-right: 16px;
}
.modal-popup .modal-header {
  padding-top: 16px;
  padding-bottom: 8px;
  padding-left: 20px;
  padding-right: 20px;
}
.modal-popup .modal-header h1 {
  font-size: 20px;
  line-height: 1;
  border-bottom: 0;
}
.modal-popup .modal-header .action-close {
  padding: 0px;
}
.modal-popup .modal-header .action-close:before {
  color: #000;
  font-size: 48px;
  line-height: 1;
}
.modal-popup .modal-content .full-width-content {
  width: 100%;
  float: left;
}
.modal-popup .modal-content .full-width-content h3 {
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.modal-popup .modal-content .full-width-content table th,
.modal-popup .modal-content .full-width-content table td {
  font-size: 12px;
  padding: 8px 8px 8px 0;
  border-bottom: 1px solid #efefef;
}
.modal-popup .modal-content .full-width-content table tr:last-child th,
.modal-popup .modal-content .full-width-content table tr:last-child td {
  border-bottom: 0;
}
.modal-popup .modal-content .full-width-content table table th,
.modal-popup .modal-content .full-width-content table table td {
  padding-top: 0;
  padding-bottom: 0;
}
.modal-popup .modal-content .full-width-content .content-left {
  width: 50%;
  padding-left: 8px;
  padding-right: 8px;
  float: left;
}
.modal-popup .modal-content .full-width-content .content-right {
  width: 50%;
  padding-left: 8px;
  padding-right: 8px;
  float: left;
}
.modal-popup.show .modal-content #popup-mpdal {
  display: block;
}
#popup-mpdal {
  display: none;
}
.panel.header {
  padding-left: 16px;
  padding-right: 16px;
}
.panel.header .switcher {
  color: #fff;
  font-size: 13px;
}
.panel.header .switcher .options .action.toggle.active.panel.header .switcher .options .action.toggle:after,
.panel.header .switcher .options .action.toggle:after {
  font-size: 32px;
  line-height: 16px;
}
.panel.header .switcher .options .action.toggle .view-en_dunelondon:before {
  background-image: url(../images/flags.png);
  background-repeat: no-repeat;
  width: 20px;
  height: 13px;
  margin-top: 2px;
  float: left;
  content: "";
}
.panel.header .switcher .options .action.toggle .view-en_dunelondon span {
  margin-left: 4px;
}
.main-header-container {
  display: flex;
  align-items: center;
  padding: 10px 15px;
}
.main-header-container .search-container-logo {
  flex: 1;
}
.main-header-container .header-container-center {
  display: flex;
  flex: 3;
}
.main-header-container .search-container-minicart {
  flex: 1;
  justify-content: flex-end;
}
.main-header-container .header-language-switch {
  background-repeat: no-repeat;
  background-size: 25px 27px;
  font-size: 0;
  margin-right: 10px;
  width: 32px;
  height: 24px;
  cursor: pointer;
}
.main-header-container .header-language-switch.ae {
  background-image: url(../images/icons/flag/ae-flag.png) !important;
}
.main-header-container .header-language-switch.kw {
  background-image: url(../images/icons/flag/kw-flag.png) !important;
}
.main-header-container .header-language-switch.sa {
  background-image: url(../images/icons/flag/sa-flag.png) !important;
}
.main-header-container .header-language-switch.om {
  background-image: url(../images/icons/flag/om-flag.png) !important;
}
.main-header-container .header-language-switch.bh {
  background-image: url(../images/icons/flag/bh-flag.png) !important;
}
.main-header-container .header-language-switch.qa {
  background-image: url(../images/icons/flag/qa-flag.png) !important;
}
.main-header-container .header-language-switch #switcher-language {
  display: none;
}
.main-header-container .header-language-switch .switcher .options .action.toggle:after {
  color: transparent !important;
}
.main-header-container .search-container-minicart {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.main-header-container .search-container-minicart .header-user-links {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
}
.main-header-container .search-container-minicart .header-user-links li {
  margin: 0 15px;
  cursor: pointer;
}
.main-header-container .search-container-minicart .header-user-links li svg * {
  transition: all 0.2s ease-out;
}
.main-header-container .search-container-minicart .header-user-links li:hover svg * {
  color: #c99d90;
  fill: #c99d90;
  stroke: #c99d90;
}
.main-header-container .search-container-minicart .header-user-links li.search-icn {
  order: 0;
  list-style: none;
  margin-top: 4px;
}
.main-header-container .search-container-minicart .header-user-links li.search-icn.enabled svg * {
  color: #c99d90;
  fill: #c99d90;
  stroke: #c99d90;
}
.main-header-container .search-container-minicart .header-user-links li:first-child {
  font-size: 0;
  list-style: none;
  order: 1;
}
.main-header-container .search-container-minicart .header-user-links li:first-child a {
  width: 18px;
  height: 18px;
  background-image: url(../images/icons/my-account.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
}
.main-header-container .search-container-minicart .header-user-links li:first-child a:hover {
  text-decoration: none;
}
.main-header-container .search-container-minicart .header-user-links li.link.wishlist {
  list-style: none;
  font-size: 0;
  order: 3;
  position: relative;
}
.main-header-container .search-container-minicart .header-user-links li.link.wishlist a.heartfilled svg path {
  stroke: #c99d90;
  fill: #c99d90;
}
.main-header-container .search-container-minicart .header-user-links li.link.wishlist a:hover {
  text-decoration: none;
}
.main-header-container .search-container-minicart .header-user-links li.link.wishlist .counter.qty {
  position: absolute;
  right: -8px;
  top: -7px;
  background: #ff4400;
  color: #fff;
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 10px;
  text-align: center;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border-radius: 16px;
  min-width: 16px;
}
.main-header-container .search-container-minicart .header-user-links li.link.wishlist .counter.qty:empty {
  display: none;
}
.main-header-container .search-container-wapper .block-search {
  padding-left: 0;
}
.main-header-container .search-container-wapper .block-search input {
  font-size: 16px;
  border: 1px solid #000;
  border-radius: 0;
  left: 0;
}
.main-header-container .search-container-wapper .block-search .actions .action.search {
  opacity: 1;
  top: 4px;
  right: 4px;
}
.main-header-container .search-container-wapper .block-search .actions .action.search:before {
  content: "";
  background: url(../images/search-active.svg) center center no-repeat;
  width: 20px;
  height: 26px;
}
.main-header-container .search-container-minicart .minicart-wrapper .action.showcart:before {
  display: none;
}
.main-header-container .search-container-minicart .minicart-wrapper .action.showcart span.text {
  display: inline-block;
  width: auto;
  height: auto;
  clip: unset;
  position: static;
  vertical-align: middle;
  line-height: 42px;
  font-weight: bold;
  font-size: 14px;
}
.main-header-container .search-container-minicart .minicart-wrapper .action.showcart span.text img {
  margin-left: 0px;
  margin-top: -2px;
  width: 26px;
  vertical-align: middle;
}
.main-header-container .search-container-minicart .minicart-wrapper .action.showcart .counter.qty {
  position: absolute;
  right: -8px;
  bottom: 3px;
  background: #ff4400;
  color: #fff;
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 10px;
  text-align: center;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border-radius: 16px;
  min-width: 16px;
}
.main-header-container .search-container-minicart .minicart-wrapper .cart-box svg * {
  transition: all 0.2s ease-out;
}
.main-header-container .search-container-minicart .minicart-wrapper.active .cart-box svg * {
  color: #c99d90;
  fill: #c99d90;
}
.newsletter_container {
  width: 1472px;
  max-width: 100%;
  margin: 0 auto;
}
.newsletter_container .content {
  width: 80%;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
}
.footer {
  background: #d6d8d9;
}
.footer .foo {
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  justify-content: space-around;
}
.footer .foo .column {
  flex: 0 0 auto;
}
.footer .foo .column ul {
  list-style: none;
}
.footer .foo .column ul li {
  font-size: 15px;
  color: #000;
  line-height: 24px;
  font-weight: 600;
  margin: 0;
}
.footer .foo .column ul li a {
  color: #333;
  font-weight: 200;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
}
.foo_btm {
  background: #000;
  color: #fff;
  padding: 10px;
  font-size: 12px;
}
.foo_btm .foo_container {
  width: 1472px;
  max-width: 100%;
  margin: 0 auto;
}
.foo_btm .foo_btm_l {
  float: left;
}
.foo_btm .foo_btm_r {
  float: right;
}
.foo_btm .foo_btm_r a {
  color: #fff;
}
.minicart-wrapper.active .block-minicart {
  border: 0 !important;
}
.minicart-wrapper .block-minicart {
  width: 500px;
  box-shadow: none;
  border: 0;
  padding: 0;
}
.minicart-wrapper .block-minicart .minicart-dropdown-box .cart_dropdown.mini-cart-products-box {
  padding: 20px;
  -moz-box-shadow: 1px 1px 8px 0px rgba(39, 48, 57, 0.29);
  -webkit-box-shadow: 1px 1px 8px 0px rgba(39, 48, 57, 0.29);
  box-shadow: 1px 1px 8px 0px rgba(39, 48, 57, 0.29);
}
.minicart-wrapper .block-minicart:before,
.minicart-wrapper .block-minicart:after {
  display: none;
}
.minicart-wrapper .ui-dialog {
  position: initial;
  padding: 0;
}
.ui-dialog .ui-dialog-content {
  overflow: unset;
}
.minicart-wrapper .ui-dialog.ui-widget.ui-widget-content {
  border: 0;
}
@media only screen and (max-width: 767px) {
  .minicart-wrapper .ui-dialog.ui-widget.ui-widget-content:not(.page-products .minicart-wrapper .ui-dialog.ui-widget.ui-widget-content) {
    display: none !important;
  }
}
.minicart-wrapper .minicart-items {
  display: flex;
  flex-wrap: wrap;
  max-height: 260px;
}
.minicart-wrapper .minicart-items .minicart {
  width: 50%;
  max-width: 50%;
  margin: 0 0 25px;
  padding: 0 5px;
}
.minicart-wrapper .minicart-items .minicart .product {
  display: flex;
}
.minicart-wrapper .minicart-items .minicart .product .product_image {
  width: 90px;
  position: relative;
  margin-right: 10px;
}
.minicart-wrapper .minicart-items .minicart .product .product_image > span {
  position: absolute;
  top: 6px;
  left: 0;
  display: inline-block;
  background: #917140;
  color: #fff;
  font-size: 8px;
  letter-spacing: 0.6px;
  line-height: 1;
  padding: 5px 5px 3px;
  text-transform: uppercase;
}
.minicart-wrapper .minicart-items .minicart .product .product_image a {
  border: 1px solid #ccc;
  display: block;
}
.minicart-wrapper .minicart-items .minicart .product .product_image a .product-image-photo-new {
  display: block;
  width: 100%;
}
.minicart-wrapper .minicart-items .minicart .product .product-item-details {
  max-width: calc(100% - 105px);
  padding: 0;
}
.minicart-wrapper .minicart-items .minicart .product .product-item-details .mini-product-info .details-qty {
  margin: 0;
}
.minicart-wrapper .minicart-items .minicart .product .product-item-details .mini-product-info .details-qty .label {
  display: block;
  margin: 0 0 5px;
}
.minicart-wrapper .minicart-items .minicart .product .product-item-details .mini-product-info .details-qty .mini-wrap-quantity {
  display: flex;
  align-items: center;
}
.minicart-wrapper .minicart-items .minicart .product .product-item-details .mini-product-info .details-qty .mini-wrap-quantity .update-cart-item {
  border: none;
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: bold;
  height: 37px;
  padding: 0 10px;
}
.minicart-wrapper .minicart-items .minicart .product .product-item-details .mini-product-info .details-qty .mini-wrap-quantity .cart-item-qty {
  width: 32px;
  border-color: #917140;
  margin: 0;
  padding: 0;
  text-align: center;
}
.minicart-wrapper .minicart-items .minicart .product .product-item-details .mini-product-info .details-qty .mini-wrap-quantity .cart-item-qty .label {
  display: block;
  margin: 0 0 5px;
}
.modal-popup.mini-cart-confirm .modal-inner-wrap {
  width: calc(70%);
  margin: 0;
  max-width: 450px;
  top: 50%;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
}
.modal-popup.mini-cart-confirm .modal-inner-wrap .modal-content div {
  font-size: 13px;
  line-height: 1.2;
}
.modal-popup.mini-cart-confirm .modal-inner-wrap .modal-footer .action-secondary,
.modal-popup.mini-cart-confirm .modal-inner-wrap .modal-footer .action-primary {
  border: none;
  font-size: 13px;
  letter-spacing: 1px;
  margin: 0 3px;
  padding: 8px 10px;
  text-transform: uppercase;
}
.modal-popup.mini-cart-confirm .modal-inner-wrap .modal-footer .action-secondary:focus,
.modal-popup.mini-cart-confirm .modal-inner-wrap .modal-footer .action-primary:focus {
  background: #917140;
}
.minicart-wrapper .minicart-items .product-item-name a {
  font-size: 14px;
  color: #000;
  font-weight: 600;
}
.minicart-wrapper .minicart-items .product-item-name a:hover {
  text-decoration: none;
}
.minicart-wrapper .minicart-items .product-item-details .price {
  font-size: 14px;
  color: #000;
  font-weight: normal;
}
.minicart-wrapper .minicart-items .product .product-item-details .mini-product-actions {
  width: 35%;
  float: right;
  font-size: 12px;
  color: #000;
  text-align: right;
}
.minicart-items .product-item-details .price-including-tax,
.minicart-items .product-item-details .price-excluding-tax {
  margin: 0;
}
.minicart-items .product-item-details .price-including-tax,
.minicart-items .product-item-details .price-excluding-tax .minicart-price {
  line-height: 1;
}
.minicart-wrapper .minicart_bottom {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  border-top: solid 0px #BCBEC0;
}
.minicart-wrapper .minicart_bottom .mini_total {
  width: 100%;
  padding-bottom: 16px;
}
.minicart-wrapper .minicart_bottom .minicart_total_txt {
  padding-left: 30%;
  text-align: left;
  float: left;
  width: 60%;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}
.minicart-wrapper .minicart_bottom .minicart_total {
  text-align: right;
  float: right;
  width: 40%;
  line-height: 1;
}
.minicart-wrapper .minicart_bottom .minicart_total .amount.price-container {
  line-height: 1;
}
.minicart-wrapper .minicart_bottom .minicart_total .amount.price-container .price-wrapper {
  line-height: 1;
}
.minicart-wrapper .minicart_bottom .minicart_total .amount.price-container .price-wrapper .price {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}
.minicart-wrapper .minicart_bottom .minicart_checkout {
  float: left;
  width: 100%;
}
.minicart-wrapper .minicart_bottom .minicart_checkout .action.viewcart {
  font-family: 'Lato', sans-serif;
  width: 100%;
  background-color: #917140;
  color: #fff;
  padding: 14px 18px;
  letter-spacing: 1.8px;
  font-size: 12px;
  line-height: 2;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0;
  border: 0;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow: hidden;
  display: block;
  text-align: center;
}
.minicart-wrapper .minicart_bottom .minicart_checkout .action.viewcart span {
  position: relative;
  z-index: 1;
}
.minicart-wrapper .minicart_bottom .minicart_checkout .action.viewcart:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 120%;
  height: 200%;
  left: 0;
  z-index: 1;
  opacity: 0;
  transform: rotate(20deg);
  transform-origin: right;
  transition: opacity 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99), transform 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: #c4a577;
}
.minicart-wrapper .minicart_bottom .minicart_checkout .action.viewcart:hover:before {
  transform: rotateY(0);
  bottom: 0;
  opacity: 1;
}
.minicart-wrapper .minicart_bottom .minicart_checkout .action.viewcart:hover {
  text-decoration: none;
}
.minicart-wrapper .minicart_bottom .minicart_checkout .action.checkout {
  font-size: 14px;
  background: transparent;
  color: #273039;
  float: right;
  display: inline-block;
  vertical-align: top;
  padding: 0 !important;
  line-height: 1;
  text-decoration: underline;
}
a.shoppig-c {
  color: #273039;
  text-decoration: underline;
  font-size: 14px;
}
.continue-shopping-checkout {
  margin-top: 15px;
  padding-bottom: 15px;
}
.mini_total.clear {
  display: none;
}
html[lang="ar"] .minicart-wrapper .minicart-items .minicart .product .product_image > span {
  left: auto;
  right: 0;
}
.mini-cart-products-box .minicart-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  line-height: 1.33;
  font-weight: 500;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .mini-cart-products-box .minicart-heading {
    font-size: 24px;
    padding-right: 48px;
  }
}
.mini-cart-products-box .minicart-heading .close-cart {
  position: absolute;
  top: 0;
  right: 0;
  width: 15px;
  height: 15px;
  background-image: url(../images/icons/X.png);
  background-size: 14px;
  background-repeat: no-repeat;
  opacity: .6;
  cursor: pointer;
}
.mini-cart-products-box .empty-cart-message {
  display: block;
  padding: 30px 0 20px;
  font-weight: normal !important;
  font-family: 'Lato,sans-serif';
  font-size: 16px;
  border-top: solid 1px rgba(39, 48, 57, 0.2);
}
.minicart-background.active,
.minicart-background.active2 {
  position: fixed;
  top: 0;
  background: #00000054;
  width: 100%;
  height: 100%;
  left: 0;
  -webkit-transition: top 0.4s ease-in-out;
  -moz-transition: top 0.4s ease-in-out;
  -o-transition: top 0.4s ease-in-out;
  transition: top 0.4s ease-in-out;
}
html[lang="ar"] .modal-popup.mini-cart-confirm .modal-inner-wrap .modal-content {
  padding-right: 25px;
  padding-left: 7rem;
}
@media (max-width: 1024px) {
  .newsletter_container .content {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .block.newsletter .socialLinks {
    width: 50%;
  }
  .page-header.fixed .minicart-wrapper {
    margin-top: 4px;
  }
}
.category-view .category-image {
  display: inline-block;
  vertical-align: top;
  width: 36.36364%;
  order: 2;
}
.category-view .category-image img {
  width: 100%;
}
.category-view .category-description {
  display: inline-block;
  vertical-align: top;
  width: 63.63636%;
  order: 1;
  padding: 16px;
  font-size: 16px;
  line-height: 1.2;
}
.bar-sortfilter {
  width: 100%;
  float: left;
}
.bar-sortfilter .plp-search-result-head {
  display: none;
}
.bar-sortfilter.fixed-filter {
  min-height: 55px;
}
.bar-sortfilter .filter-toolbar {
  margin: 0 auto;
  padding: 8px 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -moz-box-pack: space-between;
  -ms-flex-pack: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
.bar-sortfilter .filter-toolbar:after {
  display: none;
}
.bar-sortfilter .filter-toolbar .filter-btn,
.bar-sortfilter .filter-toolbar .sort-by-label-filter,
.bar-sortfilter .filter-toolbar .product-list-count .listing-view {
  -webkit-box-flex: 0 1 auto;
  -moz-box-flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  font-size: 14px;
}
.bar-sortfilter .filter-toolbar .filter-btn .filter-btn-show {
  display: block;
  cursor: pointer;
}
.bar-sortfilter .filter-toolbar .filter-btn .filter-btn-hide {
  display: none;
  cursor: pointer;
}
.bar-sortfilter .filter-toolbar .sort-by-label-filter .sort-by-label {
  display: inline-block;
  color: #000;
  vertical-align: top;
  font-family: 'Lato,sans-serif';
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2.4px;
  font-weight: 700;
  margin-top: 4px;
}
.bar-sortfilter .filter-toolbar .sort-by-label-filter .sort-by-label:after {
  content: ':';
  display: inline;
  letter-spacing: 0;
}
.bar-sortfilter .filter-toolbar .sort-by-label-filter .sort-by-label .close-btn {
  display: none;
}
.bar-sortfilter .filter-toolbar .sort-by-label-filter .c_algolia-sorts {
  display: inline-block;
}
.bar-sortfilter .filter-toolbar .sort-by-label-filter .c_algolia-sorts .ais-SortBy {
  border: none;
  background: url(../images/down-arrow.png) no-repeat 96% center / 10px;
  display: inline-block;
  margin: 0;
  height: auto;
  line-height: normal;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 3px;
}
.bar-sortfilter .filter-toolbar .sort-by-label-filter .c_algolia-sorts .ais-SortBy select {
  overflow: hidden;
  font-weight: 400;
  outline: none;
  border: none;
  width: 150px;
  padding: 0;
  background: transparent;
  height: auto;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}
@media only screen and (max-width: 767px) {
  .bar-sortfilter .filter-toolbar .sort-by-label-filter .c_algolia-sorts .ais-SortBy select {
    width: 100%;
  }
}
.bar-sortfilter .filter-toolbar .product-list-count {
  color: #273039;
  font-weight: 700;
  font-family: 'Lato,sans-serif';
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2.4px;
}
.bar-sortfilter .filter-toolbar .listing-view .show-mode .show-3-item {
  display: inline-block;
  height: 16px;
  line-height: 0;
  vertical-align: middle;
  margin-right: 6px;
  cursor: pointer;
}
.bar-sortfilter .filter-toolbar .listing-view .show-mode .show-3-item.active {
  color: #c99d90;
}
.bar-sortfilter .filter-toolbar .listing-view .show-mode .show-4-item {
  display: inline-block;
  height: 16px;
  line-height: 0;
  vertical-align: middle;
  background-size: 8px;
  width: 32px;
  cursor: pointer;
}
.bar-sortfilter .filter-toolbar .listing-view .show-mode .show-4-item.active svg {
  color: #c99d90;
}
.product-list-wrapper {
  position: relative;
  width: 100%;
  left: 0;
  -webkit-transition: left 0.5s, width 0.5s;
  -o-transition: left 0.5s, width 0.5s;
  transition: left 0.5s, width 0.5s;
}
.product-list-wrapper.hidden-sidebar-wapper {
  width: calc(100% + 341px);
  left: -341px;
}
.product-list-wrapper .listing-sidebar {
  padding-right: 16px;
  background: #fff;
  width: 337px;
  display: inline-block;
  vertical-align: top;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.product-list-wrapper .listing-sidebar .mobile-filter-close {
  display: none;
  cursor: pointer;
}
.product-list-wrapper .listing-sidebar.visible-sidebar {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.product-list-wrapper .listing-sidebar.hidden-sidebar {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
.product-list-wrapper .listing-sidebar .ais-root {
  border-bottom: 1px solid rgba(39, 48, 57, 0.2);
  padding-bottom: 8px;
}
.product-list-wrapper .listing-sidebar .ais-root .ais-header {
  padding: 16px 4px 8px;
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  color: #000;
  letter-spacing: 2.4px;
  font-weight: 700;
}
.product-list-wrapper .listing-sidebar .ais-root .ais-header:before {
  content: '';
  width: 6px;
  height: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border: 1px solid #273039;
  border-width: 1px 1px 0 0;
  position: absolute;
  right: 12px;
  top: 20px;
  -webkit-transition-duration: 0.75s;
  transition-duration: 0.75s;
}
.product-list-wrapper .listing-sidebar .ais-root .ais-header.slide-up:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.product-list-wrapper .listing-sidebar .ais-root .ais-body {
  display: block;
  padding-left: 4px;
  padding-right: 4px;
}
.product-list-wrapper .listing-sidebar .ais-root .ais-body .ais-hierarchical-menu--list .ais-hierarchical-menu--item {
  padding-top: 6px;
  padding-bottom: 6px;
}
.product-list-wrapper .listing-sidebar .ais-root .ais-body .ais-refinement-list--item .input-checkbox {
  position: relative;
  padding: 10px 4px 10px 0;
  display: block;
}
.product-list-wrapper .listing-sidebar .ais-root .ais-body .ais-refinement-list--item .input-checkbox input[type=checkbox] {
  position: absolute;
  z-index: -1000;
  left: -1000px;
  clip: rect(0 0 0 0);
  width: 1px;
  margin: -1px;
  border: 0;
  overflow: hidden;
  height: 1px;
  padding: 0;
}
.product-list-wrapper .listing-sidebar .ais-root .ais-body .ais-refinement-list--item .input-checkbox .c_filter-categories-name {
  display: inline;
  width: auto;
  margin: 0;
}
.product-list-wrapper .listing-sidebar .ais-root .ais-body .ais-refinement-list--item .input-checkbox .c_filter-categories-name:before {
  content: "";
  border: solid 1px #777;
  height: 20px;
  width: 20px;
  display: inline-block;
  line-height: 20px;
  box-sizing: border-box;
  margin-right: 10px;
  margin-top: -4px;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.product-list-wrapper .listing-sidebar .ais-root .ais-body .ais-refinement-list--item .input-checkbox input[type=checkbox]:checked + .c_filter-categories-name:before {
  background: #ffffff url(../images/tick-black.svg) no-repeat center center;
}
.product-list-wrapper .listing-sidebar .ais-root .ais-body .ais-refinement-list--item .input-checkbox .c_filter-count {
  font-size: 80%;
  color: #939598;
}
.product-list-wrapper .listing-sidebar .ais-root .ais-body .ais-refinement-list--item.ais-refinement-list--item__active .input-checkbox .c_filter-categories-name:before {
  background: #ffffff url(../images/tick-black.svg) no-repeat center center;
}
.product-list-wrapper .listing-sidebar .ais-root .ais-body .ais-current-refined-values--clear-all {
  font-size: 14px;
  display: block;
}
.product-list-wrapper .listing-sidebar .ais-root .ais-body .ais-current-refined-values--clear-all:before {
  content: "";
  background: url(../images/trash.svg) center center no-repeat;
  width: 12px;
  height: 15px;
  display: inline-block;
  margin-right: 8px;
}
.product-list-wrapper .listing-sidebar .ais-root .ais-body .ais-current-refined-values--clear-all div {
  display: inline-block;
  vertical-align: top;
}
.product-list-wrapper .listing-sidebar .ais-root .ais-body .ais-current-refined-values--item {
  display: inline-block;
  margin: 8px 8px 8px 0;
  position: relative;
  padding: 4px 8px 4px 4px;
  cursor: pointer;
  background: #777;
  color: #fff;
  font-size: 14px;
}
.product-list-wrapper .listing-sidebar .ais-root .ais-body .ais-current-refined-values--item .ais-current-refined-values--link {
  color: #fff;
}
.product-list-wrapper .listing-sidebar .ais-root .ais-body .ais-current-refined-values--item .ais-current-refined-values--link .cross-wrapper {
  display: inline-block;
}
.product-list-wrapper .listing-sidebar .ais-root .ais-body .ais-current-refined-values--item .ais-current-refined-values--link .cross-wrapper:before {
  content: '\f00d';
  font-family: 'FontAwesome';
  display: inline-block;
}
.product-list-wrapper .listing-sidebar .ais-root .ais-body .ais-current-refined-values--item .ais-current-refined-values--link .cross-wrapper .clear-cross {
  display: none;
}
.product-list-wrapper .listing-sidebar .ais-root .ais-body .ais-current-refined-values--item .ais-current-refined-values--link .current-refinement-wrapper {
  display: inline-block;
}
.product-list-wrapper .listing-sidebar .ais-root .ais-body .ais-current-refined-values--item .ais-current-refined-values--link .current-refinement-wrapper .current-refinement-label {
  display: none;
}
.product-list-wrapper .listing-sidebar .ais-root .ais-body .ais-current-refined-values--item .ais-current-refined-values--link:hover {
  text-decoration: none;
  color: #fff !important;
}
.product-list-wrapper .listing-sidebar .ais-root.ais-current-refined-values {
  border-top: 0;
}
.product-list-wrapper .listing-sidebar .ais-root.ais-current-refined-values .ais-header {
  display: none;
}
.product-list-wrapper .listing-sidebar .ais-root.ais-current-refined-values .ais-body {
  display: block !important;
}
.product-list-wrapper .listing-main {
  margin-left: 0;
  width: calc(100% - 341px);
  display: inline-block;
  vertical-align: top;
  padding-left: 8px;
  padding-right: 8px;
}
.product-list-wrapper .listing-main .listing-wrapper .listing-search {
  display: none !important;
}
.product-list-wrapper .listing-main .listing-wrapper .ais-infinite-hits--showmore {
  margin: 8px 0;
}
.product-list-wrapper .listing-main .listing-wrapper .listing-products {
  font-size: 0;
}
.product-list-wrapper .listing-main .listing-wrapper .listing-products .ais-hits--item,
.product-list-wrapper .listing-main .listing-wrapper .listing-products .ais-InfiniteHits-item {
  display: inline-block;
  vertical-align: top;
  width: 33.3333%;
  margin-top: 8px;
  margin-bottom: 16px;
  padding-left: 8px;
  padding-right: 8px;
}
.product-list-wrapper .listing-main .listing-wrapper .listing-products .ais-hits--item .listing-item,
.product-list-wrapper .listing-main .listing-wrapper .listing-products .ais-InfiniteHits-item .listing-item {
  width: 100%;
  display: block;
}
.product-list-wrapper .listing-main .listing-wrapper .listing-products .ais-hits--item .listing-item .action.tocart.primary,
.product-list-wrapper .listing-main .listing-wrapper .listing-products .ais-InfiniteHits-item .listing-item .action.tocart.primary {
  display: none;
}
.product-list-wrapper .listing-main .listing-wrapper .listing-products .ais-hits--item .listing-item .result-wrapper .result-content,
.product-list-wrapper .listing-main .listing-wrapper .listing-products .ais-InfiniteHits-item .listing-item .result-wrapper .result-content {
  text-align: center;
}
.product-list-wrapper .listing-main .listing-wrapper .listing-products .ais-hits--item .listing-item .result-wrapper .result-content .result-thumbnail,
.product-list-wrapper .listing-main .listing-wrapper .listing-products .ais-InfiniteHits-item .listing-item .result-wrapper .result-content .result-thumbnail {
  display: block;
  margin-bottom: 8px;
}
.product-list-wrapper .listing-main .listing-wrapper .listing-products .ais-hits--item .listing-item .result-wrapper .result-content .result-thumbnail a.result,
.product-list-wrapper .listing-main .listing-wrapper .listing-products .ais-InfiniteHits-item .listing-item .result-wrapper .result-content .result-thumbnail a.result {
  display: block;
  text-align: center;
}
.product-list-wrapper .listing-main .listing-wrapper .listing-products .ais-hits--item .listing-item .result-wrapper .result-content a.result,
.product-list-wrapper .listing-main .listing-wrapper .listing-products .ais-InfiniteHits-item .listing-item .result-wrapper .result-content a.result {
  display: block;
}
.product-list-wrapper .listing-main .listing-wrapper .listing-products .ais-hits--item .listing-item .result-wrapper .result-content a.result .result-sub-content,
.product-list-wrapper .listing-main .listing-wrapper .listing-products .ais-InfiniteHits-item .listing-item .result-wrapper .result-content a.result .result-sub-content {
  text-align: center;
}
.product-list-wrapper .listing-main .listing-wrapper .listing-products .ais-hits--item .listing-item .result-wrapper .result-content a.result .result-sub-content .result-title,
.product-list-wrapper .listing-main .listing-wrapper .listing-products .ais-InfiniteHits-item .listing-item .result-wrapper .result-content a.result .result-sub-content .result-title {
  width: 100%;
  font-size: 13px;
  margin-bottom: 8px;
}
.product-list-wrapper .listing-main .listing-wrapper .listing-products .ais-hits--item .listing-item .result-wrapper .result-content a.result .result-sub-content .price-wrapper,
.product-list-wrapper .listing-main .listing-wrapper .listing-products .ais-InfiniteHits-item .listing-item .result-wrapper .result-content a.result .result-sub-content .price-wrapper {
  font-size: 16px;
}
.product-list-wrapper .listing-main .listing-wrapper .listing-products .ais-hits--item .listing-item .result-wrapper .result-content a.result:hover,
.product-list-wrapper .listing-main .listing-wrapper .listing-products .ais-InfiniteHits-item .listing-item .result-wrapper .result-content a.result:hover {
  text-decoration: none;
}
.product-list-wrapper .listing-main .listing-wrapper .listing-products .ais-hits--item .plp-product-desc,
.product-list-wrapper .listing-main .listing-wrapper .listing-products .ais-InfiniteHits-item .plp-product-desc {
  display: none;
}
.product-list-wrapper .listing-main.threeItemPerRow .listing-products .ais-hits--item,
.product-list-wrapper .listing-main.threeItemPerRow .listing-products .ais-InfiniteHits-item {
  display: inline-block;
  vertical-align: top;
  width: 33.3333%;
}
.product-list-wrapper .listing-main.fourItemPerRow .listing-products .ais-hits--item,
.product-list-wrapper .listing-main.fourItemPerRow .listing-products .ais-InfiniteHits-item {
  display: inline-block;
  vertical-align: top;
  width: 25%;
}
.listing-sidebar-mobile {
  width: 100%;
  float: left;
}
.bar-sortfilter.fixed-filter .bar-sortfilter-inner {
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 99;
  background: #fff;
  width: 100%;
  -webkit-box-shadow: #f9f9f9  0 0 3px;
  box-shadow: #f9f9f9  0 0 3px;
  padding-left: 0px;
  padding-right: 0px;
}
.bar-sortfilter.fixed-filter .bar-sortfilter-inner .c_algolia-mob-plp-search-result {
  max-width: 1440px;
  margin: 0 auto;
}
.listing-sidebar.fixed-sidebar .c_filters-mob {
  position: fixed;
  top: 135px;
  width: 341px;
  padding-right: 16px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.listing-sidebar.fixed-sidebar .c_filters-mob .ais-refinement-list--label {
  font-size: 13px;
}
.catalog-category-view .page-footer,
.catalogsearch-result-index .page-footer {
  position: relative;
  z-index: 9;
}
.product-list-wrapper .ais-Panel {
  border: solid 1px #efefef;
  margin-bottom: 15px;
  border-left: 0;
  border-right: 0;
}
.product-list-wrapper .ais-Panel .ais-Panel-header {
  background-color: transparent;
  padding: 7px;
  padding: 16px 4px 8px;
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  color: #000;
  letter-spacing: 2.4px;
  font-weight: 700;
}
.product-list-wrapper .ais-Panel .ais-Panel-header .name {
  text-transform: uppercase;
}
.result-wrapper .price {
  color: #273039 !important;
}
.rheostat-tooltip {
  top: -40px !important;
}
.c_filters-mob-left .ais-RefinementList-label {
  font-size: 15px;
  color: #273039;
}
.c_filters-mob-left span.ais-RefinementList-count:after,
.c_filters-mob-left span.ais-RefinementList-count:before {
  display: none;
}
.c_filters-mob-left .ais-RefinementList-count {
  color: #b8b7b7;
}
.cms-page-view .breadcrumbs {
  max-width: 992px;
}
.cms-page-view .page-main .column.main .cmsContainer {
  padding-bottom: 106px;
  max-width: 992px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.cms-page-view .page-main .column.main .cmsContainer .page-title h1 {
  border-bottom: 1px solid #333;
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.cms-page-view .page-main .column.main .cmsContainer .cmsContentWrapper .cmsContent .cmsContent-main ul {
  padding-left: 16px;
}
.cms-page-view .page-main .column.main .cmsContainer .cmsContentWrapper .cmsContent .cmsContent-main h2 {
  margin: 16px 0;
}
.cms-page-view .page-main .column.main .cmsContainer .cmsContentWrapper .cmsContent .cmsContent-main h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 16px 0;
}
.cms-page-view .page-main .column.main .cmsContainer .cmsContentWrapper .cmsContent .cmsContent-main h3.gray-bg {
  background: #efefef;
  padding: 16px 12px;
}
.cms-page-view .page-main .column.main .cmsContainer .cmsContentWrapper .cmsContent .cmsContent-main p {
  margin-bottom: 16px;
}
.cms-page-view .page-main .column.main .cmsContainer .cmsContentWrapper .cmsContent .cmsContent-main .box {
  border: 1px solid #efefef;
  min-height: 280px;
}
.cms-page-view .page-main .column.main .cmsContainer .cmsContentWrapper .cmsContent .cmsContent-main .box .box-title {
  background: #efefef;
  padding: 8px;
}
.cms-page-view .page-main .column.main .cmsContainer .cmsContentWrapper .cmsContent .cmsContent-main .box .box-title h3 {
  margin: 0;
  font-weight: 500;
}
.cms-page-view .page-main .column.main .cmsContainer .cmsContentWrapper .cmsContent .cmsContent-main .box .box-content {
  padding: 8px;
}
.cms-page-view .page-main .column.main .cmsContainer .cmsContentWrapper .cmsContent .cmsContent-main .csm-grid .grid-items .grid-item {
  width: 32%;
  margin-bottom: 16px;
  float: left;
}
.cms-page-view .page-main .column.main .cmsContainer .cmsContentWrapper .cmsContent .cmsContent-main .csm-grid .grid-items .grid-item:nth-child(2) {
  margin-left: 2%;
  margin-right: 2%;
}
.cms-page-view .page-main .column.main .cmsContainer .cmsContentWrapper .cmsContent .cmsContent-main .gray-bg {
  background: #f7f7f7;
}
.cms-page-view .page-main .column.main .cmsContainer .cmsContentWrapper .cmsContent .cmsContent-main .cms-box {
  width: 100%;
}
.cms-page-view .page-main .column.main .cmsContainer .cmsContentWrapper .cmsContent .cmsContent-main .cms-box .left-box {
  float: left;
  width: 49%;
}
.cms-page-view .page-main .column.main .cmsContainer .cmsContentWrapper .cmsContent .cmsContent-main .cms-box .right-box {
  float: right;
  width: 49%;
}
.cms-page-view .page-main .column.main .cmsContainer .cmsContentWrapper .cmsContent .cmsContent-main .cms-box .box {
  min-height: initial;
}
.cms-page-view .page-main .column.main .cmsContainer .cmsContentWrapper .cmsContent .cmsContent-main .cms-box .box-inner {
  padding: 16px;
}
.cms-page-view .page-main .column.main .cmsContainer .cmsContentWrapper .cmsContent .cmsContent-main .bd-table {
  border-collapse: collapse;
  width: 100%;
  border-spacing: 0;
  max-width: 60%;
  margin: 0 auto 16px;
}
.cms-page-view .page-main .column.main .cmsContainer .cmsContentWrapper .cmsContent .cmsContent-main .bd-table td {
  border: 1px solid #000;
}
.mainContainer {
  margin-left: auto;
  margin-right: auto;
  max-width: 1472px;
  padding-left: 16px;
  padding-right: 16px;
  float: none;
}
.fullwidth {
  width: 100%;
  float: left;
  position: relative;
}
.fullwidth .halfwidth {
  width: 50%;
  float: left;
}
.fullwidth .oneforthwidth {
  width: 25%;
  float: left;
  padding-right: 4px;
}
.fullwidth .oneforthwidth:last-child {
  padding-right: 0;
}
.fullwidth .oneforthwidth .home-product img {
  width: 100%;
}
.fullwidth .onethirdwidth {
  width: calc(100% / 3);
  float: left;
  padding-left: 8px;
  padding-right: 8px;
}
.fullwidth .twothirdhwidth {
  width: calc(100% * 2/3);
  float: left;
  padding-left: 8px;
  padding-right: 8px;
}
.home-top-section {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .home-top-section {
    margin-bottom: 20px;
  }
}
.home-top-section .mobile-image {
  display: none;
}
.home-top-section .caption .title {
  font-size: 39.625px;
  letter-spacing: 1.65104px;
  text-transform: uppercase;
  color: #fff;
}
.home-top-section .caption .btn {
  background: #000;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 13.2083px;
  text-transform: uppercase;
  font-weight: 400;
  width: 35%;
  max-width: 328px;
  display: inline-block;
  min-height: 45px;
  line-height: 45px;
  margin-bottom: 8px;
}
.home-top-section .caption .btn:hover {
  text-decoration: none;
  cursor: pointer;
}
.home-categories-section {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .home-categories-section {
    margin-bottom: 20px;
  }
}
.home-categories-section .home-product {
  text-align: center;
}
.home-categories-section .home-product .btn {
  display: inline-block;
  padding: 8px;
  text-decoration: underline;
}
.home-categories-section .home-product .btn:hover {
  text-decoration: none;
}
.home-spotlight-section.mainContainer {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 10px;
}
.home-spotlight-section .spotlight-title {
  background: #000;
  line-height: 50px;
  color: #fff;
  letter-spacing: 0.825521px;
  text-transform: uppercase;
  font-family: cormorant garamond;
  font-style: normal;
  font-size: 39px;
  margin-right: 8px;
  padding-left: 8px;
  padding-right: 8px;
  font-weight: 300;
  position: relative;
}
.home-spotlight-section .spotlight-title:after {
  content: "";
  display: inline-block;
  width: 20%;
  height: 2px;
  background: #fff;
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 50%;
}
.home-spotlight-section .fullwidth .single-product {
  width: 35%;
}
.home-spotlight-section .fullwidth .products-gallary {
  width: 65%;
  padding-left: 48px;
}
.home-spotlight-section .fullwidth .products-gallary .fullwidth {
  margin-bottom: 16px;
}
.home-spotlight-section .fullwidth .products-gallary .fullwidth a {
  display: block;
}
.home-spotlight-section .fullwidth .products-gallary .fullwidth a img {
  max-width: 100%;
}
.home-spotlight-section .fullwidth .products-gallary .fullwidth .onethirdwidth h4 {
  line-height: 0.8;
  text-align: left;
  font-size: 78px;
  letter-spacing: 2px;
  text-transform: none;
  font-weight: 500;
  font-style: italic;
  font-family: cormorant garamond;
  color: #000000;
  position: relative;
  padding-bottom: 32px;
}
.home-spotlight-section .fullwidth .products-gallary .fullwidth .onethirdwidth h4 span {
  font-size: 38px;
  display: block;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1;
  margin-left: -48px;
  margin-bottom: -20px;
}
.home-spotlight-section .fullwidth .products-gallary .fullwidth .onethirdwidth h4:before {
  background-color: #000;
  width: 55%;
  height: 2px;
  max-width: 232px;
  content: "";
  position: absolute;
  bottom: 0;
  left: -40%;
  display: block;
}
.home-spotlight-section .fullwidth .products-gallary .fullwidth .onethirdwidth p {
  font-size: 18px;
  padding: 0;
  max-width: 256px;
}
.home-spotlight-section .fullwidth .products-gallary .fullwidth .onethirdwidth .btn {
  background: #000;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 13.2083px;
  text-transform: uppercase;
  font-weight: 400;
  width: 100%;
  line-height: 48px;
  margin-bottom: 8px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.825521px;
  padding: 0;
  max-width: 256px;
}
.home-spotlight-section .fullwidth .products-gallary .fullwidth .onethirdwidth .btn:hover {
  text-decoration: none;
  cursor: pointer;
}
.home-favourites-section {
  background: #f5f1ec;
  padding-top: 8px;
  padding-bottom: 8px;
}
.home-favourites-section .mainContainer {
  max-width: 992px;
  margin: 0 auto;
  float: none;
  width: 60%;
}
.home-favourites-section .mainContainer .section-title {
  font-size: 45px;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  letter-spacing: 0px;
  line-height: 1.4;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  padding: 32px 0;
}
.home-favourites-section .mainContainer .section-title span {
  display: inline-block;
}
.home-favourites-section .mainContainer .section-title:before {
  background-color: #000;
  width: 22%;
  height: 1px;
  max-width: 232px;
  content: "";
  position: absolute;
  top: 50%;
  left: -20%;
  display: block;
}
.home-favourites-section .mainContainer .section-title:after {
  background-color: #000;
  width: 22%;
  height: 1px;
  max-width: 232px;
  content: "";
  position: absolute;
  top: 50%;
  right: -20%;
  left: initial;
  display: block;
}
.home-favourites-section .mainContainer .fullwidth {
  text-align: center;
}
.home-favourites-section .mainContainer .fullwidth .halfwidth {
  padding-left: 8px;
  padding-right: 8px;
}
.home-favourites-section .mainContainer .fullwidth .halfwidth h4 {
  font-size: 14px;
  text-align: center;
  font-weight: 300;
  margin: 8px 0;
  color: #000;
}
.home-favourites-section .mainContainer .fullwidth .halfwidth p .btn {
  display: inline-block;
  padding: 8px;
  text-decoration: underline;
  font-size: 15px;
  font-weight: 500;
  color: #000;
}
@media (max-width: 1024px) {
  .home-spotlight-section .spotlight-title {
    font-size: 24px;
    line-height: 30px;
  }
  .home-spotlight-section .spotlight-title:after {
    width: 10%;
  }
  .home-spotlight-section .fullwidth .products-gallary {
    padding-left: 2%;
  }
  .home-spotlight-section .fullwidth .products-gallary .fullwidth .onethirdwidth h4 {
    font-size: 24px;
  }
  .home-spotlight-section .fullwidth .products-gallary .fullwidth .onethirdwidth h4 span {
    font-size: 16px;
  }
  .home-spotlight-section .fullwidth .products-gallary .fullwidth .onethirdwidth p {
    font-size: 11px;
  }
  .home-spotlight-section .fullwidth .products-gallary .fullwidth .onethirdwidth p .btn {
    font-size: 12px;
    line-height: 30px;
  }
  .home-favourites-section .mainContainer .section-title {
    font-size: 24px;
  }
}
.panel.header {
  display: none;
}
.search-background {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
  z-index: 111;
  opacity: .1;
  display: none;
}
.search-form-close {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  width: 20px;
  height: 20px;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  border: 0;
  outline: none;
  background-image: url(../images/close-icon.svg);
  background-repeat: no-repeat;
  opacity: .4;
  background-size: 17px;
  background-position: center right;
  position: absolute;
  top: 50% !important;
  right: 15px !important;
  transform: translateY(-50%);
  z-index: 9999;
}
@media only screen and (max-width: 767px) {
  .form.minisearch {
    display: inline-block;
    width: 89%;
  }
}
.minicart-items .price-container {
  margin: 2px 0;
}
.icon use {
  fill: transparent;
  transition: all 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
  .minicart-background:not(.page-products .minicart-background) {
    display: none !important;
  }
  .main-header-container .header-container-center {
    flex: 0;
  }
  .main-header-container .header-user-links li:link.wishlist {
    display: none;
  }
  .main-header-container .search-container-minicart .header-user-links li {
    margin: 0 11px;
  }
  .main-header-container .header-language-switch {
    margin-right: 4px;
  }
  .main-header-container .minicart-wrapper {
    margin-left: 11px !important;
  }
  html[lang="ar"] .header-language-switch {
    margin-left: 4px;
    margin-right: 0;
  }
}
@media only screen and (max-width: 335px) {
  html .main-header-container .search-container-minicart .header-user-links li {
    margin: 0 6px;
  }
  html .main-header-container .minicart-wrapper {
    margin-left: 6px !important;
  }
}
@media only screen and (max-width: 351px) {
  .main-header-container .search-container-minicart .header-user-links li {
    margin: 0 8px;
  }
  .main-header-container .minicart-wrapper {
    margin-left: 8px !important;
  }
}
.search-container-wapper {
  padding: 15px;
  max-width: 100%;
  z-index: 199;
  position: absolute;
  width: 100%;
  top: 78px;
  background: #fff;
  border-bottom: 1px solid #e8e9ea;
  display: none;
}
@media only screen and (max-width: 767px) {
  .search-container-wapper {
    top: 52px;
    padding: 0;
  }
  .search-container-wapper .block-search {
    padding: 15px;
  }
}
.fixed .search-container-wapper {
  padding-top: 15px;
  top: 100px;
}
@media only screen and (max-width: 767px) {
  .fixed .search-container-wapper {
    padding-top: 0;
  }
}
.fixed .search-form-close {
  top: 15px;
}
.store-background-box {
  position: fixed;
  background-color: rgba(136, 136, 136, 0.8);
  width: 100%;
  top: 0;
  height: 100%;
  z-index: 110002021;
}
.store-select-box {
  position: fixed;
  max-width: 500px;
  width: 100%;
  padding: 20px;
  display: block;
  text-align: center;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 110002021;
}
@media only screen and (max-width: 767px) {
  .store-select-box {
    max-width: calc(100% - 30px);
  }
}
.store-select-box div.close_store {
  width: 20px;
  height: 20px;
  background-image: url('../images/icons/X.png');
  background-repeat: no-repeat;
  background-size: 16px;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.store-select-box .store-header-content {
  margin-top: 10px;
  pointer-events: none;
}
.store-select-box .store-header-content .logo > img {
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .store-select-box .store-header-content .logo {
    display: none;
  }
}
.store-select-box .store-header-content .heading_1 {
  padding: 30px 0 15px;
  text-align: center;
  line-height: 28px;
  color: #27303f;
  font-family: 'Cormorant Garamond';
  font-weight: 400;
  font-size: 28px;
}
@media only screen and (max-width: 767px) {
  .store-select-box .store-header-content .heading_1 {
    padding: 0 0 15px;
    text-align: left;
  }
}
.store-select-box .store-switcher-options {
  text-align: left;
  margin: 15px auto 0;
  width: 70%;
}
@media only screen and (max-width: 767px) {
  .store-select-box .store-switcher-options {
    width: 100%;
    margin-top: 0;
  }
}
.store-select-box .store-switcher-options .country-selector label {
  text-align: left;
  font-size: 13px;
  color: #979797;
  font-family: Lato,Arial;
  font-weight: 400;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
}
.store-select-box .store-switcher-options .country-selector select.country_options {
  margin: 3px 0 0;
  height: 50px;
  width: 100%;
  font-size: 16px;
  font-family: Lato;
  border: 1px solid #000;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fff;
  background-position: right;
  background-image: url('../images/icons/BlackDropDownArrowWithFrameV3.png');
  border-right: 0;
  cursor: pointer;
  letter-spacing: 1.5px;
  -webkit-appearance: none;
  appearance: none;
}
.store-select-box .store-switcher-options .language-switcher {
  margin-top: 25px;
}
.store-select-box .store-switcher-options .language-switcher label {
  text-align: left;
  font-size: 13px;
  color: #979797;
  font-family: Lato,Arial;
  font-weight: 400;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
}
.store-select-box .store-switcher-options .language-switcher select.language_select {
  height: 50px;
  width: 100%;
  font-size: 16px;
  font-family: Lato;
  border: 1px solid #000;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fff;
  background-position: right;
  background-image: url('../images/icons/BlackDropDownArrowWithFrameV3.png');
  border-right: 0;
  cursor: pointer;
  letter-spacing: 1.5px;
  -webkit-appearance: none;
  appearance: none;
}
.store-select-box .store-switcher-options .language-switcher .language-container {
  margin-top: 3px;
}
.store-select-box .store-switcher-options .store-action-box {
  margin: 30px auto 20px;
  width: 100%;
  text-align: center;
}
.store-select-box .store-switcher-options .store-action-box button {
  width: 100%;
  background: #273039;
  font-size: 12px;
  font-family: Arial;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background 0.75s ease-in-out;
}
.store-select-box .store-switcher-options .store-action-box button:hover {
  background: #000 !important;
  color: #fff !important;
}
.store-select-box .store-switcher-options .store-action-box .canel-btn {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: capitalize;
  font-weight: 800;
  line-height: normal;
  height: initial;
  margin-top: 30px;
  text-decoration: underline;
  cursor: pointer;
}
li.nav-main-item.store-change {
  padding: 24px 32px;
}
li.nav-main-item.store-change .nav-current-store {
  padding: 0;
  font-family: 'Cormorant Garamond', serif;
  font-feature-settings: lnum;
  font-variant-numeric: lining-nums;
  font-size: 25px;
  font-weight: 500;
  position: relative;
  text-transform: capitalize;
  color: transparent;
  background-repeat: no-repeat;
  background-size: 25px 27px;
}
li.nav-main-item.store-change .nav-current-store.ae {
  background-image: url(../images/icons/flag/ae-flag.png) !important;
}
li.nav-main-item.store-change .nav-current-store.kw {
  background-image: url(../images/icons/flag/kw-flag.png) !important;
}
li.nav-main-item.store-change .nav-current-store.sa {
  background-image: url(../images/icons/flag/sa-flag.png) !important;
}
li.nav-main-item.store-change .nav-current-store.om {
  background-image: url(../images/icons/flag/om-flag.png) !important;
}
li.nav-main-item.store-change .nav-current-store.bh {
  background-image: url(../images/icons/flag/bh-flag.png) !important;
}
li.nav-main-item.store-change .nav-current-store.qa {
  background-image: url(../images/icons/flag/qa-flag.png) !important;
}
body:after {
  display: none;
  content: url(../images/icons/arrow-left.svg) url(../images/icons/arrow-left-w.svg) url(../images/icons/arrow-right.svg) url(../images/icons/arrow-right-w.svg) url(../images/icons/BlackDropDownArrowWithFrameV3.png) url(../images/icons/cross-out-of-stock.svg) url(../images/icons/icon_search.svg) url(../images/icons/locator.svg) url(../images/icons/my-account.svg) url(../images/icons/my-account-fill.svg) url(../images/icons/X.png);
}
.cms-storelocator .breadcrumbs {
  display: none;
}
.store-address-section {
  max-width: 400px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .store-address-section {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.store-address-section .store-locator-title {
  margin: 40px 0;
  text-align: center;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: 'Cormorant Garamond Bold';
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .store-address-section .store-locator-title {
    font-size: 36px;
  }
}
.store-address-section ul.store-locator-blocks {
  margin: 0;
  padding: 0;
}
.store-address-section ul.store-locator-blocks li {
  list-style: none;
  margin: 15px 0;
  padding: 25px 15px;
  border: 1px solid #ddd;
}
.store-address-section ul.store-locator-blocks li p {
  letter-spacing: .8px;
}
.store-address-section ul.store-locator-blocks li p.mall-name {
  font-weight: 700;
  color: #2a7ab0;
}
.wishlist-popup-box {
  position: fixed;
  z-index: 9999;
  background: #fff;
  width: 35%;
  right: 20px;
  top: 94px;
}
@media only screen and (max-width: 767px) {
  .wishlist-popup-box {
    width: 100%;
    right: 0;
    left: 0;
    top: 70px;
  }
}
.wishlist-popup-box:before {
  content: '';
  position: absolute;
  top: -7px;
  right: 74px;
  width: 12px;
  height: 12px;
  border: none;
  border-width: 1px 0 0 1px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media only screen and (max-width: 767px) {
  .wishlist-popup-box:before {
    display: none;
  }
}
.wishlist-content-block {
  padding: 32px;
  position: relative;
  width: 100%;
}
.wishlist-content-block .heading-box {
  font-size: 30px;
  line-height: 1.33;
  font-weight: 500;
  letter-spacing: normal;
  margin-bottom: 16px;
  padding-right: 48px;
  font-family: 'Cormorant Garamond';
  color: #273039;
  position: relative;
}
.wishlist-content-block .heading-box .close-box {
  position: absolute;
  background: url(../images/icons/X.png);
  width: 12px;
  height: 12px;
  display: block;
  background-repeat: no-repeat;
  background-size: 12px;
  top: 0;
  right: 0;
  cursor: pointer;
}
.wishlist-content-block .product-content-box {
  display: block;
  padding-top: 16px;
}
.wishlist-content-block .product-content-box > div {
  display: inline-block;
  vertical-align: top;
}
.wishlist-content-block .product-content-box > div.left-box {
  width: 33.33333%;
}
@media only screen and (max-width: 767px) {
  .wishlist-content-block .product-content-box > div.left-box {
    width: 25%;
  }
}
.wishlist-content-block .product-content-box > div.right-box {
  width: 65.66667%;
  padding: 0 16px;
}
@media only screen and (max-width: 767px) {
  .wishlist-content-block .product-content-box > div.right-box {
    width: 63.66667%;
  }
}
.wishlist-content-block .product-content-box > div.right-box .product-name {
  font-size: 30px;
  font-family: "Cormorant Garamond", serif;
  text-transform: capitalize;
  display: block;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .wishlist-content-block .product-content-box > div.right-box .product-name {
    font-size: 20px;
  }
}
.wishlist-content-block .product-content-box > div.right-box .product-price {
  font-family: Lato,sans-serif;
  text-transform: capitalize;
  display: block;
  font-weight: 500;
  color: #000;
  font-size: 24px;
}
.wishlist-content-block .goto-wishlist {
  text-align: center;
  margin: 20px 0 0;
}
.wishlist-content-block .goto-wishlist a {
  display: block;
  width: 100%;
  letter-spacing: 1.8px;
  font-size: 12px !important;
  line-height: 2;
  text-transform: uppercase;
  font-family: 'Lato';
  font-weight: 600 !important;
  font-family: 'LATO,SANS-SERIF';
  position: relative;
  overflow: hidden;
  padding: 13px 34px;
}
.wishlist-content-block .goto-wishlist a span {
  position: relative;
  z-index: 11;
}
.wishlist-content-block .goto-wishlist a:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 120%;
  height: 200%;
  left: 0;
  z-index: 1;
  opacity: 0;
  transform: rotate(20deg);
  transform-origin: right;
  transition: opacity 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99), transform 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: #0f1316;
  background-color: #273039;
}
.wishlist-content-block .goto-wishlist a:hover {
  background-color: #0f1316;
  text-decoration: none;
}
.wishlist-content-block .goto-wishlist a:hover:before {
  transform: rotateY(0);
  bottom: 0;
  opacity: 1;
}
.wishlist-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  transition-duration: .75s;
  -webkit-transform: translateZ(0);
  -webkit-transition-duration: .75s;
  display: none;
  z-index: 119;
}
html[lang="ar"] li.link.wishlist.o2 .counter.qty {
  right: unset;
  left: -8px;
}
html[lang="ar"] .wishlist-content-block .heading-box .close-box {
  right: unset;
  left: 0;
}
html[lang="ar"] .wishlist-content-block .heading-box {
  padding-left: 48px;
  padding-right: unset;
}
@media only screen and (min-width: 768px) {
  html[lang="ar"] .wishlist-popup-box {
    left: 20px;
    right: unset;
  }
}
html[lang="ar"] .wishlist-popup-box:before {
  left: 74px;
  right: unset;
}
html[lang="ar"] .mini-cart-products-box .minicart-heading {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  html[lang="ar"] .mini-cart-products-box .minicart-heading {
    padding-left: 48px;
    padding-right: 0;
  }
}
html[lang="ar"] .mini-cart-products-box .minicart-heading span.close-cart {
  right: unset;
  left: 0;
}
html[lang="ar"] .mini-cart-products-box .empty-cart-message {
  text-align: right;
}
@media (max-width: 767px) {
  .ais-InfiniteHits-item .result-wrapper,
  .ais-Hits-item .result-wrapper {
    padding: 0 !important;
  }
}
.page-print .logo {
  display: block;
  float: none;
  text-align: left;
}
@media print {
  * {
    -webkit-filter: none !important;
    background: transparent !important;
    color: #000000 !important;
    filter: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline !important;
  }
  pre,
  blockquote {
    border: 1px solid #999999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  .table-wrapper table {
    width: 100%;
    table-layout: fixed;
  }
  .table-wrapper table td {
    width: auto;
  }
  .table-wrapper table > tfoot > tr:first-child {
    border-top: 1px solid #999999;
  }
  .box,
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 1cm;
  }
  .block-content,
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  .block-content {
    page-break-before: avoid;
  }
  .block-title,
  h2,
  h3 {
    page-break-after: avoid;
  }
  .nav-toggle {
    display: none !important;
  }
  .sidebar,
  .nav-sections,
  .header.content > *[class],
  .panel.wrapper > *[class],
  .footer.content > *[class] {
    display: none;
  }
  .logo,
  .footer .copyright {
    display: block !important;
    margin: 10px 0;
  }
  .order-details-items .order-items .order-gift-message:not(.expanded-content) {
    height: auto;
    visibility: visible;
  }
  .column.main {
    float: none !important;
    width: 100% !important;
  }
  .breadcrumbs {
    margin: 0 auto;
    text-align: right;
  }
  .footer.content {
    padding: 0;
  }
  .hidden-print {
    display: none !important;
  }
}
