h1, h2, h3, h4, h5, h6, p, a, li, span, input, label{
  font-family: 'Droid Serif', serif;
}
#header {
  position: relative;
}

#header #top-section {
  background-color: #045385;
  height: 45px;
}

#header #main-section {
  background-color: #e6f1f8;
  height: 100px;
}

#header #top-section ul {
  padding: 0;
  margin: 0;
  list-style: 0;
  display: flex;
  list-style-type: none;
  align-items: center;
}

#header #top-section .left-menu ul { justify-content: flex-start; }
#header #top-section .right-menu ul { justify-content: space-between; }

#header #top-section ul a {
  font-family: 'Droid Serif', serif;
  font-size: 12px;
  color: #e6f1f8;
  font-weight: 700;
  padding: 10px 10px;
  text-transform: uppercase;
}

#header #top-section .left-menu li:first-child a,
#header #top-section .right-menu li:first-child a { padding-left: 0; }
#header #top-section .right-menu li:last-child a,
#header #main-section .main-menu-block li:last-child a { padding-right: 10px; }
.mx-height { height: 100%; }

#header #main-section .left-side {
  display: flex;
  align-items: center;
}

#header #main-section .left-side img { max-width: 220px; position: relative; top: 25px; }

#header #main-section .social-block .join-text {
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  font-weight: bold;
  text-transform: uppercase;
  color: #0877bd;
  margin-bottom: 0;
  position: relative;
  top: 6px;
}

#header #main-section .social-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding-top: 10px;
}

#header #main-section .social-block ul {
  list-style-type: none;
  padding: 0;
  margin: 0;

  display: flex;
}

#header #main-section .social-block ul a {
  padding: 0 8px;
}

#header #main-section .social-block img {
  width: 20px;
  height: 20px;
}

#header #main-section .social-block form {
  position: relative;
}

#header #main-section #clonedForm {
  width: 130px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

#header #main-section #clonedForm input { width: 130px !important; }

@media (max-width: 450px){
  #header #main-section #clonedForm { left: 50%; }
  #header #main-section #clonedForm { width: 100px !important; }
  #header #main-section #clonedForm input { width: 100px !important; }
}

#header #main-section .social-block input,
#header #main-section #clonedForm input {
  border: none;
  outline: none;
  border-radius: 15px;
  height: 30px;
  width: 130px;
  padding-left: 10px;
  font-family: 'Open Sans', sans-serif;
}

#header #main-section .social-block button,
#header #main-section #clonedForm button {
  background-color: transparent;
  color: #045385;
  border: none;
  outline: none;
  position: absolute;
  top: 50%;
  right: 5px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#header #main-section .main-menu-block {
  height: 50px;
}

#header #main-section .main-menu-block ul.nav {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#header #main-section .main-menu-block a {
  color: #0877bd;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 15px 10px;
  -webkit-transition: color 0.3s ease, background 0.3s ease;
  -moz-transition: color 0.3s ease, background 0.3s ease;
  -ms-transition: color 0.3s ease, background 0.3s ease; /* IE10 is actually unprefixed */
  -o-transition: color 0.3s ease, background 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease;
}
#header #main-section .main-menu-block span{
  font-family: 'Open Sans', sans-serif;
}

#header #main-section .main-menu-row { position: relative; }

#header #main-section .left-side .menu-bars {
  display: none;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#header #main-section .left-side .menu-bars:hover {
  cursor: pointer;
}

@media (min-width: 992px) and (max-width: 1199px) {
  #header #main-section .main-menu-block a{
    font-size: 12px;
  }
}

