@charset "UTF-8";
:root {
  --clrTheme: #977d32;
  --clrThemeLight: #e6d391;
}

.h1, .h2, .h3, h1, h2, h3 {
  color: black;
}

a {
  color: #666;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

a:hover {
  text-decoration: none;
  color: var(--clrTheme);
}

a[disabled] {
  pointer-events: none;
  cursor: default;
}

.btn-theme {
  color: #fff;
  background-color: var(--clrTheme);
  border-color: var(--clrTheme);
}

.btn-theme.active, .btn-theme.focus,
.btn-theme:active, .btn-theme:focus,
.btn-theme:hover {
  color: #fff;
  background-color: #0f0f0f;
  border-color: #0f0f0f;
}

section, [class*=section-] {
  width: 100%;
  float: left;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.bbyes {
  border-bottom: 1px solid #eee;
  padding-bottom: 60px;
}

.sectionTitle {
  width: 100%;
  float: left;
  margin: 0 0 30px;
}

.sectionTitle .title {
  font-size: 36px;
  line-height: 42px;
  margin: 0;
  color: #444;
  font-weight: 400;
  text-transform: uppercase;
}

.sectionTitle .title span {
  display: inline-block;
  position: relative;
  padding: 0 0 7px;
}

.sectionTitle .title span::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 1px;
  background-color: var(--clrTheme);
  margin-left: -25px;
  left: 50%;
  top: 100%;
}

.sectionTitle .title + p {
  padding: 12px 0 0;
  margin: 0;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--clrTheme);
  font-family: Asap, sans-serif;
}

@media (max-width: 767px) {
  .sectionTitle .title {
    font-size: 24px;
    line-height: 28px;
  }
}
#main-navigation, .header.affix, .header.affix .navbar-default .navbar-nav > li > a, .navbar-brand, .push_nav li a, a, ul.top-right li a:hover {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header.affix .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:hover {
  color: #07aaa5;
  background-color: transparent;
}

.header {
  width: 100%;
  float: left;
  position: relative;
}

.headerCovid {
  background: var(--clrThemeLight);
  text-align: center;
  font-size: 16px;
  padding: 5px 0;
  color: #000;
}

.headerCovid a {
  color: #fff;
  text-decoration: underline;
}

.headerCovid a:hover {
  color: #fff;
  text-decoration: none;
}

.headerTop {
  background-color: #ebebed;
}

.headerTop .topNavList {
  margin: 0 -10px;
  padding: 0;
  list-style: none;
}

.headerTop .topNavList > li {
  margin: 0;
  padding: 0 10px;
  position: relative;
}

.headerTop .topNavList > li.note {
  left: -40px;
}

.headerTop .topNavList > li.socialLinks > a {
  margin: 0;
  line-height: 30px;
}

.headerTop .topNavList > li.socialLinks > a + a {
  margin-left: 5px;
}

.headerTop .topNavList > li .dropdown > a,
.headerTop .topNavList > li > a {
  display: inline-block;
  font-size: 12px;
  line-height: 24px;
  padding: 0 8px;
  margin: 3px 0;
  text-transform: uppercase;
  border-radius: 30px;
  border: 1px solid transparent;
  color: #000;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.headerTop .topNavList > li .dropdown > a:hover,
.headerTop .topNavList > li > a:hover {
  color: tan;
  background-color: rgba(255, 255, 255, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.headerTop .topNavList > li .dropdown > a span,
.headerTop .topNavList > li > a span {
  display: inline-block;
}

.headerTop .topNavList > li .dropdown > a .fa,
.headerTop .topNavList > li > a .fa {
  font-size: 12px;
}

.headerTop .topNavList > li .dropdown > a .fa-facebook,
.headerTop .topNavList > li > a .fa-facebook {
  color: #3c5a99;
}

.headerTop .topNavList > li .dropdown > a .fa-instagram,
.headerTop .topNavList > li > a .fa-instagram {
  color: #f77737;
}

.headerTop .topNavList > li .dropdown > a .fa + span,
.headerTop .topNavList > li > a .fa + span {
  margin-left: 5px;
}

.headerTop .topNavList > li .dropdown-menu {
  right: 0;
  left: inherit;
  padding: 0;
  margin: 0;
  border-radius: 2px;
}

.headerTop .topNavList > li.searchBox .dropdown-menu {
  width: 200px;
}

.headerTop .topNavList > li .dropdown-menu:before {
  content: "▲";
  position: absolute;
  right: 15px;
  top: -15px;
  color: #ccc;
  text-shadow: 0 -1px 1px 0 #d5d5d5;
  font-size: 14px;
  font-family: arial;
}

.headerTop .topNavList > li .dropdown-menu li {
  width: 100%;
  float: left;
  border-top: 1px solid #ddd;
  padding: 0;
}

.headerTop .topNavList > li .dropdown-menu li:first-child {
  border-top: none;
}

.headerTop .topNavList > li .dropdown-menu li a {
  display: block;
  padding: 8px 15px;
}

.header-topstrip li address {
  display: inline-block;
  margin-bottom: 0;
  line-height: none;
  background: #333;
  padding: 1px 6px;
  color: #fff;
  border-radius: 50%;
}

@media (min-width: 992px) {
  .header .headerMid {
    margin-bottom: 50px;
  }

  .navOverlay {
    width: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    border-top: 1px solid #d5d5d5;
    border-bottom: 1px solid #d5d5d5;
  }

  .navOverlay.navFixed {
    bottom: auto;
    top: 0;
    position: fixed;
    background-color: #fff;
    box-shadow: 0 0 10px #d5d5d5;
  }

  .navFavicon {
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
  }

  .navFavicon a {
    display: inline-block;
  }

  .navFavicon img {
    height: 50px;
    width: auto;
    padding-top: 10px;
  }

  .navOverlay.navFixed .navFavicon {
    height: 50px;
    opacity: 1;
    visibility: visible;
  }

  .mainNavList {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
  }

  .mainNavList > li {
    margin: 0;
    padding: 0;
    font-family: Asap, sans-serif;
    display: inline-block;
  }

  .mainNavList > li > a {
    display: block;
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 35px;
  }

  .mainNavList > li.otherLogo,
.mainNavList > li.rolexClock {
    position: absolute;
    top: -130px;
  }

  .mainNavList > li.otherLogo {
    left: 15px;
  }

  .mainNavList > li.rolexClock {
    right: 15px;
  }

  .mainNavList > li.rolexClock span {
    display: block;
    box-shadow: 0 0 4px #d5d5d5;
  }

  .mainNavList > li.siteSearch .dropdown-menu {
    width: 200px;
  }

  .mainNavList > li .megamenuWapper {
    max-height: 0;
    overflow: hidden;
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    top: 100%;
    background-color: #fff;
    padding: 0;
    transition: all 0.8s linear;
  }

  .mainNavList > li .container-fluid {
    padding: 20px 40px;
    border-top: 1px solid #d5d5d5;
    border-bottom: 1px solid #d5d5d5;
  }

  .mainNavList > li:hover .megamenuWapper {
    max-height: 1000px;
  }

  .navCatList {
    margin: 0 -15px;
    padding: 0;
    list-style: none;
    text-align: left;
  }

  .navCatList > li {
    flex: 1 1 25%;
    max-width: 25%;
    padding: 0 15px;
  }

  .navCatList > li > a {
    display: block;
    font-size: 20px;
    font-weight: 100;
    color: var(--clrTheme);
    text-transform: uppercase;
    font-family: "Open Sans Condensed";
    position: relative;
    margin: 0 0 15px;
  }

  .navCatList > li > a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 1px;
    background-color: var(--clrTheme);
  }

  .navCatList > li.navCatImage {
    flex: 1 1 100%;
    max-width: 500px;
  }

  .navCatList > li.navCatImage img {
    width: 100%;
  }

  .navCatList > li.navCatImage > a::before {
    display: none;
  }

  .navCatList > li > .navCatChildList {
    margin: 0;
    padding: 10px 0 0;
    list-style: none;
    width: 100%;
  }

  .navCatList > li > .navCatChildList > li {
    margin: 0;
    padding: 10px 0 0;
  }

  .navCatList > li > .navCatChildList > li:first-child {
    padding-top: 0;
  }

  .navCatList > li > .navCatChildList > li > a {
    display: inline-block;
    color: #595959;
    font-size: 14px;
    text-transform: uppercase;
  }

  .navCatList > li > .navCatChildList > li > a:hover {
    color: var(--clrTheme);
  }
}
@media (max-width: 990px) {
  .header .headerMid .container {
    padding: 0;
  }

  .headerMid {
    padding-right: 54px;
  }

  .toggleMenu {
    width: 54px;
    padding: 12px;
    display: inline-block;
  }

  .toggleMenu span {
    width: 100%;
    height: 1px;
    display: block;
    background-color: #000;
  }

  .toggleMenu span:nth-child(2) {
    margin: 10px 0;
  }

  .siteLogo img {
    height: 34px;
  }

  .navOverlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
  }

  .mainNavigation {
    width: 280px;
    background-color: #fff;
    position: relative;
    left: -100%;
  }

  .mainNavigation, .navOverlay {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }

  .mainNavigation .container {
    padding: 0;
    width: 100%;
  }

  .mainNavigation .container-fluid {
    padding: 0;
  }

  .mainNavigation .navFavicon {
    display: none;
  }

  .mainNavHeader {
    height: 45px;
    border-bottom: 1px solid #d5d5d5;
  }

  .mainNavHeader .logo {
    max-width: 120px;
    padding: 10px;
  }

  .mainNavHeader .closeMe {
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 44px;
    font-size: 30px;
  }

  .mainNavList {
    margin: 0;
    padding: 0;
    list-style: none;
    height: calc(100vh - 45px);
    overflow-y: auto;
  }

  .mainNavList > li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #d5d5d5;
    position: relative;
  }

  .mainNavList > li > a {
    display: block;
    padding: 8px 12px;
  }

  .mainNavList > li.ddYes {
    height: 36px;
    overflow: hidden;
  }

  .mainNavList > li.ddYes.show {
    height: auto;
  }

  .mainNavList > li.ddYes > a {
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
  }

  .mainNavList > li.ddYes > a::before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 1px solid #a5a5a5;
    border-bottom: 1px solid #a5a5a5;
    transform: rotate(45deg);
    float: right;
    margin-top: 2px;
  }

  .mainNavList > li.rolexClock {
    text-align: center;
  }

  .mainNavList > li .megamenuWapper {
    overflow: hidden;
    position: relative;
    margin: 0;
    z-index: 1;
  }

  .mainNavList > li .megamenuWapper > .toggleSubMenu {
    display: block;
    padding: 8px 12px;
    height: 36px;
    margin: 0;
  }

  .navCatList {
    margin: 0 10px;
    padding: 0;
    list-style: none;
    background-color: #f9f9f9;
  }

  .navCatList > li {
    margin: 0;
    padding: 0;
    border-top: 1px solid #d5d5d5;
  }

  .navCatList > li > a {
    display: block;
    padding: 8px 12px;
  }

  .navCatChildList {
    margin: 0;
    padding: 0 10px 10px;
    list-style: none;
  }

  .navCatChildList > li {
    margin: 0;
    padding: 0;
    border: 1px solid #d5d5d5;
  }

  .navCatChildList > li:not(:first-child) {
    border-top: none;
  }

  .navCatChildList > li > a {
    display: block;
    padding: 6px 10px;
  }

  .navCatChildList > li:nth-child(odd) > a {
    background-color: rgba(0, 0, 0, 0.1);
  }

  .navCatChildList > li:nth-child(even) > a {
    background-color: rgba(0, 0, 0, 0.05);
  }

  .showMainNav .navOverlay {
    z-index: 999;
    opacity: 1;
    visibility: visible;
  }

  .showMainNav .mainNavigation {
    left: 0;
  }
}
@media (max-width: 767px) {
  .header-topstrip {
    text-align: center;
    padding-right: 0;
  }

  .header-topstrip li span {
    display: none;
  }

  .header-topstrip li .fa {
    margin-right: 10px;
  }

  #main-navigation {
    background-color: #1b1d1f;
  }

  .header.affix .navbar-brand, .navbar-brand {
    display: inline-block;
    padding: 10px 0;
    max-width: 188px;
  }

  .header.affix .navbar-default .navbar-nav > li > a, .navbar-default .navbar-nav > li > a {
    padding: 10px 0;
  }

  .header.affix ul.top-right, ul.top-right {
    margin: 0;
    position: relative;
    right: 37px;
    margin-top: -2px;
  }

  .header.affix ul.top-right, ul.top-right {
    top: 14px;
  }

  .headerCovid {
    font-size: 12px;
  }
}
.ratingStarsGray, .ratingStarsGrayHalf, .ratingStarsGreen, .ratingStarsYellow {
  width: 18px;
  height: 18px;
  background-image: url(../images/icons/rating-starts.png);
  background-repeat: no-repeat;
}

.ratingStarsYellow {
  background-position: -54px 0;
}

.ratingStarsGreen {
  background-position: -36px 0;
}

.ratingStarsGray {
  background-position: -18px 0;
}

.ratingStarsGrayHalf {
  background-position: 0 0;
}

.columnFull {
  width: 100%;
  float: left;
  margin: 0 0 25px;
  padding: 0 0;
  clear: both;
}

.columnCenter {
  width: 968px;
  margin: 0 auto;
  padding: 0 15px;
}

.jewe-head {
  text-align: center !important;
  margin-bottom: 20px !important;
}

.text-spa {
  padding-right: 10px !important;
}

.jewe-img {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  float: left;
}

.jewe-detail {
  width: 312px;
  height: auto;
  margin: 0;
  padding: 0;
  float: left;
}

#header {
  width: 100%;
  height: 118px;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #fff;
}

.search-button-con {
  margin: 4px 0 0;
  padding: 0 0;
  cursor: pointer;
  position: relative;
  display: block;
  line-height: 30px;
}

.search-button-con span {
  padding: 0 0;
  white-space: nowrap;
  background: #fff url(../images/icons/maharaja-search-button.png) no-repeat center center;
  display: block;
  overflow: hidden;
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  transition: all 0.5s ease 0s;
}

.search-button-con span:hover {
  border: 1px solid #333;
}

.search-button-con:hover span {
  border-color: #333;
  background-color: #fff;
}

.search-button-con .search-field-new {
  background-color: #fff;
  border: 1px solid #333;
  display: none;
  float: left;
  height: auto;
  margin: 0;
  padding: 8px 8px;
  position: absolute;
  right: 0;
  top: 31px;
  width: 238px;
  z-index: 10000;
}

.search-button-con:hover .search-field-new {
  display: block;
  transition: all 0.5s ease 0s;
}

.search-button-con .search-field-new input[type=text] {
  width: 196px;
  height: 24px;
  margin: 0;
  padding: 2px 5px;
  float: left;
  background-color: #fff;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  border-left: 1px solid #333;
  border-right: none;
  font-size: 11px;
  text-transform: capitalize;
  color: #aaa;
  vertical-align: top;
}

.search-button-con .search-field-new input[type=submit] {
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  float: left;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  border-right: 1px solid #333;
  border-left: none;
  background: url(../images/icons/maharaja-search-button.png) no-repeat top left;
  cursor: pointer;
  vertical-align: top;
}

.search-button-con .search-field-new input[type=submit]:hover {
  opacity: 0.8;
}

.social-icon1 {
  height: 40px;
  margin: 23px 0 16px;
  padding: 0;
  width: 100%;
  text-align: right;
}

.social-icon1 ul {
  margin: 0;
  padding: 0;
}

.social-icon1 ul li {
  list-style: none;
  margin: 0;
  padding: 3px 1px;
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.social-icon1 ul li + li {
  margin: 2px 7px 0;
}

.social-icon1 .contactNo {
  display: block;
  font-size: 18px;
  letter-spacing: 3px;
  margin-top: 3px;
}

.social-icon1 .contactNo .fa {
  font-size: 22px;
  color: #000;
  margin-top: 3px;
  vertical-align: top;
}

.main-serach-box {
  margin: 0;
  padding: 0 0 0;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.main-serach-box input[type=text] {
  width: 129px;
  height: 18px;
  margin: -7px 0 0;
  padding: 4px 36px 4px 5px;
  float: left;
  background-color: #fff;
  border: none;
  font-size: 15px;
  color: #808285;
  border: 1px solid #808285;
}

.main-serach-box input[type=text]:focus {
  border: 1px solid #06f;
}

.main-serach-box input[type=submit] {
  width: 31px;
  height: 24px;
  margin: 0;
  padding: 0;
  float: left;
  background: url(../images/icons/search-button.jpg) no-repeat;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 1px;
  top: -5px;
}

#banner {
  width: 100%;
  margin: 0 0 30px;
  padding: 0;
  float: left;
  position: relative;
  overflow: hidden;
}

#banner .journeyBeginshere {
  width: 14px;
  height: 19px;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 10px;
  left: 49%;
  z-index: 10000;
}

#banner .black-bg-opacity {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background: url(../images/banner-black-opacity.png) repeat;
}

#banner .designer-jewelry {
  width: 70%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 20%;
  left: 15%;
  z-index: 10000;
}

#banner .small-banner {
  width: 90%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 70%;
  left: 5%;
  z-index: 10000;
}

.main-small-banner img {
  width: 100%;
  margin: 0;
  padding: 0;
}

#home-container {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  float: left;
}

.owner-of-maharaja {
  clear: both;
  margin: 10px 0;
  padding: 0;
}

.about-maharaja {
  clear: both;
  margin: 0 10px;
  padding: 0;
}

.about-maharaja-text {
  clear: both;
  margin: 0 0 0;
  padding: 0;
  text-align: center;
  font-size: 14px;
  line-height: 26px;
  color: #777;
}

.testimonial-con {
  clear: both;
  height: auto;
  margin: 40px 0 0;
  padding: 70px 50px;
  background-color: #ebebeb;
  border-radius: 8px;
  position: relative;
}