@media (max-width: 991px) {

  #header {
    height: 60px !important;
    overflow: hidden;
    transition: height .5s ease;
    z-index: 10000;
  }

  #header.opened {
    height: auto !important;
  }

  #header #top-section,
  #header #main-section {
    /*position: absolute;*/
    left: 0;
    width: 100%;
  }

  #header #top-section {
    top: 555px;
    height: auto;
  }

  #header #top-section .left-menu {
    padding-top: 30px;
  }

  #header #top-section .right-menu {
    padding-bottom: 30px;
  }

  #header #main-section {
    top: 0;
    height: auto;
  }

  #header #top-section ul {
    flex-direction: column;
  }

  #header #top-section > .container,
  #header #top-section > .container > .row,
  #header #top-section > .container .left-menu,
  #header #top-section > .container .right-menu,
  #header #top-section ul {
    height: auto;
  }

  #header #top-section ul a {
    font-size: 20px;
  }

  #header #top-section li {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  #header #top-section .left-menu li:first-child a { padding-left: 15px; }
  #header #top-section .right-menu li:last-child a { padding-right: 15px; }


  #header #main-section .social-block {
    flex-direction: column;
    justify-content: flex-start;
    height: 105px;
  }

  #header #main-section .social-block form {
    display: none;
  }

  #header #main-section .social-block .join-text {
    font-size: 20px;
    text-align: center;
    margin-bottom: 30px;
  }

  #header #main-section .social-block img {
    width: 25px;
    height: 25px;
  }

  #header #main-section .social-block a {
    padding: 10px 15px !important;
  }

  #header #main-section .main-menu-block ul {
    flex-direction: column;
  }

  #header #main-section .main-menu-block { height: auto; }

  #header #main-section .main-menu-block li {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  #header #main-section .main-menu-block a {
    font-size: 20px;
    padding: 10px 10px;
    text-align: center;
    text-align: -webkit-center;
  }

  #header #main-section .right-side,
  #header #main-section .main-menu-block {
    position: relative;
  }

  #header #main-section .right-side { top: 0; }
  #header #main-section .left-side { height: 60px; position: relative; }

  #header #main-section .main-menu-block {
    top: 115px;
    padding-bottom: 40px;
    border-bottom: 1px solid #0877bd;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  #header #main-section .left-side img {
    max-width: 90px; top: 0;
  }

  #header #main-section .left-side .menu-bars {
    display: block;
  }

  #header #main-section .left-side .menu-bars i {
    color: #0877bd;
    font-size: 28px;
  }

  #header #main-section #cloned-form {
    display: block;
  }

}



#decoration-image { margin-top: 60px; }
#footer {
  background-image: url('../images/footerBackTile.png');
  background-position: 0 0;
  padding-top: 55px;
}

#footer .signup {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footer .signup input::-webkit-input-placeholder { color: #ad7c37; }
#footer .signup input::-moz-placeholder { color: #ad7c37; }
#footer .signup input:-ms-input-placeholder { color: #ad7c37; }
#footer .signup input:-moz-placeholder { color: #ad7c37; }

#footer .signup #newsletter-form { position: relative; }

#footer .signup button {
  border: none;
  background-color: white;
  position: absolute;
  outline: none;
  right: 7px;
  top: 50%;
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#footer .signup input {
  width: 330px;
  border: none;
  outline: none;
  border-radius: 5px;
  height: 30px;
  font-family: 'Helvetica', serif; font-size: 12px;
  padding-left: 10px;
}

#footer .signup button i { color: #ad7c37 }

#footer .signup h3 {
  margin: 0;
  font-family: 'Droid Serif', sans-serif;
  font-size: 36px;
  color: #fff7ea;
}

#footer .footer-logo-wrapper img { max-width: 170px; }
#footer .footer-left-menu { padding-top: 30px; }

#footer .footer-left-menu ul {
  list-style-type: none;
  padding: 0 90px 0 0;
  margin: 0;
}

#footer .footer-left-menu li {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: right;
}

#footer .footer-left-menu a,
#footer .footer-right-menu a {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff7ea;
  text-transform: uppercase;
}

#footer .footer-right-menu a { padding: 0 20px; }
#footer .footer-right-menu li:first-child a { padding-left: 0; }

#footer .footer-social-block,
#footer .footer-right-menu {
  display: flex;
  border-top: 1px solid #fff7ea;
  margin-top: 35px;
  padding-top: 25px;
}