.testimonial-con .coma-starts {
  width: 49px;
  height: 40px;
  margin: 0;
  padding: 0;
  background: url(../images/maharaja-coma-starts.png) no-repeat;
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonial-con .coma-end {
  width: 49px;
  height: 40px;
  margin: 0;
  padding: 0;
  background: url(../images/maharaja-coma-ends.png) no-repeat;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.testimonial-con .columnTmnl {
  clear: both;
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 90px !important;
}

.testimonial-con .columnTmnl ul li {
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
  color: #666;
  list-style: none;
}

.product-text {
  clear: both;
  margin: 10px 10px 20px;
  padding: 0;
  text-align: left;
  color: #797979;
}

.most-wanted-shdow {
  background: url(../images/most-wanted-shdow.jpg) no-repeat center top;
  padding: 50px 0 0;
}

.home-gallery {
  clear: both;
  height: auto;
  margin: 0;
  padding: 0;
}

.education-gallery {
  height: auto;
  margin: 0 0 0;
  padding: 0;
  clear: both;
}

a.view-all {
  margin: 0;
  padding: 10px 20px;
  background-color: #666;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  line-height: 50px;
}

a.view-all:hover {
  background-color: #a93e3e;
  color: #fff;
  text-decoration: none;
}

.education-home-page-shadow {
  background: url(../images/gallery-shadow.png) no-repeat center top;
  padding: 50px 0 0;
}

.education-img-container {
  height: 256px;
  margin: 0;
  padding: 0 0 17px;
  clear: both;
  background: url(../images/education-product-shadow.png) no-repeat bottom center;
}

.education-img-container img {
  margin: 0;
  border: none;
}

.education-img-container img:hover {
  opacity: 0.8;
}

.education-detail-container {
  height: 150px;
  margin: 0;
  padding: 0 0 17px;
  clear: both;
  background: url(../images/education-product-shadow.png) no-repeat bottom center;
  position: relative;
}

.education-detail-container .edu-head-home {
  margin: 0;
  padding: 5px 0;
  clear: both;
  font-size: 17px;
  font-weight: 400;
  color: #666;
  text-align: center;
  text-transform: capitalize;
}

.education-detail-container .edu-detail-text {
  margin: 0;
  padding: 5px 45px 0;
  clear: both;
  font-size: 16px;
  color: #b1b1b1;
  text-align: center;
  line-height: 24px;
  font-weight: 400;
}

.education-detail-container .edu-read-more {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
  position: absolute;
  left: 0;
  bottom: 25px;
  text-align: center;
}

.education-detail-container .edu-read-more a {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  text-decoration: none;
  text-transform: uppercase;
}

.education-detail-container .edu-read-more a:hover {
  color: #a93e3e;
  text-decoration: none;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  min-height: 100%;
  padding: 10px 0 15px;
  clear: both;
}

.education-container {
  margin: 0;
  padding: 0;
  clear: both;
}

.edu-color-stone {
  width: 559px;
  height: 647px;
  margin: 20px 50px 30px 0;
  padding: 0 0 26px;
  float: right;
  position: relative;
  background: url(../images/education-img-shadow.png) no-repeat center bottom;
}

.edu-color-stone img {
  margin: 0;
  padding: 0;
  border: 1px solid #a1a1a1;
}

.edu-color-stone .about-edu-image {
  width: 300px;
  height: auto;
  margin: 0;
  padding: 15px 25px;
  position: absolute;
  bottom: 100px;
  left: -270px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #a1a1a1;
  display: none;
}

.edu-color-stone:hover .about-edu-image {
  display: block;
}

.edu-color-stone .about-edu-image h3 {
  font-size: 22px;
  color: #7f8082;
}

.edu-color-stone .about-edu-image p {
  font-size: 14px;
  line-height: 20px;
}

.edu-social-icon {
  margin: 30px 0 0;
  padding: 0;
  text-align: right;
}

.edu-social-icon.product-detail-social {
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 0;
  text-align: left;
  float: left;
}

.edu-social-icon ul {
  margin: 0;
  padding: 0;
}

.edu-social-icon ul li {
  margin: 0 12px 10px 0 !important;
  padding: 0 6px 0 0 !important;
  display: inline-block;
  background: 0 0 !important;
  float: none;
  height: 26px !important;
}

.edu-social-icon ul li.bor-right-pad-no {
  padding: 0 0 0 5px;
  border-right: none;
}

.edu-color-stone-new {
  width: 559px;
  height: 647px;
  margin: 20px 0 30px 0;
  padding: 0 0 26px;
  float: left;
  position: relative;
  background: url(../images/education-img-shadow.png) no-repeat center bottom;
}

.edu-color-stone-new img {
  margin: 0;
  padding: 0;
  border: 1px solid #a1a1a1;
}

.edu-color-stone-new .about-edu-image-new {
  width: 860px;
  height: auto;
  margin: 0;
  padding: 15px 25px;
  position: absolute;
  top: 30px;
  left: 30px;
  display: block;
}

.edu-color-stone-new .about-edu-image-new h1.about-edu-head {
  width: 479px;
  height: auto;
  margin: 0;
  padding: 15px 0 15px 25px;
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid #a1a1a1;
  border-top: 1px solid #a1a1a1;
  border-left: 1px solid #a1a1a1;
  border-right: none;
  float: left;
  font-size: 22px;
  color: #5d5d5d;
  line-height: 24px;
}

.edu-color-stone-new .about-edu-image-new .about-edu-text {
  width: 300px;
  height: auto;
  margin: 0;
  padding: 15px 25px;
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid #a1a1a1;
  border-top: 1px solid #a1a1a1;
  border-right: 1px solid #a1a1a1;
  border-left: none;
  display: block;
  float: left;
}

.edu-color-stone-new .about-edu-image-new .about-edu-text p {
  font-size: 14px;
  line-height: 20px;
}

.edu-social-icon {
  margin: 30px 0 0;
  padding: 0;
  text-align: right;
}

.edu-social-icon-new.product-detail-social-new {
  margin: 15px 0 0 5px;
  padding: 0;
  text-align: left;
  float: left;
}

.edu-social-icon-new ul {
  margin: 0;
  padding: 0;
}

.edu-social-icon-new ul li {
  margin: 0;
  padding: 0 6px 0 2px;
  display: inline-block;
  border-right: 1px solid #e7e7e7;
}

.edu-social-icon-new ul li.bor-right-pad-no {
  padding: 0 0 0 5px;
  border-right: none;
}

.product-list-container {
  width: 100%;
  margin: 0;
  padding: 0;
  float: left;
}

.filter-new {
  font-weight: 400;
  text-align: left;
  display: block;
  clear: both;
}

.filter-new ul {
  margin: 0;
  padding: 0;
}

.filter-new ul li {
  margin: 0 13px 10px 0;
  padding: 6px 0 0 6px;
  list-style: none;
  float: left;
  height: 28px;
  background-color: #666;
}

.filter-new ul li > label.selectDropDown {
  position: relative;
  display: inline-block;
  height: 34px;
  min-width: 175px;
}

.filter-new ul li > label.selectDropDown:after {
  content: " ";
  width: 35px;
  height: 34px;
  border-left: 1px solid #666;
  right: 0;
  top: -6px;
  position: absolute;
  pointer-events: none;
  background: url(../images/updown-img2.jpg) no-repeat center center;
}

.filter-new ul li > label.selectDropDown:hover:after {
  content: " ";
  width: 35px;
  height: 34px;
  border-left: 1px solid #666;
  right: 0;
  top: -6px;
  position: absolute;
  pointer-events: none;
  background: url(../images/updown-img1.jpg) no-repeat center center;
}

.filter-new ul li > label.selectDropDown > select {
  padding: 0;
  margin: 0;
  background-color: #666;
  color: #fff;
  border: none;
  outline: 0;
  display: block;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.filter-new ul li > label.selectDropDown > select:hover {
  background-color: #666;
}

.filter-new1 {
  font-weight: 400;
  text-align: left;
  display: block;
  clear: both;
}

.filter-new1 ul {
  margin: 0;
  padding: 0;
}

.filter-new1 ul li {
  margin: 10px 10px 0 10px;
  padding: 0;
  list-style: none;
  width: 18%;
  float: left;
  height: 34px;
  background-color: #fff;
}

.filter-new1 ul li:first-child {
  margin-left: 0;
}

.filter-new1 ul li .dropdonw-filter-main {
  padding: 0 0 10px;
  margin: 0;
  position: relative;
}

.filter-new1 ul li .dropdonw-filter-main .dropdonw-filter {
  padding: 5px 10px;
  margin: 0;
  background: #fff url(../images/updown-img2.jpg) no-repeat 100% -4px;
  color: #222;
  height: 32px;
  min-width: 213px;
  font-size: 12px;
  letter-spacing: 0.5px;
  line-height: 24px;
  border: 1px solid #ddd;
}

.filter-new1 ul li .dropdonw-filter-main .dropdonw-filter:hover {
  background: #fff url(../images/updown-img2.jpg) no-repeat 100% -4px;
  cursor: pointer;
}

.filter-new1 ul li .dropdonw-filter-main ol {
  padding: 6px 10px;
  margin: 0;
  background-color: #fff;
  width: 100%;
  position: absolute;
  top: 40px;
  max-height: 310px;
  overflow-y: auto;
  left: 0;
  box-shadow: 0 0 10px #ccc;
  z-index: 99999;
  display: none;
}

.filter-new1 ul li .dropdonw-filter-main:hover ol {
  display: block;
}

.filter-new1 ul li .dropdonw-filter-main ol li {
  padding: 0 !important;
  margin: 0;
  width: 100%;
  list-style: none;
  display: block;
  font-size: 14px;
  color: #222;
  text-transform: capitalize;
  cursor: pointer;
  line-height: 22px;
  float: none;
  background-color: #fff;
  border-bottom: none;
}

.filter-new1 ul li .dropdonw-filter-main ol li:hover {
  color: #666;
}

.filter-new1 ul li {
  font-size: 12px !important;
}

.filter-new1 ul li .dropdonw-filter-main .dropdonw-filter-hover-for-iphone {
  padding: 6px 10px 0;
  margin: 0;
  background: #666 url(../images/updown-img1.jpg) no-repeat 240px -4px;
  cursor: pointer;
  color: #fff;
  height: 28px;
  width: 265px;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.filter-new1 ul li .dropdonw-filter-main .dropdonw-filter-hover-for-iphone ol {
  display: block;
}

.product-listing-prod {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.product-listing {
  background-color: #fff;
  display: block;
  text-align: center;
  position: relative;
  margin-bottom: 16px;
  border: 1px solid #e7e7e7;
}

.product-listing img {
  margin: 0;
  width: 100%;
}

.product-listing .pro-detail-con {
  width: 556px;
  height: 606px;
  margin: 0;
  padding: 0;
  position: absolute;
  background: #fff;
  display: none;
  z-index: 1;
  overflow: hidden;
  border: 1px solid #231f20;
  top: 0;
}

.product-listing .pro-detail-con.top-side {
  top: -1px !important;
}

.product-listing .pro-detail-con.bottom-side {
  bottom: 0 !important;
  top: inherit !important;
}

.product-listing .pro-detail-con.left-side {
  left: 0 !important;
}

.product-listing .pro-detail-con.right-side {
  right: 0 !important;
}

.product-listing .pro-detail-con .pro-detail-main-con {
  width: 100%;
  height: 100%;
  float: left;
  margin: 0;
  padding: 0;
}

.product-listing .pro-detail-con .pro-detail-main-con .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  overflow: hidden;
  z-index: 999;
}

.product-listing .pro-detail-con .pro-detail-main-con .close-btn img {
  max-width: 100%;
}

.product-listing .pro-detail-con .pro-detail-main-con .pro-img-container {
  display: block;
  height: 74%;
}

.product-listing .pro-detail-con .pro-detail-main-con .social-icon-main {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.product-listing .pro-detail-con .pro-detail-main-con .social-icon-main a.detail-link {
  margin: 10px 0 0;
  padding: 10px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  background-color: #333;
  float: right;
}

.product-listing .pro-detail-con .pro-detail-main-con .social-icon-main a.detail-link:hover {
  background-color: #666;
  color: #fff;
  text-decoration: none;
}

.product-listing .pro-detail-con .pro-detail-main-con .product-name-con {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 55px;
  text-align: center;
}

.product-listing .pro-detail-con .pro-detail-main-con .product-name-con .pro-name-con a {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  text-decoration: none;
  text-transform: uppercase;
}

.product-listing .pro-detail-con .pro-detail-main-con .product-name-con .pro-name-con a:hover {
  color: #a93e3e;
  text-decoration: none;
}

.product-listing .pro-detail-con .pro-detail-main-con .product-name-con .pro-name-con1 {
  clear: both;
  height: auto;
  margin: 67px 0 0;
  padding: 0 10px;
  text-align: center;
}

.product-listing .pro-detail-con .pro-detail-main-con .product-name-con .pro-name-con1 a {
  font-size: 14px;
  font-weight: 400;
  color: #222;
  text-decoration: none;
  text-transform: capitalize;
}

.product-listing .pro-detail-con .pro-detail-main-con .product-name-con .pro-name-con1 a:hover {
  color: #a93e3e;
  text-decoration: none;
}

.product-listing .pro-detail-con .pro-detail-main-con .product-name-con .pro-about-con {
  clear: both;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: center;
}

.product-listing .pro-detail-con .pro-detail-main-con .product-name-con .pro-about-con a {
  font-size: 18px;
  color: #666;
  text-decoration: none;
  margin: 5px 0 0;
  display: inline-block;
  text-transform: capitalize;
  font-weight: 400;
}

.product-listing .pro-detail-con .pro-detail-main-con .product-name-con .pro-about-con a:hover {
  color: #a93e3e;
  text-decoration: none;
}

.product-listing .edu-pro-detail-con {
  width: 968px;
  height: auto;
  margin: 0;
  padding: 0 0 30px;
  position: absolute;
  display: none;
  z-index: 10000;
  top: 238px;
  left: -1px;
}

.product-listing .edu-pro-detail-con.sec-diamond {
  left: -245px !important;
}

.product-listing .edu-pro-detail-con.third-diamond {
  left: -489px !important;
}

.product-listing .edu-pro-detail-con.forth-diamond {
  left: -734px !important;
}

.product-list-container-new .oneHalf {
  margin-right: 0.5%;
  width: 49.3% !important;
}

.product-list-container-new .oneFourth {
  float: left;
  padding: 0;
  margin: 0 5px 5px;
  width: 24%;
}

.product-list-container-new .oneFourth.specialProduct {
  width: 472px !important;
}

.product-list-container-new .oneFourth.specialProduct > .product-listing {
  height: 460px;
}

.product-list-container-new .oneFourth:nth-child(2n+0) .pro-detail-con {
  left: 0;
  top: 0;
}

.product-list-container-new .oneFourth:nth-child(3n+0) .pro-detail-con {
  right: 0;
  top: 0;
}

.product-list-container-new .oneFourth:nth-child(4n+0) .pro-detail-con {
  left: 0;
  bottom: 0;
  top: auto;
}

.product-list-container-new .oneFourth:nth-child(21n-4) .pro-detail-con, .product-list-container-new .oneFourth:nth-child(21n-8) .pro-detail-con, .product-list-container-new .oneFourth:nth-child(5n+0) .pro-detail-con {
  right: 0;
  bottom: 0;
  top: auto;
}

.product-listing .pro-detail-con-small {
  width: 225px;
  height: 230px;
  margin: 0;
  border: 1px solid #ad9f71;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  display: none;
  z-index: 1000;
}

.product-listing:hover .pro-detail-con-small {
  display: block;
}

.product-listing .pro-detail-con-small .pro-detail-con-small-img {
  width: 225px;
  height: 165px;
  padding: 0;
  margin: 0;
  float: left;
  display: table;
}

.product-listing .pro-detail-con-small .pro-detail-con-small-img a {
  display: table-cell;
  vertical-align: middle;
}

.product-listing .pro-detail-con-small .about-product {
  width: 225px;
  height: 65px;
  padding: 0;
  margin: 0;
  float: left;
  background-color: #f7f2e4;
}

.product-listing .pro-detail-con-small .about-product .pro-name-con2 {
  clear: both;
  height: auto;
  margin: 10px 0 0;
  padding: 0;
  text-align: center;
}

.product-listing .pro-detail-con-small .about-product .pro-name-con2 a {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  text-decoration: none;
  text-transform: uppercase;
}

.product-listing .pro-detail-con-small .about-product .pro-name-con2 a:hover {
  color: #a93e3e;
  text-decoration: none;
}

.product-listing .pro-detail-con-small .about-product .pro-name-con3 {
  clear: both;
  height: auto;
  margin: 5px 0 0;
  padding: 0;
  text-align: center;
}

.product-listing .pro-detail-con-small .about-product .pro-name-con3 a {
  font-size: 16px;
  font-weight: 400;
  color: #222;
  text-decoration: none;
  text-transform: capitalize;
}

.product-listing .pro-detail-con-small .about-product .pro-name-con3 a:hover {
  color: #a93e3e;
  text-decoration: none;
}

.product-listing-new {
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 4px 4px 4px 4px;
  text-align: center;
  box-shadow: 2px 2px 3px #e7e7e7;
  height: 607px !important;
  display: block;
  position: relative;
  margin-bottom: 5px;
  padding-top: 1px;
  padding-bottom: 1px;
}

.product-listing-new img {
  max-width: 100%;
}

.product-listing-new .pro-detail-con {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 0 29px;
  position: absolute;
  background: url(../images/listting-pro-shadow.png) no-repeat center bottom;
  display: none;
  z-index: 9;
}

.product-listing-new .pro-detail-con.top-side {
  top: 0 !important;
}

.product-listing-new .pro-detail-con.bottom-side {
  bottom: -28px !important;
}

.product-listing-new .pro-detail-con.left-side {
  left: 0 !important;
}

.product-listing-new .pro-detail-con.right-side {
  right: 0 !important;
}

.product-listing-new .pro-detail-con .pro-detail-main-con {
  clear: both;
  height: 605px;
  margin: 0;
  padding: 0;
  background-color: #fff;
  border: 1px solid #666;
}

.product-listing-new .pro-detail-con .pro-detail-main-con .close-btn {
  clear: both;
  height: 40px;
  margin: 0;
  padding: 10px 3% 0 0;
  text-align: right;
}

.product-listing-new .pro-detail-con .pro-detail-main-con .close-btn img {
  width: auto;
}

.product-listing-new .pro-detail-con .pro-detail-main-con .pro-img-container {
  clear: both;
  height: 68%;
  margin: 0;
  padding: 0;
}

.product-listing-new .pro-detail-con .pro-detail-main-con .product-name-con {
  clear: both;
  height: auto;
  margin: 0;
  padding: 20px 0 0;
  line-height: 24px;
}

.product-listing-new .pro-detail-con .pro-detail-main-con .product-name-con .pro-name-con {
  clear: both;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: center;
}

.product-listing-new .pro-detail-con .pro-detail-main-con .product-name-con .pro-name-con a {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  text-decoration: none;
  text-transform: uppercase;
}

.product-listing-new .pro-detail-con .pro-detail-main-con .product-name-con .pro-name-con a:hover {
  color: #a93e3e;
  text-decoration: none;
}

.product-listing-new .pro-detail-con .pro-detail-main-con .product-name-con .pro-name-con1 {
  clear: both;
  height: auto;
  margin: 0 0 0;
  padding: 0 10px;
  text-align: center;
}

.product-listing-new .pro-detail-con .pro-detail-main-con .product-name-con .pro-name-con1 a {
  font-size: 14px;
  font-weight: 400;
  color: #222;
  text-decoration: none;
  text-transform: capitalize;
}

.product-listing-new .pro-detail-con .pro-detail-main-con .product-name-con .pro-name-con1 a:hover {
  color: #a93e3e;
  text-decoration: none;
}

.product-listing-new .pro-detail-con .pro-detail-main-con .product-name-con .pro-about-con {
  clear: both;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: center;
}

.product-listing-new .pro-detail-con .pro-detail-main-con .product-name-con .pro-about-con a {
  font-size: 18px;
  color: #666;
  text-decoration: none;
  margin: 5px 0 0;
  display: inline-block;
  text-transform: capitalize;
  font-weight: 400;
}

.product-listing-new .pro-detail-con .pro-detail-main-con .product-name-con .pro-about-con a:hover {
  color: #a93e3e;
  text-decoration: none;
}

.product-listing-new .pro-detail-con .pro-detail-main-con .social-icon-main {
  clear: both;
  height: 50px;
  margin: 0;
  padding: 0;
  bottom: 0;
}

.product-listing-new .pro-detail-con .pro-detail-main-con .social-icon-main a.detail-link {
  margin: 0;
  padding: 10px;
  position: absolute;
  right: -1px;
  bottom: 0;
  text-align: right;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  background-color: #333;
}

.product-listing-new .pro-detail-con .pro-detail-main-con .social-icon-main a.detail-link:hover {
  background-color: #666;
  color: #fff;
  text-decoration: none;
}

.product-listing-new .pro-detail-con-small-new {
  width: 225px;
  height: 230px;
  margin: 0;
  border: 1px solid #ad9f71;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  display: none;
  z-index: 1000;
}

.product-listing-new:hover .pro-detail-con-small-new {
  display: block;
}

.product-listing-new .pro-detail-con-small-new .pro-detail-con-small-new-img {
  width: 225px;
  height: 165px;
  padding: 0;
  margin: 0;
  float: left;
  display: table;
  text-align: center;
}

.product-listing-new .pro-detail-con-small-new .pro-detail-con-small-new-img a {
  display: table-cell;
  vertical-align: middle;
  cursor: pointer;
}

.product-listing-new .pro-detail-con-small-new .pro-detail-con-small-new-img a img {
  width: 100%;
}

.product-listing-new .pro-detail-con-small-new .about-product {
  width: 225px;
  height: 65px;
  padding: 0;
  margin: 0;
  float: left;
  background-color: #f7f2e4;
}

.product-listing-new .pro-detail-con-small-new .about-product .pro-name-con2 {
  clear: both;
  height: auto;
  margin: 10px 0 0;
  padding: 0;
  text-align: center;
}

.product-listing-new .pro-detail-con-small-new .about-product .pro-name-con2 a {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  text-decoration: none;
  text-transform: uppercase;
}

.product-listing-new .pro-detail-con-small-new .about-product .pro-name-con2 a:hover {
  color: #a93e3e;
  text-decoration: none;
}

.product-listing-new .pro-detail-con-small-new .about-product .pro-name-con3 {
  clear: both;
  height: auto;
  margin: 5px 0 0;
  padding: 0;
  text-align: center;
}

.product-listing-new .pro-detail-con-small-new .about-product .pro-name-con3 a {
  font-size: 16px;
  font-weight: 400;
  color: #222;
  text-decoration: none;
  text-transform: capitalize;
}

.product-listing-new .pro-detail-con-small-new .about-product .pro-name-con3 a:hover {
  color: #a93e3e;
  text-decoration: none;
}

.categoryListing .categoryBlock {
  display: block;
  border: 1px solid #d5d5d5;
  margin: 0 0 30px;
  position: relative;
}

.categoryListing .categoryBlock a {
  display: block;
}

.categoryListing .categoryBlock a img {
  width: 100%;
}

.categoryListing .categoryBlock .title {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 0;
  padding: 12px 10px;
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.new-light-box-con {
  width: 966px;
  height: auto;
  margin: 0;
  padding: 0 0 30px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
}

.new-light-box-con .close-btn {
  clear: both;
  margin: 0;
  padding: 10px 10px 0 0;
  text-align: right;
}

.new-light-box-con .close-btn img {
  width: auto;
  box-shadow: none;
}

.new-light-box-con .new-pro-img {
  clear: both;
  height: 360px;
  margin: 0 0 0 60px;
  padding: 0;
  text-align: left;
  position: relative;
}

.new-light-box-con .new-pro-img img {
  height: 100%;
  margin: 0;
  box-shadow: none;
}

.new-light-box-con .new-pro-img .light-social-icon {
  margin: 0;
  padding: 0;
  text-align: right;
  position: absolute;
  top: 15px;
  right: 60px;
  z-index: 10000;
}

.new-light-box-con .new-pro-img .light-social-icon ul {
  margin: 0;
  padding: 0;
}

.new-light-box-con .new-pro-img .light-social-icon ul li {
  margin: 0 7px 0 0;
  padding: 0;
  list-style: none;
  float: left;
}

.new-light-box-con .new-pro-head {
  clear: both;
  height: auto;
  margin: 0 0 20px;
  padding: 0;
  font-size: 18px;
  text-align: left;
  color: #666;
  text-transform: capitalize;
}

.new-light-box-con .sku {
  font-size: 14px;
  color: #666;
  clear: both;
  margin: 0 50px 20px 0;
  padding: 0;
  line-height: 22px;
  text-align: left;
}

.new-light-box-con .price-con {
  font-size: 30px;
  color: #666;
  clear: both;
  margin: 0 50px 20px 0;
  padding: 0;
  line-height: 22px;
  text-align: left;
}

.new-light-box-con a.detail-link {
  margin: 35px 0 0 0;
  padding: 15px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  background-color: #333;
  float: left;
  line-height: 20px;
}

.new-light-box-con a.detail-link:hover {
  background-color: #666;
  color: #fff;
  text-decoration: none;
}

.baxter-left-con {
  clear: both;
  margin: 0;
  padding: 0;
}

.baxter-left-con .baxter-new-pro-img {
  clear: both;
  height: 650px;
  margin: 0 20px 0 0;
  padding: 0;
  border: 1px solid #ccc;
  position: relative;
  width: 100%;
  text-align: center;
}

.baxter-left-con .baxter-new-pro-img .baxter-social-icon {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 15px;
  right: 12px;
  z-index: 1000;
}

.baxter-left-con .baxter-new-pro-img .baxter-social-icon ul {
  margin: 0;
  padding: 0;
}

.baxter-left-con .baxter-new-pro-img .baxter-social-icon ul li {
  margin: 0 7px 0 0;
  padding: 0;
  list-style: none;
  float: left;
}

.baxter-left-con .baxter-new-pro-img img {
  max-width: 100%;
}

.baxter-left-con .baxter-new-pro-img .baxter-thumbnail {
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 6px;
  left: 6px;
  z-index: 0;
}

.baxter-left-con .baxter-new-pro-img .baxter-thumbnail ul {
  margin: 0;
  padding: 0;
}

.baxter-left-con .baxter-new-pro-img .baxter-thumbnail ul li {
  margin: 0 14px 0 0;
  padding: 0;
  list-style: none;
  float: left;
  width: 67px;
}

.baxter-left-con .baxter-new-pro-img .baxter-thumbnail ul li a img {
  margin: 0;
  border: 1px solid #ccc;
}

.baxter-left-con .baxter-new-pro-img .baxter-thumbnail ul li a img:hover {
  opacity: 0.5;
  transition: all 0.2s linear 0s;
}

.baxter-right-con {
  clear: both;
  margin-top: 20px;
  padding: 0;
}

.baxter-right-con .baxter-pro-head {
  clear: both;
  height: auto;
  margin: 0 0 10px;
  padding: 0;
  font-size: 24px;
  color: #000;
  text-transform: capitalize;
}

.baxter-right-con .baxter-detail-con {
  font-size: 14px;
  color: #222;
  clear: both;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 22px;
  text-align: left;
}

.baxter-right-con .baxter-detail-con select {
  width: 110px;
  height: 26px;
  line-height: 24px;
  margin: 0 5px;
  padding: 2px;
  border: 1px solid #ccc;
}

.baxter-right-con .baxter-list-con {
  clear: both;
  margin: 0 0 10px 0;
  padding: 0 0 62px;
  line-height: 22px;
  text-align: left;
  border-bottom: 1px solid #ccc;
  position: relative;
}

.baxter-right-con .baxter-list-con ul {
  margin: 0;
  padding: 0;
}

.baxter-right-con .baxter-list-con ul li {
  margin: 2px 0 0 15px;
  padding: 0;
  font-size: 14px;
  color: #222;
}

.baxter-right-con .baxter-list-con p {
  margin: 10px 0 0;
  padding: 0;
  font-size: 14px;
  color: #222;
}

.baxter-right-con .baxter-more-link {
  width: 100%;
  height: 60px;
  margin: 10px 0 0 0;
  padding: 0;
  background: url(../images/white-bg-opacity.png) repeat;
  position: absolute;
  left: 0;
  bottom: 24px;
}

.baxter-right-con .baxter-more-link a {
  margin: 36px 0 0;
  padding: 1px 8px;
  float: right;
  font-size: 10px;
  color: #222;
  text-decoration: none;
  background-color: #e5e5e5;
  cursor: pointer;
}

.baxter-right-con .baxter-more-link a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #ccc;
}

.productFeaturesTable {
  margin: 0 0 30px;
}

#diamond-specs {
  width: 100%;
  border: 1px solid #ddd;
  border-right: none;
  border-bottom: none;
}

#diamond-specs td {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 6px;
}

.baxter-right-con .baxter-price-con {
  font-size: 30px;
  color: #222;
  clear: both;
  margin: 0 30px 20px 0;
  padding: 0;
  line-height: 22px;
  text-align: left;
}

.baxter-right-con .baxter-price-con span {
  font-size: 14px;
  color: #999;
  display: block;
  margin: 10px 0 10px 0;
  padding: 0;
}

.baxter-right-con .baxter-price-con span.cut-price {
  font-size: 22px;
  color: #999;
  display: inline-block;
  margin: 0 0 0 10px;
  text-decoration: line-through;
}

.baxter-detail-con-head {
  clear: both;
  color: #666;
  font-size: 18px;
  line-height: 18px;
  margin: 0 0 0;
  padding: 0;
  text-align: left;
}

.baxter-button-con {
  clear: both;
  margin: 20px 0 10px;
  padding: 0 0 0;
}

.baxter-button-con ul {
  margin: 0;
  padding: 0;
}

.baxter-button-con ul li {
  margin: 0 10px 10px 0;
  padding: 0;
  list-style: none;
  float: left;
}

.baxter-button-con ul li.for-add-to-cart {
  width: 100%;
}

.add-to-car-button {
  margin: 0;
  padding: 15px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  background-color: #333;
  float: left;
  line-height: 20px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.add-to-car-button:hover {
  background-color: #666;
  color: #fff;
  text-decoration: none;
}

.checkoutWith-paypal {
  text-align: center;
  float: left;
  width: 100%;
}

.baxter-right-con .baxter-list-pro {
  clear: both;
  margin: 2px 0 10px 0;
  padding: 0;
}

.baxter-right-con .baxter-list-pro .main-small-pro {
  clear: both;
  margin: 0 0 10px 0;
  padding: 0;
}

.baxter-right-con .baxter-list-pro .main-small-pro a img {
  margin: 0;
  border: 1px solid #ccc;
}

.baxter-right-con .baxter-list-pro .main-small-pro a img:hover {
  opacity: 0.5;
  transition: all 0.2s linear 0s;
}

.our-team {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  float: left;
}

.team-listing {
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 4px 4px 4px 4px;
  box-shadow: 2px 2px 3px #e7e7e7;
  display: block;
  height: 202px;
  margin-bottom: 20px;
  padding: 15px 15px;
}

.team-listing .team-img {
  display: block;
  height: 140px;
  padding: 0;
}

.team-listing .team-img a {
  font-size: 20px;
  color: #5d5d5d;
  text-decoration: none;
  text-transform: capitalize;
}

.team-listing .team-img a:hover {
  color: #9f8c52;
  text-decoration: none;
}

.team-listing .team-img a img {
  border: 1px solid #333;
  margin: 0;
}

.team-listing .team-img a img:hover {
  opacity: 0.8;
}

span.team-name {
  display: block;
  height: 32px;
  padding: 15px 0;
  text-align: center;
  line-height: 30px;
}

.light-box {
  width: 600px;
  height: auto;
  margin: 0;
  padding: 10px 0;
  background-color: #fff;
}

.team-listing-light {
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 4px 4px 4px 4px;
  box-shadow: 2px 2px 3px #e7e7e7;
  display: block;
  width: 195px;
  height: 202px;
  margin-bottom: 20px;
  padding: 15px 15px;
  float: left;
}

.team-listing-light .team-img-light {
  display: block;
  height: 140px;
  padding: 0;
}

.team-listing-light .team-img-light a img {
  border: 1px solid #333;
  margin: 0;
}

.team-listing-light .team-img-light a img:hover {
  opacity: 0.8;
}

.team-listing-light .team-name-light {
  display: block;
  height: 32px;
  padding: 15px 0;
  text-align: center;
}

.team-listing-light .team-name-light a {
  font-size: 20px;
  line-height: 50px;
  color: #5d5d5d;
  text-decoration: none;
  text-transform: capitalize;
}

.team-listing-light .team-name-light a:hover {
  color: #9f8c52;
  text-decoration: none;
}

.team-listing-light-text {
  display: block;
  width: 325px;
  height: auto;
  padding: 0 20px 0 15px;
  margin: 0;
  float: right;
}

.education-main-container {
  width: 100%;
  height: auto;
  margin: 0 0 15px;
  padding: 0;
  float: left;
}

.education-for-diamond {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

.education-for-diamond ul {
  margin: 0;
  padding: 0;
}

.education-for-diamond ul li {
  width: 100%;
  height: 227px;
  margin: 0 0 20px;
  padding: 0 0 40px;
  list-style: none;
  float: left;
  position: relative;
  background: url(../images/education-diamond-shadow.png) no-repeat center bottom;
}

.education-for-diamond ul li a img {
  margin: 0;
}

.education-for-diamond ul li a.name-banner {
  width: 215px;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  left: 6px;
  bottom: 22px;
  text-align: center;
  background-color: #666;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.education-for-diamond ul li a.name-banner:hover {
  background-color: #d6bf76;
  color: #fff;
  text-decoration: none;
}

.make-the-right-choice {
  width: 100%;
  height: 514px;
  margin: 0 0 20px;
  padding: 0 0 49px;
  list-style: none;
  float: left;
  position: relative;
  background-color: #222;
  background: url(../images/education-main-shadow.png) no-repeat center bottom;
}

.make-the-right-choice a img {
  margin: 0;
}

.make-the-right-choice a.name-banner {
  width: 351px;
  margin: 0;
  padding: 20px 0;
  position: absolute;
  left: 61px;
  bottom: 22px;
  text-align: center;
  background-color: #666;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.make-the-right-choice a.name-banner:hover {
  background-color: #d6bf76;
  color: #fff;
  text-decoration: none;
}

.service-for-pro {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

.service-for-pro ul {
  margin: 0;
  padding: 0;
}

.service-for-pro ul li {
  width: 100%;
  margin: 0 0 16px;
  padding: 0 0 0;
  list-style: none;
  float: left;
  position: relative;
  border: 1px solid #ccc;
}

.service-for-pro ul li a img {
  margin: 0;
  float: left;
}

.service-for-pro ul li a.name-banner {
  width: 100%;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  left: 0;
  bottom: 10px;
  text-align: center;
  background-color: #666;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}

.service-for-pro ul li a.name-banner:hover {
  background-color: #d6bf76;
  color: #fff;
  text-decoration: none;
}

.history-container {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  float: left;
}

.history-container .inner-history {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  float: left;
}

.history-container .inner-history .history-product {
  width: 402px;
  height: auto;
  margin: 0;
  padding: 0;
}

.history-img-container {
  width: 402px;
  height: 152px;
  margin: 10px 0 0;
  padding: 0 0 28px;
  list-style: none;
  float: left;
  position: relative;
  background: url(../images/designer-shadow.png) no-repeat center bottom;
}

.history-img-container a img {
  margin: 0;
  border: 1px solid #333;
}

.education-precious-metals {
  margin: 0;
  padding: 0;
  clear: both;
}

.education-precious-metals img {
  max-width: 100%;
}

.edu-pre-metals-pro {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
}

.edu-pre-metals-pro img {
  margin: 0;
  padding: 0 0 18px;
  background: url(../images/precious-metals-img-shadow.png) no-repeat bottom center;
}

.edu-pre-metals-about {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
}

.edu-pre-metals-about h1 {
  font-size: 26px;
  color: #7f8082;
}

.edu-pre-metals-about h2 {
  font-size: 20px;
  line-height: 22px;
  color: #7f8082;
  text-transform: uppercase;
  margin: 15px 0 7px;
}

.edu-pre-metals-about h3 {
  font-size: 20px;
  line-height: 22px;
  color: #7f8082;
  text-transform: uppercase;
  margin: 15px 0 7px;
}

.four-cs-nav {
  font-weight: 400;
  text-align: left;
  display: block;
  line-height: 30px;
  margin: 15px 0;
  clear: both;
}

.diamond-page-shadow {
  background: url(../images/four-cs-shadow.png) no-repeat bottom center;
  padding-bottom: 44px !important;
}

.gemstones-diamond-img {
  clear: both;
  margin: 0;
  padding: 0;
}

.gemstones-right-container {
  clear: both;
  margin: 0;
  padding: 30px 0 0;
}

.gemstones-right-container p {
  font-size: 18px;
  color: #222;
  clear: both;
  margin: 0 50px 25px 0;
  padding: 0;
  line-height: 22px;
  text-align: left;
}

.gemstones-right-container .birthstone {
  font-size: 20px;
  color: #000;
  clear: both;
  margin: 0;
  padding: 30px 0 0;
  text-transform: uppercase;
}

.gemstones-right-container .birthstone span {
  font-size: 20px;
  color: #222;
  clear: both;
  margin: 0 0 0 5px;
  padding: 0;
  text-transform: capitalize;
}

.gemstones-right-container .birthstone a.stone-link {
  margin: -30px 0 0 0;
  padding: 15px;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  background-color: #333;
  float: right;
}

.gemstones-right-container .birthstone a.stone-link:hover {
  background-color: #666;
  color: #fff;
  text-decoration: none;
}

.education-product-container .education-pro-listing {
  background-color: #fff;
  border: 1px solid #666;
  display: block;
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}

.education-product-container .education-pro-listing a {
  cursor: pointer;
  display: block;
}

.education-product-container .education-pro-listing a img:hover {
  opacity: 0.8;
}

.education-product-container .education-pro-listing span.month-diamond {
  background-color: #333;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  color: #fff;
  text-align: center;
  line-height: 34px;
  padding: 0 15px;
  min-width: 70px;
}

.education-product-container .education-pro-listing span.month-diamond-name {
  width: 100%;
  display: block;
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 700;
  color: #666;
  z-index: 1000;
  text-align: center;
}

.education-product-container .education-pro-listing .edu-pro-detail-con {
  width: 966px;
  height: auto;
  margin: 0;
  padding: 0 0 30px;
  position: absolute;
  background-color: #e1dccb;
  display: none;
  z-index: 10000;
  border: 1px solid #666;
  top: 245px;
  left: -1px;
}

.education-product-container .education-pro-listing .edu-pro-detail-con.sec-diamond {
  left: -245px !important;
}

.education-product-container .education-pro-listing .edu-pro-detail-con.third-diamond {
  left: -489px !important;
}

.education-product-container .education-pro-listing .edu-pro-detail-con.forth-diamond {
  left: -734px !important;
}

.education-product-container .education-pro-listing .edu-pro-detail-con .close-btn {
  clear: both;
  height: 40px;
  margin: 0;
  padding: 10px 3% 0 0;
  text-align: right;
}

.education-product-container .education-pro-listing .edu-pro-detail-con .close-btn img {
  width: auto;
}

.education-product-container .education-pro-listing .edu-pro-detail-con .edu-pro-head {
  clear: both;
  height: auto;
  margin: 0 0 37px;
  padding: 0;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #000;
  text-transform: capitalize;
}

.education-product-container .education-pro-listing .edu-pro-detail-con .edu-pro-img {
  clear: both;
  height: 250px;
  margin: 0 0 20px;
  padding: 0;
  text-align: center;
}

.education-product-container .education-pro-listing .edu-pro-detail-con .edu-pro-stone {
  clear: both;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 24px;
  color: #000;
}

.education-product-container .education-pro-listing .edu-pro-detail-con .edu-pro-stone span.edu-pro-stone-text {
  font-size: 24px;
  color: #666;
  display: inline-block;
  clear: both;
  margin: 0 10px 0 0;
  padding: 0;
  line-height: 22px;
  font-weight: 700;
  text-transform: uppercase;
  vertical-align: top;
}

.education-product-container .education-pro-listing .edu-pro-detail-con .about-stone-container {
  font-size: 22px;
  color: #444;
  clear: both;
  margin: 50px 50px 20px 0;
  padding: 0;
  line-height: 26px;
  text-align: left;
}

.education-product-container .education-pro-listing .edu-pro-detail-con .about-stone-container a.stone-link {
  margin: 40px 0 0 0;
  padding: 15px;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  background-color: #666;
  float: left;
  line-height: 24px;
}

.education-product-container .education-pro-listing .edu-pro-detail-con .about-stone-container a.stone-link:hover {
  background-color: #a93e3e;
  color: #fff;
  text-decoration: none;
}

.store-img-con {
  width: 269px;
  height: 179px;
  margin: 0;
  padding: 0;
}

.store-img-con img {
  margin: 0;
  border: none;
}

.store-img-con img:hover {
  opacity: 0.8;
}

.education-img-container-new {
  width: 195px;
  height: 173px;
  margin: 0;
  padding: 0 0 17px !important;
  clear: both;
  background: url(../images/education-product-shadow1.png) no-repeat bottom center;
}

.education-img-container-new img {
  margin: 0;
  border: none;
}

.education-img-container-new img:hover {
  opacity: 0.8;
}

.education-detail-container-new {
  width: 195px;
  height: 145px;
  margin: 0;
  padding: 0 0 17px;
  clear: both;
  background: url(../images/education-product-shadow1.png) no-repeat bottom center;
  position: relative;
}

.education-detail-container-new .edu-head-home {
  margin: 0;
  padding: 5px 0;
  clear: both;
  font-size: 16px;
  font-weight: 400;
  color: #666;
  text-align: center;
  text-transform: capitalize;
}

.education-detail-container-new .edu-head-home a {
  color: #999;
  text-decoration: none;
}

.education-detail-container-new .edu-head-home a:hover {
  color: #333;
  text-decoration: none;
}

.education-detail-container-new .edu-detail-text {
  margin: 0;
  padding: 5px 15px 0;
  clear: both;
  font-size: 15px;
  color: #222;
  text-align: center;
  line-height: 20px;
  font-weight: 400;
}

.education-detail-container-new .edu-read-more {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
  position: absolute;
  left: 0;
  bottom: 18px;
  text-align: center;
}

.education-detail-container-new .edu-read-more a {
  font-size: 16px;
  font-weight: 400;
  color: #999;
  text-decoration: none;
  text-transform: uppercase;
}

.education-detail-container-new .edu-read-more a:hover {
  color: #333;
  text-decoration: none;
}

.gemstone-peridot {
  clear: both;
  margin: 0;
  padding: 0;
  position: relative;
}

.overview-head {
  font-size: 22px;
  color: #222;
  clear: both;
  margin: 0;
  padding: 0;
  text-transform: capitalize;
}

.gemstone-peridot-para {
  font-size: 18px;
  color: #222;
  clear: both;
  margin: 0;
  padding: 0;
  line-height: 22px;
  text-align: left;
  min-height: 210px;
}

.gemstone-peridot-bracelet {
  clear: both;
  margin: 0;
  padding: 20px 50px 0 0;
  text-align: center;
}

.gemstone-peridot .gemstone-peridot-earring {
  width: 238px;
  height: 254px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 250px;
  box-shadow: 3px 3px 3px #666;
  z-index: 1000;
}

.gemstone-peridot .gemstone-peridot-ring {
  width: 272px;
  height: 305px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 60px;
  right: 10px;
  box-shadow: 3px 3px 3px #666;
  z-index: 800;
}

.gemstone-olovine {
  clear: both;
  margin: 0;
  padding: 0 20px 0 0;
  border-right: 1px solid #acacac;
}

.gemstone-olovine.bor-right-no {
  border-right: none;
}

.gemstone-olovine .olovine-head {
  clear: both;
  margin: 0;
  padding: 0 0 15px;
  text-align: center;
  font-size: 30px;
  color: #000;
  line-height: 30px;
  text-transform: capitalize;
}

.gemstone-olovine p {
  font-size: 18px;
  line-height: 22px;
  color: #222;
  clear: both;
  margin: 0;
  padding: 0;
  text-align: center;
}

.education-head {
  font-size: 20px;
  color: #222;
  clear: both;
  margin: 0 0 20px;
  padding: 0;
  text-align: center;
  line-height: 24px;
  line-height: 30px;
  font-style: italic;
}

.education-diamonds {
  clear: both;
  margin: 0 0 20px;
  padding: 0 10px;
}

.education-diamonds .education-diamonds-head {
  clear: both;
  margin: 0;
  padding: 0 0 15px;
  text-align: center;
  font-size: 30px;
  color: #000;
  line-height: 30px;
}

.education-diamonds .education-diamonds-img {
  clear: both;
  margin: 0;
  padding: 15px 0 5px;
  text-align: center;
  font-size: 30px;
  color: #000;
  line-height: 30px;
}

.education-diamonds p {
  font-size: 18px;
  line-height: 22px;
  color: #222;
  clear: both;
  margin: 0;
  padding: 10px 0 0;
  text-align: center;
}

.jewelry-buying-guide-img {
  clear: both;
  margin: 0;
  padding: 0 0 12px;
  background: url(../images/jewelry-buying-shadow.png) no-repeat bottom center;
}

.jewelry-buying-right-container {
  clear: both;
  margin: 0;
  padding: 0;
}

.jewelry-buying-right-container p {
  font-size: 22px;
  color: #222;
  clear: both;
  margin: 0 0 0 50px;
  padding: 0;
  line-height: 30px;
  text-align: left;
}

.jewelry-buying-para {
  clear: both;
  margin: 0;
  padding: 0;
}

.meet-team-main-img {
  clear: both;
  margin: 0 0 10px;
  padding: 0;
  text-align: center;
}

.jewelry-buying-head1 {
  font-size: 20px;
  color: #222;
  clear: both;
  margin: 10px 0;
  padding: 0 0 0;
  text-transform: uppercase;
}

.jewelry-buying-head1.cap-text {
  text-transform: capitalize !important;
}

.jewelry-buying-head {
  font-size: 20px;
  color: #222;
  clear: both;
  margin: 10px 0;
  padding: 0;
  text-transform: capitalize;
}

.service-head {
  font-size: 45px;
  color: #000;
  clear: both;
  margin: 0 0 10px;
  padding: 0 0 20px;
  line-height: 54px;
  background: url(../images/maharaja-star-black-bor.png) no-repeat center bottom;
  text-align: center;
  text-transform: uppercase;
}

.jewelry-buying-para p {
  font-size: 14px;
  line-height: 22px;
  color: #222;
  clear: both;
  margin: 0 0 10px;
  padding: 0;
}

.other-head-container {
  clear: both;
  margin: 20px 0 0;
  padding: 10px 0 0;
  text-align: center;
}

h2.mainHeading-home-page2 {
  font-size: 24px;
  color: #000;
  clear: both;
  margin: 10px 0 10px;
  padding: 0 0 20px;
  line-height: 30px;
  background: url(../images/maharaja-star-black-bor.png) no-repeat center bottom;
  text-align: center;
  text-transform: uppercase;
  display: block;
}

.gallery-shdow {
  background: url(../images/gallery-shadow.png) no-repeat top center;
}

.similar-products-carosal {
  clear: both;
  margin: 0 60px;
  padding: 0;
}

.education-diamonds {
  clear: both;
  margin: 0 0 20px;
  padding: 0 10px;
}

.education-diamonds .education-diamonds-head {
  clear: both;
  color: #333;
  font-size: 18px;
  margin: 10px 0 5px;
  padding: 0;
  text-transform: uppercase;
}

.education-diamonds .education-diamonds-img {
  clear: both;
  margin: 0;
  padding: 15px 0 5px;
  text-align: center;
}

.education-diamonds p {
  font-size: 18px;
  color: #000;
  line-height: 22px;
  clear: both;
  margin: 0;
  padding: 10px 0 0;
  text-align: left;
}

.oneFourth-new, .threeFourth-new, .twoFourth-new {
  float: left;
  margin: 0 1% 0 0;
  padding: 0 0;
}

.oneFourth-new {
  width: 24.25%;
}

.twoFourth-new {
  width: 49.5%;
}

.threeFourth-new {
  width: 74.75%;
}

.details-insight-con {
  clear: both;
  margin: 0 0 5px;
  padding: 0;
}

.details-insight-con .details-insight-head {
  clear: both;
  margin: 0;
  padding: 7px 10px 7px;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  color: #333;
  border-top: 1px solid #ccc;
  cursor: pointer;
  background: url(../images/updown-img2.jpg) no-repeat right -4px;
}

.details-con {
  clear: both;
  margin: 0;
  padding: 10px;
  border-top: 1px solid #ccc;
}

.details-con p {
  clear: both;
  margin: 0;
  padding: 2px 0 10px;
  font-size: 13px;
}

.details-con p a {
  text-decoration: none;
  color: #999;
}

.details-con p a:hover {
  color: #404040;
}

.details-con .detail-list-con {
  clear: both;
  margin: 0;
  padding: 0;
}

.details-con .detail-list-con ul {
  margin: 0;
  padding: 0;
}

.details-con .detail-list-con ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  width: 100%;
  float: left;
}

.details-con .detail-list-con ul li label {
  width: 160px;
  font-size: 13px;
  font-weight: 700;
  float: left;
}

.customerReviews {
  clear: both;
  margin: 0;
  padding: 0;
  width: 100%;
  float: left;
  border-top: 1px solid #ddd;
  margin-top: 20px;
  padding-top: 10px;
}

.customerReviews ul.review {
  margin: 0;
  padding: 0;
}

.customerReviews ul.review li {
  margin: 0 0 10px 0;
  padding: 0;
  color: #999;
  list-style: outside;
  font-size: 14px;
  list-style: none;
}

.customerReviews ul.review li a {
  color: #333;
  text-decoration: none;
}

.customerReviews ul.review li a:hover {
  color: #999;
  text-decoration: none;
}

.requestViewingInfo li {
  list-style: none;
}

.createYourAccount {
  clear: both;
}

.createYourAccount h1 {
  color: #222;
  border-bottom: 1px solid #666;
  text-align: left;
  font-weight: 400;
  font-size: 18px;
}

.createYourAccount .formBox {
  display: block;
  margin: 15px 0 0;
}

.createYourAccount .formBox a.gotoPage {
  float: left;
  text-transform: uppercase;
  text-decoration: underline;
  font-size: 11px;
  margin-top: 8px;
}

.newAccountForm {
  padding: 0 12px 12px;
  display: block;
  border: 1px solid #666;
  line-height: 20px;
}

.newAccountForm h2 {
  color: #222;
  border-bottom: 1px solid #666;
  text-align: left;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
}

.newAccountForm h2 span.errorMsg {
  float: right;
  color: red;
  width: 100%;
  font-size: 11px;
  text-align: right;
  font-weight: 400;
  text-decoration: blink;
  position: absolute;
  right: 0;
  top: 16px;
  text-align: right;
}

.newAccountForm p {
  color: #222;
  padding-bottom: 10px;
}

.newAccountForm ul {
  list-style: none;
  margin: 0 0;
  padding: 0 0;
}

.newAccountForm ul li {
  width: 100%;
  float: left;
  margin-bottom: 10px;
}

.newAccountForm ul li font {
  color: red !important;
}

.newAccountForm label {
  color: #222;
  display: block;
  padding-bottom: 4px;
}

.newAccountForm label.selectDropDown {
  padding-bottom: 0;
}

.newAccountForm input[type=password], .newAccountForm input[type=text], .newAccountForm textarea {
  display: block;
  text-indent: 5px;
  width: 100%;
  padding: 4px 0;
  border: 1px solid #666;
}

.newAccountForm input[type=submit] {
  text-transform: uppercase;
  cursor: pointer;
}

.newAccountForm input.capchaCodeField {
  width: 105px;
  float: left;
  vertical-align: top;
  text-indent: 5px;
  height: 24px;
}

.newAccountForm img.capchaCodeImage {
  vertical-align: top;
  height: 28px;
}

.newAccountForm a.gotoPage {
  float: left;
  text-transform: uppercase;
  text-decoration: underline;
  font-size: 11px;
  margin-top: 8px;
  color: #222;
}

.newAccountForm a.gotoPage input[type=checkbox] {
  vertical-align: top;
  margin-top: 3px;
}

.newAccountForm a.gotoPage:hover {
  text-decoration: none;
}

.newAccountForm a.cancelPage {
  float: left;
  text-transform: capitalize;
  text-decoration: none;
  font-size: 11px;
  margin-top: 8px;
  color: #222;
}

.newAccountForm a.cancelPage:hover {
  text-decoration: underline;
}

.signUpButtonsBox {
  border: 1px dashed #fff;
  padding: 15px 15px;
  text-align: center;
  border-radius: 6px 6px;
  display: table;
}

.signUpButtonsBox a {
  display: table-cell;
  vertical-align: middle;
}

.verticleOr {
  width: 1px;
  height: inherit;
  background-color: #dfdfdf;
  position: relative;
  margin: 0 12px;
}

.verticleOr:before {
  border: 1px solid #fff;
  border-radius: 20px 20px 20px 20px;
  color: #fff;
  content: "Or";
  height: 24px;
  left: -12px;
  font-size: 12px;
  line-height: 22px;
  overflow: hidden;
  position: absolute;
  top: 40%;
  width: 24px;
}

.newAccountForm .verticleOr {
  height: 135px;
}

.newAccountForm .verticleOr:before {
  background-color: #333;
}

.quickListDetail {
  width: 315px;
  margin: 0 0;
  padding: 8px 8px;
  box-shadow: 4px 0 0 #555;
  position: fixed;
  bottom: 0;
  right: 20px;
  z-index: 9999;
  border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  background-color: #f5f5f5;
}

.quickListDetail .columnFull {
  width: 100%;
  margin-bottom: -8px;
  margin-left: -8px;
  padding: 0 8px 20px;
  background-color: #ccc;
  background-image: -moz-linear-gradient(center top, #fff, #ccc);
  box-shadow: 0 1px 0 rgba(200, 200, 200, 0.2);
  cursor: pointer;
}

.innerQuickList .columnFull .savedItems {
  font-size: 16px;
  float: left;
  color: #90336f;
  line-height: 30px;
}

.quickListDetail .innerQuickList {
  width: 315px;
  margin: 0 0;
  box-shadow: 0 0 4px #555;
  display: none;
  z-index: 9999;
  background-color: #f5f5f5;
}

.quickListDetail .innerQuickList .thumbnail {
  border: 1px solid #999;
  padding: 1px 1px;
  overflow: hidden;
}

.quickListDetail .innerQuickList .thumbnail img {
  width: 100%;
  height: auto;
}

.quickListDetail .innerQuickList .columnFull {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #666;
  background-color: #f5f5f5;
}

.quickListDetail .innerQuickList .productSku, .shortCartDetail .productDesc, .shortCartDetail .productPrice, .shortCartDetail .productQty, .shortCartDetail .productTitle {
  font-size: 10px;
  color: #5a5a5a;
}

.quickListDetail .innerQuickList .productSku {
  font-weight: 700;
  line-height: 10px;
  padding-bottom: 2px;
  display: block;
}

.quickListDetail .innerQuickList .productTitle {
  display: block;
  padding-bottom: 4px;
  margin: 0;
  margin-bottom: 2px;
  line-height: 13px;
  border-bottom: 1px solid #e9e9e9;
}

.quickListDetail .innerQuickList .productPrice {
  color: red;
  font-weight: 700;
}

.quickListDetail .innerQuickList .productQty {
  color: #000;
  padding-left: 15px;
}

.quickListDetail .innerQuickList .remove {
  text-decoration: underline;
  color: #555;
  font-size: 10px;
  float: right;
}

.quickListDetail .innerQuickList .remove:hover {
  text-decoration: none;
}

.quickListDetail .innerQuickList .totalAmount {
  font-size: 18px;
  float: left;
  color: #90336f;
  line-height: 30px;
}

.quickListDetail .innerQuickList input[type=submit], .shortCartDetail input[type=button] {
  font-size: 14px;
  font-weight: 700;
  padding: 10px;
  width: 315px;
}

.starIcon {
  background-image: url(/images/icons/icon-18-18.png);
}

.classForDevUse {
  position: relative;
}

.removeFromQuick {
  display: none;
  padding: 2px;
  position: absolute;
  right: 18px;
  top: 3px;
  font-size: 18px;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 18px;
}

.classForDevUse article {
  position: absolute;
  background: url(/images/image_hover.png);
  background-repeat: repeat;
  width: 100%;
  height: 175px;
}

.classForDevUse article.da-animate {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.classForDevUse:hover .removeFromQuick {
  display: block;
}

.staticBlock {
  border-style: dashed !important;
  display: block;
  padding: 10px;
}

.add_review table {
  width: 100%;
  border: none !important;
}

.add_review table tbody tr td {
  padding: 5px 5px !important;
  border: none !important;
  vertical-align: top;
  text-align: left;
}

.add_review table tbody tr td label {
  width: 50px;
  display: inline-block;
  vertical-align: top;
}

.add_review table tbody tr td input[type=text], .add_review table tbody tr td textarea {
  width: 88%;
  border: 1px solid #dfdfdf;
  padding: 0 6px;
  line-height: 22px;
}

.add_review table tbody tr td input[type=text] {
  height: 30px;
  line-height: 30px;
}

.add_review table tbody tr td span {
  color: red;
  display: inline-block;
  vertical-align: top;
}

.star-rating {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 75px;
  height: 15px;
  position: relative;
  background: url(../images/star_rating.gif) top left repeat-x;
  display: inline-block;
}

.star-rating li {
  padding: 0;
  margin: 0;
  float: left;
}

.star-rating li a {
  display: block;
  width: 15px;
  height: 15px;
  line-height: 15px;
  text-decoration: none;
  text-indent: -4500px;
  z-index: 20;
  position: absolute;
  padding: 0;
  overflow: hidden;
}

.star-rating li a:hover {
  background: url(../images/star_rating.gif) left center;
  z-index: 2;
  left: 0;
  border: none;
}

.star-rating a.one-star {
  left: 0;
}

.star-rating a.one-star:hover {
  width: 15px;
}

.star-rating a.two-stars {
  left: 15px;
}

.star-rating a.two-stars:hover {
  width: 30px;
}

.star-rating a.three-stars {
  left: 30px;
}

.star-rating a.three-stars:hover {
  width: 45px;
}

.star-rating a.four-stars {
  left: 45px;
}

.star-rating a.four-stars:hover {
  width: 60px;
}

.star-rating a.five-stars {
  left: 60px;
}

.star-rating a.five-stars:hover {
  width: 75px;
}

.star-rating li.current-rating {
  background: url(../images/star_rating.gif) left bottom;
  position: absolute;
  height: 15px;
  display: block;
  text-indent: -9000px;
}

.legendBox {
  border: 1px solid #dfdfdf;
  padding: 10px 10px;
  margin-top: 15px;
  position: relative;
}

.legendBox .legendTitle {
  background-color: #fff;
  line-height: 24px;
  padding: 0 5px;
  font-weight: 700;
  position: absolute;
  left: 15px;
  top: -12px;
}

.legendBox .legendContent {
  width: 100%;
  float: left;
  margin: 0 0;
  padding: 0 0;
  clear: both;
}

.selectDiamondHome {
  list-style: none;
  margin: 0 0;
  padding: 0 0;
  text-align: center;
  width: 100%;
  float: left;
}

.selectDiamondHome li {
  width: 7.2%;
  margin: 0 0;
  padding: 0 1%;
  display: inline-block;
  *display: inline;
  text-align: center;
  zoom: 1;
}

.selectDiamondHome li img {
  display: block;
  text-align: center;
  width: 100%;
  height: auto;
  margin-bottom: 5px;
}

.selectDiamondHome li label {
  display: block;
  text-align: center;
  cursor: pointer;
}

.selectDiamondHome li label input[type=radio] {
  margin-bottom: 5px;
}

.sort-by-price {
  background-color: #666;
  color: #fff;
  padding: 5px 10px;
}

.sort-by-price .filterForm label a {
  color: #ccc;
  text-decoration: none;
}

.sort-by-price .filterForm label a:hover {
  color: #fff;
  text-decoration: none;
}

ul#lb_diamond_info li a {
  margin: 10px 0 0 0 !important;
}

ul#lb_diamond_info li a input[type=submit] {
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  text-decoration: none;
  background-color: #333;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  float: left;
  border: none;
}

ul#lb_diamond_info li a input[type=submit]:hover {
  background-color: #666;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 990px) {
  .checkoutRow {
    position: relative;
    overflow: hidden;
  }

  .checkoutRow::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 33.33333333%;
    height: 100%;
    left: 33.33333333%;
    border-left: 1px solid #d5d5d5;
    border-right: 1px solid #d5d5d5;
  }
}
.shopping-cart-box {
  clear: both;
  margin: 0;
  padding: 0;
  line-height: 20px;
  margin-top: 15px;
}

.shopping-cart-box .billing-info {
  float: left;
  height: auto;
  margin: 0;
  padding: 0;
  width: 100%;
}

.shopping-cart-box .billing-info .billing-head {
  border-bottom: 1px dotted #666;
  color: #666;
  float: left;
  font-size: 16px;
  height: auto;
  line-height: 20px;
  margin: 0 0 10px 0;
  padding: 0 0 5px;
  width: 100%;
}

.shopping-cart-box .billing-info .billing-field {
  float: left;
  height: auto;
  margin: 0;
  padding: 0;
  width: 96%;
}

.shopping-cart-box .billing-info .billing-field ul {
  margin: 0;
  padding: 0;
}

.shopping-cart-box .billing-info .billing-field ul li {
  list-style-type: none;
  margin: 5px 0;
  padding: 0;
  float: left;
  width: 100%;
}

.shopping-cart-box .billing-info .billing-field ul li label {
  color: #333;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  width: 30%;
  font-weight: 400;
}

.shopping-cart-box .billing-info .billing-field ul li span {
  color: red;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  width: 70%;
}

.shopping-cart-box .billing-info .billing-field ul li span input[type=text] {
  border: 1px solid #ccc;
  color: #999;
  float: left;
  height: 28px;
  margin: 0 0 0;
  padding: 5px;
  width: 80%;
}

.shopping-cart-box .billing-info .billing-field ul li span textarea {
  border: 1px solid #ccc;
  height: 56px;
  vertical-align: middle;
  width: 80% !important;
  padding: 5px;
}

.shopping-cart-box .billing-info .billing-field ul li span select {
  border: 1px solid #ccc;
  color: #999;
  float: left;
  height: 30px;
  margin: 0 0 0;
  padding: 5px;
  width: 80%;
}

.shopping-cart-box .shipping-method {
  float: left;
  height: auto;
  margin: 0;
  padding: 0;
  width: 100%;
}

.shopping-cart-box .shipping-method .shipping-head {
  border-bottom: 1px dotted #666;
  color: #666;
  float: left;
  font-size: 16px;
  height: auto;
  line-height: 20px;
  margin: 0;
  padding: 0 0 5px;
  width: 99%;
}

.shopping-cart-box .shipping-method .radio-box {
  float: left;
  height: auto;
  margin: 5px 0 15px;
  padding: 0;
  width: 99%;
}

.shopping-cart-box .shipping-method .delivery-box {
  background-color: #f5f5f5;
  color: #333;
  float: left;
  height: auto;
  margin: 10px 0 0;
  padding: 8px 3% 0;
  width: 93%;
}

.shopping-cart-box .shipping-method .diamond-text {
  background-color: #f5f5f5;
  color: #333;
  float: left;
  height: auto;
  margin: 0;
  padding: 0 3% 8px;
  width: 93%;
}

.shopping-cart-box .shipping-method .radio-box ul {
  margin: 0;
  padding: 0;
}

.shopping-cart-box .shipping-method .radio-box ul li {
  color: #333;
  list-style-type: none;
  margin: 0;
  padding: 4px 0;
  width: 222px;
}

.shopping-cart-box .review-order {
  float: right;
  height: auto;
  margin: 0;
  padding: 0;
  width: 100%;
}

.shopping-cart-box .review-order .review-head {
  border-bottom: 1px dotted #666;
  color: #666;
  float: left;
  font-size: 16px;
  height: auto;
  line-height: 20px;
  margin: 0;
  padding: 0 0 5px;
  width: 100%;
}

.shopping-cart-box .review-order .review-or-box {
  background-color: #f0f0f0;
  border-bottom: 1px solid #fece02;
  float: left;
  height: 25px;
  margin: 10px 0 0;
  padding: 0;
  width: 100%;
}

.shopping-cart-box .review-order .review-or-box .product-head {
  color: #333;
  float: left;
  font-weight: 700;
  font-size: 13px;
  line-height: 24px;
  height: 25px;
  margin: 0;
  padding: 0 0 0 2%;
  width: 25%;
}

.shopping-cart-box .review-order .review-or-box .des-head {
  color: #333;
  float: left;
  font-weight: 700;
  font-size: 13px;
  line-height: 24px;
  height: 25px;
  margin: 0;
  padding: 0;
  width: 40%;
}

.shopping-cart-box .review-order .review-or-box .price-head {
  color: #333;
  float: left;
  font-weight: 700;
  font-size: 13px;
  line-height: 24px;
  height: 25px;
  margin: 0;
  padding: 0 2% 0 0;
  text-align: right;
  width: 31%;
}

.shopping-cart-box .review-order .review-or-product {
  border-bottom: 1px dashed #999;
  float: left;
  height: auto;
  margin: 0;
  padding: 5px 0;
  width: 100%;
}

.shopping-cart-box .review-order .review-or-product .main-product-box {
  float: left;
  height: auto;
  margin: 0;
  padding: 5px 0;
  position: relative;
  width: 100%;
}

.shopping-cart-box .review-order .review-or-product .main-product-box .product-img {
  float: left;
  height: auto;
  margin: 0;
  padding: 0;
  width: 27%;
}

.shopping-cart-box .review-order .review-or-product .main-product-box .product-img img {
  width: 100%;
}

.shopping-cart-box .review-order .review-or-product .main-product-box .des-text {
  color: #333;
  float: left;
  font-size: 13px;
  line-height: 20px;
  height: auto;
  margin: 0 0 0 2%;
  padding: 0;
  width: 38%;
}

.shopping-cart-box .review-order .review-or-product .main-product-box .price-value {
  color: #333;
  float: left;
  font-size: 13px;
  line-height: 20px;
  height: auto;
  margin: 0;
  padding: 0 2% 0 0;
  text-align: right;
  width: 31%;
}

.shopping-cart-box .review-order .review-or-product .main-product-box .remove-set {
  bottom: 0;
  color: #a5448b;
  float: left;
  font-size: 13px;
  line-height: 20px;
  height: auto;
  margin: 0;
  padding: 0 10px 0 0;
  position: absolute;
  right: 0;
  width: auto;
}

.shopping-cart-box .review-order .pricing-box {
  background-color: #fcfdc4;
  border-bottom: 1px solid #fece02;
  color: #333;
  float: left;
  font-weight: 700;
  font-size: 13px;
  line-height: 24px;
  height: 25px;
  margin: 10px 0 0;
  padding: 0 0 0 10px;
  width: 95%;
}

.shopping-cart-box .review-order .pricing-detail {
  border-bottom: 1px dashed #999;
  float: left;
  height: auto;
  margin: 0;
  padding: 7px 0;
  width: 100%;
}

.shopping-cart-box .review-order .pricing-detail .pricing-text {
  color: #333;
  float: left;
  font-size: 13px;
  line-height: 20px;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: right;
  width: 47%;
}

.shopping-cart-box .review-order .pricing-detail .pricing-price {
  color: #333;
  float: left;
  font-size: 13px;
  line-height: 20px;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: right;
  width: 47%;
}

.shopping-cart-box.placeOrder .billing-info, .shopping-cart-box.placeOrder .review-order {
  min-height: auto;
}

.change-billing-field {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  float: left;
}

.change-billing-field ul {
  padding: 0;
  margin: 0;
  font-size: 13px;
}

.change-billing-field ul li {
  width: 97%;
  height: auto;
  padding: 8px 0 8px 3%;
  margin: 0;
  list-style-type: none;
  float: left;
  background-color: #f6f6f6;
  border-bottom: 1px solid #ddd;
}

.change-billing-field ul li.bor-bot-no {
  border-bottom: none;
}

.change-billing-field ul li label {
  width: 30%;
  height: auto;
  padding: 0;
  margin: 0;
  display: block;
  float: left;
  color: #333;
  font-weight: 700;
}

.change-billing-field ul li span {
  width: 70%;
  height: auto;
  padding: 0;
  margin: 0;
  display: block;
  float: left;
  line-height: 20px;
  color: #333;
}

.txtred {
  clear: both;
  margin: 10px 0 0;
}

.txtred font {
  color: #222 !important;
}

.contentBanner {
  width: 100%;
  float: left;
  margin: 0 0 20px;
  padding: 0;
}

.contentBanner img {
  width: 100%;
}

.contentGallery {
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contentGallery li {
  width: 19%;
  margin: 0 0.5% 15px;
  padding: 0;
  overflow: hidden;
  float: left;
  height: 138px;
}

.contentGallery li a {
  display: block;
}

.contentGallery li img {
  width: 100%;
}

.videoList {
  width: 100%;
  float: left;
  margin: 30px 0;
  padding: 0;
}

.videoList li {
  width: 100%;
  float: left;
  margin: 0 0 50px;
  padding: 0;
  list-style: none;
}

.videoList li .title {
  display: block;
  font-size: 24px;
  font-weight: lighter;
  margin-bottom: 15px;
}

.videoList li .videoBox {
  width: 100%;
  float: left;
  margin: 0 0 15px;
  padding: 0;
  height: 380px;
}

.videoList li .videoDesc {
  width: 100%;
  float: left;
  margin: 0 0 15px;
  padding: 0;
}

.videoList li .postedIn {
  width: 100%;
  float: left;
  margin: 0 0 10px;
  padding: 0;
  border-top: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
  line-height: 34px;
}

.videoList li .postedIn a {
  display: inline-block;
}

.videoDesc li {
  width: 100%;
  float: left;
  margin: 0 0 5px 42px;
  padding: 0;
}

@media (max-width: 767px) {
  .videoList {
    margin: 0;
  }

  .videoList li:last-child {
    margin-bottom: 0;
  }

  .videoList li .postedIn {
    line-height: 18px;
  }
}
.classForDevUse .sub-similar-product {
  background-color: #fbfaf8;
  bottom: -15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
  color: #333;
  font-size: 11px;
  height: auto;
  left: 0;
  margin: 0;
  padding: 10px 1%;
  position: absolute;
  width: 98%;
  display: block !important;
}

.classForDevUse .productImage:hover .sub-similar-product {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

.productGridBox .productTitle {
  text-align: center;
  display: block;
  height: 40px;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.productGridBox .productPrice {
  text-align: center;
  font-size: 14px;
  clear: both;
  padding-top: 5px;
  line-height: 22px;
}

.productGridBox .productPrice span {
  text-decoration: line-through;
  display: block;
  color: #888;
}

.productGridBox .productPrice span:first-child {
  font-size: 18px;
  color: var(--clrTheme);
  text-decoration: none;
}

.productGridBox2 {
  background-color: #fff;
  position: relative;
  display: block;
  min-width: 225px;
  min-height: 197px;
  border-radius: 4px 4px;
  -moz-border-radius: 4px 4px;
  -webkit-border-radius: 4px 4px;
  overflow: hidden;
  border: 4px solid #e9e9e9;
}

.productGridBox2 .hover-options {
  display: none;
  font-style: normal;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10000;
  top: 0;
  left: 0;
  background: url(../images/-cat-head-bg.png) repeat;
  cursor: pointer;
}

.productGridBox2:hover .hover-options {
  display: block;
}

.productGridBox2 a.plus-icon {
  background: url(../images/zoom-plus.png) no-repeat;
  display: inline-block;
  width: 52px;
  height: 52px;
  position: absolute;
  top: -52px;
  left: 45%;
  z-index: 100000;
  -webkit-transition: top 0.3s linear;
  -moz-transition: top 0.3s linear;
  -ms-transition: top 0.3s linear;
  -o-transition: top 0.3s linear;
  transition: top 0.3s linear;
}

.productGridBox2:hover a.plus-icon {
  top: 45%;
}

.productGridBox2 .productImage {
  width: 100%;
  height: auto;
  overflow: hidden;
  text-align: center;
  clear: both;
}

.productGridBox2 .productImage a {
  display: block;
}

.productGridBox2 .productImage img {
  height: auto;
  float: left;
}

.productGridBox2 .descriptionBox {
  width: 94%;
  padding: 2% 3%;
  height: 20px;
  position: absolute;
  bottom: 1px;
  background-color: #fbfaf8;
  display: none;
}

.productGridBox2:hover .descriptionBox {
  height: auto;
}

.productGridBox2 .productPrice, .productGridBox2 .productTitle {
  font-size: 16px;
  color: #90336f;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 5px;
  line-height: 26px;
}

.productGridBox2 .productPrice a, .productGridBox2 .productTitle a {
  color: #000;
}

.productGridBox2 .productPrice a:hover, .productGridBox2 .productTitle a:hover {
  text-decoration: underline;
}

.productGridBox2 .productDesc {
  font-size: 11px;
  line-height: 14px;
}

.productGridBox2 .productInfo {
  font-size: 12px;
  font-weight: 700;
  color: #817c7a;
  line-height: 14px;
}

.productGridBox2 .shopNow {
  color: #000;
  font-size: 11px;
  font-style: italic;
  float: right;
}

.productGridBox2 .shopNow:hover {
  text-decoration: underline;
}

.productGridBox2 .actionButton, .productGridBox2 input {
  position: absolute;
  bottom: 5px;
  right: 10px;
  font-weight: 700;
}

.productGridBox3 {
  position: relative;
  display: block;
  height: 245px;
  max-height: 245px;
  overflow: hidden;
}

.productGridBox3 .productImage {
  width: 100%;
  height: 134px;
  overflow: hidden;
}

.productGridBox3 .productImage img {
  width: 99%;
  height: auto;
  border: 1px solid #dfdfdf;
}

.productGridBox3 .productPrice, .productGridBox3 .productTitle {
  font-size: 16px;
  color: #90336f;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 6px;
  line-height: 22px;
  text-align: center;
}

.productGridBox3 .productPrice a, .productGridBox3 .productTitle a {
  color: #90336f;
}

.productGridBox3 .productPrice a:hover, .productGridBox3 .productTitle a:hover {
  text-decoration: underline;
}

.productGridBox3 .productDesc {
  line-height: 20px;
  text-align: center;
  padding-top: 12px;
}

.productGridBox3 .productInfo {
  font-size: 12px;
  font-weight: 700;
  color: #817c7a;
  line-height: 14px;
}

.boxShadow {
  width: 100%;
  height: 40px;
  float: left;
  margin: 0 0;
  padding: 0 0;
  overflow: hidden;
  background: url(/images/-category-box-shadow.png) no-repeat right -20px;
}

.shadowBox {
  margin: 0 0;
  padding: 0 8px 9px 0;
}

.shadowBox .innerShadowBox {
  margin: 0 0;
}

.aboutUsContainer {
  margin: 0;
  padding: 0;
  float: left;
}

.aboutusImg {
  margin: 0;
  padding: 0;
}

.aboutusDetail {
  margin: 0;
  padding: 0;
}

.directionMap {
  margin: 20px 0;
  padding: 0;
  float: right;
  width: 100%;
}

.aboutMiddle {
  margin: 20px 0;
  padding: 0;
}

.welcomeimgBox {
  margin: 7px 10px;
  padding: 0;
}

.welcomeimgBox ul {
  margin: 0;
  padding: 0;
}

.welcomeimgBox ul li {
  margin: 0;
  padding: 0 3px;
  list-style: none;
  float: left;
  margin-bottom: 10px;
}

ul#site_map {
  border-left: 1px solid #666;
  clear: left;
  list-style: none outside none;
  margin: 0 0 0 100px;
}

ul#site_map li {
  background: url(/images/arrow.png) no-repeat scroll left 13px rgba(0, 0, 0, 0) !important;
  font-size: 16px;
  margin: 5px 0 0 10px;
  padding-left: 18px;
  width: 100%;
  list-style: none;
}

ul#site_map li ol {
  border-left: 1px solid #444;
  list-style: none outside none;
  margin: 10px 0 10px 20px;
}

ul#site_map li ol li {
  margin: 0;
  padding: 3px 25px;
}

ul#site_map li ol li a {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #999;
  font-weight: 400;
}

ul#site_map li ol li a:hover {
  text-decoration: none;
  color: #666;
}

ul#site_map li a {
  color: #000;
  text-align: left;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}

ul#site_map li a:hover {
  text-decoration: none;
  color: #666;
}

.education-main-container {
  width: 100%;
  padding: 0;
}

.education-main-container img {
  width: 100%;
}

.education-about-pro {
  clear: both;
  margin: 0;
  padding: 0;
  position: relative;
}

.education-about-pro .education-pro-name {
  clear: both;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 22px;
  left: 18px;
  z-index: 10000;
}

.education-about-pro .education-pro-name a {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  text-transform: capitalize;
}

.education-about-pro .education-pro-name a.education-pro-name-black {
  color: #000;
}

.education-about-pro .education-pro-name a:hover {
  font-size: 22px;
  font-weight: 700;
  color: #999;
  text-decoration: none;
  text-transform: capitalize;
}

.TabbedPanelsTabGroup a.toggle {
  background: #222 none repeat scroll 0 0;
  color: #fff;
  display: block;
  padding: 10px;
  text-align: left;
  text-decoration: none !important;
  width: 100%;
}

.designers-watcbs-container {
  width: 998px;
  margin: 0 auto 30px;
  padding: 0;
}

.designers-watcbs-pro {
  clear: both;
  margin: 0 0 15px;
  padding: 10px;
  border: 1px solid #e5e5e5;
  text-align: center;
}

.designers-watcbs-pro .designers-watcbs-name {
  clear: both;
  margin: 3px 0 0;
  padding: 0;
  text-align: center;
}