#footer .footer-social-block ul,
#footer .footer-right-menu ul  {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}

#footer .footer-social-block a {
  padding: 0 10px;
}

#footer .footer-social-block .footer-join-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: bold;
  font-style: italic;
  color: #fff7ea;
  text-transform: uppercase;
  margin-right: 50px;
}

#footer .footer-social-block img {
  width: 20px;
  height: 20px;
}


@media (max-width: 991px) {

  #footer .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  #footer .footer-left-menu ul {
    padding-right: 0;
    border-bottom: 1px solid #fff7ea;
    padding-bottom: 20px;
  }

  #footer .footer-logo-wrapper img { margin: 0 auto; }
  #footer .footer-left-menu li { text-align: center; }
  #footer .footer-left-menu a { letter-spacing: 1px; font-size: 20px; }

  #footer .signup {
    flex-direction: column;
    margin-top: 30px;
  }

  #footer .signup h3 {
    margin-bottom: 15px;
    font-size: 30px;
  }

  #footer .signup input {
    height: 38px;
    border-radius: 10px;
    width: 290px;
  }

  #footer .footer-social-block {
    flex-direction: column;
    align-items: center;
  }

  #footer .footer-social-block .footer-join-text {
    margin-right: 0;
    margin-bottom: 30px;
  }

  #footer .footer-social-block img {
    width: 25px;
    height: 25px;
  }

  #footer .footer-right-menu ul {
    flex-direction: column;
    align-items: center;
  }

  #footer .footer-right-menu { justify-content: center; }

  #footer .footer-right-menu li {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  #footer .footer-right-menu li a {
    font-family: 'Droid Serif', serif;
    font-size: 20px;
    color: #fff7ea;
    padding: 10px 10px !important;
  }

}



#colophon {
  background-color: #ad7c37;
  height: 40px;
  margin-top: 90px;
}

#colophon p {
  font-family: 'Helvetica';
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  color: #fff7ea;
  padding-top: 12px;
}




.home-carousel {
  background-image: url('../images/carouselBackground.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#home-carousel .item {
  padding-top: 50px;
  padding-bottom: 50px;
}

#home-carousel .carousel-image {
  max-width: 60%;
  margin: 0 auto;
}

#home-carousel .carousel-control-wrapper {
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
}

#home-carousel .carousel-control-wrapper.left-wrapper {
  left: 80px;
}

#home-carousel .carousel-control-wrapper.right-wrapper {
  right: 80px;
}

#home-carousel .carousel-control {
  background-image: none;
  width: 70px;
  height: 70px;
  background-color: #ad7c37;
  opacity: 1;
  border-radius: 100%;
}

#home-carousel .carousel-control .glyphicon {
  margin: 0 !important;
  top: 50% !important;
  left: 50% !important;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

#home-carousel .carousel-indicators {
  bottom: -45px;
}

#home-carousel .carousel-indicators li {
  border-color: #ad7c37;
  background-color: #fff;
}

#home-carousel .carousel-indicators li.active {
  background-color: #ad7c37;
}





#index-page .last-products {
  padding-top: 60px;
}

.title {
  font-family: 'Droid Serif', serif;
  font-size: 36px;
  color: #ad7c37;
  text-align: center;
  margin-bottom: 30px;
}