.designers-watcbs-pro .designers-watcbs-name a {
  font-size: 16px;
  color: #000;
  text-decoration: none;
  text-transform: capitalize;
}

.designers-watcbs-pro .designers-watcbs-name a:hover {
  color: #999;
  text-decoration: none;
}

.edu-brown-text {
  margin: 2px 0 10px;
  padding: 0;
  clear: both;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-align: justify;
}

.edu-normal-text {
  margin: 2px 0 10px;
  padding: 0;
  clear: both;
  font-size: 14px;
  line-height: 24px;
  text-align: justify;
}

.all-gemstone-head {
  width: 100%;
  height: 45px;
  line-height: 48px;
  text-align: center;
  margin: 0 0;
  padding: 0 0;
  background: url(../images/icons/header-bg.jpg) repeat-x;
  float: left;
}

.all-gemstone-head span {
  height: 45px;
  letter-spacing: 2px;
  font-size: 30px;
  line-height: 26px;
  color: #000;
  margin: 0 0;
  padding: 0 10px;
  display: inline-block;
  background-color: #fff;
}

.gemstones-diamond-img {
  clear: both;
  margin: 0;
  padding: 0;
}

.gemstones-right-container {
  clear: both;
  margin: 0;
  padding: 14px 0 0;
}

.gemstones-right-container p {
  font-size: 18px;
  color: #666;
  clear: both;
  margin: 0 50px 25px 0;
  padding: 0;
  line-height: 24px;
  text-align: left;
}

.gemstones-right-container .birthstone {
  font-size: 20px;
  color: #000;
  clear: both;
  margin: 0;
  padding: 30px 0 0;
  text-transform: uppercase;
}

.gemstones-right-container .birthstone span > span {
  font-size: 20px;
  color: #666;
  clear: both;
  margin: 0 0 0 5px;
  padding: 0;
  text-transform: capitalize;
}

.gemstones-right-container .birthstone a.stone-link {
  margin: -30px 0 0 0;
  padding: 15px;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  float: right;
  background: #333;
}

.gemstones-right-container .birthstone a.stone-link:hover {
  background-color: #666;
  color: #fff;
  text-decoration: none;
}

.store-img-con {
  width: 269px;
  height: 179px;
  margin: 0;
  padding: 0;
}

.store-img-con img {
  margin: 0;
  border: none;
}

.store-img-con img:hover {
  opacity: 0.8;
}

.education-img-container-new {
  width: 195px;
  height: 173px;
  margin: 0;
  padding: 0 0 17px !important;
  clear: both;
  background: url(../images/education-product-shadow1.png) no-repeat bottom center;
}

.education-img-container-new img {
  margin: 0;
  border: none;
}

.education-img-container-new img:hover {
  opacity: 0.8;
}

.education-detail-container-new {
  width: 195px;
  height: 145px;
  margin: 0;
  padding: 0 0 17px;
  clear: both;
  background: url(../images/education-product-shadow1.png) no-repeat bottom center;
  position: relative;
}

.education-detail-container-new .edu-head-home {
  margin: 0;
  padding: 5px 0;
  clear: both;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-align: center;
  text-transform: capitalize;
}

.education-detail-container-new .edu-head-home a {
  color: #000;
  text-decoration: none;
}

.education-detail-container-new .edu-head-home a:hover {
  color: #d7bf77;
  text-decoration: none;
}

.education-detail-container-new .edu-detail-text {
  margin: 0;
  padding: 5px 15px 0;
  clear: both;
  font-size: 15px;
  color: #b1b1b1;
  text-align: center;
  line-height: 20px;
  font-weight: 400;
}

.education-detail-container-new .edu-read-more {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
  position: absolute;
  left: 0;
  bottom: 18px;
  text-align: center;
}

.education-detail-container-new .edu-read-more a {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
}

.education-detail-container-new .edu-read-more a:hover {
  color: #d7bf77;
  text-decoration: none;
}

.gemstone-peridot {
  clear: both;
  margin: 0;
  padding: 0;
  position: relative;
}

.overview-head {
  font-size: 22px;
  color: #666;
  clear: both;
  margin: 0;
  padding: 0;
  text-transform: capitalize;
}

.gemstone-peridot-para {
  font-size: 18px;
  color: #666;
  clear: both;
  margin: 0;
  padding: 0;
  line-height: 22px;
  text-align: left;
  min-height: 210px;
}

.gemstone-peridot-bracelet {
  clear: both;
  margin: 0;
  padding: 20px 50px 0 0;
  text-align: center;
}

.gemstone-peridot .gemstone-peridot-earring {
  width: 238px;
  height: 254px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 250px;
  box-shadow: 3px 3px 3px #888;
  z-index: 2;
}

.gemstone-peridot .gemstone-peridot-ring {
  width: 272px;
  height: 305px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 60px;
  right: 10px;
  box-shadow: 3px 3px 3px #888;
  z-index: 1;
}

.gemstone-olovine {
  clear: both;
  margin: 0;
  padding: 0 20px 0 0;
  border-right: 1px solid #acacac;
}

.gemstone-olovine.bor-right-no {
  border-right: none;
}

.gemstone-olovine .olovine-head {
  clear: both;
  margin: 0;
  text-transform: capitalize;
  padding: 0 0 15px;
  text-align: center;
  font-size: 30px;
  color: #000;
  line-height: 30px;
}

.gemstone-olovine p {
  font-size: 16px;
  line-height: 22px;
  color: #666;
  clear: both;
  margin: 0;
  padding: 0;
  text-align: center;
}

.mainHeading-pageAll {
  height: 45px;
  letter-spacing: 2px;
  font-size: 60px;
  line-height: 48px;
  color: #000;
  letter-spacing: 1px;
  margin: 0 0 20px;
  padding: 0 20px;
  clear: both;
  background-color: #fff;
  text-align: center;
  text-transform: lowercase;
}

.education-head {
  font-size: 20px;
  color: #666;
  clear: both;
  margin: 0 0 20px;
  padding: 0;
  text-align: center;
  line-height: 24px;
  line-height: 30px;
  font-style: italic;
}

.education-diamonds {
  clear: both;
  margin: 0 0 20px;
  padding: 0 10px;
}

.education-diamonds .education-diamonds-head {
  clear: both;
  margin: 0;
  padding: 0 0 15px;
  text-align: center;
  font-size: 20px;
  color: #000;
  line-height: 30px;
}

.education-diamonds .education-diamonds-img {
  clear: both;
  margin: 0;
  padding: 15px 0 5px;
  text-align: center;
  font-size: 30px;
  color: #000;
  line-height: 30px;
}

.education-diamonds p {
  font-size: 16px;
  line-height: 22px;
  color: #666;
  clear: both;
  margin: 0;
  padding: 10px 0 0;
  text-align: center;
}

.jewelry-buying-guide-img {
  clear: both;
  margin: 0;
  padding: 0 0 12px;
  background: url(../images/jewelry-buying-shadow.png) no-repeat bottom center;
}

.jewelry-buying-right-container {
  clear: both;
  margin: 0;
  padding: 0;
}

.jewelry-buying-right-container p {
  font-size: 22px;
  color: #666;
  clear: both;
  margin: 0 0 0 50px;
  padding: 0;
  line-height: 30px;
  text-align: left;
}

.jewelry-buying-para {
  clear: both;
  margin: 0;
  padding: 0;
}

.meet-team-main-img {
  clear: both;
  margin: 0 0 10px;
  padding: 0;
  text-align: center;
}

.jewelry-buying-head1 {
  font-size: 20px;
  color: #666;
  clear: both;
  margin: 10px 0;
  padding: 0 0 0;
  text-transform: uppercase;
}

.jewelry-buying-head1.cap-text {
  border-bottom: 1px solid #727272;
  clear: both;
  color: #727272;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  padding: 0 0 7px;
  text-transform: capitalize;
}

.jewelry-buying-head {
  font-size: 20px;
  color: #666;
  clear: both;
  margin: 10px 0;
  padding: 0;
  text-transform: capitalize;
}

.jewelry-buying-para p {
  color: #727272;
  margin: 10px 0;
  padding: 0;
  font-weight: 400;
}

.setting-makes-sense {
  clear: both;
  margin: 20px 0;
  padding: 12px;
  border: 1px solid #d5d5d5;
}

.setting-makes-sense .setting-makes-sense-head {
  clear: both;
  margin: 0;
  padding: 0 0 15px;
  text-align: center;
  font-size: 24px;
  color: #000;
  line-height: 30px;
}

.setting-makes-sense .setting-makes-sense-img {
  clear: both;
  margin: 0;
  padding: 15px 0 5px;
  text-align: center;
}

.setting-makes-sense p {
  font-size: 14px;
  line-height: 20px;
  color: #666;
  clear: both;
  margin: 0;
  padding: 10px 0 0;
  text-align: left;
}

.about-edu-para {
  font-size: 18px;
  line-height: 22px;
  color: #666;
  clear: both;
  margin: 0;
  padding: 0;
}

.oneFourth-new, .threeFourth-new, .twoFourth-new {
  float: left;
  margin: 0 1% 0 0;
  padding: 0 0;
}

.oneFourth-new {
  width: 24.25%;
}

.twoFourth-new {
  width: 49.5%;
}

.threeFourth-new {
  width: 74.75%;
}

.TabbedPanelsTab {
  position: relative;
  top: 1px;
  font-size: 18px;
  font-weight: 600;
  color: #545454;
  text-decoration: none;
  margin: 0 1% 0 0;
  padding: 12px 0;
  display: inline-block;
  text-transform: capitalize;
  list-style: none;
  cursor: pointer;
  background-color: #e9e9e9;
  line-height: 20px;
  text-align: center;
}

.TabbedPanelsTab.left-side-tab {
  position: relative;
  top: 1px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin: 0 1% 45px 0;
  padding: 12px 2%;
  display: block;
  text-transform: capitalize;
  list-style: none;
  cursor: pointer;
  background-color: #333;
  line-height: 20px;
  text-align: left;
  width: 96%;
  float: left;
}

.TabbedPanelsTab:last-child {
  border-right: none;
}

.TabbedPanelsTab:hover {
  color: #fff;
  background-color: #666;
}

.TabbedPanelsTabHover {
  color: #666;
}

.TabbedPanelsTabSelected {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin: 0 1% 0 0;
  padding: 12px 0;
  display: inline-block;
  text-transform: capitalize;
  line-height: 20px;
  background-color: #333;
  text-align: center;
  position: relative;
}

.TabbedPanelsTabSelected.sele-left-side-tab {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin: 0 0 45px 0;
  padding: 12px 2%;
  display: block;
  text-transform: capitalize;
  line-height: 20px;
  background-color: #666 !important;
  text-align: left;
  width: 96%;
  position: relative;
  float: left;
}

.TabbedPanelsTabSelected:after {
  bottom: -6px;
  color: #e4d39d;
  content: "";
  font-size: 20px;
  height: 10px;
  left: 47%;
  position: absolute;
  width: 12px;
}

.TabbedPanelsTabSelected.sele-left-side-tab:after {
  bottom: -6px;
  color: #666;
  content: "";
  font-size: 20px;
  height: 10px;
  left: 47%;
  position: absolute;
  width: 12px;
}

.TabbedPanelsTabSelected.sele-left-side-tab:before {
  right: -8px !important;
  color: #666;
  content: "►";
  font-size: 20px;
  height: 10px;
  top: 13px !important;
  position: absolute;
  width: 12px;
}

.TabbedPanelsTabSelected:hover {
  color: #fff;
}

.TabbedPanelsTab a {
  color: #000;
  text-decoration: none;
}

.TabbedPanelsContentGroup {
  clear: both;
}

.TabbedPanelsContent {
  padding: 4px;
}

.VTabbedPanels .TabbedPanelsTabGroup {
  float: left;
  width: 10em;
  height: 20em;
  background-color: #eee;
  position: relative;
  border-top: solid 1px #999;
  border-right: solid 1px #999;
  border-left: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
}

.VTabbedPanels .TabbedPanelsTab {
  float: none;
  margin: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}

.VTabbedPanels .TabbedPanelsTabSelected {
  background-color: #eee;
  border-bottom: solid 1px #999;
}

.VTabbedPanels .TabbedPanelsContentGroup {
  clear: none;
  float: left;
  padding: 0;
  width: 30em;
  height: 20em;
}

.TabbedPanels {
  margin: 0;
  padding: 0;
  float: left;
  clear: none;
  width: 100%;
}

.TabbedPanelsTabGroup {
  margin: 10px 0 30px;
  padding: 0;
}

.TabbedPanelsTab1 {
  position: relative;
  top: 1px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin: 0 0.7% 0 0;
  padding: 12px 0;
  display: inline-block;
  text-transform: capitalize;
  list-style: none;
  cursor: pointer;
  background-color: #333;
  line-height: 20px;
  text-align: center;
  width: 24%;
}

.TabbedPanelsTab1.left-side-tab {
  position: relative;
  top: 1px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin: 0 1% 45px 0;
  padding: 12px 2%;
  display: block;
  text-transform: capitalize;
  list-style: none;
  cursor: pointer;
  background-color: #333;
  line-height: 20px;
  text-align: left;
  width: 96%;
  float: left;
}

.TabbedPanelsTab1:last-child {
  border-right: none;
}

.TabbedPanelsTab1:hover {
  color: #fff;
  background-color: #666;
}

.TabbedPanelsTabHover {
  color: #fff;
}

.TabbedPanelsTabSelected1 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin: 0 0.6% 0 0;
  padding: 12px 0;
  display: inline-block;
  text-transform: capitalize;
  line-height: 20px;
  background-color: #666;
  text-align: center;
  position: relative;
}

.TabbedPanelsTabSelected1.sele-left-side-tab {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin: 0 0 45px 0;
  padding: 12px 2%;
  display: block;
  text-transform: capitalize;
  line-height: 20px;
  background-color: #333 !important;
  text-align: left;
  width: 96%;
  position: relative;
  float: left;
}

.TabbedPanelsTabSelected1:after {
  bottom: -6px;
  color: #666;
  content: "▼";
  font-size: 20px;
  height: 10px;
  left: 47%;
  position: absolute;
  width: 12px;
}

.TabbedPanelsTabSelected1.sele-left-side-tab:after {
  bottom: -6px;
  color: #666;
  content: "";
  font-size: 20px;
  height: 10px;
  left: 47%;
  position: absolute;
  width: 12px;
}

.TabbedPanelsTabSelected1.sele-left-side-tab:before {
  right: -8px !important;
  color: #000;
  content: "►";
  font-size: 20px;
  height: 10px;
  top: 13px !important;
  position: absolute;
  width: 12px;
}

.TabbedPanelsTabSelected1:hover {
  color: #fff;
}

.TabbedPanelsTab1 a {
  color: #000;
  text-decoration: none;
}

.TabbedPanelsContentGroup {
  clear: both;
}

.TabbedPanelsContent {
  padding: 4px;
}

.VTabbedPanels .TabbedPanelsTabGroup {
  float: left;
  width: 10em;
  height: 20em;
  background-color: #eee;
  position: relative;
  border-top: solid 1px #999;
  border-right: solid 1px #999;
  border-left: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
}

.VTabbedPanels .TabbedPanelsTab1 {
  float: none;
  margin: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}

.VTabbedPanels .TabbedPanelsTabSelected1 {
  background-color: #eee;
  border-bottom: solid 1px #999;
}

.VTabbedPanels .TabbedPanelsContentGroup {
  clear: none;
  float: left;
  padding: 0;
  width: 30em;
  height: 20em;
}

.all-pageHeading {
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
  background: url(../images/icons/header-bg.jpg) repeat-x;
  float: left;
}

.all-pageHeading span {
  letter-spacing: 1px;
  font-size: 32px;
  line-height: 44px;
  margin: 0;
  padding: 0 20px;
  display: inline-block;
  background-color: #fff;
}

.scrollup {
  opacity: 0.8;
  position: fixed;
  bottom: 125px;
  right: 25px;
  display: none;
  color: #000;
  padding: 0 6px;
  line-height: 24px;
  z-index: 10000;
}

.scrollup {
  border-radius: 20px;
  bottom: 125px;
  color: #000;
  display: none;
  font-size: 24px;
  height: 32px;
  line-height: 30px;
  opacity: 0.8;
  padding: 0;
  position: fixed;
  right: 25px;
  text-align: center;
  width: 32px;
  z-index: 10000;
  transition: all 0.8s linear;
}

.smessage {
  background: none repeat scroll 0 0 #ccc;
  border: 1px solid;
  border-radius: 5px;
  color: #000;
  display: none;
  float: left;
  font-size: 13px;
  margin: 10px 0 0;
  padding: 0;
  text-align: center;
  width: 100%;
}

.goldContainer {
  margin: 0;
  padding: 0;
}

.goldContainer ul {
  margin: 0;
  padding: 0;
}

.goldContainer ul li {
  margin: 0;
  padding: 0 0;
  list-style: none;
  display: block;
}

.goldContainer ul li label {
  float: left;
  margin: 0;
  padding: 4px 0;
  width: 100%;
}

.goldContainer ul li input[type=text] {
  margin: 0;
  padding: 8px 0;
  border: 1px solid #ccc;
  width: 96%;
  text-indent: 5px;
}

.goldContainer ul li textarea {
  margin: 0;
  padding: 5px;
  border: 1px solid #ccc;
  width: 94%;
}

.goldContainer ul li input[type=submit] {
  border: medium none;
  margin: 0;
  padding: 8px;
  width: 124px;
}

.termsImp {
  padding-left: 44px;
  font-size: 13px;
  margin-top: 10px;
}

.desinger-container .brand-page {
  list-style: none;
  border: 1px solid #e5e5e5;
  margin-bottom: 15px;
  padding: 10px;
  text-align: center;
  width: 100%;
  float: left;
}

.desinger-container .brand-page img {
  max-width: 100%;
}

.desinger-container .brand-page .name-banner {
  font-size: 16px;
  width: 100%;
  display: inline-block;
  color: #000;
}

.desinger-container .brand-page .name-banner:hover {
  color: #999;
}

.social-icon2 li {
  display: inline-block;
  list-style: none;
  margin-top: 10px;
}

.product-listing .pro-list-img .sub-similar-product {
  background-color: rgba(255, 255, 255, 0.8);
  bottom: 0;
  height: 38px;
  left: 0;
  padding: 10px 0;
  position: absolute;
  transform: translateY(20px);
  transition: all 0.3s linear 0s;
  visibility: hidden;
  width: 100%;
  z-index: 10;
}

.product-listing .pro-list-img a img {
  margin: 0;
  max-width: 100%;
}

.product-listing .pro-list-img:hover .sub-similar-product {
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
}

.filter_arrow ul li .dropdonw-filter-main .dropdonw-filter {
  background: 0 0 !important;
}

.social-plugin {
  margin: 0;
  padding: 0;
}

.social-plugin li {
  float: left;
  list-style: outside none none;
  margin: 0;
  padding: 0 18px 0 0;
}

.normalList {
  width: 100%;
  float: left;
  margin: 0 0 20px;
  padding: 0;
}

.normalList li {
  margin-left: 15px;
  padding-left: 5px;
  list-style: disc;
}

#easy_zoom.quick-view-zoom {
  position: absolute;
  top: 0;
  left: 100% !important;
  z-index: 1;
  width: 420px !important;
}

#easy_zoom {
  width: 520px;
  height: 400px;
  border: 5px solid #eee;
  background: #fff;
  color: #333;
  position: absolute;
  top: 0;
  left: 100%;
  overflow: hidden;
  -moz-box-shadow: 0 0 10px #777;
  -webkit-box-shadow: 0 0 10px #777;
  box-shadow: 0 0 10px #777;
  line-height: 400px;
  text-align: center;
  z-index: 1;
}

.brighton-div {
  width: 100%;
  float: left;
  margin-bottom: 15px;
}

.brighton-div .box-product {
  border: 1px solid #ddd;
  list-style: outside none none;
  width: 100%;
  float: left;
  margin-bottom: 14px;
  height: 266px;
  text-align: center;
}

.brighton-div .box-product img {
  max-width: 100%;
}

.brighton-div .box-product span {
  border-top: 1px solid #ddd;
  display: inline-block;
  font-size: 14px;
  margin-top: 12px;
  padding-top: 4px;
  width: 100%;
}

.popup-right h2 {
  font-size: 18px;
  margin-top: 0;
}

.popup-right li {
  border-top: 1px solid #ddd;
  padding: 12px 0;
  width: 100%;
  float: left;
}

.popup-right li:first-child {
  border-top: none;
}

.freeShipping td {
  padding: 8px;
}

.freeShipping table {
  margin: 10px 0;
}

.fl-none {
  float: none;
}

.btn-detail {
  background: 0 0 !important;
  border: 1px solid #333;
  color: #333;
}

.btn-detail:hover {
  background: #333 !important;
  border: 1px solid #333;
  color: #fff;
}

.social-icon1 ul li input {
  border: 1px solid #ddd;
  padding: 5px 30px 5px 8px;
  width: 200px;
}

.social-icon1 ul li button {
  border: none;
  width: 16px;
  height: 16px;
  background: url(../images/zoom-icon.png) left top no-repeat;
  position: absolute;
  cursor: pointer;
  right: 10px;
  top: 9px;
}

@media (max-width: 1290px) {
  .social-icon1 ul li + li {
    margin: 2px 5px 0;
  }
}
@media (max-width: 1030px) {
  .social-icon1 ul li input {
    width: 140px;
  }

  .social-icon1 .contactNo {
    font-size: 13px;
  }

  .social-icon1 ul li + li {
    margin: 2px 1px 0;
  }

  .shopping-cart-box .billing-info {
    border-right: none;
  }

  .shopping-cart-box .review-order {
    border-left: none;
  }

  .shopping-cart-box .billing-info, .shopping-cart-box .review-order {
    min-height: auto;
    margin-bottom: 15px;
  }

  .selectYourStyle li {
    width: 13.3%;
  }

  .selectYourStyle li label span {
    line-height: normal;
  }

  .productGridBox .productImage img {
    max-width: 100%;
  }

  .selectMetalType li label span {
    line-height: 26px;
  }

  .product-listing-new {
    height: 506px !important;
  }

  .product-listing-new .pro-detail-con .pro-detail-main-con .pro-img-container {
    height: 57%;
  }

  .product-listing .pro-detail-con {
    height: 506px;
  }

  .baxter-left-con .baxter-new-pro-img .baxter-thumbnail {
    position: relative;
  }
}
.ourTeam {
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
}

.ourTeam .thumbnail {
  display: block;
  margin: 0 0 5px;
}

.ourTeam .thumbnail img {
  padding: 2px;
  width: 100%;
}

.ourTeam p {
  text-align: center;
  line-height: 18px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 25px;
}

.ourTeam span {
  display: block;
  color: #757575;
  text-transform: none;
  font-weight: 400;
}

.warranty-page-header img {
  max-width: 100%;
}

@media (min-width: 768px) {
  .columnCenter {
    width: 100%;
    padding: 0;
  }

  .ourTeam > ul {
    margin: 30px 15px;
  }

  .ourTeam > ul > li {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .filter-new1 ul li .dropdonw-filter-main .dropdonw-filter, .product-filter label.selectDropDown {
    width: 175px;
  }

  .termsImp {
    padding-left: 0;
  }

  .selectYourStyle li {
    width: 15.5%;
  }

  .selectMetalType li label span {
    height: auto;
  }

  .productGridBox .productImage {
    height: auto;
  }

  .selectYourStyle li {
    width: 30%;
    border-left: none;
    margin-bottom: 15px;
  }

  .font24 {
    font-size: 20px !important;
  }

  .infoBox {
    height: 450px;
  }

  .infoBox img {
    max-width: 100%;
  }

  .paymentSecureVoucher li {
    width: 30%;
  }

  .paymentSecureVoucher li img {
    max-width: 100%;
  }

  .font18 {
    font-size: 14px;
  }

  .product-listing-new {
    height: 398px !important;
  }

  .product-listing .pro-detail-con {
    height: 399px;
  }
}
@media (min-width: 960px) {
  .columnCenter {
    width: 968px;
  }

  .ourTeam > ul {
    margin: 30px -15px;
  }

  .ourTeam > ul > li {
    width: 33.333333%;
  }
}
@media (max-width: 767px) {
  .columnCenter {
    width: 100%;
    padding: 0;
  }

  .ourTeam > ul {
    margin: 15px;
  }

  .ourTeam > ul > li {
    width: 100%;
  }

  .product-filter label.selectDropDown {
    min-width: 100%;
  }

  .paymentSecureVoucher li {
    width: 45%;
  }

  .paymentSecureVoucher li:last-child {
    width: 100%;
    border-left: none;
    margin-left: 0;
    padding-left: 0;
  }

  .paymentSecureVoucher li input[type=submit] {
    width: 100%;
  }

  .formBox .buttonType32 {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }

  .selectYourStyle li {
    width: 26%;
  }

  .product-listing-new {
    height: auto !important;
  }

  .edu-social-icon ul li {
    width: auto;
  }

  .product-listing-new .pro-detail-con .pro-detail-main-con .close-btn {
    position: absolute;
    right: 10px;
  }

  .product-listing-new .pro-detail-con .pro-detail-main-con .pro-img-container {
    height: auto;
  }

  .product-listing-new .pro-detail-con .pro-detail-main-con .product-name-con {
    padding: 0;
    margin-top: -20px;
  }
}
.errorMsg {
  color: red;
}

.product-sample {
  width: 100%;
  float: left;
  text-align: center;
}

.brand-left-panel table {
  width: 100%;
  margin: 10px 0;
}

#wrapper {
  min-height: 750px;
}

.search-by-name, .search-by-name1 {
  display: block;
  margin: 0;
  padding: 5px 0;
}

.search-by-name .search-head-new {
  width: 143px;
  margin: 0;
  padding: 0 0 0 10px;
  line-height: 25px;
  background: url(../images/search-by-name.png) no-repeat top left;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
  float: left;
}

.search-by-name .search-letter {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.search-by-name .search-letter ul {
  margin: 0;
  padding: 0;
}

.search-by-name .search-letter ul li {
  margin: 0;
  padding: 3px 0 0 1px;
  list-style: none;
  display: inline-block;
}

.search-by-name .search-letter ul li a {
  margin: 0;
  padding: 6px 9px 6px 8px;
  color: #717171;
  font-weight: 700;
  text-decoration: none;
  background-color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.search-by-name .search-letter ul li a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #717171;
}

.search-by-name .search-letter ul li a.search-letter-active {
  color: #fff;
  text-decoration: none;
  background-color: #717171;
}

.search-by-name1 .search-head-new1 {
  width: 214px;
  margin: 3px 0 0;
  padding: 0 0 0 10px;
  line-height: 25px;
  background: url(../images/search-by-first-or-last-name.png) no-repeat top left;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
  float: left;
}

.search-by-name1 .search-name {
  margin: 0;
  padding: 0;
  display: inline-block;
}

.search-by-name1 .search-name ul {
  margin: 0;
  padding: 0;
}

.search-by-name1 .search-name ul li {
  margin: 0;
  padding: 3px 10px 0 0;
  list-style: none;
  display: inline-block;
}

.search-by-name1 .search-name ul li input[type=text] {
  width: 200px;
  height: 28px;
  margin: 0;
  padding: 0 7px;
  line-height: 24px;
  background-color: #fff;
  border: 1px solid #999;
  color: #666;
}

@media (max-width: 990px) {
  .search-by-name {
    width: 100%;
    float: left;
    margin: 0 0 20px;
  }

  .search-by-name .search-letter, .search-by-name .search-letter ul {
    margin: 0;
    padding: 0;
    width: 100%;
    float: left;
    height: auto;
  }
}
.image-gallery-container {
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
}

.image-gallery-container .makeGap {
  height: 450px;
  width: 100%;
  float: left;
}

.image-gallery-container .image-gallery-listing {
  display: block;
  height: 217px;
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
}

.image-gallery-container .image-gallery-listing a img {
  width: 100%;
  height: 216px;
}

.image-gallery-container .image-gallery-listing span.people-name {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #fff;
  text-transform: capitalize;
  z-index: 1000;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 12px 0;
}

.image-gallery-container .img-gal-detail-con {
  width: 968px;
  height: auto;
  margin: 0;
  padding: 15px 0 0;
  position: absolute;
  display: none;
  z-index: 10000;
  top: 226px;
  left: 0;
}

.pntr-1 {
  background: url(../images/top-arrow-img-gallery.png) no-repeat 107px 0;
}

.pntr-2 {
  background: url(../images/top-arrow-img-gallery.png) no-repeat 325px 0;
}

.pntr-3 {
  background: url(../images/top-arrow-img-gallery.png) no-repeat 580px 0;
}

.pntr-4 {
  background: url(../images/top-arrow-img-gallery.png) no-repeat 825px 0;
}

.image-gallery-container .img-gal-detail-con .main-img-gal-detail-con {
  clear: both;
  height: 410px;
  margin: 0;
  padding: 20px;
  background-color: #2b2d2f;
  position: relative;
}

.image-gallery-container .img-gal-detail-con .main-img-gal-detail-con .user-main-img {
  clear: both;
  height: 410px;
  margin: 0 0 20px;
  padding: 0;
  text-align: center;
}

.image-gallery-container .img-gal-detail-con .main-img-gal-detail-con .close-btn {
  width: 27px;
  height: 26px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 10000;
}

.image-gallery-container .img-gal-detail-con .main-img-gal-detail-con .about-stone-container {
  clear: both;
  margin: 0;
  padding: 0;
}

.image-gallery-container .img-gal-detail-con .main-img-gal-detail-con .about-stone-container .image-gallery-head {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 36px;
  color: #fff;
  clear: both;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 36px;
  text-align: justify;
}

.image-gallery-container .img-gal-detail-con .main-img-gal-detail-con .about-stone-container p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #fff;
  clear: both;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 19px;
  text-align: justify;
}

.brideContainer {
  width: 100%;
  float: left;
  margin-bottom: 25px;
  list-style: none;
}

.brideContainer > li {
  width: 100%;
  float: left;
  position: relative;
  margin-top: 20px;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.brideContainer > li:first-child {
  margin-top: 0;
}

.brideContainer .brideColumns {
  margin: 0 0 0 2%;
  position: relative;
  width: 32%;
  float: left;
  overflow: hidden;
}

.brideContainer .brideColumns > .thumbnail {
  border: 4px solid #ddd;
  height: 210px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.brideContainer .brideColumns > .thumbnail .animateImageClass {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.brideContainer .brideColumns:first-child {
  margin-left: 0;
}

.brideContainer .brideColumns img:hover {
  cursor: pointer;
}

.brideContainer .brideColumns span {
  cursor: pointer;
  position: absolute;
  padding: 10px 12px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
}

.brideContainer .brideBio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 10;
  background-color: #fff;
  box-shadow: 0 0 8px #ccc;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.brideContainer .brideBio.active {
  opacity: 1;
  visibility: visible;
}

.brideContainer .brideBio.right {
  right: 0;
  left: inherit;
}

.brideContainer .brideBio .thumbnail {
  display: block;
  overflow: hidden;
}

.brideContainer .brideBio .socialLinks {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  float: left;
  text-align: right;
}

.brideContainer .brideBio .socialLinks > li {
  display: inline-block;
  margin-right: 15px;
}

.brideContainer .brideBio .socialLinks a {
  display: block;
  font-size: 24px;
}

.brideContainer .brideBio .title {
  display: block;
  font-size: 18px;
  margin: 0 0 10px;
}

.brideContainer .brideBio .title span {
  display: block;
  font-size: 14px;
}

.brideContainer .brideBio .closeBtn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: Arial;
  font-size: 20px;
}

.brideContainer .brideBio p {
  font-size: 16px;
}

.productPrivewThumb li {
  list-style: none;
  display: inline-block;
  border: 1px solid #ddd;
}

.preview_box_left ul li img {
  max-width: 100% !important;
}

.modal {
  z-index: 99999;
}

.home-main-con .carousel-inner p {
  color: #666;
  font-size: 18px;
  font-style: italic;
  line-height: 26px;
  list-style: outside none none;
}

.home-main-con .carousel-inner .testimonialInfo {
  color: #666;
  font-weight: 700;
  font-size: 18px;
  font-style: italic;
  line-height: 26px;
  list-style: outside none none;
}

.modal-backdrop {
  z-index: 9999;
}

.detail-main h2 {
  font-size: 16px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.image-box {
  width: 100%;
  float: left;
  text-align: center;
}

.popup-right li {
  list-style: none;
}

.product-img {
  width: 100%;
  float: left;
  text-align: center;
  border: 1px solid #ddd;
}

.headingBg {
  background: #e4ecf1;
  width: 100%;
  float: left;
  text-align: center;
  padding: 10px 0 15px;
}

.toggleMainNav .innerWrapper {
  left: 88%;
  overflow: hidden;
}

a.hideShowNav {
  font-size: 28px;
  color: #fff;
  margin-left: 15px;
}

.showLoader {
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(1, 61, 119, 0.8);
  top: 0;
  z-index: 999999;
}

.showLoader img {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -50px 0 0 -50px;
}

.body-container {
  width: 100%;
  float: left;
  margin: 0 0 20px;
}

.main-small-banner {
  width: 100%;
  float: left;
  margin-bottom: 20px;
}

.main-small-banner img {
  width: 100%;
}

.main-headding, h1.home-head {
  background: url(../images/maharaja-star-black-bor.png) no-repeat scroll center bottom;
  clear: both;
  color: #000;
  font-size: 45px;
  line-height: 54px;
  margin: 0 0 10px;
  padding: 0 0 20px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  float: left;
}

.home-main-con {
  width: 100%;
  float: left;
  margin: 30px 0 0;
}

.home-main-con .owner-of-maharaja img {
  width: 100%;
}

.about-maharaja-text {
  clear: both;
  color: #777;
  font-size: 14px;
  line-height: 26px;
  margin: 0;
  padding: 0;
  text-align: left;
}

.testimonial-con {
  background-color: #ebebeb;
  border-radius: 8px;
  clear: both;
  height: auto;
  margin: 40px 0 0;
  padding: 70px 50px;
  position: relative;
  width: 100%;
  float: left;
}

.testimonial-con .coma-starts {
  background: rgba(0, 0, 0, 0) url(../images/maharaja-coma-starts.png) no-repeat scroll 0 0;
  height: 40px;
  left: 20px;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 49px;
  top: 20px;
}

.testimonial-con .coma-end {
  background: url(../images/maharaja-coma-ends.png) no-repeat scroll 0 0;
  bottom: 20px;
  height: 40px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 20px;
  width: 49px;
}

.testimonial-con .columnTmnl {
  clear: both;
  height: 140px !important;
  margin: 0;
  overflow: hidden;
  padding: 0;
}

.why-choose-us {
  background: rgba(0, 0, 0, 0) url(../images/maharaja-why-choose-us-bg.jpg) no-repeat scroll center top;
  margin: 50px auto 0;
  padding: 30px 0 100px;
  width: 100%;
  float: left;
}

.why-choose-head {
  clear: both;
  color: #fff;
  font-size: 45px;
  line-height: 45px;
  margin: 0;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
}

.star-white-bor {
  clear: both;
  margin: 0;
  padding: 10px 0;
  text-align: center;
}

.the-unique {
  clear: both;
  color: #fff;
  font-size: 16px;
  letter-spacing: 14px;
  margin: 0;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
}

.home-brands {
  clear: both;
  margin: 50px 0 0;
  padding: 0;
  width: 100%;
  float: left;
  text-align: center;
}

.home-brands .home-brands-link {
  clear: both;
  margin: 0;
  padding: 0;
  text-align: center;
}

.home-brands img:hover {
  opacity: 0.8;
}

.home-brands .home-brands-link a {
  color: #fff;
  font-size: 24px;
  line-height: 26px;
  text-decoration: none;
  text-transform: capitalize;
  transition: all 0.3s linear 0s;
  font-weight: 700;
}

.home-brands .home-brands-link a:hover {
  color: #ddd;
}

.home-brands img {
  margin-bottom: 20px;
}

.home-sucessStory, .maharaja-video, .maharaja-video-text {
  width: 100%;
  float: left;
}

.maharaja-team {
  width: 100%;
  text-align: center;
  float: left;
  margin-top: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.maharaja-team .maharaja-team-img {
  clear: both;
  margin: 0 0 15px;
  padding: 0;
  text-align: center;
}

.maharaja-team .maharaja-team-name {
  clear: both;
  color: #000;
  font-size: 18px;
  line-height: 26px;
  margin: 0;
  padding: 5px 0 10px;
  text-align: center;
  text-transform: uppercase;
}

.maharaja-team .maharaja-team-designation {
  clear: both;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  padding: 0 0 10px;
  text-align: center;
  text-transform: uppercase;
}

.maharaja-video-text {
  text-align: center;
  color: #797979;
  padding: 0;
  line-height: 24px;
}

.email-signup .search-box span {
  color: #fff;
  float: left;
  margin: 5px 10px 0 0;
  padding: 0;
}

.email-signup {
  width: 100%;
  float: left;
  margin-top: 10px;
}

.copyright {
  clear: both;
  color: #fff;
  font-size: 12px;
  margin: 5px 0 10px;
  padding: 0;
  text-align: center;
  float: left;
  width: 100%;
}

.pji-logo {
  float: left;
  width: 100%;
  text-align: right;
}

.socialftp {
  float: left;
  width: 100%;
  text-align: center;
  margin: 10px 0;
}

.socialftp li {
  display: inline-block;
  padding: 0 5px;
}

.top-slide a {
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  position: fixed;
  bottom: 40px;
  right: 30px;
  background: #000;
  text-align: center;
  line-height: 40px;
}

.small-banner-bot {
  float: left;
  width: 100%;
}

.star-rating li a {
  transition: none;
}

.aboutusImg img {
  width: 100%;
}

.small-img {
  width: 100%;
  float: left;
  text-align: left;
  margin-top: 10px;
}

.small-img img {
  display: inline-block;
  border: 1px solid #ddd;
}

.image-box img {
  max-width: 100%;
}

.preview_box_right img {
  max-width: 100%;
}

.zoomPad {
  display: inline-block !important;
}

.box-product img {
  max-width: 100%;
}

.edu-pro-stone, .modal-title {
  text-transform: capitalize;
}

.other-product-name a {
  width: 100%;
  font-size: 12px;
  text-align: center;
  float: left;
  height: 50px;
  overflow: hidden;
}

.other-product-name span {
  width: 100%;
  float: left;
  border-top: 1px solid #ddd;
  padding-top: 10px;
  text-align: center;
  margin-top: 10px;
}

.star-white-bor img {
  max-width: 100%;
}

.education-main-container .columnFull {
  margin-bottom: 10px;
}

.myBagDetail li {
  list-style: none;
}

.quickViewModal .preview_box_right {
  width: 100%;
  float: left;
  text-align: center;
  border: 1px solid #ddd;
}

.quickViewModal a[target=_blank] {
  text-decoration: underline;
}

.quickViewModal a[target=_blank]:hover {
  color: #000;
  text-shadow: 0 0 0.5px #999;
}

@media (max-width: 1030px) {
  .classForDevUse .sub-similar-product {
    display: block !important;
    opacity: 1;
    visibility: visible;
    bottom: 0;
  }

  .productGridBox .saveForLater {
    display: block;
  }

  .product-list-container-new .oneFourth {
    width: 23.8%;
  }

  .product-listing .pro-detail-con {
    width: 457px;
  }

  .removeFromQuick {
    display: block;
    top: -7px;
    right: 9px;
    z-index: 999;
  }

  .filter-new1 ul li .dropdonw-filter-main ol.showfilter {
    display: block;
  }

  .filter-new1 ul li {
    width: 23%;
  }
}
@media (max-width: 780px) {
  #easy_zoom {
    display: none !important;
  }

  .baxter-left-con .baxter-new-pro-img {
    height: auto;
  }

  .newAccountForm .verticleOr {
    display: none;
  }

  .newAccountForm ul li {
    margin-bottom: 0;
  }

  .newAccountForm input[type=password], .newAccountForm input[type=text], .newAccountForm textarea {
    margin-bottom: 10px;
  }

  .newAccountForm .buttonType32 {
    margin-top: 20px;
  }

  .contentGallery li {
    height: 104px;
  }

  .newAccountForm h2 {
    font-size: 24px;
    line-height: 30px;
  }

  h1.main-head {
    font-size: 24px;
  }

  .gemstones-right-container .birthstone a.stone-link {
    margin-top: 15px;
  }

  .gemstone-peridot .gemstone-peridot-earring {
    display: none;
  }

  .gemstone-peridot-bracelet {
    padding: 0;
    padding-top: 82px;
  }

  .gemstone-peridot-bracelet img {
    max-width: 100%;
  }

  .mainHeading-pageAll {
    font-size: 34px;
  }

  .education-diamonds .education-diamonds-head {
    font-size: 18px;
  }

  .education-diamonds p {
    font-size: 14px;
  }

  .preview_box_image {
    padding: 10px !important;
  }

  .zoomPad img {
    max-width: 100%;
  }

  .all-pageHeading span {
    font-size: 36px;
  }

  .product-list-container-new .oneFourth {
    width: 23.5%;
  }

  .product-listing .pro-detail-con {
    width: 347px;
  }

  .product-listing .pro-detail-con .pro-detail-main-con .social-icon-main a.detail-link, .product-listing-new .pro-detail-con .pro-detail-main-con .social-icon-main a.detail-link {
    font-size: 12px;
  }

  .productPrivewThumb li {
    width: 50px;
  }

  .education-main-container .columnFull {
    margin-bottom: 6px;
  }

  .education-main-container .col-md-3.col-sm-3.col-xs-6 img {
    height: 313px;
  }
}
@media (max-width: 767px) {
  .main-headding, h1.home-head {
    font-size: 26px;
  }

  .why-choose-head {
    font-size: 22px;
  }

  .the-unique {
    font-size: 14px;
  }

  .why-choose-us {
    background-size: cover;
  }

  .email-signup .search-box span {
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
  }

  .pji-logo {
    text-align: center;
  }

  h1.main-head {
    font-size: 24px;
    padding-bottom: 0;
  }

  .baxter-right-con {
    text-align: center;
  }

  .baxter-right-con .baxter-price-con {
    margin-right: 0;
    text-align: center;
    font-size: 24px;
  }

  .baxter-button-con ul li {
    width: 100%;
    text-align: center;
  }

  .baxter-button-con ul li .btn-theme-new {
    text-align: center;
    display: inline-block;
    float: none;
  }

  .newAccountForm {
    margin-top: 20px;
  }

  #shoppingCartList table tr td {
    padding: 5px 6px;
    font-size: 12px;
  }

  .wish-page .buttonType32 {
    width: 100%;
    margin: 10px 0;
  }

  .education-about-pro .education-pro-name a {
    font-size: 16px;
  }

  .education-main-container {
    min-height: auto;
  }

  .education-precious-metals {
    text-align: center;
  }

  .education-precious-metals img {
    max-width: 100%;
  }

  .TabbedPanelsTabGroup li {
    float: left;
    list-style: outside none none;
    margin-bottom: 15px;
    width: 100%;
  }

  .TabbedPanelsTabGroup .inner {
    display: none;
    float: left;
    overflow: hidden;
    width: 100%;
  }

  .edu-brown-text {
    margin-top: 20px;
    text-align: center;
  }

  .contentGallery li {
    width: 49%;
  }

  .newAccountForm h2 {
    font-size: 18px;
    line-height: 26px;
  }

  h1.main-head {
    font-size: 18px;
    margin-bottom: 0;
  }

  .contentBox h6.textCenter {
    font-size: 16px;
    margin-top: 0 !important;
  }

  .TabbedPanelsTabGroup li .welcomeimgBox li {
    width: 50%;
    margin-bottom: 10px;
  }

  .tab-product-detail p {
    text-align: center !important;
  }

  .gemstones-right-container p {
    padding: 0;
    font-size: 16px;
    text-align: center;
  }

  .gemstones-right-container .birthstone a.stone-link {
    margin-top: 15px;
  }

  .gemstone-peridot .gemstone-peridot-ring {
    display: none;
  }

  .gemstone-olovine {
    border-right: none;
    margin-bottom: 15px;
  }

  .gemstones-right-container p {
    margin-right: 0;
  }

  .mainHeading-pageAll {
    font-size: 28px;
  }

  .education-diamonds .education-diamonds-head {
    font-size: 18px;
  }

  .filter-new1 form ul li {
    width: 100%;
    margin: 0 0 10px;
  }

  .filter-new1 form ul li label.selectDropDown {
    width: 100%;
  }

  .filter-new1 .social-icon-main ul li {
    width: auto;
    margin: 0 0 10px;
  }

  .filter-new1 ul li .dropdonw-filter-main .dropdonw-filter {
    width: 100%;
  }

  .j-brand-head {
    margin-top: 15px;
  }

  .tab-product-detail {
    text-align: center;
    margin-top: 10px;
  }

  .TabbedPanelsTabGroup li .toggle .fa {
    margin-top: 5px;
  }

  .preview_box_right {
    height: auto !important;
  }

  .videoList li {
    margin-bottom: 0;
  }

  .all-pageHeading span {
    font-size: 22px;
  }

  .gemstones-diamond-img img {
    max-width: 100%;
  }

  h1.gemstones-head {
    font-size: 24px;
  }

  .gemstone-peridot-bracelet {
    padding-top: 20px;
  }

  .product-list-container-new .oneFourth, .product-list-container-new .oneHalf {
    width: 100% !important;
    margin: 0 0 10px;
  }

  .product-listing .pro-detail-con {
    width: 100%;
  }

  .product-filter {
    padding: 0 13px !important;
  }

  .product-filter li {
    width: 100% !important;
    margin: 0 0 10px !important;
  }

  .newAccountForm.clearfix {
    width: 100%;
    float: left;
  }

  .education-main-container .col-md-3.col-sm-3.col-xs-6 img {
    height: auto;
  }

  .education-about-pro {
    margin-bottom: 10px;
  }

  .education-main-container .columnFull {
    margin-bottom: 0;
  }

  .removeFromQuick {
    z-index: 9999;
    font-size: 24px;
  }

  .close {
    font-size: 30px;
  }

  .homevideo iframe {
    width: 100%;
  }

  h1.main-head img {
    margin-bottom: 20px;
  }

  .filter-new1 ul li {
    width: 100%;
  }

  .filter-new1 form ul li {
    margin-top: 10px;
  }
}
#showMore {
  width: 100%;
  float: left;
  margin: 10px 0;
  text-align: center;
}

.section-couplesGallery .row {
  margin-left: -1px;
  margin-right: -1px;
}

.section-couplesGallery .row [class*=col-] {
  padding: 1px;
}

.section-couplesGallery .row [class*=col-] > a {
  display: block;
  position: relative;
  padding: 100% 0 0;
  overflow: hidden;
}

.section-couplesGallery .row [class*=col-] > a > img {
  position: absolute;
  width: auto;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-height: 100%;
  width: auto;
  max-height: 120%;
  left: 50%;
}

select, select.form-control {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  padding-right: 20px;
  border-radius: 0;
  background: #fff url(../images/icons/icon-angle-down.svg) no-repeat center right 12px/12px 12px;
}

.section-pageHeading {
  margin: 0 0 30px;
}

.section-pageHeading .title {
  margin: 0;
  padding: 0;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  text-transform: uppercase;
}

.section-pageHeading .title.text-left {
  text-align: left;
}

.section-pageHeading .title small {
  text-transform: none;
}

.section-pageHeading .title + img {
  width: 100%;
}

@media (max-width: 767px) {
  .section-pageHeading {
    margin: 15px 0 20px;
  }
}
@media (max-width: 767px) {
  .mobScrollNone {
    overflow: hidden;
  }
}
.pageLoader {
  z-index: 9999;
  position: fixed;
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  cursor: wait;
  display: none;
  background: url(../images/ajax-loader-new.gif) no-repeat center center;
}

.siteSearch * {
  border-radius: 0;
}

.siteSearch .dropdown-menu {
  width: 240px;
}

.siteSearch .dropdown-toggle {
  background-color: #fff;
}

.siteSearch .open .dropdown-toggle {
  box-shadow: none;
}

.breadcrumb {
  margin: 20px 0 15px;
  padding: 0;
  text-align: center;
  background: 0 0;
}

@media (max-width: 767px) {
  .section-breadcrumb {
    display: none;
  }
}
.productGridBox {
  width: 100%;
  float: left;
  border: 1px solid #ddd;
  padding: 8px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.productGridBox .otherActions {
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  z-index: 1;
}

.productGridBox .otherActions a {
  font-size: 18px;
}

.productGridBox .productImage {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  text-align: center;
}

.productGridBox .productImage .thumb {
  width: 100%;
  min-height: 100px;
  float: left;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: url(../images/bj-ajax-loader-product.gif) no-repeat center center;
}

.productGridBox .productImage .thumb > img {
  width: 100%;
  height: auto;
}

.productGridBox .productImage > .viewDetail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 5px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.productGridBox .productTitle {
  text-align: center;
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Silk Serif";
}

.productGridBox .productPrice {
  text-align: center;
  font-size: 14px;
  line-height: 22px;
  width: 100%;
}

.productGridBox .productPrice .callForPrice, .productGridBox .productPrice .productSellPrice {
  font-size: 18px;
  color: #0f0f0f;
  text-decoration: none;
}

.productGridBox .productPrice .productRetailPrice {
  text-decoration: line-through;
  color: #888;
  font-size: 12px;
  padding-left: 5px;
}

.productGridBox .boxFooter {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: start;
  -moz-align-items: start;
  align-items: start;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 90px;
  padding-bottom: 5px;
}

.productGridBox .boxFooter .productPrice {
  margin-top: auto;
}

.productGridBox .newTag, .productGridBox .saleTag {
  position: absolute;
  left: -8px;
  top: -7px;
}

@media (min-width: 768px) {
  .productGridBox .productImage .thumb {
    min-height: inherit;
    padding: 100% 0 0;
    background: url(../images/bj-ajax-loader-product.gif) no-repeat center center;
  }

  .productGridBox .productImage .thumb > img {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 100%;
    max-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .productGridBox .productImage > .viewDetail {
    opacity: 0;
    visibility: hidden;
    bottom: -15px;
  }

  .productGridBox .productImage:hover > .viewDetail {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
  }
}
.newTag, .saleTag {
  width: 72px;
  height: 72px;
  background-image: url(../images/icons/sale-new-tag.png);
  background-repeat: no-repeat;
}

.saleTag {
  background-position: 0 0;
}

.newTag {
  background-position: -72px 0;
}

.categoryBox {
  width: 100%;
  background-color: #fff;
  position: relative;
  display: block;
  padding-bottom: 27px;
  min-height: 225px;
  border-radius: 4px 4px;
  overflow: hidden;
  border: 1px solid #ddd;
  text-align: center;
}

.categoryBox .productImage {
  width: 100%;
  overflow: hidden;
  text-align: center;
  height: 225px;
}

.categoryBox .productImage a {
  display: block;
}

.categoryBox .productImage img {
  height: auto;
}

.categoryBox .descriptionBox {
  width: 100%;
  position: absolute;
  bottom: -75px;
  background-color: #d6f0fd;
  padding: 10px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.categoryBox:hover .descriptionBox {
  bottom: 0;
}

.categoryBox .productPrice, .categoryBox .productTitle {
  font-size: 16px;
  color: #90336f;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 5px;
  line-height: 26px;
}

.categoryBox .productPrice a, .categoryBox .productTitle a {
  color: #3e3e3e;
}

.categoryBox .productPrice a:hover, .categoryBox .productTitle a:hover {
  text-decoration: underline;
}

.categoryBox .productDesc {
  font-size: 11px;
  line-height: 14px;
  height: 40px;
  overflow: hidden;
}

.categoryBox .productInfo {
  font-size: 12px;
  font-weight: 700;
  color: #817c7a;
  line-height: 14px;
}

.categoryBox .shopNow {
  font-size: 11px;
  font-style: italic;
  float: right;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 2px;
}

.categoryBox .shopNow:hover {
  text-decoration: none;
}

.categoryBox .actionButton, .categoryBox input {
  position: absolute;
  bottom: 5px;
  right: 10px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .categoryBox {
    min-height: inherit;
    padding-bottom: 0;
  }

  .categoryBox .productImage {
    height: auto;
  }

  .categoryBox .descriptionBox {
    position: relative;
    bottom: auto;
  }

  .categoryBox .productTitle {
    margin-bottom: 0;
    line-height: 22px;
  }

  .categoryBox .productDesc {
    line-height: 12px;
  }

  .categoryBox .shopNow {
    float: none;
    display: block;
  }
}
.productGridBox3 {
  position: relative;
  display: block;
  height: 245px;
  max-height: 245px;
  overflow: hidden;
}

.productGridBox3 .productImage {
  width: 100%;
  height: 134px;
  overflow: hidden;
}

.productGridBox3 .productImage img {
  width: 99%;
  height: auto;
  border: 1px solid #dfdfdf;
}

.productGridBox3 .productPrice, .productGridBox3 .productTitle {
  font-size: 16px;
  color: #90336f;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 6px;
  line-height: 22px;
  text-align: center;
}

.productGridBox3 .productPrice a, .productGridBox3 .productTitle a {
  color: #90336f;
}

.productGridBox3 .productPrice a:hover, .productGridBox3 .productTitle a:hover {
  text-decoration: underline;
}

.productGridBox3 .productDesc {
  line-height: 20px;
  text-align: center;
  padding-top: 12px;
}

.productGridBox3 .productInfo {
  font-size: 12px;
  font-weight: 700;
  color: #817c7a;
  line-height: 14px;
}

@media (max-width: 1030px) {
  .productGridBox .saveForLater {
    display: block;
  }
}
@media (max-width: 990px) {
  .productListing .productGridBox .productTitle {
    height: 54px;
    line-height: 14px;
  }

  .productListing .productGridBox .viewDetail {
    display: block !important;
    font-size: 10px;
    white-space: nowrap;
    padding: 3px;
    top: 80%;
  }
}
.section-productDetail {
  margin-bottom: 70px;
}

@media (max-width: 767px) {
  .section-productDetail {
    margin-bottom: 20px;
  }
}
.productPreviewBox {
  width: 100%;
  float: left;
  margin: 0 0 15px;
  padding: 12px;
  border: 1px solid #d5d5d5;
  box-sizing: border-box;
}

.productPreviewBox .currentAngle {
  width: 100%;
  float: left;
  margin: 0 0 12px;
}

.productPreviewBox .currentAngle img {
  width: 100%;
}

.productAnglesList {
  margin: 0 -6px;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.productAnglesList > li {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 20%;
  -moz-box-flex: 1;
  -moz-flex: 1 1 20%;
  -ms-flex: 1 1 20%;
  flex: 1 1 20%;
  max-width: 20%;
  padding: 0 6px;
}

.productAnglesList > li > a {
  width: 100%;
  float: left;
  margin: 0;
  padding: 100% 0 0;
  overflow: hidden;
  position: relative;
  border: 1px solid #d5d5d5;
}

.productAnglesList > li > a > img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.socialPluginBox {
  width: 100%;
  float: left;
  text-align: center;
  margin: 0 0 20px;
}

.socialPluginList {
  margin: 0;
  padding: 0;
}

.socialPluginList > li {
  padding: 0 10px;
  list-style: none;
}

.socialPluginList > li > a {
  display: block;
  color: #9a9a9a;
  font-size: 20px;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  border-radius: 100%;
  border: 1px solid #9a9a9a;
}

.section-login .form-control {
  border-radius: 0;
}

.socialPluginList > li > a:hover {
  background: var(--clrTheme);
  color: #fff;
  border: 1px solid var(--clrTheme);
}

.requestBtns {
  width: 100%;
  float: left;
  margin: 0 0 20px;
}

.requestBtns .requestBtnsList {
  margin: 0 -5px;
  padding: 0;
  list-style: none;
}

.requestBtns .requestBtnsList > li {
  padding: 5px;
}

.requestBtns .requestBtnsList > li > .btn {
  color: #9a9a9a;
}

.requestBtns .requestBtnsList > li > .btn:hover {
  color: var(--clrTheme);
}

.requestBtns .requestBtnsList > li.sfl-no a, .requestBtns .requestBtnsList > li.sfl-yes a {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  color: #9a9a9a;
}

.requestBtns .requestBtnsList > li.sfl-no a span, .requestBtns .requestBtnsList > li.sfl-yes a span {
  display: none;
}

.requestBtns .requestBtnsList > li a.saved, .requestBtns .requestBtnsList > li a[title=Saved] {
  color: orange;
}

@media (max-width: 767px) {
  .requestBtns {
    margin-bottom: 10px;
  }
}
.tollFreeNo {
  font-size: 16px;
  display: block;
  text-align: center;
  color: #9a9a9a;
}

.tollFreeNo span {
  display: inline-block;
  line-height: 28px;
}

.tollFreeNo span.tollNo {
  font-weight: 700;
  font-size: 18px;
}

@media (max-width: 767px) {
  .tollFreeNo {
    margin-bottom: 20px;
    width: 100%;
    float: left;
    padding: 10px;
  }

  .tollFreeNo span {
    display: block;
  }
}
.productDetail .productTitle {
  font-size: 20px;
  line-height: 22px;
  margin: 0 0 10px;
}

.productDetail .productSku {
  font-size: 14px;
  margin: 0 0 15px;
  color: #656565;
}

.productDetail .productDesc {
  margin: 0 0 15px;
  line-height: 18px;
}

.productDetail .productPrice {
  font-size: 22px;
  line-height: 36px;
  margin: 0 0 15px;
  color: var(--clrTheme);
}

.productDetail .productPrice span {
  color: #0f0f0f;
}

.productDetail .productPrice small {
  font-size: 14px;
  display: block;
}

.productDetail .selectRingSizeBox {
  width: 100%;
  float: left;
  margin: 0 0 30px;
  padding: 0;
}

.productDetail .selectRingSizeBox label {
  margin: 0;
}

.productDetail .selectRingSizeBox .form-control {
  max-width: 120px;
  margin: 0 7px;
}

.productDetail .btnGroup {
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
}

.productDetail .btnGroup .btn {
  text-transform: uppercase;
  height: 50px;
  line-height: 36px;
}

.productDetail .btnGroup .btn.btnUnderline {
  background-color: #fff;
  text-decoration: underline;
}

.productDetail .btnGroup .btn.btnUnderline:hover {
  text-decoration: none;
  color: #000;
}

.productDetail .btnGroup .btnAddToCart {
  max-width: 280px;
}

.productDetail .btnGroup .btnAddToCart:hover {
  border-color: transparent;
  color: #fff !important;
}

.productDetail .btnGroup.btnFill .btn {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -moz-box-flex: 1;
  -moz-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
}

@media (max-width: 990px) {
  .productDetail .btnGroup {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .productDetail .btnGroup .btn {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
    -moz-box-flex: 1;
    -moz-flex: 1 1 0;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
  }
}
.productSpecificationBox {
  width: 100%;
  float: left;
  padding: 20px 0 0;
}

.productSpecificationBox .card {
  border: none;
  border-radius: 0;
}

.productSpecificationBox .card-header {
  background-color: transparent;
  padding: 0;
}

.productSpecificationBox .card-header > a {
  display: block;
  padding: 15px 0;
  text-align: left;
  position: relative;
  font-size: 16px;
  text-transform: uppercase;
}

.productSpecificationBox .card-header > a:active, .productSpecificationBox .card-header > a:focus {
  outline: 0;
  box-shadow: none;
}

.productSpecificationBox .card-header > a::before {
  content: "-";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
}

.productSpecificationBox .card-header > a.collapsed::before {
  content: "+";
}

.productSpecificationBox .card-body {
  min-height: 62px;
}

.productSpecificationBox table {
  width: 100%;
  border: none;
  border-collapse: collapse;
}

.productSpecificationBox table td, .productSpecificationBox table th {
  padding: 4px 7px;
  background-color: transparent !important;
}

.productSpecificationBox table tr {
  background-color: transparent !important;
}

.productSpecificationBox table .tdColon {
  width: 30px;
  text-align: center;
}

.productSpecificationBox .specTable {
  margin: 0;
}

.productSpecificationBox .specTable tbody tr > :first-child {
  width: 100px;
}

.productSpecificationBox .specTable tbody tr:first-child td, .productSpecificationBox .specTable tbody tr:first-child th {
  border-top: none;
}

.productSpecificationBox .rating-name small {
  font-size: 11px;
}

.productSpecificationBox .addReviewForm .form-group {
  position: relative;
}

.productSpecificationBox .addReviewForm .form-group .fldMsg {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  color: red;
}

.productSpecificationBox .addReviewForm {
  margin-top: -20px;
}

.productSpecificationBox .addReviewForm .form-control {
  border-radius: 0;
  box-shadow: none;
}

.productSpecificationBox .btnShowReviewForm {
  position: relative;
  z-index: 1;
}

.productSpecificationBox .btnShowReviewForm > .btn[aria-expanded=true] + .msgNoReview {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 990px) {
  .productSpecificationBox .nav-tabs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .productSpecificationBox .nav-tabs > li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
    -moz-box-flex: 1;
    -moz-flex: 1 1 0;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
  }

  .productSpecificationBox .nav-tabs > li > a {
    width: 100%;
    margin: 0;
    font-size: 12px;
    font-weight: 700;
  }
}
.customerReviews {
  width: 100%;
  float: left;
  border-top: 1px solid #dfdfdf;
  padding: 10px 0 0;
  overflow: hidden;
}

.customerReviews .reviewList {
  list-style: none;
  margin: 0;
  padding: 0;
}

.customerReviews .reviewList > li {
  width: 100%;
  float: left;
  margin: 6px 0 0;
  padding: 6px 0 0;
  border-top: 1px solid #f5f5f5;
}

.customerReviews .reviewList > li:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.customerReviews .reviewList > li p {
  padding: 0;
  line-height: 18px;
}

.customerReviews .reviewList > li .reviewerName {
  font-size: 12px;
  text-transform: uppercase;
  color: #555;
}

.customerReviews .noReview {
  text-align: center;
  color: red;
  margin: 0;
}

#similarProductCarousel {
  width: 100%;
  float: left;
}

#similarProductCarousel .owl-nav {
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
}

#similarProductCarousel .owl-nav [class*=owl-] {
  width: 40px;
  height: 40px;
  overflow: hidden;
  position: absolute;
  top: 30%;
  margin: 0;
  padding: 0;
  text-align: center;
}

#similarProductCarousel .owl-nav [class*=owl-] span {
  display: block;
  font-size: 40px;
  margin-top: -12px;
}