.last-products .product {
  background-color: #e6f1f8;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}

.last-products .quilting {
  background-image: url('../images/quiltingBackground.png');
}

.last-products .sewing {
  background-image: url('../images/sewingBackground.png');
}

.last-products .serging {
  background-image: url('../images/sergingBackground.png');
}

.last-products .product-row,
.last-products .product-text {
  height: 371px;
}

.last-products .product-text {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.last-products .product-text.text-left {
  justify-content: flex-start;
}

.last-products .ext-column {
  padding-right: 0;
}

.last-products .int-column {
  padding-left: 0;
}

.last-products .right-product-column {
  padding-right: 75px;
}

.last-products .left-align-product-column {
  padding-left: 75px;
}

.last-products .product-title {
  font-family: 'Droid Serif', serif;
  font-size: 48px;
  color: #727272;
}

.last-products .product-especification {
  font-family: 'Droid Serif', serif;
  font-size: 36px;
  color: #727272;
  padding-bottom: 10px;
}

.learn-more-button {
  font-family: 'Droid Serif', serif;
  font-size: 18px;
  color: #fff;
  background-color: #ad7c37;
  display: inline-block;
  padding: 10px 40px;
}

.learn-more-button:hover {
  color: #fff;
}

.product-icon-wrapper {
  padding-top: 20px;
}


.actions {
  padding-top: 100px;
}

.actions .action {
  position: relative;
}

.actions .action .events-text {
  position: absolute;
  width: calc(100% - 35px);
  bottom: 45px;
  padding-left: 43px;
}

.actions .action .events-text-date {
  position: static;
  text-align: center;
  margin-top: 0;
}

.actions .action .events-text-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #ad7c37;
  text-transform: uppercase;
  text-align: center;
  padding: 0 40px;
}

.actions .action h3 {
  position: absolute;
  left: 0;
  top: 0;

  font-family: 'Droid Serif', serif;
  font-size: 48px;
  color: #727272;
}

.actions #txtFindZipCode {
  border: 1px solid #ad7c37;
  background-color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: #ad7c37;
  text-align: center;
  height: 45px;
  position: absolute;
  bottom: 45px;
}

.actions #txtFindZipCode::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #ad7c37;
  text-align: center;
}
.actions #txtFindZipCode::-moz-placeholder { /* Firefox 19+ */
  color: #ad7c37;
  text-align: center;
}
.actions #txtFindZipCode:-ms-input-placeholder { /* IE 10+ */
  color: #ad7c37;
  text-align: center;
}
.actions #txtFindZipCode:-moz-placeholder { /* Firefox 18- */
  color: #ad7c37;
  text-align: center;
}

.page-title {
  font-family: 'Droid Serif', serif;
  font-size: 36px;
  color: #ad7c37;
  text-align: center;
  margin: 30px auto 50px;
}
.page-secondary-name {
  font-family: 'Droid Serif', serif;
  font-size: 20px;
  color: #ad7c37;
  text-align: center;
  margin-top: 0;
  position: relative;
  bottom: 20px;
}
.collateral-tabs h3{
  font-family: 'Droid Serif', serif;
  color: #ad7c37;
  text-align: center;
}
.machine-group {
  padding-bottom: 70px;
  padding-top: 40px;
}

.machine-group.group2,
.machine-group.group3 {
  background-color: #e6f1f8;
}

.machine-group .group-title h3 {
  font-family: 'Droid Serif', serif;
  font-size: 36px;
  color: #727272;
}

.machine-group .comparing-text {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 69px;
}