#similarProductCarousel .owl-nav .owl-prev {
  left: -40px;
}

#similarProductCarousel .owl-nav .owl-next {
  right: -40px;
}

body {
  color: #222;
  font-family: Asap, sans-serif;
  font-size: 14px;
}

a {
  text-decoration: none;
  outline: 0;
  color: inherit;
}

a:focus, a:hover {
  text-decoration: none;
  outline: 0;
  color: inherit;
}

button:focus {
  outline: medium none;
}

.padding {
  padding: 90px 0;
}

.top-padding {
  padding-top: 90px;
}

.section-padding {
  padding-top: 130px !important;
}

.padding-botom {
  padding-bottom: 90px;
}

.magin30 {
  margin-bottom: 30px;
}

.dark {
  background: #1b1d1f;
}

.light {
  background: #f5f5f5;
}

.base_color {
  background: #82b440;
}

.green {
  background: #74c8b8;
}

.pink {
  background: #ec768c;
}

.purple {
  background: #c183d6;
}

.blue {
  background: #31aae1;
}

.green-text {
  color: #74c8b8;
}

.pink-text {
  color: #ec768c;
}

.purple-text {
  color: #c183d6;
}

.blue-text {
  color: #31aae1;
}

.bg-grey {
  background: #ececec;
}

a.readmore {
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  display: inline-block;
  text-transform: uppercase;
}

a.readmore:focus, a.readmore:hover {
  color: #82b440;
}

.loadmore {
  color: #222;
  margin-top: 40px;
  position: relative;
  -webkit-transition: color 0.3s ease 0s;
  -ms-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.loadmore:hover {
  color: #82b440;
}

.loadmore::before {
  color: transparent;
  content: "•";
  font-size: 1.2em;
  left: 95%;
  pointer-events: none;
  position: absolute;
  text-shadow: 0 0 transparent;
  top: 25%;
  transform: translateX(-50%);
  transition: text-shadow 0.3s ease 0s, color 0.3s ease 0s;
}

.loadmore:focus::before, .loadmore:hover::before {
  color: #82b440;
  text-shadow: 10px 0 #82b440, -10px 0 #82b440;
}

.bounce-green, .bounce-top, .bounce-white {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.bounce-pink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.bounce-pink:before {
  background: #ec768c !important;
}

.bounce-top:before {
  background: #07aaa5;
}

.bounce-green:before {
  background: #82b440;
}

.bounce-white:before {
  background: #fff;
}

.bounce-green:before, .bounce-pink:before, .bounce-top:before, .bounce-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.bounce-top:focus, .bounce-top:hover {
  color: #fff !important;
  border: 1px solid #07aaa5;
}

.bounce-pink:focus, .bounce-pink:hover {
  color: #fff !important;
  border: 1px solid #ec768c !important;
}

.bounce-green:focus, .bounce-green:hover {
  color: #fff;
  border: 1px solid #82b440;
}

.bounce-white:focus, .bounce-white:hover {
  color: #1b1d1f !important;
  border: 1px solid #fff;
}

.bounce-top:focus:before, .bounce-top:hover:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.bounce-green:focus::before, .bounce-green:hover::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.bounce-white:focus::before, .bounce-white:hover::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.bounce-pink:focus::before, .bounce-pink:hover::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.info-section .row {
  margin: 0;
}

.info-section .block {
  position: relative;
  padding: 50px 5%;
}

.info-section .block .center {
  height: 100%;
}

.info-section a {
  color: #000;
}

.info-section ul.social-media li {
  display: inline-block;
}

.info-section ul.social-media li a {
  color: #1b1d1f;
  font-size: 20px;
  margin-right: 10px;
  display: block;
  margin-top: 25px;
}

.info-section ul.social-media li a:focus, .info-section ul.social-media li a:hover {
  color: #82b440;
}

.info-section .bg {
  background-size: cover;
  background-position: center center;
  bottom: 0;
  left: 0;
  position: relative;
  right: 0;
  top: 0;
  padding-top: 75%;
  margin: 0 -15px;
}

@media (max-width: 767px) {
  .info-section .block {
    padding: 40px 20px 0;
  }

  .info-section h2 {
    margin-bottom: 10px !important;
  }
}
#about .canvas-box h4, #about .canvas-box span i, #about .canvas-box:hover span i {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.we-do .do-wrap i, .we-do .do-wrap:hover i {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.counters-item i, .counters-item:hover i {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.thinker-image .overlay, .work-filter ul li a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main-button {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main-button > button span {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.overlay {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.we-do .do-wrap:hover .top, .we-do .do-wrap:hover span {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#paralax-slider .owl-controls .owl-page span {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main-button {
  height: auto;
  position: fixed;
  width: auto;
  z-index: 999;
  top: 31px;
}

.main-button.right {
  right: 15px;
}

.main-button.left {
  left: 15px;
}

.main-button.left > button.menu-active {
  left: 250px;
}

.main-button > button {
  background-color: #fff;
  border: none;
  padding: 5px;
  -webkit-border-radius: 2px;
  -ms--border-radius: 2px;
  border-radius: 2px;
}

.main-button > button.menu-active span:first-child, .main-button > button:hover span:first-child {
  transform: translateY(6px) rotate(-45deg);
}

.main-button > button.menu-active span:nth-child(2), .main-button > button:hover span:nth-child(2) {
  opacity: 0;
  transform: rotate(-45deg);
}

.main-button > button.menu-active span:last-child, .main-button > button:hover span:last-child {
  transform: translateY(-6px) rotate(-135deg);
}

.main-button > button span {
  background: #000 none repeat scroll 0 0;
  display: block;
  height: 3px;
  pointer-events: none;
  transform-style: flat !important;
  width: 20px;
}

.main-button > button span:nth-child(2) {
  margin: 3px 0;
}

.navbar-brand {
  display: inline-block;
}

.cbp-spmenu {
  background: #fff;
  position: fixed;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.176);
}

.push_nav_brand {
  margin: 30px 0 30px 15px;
  display: inline-block;
  width: 110px;
}

.logo-space {
  padding: 32px 0;
}

.push_nav li {
  position: relative;
  overflow: hidden;
}

.push_nav li a {
  border-bottom: 2px solid #f5f5f5;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  display: block;
  padding: 15px;
  position: relative;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-family: raleway;
}

.push_nav li a:hover {
  color: #07aaa5;
}

.push_nav li.active a {
  color: #07aaa5;
}

.push_nav .active a:hover, .push_nav li.active a:focus {
  color: #07aaa5;
}

.index5 .affix-top {
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: #fff;
  position: fixed;
  -webkit-box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
  -moz-box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
  box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
  padding: 0;
}

.index5 .affix-top a {
  color: #000 !important;
}

.index5 .affix-top .active a {
  color: #07aaa5 !important;
}

.index5 .affix-top .navbar-toggle .icon-bar {
  background-color: #222 !important;
}

#main-slider {
  color: #fff;
  background-color: #000;
}

#main-slider ul {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  height: 100%;
}

#main-slider ul li {
  list-style: none;
}

#main-slider .tp-caption {
  width: 100%;
}

#main-slider .mobileBanner {
  width: 100%;
  float: left;
  position: relative;
}

#main-slider .mobileBanner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

#main-slider .mobileBanner .bannerTitle {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  padding: 0 30px;
  text-align: center;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.tp-banner h2 {
  font-size: 54px;
}

.tp-banner p {
  font-size: 18px;
  color: #fff;
}

#main-slider .tp-caption a {
  color: #fff;
}

#main-slider h2.tp-caption > span {
  display: block;
}

#main-slider .tp-caption a {
  margin: 5px;
}

#main-slider .tp-loader {
  display: none !important;
}

.tp-bullets {
  display: none;
}

.tp-caption {
  padding: 0 !important;
}

.layer-content p {
  color: #000;
  font-weight: 400;
}

.layer-content h2 {
  color: #000;
  font-weight: 600;
}

.layer-content h2 span {
  color: #07aaa5;
  font-weight: 600;
  display: inline-block !important;
}

.layer-content h2 span.green-text {
  color: #82b440;
}

.text-rotator {
  background: url(img/banner_text.jpg);
  padding-top: 200px;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  width: 100%;
}

.text-rotator #paralax-slider {
  padding: 15% 0;
}

#paralax-slider .item-content p {
  font-size: 20px;
  color: #fff;
}

#paralax-slider .item-content h2 {
  color: #fff;
  font-size: 58px;
  margin-bottom: 25px;
  font-weight: 100;
}

#paralax-slider .owl-controls {
  margin-top: 5%;
}

#paralax-slider .owl-controls .owl-page span {
  background: #fff;
  text-align: center;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  opacity: 1;
}

#paralax-slider .owl-controls .owl-page span:hover {
  background: #6bb156;
}

#paralax-slider .owl-controls .active span {
  background: #6bb156;
}

#about .canvas-box {
  cursor: pointer;
}

#about .canvas-box span {
  display: inline-block;
  margin-bottom: 15px;
  padding: 5px;
}

#about .canvas-box span i {
  display: inline-block;
  font-size: 50px;
}

.color1 {
  color: #07aaa5;
}

.color2 {
  color: #99d8cc;
}

.color3 {
  color: #ec768c;
}

.color4 {
  color: #c183d6;
}

.color5 {
  color: #31aae1;
}

.color6 {
  color: #82b440;
}

#about .canvas-box:hover span i, .counters-item:hover i, .we-do .do-wrap:hover i {
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

#about .canvas-box:hover h4.color1 {
  color: #07aaa5;
}

#about .canvas-box:hover h4.color2 {
  color: #99d8cc;
}

#about .canvas-box:hover h4.color3 {
  color: #ec768c;
}

#about .canvas-box:hover h4.color4 {
  color: #c183d6;
}

#about .canvas-box:hover h4.color5 {
  color: #31aae1;
}

#about .canvas-box:hover h4.color6 {
  color: #82b440;
}

#about .canvas-box h4 {
  margin-bottom: 15px;
  color: #000;
}

#bg-paralax {
  background: url(../images/paralax-index1.jpg) no-repeat;
  color: #fff;
  padding: 10% 0;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  width: 100%;
}

#testinomial {
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  width: 100%;
}

#bg-paralax p {
  margin-bottom: 25px;
  color: #fff;
}

#bg-paralax h2 {
  font-size: 48px;
}

#facts .counters-item {
  padding: 26% 10%;
  font-weight: 700;
  vertical-align: middle;
  color: #fff;
  cursor: pointer;
}

#facts .counters-item h2 {
  font-family: "Open Sans", sans-serif;
}

.counters-item i {
  font-size: 50px;
  display: block;
  margin-bottom: 15px;
}

.counters-item p {
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
}

#responsive .responsive-pic .col-md-6 > img {
  margin-top: -42px;
}

#responsive .r-test h3 {
  color: #222;
}

#responsive .r-test h4 {
  color: #222;
  margin-top: 40px;
  margin-bottom: 20px;
}

.r-test ul.r-feature li {
  color: #1b1d1f;
  display: inline-block;
  padding-left: 10px;
  text-transform: capitalize;
  width: 48%;
  margin-bottom: 15px;
}

.r-test ul.r-feature li:before {
  content: "";
  font-family: FontAwesome;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  color: #82b440;
}

.r-test .screens {
  margin-top: 30px;
}

.r-test .screens i {
  display: inline-block;
  margin: 0 3px;
}

.r-test .screens i:first-child {
  font-size: 40px;
}

.r-test .screens i:nth-child(2) {
  font-size: 30px;
}

.r-test .screens i:last-child {
  font-size: 25px;
}

.circliful {
  position: relative;
  float: left;
  margin-left: 35px;
  margin-bottom: 35px;
}

.circliful:first-child {
  margin-left: 0;
}

.circle-text {
  background-color: #eee;
  bottom: 0;
  color: #636363;
  display: inline-block;
  height: 45px;
  left: 50%;
  line-height: 45px !important;
  margin: -22px auto 0 -22px;
  position: absolute;
  right: 50%;
  top: 50%;
  width: 45px;
  border-radius: 100%;
}

.circliful p {
  bottom: -25px;
  left: 0;
  margin-top: 25px;
  position: absolute;
  right: 0;
}

.myStat2 {
  width: 20%;
}

.circle-info, .circle-info-half {
  color: #999;
}

.circliful .fa {
  margin: -10px 3px 0 3px;
  position: relative;
  bottom: 4px;
}

.we-do .do-wrap {
  background: #fff;
  -webkit-box-shadow: 0 1px 1px 0 #ddd;
  -ms-box-shadow: 0 1px 1px 0 #ddd;
  box-shadow: 0 1px 1px 0 #ddd;
}

.we-do .do-wrap > .top {
  width: 100%;
  height: 72px;
  display: block;
}

.we-do .do-wrap span {
  border-radius: 100px;
  display: inline-block;
  height: 100px;
  margin-bottom: 40px;
  margin-top: -50px;
  width: 100px;
}

.we-do .do-wrap span i {
  color: #fff;
  font-size: 50px;
  line-height: 99px;
  display: block;
}

.we-do .do-wrap h4 {
  margin-bottom: 15px;
}

.we-do .do-wrap p {
  margin: 0 15px;
}

.white-box p {
  margin: 0 15px;
}

.we-do .do-wrap a {
  margin: 35px 0;
  text-decoration: none;
  position: relative;
}

.we-do .do-wrap a:before {
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  top: 100%;
  transform: translateY(-20px);
  -ms-transition: all 0.3s linear 0.1s;
  -webkit-transition: all 0.3s linear 0.1s;
  transition: all 0.3s linear 0.1s;
  width: 100%;
}

#thinkers .thinker-wrap ul.social-contact li a:before, .index_2#publication .wrap-pulication a:before {
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  top: 100%;
  transform: translateY(-20px);
  -ms-transition: all 0.3s linear 0.1s;
  -webkit-transition: all 0.3s linear 0.1s;
  transition: all 0.3s linear 0.1s;
  width: 100%;
}

.we-do .do-wrap a:focus::before, .we-do .do-wrap a:hover::before {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translateY(0);
  -ms-transform: translateY(0);
}

.we-do .do-wrap a.green-text:focus::before, .we-do .do-wrap a.green-text:hover::before {
  background: #74c8b8;
}

.we-do .do-wrap a.green-text:focus, .we-do .do-wrap a.green-text:hover {
  color: #74c8b8;
}

.we-do .do-wrap a.pink-text:focus::before, .we-do .do-wrap a.pink-text:hover::before {
  background: #ec768c;
}

.we-do .do-wrap a.pink-text:focus, .we-do .do-wrap a.pink-text:hover {
  color: #ec768c;
}

.we-do .do-wrap a.purple-text:focus::before, .we-do .do-wrap a.purple-text:hover::before {
  background: #c183d6;
}

.we-do .do-wrap a.purple-text:focus, .we-do .do-wrap a.purple-text:hover {
  color: #c183d6;
}

.we-do .do-wrap a.blue-text:focus::before, .we-do .do-wrap a.blue-text:hover::before {
  background: #31aae1;
}

.we-do .do-wrap a.blue-text:focus, .we-do .do-wrap a.blue-text:hover {
  color: #31aae1;
}

.we-do .do-wrap:hover .top {
  background: #82b440;
}

we-do .do-wrap:focus .top {
  background: #82b440;
}

.we-do .do-wrap:focus span, .we-do .do-wrap:hover span {
  background: #82b440;
}

#publication-slider .item .image img, #thinkers .thinker-wrap img {
  width: 100%;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.thinker-wrap p {
  margin: 0 10px;
}

.thinker-image {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.thinker-image .overlay {
  background: rgba(7, 170, 165, 0.75);
  position: absolute;
  width: 100%;
  bottom: 0;
  top: auto;
  opacity: 0;
  filter: alpha(opacity=0);
  left: 0;
  right: 0;
  cursor: pointer;
  padding: 0;
  height: 80px;
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.thinker-image .overlay.pink {
  background: rgba(236, 118, 140, 0.75);
}

.thinker-image .overlay.green {
  background: rgba(130, 180, 64, 0.75);
}

.thinker-image:hover .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.thinker-image .overlay ul.social-link li a {
  border: 1px solid #fff;
}

.thinker-image .overlay ul.social-link li a > i {
  color: #fff;
}

.thinker-image .overlay ul.social-link li a:hover > i {
  color: #121416;
}

.thinker-image .overlay ul.social-link li a:hover span {
  background: #fff;
  border: 1px solid #fff;
}

#publication-slider .item:hover .image img, .thinker-wrap:hover .thinker-image img {
  transform: scale(1.05);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#thinkers .thinker-wrap h3 {
  margin-top: 20px;
  font-size: 20px;
}

#thinkers .thinker-wrap small {
  color: #838383;
  display: inline-block;
  margin: 5px 0 15px;
}

#thinkers .thinker-wrap ul.social-contact li {
  display: inline-block;
}

#thinkers .thinker-wrap ul.social-contact li a {
  font-weight: bolder;
  color: #222;
  margin: 0 8px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
}

#thinkers .thinker-wrap ul.social-contact li a:hover::before {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translateY(0);
}

#thinkers .thinker-wrap ul.social-contact li a:hover.facebook {
  color: #3b5998 !important;
}

#thinkers .thinker-wrap ul.social-contact li a:hover.facebook::before {
  background: #3b5998;
}

#thinkers .thinker-wrap ul.social-contact li a:hover.twitter {
  color: #1da1f2;
}

#thinkers .thinker-wrap ul.social-contact li a:hover.twitter::before {
  background: #1da1f2;
}

#thinkers .thinker-wrap ul.social-contact li a:hover.linkden {
  color: #0077b5;
}

#thinkers .thinker-wrap ul.social-contact li a:hover.linkden::before {
  background: #0077b5;
}

#project {
  padding-top: 0;
  background: #f8f8f8;
}

.work-filter {
  margin-bottom: 50px;
}

.work-filter ul li {
  display: inline-block;
}

.work-filter ul li a {
  color: #222;
  display: block;
  font-size: 15px;
  padding: 6px 10px;
  text-transform: capitalize;
  border-bottom: 1px solid #909090;
  border-top: 1px solid #909090;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
}

.work-filter ul li a:hover {
  background-color: #07aaa5;
  border: 1px solid #07aaa5;
  color: #fff;
}

.work-filter ul li a.active {
  background-color: #82b440;
  border: 1px solid #82b440;
  color: #fff;
}

.work-filter ul li a.active:hover {
  background-color: #07aaa5;
  border: 1px solid #07aaa5;
  color: #fff;
}

.mix {
  display: none;
}

.index_2 .work-item {
  width: 20%;
}

.work-item {
  height: auto;
  width: auto;
  float: left;
  position: relative;
  overflow: hidden;
}

.work-item > img {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

.item-containe > img {
  -webkit-transition: all 0.7s ease 0s;
  -moz-transition: all 0.7s ease 0s;
  -ms-transition: all 0.7s ease 0s;
  -o-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}

.item-container:hover img {
  transform: scale(1.2);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.overlay {
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  left: 10px;
  top: 10px;
  bottom: 10px;
  right: 10px;
  width: auto;
  height: inherit;
  color: #222;
  opacity: 0;
  filter: alpha(opacity=0);
  padding: 2%;
  z-index: 1;
}

.overlay-inner {
  margin: auto;
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}

.item-container:hover .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
}

.work-item:hover .line {
  width: 40%;
}

.overlay h4.color {
  color: #07aaa5;
}

.overlay h4.base {
  color: #82a75e;
}

.work-item .overlay p {
  font-size: 14px;
}

.overlay .line {
  width: 0%;
  height: 1px;
  margin: 15px auto;
  background-color: #000;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.product-content .line {
  height: 1px;
  margin: 15px auto;
  background-color: #000;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.pricing {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.pricing_item {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: stretch;
  align-items: stretch;
  text-align: center;
  -webkit-flex: 0 1 330px;
  flex: 0 1 330px;
}

.pricing_list {
  text-align: left;
}

.pricing_tenzin .pricing_item {
  margin: 1em;
  padding: 2em 1em;
  text-align: left;
  color: #262b38;
  background: #eef0f3;
  border-top: 3px solid;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  margin-top: 0;
}

.pricing_tenzin .pricing_item.pink {
  border-color: #ec768c;
}

.pricing_tenzin .pricing_item.blue {
  border-color: #07aaa5;
}

.pricing_tenzin .pricing_item.pink .pricing_action {
  background: #ec768c;
}

.pricing_tenzin .pricing_item.blue .pricing_action {
  background: #07aaa5;
}

.pricing_tenzin .pricing_item.active {
  border-color: #82b440;
}

.pricing_tenzin .pricing_title {
  font-size: 1em;
  margin: 0 0 1em;
}

.pricing_item:hover .pricing_action {
  border: 1px solid transparent;
  background: #82b440 !important;
}

.pricing_tenzin .pricing_price {
  font-size: 2em;
  padding: 0.5em 0 0.75em;
  border-top: 3px solid rgba(139, 144, 157, 0.18);
}

.pricing_tenzin .pricing_currency {
  font-size: 0.5em;
  vertical-align: super;
}

.pricing_tenzin .pricing_sentence {
  font-weight: 700;
  padding: 0 0 0.5em;
  color: #9ca0a9;
  border-bottom: 3px solid rgba(139, 144, 157, 0.18);
}

.pricing_tenzin .pricing_list {
  font-size: 14px;
  padding: 25px 0;
  color: #8b909d;
}

.pricing_tenzin .pricing_list li {
  margin-bottom: 8px;
}

.pricing_tenzin .pricing_list li:before {
  content: "";
  font-family: FontAwesome;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  color: #82b440;
}

.pricing_tenzin .pricing_action {
  font-weight: 700;
  margin-top: auto;
  padding: 1em 2em;
  color: #fff;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  border: 1px solid transparent;
}

.pricing_item.active .pricing_action {
  border: 1px solid transparent;
  background: #82b440;
}

.pricing_item.active:hover .pricing_action {
  border: 1px solid transparent;
  background: #07aaa5 !important;
}

#testinomial {
  background: url(../images/bg-testinomial.jpg) repeat 0 0/auto 100% !important;
  color: #fff;
  position: relative;
}

#testinomial::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

#testinomial h2 {
  color: #82b440;
}

#testinomial p {
  color: #fff;
}

#testinomial-slider .item {
  display: block;
  width: 100%;
  height: auto;
  color: #fff;
}

#testinomial-slider .item p {
  font-size: 20px;
  margin-left: 13%;
  margin-right: 13%;
}

#testinomial-slider .item h5 {
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 15px;
}

#testinomial-slider .owl-next, #testinomial-slider .owl-prev {
  border: 1px solid #fff;
  color: #fff;
}

#testinomial-slider .owl-next, #testinomial-slider .owl-prev {
  top: 40%;
  position: absolute;
  background: 0 0;
  height: 38px;
  width: 38px;
  -ms-border-radius: 38px;
  -webkit-border-radius: 38px;
  border-radius: 38px;
  font-size: 30px;
  line-height: 20px;
  opacity: 1;
  filter: alpha(opacity=100);
}

#testinomial-slider .owl-next:hover, #testinomial-slider .owl-prev:hover {
  border: 1px solid #82b440;
  background-color: #82b440;
  color: #fff;
  -webkit-transition: background 0.3s linear 0.1s;
  -ms-transition: background 0.3s linear 0.1s;
  transition: background 0.3s linear 0.1s;
}

#testinomial-slider .owl-prev {
  left: 0;
}

#testinomial-slider .owl-next {
  right: 0;
}

#publication-slider .item {
  margin: 0 15px;
}

#publication-slider .item:hover {
  cursor: pointer;
}

#publication-slider .item .image {
  overflow: hidden;
  position: relative;
  width: 100%;
}

#publication-slider .item > img {
  display: block;
  width: 100%;
  height: auto;
}

#publication-slider .item h5 {
  font-size: 14px;
  color: #727272;
  margin-top: 25px;
  margin-bottom: 10px;
}

#publication-slider .item h4 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #222;
}

#publication-slider .item a.name {
  color: #222;
  font-size: 15px !important;
  margin-bottom: 10px;
  display: inline-block;
  text-transform: none;
}

#publication-slider .item a.comment {
  font-size: 15px !important;
  margin-bottom: 10px;
  display: inline-block;
  text-transform: none;
  color: #82b440;
}

#publication-slider .item a.comment:before {
  content: "";
  background: 0 0;
}

#publication-slider .item p > a {
  font-size: 15px;
}

#publication-slider .item > a {
  color: #000;
  position: relative;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

#publication-slider .item > a:hover {
  color: #82b440;
}

#publication-slider .owl-next, #publication-slider .owl-prev {
  top: 40%;
  position: absolute;
  background: 0 0;
  height: 38px;
  width: 38px;
  border-radius: 38px;
  font-size: 30px;
  line-height: 20px;
  opacity: 1;
  border: 1px solid #7a7a7a;
  color: #7a7a7a;
}

#publication-slider .owl-next:hover, #publication-slider .owl-prev:hover {
  border: 1px solid #82b440;
  background-color: #82b440;
  color: #fff;
  -webkit-transition: background 0.3s linear 0.1s;
  -moz-transition: background 0.3s linear 0.1s;
  -o-transition: background 0.3s linear 0.1s;
  transition: background 0.3s linear 0.1s;
}

#publication-slider .owl-prev {
  left: -5%;
}

#publication-slider .owl-next {
  right: -5%;
}

@media (max-width: 767px) {
  #publication-slider .item h4 {
    font-size: 16px;
  }
}
#slogan {
  background: #82b440;
  padding: 25px 0;
  color: #fff;
  margin-top: -2px;
  width: 100%;
}

#slogan a {
  padding: 15px 35px;
  border: 1px solid #fff;
  color: #000;
  background: #fff;
  font-weight: 700;
  text-transform: capitalize;
}

#slogan p {
  color: #fff;
  font-size: 20px;
  margin: 10px 0;
}

#contact .center .margen, #contact .center h2 {
  margin-bottom: 45px;
}

#contact .center a {
  color: #82b440;
}

#contact .center ul.social-link {
  margin-top: 45px;
}

#contact .form-inline {
  margin-top: 45px;
}

.form-control:focus {
  box-shadow: none;
  transition: all 0.2s ease-in 0s;
}

#contact .form-inline .col-md-12, #contact .form-inline .col-md-6 {
  padding-left: 5px;
  padding-right: 5px;
}

#contact .form-inline .form-control, #contact .form-inline textarea {
  border: 1px solid #d0d0d0;
  border-radius: 0;
  color: #4c4c4c;
  font-size: 14px;
  padding: 15px;
  width: 100%;
}

#contact .form-inline .form-control {
  height: 45px;
  margin-bottom: 10px;
}

#contact .form-inline textarea {
  margin-bottom: 10px;
  margin-top: 0;
  min-height: 210px;
}

#contact .form-inline .btn-black {
  width: 100%;
  color: #fff;
}

#contact .form-inline input[type=submit] {
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.go-top {
  bottom: 20px;
  position: fixed;
  font-size: 20px;
  right: 25px;
  z-index: 800;
  background: #82b440;
  color: #fff;
  border-radius: 5px;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  opacity: 0;
}

.go-top:focus, .go-top:hover {
  background: #07aaa5;
  color: #fff;
}

.go-top.show {
  opacity: 1;
}

ul.social-link li {
  margin-top: 10px;
  display: inline-block;
}

ul.social-link li a {
  display: inline-block;
  border: 1px solid #000;
  border-radius: 44px;
  font-size: 20px;
  height: 44px;
  width: 44px;
  position: relative;
  color: #000 !important;
}

ul.social-link li a span {
  border-radius: 0;
  display: block;
  height: 0;
  left: 50%;
  margin: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 0;
}

ul.social-link li a:hover span {
  background: #82b440;
  border-radius: 44px;
  height: 44px;
  width: 44px;
  border: 1px solid #82b440;
  height: 44px;
  top: -1px;
  left: -1px;
  right: 0;
  bottom: 0;
}

ul.social-link li a i {
  height: 100%;
  left: 0;
  line-height: 42px;
  position: absolute;
  top: 0;
  transition: all 0.3s ease 0s;
  width: 100%;
  z-index: 10;
}

ul.social-link li a :hover, ul.social-link li a:focus {
  color: #fff;
  border: none;
}

.alert-danger, .alert-success {
  line-height: 24px;
  margin-bottom: 15px;
  padding: 5px;
}

.blog-wrap {
  background-color: #fff;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.blog-wrap .blog-content {
  display: table-cell;
  padding: 6.5em 0;
}

.blog-content-bg {
  background-color: #fff;
  margin: 0 auto;
  padding: 30px 30px 5px;
  position: relative;
  top: -60px;
  width: 95%;
}

.blog-item-v3 {
  border-bottom: 1px solid #d1d2d2;
  padding-bottom: 70px;
  margin-bottom: 70px;
}

.blog-item-v3 > img {
  margin-bottom: 35px;
}

.blog-item-v3 .blog-content {
  padding: 0;
}

.no-margin {
  margin: 0;
  border: none;
}

#area-main h3, #area-main p {
  color: #1b1d1f;
}

#area-main a.readmore {
  color: #fff;
  padding: 10px 35px;
  background: #1b1d1f;
  border: 1px solid transparent;
  display: inline-block;
  text-decoration: none;
  margin-top: 20px;
}

#area-main a.readmore:focus, #area-main a.readmore:hover {
  border: 1px solid #82b440;
}

#area-main ul.blog-author {
  margin: 20px 0 25px;
}

#area-main ul.blog-author li {
  display: inline-block;
}