.product-info { position:relative; margin-bottom: 60px; padding-bottom: 50px; border-bottom: 1px dashed #e6f1f8; }
.product-info img { margin: 0 auto; }
.product-info h3 { height:24px; margin-bottom: 5px; line-height: 1; }
.product-info h4 { color: #ad7c37; font-size: 16px; margin: 0; bottom: auto !important; line-height: 1.2; }
.product-info .explore-machine { padding: 0; margin: 0; text-align: center; position: absolute; bottom: 30px; width: 100%; }
.product-info .explore-machine a { font-family: 'Droid Serif', serif; font-size: 14px; color: #ad7c37; }
.machine-group.group2 .product-info,
.machine-group.group3 .product-info{
  border-bottom: 1px dashed #fff;
}
.machine-group .comparing-text a {
  font-family: 'Droid Serif', serif;
  font-size: 18px;
  color: #be9865;
}

.end-image-wrapper {
  background-color: #e6f1f8;
}

#partners-page {
  background-image: url('../images/partners-background.png');
  background-size: 36px 36px;
}

.partner .logo-wrapper {
  background-color: #fff;
  border: 1px solid #ad7c37;
  display: flex;
  justify-content: center;
  height: 150px;
  align-items: center;
}

#partners-page .partner { padding-bottom: 30px; height: 405px; overflow:hidden; }

.partner .partner-text h3 {
  font-family: 'Droid Serif', serif;
  font-size: 24px;
  color: #ad7c37;
}

.partner .partner-text p {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #757575;
  font-weight: 300;
}


@media (max-width: 991px) {

  .left-menu, .right-menu {
    justify-content: center;
  }

  .left-menu a:first-child {
    padding-left: 20px;
  }

  .right-menu a:last-child {
    padding-right: 20px;
  }

  #home-carousel .carousel-image { max-width: 95%; }
  #home-carousel .carousel-control-wrapper { display: none; }
  .title { font-size: 26px; }
  .last-products .int-column { padding-right: 0; }
  .last-products .ext-column { padding-left: 0; }
  .last-products .product-title { font-size: 48px; }
  .last-products .product-especification { font-size: 28px; }
  .learn-more-button { font-size: 14px; }
  .last-products .product-row, .last-products .product-text { height: 300px; }

  .actions .action {
    float: none;
    width: 85%;
    margin: 20px auto;
  }

  .actions #txtFindZipCode {
    bottom: 40px;
    width: 195px;
  }

  .actions .learn-more-button {
    position: relative;
    left: 12px;
  }

  .product-image { width: 100%; }
  .action img { margin: 0 auto; }

  .action .action-header {
    left: 50% !important;
    width: 400px !important;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media (max-width: 480px){

  .action .action-header {
    width: 320px !important;
    font-size: 36px !important;
  }

}



/* SIZE ADVISOR MEDIAS */
@media (max-width: 767px) {
	#size-advisor { width: 20px; }
	.product-info { height:auto !important; }
	.product-info .explore-machine { position:relative; bottom:0; margin-top:30px; }
	#partners-page .partner { height:auto; overflow:auto; }
} /* cel - xs */
@media (min-width: 768px) and (max-width: 991px) {
	#size-advisor { width: 40px; }
	.product-info { height:440px; }
} /* tablet / iPhone - sm */
@media (min-width: 992px) and (max-width: 1199px) {
	#size-advisor { width: 60px; }
	.product-info { height:430px; }
} /* tablet / iPhone - md */
@media (min-width: 1200px) {
	#size-advisor { width: 80px; }
	.product-info { height:445px; }
} /* desktop - lg */

.text-ellipsis { display:block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.text-ellipsis-2lines { display:block; display: -webkit-box; -webkit-line-clamp:2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; }
.text-ellipsis-3lines { display:block; display: -webkit-box; -webkit-line-clamp:3; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; }

.store_list .owl-prev { left: -15px !important; }
.store_list .owl-next { right: -15px !important; }
.store_list .owl-prev,
.store_list .owl-next { margin: 0 !important; }
.store_list .owl-carousel .owl-wrapper-outer { border: none !important; }
.store-title{
  margin-top: 20px;
}
.store_detail label{
  padding: 0 !important;
}
.backstore.read-more-left{
  padding-left: 15px;
}
#colophon a{
  color: #fff;
  text-decoration: underline;
}
.events-content{
  margin-bottom: 60px;
}
#colophon a:hover, #colophon a:focus{
  color: #fff;
}
/*.product-hzl-lb5100 #specifications>h3, .product-hzl-lb5100 #accessories>h3, .product-tl-2010q #accessories>h3, .product-hzl-dx7 #accessories>h3, .product-hzl-dx5 #accessories>h3{
  display: none;
}*/
.cms-product-registration .product-options .datetime-picker{
  display: inline-block;
  margin-right: 10px;
}
.cms-product-registration .product-options li{
  margin-bottom: 15px;
}
.dropdown-menu li{
 position: relative;
}
/*.dropdown-sub-menu li:hover{
  background-color: #e8e8e8;
  background-image: -webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);
  background-image: -o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);
  background-image: -webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));
  background-image: linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
  background-repeat: repeat-x;
}*/
.dropdown-sub-menu a:hover{
  text-decoration: none;
  background: #1d84c5 !important;
}
.dropdown-menu{
  background-color: #0877bd;
  top: 92%;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  min-width: 136px;
  z-index: 99999;
}
.dropdown-menu a{
  color: #e6f1f8 !important;
  padding: 10px !important;
  margin: 5px !important;
  display: block;
}
#header #main-section .main-menu-block .dropdown-sub-menu a{
  background: #1d84c5;
  font-size: 12px;
  font-weight: 400;
  text-transform: capitalize;
}
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover{
  background-image: none;
}
.dropdown-sub-menu{
  position: relative;
  z-index: 1000;
  /*display: none;*/
  float: left;
  min-width: 310px;
  padding: 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #0877bd;
}
.options-list{
  padding-left: 0;
}
#options-11-list .label, #options-11-list .checkbox, #options-10-list .label, #options-10-list .checkbox{
  color: #000;
  display: inline-block;
}
#header #main-section .main-menu-block a:focus, #header #main-section .main-menu-block a:hover, .dropdown:hover .dropdown-toggle{
  background-color: #e6f1f8 !important;
  color: #0877bd !important;
}
.inner-detail-content:first-child h1, #inner-image-section:first-child h1, .legend{
  font-family: 'Droid Serif', serif;
  font-size: 36px;
  color: #ad7c37;
  text-align: center;
  margin: 30px auto 50px;
}
.form-product-single .legend{
  text-align: left;
  margin: 0;
}
.form-product-single .form-list.product-options{
  margin: 20px 0;
}
.form-product-single .form-list.product-options .divid-line{
  margin-top: 0;
}
.form-product-single .form-list.product-options li{
  margin-bottom: 15px;
}
.form-product-single .form-list.product-options li:last-child{
  margin-bottom: 0;
}
.form-product-single .form-list.product-options li .input-box ul{
  padding-left: 0;
}
.form-product-single .form-list.product-options li .input-box ul .checkbox.product-custom-option.form-control{
  display: inline-block;
  box-shadow: none;
  margin-right: 5px;
  margin-top: 0;
}
.form-product-single .form-list.product-options li .input-box ul .label{
  position: relative;
  bottom: 12px;
}
.inner-detail .featured-image{
  margin: 30px 0;
}
.read-more, .read-more-left{
  font-family: 'Droid Serif', serif;
  font-size: 16px;
  color: #fff;
  background-color: #ad7c37;
  padding: 10px 20px;
  max-width: 150px;
}
.events-teaser{
margin-bottom: 25px;
}
.read-more:hover, .read-more-left:hover{
  color: #fff;
}
.legend{
  text-align: center;
}
ul.form-list.product-options{
  padding-left: 0;
  margin: 40px 0;
}
ul.form-list.product-options h3{
  margin-top: 10px;
  margin-bottom: 20px;
  color: #727272;
}
ul.form-list.product-options label{
  font-size: 14px;
  font-weight: 400;
  color: #727272;
}
ul.form-list.product-options .input-box{
  width: 100%;
}
ul.form-list.product-options input, ul.form-list.product-options select, #contactForm input, #contactForm textarea{
  background: #e6f1f8;
}
ul.form-list.product-options em{
  color: #ad7c37;
  margin-right: 5px;
}
.form-control:focus{
  border-color: #0877bd;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(8, 119, 189, .6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(8, 119, 189, .6);
}
.divid-line{
  margin-top: 30px;
  height: 3px;
  border-bottom: 1px dashed #e6f1f8;
}
.single-divid-line{
  margin-bottom: 30px;
}
.dropdown.open .caret{
    border-top: none;
    border-bottom: 4px solid #0877bd;
}
.required{
  color: #ad7c37;
}
.button, .submit-btn{
  background-image: none;
  font-family: 'Droid Serif', serif;
  font-size: 16px;
  color: #fff;
  background: #ad7c37;
  padding: 10px 20px;
  border: 0;
  border-radius: 0;
  outline: none;
}
.submit-btn:hover, .submit-btn:focus, .submit-btn:active, .submit-btn:visited{
  color: #fff !important;
  background: #ad7c37 !important;
}
.form-product-single .container, .form-product-single .col-sm-6, .form-product-single .col-sm-6 li input{
  width: 100%;
}
.form-product-single .col-sm-6 li input.checkbox{
  width: auto;
}