#area-main ul.blog-author li a {
  color: #696969;
  font-size: 14px;
  margin-right: 15px;
}

#area-main ul.blog-author li a .fa {
  margin-right: 5px;
}

#area-main ul.blog-author li a:focus, #area-main ul.blog-author li a:hover {
  color: #82b440;
}

.morepost-wrap {
  margin-top: 75px;
  border-top: 1px solid #d1d2d2;
}

.morepost-wrap2 {
  border-top: 1px solid #d1d2d2;
  border-bottom: 1px solid #d1d2d2;
  padding-bottom: 25px;
}

.morepost-wrap a:hover, .morepost-wrap2 a:hover {
  color: #82b440;
}

.morepost-wrap .morepost {
  font-size: 16px;
  color: #696969;
  margin-top: 25px;
  display: inline-block;
  position: relative;
}

.morepost-wrap2 .morepost {
  font-size: 16px;
  color: #696969;
  margin-top: 25px;
  display: inline-block;
  position: relative;
}

.morepost-wrap2 .morepost .fa-long-arrow-left {
  right: 0;
}

.morepost-wrap .morepost .fa-long-arrow-left {
  right: 0;
}

.morepost-wrap .morepost:hover .fa-long-arrow-left, .morepost-wrap2 .morepost:hover .fa-long-arrow-left {
  opacity: 1 !important;
  filter: alpha(opacity=100);
  color: #82b440;
  right: 100%;
}

.morepost-wrap2 .morepost .fa-long-arrow-left, .morepost-wrap2 .morepost .fa-long-arrow-right {
  color: transparent;
  pointer-events: none;
  position: absolute;
  text-shadow: 0 0 transparent;
  top: 25%;
  transform: translateX(-50%);
  transition: text-shadow 0.3s ease 0s, color 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0 !important;
  filter: alpha(opacity=0);
}

.morepost-wrap .morepost .fa-long-arrow-left, .morepost-wrap .morepost .fa-long-arrow-right {
  color: transparent;
  pointer-events: none;
  position: absolute;
  text-shadow: 0 0 transparent;
  top: 25%;
  transform: translateX(-50%);
  transition: text-shadow 0.3s ease 0s, color 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0 !important;
  filter: alpha(opacity=0);
}

.morepost-wrap .morepost .fa-long-arrow-right, .morepost-wrap2 .morepost .fa-long-arrow-right {
  left: 0;
  margin-left: 5px;
}

.morepost-wrap .morepost:hover .fa-long-arrow-right, .morepost-wrap2 .morepost:hover .fa-long-arrow-right {
  opacity: 1 !important;
  filter: alpha(opacity=100);
  color: #82b440;
  left: 110%;
}

.blog-content-pic img {
  width: 100%;
}

.blog-item .blog-content {
  padding: 0;
  margin: 35px 0;
}

.blog-item .blog-content p {
  margin-bottom: 25px;
}

.blog-item blockquote {
  color: #82b440;
}

.blog-item .post-tag {
  border: 1px solid #d9d9d9;
  padding: 5px;
  margin-bottom: 70px;
}

#area-main .tag-cloud li {
  display: inline-block;
  margin: 6px;
}

#area-main .tag-cloud li a {
  display: block;
  background: #efefef;
  color: #1b1d1f;
  font-size: 12px;
  padding: 8px 15px;
  text-transform: uppercase;
}

.blog-reply a.btn-rep {
  background: #efefef;
  color: #1b1d1f;
  font-size: 12px;
  padding: 8px 15px;
  text-transform: uppercase;
}

#area-main .tag-cloud li a:focus, #area-main .tag-cloud li a:hover {
  background: #82b440;
  color: #fff;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.blog-reply a.btn-rep:focus, .blog-reply a.btn-rep:hover {
  background: #82b440;
  color: #fff;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.blog-item ul.social-link li {
  margin: 0;
}

.blog-item ul.social-link li a > i {
  color: #1b1d1f;
}

.blog-item ul.social-link li a > i:hover {
  color: #fff;
}

.blog-reply {
  padding: 10px;
  border: 1px solid #f3f3f3;
  position: relative;
  margin: 20px 0;
}

.blog-reply h4 {
  color: #1b1d1f;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.blog-reply a.btn-rep {
  position: absolute;
  top: 0;
  right: 0;
}

.blog-item .post-comment h3 {
  margin-bottom: 35px;
  margin-top: 70px;
}

.blog-item .post-comment form .form-control {
  height: 50px;
}

.contact form .form-control {
  height: 50px;
}

.blog-item .post-comment form .form-control, .blog-item .post-comment form textarea, .contact form .form-control, .contact form textarea {
  padding: 15px;
  font-size: 14px;
  color: #4c4c4c;
  border: 1px solid #d0d0d0;
  width: 100%;
  border-radius: 0;
}

.index_3 .form-inline .form-control, .index_3 .form-inline textarea {
  padding: 15px;
  font-size: 14px;
  color: #4c4c4c;
  border: 1px solid #d0d0d0;
  width: 100%;
  border-radius: 0;
}

.blog-item .post-comment form textarea, .contact form textarea {
  margin: 30px 0;
  min-height: 210px;
}

.blog-item .post-comment form input[type=submit], .contact form input[type=submit] {
  background: #82b440;
  border: 1px solid transparent;
  font-weight: 700;
  color: #fff;
  height: 50px;
  width: 185px;
  position: relative;
}

.blog-item .post-comment form input[type=submit]:hover, .contact form input[type=submit]:hover {
  background: #1b1d1f;
}

.widget {
  margin-bottom: 40px;
  color: #1b1d1f;
}

.widget h4, .widget img {
  margin-bottom: 25px;
}

.widget > img {
  width: 100%;
}

.search_box input {
  border: 1px solid #d9d9d9;
  height: 53px;
  padding-left: 15px;
  position: relative;
  width: 100%;
  font-size: 14px;
}

.search_box i {
  border-left: 1px solid #d9d9d9;
  bottom: 0;
  color: #d9d9d9;
  font-size: 24px;
  height: 53px;
  padding: 15px;
  position: absolute;
  right: 15px;
  top: 0;
  cursor: pointer;
}

ul.category li {
  margin-top: 15px;
  display: block;
}

ul.category li a {
  color: #1b1d1f;
  font-size: 16px;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 15px;
  display: block;
  text-transform: capitalize !important;
}

ul.category li a:focus, ul.category li a:hover {
  color: #82b440;
}

ul.category li a .date {
  color: #82b440;
  font-size: 12px;
  display: block;
}

.innerpage-banner {
  background: url(img/banner-about.jpg) no-repeat center center/cover;
  padding-top: 200px;
  max-height: 440px;
  border-bottom: 5px solid rgba(0, 0, 0, 0.9);
  color: #fff;
}

.tagline {
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
}

@media screen and (max-width: 1299px) {
  .info-section .bg {
    padding-top: 100%;
  }

  .blog-wrap .blog-content {
    padding: 3.5em 0;
  }

  .layer-content-responsive {
    max-height: 400px !important;
    overflow: hidden;
  }
}
@media screen and (max-width: 1024px) {
  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .navbar-default .navbar-nav > li {
    margin: 0 6px;
  }

  .navbar-default .navbar-nav > li > a {
    letter-spacing: 0;
  }

  .text-rotator {
    padding-top: 150px;
  }

  #paralax-slider .item-content p {
    font-size: 16px;
  }

  #paralax-slider .item-content h2 {
    font-size: 46px;
    margin-bottom: 10px;
  }

  .r-test ul.r-feature li {
    font-size: 12px;
  }

  .we-do .do-wrap, .white-box {
    margin-bottom: 30px;
  }

  .pricing_item {
    flex: 0 1 320px;
  }

  #bg-paralax, #testinomial, .text-rotator {
    background-position: center center !important;
  }

  #slogan {
    text-align: center;
  }

  #slogan p {
    font-size: 16px;
  }

  #slogan a.pull-right {
    float: none !important;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 30px;
  }

  .main-button {
    top: 10px;
  }

  .push_nav_brand {
    margin: 12px 0 30px 15px;
    width: 90;
  }

  .push_nav li a {
    font-size: 12px;
    padding: 8px 15px;
  }

  .text-rotator {
    padding-top: 80px;
  }

  #paralax-slider .item-content p {
    font-size: 14px;
  }

  #paralax-slider .item-content h2 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  #bg-paralax h1, #bg-paralax h2 {
    font-size: 30px;
  }

  .we-do .do-wrap {
    margin: 30px 0;
  }

  #thinkers {
    padding-bottom: 45px;
  }

  #thinkers .thinker-wrap {
    margin: 30px 0;
  }

  .thinker-image .overlay {
    height: 60px;
  }

  #project {
    padding-top: 0;
  }

  #responsive .responsive-pic > .col-md-6 > img {
    margin-bottom: 25px;
  }

  .number-counters > .col-xs-12 {
    width: 50%;
  }

  .circliful {
    margin-bottom: 50px;
  }

  .circliful:first-child {
    margin-left: 25px;
  }

  #testinomial-slider .item p {
    font-size: 14px;
    margin: 0;
  }

  #testinomial-slider .owl-next, #testinomial-slider .owl-prev {
    display: none;
  }

  #publication-slider .owl-prev {
    left: 10px;
  }

  #publication-slider .owl-next {
    right: 10px;
  }

  #publication-slider .owl-next, #publication-slider .owl-prev {
    background: #fff;
    top: 19%;
  }

  .circliful {
    margin-bottom: 50px;
    margin-left: 0;
    float: none;
    display: inline-block;
  }

  .circliful:first-child {
    margin-left: 0;
  }
}
@media screen and (min-width: 641px) and (max-width: 767px) {
  #thinkers .col-sm-4 {
    width: 48%;
    display: inline-block;
  }
}
@media screen and (max-width: 480px) {
  .navbar-brand img {
    width: 75%;
  }

  ul.top-right {
    top: 14px;
  }

  .circliful {
    margin-bottom: 50px;
    position: relative;
    left: 30%;
    margin-left: 0;
    float: none;
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  .circliful:first-child {
    margin-left: 0;
  }

  .layer-content-responsive {
    max-height: 240px !important;
    overflow: hidden;
  }
}
@media screen and (max-width: 479px) {
  #main-navigation {
    top: 0;
  }
}
.green {
  background: #82b440;
}

.green_light {
  background: rgba(130, 180, 64, 0.65);
}

.blue {
  background: #07aaa5;
}

.dark_gray {
  background: #969696;
}

.we-do .do-wrap a {
  color: #969696;
}

.we-do .do-wrap a:hover {
  color: #07aaa5;
}

.we-do .do-wrap:hover .top {
  background: #07aaa5;
}

we-do .do-wrap:focus .top {
  background: #07aaa5;
}

.we-do .do-wrap:focus span, .we-do .do-wrap:hover span {
  background: #07aaa5;
}

.pricing_item.dark_gray {
  border-color: #969696;
}

.pricing_item.dark_gray .pricing_action {
  background: #969696;
}

.pricing_item.dark_gray:hover .pricing_action {
  border: 1px solid transparent;
  background: #07aaa5 !important;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 11000;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.spinner {
  margin: auto;
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center;
  position: absolute;
  left: 50%;
  right: 50%;
  margin-left: -20px;
  top: 50%;
  -webkit-animation: sk-rotate 2s infinite linear;
  animation: sk-rotate 2s infinite linear;
}

.dot1, .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #82b440;
  border-radius: 100%;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.dot1 {
  background-color: #82b440;
}

.dot2 {
  top: auto;
  background-color: #07aaa5;
  bottom: 0;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col, .no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.navbar-brand {
  padding: 21px 0;
  width: 250px;
}

#navigation.affix .navbar-brand {
  padding: 10px 0;
  width: 230px;
}

.section-instagram {
  overflow: hidden;
}

.iframe-instagram {
  width: 100%;
  float: left;
  overflow: hidden;
  margin: 0 0;
  padding: 19.5% 0 0;
  position: relative;
}

.iframe-instagram iframe {
  width: calc(100vw + 19%) !important;
  height: 100% !important;
  position: absolute;
  left: 0;
  top: 0;
}

.sectionOverlay {
  position: relative;
}

.sectionOverlay::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.tp-banner h2 {
  font-size: 34px !important;
  line-height: 40px !important;
  font-weight: 500;
}

.videoCarouselOverlay {
  position: relative;
}

.videoCarouselOverlay::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 5;
}

@media (max-width: 767px) {
  .tp-banner h2 {
    left: 0 !important;
    right: 0 !important;
    white-space: normal;
  }
}
.brandsList {
  margin: 0 -10px;
  padding: 0;
}

.brandsList > li {
  width: 20%;
  float: left;
  margin: 0;
  padding: 0 10px;
  box-sizing: border-box;
  list-style: none;
}

#contact .center ul.social-link {
  margin-top: 5px;
}

.section-successStory {
  padding: 90px 0 70px;
}

.section-wyChooseUs {
  padding: 70px 0 50px;
}

.section-wyChooseUs .img img {
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.section-wyChooseUs .img:hover img {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
}

@media (max-width: 767px) {
  .section-wyChooseUs {
    padding: 20px 0 0;
  }

  .section-wyChooseUs .container > .row {
    margin-left: 0;
    margin-right: 0;
  }

  .section-wyChooseUs .img {
    margin: 0 0 10px;
    display: block;
  }

  .section-wyChooseUs .img img {
    margin: 0;
  }
}
.section-wyChooseUs .grid-xs-p5 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.section-testimonials {
  overflow: hidden;
}

@media (max-width: 767px) {
  .section-testimonials {
    padding: 30px 0 !important;
  }
}
#testinomial-slider .owl-item .starRating {
  max-width: 100%;
  width: auto;
  display: inline-block;
}

#testinomial-slider .owl-item .rating {
  color: #fff83c;
}

#testinomial-slider .owl-item .rating .fa {
  margin: 0 3px;
}

.googleMap {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.googleMap iframe {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

@media (max-width: 990px) {
  .googleMap {
    padding: 50% 0 0;
    height: 0;
  }
}
.we-do .do-wrap .wrapImage {
  width: 100%;
  margin: 0 0 20px;
}

@media (max-width: 767px) {
  .we-do {
    padding: 40px 0 30px;
  }

  .we-do .row {
    margin-left: -5px;
    margin-right: -5px;
  }

  .we-do .row > [class*=col-] {
    padding-left: 5px;
    padding-right: 5px;
  }

  .we-do .do-wrap {
    margin: 5px 0;
  }

  .we-do .do-wrap p {
    font-size: 13px;
  }

  .grid-xs-p5 {
    margin-left: -5px;
    margin-right: -5px;
  }

  .grid-xs-p5 > [class*=col-] {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.section-blogs {
  padding: 90px 0 50px;
}

@media (max-width: 767px) {
  .section-blogs {
    padding: 30px 0;
  }
}
.storeTiming {
  margin: 20px 0;
}

.storeTiming .timingList {
  margin: 0 -15px;
  padding: 0;
  text-align: center;
  list-style: none;
}

.storeTiming .timingList > li {
  float: left;
  padding: 0 15px 20px;
  width: 50%;
  box-sizing: border-box;
}

.storeTiming .timingList label {
  display: block;
  font-weight: 600;
}

.productFilter {
  margin: 0 -10px;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.productFilter > li {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 16.666666%;
  -moz-box-flex: 1;
  -moz-flex: 1 1 16.666666%;
  -ms-flex: 1 1 16.666666%;
  flex: 1 1 16.666666%;
  max-width: 16.666666%;
  padding: 0 10px;
}

.productFilter > li:first-child {
  max-width: 10%;
  -webkit-flex: 1 1 10%;
  -moz-box-flex: 1;
  -moz-flex: 1 1 10%;
  -ms-flex: 1 1 10%;
  flex: 1 1 10%;
  margin-top: 6px;
}

@media (max-width: 990px) {
  .productFilter {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .productFilter > li {
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
}
@media (max-width: 767px) {
  .productFilter {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -5px 5px;
  }

  .productFilter > li {
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    padding: 5px;
  }
}
#shoppingCartList {
  width: 100%;
  float: left;
  margin: 10px 0 0;
  padding: 0;
}

#shoppingCartList .productCode, #shoppingCartList .productImage, #shoppingCartList .productQty, #shoppingCartList .productRemove, #shoppingCartList .productSalePrice, #shoppingCartList .productSize, #shoppingCartList .productTitle {
  display: block;
}

#shoppingCartList .productImage {
  width: 100%;
  float: left;
  overflow: hidden;
}

#shoppingCartList .productImage img {
  width: 100%;
  height: auto;
}

#shoppingCartList .productTitle {
  font-weight: 700;
}

#shoppingCartList .productCode {
  text-transform: uppercase;
}

#shoppingCartList .productQty select {
  border: 1px solid #dfdfdf;
  padding: 2px 2px;
  width: 50px;
}

#shoppingCartList .productRemove {
  color: #999;
  font-weight: 400;
  display: inline-block;
}

#shoppingCartList .productRemove:hover {
  text-decoration: none;
  color: #333;
}

#shoppingCartList table {
  width: 100%;
  border: 1px solid #d5d5d5;
  border-collapse: collapse;
}

#shoppingCartList table tr td, #shoppingCartList table tr th {
  padding: 10px 12px;
  border: 1px solid #d5d5d5;
}

#shoppingCartList table [class*=ringSet-] {
  background-color: #f9f9f9;
}

#shoppingCartList table [class*=ringSet-] td {
  border-color: #f5f5f5;
}

#shoppingCartList table thead {
  background-color: #f9f9f9;
}

#shoppingCartList table .tdImage {
  width: 100px;
  text-align: center;
}

#shoppingCartList table .tdImage img {
  max-width: 100%;
}

#shoppingCartList table .tdImage a {
  display: block;
}

#shoppingCartList table .tdPrice {
  text-align: right;
}

#shoppingCartList table .tdAction {
  width: 100px;
  text-align: center;
}

#shoppingCartList table .tdAction .btn {
  white-space: normal;
}

@media (max-width: 767px) {
  #shoppingCartList table, #shoppingCartList tbody {
    display: block;
  }

  #shoppingCartList thead {
    display: none;
  }

  #shoppingCartList td, #shoppingCartList th {
    display: block;
    width: 100%;
  }

  #shoppingCartList tr {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 5px solid #fff;
    border-bottom: 5px solid #fff;
  }

  #shoppingCartList [class*=ringSet-] td {
    border-color: #e9e9e9;
  }

  #shoppingCartList .ringSet-ring + .ringSet-diamond {
    border-top: none;
    margin-top: -5px;
  }

  #shoppingCartList .tdImage {
    width: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    padding: 0;
  }

  #shoppingCartList .tdInfo {
    width: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
  }

  #shoppingCartList .btnAddCenterDiamond, #shoppingCartList .btnRemove {
    text-transform: uppercase;
    font-size: 12px;
  }

  #shoppingCartList .btnRemove {
    color: #dc3545;
  }

  #shoppingCartList .btnAddCenterDiamond {
    color: #000;
  }

  #shoppingCartList .cartTable {
    border: none;
  }

  #shoppingCartList .cartTable .tdAction, #shoppingCartList .cartTable .tdPrice {
    padding: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
    -moz-box-flex: 1;
    -moz-flex: 1 1 0;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }

  #shoppingCartList .cartTable .tdQnty {
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }

  #shoppingCartList .cartTable .tdPrice {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-order: 4;
    -ms-flex-order: 4;
    order: 4;
    font-weight: 700;
  }

  #shoppingCartList .cartTable .tdAction {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-order: 5;
    -ms-flex-order: 5;
    order: 5;
    font-weight: 700;
  }

  #shoppingCartList .cartTable .tdAction a {
    display: block;
    width: 100%;
  }

  #shoppingCartList .wishlistTable {
    border: none;
  }

  #shoppingCartList .wishlistTable .tdPrice {
    text-align: center;
    font-size: 16px;
    padding: 5px;
  }

  #shoppingCartList .wishlistTable .tdAction, #shoppingCartList .wishlistTable .tdPrice {
    width: 100%;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    font-weight: 700;
  }

  #shoppingCartList .wishlistTable .tdAction {
    padding: 0;
  }

  #shoppingCartList .wishlistTable .tdAction .btnGroup {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }

  #shoppingCartList .wishlistTable .tdAction .btnGroup .btn {
    width: 100%;
    white-space: nowrap;
    font-weight: 700;
  }

  #shoppingCartList .wishlistTable .tdAction .btnGroup .btn ~ .btn {
    border-left: 1px solid #d5d5d5;
  }
}
.paymentSecureVoucher {
  list-style: none;
  margin: 0 0;
  padding: 10px 10px;
}

.paymentSecureVoucher li {
  float: left;
  height: 90px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid #dfdfdf;
}

.paymentSecureVoucher li:first-child {
  margin-left: 0;
  padding-left: 0;
  border-left: none;
}

.paymentSecureVoucher li span {
  font-weight: 700;
  color: #000;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

.paymentSecureVoucher li .form-control {
  border-radius: 0;
}

.paymentSecureVoucher li .btn {
  background-color: #f5f5f5;
}

.paymentSecureVoucher .paymentCards {
  margin: 0 -2px;
  display: -ms-flexbox;
  display: flex;
}

.paymentSecureVoucher .paymentCards span {
  padding: 2px;
}

.paymentSecureVoucher .paymentCards span img {
  width: 100%;
}

.carttotal {
  margin: 15px 5px 0 0;
}

.carttotal table {
  width: 100%;
  border-collapse: separate;
}

.carttotal table tr td {
  padding: 2px 10px;
  text-align: right;
}

.infoBox {
  height: 300px;
}

.infoBox p {
  line-height: 22px;
}

.loginCheckoutBox .gotoPage {
  text-decoration: underline;
  font-weight: 600;
}

.loginCheckoutBox .gotoPage:hover, .loginCheckoutBox a:hover {
  color: #07aaa5;
}

.loginCheckoutBox .or {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  border: 1px solid #d5d5d5;
  border-radius: 50%;
  background-color: #d5d5d5;
  margin-top: -12px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 10px;
}

.loginCheckoutBox #forgotPassword:hover {
  color: #07aaa5;
}

.loginCheckoutBox .or::before {
  content: "";
  position: absolute;
  left: 11px;
  height: 50px;
  border-left: 2px solid #d5d5d5;
  top: -13px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.loginCheckoutBox .or::after {
  content: "or";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #000;
}

@media (max-width: 767px) {
  .loginCheckoutBox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .loginCheckoutBox .leftCheckoutBox {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }

  .loginCheckoutBox .rightCheckoutBox {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}
.selectMetal, .selectStyle {
  text-align: center;
}

.selectMetal label, .selectStyle label {
  display: block;
  margin: 0;
}

.selectMetal label img, .selectStyle label img {
  max-width: 100%;
}

.selectMetal label span, .selectStyle label span {
  display: block;
}

@media (max-width: 767px) {
  .selectStyle {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .selectStyle label {
    flex-basis: 33.333333%;
    max-width: 33.333333%;
    margin-bottom: 15px;
  }
}
.panel-heading {
  margin: 0;
}

.myProfilePanel .table {
  margin: 0;
}

.myProfilePanel .table tbody tr:first-child td {
  border-top: none;
}

.specialOrderNote {
  width: 100%;
  float: left;
  margin: 0 0 30px;
  padding: 0;
  text-align: center;
  overflow: hidden;
}

.specialOrderNote span {
  display: inline-block;
  position: relative;
  padding: 5px 10px;
  border: 1px solid #d5d5d5;
  border-radius: 20px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.specialOrderNote span::before, .specialOrderNote span:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 200px;
  border-bottom: 2px solid #d5d5d5;
  margin-top: -1px;
}

.specialOrderNote span::before {
  left: 100%;
}

.specialOrderNote span:after {
  right: 100%;
}

.contentWrapper {
  width: 100%;
  float: left;
  margin: 0 0 70px;
  padding: 0;
}

.contentWrapper .contentGroup p a:hover {
  color: #07aaa5;
}

.contentWrapper .contentGroup ~ .contentGroup {
  width: 100%;
  float: left;
  margin: 30px 0 0;
  padding: 0;
}

.contentWrapper .groupTitle {
  font-weight: 700;
  font-size: 16px;
}

.financingPage .title {
  font-size: 24px;
  font-weight: 600;
}

.financingPage .desc {
  font-size: 18px;
}

.listBullet {
  margin: 0 0 15px;
  padding: 0;
}

.listBullet > li {
  list-style: disc;
  margin-left: 15px;
}

.pageTabs .tab-content {
  padding: 10px;
  border: 1px solid #d5d5d5;
  margin-top: -1px;
}

.galleryList {
  margin: 0 -5px;
}

.galleryList [class*=col-] {
  padding: 5px;
}

.galleryList [class*=col-] > a {
  display: block;
}

.galleryList [class*=col-] > a > img {
  width: 100%;
}

.section-customExperience {
  width: 100%;
  float: left;
  margin: 0 0 60px;
  padding: 0;
}

.section-customExperience .customExperience {
  margin-left: -15px;
  margin-right: -15px;
}

.section-customExperience .customExperience [class*=experienceBlock-] {
  padding: 56px 15px 15px 80px;
  position: relative;
}

.section-customExperience .customExperience [class*=experienceBlock-]::before {
  content: attr(data-title);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 140px;
  color: #faf3ed;
  line-height: 100px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.section-customExperience .customExperience [class*=experienceBlock-]::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 0;
  opacity: 0.3;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section-customExperience .customExperience .experienceBlock-1::after {
  background-image: url(../images/custom-experience-1.png);
}

.section-customExperience .customExperience .experienceBlock-2::after {
  background-image: url(../images/custom-experience-2.png);
}

.section-customExperience .customExperience .experienceBlock-3::after {
  background-image: url(../images/custom-experience-3.png);
}

.section-customExperience .customExperience .experienceBlock-4::after {
  background-image: url(../images/custom-experience-4.png);
}

.section-customExperience .customExperience .experienceBlock-5::after {
  background-image: url(../images/custom-experience-5.png);
}

.section-customExperience .customExperience .experienceTitle {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin: 0 0 12px;
  line-height: 20px;
}

.popupOverlay {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 14px;
  width: 100%;
  text-align: center;
  padding: 22px 15px;
  z-index: 999999;
}

.popupOverlay em {
  font-style: normal;
}

.popupOverlay a {
  color: #fff;
}

.popupOverlay a:hover {
  text-decoration: underline;
}

.popupOverlay a.closeMe {
  color: #000;
  font-size: 14px;
  background: #fff;
  padding: 8px 15px;
  border-radius: 4px;
  margin-left: 5px;
}

.section-diamondSearch .listingGroup > .card {
  border-radius: 0;
  border: none;
}

.section-diamondSearch .sideNavToggle {
  display: none;
  height: 40px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 0 12px;
}

.section-diamondSearch .sideNav {
  width: 260px;
  max-width: 260px;
}

.section-diamondSearch .listing > [class*=col-] {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .section-diamondSearch .sideNavToggle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .section-diamondSearch .sideNav {
    width: 100%;
    max-width: inherit;
  }

  .section-diamondSearch #sidenav {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: -1;
  }

  .section-diamondSearch #sidenav .sidenavWrapper {
    padding: 0;
    margin: 0;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    right: -100%;
    float: right;
    visibility: hidden;
    opacity: 0;
    position: relative;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }

  .section-diamondSearch #sidenav .sidenavWrapper .sideNavToggle {
    font-size: 30px;
    background-color: #0f0f0f;
    color: #fff;
    max-width: 41px;
    height: 41px;
    position: absolute;
    left: -41px;
    z-index: 2;
    border-radius: 20px 0 0 20px;
    padding: 0 0 0 10px;
  }

  .section-diamondSearch #sidenav.showSideNav {
    visibility: visible;
    opacity: 1;
    z-index: 99;
  }

  .section-diamondSearch #sidenav.showSideNav .sidenavWrapper {
    right: 0;
    visibility: visible;
    opacity: 1;
  }
}
.diamondFilterCard .card-header {
  padding-left: 0;
  padding-right: 0;
  margin-left: 12px;
  margin-right: 12px;
  font-weight: 600;
  color: #0f0f0f;
}

.diamondFilterCard .card-body {
  padding: 10px 0 15px;
  margin: 0 12px;
  border-bottom: 1px solid #d9d9d9;
}

.diamondFilterCard .card-body:last-child {
  border-bottom: none;
  margin-bottom: 8px;
}

.diamondFilterCard .card-body .card-title {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  color: gray;
}

.diamondFilterCard .irs--modern .irs-bar {
  background: #0f0f0f;
}

.diamondFilterCard .irs--modern .irs-grid-text {
  font-size: 10px;
  bottom: -5px;
}

.diamondFilterCard .irs--modern .irs-from, .diamondFilterCard .irs--modern .irs-single, .diamondFilterCard .irs--modern .irs-to {
  background-color: #0f0f0f;
}

.diamondFilterCard .irs--modern .irs-from::before, .diamondFilterCard .irs--modern .irs-single::before, .diamondFilterCard .irs--modern .irs-to::before {
  border-top-color: #0f0f0f;
}

.diamondFilterCard .irs--modern .irs-handle {
  height: 12px;
  border: 1px solid #a3adc1;
}

.diamondFilterCard .irs--modern .irs-handle > i:nth-child(1) {
  top: -3px;
  left: 2px;
}

.diamondFilterCard .irs--modern .irs-handle > i:nth-child(2) {
  height: 10px;
}

.diamondFilterCard .colorNavTabs .nav-link {
  padding: 2px 12px;
  margin: 0 3px 10px;
  border: 1px solid #0f0f0f;
  color: #0f0f0f;
  border-radius: 4px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
}

.diamondFilterCard .colorNavTabs .nav-link.active {
  background-color: #0f0f0f;
  color: #fff;
}

.diamondSearhHeader .recordsFound {
  font-weight: 600;
  color: gray;
}

.diamondSearhHeader label {
  font-weight: 600;
  color: #0f0f0f;
}

.diamondSearhHeader .btnCompare {
  color: gray;
  font-weight: 500;
}

.diamondSearhHeader .searchForm {
  position: relative;
}

.diamondSearhHeader .searchForm .form-control {
  padding-right: 44px;
}

.diamondSearhHeader .searchForm .btn {
  position: absolute;
  right: 0;
  top: 0;
}

.diamondInfoCardList > [class*=col-] {
  margin-bottom: 30px;
}

.diamondInfoCard {
  font-size: 13px;
  color: #666;
  background-color: #f7f7f7;
}

.diamondInfoCard .img-thumbnail {
  max-width: 80px;
  position: relative;
}

.diamondInfoCard .img-thumbnail .imgDiamond {
  max-width: 100%;
  max-height: 100%;
}

.diamondInfoCard .img-thumbnail.thumbLabel {
  overflow: hidden;
}

.diamondInfoCard .img-thumbnail.thumbLabel::before {
  content: "";
  width: 40px;
  height: 40px;
  background-color: #dc3545;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0 -20px -20px 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.diamondInfoCard label {
  margin: 0;
}

.diamondInfoCard .specificationList {
  margin: 0 -3px 7px;
  padding: 0;
  list-style: none;
}

.diamondInfoCard .specificationList > li {
  padding: 0 3px;
  display: inline-block;
  color: #0f0f0f;
}

.diamondInfoCard .specificationList > li > label {
  font-weight: 600;
}

.diamondInfoCard .certificates label {
  display: block;
  margin: 0;
}