/*MEDIAS*/
@media (max-width: 991px) {
  .phone-image-slider{
    width: 100%;
  }
  #cloud-zoom-big{
    display: none !important;
  }
  .dropdown-menu{
    position: relative;
    background-color: #e6f1f8;
    float: none;
    /*display: block !important;*/
  }
  .dropdown-menu a{
    align-items: center;
    color: #0877bd !important;
    padding: 0 !important;
  }
  .dropdown-sub-menu{
    background-color: #e6f1f8;
  }
  #header #main-section .main-menu-block{
    top: 0;
  }
  #header #main-section .main-menu-block .dropdown-sub-menu a{
    background: #e6f1f8;
  }
  .store-locator-search-left .search-by-location{
    margin-bottom: 40px;
  }
  .store-locator-search-left .address-input-text{
    width: 200px !important;
  }
}
@media (max-width: 767px) {
  .store-locator-search-left{
  margin-left: 70px;
  }
}

/* /SIZE ADVISOR MEDIAS */

.breadcrumb { background:none; }
.dotted-separator { border-bottom: 1px dashed #e6f1f8; padding: 10px 0; }
.margin-bottom-block { margin-bottom:10px; }
.margin-top-block { margin-top:10px; }
ul.pdf-files { padding:0; margin:0; }
ul.pdf-files li { margin-right:20px; display: inline-block; }
ul.pdf-files li a { text-transform: uppercase; font-weight:700; color: #0096ce; text-decoration: underline; }

/* validation */
label.error{
  color: red !important;
  font-style: italic;
}

/* FAQ Accordion  */
.faq-accordion .panel-default{
  border: 0;
  box-shadow: none;
}
.faq-accordion .panel-heading{
  background-image: none;
  border: 0;
  background-color: #fff;
  padding: 0;
}
.faq-accordion .panel-title a{
  font-size: 18px;
  font-weight: bold;
  display: block;
  color: #263540;
  position: relative;
  padding: 20px 20px 20px 0;
  text-decoration: none !important;
}
.faq-accordion .panel-title a.collapsed{
  border-bottom: 1px solid #ddd;
}
.faq-accordion .panel-title a:after{
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  font-size: 20px;
  content: "\f078";
  font-family: "FontAwesome";
  font-weight: 900;
  color: #273641;
  /* text-rendering: optimizeLegibility; */
}
.faq-accordion.panel-group .panel-heading+.panel-collapse>.panel-body{
  border-top: 0;
  border-bottom: 1px solid #ddd;
}
/* Banner Category page */
.ysc-find-where {
  position: relative;
  background-color: #E6F1F8;
  padding: 50px 0 30px 0;
  margin-top: -20px;
}
.ysc-find-where .content-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#content-section, .content-section {
  color: #4E4F55;
}
.ysc-btn-blue {
  display: inline-block;
  color: #fff;
  padding: 10px 30px;
  border: 1px solid #AD7C37;
  background-color: #AD7C37;
  /*border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;*/
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}
.ysc-find-where .content-section .title {
  margin-top: 0;
  margin-bottom: 0;
}
#content-section h2, .content-section h2 {
  font-size: 30px;
  color: #933088;
  font-weight: 700;
}
.ysc-find-where.banner-categories { padding: 45px 35px; margin: 65px auto; }
.ysc-find-where.banner-categories .content-section .title { font: normal normal normal 28px/38px Droid Serif; color: #0877BD; margin-top: 0; margin-bottom: 0; }
.ysc-find-where.banner-categories .ysc-btn-blue { font: normal normal 500 18px/28px Work Sans; color: #fff; padding: 13px 40px; }
.ysc-find-where.banner-categories .ysc-btn-blue:hover { color: #AD7C37; background-color: #fff; text-decoration: none; }