.diamondInfoCard .certificates img {
  margin: 1px;
  max-width: 40px;
  max-height: 26px;
}

.diamondInfoCard .btnCompare {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  margin: 0 0 5px;
  padding: 2px;
  color: #fff;
  border-color: transparent;
  background-color: #d9d9d9;
}

.diamondInfoCard .btnCompare:hover {
  background-color: #efa2a9;
}

.diamondInfoCard .btnCompare.addedToCompare {
  background-color: #dc3545;
  border-color: #dc3545;
}

.diamondInfoCard .priceInfo span {
  display: block;
}

.diamondInfoCard .priceInfo .retailPrice {
  display: inline-block;
}

.diamondInfoCard .priceInfo .sellingPrice {
  font-size: 18px;
  color: #0f0f0f;
  font-weight: 600;
}

.diamondInfoCard .priceInfo .offerInfo {
  color: #21a76b;
  margin: 0 0 3px;
}

.diamondInfoCard .priceInfo .btn {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  padding: 4px 5px;
}

@media (max-width: 767px) {
  .diamondInfoCard .img-thumbnail {
    max-width: inherit;
    background-color: transparent;
  }

  .diamondInfoCard .img-thumbnail .imgDiamond {
    max-width: 70px;
  }

  .diamondInfoCard .priceInfo span {
    display: inline-block;
  }

  .diamondInfoCard .priceInfo .offerInfo {
    margin-bottom: 0;
  }
}
[class*=rangeList-] {
  margin: 0 -2px;
  padding: 0;
  list-style: none;
}

[class*=rangeList-] > li {
  padding: 2px;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

[class*=rangeList-] > li > label {
  margin: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

[class*=rangeList-] > li > label input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

[class*=rangeList-] > li > label span {
  display: block;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border: 1px solid transparent;
}

[class*=rangeList-] > li > label img {
  width: 100%;
}

.rangeList-shapes > li {
  max-width: 20%;
  -webkit-flex-basis: 20%;
  -moz-flex-basis: 20%;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
}

.rangeList-shapes > li > label input:checked + span {
  border-color: #0f0f0f;
}

.rangeList-colors > li {
  max-width: 25%;
  -webkit-flex-basis: 25%;
  -moz-flex-basis: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
}

.rangeList-colors > li span {
  position: relative;
  padding: 0 0 16px;
}

.rangeList-colors > li span::before {
  content: attr(data-title);
  position: absolute;
  bottom: 0;
  left: 50%;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 500;
  color: #b3b3b3;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.rangeList-colors > li span > i {
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  margin: 0 0 2px;
  display: block;
}

.rangeList-colors > li span > i img {
  position: relative;
}

.rangeList-colors > li > label input:checked + span::before {
  color: #0f0f0f;
}

.rangeList-certificates > li {
  max-width: 50%;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.rangeList-certificates > li > label input:checked + span {
  border-color: #0f0f0f;
}

.tooltip-inner {
  font-size: 11px;
}

.popover-header {
  font-size: 14px;
}

.diamondCompareGroup .checkListCard {
  max-width: 200px;
}

.diamondCompareGroup .card-body {
  padding: 0;
}

.diamondCompareGroup .imgBlank {
  display: flex;
  width: 100%;
  padding: 114% 0 0;
  margin: 1px 0 0;
}

.diamondCompareGroup .compareCheckList {
  margin: 0;
  padding: 0;
  list-style: none;
}

.diamondCompareGroup .compareCheckList > li {
  padding: 7px 10px;
  border-top: 1px solid #f2f2f2;
  min-height: 38px;
  max-height: 38px;
  text-align: right;
}

.diamondCompareGroup .compareCheckList > li.dropdown {
  padding: 0;
}

.diamondCompareGroup .compareCheckList > li.dropdown .btn {
  font-size: 14px;
}

.diamondCompareGroup .compareCheckList > li.dropdown .dropdown-toggle {
  padding: 7px 10px;
}

.diamondCompareGroup .compareCheckList > li.dropdown .dropdown-toggle::after {
  float: right;
  margin: 8px 3px;
}

.diamondCompareGroup .card:not(.checkListCard) .compareCheckList > li {
  text-align: center;
}

.diamondCompareGroup .card:not(.checkListCard) .compareCheckList > li:nth-child(even) {
  background-color: #fcfcfc;
}

.quickListDetailBox {
  position: fixed;
  bottom: -2px;
  left: 20px;
  width: 320px;
  z-index: 10;
}

.quickListDetailBox .listHeader {
  display: block;
  text-align: left;
  margin: 0;
}

.quickListDetailBox .listTitle {
  border-radius: 4px 4px 0 0;
  border-bottom: none;
}

.quickListDetailBox .listContainer {
  position: relative;
  padding: 0;
  background-color: #fff;
  border: 1px solid #d5d5d5;
}

.quickListDetailBox .listFooter {
  padding: 10px;
  border-top: 1px solid #d5d5d5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.quickListDetailBox .listFooter .btn {
  font-size: 12px;
  padding: 3px 7px;
}

.quickListDetailBox .myBagDetailBox {
  display: none;
}

.quickListDetailBox .savedItemsList {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 285px;
  overflow-y: auto;
}

.quickListDetailBox .savedItemsList > li {
  width: 100%;
  margin: 0;
  padding: 7px;
  border-top: 1px solid #d5d5d5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.quickListDetailBox .savedItemsList > li:first-child {
  border-top: none;
}

.quickListDetailBox .savedItemsList > li > .savedItemThumb {
  width: 80px;
}

.quickListDetailBox .savedItemsList > li > .savedItemThumb img {
  max-width: 100%;
}

.quickListDetailBox .savedItemsList > li > .savedItemInfo {
  font-size: 12px;
  color: #000;
  width: 100%;
}

.quickListDetailBox .savedItemsList > li > .savedItemInfo span {
  display: block;
}

.quickListDetailBox .savedItemsList > li > .savedItemInfo .productPrice {
  color: var(--clrTheme);
  font-weight: 700;
  text-align: right;
}

.quickListDetailBox .savedItemsList > li p {
  margin: 0;
  font-size: 13px;
  text-align: center;
}

.quickListDetailBox .savedItemsList > li .btn {
  font-size: 12px;
  padding: 3px 7px;
}

.section-normalCarousel {
  width: 100%;
  float: left;
  margin: 0;
  padding: 40px 0;
}

.section-brandsLogoCarousel {
  width: 100%;
  float: left;
  margin: 0;
  padding: 40px 0 50px;
  background-color: #fff;
}

.section-brandsLogoCarousel .title {
  display: block;
  text-align: center;
  font-size: 36px;
  line-height: 42px;
  margin: 0 0 20px;
}

.brandsLogoCarousel {
  position: relative;
}

.brandsLogoCarousel .owl-nav {
  margin: 0;
}

.brandsLogoCarousel .owl-nav .owl-next, .brandsLogoCarousel .owl-nav .owl-prev {
  position: absolute;
  bottom: 50%;
  margin: 0 0 -20px;
  width: 30px;
  height: 30px;
}

.brandsLogoCarousel .owl-nav .owl-next span, .brandsLogoCarousel .owl-nav .owl-prev span {
  display: block;
  width: 30px;
  height: 30px;
  border-left: 1px solid #a5a5a5;
  border-top: 1px solid #a5a5a5;
  color: transparent;
}

.brandsLogoCarousel .owl-nav .owl-prev span {
  transform: rotate(-45deg);
}

.brandsLogoCarousel .owl-nav .owl-next span {
  transform: rotate(135deg);
}

.brandsLogoCarousel .owl-nav .owl-prev {
  left: -45px;
}

.brandsLogoCarousel .owl-nav .owl-next {
  right: -45px;
}

.brandsLogoCarousel .owl-nav .owl-next:hover, .brandsLogoCarousel .owl-nav .owl-prev:hover {
  background: 0 0;
}

.brandsLogoCarousel .owl-nav .owl-next:hover span, .brandsLogoCarousel .owl-nav .owl-prev:hover span {
  border-color: #333;
}

.brandsLogoCarousel .item {
  padding: 10px;
}

@media (max-width: 990px) {
  .brandsLogoCarousel .owl-nav .owl-prev {
    left: 0;
  }

  .brandsLogoCarousel .owl-nav .owl-next {
    right: 0;
  }
}
@media (max-width: 767px) {
  .section-brandsLogoCarousel {
    padding: 20px 0;
  }

  .section-brandsLogoCarousel .title {
    font-size: 24px;
    line-height: 28px;
    margin: 0 0 10px;
  }

  .brandsLogoCarousel .item > a {
    display: block;
    height: 70px;
  }

  .brandsLogoCarousel .item > a > img {
    height: 100%;
    object-fit: contain;
  }

  .brandsLogoCarousel .owl-nav .owl-next,
.brandsLogoCarousel .owl-nav .owl-prev {
    display: none;
  }
}
.btn-black {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.btn-black.active, .btn-black.focus, .btn-black:active, .btn-black:focus, .btn-black:hover {
  color: #333;
  background-color: #eee;
  border-color: #eee;
}

.btn-tan {
  color: #fff;
  background-color: var(--clrTheme);
  border-color: var(--clrTheme);
}

.btn-tan.active, .btn-tan.focus, .btn-tan:active, .btn-tan:focus, .btn-tan:hover {
  color: #000;
  background-color: #eee;
  border-color: #eee;
}

@media (min-width: 992px) {
  .container-fluid.full {
    padding: 0 50px;
  }
}
.section-explore .subTitle {
  color: var(--clrTheme);
  font-weight: 400;
  margin: 0;
  font-size: 16px;
}

.section-explore .title {
  font-size: 26px;
}

.section-explore .btn-black:hover {
  background-color: var(--clrTheme);
  border-color: var(--clrTheme);
  color: #fff;
}

.storyContainer {
  padding: 100px 0;
  position: relative;
  color: #fff;
  background: url(../images/our-story-banner-1.jpg) no-repeat center/cover;
  background-attachment: fixed;
}

.storyContainer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.storyContainer .sectionTitle .title {
  color: #fff;
}

.storyContainer p {
  font-size: 16px;
}

.productBox {
  text-align: center;
  border: 1px solid transparent;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.productBox:hover {
  border-color: #555;
}

.productBox .productImage {
  display: block;
}

.productBox .productImage img {
  width: 100%;
}

.productBox .productTitle {
  display: block;
  padding: 10px 20px;
  font-family: "Silk Serif";
  font-size: 18px;
}

.productBox .productPrice {
  display: block;
  padding: 0 0 12px;
  font-size: 22px;
  font-family: "Open Sans Condensed", sans-serif;
  color: var(--clrTheme);
}

.collectionBox > a {
  display: block;
  text-align: center;
}

.collectionBox > a > img {
  width: 100%;
}

.collectionBox > a > span {
  display: block;
  text-transform: uppercase;
  font-size: 24px;
  font-family: "Silk Serif";
  line-height: 38px;
  font-weight: 100;
  padding: 7px 0 0;
  margin: 20px 0 0;
  position: relative;
}

.collectionBox > a > span::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 1px;
  background-color: var(--clrTheme);
  margin-left: -25px;
  left: 50%;
  bottom: 100%;
}

@media (max-width: 767px) {
  .collectionBoxList > [class*=col-] + [class*=col-] {
    margin-top: 30px;
  }
}
.locationCard {
  width: 100%;
  float: left;
  margin-bottom: 15px;
  position: relative;
  transition: all 0.6s ease-in-out 0s;
  overflow: hidden;
}

.locationCard > a {
  display: block;
}

.locationCard .tittle-text {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease-in-out 0s;
  font-size: 20px;
  text-transform: uppercase;
}

.locationCard:hover .tittle-text {
  left: 100%;
}

.locationCard .hover-box {
  border: 3px solid rgba(255, 255, 255, 0.7);
  width: 90%;
  height: 85%;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  padding: 20px;
  transition: all 0.3s ease-in-out 0s;
  text-transform: uppercase;
  transform: translate(-150%, -50%);
}

.locationCard:hover .hover-box {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.locationCard .heading-text {
  font-size: 22px;
  width: 100%;
  float: left;
  text-align: center;
  margin-bottom: 5px;
}

.locationCard .heading-text span {
  padding-bottom: 10px;
}

.locationCard p {
  font-size: 16px;
  line-height: 24px;
}

@media (max-width: 767px) {
  .locationList > [class*=col-] + [class*=col-] {
    margin-top: 30px;
  }
}
.locationsList {
  list-style: none;
  margin: 0;
  padding: 0;
}

.locationsList .directionLink {
  font-weight: 700;
}

.locationsList .directionLink .fa {
  font-size: 24px;
  color: #e62f2f;
  margin-right: 5px;
}

@media (min-width: 768px) {
  .locationsList > li {
    border-top: 1px solid #dfdfdf;
    padding-top: 12px;
    margin-top: 12px;
  }

  .locationsList > li:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }

  .locationsList iframe {
    border: 1px solid #d5d5d5;
  }
}
@media (max-width: 990px) {
  .locationsList {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .locationsList > li {
    border: 1px solid #dfdfdf;
    margin-top: 20px;
  }

  .locationsList > li:first-child {
    margin-top: 0;
  }

  .locationsList iframe {
    border: none;
    border-bottom: 1px solid #d5d5d5;
  }
}
.section-login .card {
  border: none;
  border-radius: 0;
}

.section-login .card.border {
  border: 1px solid #d5d5d5;
  padding: 12px 15px;
}

.section-login .card.contactForm, .section-login .card.jobsForm {
  border: 1px solid #d5d5d5;
  box-shadow: 0 0 20px #e0e0e0;
  border-radius: 0.25rem;
}

.section-login .card.contactForm .card-header, .section-login .card.jobsForm .card-header {
  margin: 0 15px;
  padding: 15px 0 10px;
}

.section-login .card .card-header {
  background-color: transparent;
}

.section-login .card .card-title {
  font-size: 20px;
  font-weight: 400;
}

.section-login .card p {
  color: #666;
}

.section-login .card .form-control {
  border-radius: 0;
  box-shadow: none;
}

.section-login .orLine::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-left: 1px solid #d5d5d5;
}

.section-login .orLine::after {
  content: "OR";
  position: absolute;
  left: 0;
  top: 50%;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  color: #000;
  margin: -16px 0 0 -16px;
  font-size: 11px;
  letter-spacing: 1px;
  border: 1px solid #d5d5d5;
  background-color: #fff;
}

.section-login .myProfileList .list-group-item:first-child, .section-login .myProfileList .list-group-item:last-child {
  border-radius: 0;
}

.section-login .myProfileList label {
  width: 90px;
  margin-right: 12px;
}

@media (min-width: 992px) {
  .section-login .formRow {
    margin-left: -10px;
    margin-right: -10px;
  }

  .section-login .formRow [class*=col-] {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 768px) and (max-width: 990px) {
  .section-login .formRow {
    margin-left: -7px;
    margin-right: -7px;
  }

  .section-login .formRow [class*=col-] {
    padding-left: 7px;
    padding-right: 7px;
  }
}
@media (max-width: 990px) {
  .section-login.myProfile .card-form {
    border: 1px solid #d5d5d5;
    padding: 12px 15px;
  }
}
@media (max-width: 767px) {
  .section-login .orLine::before {
    left: 0;
    top: auto;
    bottom: 0;
    right: 0;
    border-left: none;
    border-bottom: 1px solid #d5d5d5;
  }

  .section-login .orLine::after {
    left: 50%;
    top: auto;
    bottom: 0;
    margin: 0 0 -16px -16px;
  }
}
.section-gemstone .gemstoneHeader p {
  font-size: 16px;
}

.section-gemstone .gemstoneList [class*=col-] {
  margin-bottom: 30px;
}

.section-gemstone .gemstoneList [class*=col-] > a {
  border: 1px solid #d5d5d5;
  position: relative;
  padding: 0 0 50px;
  width: 100%;
  min-height: 150px;
  -moz-transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.section-gemstone .gemstoneList [class*=col-] > a .monthName, .section-gemstone .gemstoneList [class*=col-] > a .stoneName {
  position: absolute;
  left: 0;
  -moz-transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.section-gemstone .gemstoneList [class*=col-] > a .monthName {
  top: 0;
  padding: 5px 15px;
  font-size: 18px;
  background-color: #d5d5d5;
  color: #333;
}

.section-gemstone .gemstoneList [class*=col-] > a .stoneName {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  font-size: 20px;
  text-align: center;
  color: #333;
}

.section-gemstone .gemstoneList [class*=col-] > a:hover {
  box-shadow: 0 0 16px #d5d5d5;
}

.section-gemstone .gemstoneList [class*=col-] > a:hover .stoneName {
  color: #000;
}

.section-gemstone .gemstoneOverview .title {
  font-size: 20px;
  margin: 0 0 12px;
}

.section-gemstone .gemstoneOverview p {
  font-size: 16px;
}

.section-gemstone .gemstoneOverview .overviewImage [class*=img-] {
  display: block;
  text-align: center;
}

.section-gemstone .gemstoneOverview .overviewImage img {
  max-width: 100%;
}

@media (min-width: 768px) {
  .section-gemstone .gemstoneOverview .overviewImage.half img {
    box-shadow: 4px 4px 10px -4px #d5d5d5;
  }

  .section-gemstone .gemstoneOverview .overviewImage.half > div:first-child > img {
    position: relative;
    top: -30px;
    right: -20px;
    z-index: 1;
  }
}
.section-gemstone .gemstoneFeatures {
  margin-bottom: 70px;
}

.section-gemstone .gemstoneFeatures .blockTitle {
  display: block;
  font-size: 20px;
  color: #333;
  text-transform: uppercase;
}

.section-gemstone .gemstoneFeatures .subtitle {
  font-size: 20px;
  text-align: center;
  font-style: italic;
}

.section-gemstone .gemstoneFeatures .blockImage {
  display: block;
  text-align: center;
}

.section-gemstone .gemstoneFeatures .blockImage img {
  max-height: 100px;
}

.section-gemstone .gemstoneFeatures p {
  font-size: 16px;
}

@media (max-width: 990px) {
  .section-gemstone .gemstoneFeatures .qualityList [class*=col-] {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.contentBox {
  width: 100%;
  float: left;
  overflow: hidden;
  padding-bottom: 20px;
}

.contentBox p {
  line-height: 22px;
  margin-bottom: 20px;
}

.contentBox h1 {
  width: 100%;
  float: left;
  font-size: 24px;
  line-height: 34px;
  margin: 0 0 5px;
  padding: 0;
}

.contentBox .title {
  width: 100%;
  float: left;
  font-size: 18px;
  line-height: 26px;
  margin: 0 0 5px;
  padding: 0;
  color: #444;
}

.contentBox h6.textCenter {
  font-size: 18px;
  line-height: 26px;
}

.contentList {
  margin: 0 0 20px 15px;
  padding: 0;
  list-style: disc;
}

.contentList > li {
  margin: 7px 0 0;
  padding: 0;
  color: #666;
  line-height: 22px;
}

.contentList > li:first-child {
  margin-top: 0;
}

.list-col-2 > li {
  box-sizing: border-box;
  width: 50%;
}

.list-col-2 > li:first-child {
  margin-top: 7px;
}

.reviewContainer {
  width: 100%;
  float: left;
  margin: 0 0 30px;
}

.reviewContainer .reviewList {
  margin: 0;
  padding: 0;
  list-style: none;
}

.reviewContainer .reviewList > li {
  margin: 20px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid #e5e5e5;
}

.reviewContainer .reviewList > li:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.reviewContainer .reviewList > li .reviewTitle {
  font-size: 14px;
  margin: 0 0 7px;
  color: #333;
}

.reviewContainer .reviewList > li .fa-star {
  color: #a5a5a5;
}

.reviewContainer .reviewList > li .rated {
  color: #ffc107;
}

.reviewContainer .reviewList > li .reviewer {
  color: #777;
}

.shadow {
  box-shadow: 0 0 20px #e0e0e0;
}

.section-explore .fa.text-danger {
  color: var(--clrTheme);
}

.section-content.shipping-method table {
  margin: 20px 0;
}

.section-content.shipping-method table td, .section-content.shipping-method table th {
  padding: 10px;
  border: 1px solid #444 !important;
}

.section-content.shipping-method table {
  border: 1px solid #444;
  border-top: none;
}

.section-content.shipping-method p {
  line-height: 24px;
}

.section-content .contentGroup {
  width: 100%;
  margin: 0 0 20px;
}

.section-content p .title {
  font-size: 18px;
  display: block;
  margin: 0 0 5px;
}

.section-content p {
  margin: 0 0 20px;
}

.section-content p a {
  color: var(--clrTheme);
}

.section-content .row [class*=col-] {
  margin-bottom: 30px;
}

.text-primary {
  color: var(--clrTheme);
}

.contentBox.contentPage strong {
  color: #666;
}

._breitling_header {
  z-index: 1 !important;
}

a[data-title=Saved] {
  color: orange !important;
}

.contentText h4 {
  line-height: 30px;
}

.contentText h4 a {
  text-decoration: underline;
}

.contentText h4 a:hover {
  text-decoration: none;
}

.section-mainCarousel {
  margin: 0 0 30px;
}

#mainCarousel .owl-caraousel .animated {
  animation-duration: 2s;
  animation-fill-mode: both;
}

#mainCarousel .owl-stage {
  transition-timing-function: linear !important;
}

#mainCarousel .owl-nav {
  width: 100%;
  float: left;
  margin: 0;
}

#mainCarousel .owl-nav .owl-next,
#mainCarousel .owl-nav .owl-prev {
  margin: -30px 0 0;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  opacity: 0.3;
}

#mainCarousel .owl-nav .owl-next:hover,
#mainCarousel .owl-nav .owl-prev:hover {
  opacity: 0.9;
}

#mainCarousel .owl-nav .owl-next span,
#mainCarousel .owl-nav .owl-prev span {
  opacity: 0;
}

#mainCarousel .owl-nav .owl-next {
  left: 20px;
  background: url(../images/icon-angle-left.png) no-repeat center/90% auto;
}

#mainCarousel .owl-nav .owl-prev {
  right: 20px;
  background: url(../images/icon-angle-right.png) no-repeat center/90% auto;
}

#mainCarousel .itemContent {
  position: absolute;
  right: 20%;
  top: 50%;
  padding: 0;
  z-index: 1;
  text-align: center;
  transform: translateY(-50%);
}

#mainCarousel .itemContent .title {
  font-size: 42px;
  color: #000;
  display: block;
  margin: 0 0 20px;
  font-weight: 300;
  font-family: Helvetica, sans-serif;
  text-transform: uppercase;
}

#mainCarousel .itemContent .banner-description {
  font-size: 18px;
  line-height: 36px;
  max-width: 60%;
  font-weight: 400;
  color: #000;
}

#mainCarousel .itemContent > a {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 15px 35px;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 30px;
}

#mainCarousel .itemContent > a.green {
  background-color: #007843;
}

#mainCarousel .itemContent > a.rounded {
  border-radius: 30px !important;
}

@media (max-width: 990px) {
  .section-mainCarousel {
    margin: 0 0 2px;
  }

  #mainCarousel .itemContent {
    right: 50px;
    text-align: center;
    padding: 20px;
  }

  #mainCarousel .itemContent .title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  #mainCarousel .itemContent > a {
    padding: 10px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  #mainCarousel .itemContent {
    right: 0;
  }

  #mainCarousel .itemContent .title {
    font-size: 18px;
  }

  #mainCarousel .itemContent > a {
    font-size: 10px;
  }
}
.section-smallBanners {
  margin-bottom: 30px;
}

.smallBannerCarousel .item a {
  display: block;
  text-align: center;
}

.smallBannerCarousel .item a span {
  border: 1px solid #cccccc;
  padding: 7px 15px;
  color: var(--clrTheme);
  height: 50px;
  line-height: 18px;
}

.smallBannerCarousel .owl-dots .owl-dot span {
  margin: 5px 3px;
  border-radius: 0;
  width: 30px;
  height: 6px;
}

.smallBannerCarousel .owl-dots .owl-dot.active span,
.smallBannerCarousel .owl-dots .owl-dot:hover span {
  background-color: var(--clrTheme);
}

.section-diamondSearchHome {
  background-color: #f8f5e4;
  padding: 35px 0 40px;
}

.diamondShapesList {
  list-style: none;
  margin: 0 -10px;
  padding: 0;
}

.diamondShapesList > li {
  padding: 0 10px;
  width: 8%;
  text-align: center;
}

.diamondShapesList > li > a {
  display: block;
  position: relative;
  padding: 0 0 20px;
}

.diamondShapesList > li > a::before {
  content: attr(title);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  color: #000;
  text-transform: uppercase;
}

.diamondShapesList > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 60px;
  height: 30px;
  background: url(../images/diamond-shadow.png) no-repeat center/100%;
}

.diamondShapesList > li > a > img {
  width: 54px;
  margin: 0 0 7px;
  position: relative;
  z-index: 1;
}

@media (max-width: 990px) {
  .diamondShapesList > li {
    width: 20%;
    padding: 0 10px 20px;
  }

  .diamondShapesList > li > a {
    font-size: 12px;
  }

  .diamondShapesList > li > a > img {
    max-width: 70%;
  }
}
.section-bgContent {
  color: white;
  background: url(../images/section-banner-2.jpg) no-repeat center/cover;
  background-attachment: fixed;
}

.section-bgContent .block {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 120px 0;
}

.section-bgContent .title {
  font-size: 40px;
  margin: 0 0 40px;
}

.section-bgContent .blockLogo {
  filter: brightness(0) invert(1);
}

.section-bgContent p {
  line-height: 26px;
  font-size: 18px;
}

.section-bgContent p + p {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .section-bgContent .block {
    padding: 60px 0;
  }

  .section-bgContent .title {
    font-size: 30px;
    margin: 0 0 20px;
  }

  .section-bgContent .title img {
    height: 40px;
  }
}
.section-quickCategory a {
  display: block;
  position: relative;
  text-align: center;
}

.section-quickCategory a span {
  padding: 12px;
  color: white;
  font-size: 24px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  .section-quickCategory .row [class*=col-] + [class*=col-] {
    margin-top: 10px;
  }
}
.shareStoryList, .shareList {
  margin-left: -7px;
  margin-right: -7px;
}

.shareStoryList > [class*=col-] {
  padding-left: 7px;
  padding-right: 7px;
  margin-bottom: 20px;
}

.shareList .col-md-6 {
  padding-left: 7px;
  padding-right: 7px;
}

.shareStoryList p {
  font-style: italic;
  font-size: 13px;
}

.aboutStory .btn {
  font-size: 20px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 20px;
}

.shareStoryList p .storyDate {
  color: gray;
  margin: 0 0 3px;
}

.shareStoryList .readMore {
  color: var(--clrTheme);
  font-weight: 500;
}

.shareStoryList .readMore:hover {
  text-decoration: underline;
}

.section-shareStory p {
  line-height: 22px;
}

.section-subscribe {
  position: relative;
  margin-bottom: 0;
  padding: 50px 0;
}

.section-subscribe label {
  margin: 0;
  font-size: 20px;
  text-transform: uppercase;
  font-family: "Silk Sarif";
}

.section-subscribe .input-group * {
  border-radius: 0;
}

.section-subscribe .input-group .form-control {
  box-shadow: none;
  border-color: var(--clrTheme);
}

.section-subscribe .msg {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.section-instagramWidget .title {
  background-color: var(--clrThemeLight);
}

@media (max-width: 767px) {
  .section-subscribe .title,
.section-instagramWidget .title {
    font-size: 24px;
    line-height: 28px;
  }
}
.section-locationCards {
  background-color: black;
  color: white;
}

.section-locationCards a,
.section-locationCards .title {
  color: white;
}

.section-locationCards .locationCard + .locationCard {
  border-left: 1px solid #515151;
}

.locationInfoList {
  margin: 0;
  padding: 0;
  list-style: none;
}

.locationInfoList > li {
  margin: 20px 0 0;
  padding: 0 0 0 40px;
  line-height: 24px;
  position: relative;
}

.locationInfoList > li:first-child {
  margin-top: 0;
}

.locationInfoList > li:before {
  content: "";
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 20px;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 20px;
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background-color: black;
}

.locationInfoList.iconWhite > li:before {
  background-color: white;
}

.locationInfoList > li.loc-geo:before {
  -webkit-mask-image: url(../images/icons/png/icon-map-marker.png);
  mask-image: url(../images/icons/png/icon-map-marker.png);
}

.locationInfoList > li.loc-tel:before {
  -webkit-mask-image: url(../images/icons/png/icon-phone.png);
  mask-image: url(../images/icons/png/icon-phone.png);
}

.locationInfoList > li.loc-hours:before {
  -webkit-mask-image: url(../images/icons/png/icon-clock.png);
  mask-image: url(../images/icons/png/icon-clock.png);
}

.locationInfoList > li.loc-info:before {
  -webkit-mask-image: url(../images/icons/png/icon-hours.png);
  mask-image: url(../images/icons/png/icon-hours.png);
}

.locationMap iframe {
  width: 100%;
  height: 300px;
}

@media (max-width: 767px) {
  .section-locationCards .locationCard + .locationCard {
    border-left: none;
    border-top: 1px solid #515151;
    padding-top: 20px;
    margin-top: 5px;
  }
}
.section-eventNewsCard .eventBanner {
  width: 100%;
  float: left;
  height: 0;
  overflow: hidden;
  padding: 70% 0 0;
  position: relative;
  background-color: #000;
}

.section-eventNewsCard .eventBanner img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}

footer {
  width: 100%;
  float: left;
  padding: 0;
  background-color: #eee;
}

footer .footerLogo {
  padding-bottom: 15px;
  border-bottom: 1px solid #acacac;
}

footer .footerLogo img {
  mix-blend-mode: multiply;
}

footer .title {
  display: block;
  text-transform: uppercase;
  font-size: 16px;
  margin: 0 0 12px;
}

footer .newsletterBox .form-control {
  border-radius: 0;
}

footer .certificates {
  background-color: var(--clrThemeLight);
}

footer .certificates img {
  max-width: 100%;
}

.foterNav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.foterNav > li {
  margin: 7px 0 0;
  padding: 0;
}

.foterNav > li:first-child {
  margin-top: 0;
}

.foterNav > li > a {
  display: inline-block;
}

.foterNav > li > a p {
  color: #000;
}

.contactNav > li .fa {
  width: 24px;
}

.socialNav {
  margin: 0 -12px;
}

.socialNav > li {
  margin: 0;
  padding: 0 12px;
}

.socialNav > li > a > span {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  color: black;
}

.socialNav > li:hover > a > span {
  background-color: var(--clrTheme);
  color: white;
}

.footerInfoList {
  margin: 0 -10px;
  padding: 10px 0;
  list-style: none;
}

.footerInfoList > li {
  margin: 5px 0;
  padding: 0 10px 0 20px;
  position: relative;
}

.footerInfoList > li:before {
  position: absolute;
  left: 0;
}

.copyrightBox {
  background-color: #fff;
  margin: 0;
}

.copyrightBox p {
  padding: 5px 0;
}

@media (max-width: 767px) {
  .footerCols > [class*=col-] + [class*=col-] {
    margin-top: 30px;
  }

  .catNav, .socialNav {
    margin: 0 -5px;
  }

  .catNav > li, .socialNav > li {
    margin: 0;
    padding: 5px;
  }

  .paymentCardsBox .title {
    margin: 0;
  }
}
#_breitling_integrator {
  width: 100%;
  float: left;
}

/*# sourceMappingURL=style.css.map */
