/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
.carousel {
  position: relative;
  border: solid 2px #323131;
  background-color: #e1e1e1;
  padding: 15px 60px;
}

.carousel-slides {
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.carousel-slide {
  clear: both;
  position: absolute;
  width: 100%;
}

.carousel-slide .no-content,
.carousel-slide .no-image {
  text-align: center;
}

.carousel-slide.is-active {
  display: block;
  position: relative;
}

.carousel-cover {
  max-width: 50%;
  height: auto;
  float: right;
}

.carousel-slide .image-and-content {
  overflow: hidden;
}

.carousel-slide .no-content .carousel-cover {
  float: none;
  max-width: 100%;
}

.carousel-slide .no-image .carousel-content {
  float: none;
  max-width: 100%;
}

.carousel-content {
  max-width: 48%;
  float: left;
  text-align: left;
  -moz-transition-property: margin;
  -o-transition-property: margin;
  -webkit-transition-property: margin;
  transition-property: margin;
  -moz-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  width: 100%;
}

.carousel-nav {
  text-align: center;
  margin-top: 20px;
  overflow: hidden;
  padding: 0;
}

.carousel-nav li {
  display: inline-block;
  margin: 0 3px;
}

.carousel-nav a {
  display: inline-block;
  border: 2px solid #656363;
  width: 10px;
  height: 10px;
  font-size: 0;
  color: transparent;
}

.carousel-nav li.is-active a {
  background: #939191;
}

.carousel-nav-prev,
.carousel-nav-next {
  position: absolute;
  top: 50%;
  border: none;
  width: 19px;
  height: 31px;
}

.carousel-nav-prev a,
.carousel-nav-next a {
  border: none;
  display: block;
  width: 100%;
  height: 100%;
}

.carousel-nav-prev {
  left: 10px;
}
.carousel-nav-prev a:before {
  content: "\f053";
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  position: relative;
  font-weight: normal;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 30px;
  color: #939191;
}
.carousel-nav-prev a:hover:before {
  color: #323131;
}

.carousel-nav-next {
  right: 10px;
}
.carousel-nav-next a:before {
  content: "\f054";
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  position: relative;
  font-weight: normal;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 30px;
  color: #939191;
}
.carousel-nav-next a:hover:before {
  color: #323131;
}

.no-js .carousel .carousel-slide:first-child {
  margin-top: 0;
  border-top: none;
}
.no-js .carousel .carousel-slide {
  position: static;
}
.no-js .carousel .carousel-nav li {
  display: none;
}

.lt-ie8 .carousel-nav li {
  display: inline;
  zoom: 1;
}
.lt-ie8 .carousel-nav li.is-active a {
  background: #939191;
}
.lt-ie8 .carousel-nav .carousel-nav-prev, .lt-ie8 .carousel-nav .carousel-nav-next {
  width: 19px;
  height: 31px;
}
.lt-ie8 .carousel-nav .carousel-nav-prev a, .lt-ie8 .carousel-nav .carousel-nav-next a {
  border: none;
  display: block;
  width: 100%;
  height: 100%;
}
.lt-ie8 .carousel-nav a {
  display: block;
  zoom: 1;
  border: 2px solid #656363;
  width: 10px;
  height: 10px;
}

@media only screen and (max-width: 767px) {
  .carousel-cover {
    max-width: 100%;
    float: none;
    margin: auto;
    display: block;
  }

  .carousel-content {
    max-width: 100%;
    float: none;
  }

  .carousel-nav li {
    display: none;
  }
  .carousel-nav .carousel-nav-prev,
  .carousel-nav .carousel-nav-next {
    display: block;
  }
}
.carousel {
  border: none;
  background: none;
}

.carousel-nav li {
  margin: 0 4px;
}

.ls-see-example-carousel .carousel-nav li a {
  background: url("../../assets/img/mobile-carousel-nav-arrow.png") no-repeat center center;
}
.ls-see-example-carousel .carousel-nav li.is-active a {
  background: url("../../assets/img/mobile-carousel-nav-arrow-active.png") no-repeat center center;
}
.ls-see-example-carousel .carousel-nav a {
  border: 0 solid #656363;
  color: transparent;
  display: inline-block;
  font-size: 0;
  height: 14px;
  width: 14px;
}
.ls-see-example-carousel .carousel-nav-prev a {
  background: transparent url("../../assets/img/ARROW_LEFT.png") no-repeat scroll 0 0 !important;
  height: 48px;
  width: 33px;
}
.ls-see-example-carousel .carousel-nav-prev a::before {
  color: #939191;
  content: none;
  display: inline-block;
  font-family: FontAwesome;
  font-size: 30px;
  font-style: normal;
  font-weight: normal;
  position: relative;
}
.ls-see-example-carousel .carousel-nav-next a {
  background: transparent url("../../assets/img/ARROW_RIGHT.png") no-repeat scroll 0 0 !important;
  height: 48px;
  width: 33px;
}
.ls-see-example-carousel .carousel-nav-next a::before {
  color: #939191;
  content: none;
  display: inline-block;
  font-family: FontAwesome;
  font-size: 30px;
  font-style: normal;
  font-weight: normal;
  position: relative;
}

#wrapper .carousel.ls-see-example-carousel {
  padding: 0;
  border: 2px solid #005daa !important;
}

.ls-product-landing-mobilebox-two .carousel-nav {
  margin-top: 13px;
}

.carousel.section.ls-see-example-carousel .carousel-slides {
  width: 100% !important;
}

@media only screen and (max-width: 767px) {
  .ls-mobile-carousel-athlete {
    padding: 0 15px;
  }

  .ls-mobile-carousel-athlete .carousel-nav li a,
  .ls-mobile-carousel-fungus .carousel-nav li a,
  .ls-mobile-carousel-fungus-box .carousel-nav li a,
  .ls-mobile-carousel-fungus .carousel-nav li a {
    background: url("../../assets/img/mobile-carousel-nav-arrow.png") no-repeat center center;
  }

  .ls-mobile-carousel-athlete .carousel-nav li,
  .ls-mobile-carousel-fungus .carousel-nav li {
    line-height: 1;
  }

  .ls-mobile-carousel-athlete .carousel-nav a,
  .ls-mobile-carousel-fungus .carousel-nav a {
    border: 0 solid #656363;
    color: transparent;
    display: inline-block;
    vertical-align: top;
    font-size: 0;
    height: 14px;
    width: 14px;
  }

  .ls-mobile-carousel-athlete .carousel-nav li.is-active a,
  .ls-mobile-carousel-fungus .carousel-nav li.is-active a {
    background: url("../../assets/img/mobile-carousel-nav-arrow-active.png") no-repeat center center;
  }

  #wrapper .ls-mobile-carousel-fungus .carousel-nav-prev, #wrapper .ls-mobile-carousel-fungus .carousel-nav-next,
  #wrapper .ls-mobile-carousel-athlete .carousel-nav-prev,
  #wrapper .ls-mobile-carousel-athlete .carousel-nav-next,
  #wrapper .ls-jackitch-mobile-carousel-box .carousel-nav-prev,
  #wrapper .ls-jackitch-mobile-carousel-box .carousel-nav-next {
    display: none;
  }

  .ls-jackitch-mobile-carousel-box .carousel-nav li a {
    background: url("../../assets/img/mobile-carousel-nav-arrow.png") no-repeat center center;
  }
  .ls-jackitch-mobile-carousel-box .carousel-nav li.is-active a {
    background: url("../../assets/img/mobile-carousel-nav-arrow-active.png") no-repeat center center;
  }

  #wrapper .ls-jackitch-mobile-carousel-box .carousel-nav a {
    border: 0 solid #656363;
    color: transparent;
    display: inline-block;
    font-size: 0;
    height: 14px;
    width: 13px;
  }

  .carousel.ls-mobile-carousel-bodyfungs-jackitch {
    padding: 0;
  }

  #wrapper .ls-mobile-carousel-fungus {
    padding: 15px 0;
  }

  .carousel-nav {
    margin-top: 0;
  }

  .ls-product-landing-mobilebox-two .carousel-nav li a {
    background: url("../../assets/img/mobile-carousel-nav-arrow.png") no-repeat center center;
  }
  .ls-product-landing-mobilebox-two .carousel-nav li.is-active a {
    background: url("../../assets/img/mobile-carousel-nav-arrow-active.png") no-repeat center center;
  }
  .ls-product-landing-mobilebox-two .carousel-nav a {
    border: 0 solid #656363;
    height: 15px;
    width: 15px;
  }

  .ls-mobile-carousel-athlete-box .carousel.ls-mobile-carousel-athlete {
    padding: 15px 0;
  }

  .ls-jockitch-mobile-product-carousel-box .carousel.ls-mobile-carousel-fungus {
    padding: 15px 0;
  }
  .ls-jockitch-mobile-product-carousel-box .carousel.ls-mobile-carousel-fungus .carousel-nav a {
    border: 0 solid #656363;
    height: 16px;
    width: 16px;
  }
  .ls-jockitch-mobile-product-carousel-box .carousel.ls-mobile-carousel-fungus .carousel-nav li a {
    background: url("../../assets/img/mobile-carousel-nav-arrow.png") no-repeat center center;
  }
  .ls-jockitch-mobile-product-carousel-box .carousel.ls-mobile-carousel-fungus .carousel-nav li.is-active a {
    background: url("../../assets/img/mobile-carousel-nav-arrow-active.png") no-repeat center center;
  }

  .ls-ringworm-mobile-carousel-box .carousel-nav a {
    border: 0 solid #656363;
    height: 16px;
    width: 16px;
  }
  .ls-ringworm-mobile-carousel-box .carousel-nav li a {
    background: url("../../assets/img/mobile-carousel-nav-arrow.png") no-repeat center center;
  }
  .ls-ringworm-mobile-carousel-box .carousel-nav li.is-active a {
    background: url("../../assets/img/mobile-carousel-nav-arrow-active.png") no-repeat center center;
  }

  #wrapper .ls-mobile-carousel-bodyfungs-jackitch .carousel-nav a {
    border: 0 solid #656363;
    color: transparent;
    display: inline-block;
    font-size: 0;
    height: 14px;
    width: 13px;
  }

  .ls-mobile-carousel-bodyfungs-jackitch .carousel-nav li a {
    background: url("../../assets/img/mobile-carousel-nav-arrow.png") no-repeat center center;
  }
  .ls-mobile-carousel-bodyfungs-jackitch .carousel-nav li.is-active a {
    background: url("../../assets/img/mobile-carousel-nav-arrow-active.png") no-repeat center center;
  }

  #wrapper .ls-mobile-carousel-bodyfungs-jackitch .carousel-nav-prev, #wrapper .ls-mobile-carousel-bodyfungs-jackitch .carousel-nav-next {
    display: none;
  }
  #wrapper .ls-treatprevent-mobile-product-box .carousel-nav-prev, #wrapper .ls-treatprevent-mobile-product-box .carousel-nav-next {
    display: none;
  }
  #wrapper .ls-treatprevent-mobile-product-box .carousel-nav a {
    border: 0 solid #656363;
    color: transparent;
    display: inline-block;
    font-size: 0;
    height: 14px;
    width: 13px;
  }
  #wrapper .ls-treatprevent-mobile-product-box .carousel-nav li.is-active a {
    background: #00a8ea none repeat scroll 0 0;
    border-radius: 30px;
    height: 13px;
    width: 13px;
  }
  #wrapper .ls-treatprevent-mobile-product-box .carousel-nav li a {
    background: url("../../assets/img/mobile-carousel-nav-arrow.png") no-repeat center center;
  }

  .carousel.ls-see-example-carousel {
    padding: 0;
  }

  .ls-athletefoot-parent-box .ls-mobile-carousel-bodyfungs-jackitch .carousel-nav {
    margin-top: 5px;
  }

  .carousel-nav li {
    display: inline-block;
  }
}
@media only screen and (max-width: 568px) {
  .ls-product-landing-mobilebox-one .carousel, .ls-product-landing-mobilebox-two .carousel, .ls-treatprevent-mobile-product-box .carousel {
    padding: 15px 0;
  }

  .ls-see-example-carousel .carousel-nav-next a {
    width: 33px;
    background-size: 47% !important;
  }
  .ls-see-example-carousel .carousel-nav-prev a {
    background-size: 45% !important;
  }
}
@media only screen and (max-width: 375px) {
  .ls-mobile-carousel-athlete-box .carousel {
    border: 0 solid #323131;
    padding: 15px 0;
    position: relative;
  }

  .ls-jockitch-parent-box .ls-jackitch-mobile-carousel-box .ls-mobile-carousel-bodyfungs-jackitch .carousel-nav {
    margin-top: 0;
    position: relative;
    top: 10px;
  }
}
@media only screen and (max-width: 360px) {
  .ls-mobile-carousel-athlete-box .carousel {
    padding: 15px 20px;
  }
}
.ls-see-example-carousel .carousel-nav li {
  display: inline-block !important;
}

@media only screen and (min-width: 1920px) and (max-width: 1920px) {
  .page-jock-itch.page-symptoms .overlay-container .overlay-close, .page-ringworm.page-symptoms .overlay-container .overlay-close {
    top: -5.5% !important;
    left: -13% !important;
  }

  _:-ms-fullscreen, :root .page-jock-itch.page-symptoms .overlay-container .overlay-close, _:-ms-fullscreen, :root .page-ringworm.page-symptoms .overlay-container .overlay-close {
    top: -5.5% !important;
    left: -6.6% !important;
  }
}

/*# sourceMappingURL=carousel.css.map */
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* all other colors*/
/* BUTTONS
----------------------------------*/
.coupons {
  padding: 10px;
  border: 1px solid #D5D1CE;
  position: relative;
  margin-bottom: 10px; }
  .coupons .couponsImage {
    float: left;
    width: 30%;
    margin-right: 10px; }
  .coupons .couponsDescription {
    float: left;
    width: 60%; }
  .coupons .couponsContainer .button, .coupons .couponsContainer a.lightbox {
    bottom: 10px;
    position: absolute;
    right: 25px; }

.overlay-content-inner a.couponCancel, .overlay-content-inner a.couponSubmit {
  background-color: #f36633;
  border-radius: 3px;
  color: white;
  padding: 8px 20px;
  border: 1px solid #ccc;
  cursor: pointer;
  display: inline-block; }
  .overlay-content-inner a.couponCancel:hover, .overlay-content-inner a.couponSubmit:hover {
    background-color: #939191;
    color: white; }
  .overlay-content-inner a.couponCancel:active, .overlay-content-inner a.couponSubmit:active {
    background-color: #939191;
    color: white; }
.digitalWallet .hidden {
  display: none; }
/*@import 'divider/divider-base';*/

/*# sourceMappingURL=divider.css.map */
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* all other colors*/
/* BUTTONS
----------------------------------*/
.dosageCalculator .dosageCalculatorInput {
  padding: 20px 10px 0 10px;
  border: 1px solid #D5D1CE; }
  .dosageCalculator .dosageCalculatorInput .dosageOptionGroup {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 20px; }
    .dosageCalculator .dosageCalculatorInput .dosageOptionGroup input {
      padding: 7px 0;
      border: solid 1px #e0e0e0;
      max-width: 125px; }

.dosageCalculator .dosageDatepicker {
  background: white url("../../img/calendar-icon.jpg") no-repeat scroll right center; }

.dosageCalculatorButton {
  background-color: #f36633;
  border-radius: 3px;
  color: white;
  padding: 8px 20px;
  border: 1px solid #ccc;
  cursor: pointer;
  display: inline-block; }
  .dosageCalculatorButton:hover {
    background-color: #939191;
    color: white; }
  .dosageCalculatorButton:active {
    background-color: #939191;
    color: white; }
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* all other colors*/
/* BUTTONS
----------------------------------*/
.editusername .editUserNameFormSuccess {
  display: none; }

.editusername .component-content .editUserNameFormSuccess p, .editusername .component-content .editUserNameFormFailure p {
  color: #8A0808;
  margin-bottom: 10px; }

.editUserNameFormFailure {
  display: none; }

.editUserNameForm .control-group .button {
  margin-top: 15px; }

.button {
  background-color: #f36633;
  border-radius: 3px;
  color: white;
  padding: 8px 20px;
  border: 1px solid #ccc;
  cursor: pointer;
  display: inline-block; }
  .button:hover {
    background-color: #939191;
    color: white; }
  .button:active {
    background-color: #939191;
    color: white; }
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* all other colors*/
/* BUTTONS
----------------------------------*/
.eventcalendar .searchResultDetails {
  display: none; }

.eventcalendar .eventCalendarFilter {
  border: solid 1px #D5D1CE; }
  .eventcalendar .eventCalendarFilter h4 {
    border-bottom: 1px solid #D5D1CE;
    text-align: center;
    padding-bottom: 5px;
    font-size: 1.5em;
    color: #f36633; }
  .eventcalendar .eventCalendarFilter .eventCalendarSearchSection div {
    margin-bottom: 15px;
    padding: 0 10px; }
    .eventcalendar .eventCalendarFilter .eventCalendarSearchSection div label {
      display: inline-block;
      width: 200px; }
    .eventcalendar .eventCalendarFilter .eventCalendarSearchSection div select {
      width: 200px;
      min-height: 30px; }
    .eventcalendar .eventCalendarFilter .eventCalendarSearchSection div input {
      width: 195px;
      min-height: 30px; }
  .eventcalendar .eventCalendarFilter .eventCalendarButtons .eventCalendarSubmit {
    float: right; }

.eventCalendarTemplate, .event-results-label {
  display: none; }
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* all other colors*/
/* BUTTONS
----------------------------------*/
.eventdetails ul {
  padding-left: 0; }
  .eventdetails ul li {
    list-style-type: none; }

.eventdetails .eventDetails-eventDate {
  color: #72635e; }

.eventdetails .eventDetails-speakerPhotoUrl {
  display: inline-block;
  vertical-align: top;
  margin-right: 25px; }

.eventdetails .eventDetails-speakerProfile {
  display: inline-block; }

.eventdetails .eventDetails-location, .eventdetails .eventDetails-locationName {
  background: url("../../img/location.png") no-repeat left center;
  padding: 5px 15px; }

.eventdetails .eventDetails-locale {
  background: url("../../img/locale.png") no-repeat left center;
  padding: 5px 20px; }

.eventdetails .eventDetailsInfo h2 {
  color: #72635e; }

.eventdetails .eventDetails-itineraryDayDate {
  background: #f36633; }
  .eventdetails .eventDetails-itineraryDayDate h5 {
    color: white;
    padding: 7px 10px; }

.eventdetails .eventDetails-keyDocumentsDownload a {
  background: url("../../img/Download_Icon.png") no-repeat left center;
  padding-left: 17px; }

.eventdetails .eventDetails-locationPic {
  width: 250px;
  height: 200px; }

.eventdetails .eventDetails-itineraryItemInfo p {
  display: inline-block; }

.eventdetails .eventDetails-eventDetailsSpeaker {
  margin-bottom: 15px; }

.eventdetails .eventDetailsSpeakerInfo .eventDetails-speakerProfile .eventDetails-speakerPhoto {
  float: left;
  margin: 0 15px 0 0; }

.eventdetails .eventDetailsSpeakerInfo .eventDetails-speakerProfile h4, .eventdetails .eventDetailsSpeakerInfo .eventDetails-speakerProfile p {
  padding: 10px; }

.eventdetails button.eventDetails-eventRegister-button, .eventdetails .eventDetails-eventUnRegister-button,
.eventdetails .eventDetails-eventLaunch-button, .eventdetails .eventDetails-eventNotLoggedIn a {
  background-color: #f36633;
  border: 1px solid #D5D1CE;
  border-radius: 0;
  color: white;
  cursor: pointer;
  display: inline-block;
  padding: 5px 20px;
  margin-top: 10px; }

.eventdetails .eventDetailsItineraryInfo .eventDetails-itineraryItemInfo {
  border-bottom: 1px solid #D5D1CE;
  padding: 5px 0; }

.eventdetails .eventDetailsItineraryInfo span.eventDetails-itineraryItemEndDate, .eventdetails .eventDetailsItineraryInfo span.eventDetails-itineraryItemDate {
  display: inline-block;
  width: 90px; }

.eventdetails .eventRelatedList-img-small, .eventdetails .eventRelatedList-description, .eventdetails .eventRelated-eventLive {
  display: inline-block;
  vertical-align: top; }

.eventdetails eventRelatedList-img-small {
  width: 10%; }

.eventdetails .eventRelatedList-description {
  width: 68%; }

.eventdetails .eventRelatedList-location {
  width: 15%;
  display: inline-block;
  vertical-align: top; }
  .eventdetails .eventRelatedList-location .eventDetails-eventWebinar {
    background: url("../../img/video.png") no-repeat left center;
    padding: 5px 23px; }
  .eventdetails .eventRelatedList-location .eventRelated-eventLive, .eventdetails .eventRelatedList-location .eventDetails-eventWebinar, .eventdetails .eventRelatedList-location .eventDetails-duration, .eventdetails .eventRelatedList-location .eventDetails-eventNotWebinar {
    display: none; }

.eventdetails .eventRelated-eventLive {
  width: 5%; }
  .eventdetails .eventRelated-eventLive p {
    background: #f36633;
    color: white;
    padding: 40px 10px; }
  .eventdetails .eventRelated-eventLive.hideLiveEvent {
    display: none; }
  .eventdetails .eventRelated-eventLive.showLiveEvent {
    display: inline-block; }

.eventdetails .showWebinarEvent.eventRelatedList-location .eventDetails-eventWebinar, .eventdetails .showWebinarEvent.eventRelatedList-location .eventDetails-duration {
  display: block; }

.eventdetails .eventDetails-eventRegister .eventDetails-eventRegister-button.eventDetails-button-disabled:disabled {
  background-color: #cccccc;
  color: #e0e0e0; }

.eventdetails .eventDetails-zincCode p {
  float: right; }

.eventdetails .eventDetails-category.showWebinarEvent .eventDetails-eventWebinar {
  display: block; }

.eventdetails .eventDetails-category.showEventLocation .eventDetails-eventNotWebinar {
  display: block; }

.eventdetails .eventDetails-category .eventDetails-eventWebinar {
  background: url("../../img/video.png") no-repeat left center;
  padding: 5px 25px; }

.eventdetails .eventDetails-category .eventDetails-eventNotWebinar {
  background: rgba(0, 0, 0, 0) url("../../img/location.png") no-repeat scroll left center;
  padding: 5px 15px; }

.eventdetails-itineraryDayDate {
  color: #72635e; }

.eventDetails-relatedEvents .eventDetails-duration, .eventDetails-pastRelatedEvents .eventDetails-duration {
  background: url("../../img/clock.png") no-repeat left center;
  padding: 5px 20px; }

.eventList-prescription .eventList-prescriptionurl {
  background: url("../../img/Download_Icon.png") no-repeat left center;
  padding-left: 17px; }
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* all other colors*/
/* BUTTONS
----------------------------------*/
.eventlist .eventListContent {
  border-bottom: solid 1px #e0e0e0;
  margin-bottom: 10px; }

.eventlist .eventListContainer .eventList-img-small, .eventlist .eventListContainer .eventList-img-large, .eventlist .eventListContainer .eventList-description {
  display: inline-block;
  vertical-align: top;
  float: left; }

.eventlist .eventListContainer .eventList-img-small img {
  width: 100px;
  height: 100px; }

.eventlist .eventListContainer .eventList-description {
  padding: 0 15px;
  width: 60%; }
  .eventlist .eventListContainer .eventList-description p {
    margin: 0 0 10px 0; }

.eventlist .eventListContainer .eventList-webinarLink, .eventlist .eventListContainer .eventList-location, .eventlist .eventListContainer .eventList-button {
  display: inline-block;
  vertical-align: middle;
  padding: 0 15px; }

.eventlist .eventListContainer .event-list-live_event {
  vertical-align: middle;
  padding: 30px 15px;
  float: right;
  background: #f36633;
  color: white;
  display: none; }

.eventlist .eventListContainer ul li {
  list-style-type: none;
  position: relative; }
  .eventlist .eventListContainer ul li.live {
    background: #e0e0e0; }

.eventlist .eventListContainer .eventList-webinarLink span.eventList-duration {
  background: url("../../img/clock.png") no-repeat left center;
  padding: 5px 20px; }

.eventlist .eventListContainer .eventList-webinarLink span.eventList-webinar-icon {
  background: url("../../img/webinar_icon.png") no-repeat left center;
  padding-left: 70px;
  display: block;
  margin-bottom: 7px;
  width: 60px;
  height: 11px; }

.eventlist .eventListContainer .eventList-location span.eventList-location {
  background: url("../../img/location.png") no-repeat left center;
  padding-left: 15px; }

.eventlist .eventListContainer .eventList-location .eventList-eventWebinar {
  background: url("../../img/video.png") no-repeat left center;
  padding: 5px 23px; }

.eventlist .eventListContainer .eventList-location .eventList-duration {
  background: url("../../img/clock.png") no-repeat left center;
  padding: 5px 20px; }

.eventlist li.live .event-list-live_event {
  display: inline-block; }

.eventlist .eventList-category {
  margin-top: 10px; }

.eventlist .eventListContainer .loading {
  padding: 50px;
  text-align: center; }

.eventlist .eventList-zincCode p {
  float: right; }

.eventlist .eventList-eventLive.showLiveEvent {
  display: inline-block; }

.eventlist .eventList-eventLive.hideEvent {
  display: none; }

.eventlist .eventList-eventLive p {
  background: #f36633;
  color: white;
  padding: 40px 10px; }

.eventList-availableOnline {
  position: absolute;
  bottom: 15px;
  background: #605e5e;
  color: white; }
  .eventList-availableOnline p {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    padding-left: 5px;
    padding-right: 6px; }

.event-filter-container .event-filter-button {
  margin-top: 15px; }
  .event-filter-container .event-filter-button .event-filter-submit {
    background-color: #f36633;
    border: 1px solid #D5D1CE;
    border-radius: 0;
    color: white;
    cursor: pointer;
    display: inline-block;
    padding: 5px 20px; }

.event-filter-date .searchFilter-start-date, .event-filter-date .searchFilter-end-date {
  display: inline-block; }

.event-filter-taggroup .searchFilter-control {
  background: none repeat scroll 0 0 #f5f5f5;
  border-bottom: 1px solid #D5D1CE;
  padding: 7px 5px; }

.event-filter-format .searchFilter-control {
  background: none repeat scroll 0 0 #f5f5f5;
  border-bottom: 1px solid #D5D1CE;
  padding: 7px 5px; }

.event-filter-format, .event-filter-date, .event-filter-button {
  display: none; }

.eventList-eventNotWebinar, .eventList-duration, .eventList-eventWebinar {
  display: none; }

.showWebinarEvent .eventList-eventWebinar, .showWebinarEvent .eventList-duration {
  display: block; }

.showEventLocation .eventList-eventNotWebinar {
  display: block; }

/* Tablet View Start */
@media only screen and (min-width: 768px) and (max-width: 989px) {
  .eventlist .eventListContainer .eventList-description {
    width: 95%; } }

/* Mobile View Start */
@media only screen and (max-width: 767px) {
  .eventlist .eventListContainer .eventList-img {
    display: block;
    text-align: center; } }
/*@import 'fileList/fileList-base';*/

/*# sourceMappingURL=fileList.css.map */
/*@import 'flash/flash-base';*/

/*# sourceMappingURL=flash.css.map */
/*@import 'form/form-base';*/

/*# sourceMappingURL=form.css.map */
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* all other colors*/
/* BUTTONS
----------------------------------*/
.hidden-password-field {
  display: none; }

.gigya-screen .default-submit-button input[type=submit] {
  background-color: #f36633; }
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* all other colors*/
/* BUTTONS
----------------------------------*/
.hospitalSearch {
  display: none; }
  .hospitalSearch .hospitalSearch-province ul li {
    list-style-type: none;
    display: inline-block; }
    .hospitalSearch .hospitalSearch-province ul li button {
      background-color: #f36633;
      border-radius: 3px;
      color: white;
      padding: 8px 20px;
      border: 1px solid #ccc;
      cursor: pointer;
      display: inline-block; }
      .hospitalSearch .hospitalSearch-province ul li button:hover {
        background-color: #939191;
        color: white; }
      .hospitalSearch .hospitalSearch-province ul li button:active {
        background-color: #939191;
        color: white; }
    .hospitalSearch .hospitalSearch-province ul li button.active {
      background-color: #115A64; }
  .hospitalSearch button.hospitalSearch-submit {
    background-color: #f36633;
    border-radius: 3px;
    color: white;
    padding: 8px 20px;
    border: 1px solid #ccc;
    cursor: pointer;
    display: inline-block; }
    .hospitalSearch button.hospitalSearch-submit:hover {
      background-color: #939191;
      color: white; }
    .hospitalSearch button.hospitalSearch-submit:active {
      background-color: #939191;
      color: white; }
  .hospitalSearch .hospitalSearch-type label {
    margin-right: 20px;
    vertical-align: middle; }
  .hospitalSearch .hospitalSearch-result-list {
    margin-top: 10px; }
    .hospitalSearch .hospitalSearch-result-list ul li {
      list-style-type: none;
      display: inline-block;
      margin-right: 20px;
      vertical-align: top; }
      .hospitalSearch .hospitalSearch-result-list ul li p {
        margin: 2px 0; }
  .hospitalSearch .hospitalSearch-pagination {
    cursor: default;
    margin-bottom: 10px;
    margin-top: 10px;
    overflow: hidden;
    padding: 0;
    text-align: center; }
  .hospitalSearch .hospitalSearch-pagination-item {
    cursor: default;
    display: inline-block;
    margin: 1px;
    border: solid 1px #e0e0e0;
    padding: 5px 10px; }
  .hospitalSearch .hospitalSearch-results {
    display: none; }
    .hospitalSearch .hospitalSearch-results .hospitalSearch-input {
      padding: 4px 5px;
      width: 200px; }
  .hospitalSearch .hospitalSearch-city {
    display: none; }

.hospitalSearch-city ul li {
  list-style-type: none;
  display: inline-block; }
  .hospitalSearch-city ul li button {
    background-color: #f36633;
    border-radius: 3px;
    color: white;
    padding: 8px 20px;
    border: 1px solid #ccc;
    cursor: pointer;
    display: inline-block;
    display: none; }
    .hospitalSearch-city ul li button:hover {
      background-color: #939191;
      color: white; }
    .hospitalSearch-city ul li button:active {
      background-color: #939191;
      color: white; }
  .hospitalSearch-city ul li button.active {
    background-color: #115A64; }
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
.html .hints a {
  float: left;
  margin-right: 5px;
}

@media only screen and (min-width: 320px) and (max-width: 414px) {
  .addthis_toolbox a.at300b {
    float: none;
  }
}
@media only screen and (min-width: 560px) and (max-width: 760px) {
  .addthis_toolbox a.at300b {
    float: none;
  }
}

/*# sourceMappingURL=html.css.map */
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
.image .right {
  text-align: right;
}

.image .left {
  text-align: left;
}

.image .middle {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .image .component-content {
    text-align: center;
  }
}
.page-athletes-foot-spray .ls-product-spray-parent-box .ls-filmforming-banner-image figure figcaption {
  top: 46px;
  left: 20px;
}

/* Top navigation header search  */
.lamisil-header-search-image figure {
  display: inline-flex;
  float: right;
  height: 40px;
  left: 30px;
  position: relative;
}
.lamisil-header-search-image figure a {
  height: 22px;
  padding-right: 42px;
  position: absolute;
  top: 18px;
}
.lamisil-header-search-image figcaption {
  border-right: 2px solid #80d7f7;
  height: 25px;
  margin-top: 12px;
  padding-left: 20px;
}
.lamisil-header-search-image figcaption p {
  color: #fff;
  font-size: 12px;
  line-height: 28px;
  margin: 0;
  padding-right: 11px;
}

#wrapper .ls-home-fungus-box .grid_3 {
  width: 25%;
}
#wrapper .ls-home-fungus-image {
  margin: 0;
}
#wrapper .lamisil-logo {
  margin-bottom: -3px;
  position: relative;
  top: -4px;
}
#wrapper .lamisil-gsk-logo {
  padding-top: 15px;
  margin-left: 0;
}

.lamisil-logo .component-content.middle {
  text-align: left;
}

.lamisil-gsk-logo .component-content.middle {
  text-align: right;
}

.ls-home-hero-image {
  margin-bottom: 0;
  position: relative;
}
.ls-home-hero-image figcaption {
  bottom: 6px;
  position: absolute;
  right: 215px;
}

.ls-home-hero-image figcaption p {
  font-size: 12px;
  line-height: 15px;
  opacity: 0.7;
}

.ls-home-fungus-image figcaption a {
  background-color: #00aeef;
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  font-size: 1.172vw;
  line-height: 1.25;
  margin-top: 15px;
  width: 203px;
  padding: 13px 0;
}
.ls-home-fungus-image figcaption a:hover, .ls-home-fungus-image figcaption a:focus {
  background-color: #7fd6f7;
}

#wrapper .ls-home-fungus-image p {
  color: #878787;
  font-size: 1.172vw;
  line-height: 1.5;
  margin-top: 31px;
  padding-left: 0;
  padding-right: 0;
}

.ls-home-product-image h3 {
  color: #878787;
  font-size: 1.318vw;
  line-height: 1;
  font-weight: bold;
}
.ls-home-product-image p a {
  background-color: #00aeef;
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  font-size: 1.172vw;
  line-height: 1.25;
  margin-top: 15px;
  padding: 15px 21px;
}

#wrapper .ls-home-video-image {
  margin-bottom: 5px;
}

.ls-home-product-image a:hover, .ls-home-product-image a:focus {
  background-color: #7fd6f7;
}

#wrapper .ls-mobile-home-hero-image {
  display: none;
  margin: 0;
}

.lamisil-header-search-image {
  left: 80px;
  margin-bottom: 0;
  position: relative;
  top: -8px;
  z-index: 99;
}

#wrapper .ls-home-fungus-image figure figcaption {
  margin-top: 36px;
}

.ls-home-product-image {
  margin-top: 28px;
}

.ls-athletefoot-parent-box .ls-home-product-image {
  margin-top: 22px;
}

.ls-home-product-image figure figcaption {
  margin-top: -20px;
  padding-left: 25px;
  padding-right: 25px;
}

.ls-home-product-image figure figcaption p:first-child {
  color: #878787;
  font-size: 12px;
  line-height: 20px;
}

.ls-athletefoot-parent-box .ls-home-product-image figure figcaption p:first-child {
  color: #878787;
  font-size: 12px;
  line-height: 20px;
  margin-top: 18px;
  margin-bottom: 19px;
}

.ls-home-product-image figure figcaption h4 {
  color: #878787;
  font-size: 18px;
  font-weight: bold;
  line-height: 26px;
  margin-top: 40px;
  padding-left: 7%;
  padding-right: 7%;
  margin-bottom: -7px;
}

.ls-home-product-image figure figcaption p {
  color: #878787;
  font-size: 16px;
  line-height: 26px;
  padding-left: 4%;
  padding-right: 4%;
}

.ls-home-product-image figure figcaption p:last-child {
  margin-bottom: 20px;
  margin-top: 20px;
}

.ls-athletefoot-parent-box .ls-home-product-image figure figcaption p:last-child {
  margin-bottom: 20px;
  margin-top: 30px;
}

.ls-product-landing-hero-image {
  margin-top: 0;
  position: relative;
}
.ls-product-landing-hero-image figcaption {
  bottom: 12px;
  position: absolute;
  right: 3%;
}
.ls-product-landing-hero-image figcaption p {
  color: #878787;
  font-size: 12px;
  line-height: 18px;
}

.ls-athletefoot-causes-image p {
  color: #fff;
  font-size: 1.758vw;
  line-height: 1.431;
}

.ls-athletefoot-products-image p a {
  background-color: #00aeef;
  border-radius: 30px;
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  padding: 14px 35px;
  text-decoration: none;
}

#wrapper .ls-athletefoot-parent-box .ls-athletefoot-products-image:last-child figcaption p a {
  padding: 14px 45px;
}

.ls-athletefoot-products-image {
  border: 2px solid #d9d9d9;
  border-radius: 3px;
}
.ls-athletefoot-products-image p a:hover {
  background: #7fd6f7 none repeat scroll 0 0;
  color: #fff;
}
.ls-athletefoot-products-image:first-child {
  background: white;
  background: radial-gradient(ellipse at center, #ffffff 0%, #e1e1e1 100%);
  border: 2px solid #d9d9d9;
  border-radius: 3px;
}

#wrapper .ls-athletefoot-products-image figcaption {
  background-color: #ffffff;
  display: inline-block;
  width: 100%;
}
#wrapper .ls-filmforming-foot-image {
  margin-bottom: -5px;
  width: 50.8%;
}
#wrapper .ls-product-samples-image {
  border: 2px solid #fff;
  border-radius: 4px;
  min-height: 580px;
  padding-top: 50px;
  position: relative;
}
#wrapper .ls-product-samples-image:hover, #wrapper .ls-product-samples-image:focus {
  border: 2px solid #00aeef;
  border-radius: 4px;
}
#wrapper .ls-product-samples-image:hover .ls-product-samples-image p:last-child {
  display: block !important;
}

.ls-product-samples-image p:first-child {
  color: #878787;
  font-size: 12px;
  line-height: 21px;
  padding-bottom: 0;
}

.ls-product-samples-image p:first-child {
  color: #878787;
  font-size: 12px;
  line-height: 21px;
  padding-bottom: 0;
}

.ls-ringworm-treatment-main-box .ls-product-samples-image p:first-child {
  padding-bottom: 14px;
}

.ls-product-samples-image h4 {
  color: #878787;
  font-size: 18px;
  font-weight: bold;
}

.ls-product-samples-image p {
  color: #878787;
  font-size: 16px;
  line-height: 22px;
  padding-bottom: 90px;
  padding-left: 30px;
  padding-right: 30px;
}

.ls-product-samples-image p a {
  background: #00a8ea none repeat scroll 0 0;
  border-radius: 30px;
  bottom: 30px;
  color: #fff;
  display: none;
  margin: 0 auto 0 0;
  padding: 11px 20px;
}
.ls-product-samples-image p a:hover, .ls-product-samples-image p a:focus {
  background-color: #7fd6f7;
}

#wrapper .ls-product-cream-parent-box .ls-filmforming-banner-image {
  margin-left: 0;
  padding-right: 0;
  padding-top: 3%;
  position: relative;
  right: 5.4%;
  top: 14px;
}

#wrapper .ls-product-filmforming-parent-box .ls-filmforming-banner-image {
  left: 10px;
  position: relative;
}
#wrapper .ls-filmforming-banner-image {
  margin-bottom: 0;
  margin-left: 0;
  padding-right: 8%;
  padding-top: 3%;
  position: relative;
  top: 9px;
}

.ls-product-bodyfungus-cream-parent-box .ls-filmforming-banner-image figure figcaption {
  margin-top: 0;
  position: relative;
  top: 0;
}

.ls-filmforming-banner-image figure figcaption {
  margin-top: -26px;
  position: relative;
  top: 14px;
}

#wrapper .ls-product-bodyfungus-cream-parent-box .ls-filmforming-banner-image {
  padding-right: 0;
}

.ls-filmforming-banner-image figure figcaption p {
  color: #878787;
  font-size: 12px;
  line-height: 17px;
  margin: 0;
}

#wrapper .ls-product-cream-parent-box .ls-filmforming-banner-image {
  left: -12%;
  padding-top: 18%;
  width: 34%;
}
#wrapper .ls-product-gel-parent-box .ls-filmforming-banner-image {
  padding-top: 17%;
}
#wrapper .ls-product-spray-parent-box .ls-filmforming-banner-image {
  padding-top: 15%;
}
#wrapper .ls-product-gel-parent-box .ls-filmforming-banner-image {
  left: -20px;
  padding-right: 0;
  padding-top: 11%;
  width: 41%;
}
#wrapper .ls-product-spray-parent-box .ls-filmforming-banner-image {
  padding-right: 0;
}
#wrapper .ls-product-bodyfungus-cream-parent-box .ls-filmforming-banner-image {
  padding-top: 8%;
}
#wrapper .ls-product-bodyfungus-spray-parent-box .ls-filmforming-banner-image {
  padding-top: 16%;
}

.ls-athletefoot-causes-image {
  margin-top: 18px;
  margin-bottom: 0;
  padding-left: 25px;
  padding-right: 25px;
}

.ls-athletefoot-causes-image p {
  text-align: left;
}
.ls-athletefoot-causes-image h4 {
  color: #fff;
  font-size: 1.758vw;
  font-weight: bold;
  line-height: 1.431;
  margin-bottom: 40px;
  padding-right: 3px;
  text-align: left;
}

#wrapper .ls-treatprevent-treatment-image {
  margin-bottom: -6px;
}
#wrapper .body-fungus-parent-box-main .ls-treatprevent-treatment-image {
  margin-bottom: -6px;
  width: 51%;
}
#wrapper .ls-athletes-small-images {
  margin-bottom: 0;
}

.ls-chronicsuffer-parent-box .ls-athletefoot-causes-image {
  padding-left: 15px;
  padding-right: 15px;
}

.ls-bodyfungus-ringworm-mobile-image {
  display: none;
}

.page-body-fungus.page-jock-itch-treatment .ls-jockitch-hero-image {
  margin-bottom: -7px;
  position: relative;
  right: 50px;
}

#wrapper .ls-product-samples-image.ls-products-image {
  padding-top: 160px;
}

.ls-bodyfungus-ringworm-mobile-image {
  display: none;
}

.ls-bodyfungus-dot-functionality-ringworm-image {
  margin-bottom: 0;
}

.ls-ringworm-treatment-main-box .ls-jockitch-cure-box .ls-athletefoot-causeimg-box {
  margin-bottom: 28px;
}

#wrapper .ls-product-spray-parent-box .ls-filmforming-banner-image {
  left: -38px;
  padding-right: 0;
  position: relative;
  text-align: left;
  width: 42%;
}

.ls-athletefoot-parent-box .ls-athletefoot-products-image p a:focus {
  background-color: #7fd6f7 !important;
  border-radius: 30px;
  color: #fff;
}

.body-fungus-parent-box-main .ls-bodyfungs-dot-functionality-box .ls-bodyfungus-dot-functionality-jockitch-image img {
  margin-bottom: 0;
}

.ls-mobile-nav-where-to-buy-show {
  display: none;
}

.ls-jockitch-hero-image {
  margin-bottom: 0;
}
.ls-jockitch-hero-image img {
  display: block;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .ls-bf-ringworm-links-richtext {
    width: 68% !important;
  }

  .ls-ringworm-treatment-main-box .ls-athletefoot-causes-image h4 {
    font-size: 1.7vw;
  }

  .ls-treatprevent-parent-box .ls-treatprevent-tips-box .ls-athletefoot-causes-image h4 {
    margin-bottom: 20px;
    font-size: 15px;
  }

  #wrapper .ls-home-fungus-image p {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
  #wrapper .ls-product-samples-image.ls-products-image {
    padding-top: 129px;
  }
  #wrapper .ls-home-fungus-image p {
    font-size: 1.57vw;
    line-height: 1.5;
    padding-left: 3px;
    padding-right: 3px;
  }

  .ls-home-product-image figure figcaption {
    margin-top: -15px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .ls-home-fungus-image a {
    font-size: 13px;
    line-height: 20px;
    padding: 11px 19px;
  }

  .ls-home-product-image {
    margin-top: 14px;
  }
  .ls-home-product-image figure figcaption h4 {
    font-size: 17px;
    line-height: 20px;
    margin-top: 10px;
    padding-left: 0;
    padding-right: 0;
  }
  .ls-home-product-image figure figcaption p {
    font-size: 14px;
    line-height: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .ls-home-hero-image figcaption {
    bottom: 2px;
    position: absolute;
    right: 152px;
  }

  .lamisil-header-search-image {
    left: 4%;
  }

  .ls-home-product-image p a {
    padding: 12px 20px;
  }

  .ls-filmforming-banner-image figure figcaption {
    margin-top: 0;
    margin-bottom: 30px;
    top: 0;
  }

  .ls-product-samples-image p {
    font-size: 13px;
    line-height: 18px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .ls-product-samples-image {
    padding-top: 80px;
  }
  .ls-product-samples-image h4 {
    font-size: 16px;
    line-height: 1;
  }

  .ls-athletefoot-causes-image h4 {
    margin-bottom: 20px;
  }

  #wrapper .ls-product-samples-image {
    min-height: 550px;
    padding-top: 20px;
  }

  .ls-product-samples-image h4 {
    padding-left: 5px;
    padding-right: 5px;
  }
  .ls-product-samples-image p {
    padding-bottom: 30px;
  }

  .ls-jockitch-header-box .ls-jockitch-hero-image img {
    position: relative;
    right: 70px;
  }

  .ls-jockitch-parent-box .ls-jockitch-header-box .ls-jockitch-hero-image img, .ls-ringworm-treatment-main-box .ls-jockitch-hero-image img {
    position: relative;
    right: 0;
  }

  .ls-home-fungus-image figcaption a {
    font-size: 1.6vw;
  }
  .ls-home-fungus-image img {
    width: 80%;
  }

  .page-lamisil-once .ls-product-filmforming-parent-box .ls-filmforming-banner-image img {
    width: 71%;
  }

  #wrapper .ls-product-cream-parent-box .ls-filmforming-banner-image {
    left: -23px;
    padding-top: 18%;
    width: 34%;
  }
}
@media only screen and (min-width: 800px) and (max-width: 962px) {
  .body-fungus-parent-box-main .ls-bodyfungus-dot-functionality-richtext-two, .body-fungus-parent-box-main .ls-bodyfungus-dot-functionality-richtext-three, .body-fungus-parent-box-main .ls-bodyfungus-dot-functionality-richtext-four {
    min-height: 190px;
  }
  .body-fungus-parent-box-main .ls-bodyfungus-line-image-one {
    left: 42%;
    top: 44%;
  }
  .body-fungus-parent-box-main .ls-bodyfungus-line-image-three {
    left: 34% !important;
    top: 69% !important;
  }
  .body-fungus-parent-box-main .ls-bodyfungus-line-image-two {
    left: 60%;
    top: 56%;
  }
  .body-fungus-parent-box-main .ls-bodyfungs-dot-functionality-box .ls-bodyfungus-dot-functionality-jockitch-image img {
    margin-bottom: 0;
    min-height: 455px;
  }

  #wrapper .body-fungus-parent-box-main .ls-treatprevent-treatment-image img {
    min-height: auto;
  }
}
@media only screen and (min-width: 769px) and (max-width: 800px) {
  #wrapper .body-fungus-parent-box-main .ls-treatprevent-treatment-image {
    min-height: auto;
  }

  .body-fungus-parent-box-main .ls-bodyfungs-dot-functionality-box .ls-bodyfungus-dot-functionality-jockitch-image img {
    margin-bottom: 1px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 800px) {
  .ls-home-fungus-image figcaption a, .ls-home-product-image p a {
    font-size: 1.6vw;
  }

  #wrapper .ls-home-fungus-image p {
    font-size: 1.6vw;
  }

  .ls-home-hero-image figcaption p {
    font-size: 9px;
    line-height: 16px;
    position: relative;
  }

  .page-jock-itch-treatment .ls-jockitch-parent-box .ls-jockitch-product-box .ls-product-samples-image.prefix_4 {
    min-height: 450px !important;
  }

  #wrapper .ls-product-samples-image {
    min-height: 450px;
  }

  .ls-product-samples-image p:first-child {
    font-size: 10px;
  }

  #wrapper .ls-product-samples-image {
    min-height: 490px;
  }

  .ls-home-product-image figure figcaption p:last-child {
    margin-bottom: 10px;
    margin-top: 0;
  }

  #wrapper .ls-product-cream-parent-box .ls-filmforming-banner-image {
    padding-right: 3%;
    padding-top: 22%;
  }
  #wrapper .ls-product-cream-parent-box .ls-filmforming-banner-image figure figcaption {
    margin-top: -4px;
  }
  #wrapper .ls-product-gel-parent-box .ls-filmforming-banner-image {
    padding-right: 1%;
    padding-top: 17%;
  }
  #wrapper .ls-product-samples-image.ls-products-image {
    padding-top: 106px;
  }

  .page-lamisil-once .ls-product-filmforming-parent-box .ls-filmforming-banner-image img {
    position: relative;
    top: 30px;
    width: 87%;
  }

  .ls-home-fungus-image figcaption a {
    width: 160px;
  }

  #wrapper .ls-ringworm-treatment-main-box .ls-product-samples-image {
    min-height: 380px;
  }
  #wrapper .ls-product-spray-parent-box .ls-filmforming-banner-image {
    left: 7px;
  }

  .ls-filmforming-banner-richtext ul {
    list-style-type: none !important;
    margin-bottom: 0 !important;
    padding-left: 0 !important;
    text-align: left;
    margin-left: 0 !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .ls-filmforming-banner-richtext ul {
    list-style-type: none !important;
    margin-bottom: 0 !important;
    padding-left: 0 !important;
    text-align: left;
    margin-left: 0 !important;
  }

  #wrapper .carousel-slide .ls-product-samples-image:hover, #wrapper .carousel-slide .ls-product-samples-image:focus {
    border: 2px solid #fff;
    border-radius: 4px;
  }

  .lamisil-logo .component-content.middle {
    text-align: center;
  }

  .ls-bodyfungus-ringworm-mobile-image {
    display: block;
  }

  #wrapper .ls-bodyfungs-ringworm-box {
    background-image: none !important;
  }
  #wrapper .body-fungus-parent-box-main .ls-treatprevent-treatment-image {
    width: auto;
  }
  #wrapper .ls-product-gel-parent-box .ls-filmforming-banner-image {
    left: 0;
    padding-right: 0;
    padding-top: 17%;
    width: auto;
  }
  #wrapper .lamisil-logo {
    margin: 0 auto;
    position: absolute;
    text-align: center;
    top: 0;
    width: 90%;
    z-index: 999;
  }
  #wrapper .lamisil-gsk-logo {
    margin-left: 0;
    padding-top: 15px;
    position: absolute;
    padding-right: 0;
    right: 20px;
    top: 7px;
    width: 20%;
  }
  #wrapper .ls-home-hero-image {
    display: none;
  }
  #wrapper .ls-product-spray-parent-box .ls-filmforming-banner-image {
    left: 0;
    padding-right: 0;
    position: relative;
    text-align: left;
    width: auto;
  }
  #wrapper .ls-mobile-home-hero-image {
    display: block;
  }
  #wrapper .ls-filmforming-foot-image {
    margin-bottom: -10px;
    margin-top: -4px;
    width: 100%;
  }

  .ls-filmforming-banner-image figure figcaption {
    top: 0;
  }

  #wrapper .ls-mobile-carousel-athlete-box .ls-mobile-carousel-athlete li .ls-product-samples-image {
    display: block;
  }
  #wrapper .ls-product-samples-image {
    display: none;
  }
  #wrapper .ls-home-fungus-box .grid_3 {
    padding-bottom: 40px;
    width: auto;
  }
  #wrapper .ls-home-fungus-image p {
    margin-top: 0;
  }

  .lamisil-header-search-image figure figcaption {
    border-right: 1px solid red;
    height: 25px;
    margin-top: 12px;
  }
  .lamisil-header-search-image figure figcaption p {
    border-right: 1px solid red;
    height: 25px;
    margin-top: 12px;
  }

  #wrapper .ls-home-fungus-image p {
    font-size: 4.87vw;
    line-height: 1.2;
    padding-left: 50px;
    padding-right: 50px;
  }
  #wrapper .ls-home-fungus-image a {
    border-radius: 30px;
    font-size: 3.5vw;
    line-height: 1.4;
    padding: 10px 40px;
    width: auto;
  }

  .ls-mobile-home-hero-image figcaption {
    bottom: 54px;
    color: #878787;
    font-size: 10px;
    position: absolute;
    right: 59px;
  }

  .ls-filmforming-foot-image img {
    width: 100%;
  }

  .ls-mobile-carousel-athlete-image figure figcaption p {
    color: #878787;
    font-size: 18px;
    font-weight: normal;
    padding-left: 8%;
    padding-right: 8%;
    line-height: 1.5;
    margin-bottom: 46px;
    text-align: center;
  }

  .ls-mobile-carousel-athlete-image figure figcaption p:last-child {
    margin-bottom: 46px;
  }
  .ls-mobile-carousel-athlete-image figure figcaption h4 {
    color: #878787;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
  }

  .ls-mobile-carousel-athlete-image figure figcaption p:first-child {
    color: #878787;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.2;
    text-align: center;
  }
  .ls-mobile-carousel-athlete-image figure figcaption p a {
    background-color: #00aeef;
    border-radius: 30px;
    color: #fff;
    font-size: 22px;
    line-height: 1.3px;
    margin: 14px;
    padding: 16px 9%;
    position: relative;
    text-decoration: none;
    top: 0;
  }

  .la-mobile-carousel-fungus-image figcaption p a {
    background-color: #00aeef;
    border-radius: 30px;
    color: #fff;
    font-size: 22px;
    line-height: 1.3px;
    margin: 14px;
    padding: 16px 10%;
    position: relative;
    text-decoration: none;
    top: 10px;
  }
  .la-mobile-carousel-fungus-image figure figcaption p {
    color: #878787;
    font-size: 22px;
    font-weight: normal;
    line-height: 1.2;
    text-align: center;
  }
  .la-mobile-carousel-fungus-image figure figcaption p:first-child {
    color: #878787;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.2;
    text-align: center;
  }
  .la-mobile-carousel-fungus-image figure figcaption h4 {
    color: #878787;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
  }

  #wrapper .ls-mobile-home-hero-image {
    display: block;
    margin-top: 120px;
  }

  .ls-filmforming-banner-image figure figcaption p {
    display: inline;
    position: relative;
    top: 18px;
  }

  #wrapper .ls-jockitch-hero-image, .ls-product-landing-hero-image figure {
    display: none;
  }

  #wrapper .ls-product-cream-parent-box .ls-filmforming-banner-image {
    left: 0;
    width: 100%;
    padding-top: 3%;
  }
  #wrapper .ls-product-gel-parent-box .ls-filmforming-banner-image {
    padding-top: 2%;
  }
  #wrapper .ls-product-spray-parent-box .ls-filmforming-banner-image {
    padding-top: 3%;
  }
  #wrapper .ls-product-bodyfungus-cream-parent-box .ls-filmforming-banner-image {
    padding-top: 2%;
  }
  #wrapper .ls-product-bodyfungus-spray-parent-box .ls-filmforming-banner-image {
    padding-top: 0;
  }
  #wrapper .ls-treatprevent-hero-image {
    display: none;
  }
  #wrapper .ls-treatprevent-mobile-product-box .ls-product-samples-image {
    display: block;
    border: 0 solid #fff;
    border-radius: 0;
    min-height: auto;
    padding-top: 0;
    position: relative;
  }
  #wrapper .ls-treatprevent-mobile-product-box .ls-product-samples-image p {
    padding: 0;
  }
  #wrapper .ls-treatprevent-mobile-product-box .ls-product-samples-image p a {
    padding: 13px 45px;
  }
  #wrapper .ls-treatprevent-mobile-product-box .ls-product-samples-image p:last-child {
    bottom: 0;
    position: relative;
    width: 100%;
  }
  #wrapper .ls-treatprevent-mobile-product-box .ls-product-samples-image:hover, #wrapper .ls-treatprevent-mobile-product-box .ls-product-samples-image:focus {
    border: 0 solid #00aeef;
    border-radius: 0;
  }
  #wrapper .ls-treatprevent-mobile-product-box .ls-product-samples-image p a {
    display: inline-block !important;
  }

  .ls-product-samples-image p {
    padding-bottom: 0;
  }

  #wrapper .ls-product-samples-image {
    min-height: auto;
  }

  .la-mobile-carousel-fungus-image figure figcaption p:nth-child(4) {
    line-height: 4;
  }
  .la-mobile-carousel-fungus-image figure figcaption p:nth-child(4) a {
    line-height: 3;
  }
}
@media only screen and (max-width: 667px) {
  .ls-athletefoot-products-image:first-child .component-content {
    min-height: 567px;
  }
  .ls-athletefoot-products-image .component-content {
    min-height: 424px;
  }

  #wrapper .ls-athletefoot-products-image:first-child figcaption {
    min-height: 192px;
  }
  #wrapper .ls-athletefoot-products-image figcaption {
    min-height: 50px;
  }
  #wrapper .ls-athletefoot-products-image:first-child figcaption p:first-child {
    margin-top: 10px;
  }
  #wrapper .ls-athletefoot-products-image:first-child figcaption p:nth-child(3) {
    margin-top: 50px;
  }
  #wrapper .ls-athletefoot-products-image:first-child figcaption p:nth-child(3) a {
    padding: 18px 80px;
  }

  .ls-athletefoot-parent-box .ls-athletefoot-products-image:nth-child(2) .component-content, .ls-athletefoot-parent-box .ls-athletefoot-products-image:nth-child(3) .component-content {
    min-height: 580px;
  }
  .ls-athletefoot-parent-box .ls-athletefoot-products-image:nth-child(2) figcaption p:nth-child(2), .ls-athletefoot-parent-box .ls-athletefoot-products-image:nth-child(3) figcaption p:nth-child(2) {
    margin-top: 30px;
  }
  .ls-athletefoot-parent-box .ls-athletefoot-products-image:nth-child(2) figcaption p:nth-child(2) a, .ls-athletefoot-parent-box .ls-athletefoot-products-image:nth-child(3) figcaption p:nth-child(2) a {
    padding: 18px 60px;
  }
}
@media only screen and (max-width: 640px) {
  #wrapper .ls-athletefoot-products-image:first-child figcaption {
    min-height: 160px;
  }

  .ls-mobile-home-hero-image figcaption {
    bottom: 45px;
  }

  #wrapper .ls-athletefoot-products-image figcaption {
    min-height: 78px;
  }

  .ls-athletefoot-parent-box .ls-athletefoot-products-image:first-child .component-content, .ls-athletefoot-parent-box .ls-athletefoot-products-image:nth-child(2) .component-content, .ls-athletefoot-parent-box .ls-athletefoot-products-image:nth-child(3) .component-content {
    min-height: auto;
  }
}
@media only screen and (max-width: 568px) {
  #wrapper .ls-home-fungus-image p {
    padding-left: 50px;
    padding-right: 50px;
  }
  #wrapper .ls-home-fungus-image a {
    font-size: 3vw;
    padding: 15px 40px;
  }

  .ls-athletefoot-products-image:first-child .component-content {
    min-height: 470px;
  }
  .ls-athletefoot-products-image .component-content {
    min-height: 424px;
  }

  #wrapper .ls-athletefoot-products-image:first-child figcaption {
    min-height: 140px;
  }
  #wrapper .ls-athletefoot-products-image figcaption {
    min-height: 48px;
  }

  .ls-mobile-home-hero-image figcaption {
    bottom: 38px;
    right: 45px;
  }

  #wrapper .ls-athletefoot-products-image:first-child figcaption p:first-child {
    margin-top: 10px;
  }
  #wrapper .ls-athletefoot-products-image:first-child figcaption p:nth-child(3) {
    margin-top: 50px;
  }
  #wrapper .ls-athletefoot-products-image:first-child figcaption p:nth-child(3) a {
    padding: 14px 60px;
  }

  .ls-athletefoot-parent-box .ls-athletefoot-products-image:nth-child(2) .component-content, .ls-athletefoot-parent-box .ls-athletefoot-products-image:nth-child(3) .component-content {
    min-height: 510px;
  }
  .ls-athletefoot-parent-box .ls-athletefoot-products-image:nth-child(2) figcaption p:nth-child(2), .ls-athletefoot-parent-box .ls-athletefoot-products-image:nth-child(3) figcaption p:nth-child(2) {
    margin-top: 30px;
  }
  .ls-athletefoot-parent-box .ls-athletefoot-products-image:nth-child(2) figcaption p:nth-child(2) a {
    padding: 14px 50px;
  }
  .ls-athletefoot-parent-box .ls-athletefoot-products-image:nth-child(3) figcaption p:nth-child(2) a {
    padding: 14px 60px;
  }
}
@media only screen and (max-width: 480px) {
  #wrapper .ls-home-fungus-image p {
    font-size: 24px;
    line-height: 29px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .page-lamisil-once .ls-product-filmforming-parent-box .ls-filmforming-banner-image img {
    width: 32%;
  }

  .ls-product-filmforming-parent-box .ls-filmforming-banner-image img {
    width: 80%;
  }

  #wrapper .ls-home-fungus-image a {
    font-size: 3.5vw;
  }

  .ls-mobile-home-hero-image figcaption {
    bottom: 30px;
    right: 27px;
  }

  .la-mobile-carousel-fungus-image figure figcaption p:nth-child(4) {
    line-height: 4;
  }
  .la-mobile-carousel-fungus-image figure figcaption p:nth-child(4) a {
    line-height: 3;
  }
}
@media only screen and (max-width: 375px) {
  #wrapper .ls-home-fungus-image p {
    font-size: 19px;
    line-height: 25px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .ls-filmforming-banner-image figure figcaption {
    top: 0;
  }

  .ls-home-fungus-image a {
    font-size: 15px;
    line-height: 24px;
    padding: 12px 29px;
  }

  .ls-mobile-carousel-athlete-image figure figcaption p {
    font-size: 16px;
    line-height: 1.2;
  }
  .ls-mobile-carousel-athlete-image figure figcaption p a {
    font-size: 16px;
    line-height: 1.2px;
    padding: 10px 22px;
  }

  .la-mobile-carousel-fungus-image figure figcaption p {
    font-size: 15px;
    line-height: 1;
    padding-left: 10%;
    padding-right: 10%;
  }
  .la-mobile-carousel-fungus-image figcaption p a {
    font-size: 15px;
    line-height: 2px;
    padding: 13px 26px;
  }

  #wrapper .ls-home-fungus-image a {
    font-size: 4.5vw;
    line-height: 1.4;
  }

  .ls-mobile-carousel-athlete-image figure figcaption h4 {
    font-size: 18px;
  }

  #wrapper .ls-product-gel-parent-box .ls-filmforming-banner-image {
    padding-top: 0;
  }
  #wrapper .ls-home-fungus-image figure figcaption {
    margin-top: 25px;
  }
  #wrapper .ls-athletefoot-products-image:first-child figcaption {
    min-height: 165px;
  }

  #wrapper .ls-athletefoot-products-image figcaption {
    min-height: 165px;
  }

  .ls-athletefoot-products-image .component-content {
    min-height: 342px;
  }
  .ls-athletefoot-products-image:first-child .component-content {
    min-height: 390px;
  }

  .ls-mobile-home-hero-image figcaption {
    font-size: 7px;
    bottom: 22px;
    right: 12px;
  }

  #wrapper .ls-home-fungus-box {
    padding-bottom: 0;
  }
  #wrapper .ls-athletefoot-products-image:first-child figcaption p:nth-child(3) a {
    padding: 14px 50px;
  }

  .ls-athletefoot-parent-box .ls-athletefoot-products-image:nth-child(2) figcaption p:nth-child(2) a {
    padding: 14px 45px;
  }
  .ls-athletefoot-parent-box .ls-athletefoot-products-image:nth-child(3) figcaption p:nth-child(2) a {
    padding: 14px 50px;
  }

  #wrapper .ls-athletefoot-products-image:first-child figcaption p:nth-child(3) {
    margin-top: 30px;
  }

  .ls-athletefoot-parent-box .ls-athletefoot-products-image:nth-child(2) .component-content, .ls-athletefoot-parent-box .ls-athletefoot-products-image:nth-child(3) .component-content {
    min-height: 380px;
  }

  #wrapper .ls-athletefoot-products-image figcaption {
    min-height: 125px;
  }
  #wrapper .ls-athletefoot-products-image:nth-child(2) figcaption {
    min-height: 120px;
  }
  #wrapper .ls-athletefoot-products-image:nth-child(3) figcaption {
    min-height: 100px;
  }
}
@media only screen and (max-width: 360px) {
  #wrapper .ls-home-fungus-image a {
    padding: 12px 40px;
  }
  #wrapper .ls-home-fungus-image p {
    font-size: 18px;
    line-height: 20px;
  }

  .ls-mobile-carousel-athlete-image figure figcaption h4, .la-mobile-carousel-fungus-image figure figcaption h4 {
    font-size: 6vw;
    line-height: 1.4;
  }

  .ls-mobile-carousel-athlete-image figure figcaption p {
    font-size: 14px;
    line-height: 1.4;
  }

  .lamisil-logo img {
    left: 5px;
    position: relative;
    top: 9px;
    width: 46%;
  }

  .ls-mobile-carousel-athlete-image figure figcaption h4, .la-mobile-carousel-fungus-image figure figcaption h4 {
    font-size: 4.5vw;
  }

  #wrapper .ls-treatprevent-mobile-product-box .ls-product-samples-image p {
    font-size: 13px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 320px) {
  .ls-athletefoot-parent-box .ls-athletefoot-products-image:first-child .component-content, .ls-athletefoot-parent-box .ls-athletefoot-products-image .component-content {
    min-height: 333px;
  }

  #wrapper .ls-athletefoot-products-image:first-child figcaption {
    min-height: 164px;
    position: relative;
  }
  #wrapper .ls-athletefoot-products-image:nth-child(2) figcaption, #wrapper .ls-athletefoot-products-image:nth-child(3) figcaption {
    max-height: 80px;
    min-height: 80px !important;
  }
  #wrapper .ls-home-fungus-image a {
    padding: 11px 30px;
  }

  .ls-athletefoot-parent-box .ls-athletefoot-products-image p a {
    padding: 11px 36px;
  }
  .ls-athletefoot-parent-box .ls-athletefoot-products-image:nth-child(3) p a {
    padding: 11px 46px;
  }
  .ls-athletefoot-parent-box .ls-athletefoot-products-image:nth-child(3) .component-content {
    min-height: 333px;
  }
  .ls-athletefoot-parent-box .ls-athletefoot-products-image:nth-child(2) figcaption p:nth-child(2) a {
    padding: 14px 25px;
    margin-top: 330px;
  }
  .ls-athletefoot-parent-box .ls-athletefoot-products-image:nth-child(3) figcaption p:nth-child(2) a {
    padding: 14px 35px;
  }
  .ls-athletefoot-parent-box .ls-athletefoot-products-image:nth-child(2) .component-content, .ls-athletefoot-parent-box .ls-athletefoot-products-image:nth-child(3) .component-content {
    min-height: 320px;
  }

  #wrapper .ls-athletefoot-products-image:nth-child(2) figcaption {
    min-height: 80px;
    position: relative;
  }
  #wrapper .ls-athletefoot-products-image:first-child figcaption p:nth-child(3) {
    margin-top: 130px;
    position: absolute;
    width: 100%;
    padding-left: 0;
  }
}
@media all and (min-width: 1079px) {
  .ls-bodyfungs-ringworm-richtext ul li {
    line-height: 28px !important;
  }

  .ls-ringworm-line-image-two {
    top: 48% !important;
  }

  .ls-ringworm-line-image-three {
    left: 37%;
  }

  .body-fungus-parent-box-main .ls-bodyfungs-ringworm-symptoms-box .ls-bodyfungs-jackitch-symptoms-richtext h4:nth-child(5) {
    line-height: 19px !important;
  }
  .body-fungus-parent-box-main .ls-bodyfungs-ringworm-richtext p:nth-child(7) a {
    padding: 5px 30px !important;
    margin-bottom: 20px;
  }

  .lamisil-header-search-image {
    left: 30px !important;
  }

  .box.section.ls-bodyfungs-header-box.grid_12.component.first.odd {
    background-size: 50% 100% !important;
  }

  .ls-treatprevent-treatment-image img, .ls-bodyfungus-dot-functionality-ringworm-image img {
    height: 100% !important;
  }

  #wrapper .ls-athletefoot-causeimg-box {
    width: 29% !important;
  }

  .ls-bodyfungus-openicon-image-two, .ls-bodyfungus-closeicon-image-two {
    left: 70%;
    top: 55%;
  }

  .ls-bodyfungus-line-image-two {
    top: 48%;
  }

  .ls-symptoms-parent-box .ls-symptoms-dot-functionality-image img {
    min-height: 455px;
  }
}
@media screen and (min-width: 1240px) {
  #wrapper .body-fungus-parent-box-main .ls-treatprevent-treatment-image {
    min-height: auto;
  }
  #wrapper .body-fungus-parent-box-main .ls-treatprevent-treatment-image img {
    height: auto;
    position: relative;
    right: 6px;
  }

  .ls-product-filmforming-parent-box .ls-product-spray-parent-box .ls-filmforming-banner-image figure figcaption {
    top: 90px;
    left: 95px;
  }

  .ls-product-spray-parent-box .ls-filmforming-banner-image figure figcaption {
    top: 88px;
    left: 74px;
  }
}
@media screen and (min-width: 1366px) {
  #wrapper .ls-home-fungus-image p {
    padding-left: 38px !important;
    padding-right: 38px !important;
  }
}
@media screen and (min-width: 1300px) {
  #wrapper .ls-home-fungus-image p {
    font-size: 16px;
    line-height: 24px;
    padding-left: 40px;
    padding-right: 39px;
  }

  .ls-home-fungus-image figcaption a {
    font-size: 16px;
    line-height: 20px;
  }

  .ls-home-product-image p a {
    font-size: 16px;
    line-height: 16px;
  }

  .ls-athletefoot-products-image img {
    margin-bottom: 0;
  }

  .ls-athletefoot-causes-image h4 {
    font-size: 24px;
    line-height: 1;
    letter-spacing: 1.1px;
  }
}
.image_figcaption_white_heading {
  color: #fff !important;
}

.ls-product-pre-ul {
  margin-bottom: 20px;
}

@media screen and (min-width: 992px) {
  :lang(zh) .ls-product-landing-hero-image figcaption {
    right: 1%;
  }
}

/*# sourceMappingURL=image.css.map */
/*@import 'imageGallery/imageGallery-base';*/

/*# sourceMappingURL=imageGallery.css.map */
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* all other colors*/
/* BUTTONS
----------------------------------*/
.locationfinder input[type=text] {
  font-family: arial;
  font-size: 12px;
  border: 1px solid #D5D1CE;
  display: inline;
  float: left;
  height: 12px;
  padding: 8px;
  width: 27%; }
  @media only screen and (max-width: 767px) {
    .locationfinder input[type=text] {
      width: 60%;
      margin-bottom: 20px; } }

.locationfinder .button {
  padding: 8px;
  background-image: url(../../img/Search-icon.png);
  background-repeat: no-repeat;
  border: none;
  margin-right: 20px;
  width: 30px;
  height: 30px; }
  @media only screen and (max-width: 767px) {
    .locationfinder .button {
      margin-right: 24%;
      margin-bottom: 20px; } }

.locationfinder .locationFinder-selectOption {
  width: 7%;
  border: 1px solid #D5D1CE;
  height: 30px;
  margin-left: 10px;
  margin-right: 20px; }
  @media only screen and (max-width: 767px) {
    .locationfinder .locationFinder-selectOption {
      width: 20%;
      margin-left: 0px;
      margin-right: 15px; } }

.locationfinder .locationFinder-selectOption1 {
  height: 30px;
  margin-left: 15px;
  width: 15%; }
  @media only screen and (max-width: 767px) {
    .locationfinder .locationFinder-selectOption1 {
      width: 40%;
      margin-left: 0px; } }

.locationfinder .locationFinder-loadMore .loadMore {
  background-color: #f36633;
  border-radius: 3px;
  color: white;
  padding: 8px 20px;
  border: 1px solid #ccc;
  cursor: pointer;
  display: inline-block; }
  .locationfinder .locationFinder-loadMore .loadMore:hover {
    background-color: #939191;
    color: white; }
  .locationfinder .locationFinder-loadMore .loadMore:active {
    background-color: #939191;
    color: white; }
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* all other colors*/
/* BUTTONS
----------------------------------*/
.manageuserbox .component-content {
  border: 1px solid #D5D1CE;
  padding: 13px;
  background: white; }
  .manageuserbox .component-content .manageUserLinks ul li {
    list-style-type: none;
    margin-bottom: 10px; }
    .manageuserbox .component-content .manageUserLinks ul li a {
      background: url("../../img/boxlink-arrow.png") no-repeat scroll 0 2px;
      color: #05abe0;
      padding: 5px 0 6px 25px;
      text-decoration: none; }
  .manageuserbox .component-content .richText ul li {
    background: none;
    padding-left: 0; }

.manageuserbox .manageUserLinks ul {
  padding: 0;
  margin: 0; }
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* all other colors*/
/* BUTTONS
----------------------------------*/
.manageuserprofile .manageStaffProfile ul {
  padding-left: 0; }
  .manageuserprofile .manageStaffProfile ul .managerUserProfileList .manageUserOverlayContainer ul li {
    float: none;
    margin: 0;
    padding: 2px 3px; }
    .manageuserprofile .manageStaffProfile ul .managerUserProfileList .manageUserOverlayContainer ul li a {
      color: white; }
  .manageuserprofile .manageStaffProfile ul .managerUserProfileList .manageUserOverlayContainer li:nth-child(odd) {
    background: white;
    color: #1f1f1f; }
  .manageuserprofile .manageStaffProfile ul li {
    background: #e0e0e0;
    cursor: pointer;
    float: left;
    list-style-type: none;
    margin: 0 10px 10px 0;
    padding: 8px; }
    .manageuserprofile .manageStaffProfile ul li a {
      color: white; }
    .manageuserprofile .manageStaffProfile ul li:nth-child(odd) {
      background: #f36633;
      color: white; }

.manageuserprofile .manageStaffProfile .manageuserprofile .manageUserLinks {
  border-right: 1px solid #e0e0e0; }
  .manageuserprofile .manageStaffProfile .manageuserprofile .manageUserLinks ul li {
    margin-bottom: 7px; }
    .manageuserprofile .manageStaffProfile .manageuserprofile .manageUserLinks ul li a {
      background: url("../../img/boxlink-arrow.png") no-repeat scroll 0 2px;
      color: #05abe0;
      padding: 5px 0 6px 30px;
      text-decoration: none; }

.manageuserprofile .manageStaffProfile .manageuserprofile .component-content .manageUserLinks ul li {
  background: #000;
  background: rgba(0, 0, 0, 0.75);
  cursor: pointer;
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 1000; }

.manageuserprofile .manageStaffProfile .manageuserprofile .manageUserOverlayContainer .overlay-bg {
  background: #000;
  background: rgba(0, 0, 0, 0.75);
  cursor: pointer;
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 1000; }

.manageuserprofile .manageStaffProfile .manageuserprofile .manageUserOverlayContainer .overlay-content {
  background: none repeat scroll 0 0 white;
  border: 5px solid #D5D1CE;
  border-radius: 10px 10px 10px 10px;
  -moz-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  display: inline-block;
  min-height: 80px;
  min-width: 80px;
  padding: 10px 10px 10px;
  position: relative;
  text-align: left;
  top: 150px;
  width: 60%; }

.manageuserprofile .manageStaffProfile .manageuserprofile .manageUserOverlayContainer .overlay-close {
  background: url("../../img/overlay-close-icon.png") no-repeat scroll 0 0/20px auto rgba(0, 0, 0, 0);
  cursor: pointer;
  display: none;
  font-size: 25px;
  height: 20px;
  position: absolute;
  right: 3px;
  top: 5px;
  width: 20px;
  z-index: 9999; }

.manageuserprofile .manageStaffProfile .manageuserprofile .manageUserOverlayContainer .close-btn:hover {
  background: #05abe0; }

.manageuserprofile .manageStaffProfile .manageuserprofile .manageUserOverlayContainer li span {
  font-weight: 700; }
  .manageuserprofile .manageStaffProfile .manageuserprofile .manageUserOverlayContainer li span.managerUserTitle {
    display: inline-block;
    font-weight: normal;
    width: 40%; }

.manageuserprofile .manageStaffProfile .manageuserprofile .manageuserprofile h4 {
  margin-top: 0;
  margin-bottom: 9px; }

@media only screen and (max-width: 767px) {
  .manageuserprofile .manageStaffProfile .manageuserprofile .manageUserOverlayContainer li span {
    font-size: 11px;
    font-weight: normal; }
    .manageuserprofile .manageStaffProfile .manageuserprofile .manageUserOverlayContainer li span.managerUserTitle {
      display: inline-block;
      font-size: 11px;
      font-weight: normal;
      width: 50%; }
  .manageuserprofile .manageStaffProfile .manageuserprofile .manageUserOverlayContainer .overlay-content {
    width: 80%; } }
/*@import 'map/map-base';*/

/*# sourceMappingURL=map.css.map */
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* all other colors*/
/* BUTTONS
----------------------------------*/
.messageconfiguration {
  margin-top: 20px; }
  .messageconfiguration .sendMessage {
    background-color: #f36633;
    border: 1px solid #D5D1CE;
    color: white;
    padding: 5px 20px;
    cursor: pointer;
    display: inline-block; }
  .messageconfiguration .emailTemplate table {
    width: 100%; }
  .messageconfiguration .messagaeConfigurationContent .messageInput {
    margin-bottom: 15px; }
    .messageconfiguration .messagaeConfigurationContent .messageInput select {
      display: inline-block;
      width: 35%; }
    .messageconfiguration .messagaeConfigurationContent .messageInput label {
      display: inline-block;
      width: 25%;
      vertical-align: top; }
  .messageconfiguration .messagaeConfigurationContent .emailTemplateContainer {
    margin-bottom: 10px; }
    .messageconfiguration .messagaeConfigurationContent .emailTemplateContainer h5 {
      border: 1px solid #e0e0e0;
      padding: 10px; }
    .messageconfiguration .messagaeConfigurationContent .emailTemplateContainer .sendMessage:disabled {
      background: #e0e0e0;
      cursor: default; }
  .messageconfiguration .messagaeConfigurationContent .responseMessageText p.msgResFailure {
    background: #FFD3D4; }
  .messageconfiguration .messagaeConfigurationContent .responseMessageText p.msgResSuccess {
    background: #D5FECC; }
  .messageconfiguration .cfButton {
    background-color: #f36633;
    border: 1px solid #D5D1CE;
    color: #f36633;
    padding: 5px 20px;
    cursor: pointer;
    display: inline-block; }
  .messageconfiguration p {
    margin: 0;
    margin-bottom: 10px; }
  .messageconfiguration table {
    width: 100%; }

.messageconfiguration .responseMessageText p {
  border: solid 1px #DDB5B3;
  border-radius: 2px;
  color: #7B474D;
  padding: 5px;
  margin-right: 10px;
  font-size: 11px; }
/*@import 'navigation/navigation-base';*/
/* Customised base styles */
.navigation-root {
  text-align: left;
  z-index: 10;
  max-width: 100%;
}

.navigation-mobile-menu {
  display: none;
}

.no-js .navigation-level1 > .navigation-branch, .no-js .navigation-root.navigation-branch.navigation-level1, .no-js .navigation-vertical .navigation-item .navigation-branch.navigation-level2 {
  display: block;
}
.no-js .navigation-horizontal .navigation-item .navigation-branch.navigation-level2 {
  display: block;
  margin: 0 0 -2px 0;
  border-left: none;
  border-right: none;
  position: static;
}
.no-js .navigation-horizontal .navigation-item .navigation-branch.navigation-level2 > .navigation-item {
  float: none;
}

.navigation-branch {
  overflow: visible;
  margin: 0;
  padding: 0;
  list-style: none;
  border-color: #4a4a4a;
  border-width: 0;
  border-style: solid;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.navigation-branch.navigation-level1 {
  border: none;
  display: block;
}

.navigation-item {
  margin: 0 0 0 0;
  border-color: #4a4a4a;
  border-width: 0 0 0 0;
  border-style: solid;
}
.navigation-item > .navigation-item-title {
  display: block;
  padding: 5px 15px 5px 15px;
  color: black;
  font-weight: normal;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.navigation-item > a.navigation-item-title:hover {
  text-decoration: none;
}
.navigation-item > span.navigation-item-title {
  cursor: default;
}
.navigation-item.has-children > .navigation-item-title .navigation-item-decoration {
  background-color: #c8c8c8;
}
.navigation-item.has-active-child > .navigation-item-title, .navigation-item.is-active > .navigation-item-title {
  color: black;
  text-decoration: none;
}
.navigation-item.is-open > .navigation-branch {
  display: block;
}

.no-js .navigation-item:hover > .navigation-branch {
  display: block;
}

.navigation-item.navigation-level1 > .navigation-item-title {
  color: #878787;
  text-decoration: none;
}
.navigation-item.navigation-level1 > a.navigation-item-title:hover {
  text-decoration: none;
}
.navigation-item.navigation-level1.has-active-child > .navigation-item-title, .navigation-item.navigation-level1.is-active > .navigation-item-title {
  text-decoration: none;
}

.navigation-branch.navigation-level2 {
  display: block;
  margin-top: 34px;
}

.navigation-item > .navigation-item-title {
  padding-left: 0;
}

.mod-touch .navigation-horizontal .navigation-item .is-open.navigation-branch.navigation-level2 {
  display: block;
  position: relative;
  top: 0;
  left: 0;
}
.mod-touch .navigation-horizontal .navigation-item.is-open .navigation-branch.navigation-level2 {
  overflow: hidden;
}
.mod-touch .navigation-horizontal .navigation-item.navigation-level2:first-child {
  border-top: none;
}
.mod-touch .navigation-horizontal .navigation-item .navigation-level2 .navigation-item {
  width: 100%;
}

.mod-no-touch .navigation-horizontal .navigation-item:hover .navigation-branch.navigation-level2 {
  min-width: 100%;
  position: absolute;
  top: 41px;
  left: -2px;
  display: block;
}
.mod-no-touch .navigation-horizontal .navigation-item:hover .navigation-branch.navigation-level2 .navigation-item {
  float: none;
}

.navigation-horizontal .navigation-item {
  float: left;
  position: relative;
}
.navigation-horizontal .navigation-item .navigation-branch.navigation-level2, .navigation-horizontal .navigation-item .navigation-branch.navigation-level3 {
  display: none;
}
.navigation-horizontal .navigation-item.is-open > .navigation-branch.navigation-level2, .navigation-horizontal .navigation-item.is-open > .navigation-branch.navigation-level3 {
  display: block;
  float: none;
}
.navigation-horizontal .navigation-item.navigation-level2:first-child {
  border-top: none;
}
.navigation-horizontal .has-children > .navigation-item-title {
  padding-right: 61px;
  background-image: none;
}
.navigation-horizontal .has-children > .navigation-item-title .navigation-item-decoration {
  height: 41px;
  width: 41px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  line-height: 41px;
}
.navigation-horizontal .has-children > .navigation-item-title .navigation-item-decoration:after {
  content: "\f078";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 41px;
  height: 41px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
}
.navigation-horizontal .has-children > .navigation-item-title:hover .navigation-item-decoration {
  background-color: #939191;
}
.navigation-horizontal .has-children.navigation-level2 > .navigation-item-title {
  padding-right: 55px;
}
.navigation-horizontal .has-children.navigation-level2 > .navigation-item-title .navigation-item-decoration {
  height: 31px;
  width: 31px;
  line-height: 31px;
}
.navigation-horizontal .has-children.navigation-level2 > .navigation-item-title .navigation-item-decoration:after {
  width: 31px;
  height: 31px;
}
.navigation-horizontal .has-active-child > .navigation-item-title .navigation-item-decoration {
  background-color: #605e5e;
}
.navigation-horizontal .navigation-level2.navigation-branch {
  border-color: #4a4a4a;
  border-width: 2px 2px 2px 2px;
  border-style: solid;
}
.navigation-horizontal .navigation-level2 .navigation-item-title {
  padding: 5px 15px 5px 15px;
}
.navigation-horizontal .navigation-level2.navigation-root {
  max-width: none;
}

.navigation-vertical .navigation-branch.navigation-level2, .navigation-vertical .navigation-branch.navigation-level3 {
  display: none;
}
.navigation-vertical .navigation-item.is-open > .navigation-branch.navigation-level2, .navigation-vertical .navigation-item.is-open > .navigation-branch.navigation-level3 {
  display: block;
}
.navigation-vertical .has-children > .navigation-item-title {
  position: relative;
}
.navigation-vertical .has-children > .navigation-item-title .navigation-item-decoration {
  height: 41px;
  width: 41px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  line-height: 41px;
}
.navigation-vertical .has-children > .navigation-item-title .navigation-item-decoration:before {
  content: "\f078";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 41px;
  height: 41px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
}
.navigation-vertical .has-children.navigation-level2 > .navigation-item-title .navigation-item-decoration {
  height: 31px;
  width: 31px;
  line-height: 31px;
}
.navigation-vertical .has-children.navigation-level2 > .navigation-item-title .navigation-item-decoration:before {
  width: 31px;
  height: 31px;
}
.navigation-vertical .has-active-child > .navigation-item-title .navigation-item-decoration {
  background-color: #c8c8c8;
}

@media only screen and (min-width: 990px) {
  .mod-touch .navigation-horizontal .navigation-item.is-open .navigation-branch.navigation-level2 {
    margin: 0 0 -2px -2px;
    position: absolute;
  }
}
@media only screen and (min-width: 768px) and (max-width: 989px) {
  .mod-touch .navigation-horizontal .navigation-item {
    width: 100%;
  }
  .mod-touch .navigation-horizontal .navigation-item.is-open .navigation-branch.navigation-level2 {
    margin: 0 0 -2px 0;
    border-left: none;
    border-right: none;
  }
}
@media only screen and (max-width: 767px) {
  .mod-touch .navigation-horizontal .navigation-item {
    width: 100%;
  }
  .mod-touch .navigation-horizontal .navigation-item.is-open .navigation-branch.navigation-level2 {
    margin: 0 0 -2px 0;
    border-left: none;
    border-right: none;
    position: static;
  }

  .navigation-mobile-menu {
    display: none;
  }
  .navigation-mobile-menu:after {
    content: "\f0c9";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    width: 41px;
    height: 41px;
    position: absolute;
    top: 0;
    line-height: 38px;
    font-size: 25px;
    right: 0;
  }

  .navigation-item.navigation-level1 {
    width: 100%;
  }

  .navigation-branch.navigation-level1.is-open {
    display: block;
  }

  .navigation-horizontal .navigation-item:hover .navigation-branch.navigation-level2, .navigation-vertical .navigation-item:hover .navigation-branch.navigation-level2 {
    left: 0;
    border-left: none;
    border-right: none;
  }
}
/* Custom styles*/
.lamisil-top-navigation .navigation-item.navigation-level2 {
  border-top: 0 solid #4a4a4a;
  display: inline-block;
  padding-left: 2px;
  padding-right: 2px;
  position: relative;
  top: 4px;
}

#wrapper #footer .navigation-branch.navigation-level2 {
  display: block;
  margin-top: 23px;
}
#wrapper .lamisil-top-navigation {
  display: block;
  margin-bottom: 0;
  padding-top: 8px;
}

@media only screen and (min-width: 801px) and (max-width: 962px) {
  #wrapper .lamisil-top-navigation ul li:nth-child(1) ul {
    padding-right: 17% !important;
  }
  #wrapper .lamisil-top-navigation ul li:nth-child(2) ul {
    padding-right: 8% !important;
  }

  .lamisil-top-navigation ul li:nth-child(3) ul {
    padding-right: 2% !important;
  }
}
@media only screen and (max-width: 767px) {
  #wrapper #footer .navigation-branch.navigation-level2 {
    display: none;
    margin-top: 23px;
  }
  #wrapper .lamisil-top-navigation .navigation-item.navigation-level1:hover a, #wrapper .lamisil-top-navigation .navigation-item.navigation-level1:focus a {
    border-bottom: 0 solid #00aeef;
    font-weight: 300;
  }
}
/*  ------------------			Top navigation 		------------------   */
.lamisil-top-navigation .navigation-branch.navigation-level2 {
  display: none;
}
.lamisil-top-navigation .navigation-item.navigation-level1 {
  border-color: #4a4a4a;
  border-style: solid;
  border-width: 0;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0 16px !important;
}
.lamisil-top-navigation .navigation-branch.navigation-level1 {
  float: right;
  margin-right: -18px;
}

/*  Footer start  */
#footer .navigation-item {
  padding-bottom: 6px;
  padding-top: 6px;
}
#footer .navigation-item.navigation-level1 > .navigation-item-title {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}
#footer .navigation-item.navigation-level2 > .navigation-item-title {
  color: #fff;
  font-size: 14px;
}
#footer .navigation-item.navigation-level2 > .navigation-item-title:hover, #footer .navigation-item.navigation-level2 > .navigation-item-title:focus {
  font-weight: bold;
  cursor: pointer;
}
#footer .navigation-item > .navigation-item-title {
  color: #fff;
  display: inline;
  padding: 0;
  white-space: normal;
}
#footer .navigation-item.navigation-level1 > .navigation-item-title:hover, #footer .navigation-item.navigation-level1 > .navigation-item-title:focus {
  font-weight: bold;
  cursor: pointer;
}
#footer .navigation-item.navigation-level1:hover, #footer .navigation-item.navigation-level1:focus {
  font-weight: bold;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  #footer .navigation-item.navigation-level2 > .navigation-item-title {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  :lang(en) #footer .navigation-item.navigation-level1 > .navigation-item-title {
    min-height: 40px;
    display: inline-block;
  }
}
@media screen and (min-width: 1200px) {
  #footer .navigation-item.navigation-level2 > .navigation-item-title {
    font-size: 14px;
  }
}
/* Footer  end*/
.lamisil-top-navigation .navigation-item.is-open > .navigation-branch, .no-js .navigation-item:hover > .navigation-branch {
  background: #fff;
  border-top: 1px solid #ccc;
  box-shadow: 0 1px 3px #ccc;
  display: inline-block;
  margin-top: 0;
  padding-right: 2%;
  padding-top: 0;
  text-align: right;
  width: 100%;
}

.lamisil-top-navigation ul li ul {
  left: 0;
  position: absolute;
}
.lamisil-top-navigation ul li a {
  font-size: 16px;
  line-height: 30px;
  padding: 11px 0 13px !important;
}

#wrapper .lamisil-top-navigation ul li ul li a {
  border-bottom: 0 none !important;
  color: #689ecc;
  padding: 3px 8px !important;
}
#wrapper .lamisil-top-navigation ul li ul li.is-active a {
  font-weight: bold;
  color: #005daa;
}
#wrapper .lamisil-top-navigation ul li ul li.has-active-child, #wrapper .lamisil-top-navigation ul li ul li.is-active {
  border-bottom: 0 solid #00aeef;
}

.lamisil-top-navigation .navigation-item.navigation-level1:hover a, .lamisil-top-navigation .navigation-item.navigation-level1:focus a {
  font-weight: 300;
}
.lamisil-top-navigation ul li:hover ul li a, .lamisil-top-navigation ul li:focus ul li a {
  border-bottom: 0 solid #00aeef !important;
}
.lamisil-top-navigation ul li ul li a:hover, .lamisil-top-navigation ul li ul li:focus a {
  font-weight: bold !important;
  color: #005daa !important;
}
.lamisil-top-navigation .navigation-item.navigation-level1:hover a, .lamisil-top-navigation .navigation-item.navigation-level1:focus a {
  font-weight: bold;
}

.navigation-item-decoration {
  display: none;
}

.lamisil-top-navigation ul li:nth-child(1) ul {
  padding-right: 14% !important;
}
.lamisil-top-navigation ul li:nth-child(2) ul {
  padding-right: 8% !important;
}
.lamisil-top-navigation ul li:nth-child(3) ul {
  padding-right: 2% !important;
}
.lamisil-top-navigation ul li a:focus {
  font-weight: bold;
}

#wrapper .lamisil-top-navigation ul li ul li a:hover, #wrapper .lamisil-top-navigation ul li ul li a:focus {
  color: #005daa !important;
  font-weight: bold !important;
}
#wrapper .lamisil-top-navigation .navigation-level2:focus a {
  color: #005daa !important;
  font-weight: bold !important;
}

.lamisil-top-navigation .navigation-item.navigation-level1.has-active-child a {
  border-bottom: 3px solid #00aeef !important;
  font-weight: bold;
}
.lamisil-top-navigation .navigation-item.navigation-level1.is-active ul li a {
  font-weight: 300;
}
.lamisil-top-navigation .navigation-item.navigation-level1.is-active a {
  border-bottom: 3px solid #00aeef;
  font-weight: 300;
}
.lamisil-top-navigation .navigation-item.navigation-level1.is-active ul li a {
  border-bottom: 0 solid #00aeef;
  font-weight: 300;
}
.lamisil-top-navigation .navigation-item.navigation-level1.has-active-child ul li a {
  border-bottom: 0 solid #00aeef;
  font-weight: normal;
}

#wrapper .ls-mobile-navigation-athletfoot-nav, #wrapper .ls-mobile-navigation-bodyfungus-nav, #wrapper .ls-mobile-navigation-product-nav, #wrapper .ls-mobile-navigation-where-to-buy-nav {
  display: none;
}

.lamisil-top-navigation .navigation-item.navigation-level1 a {
  border-bottom: 3px solid #fff;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .lamisil-top-navigation .navigation-item.is-open > .navigation-branch, .no-js .navigation-item:hover > .navigation-branch {
    margin-top: 0;
    padding-left: 10%;
    padding-right: 6%;
    padding-top: 0;
    width: 100%;
  }

  #wrapper .lamisil-top-navigation ul li ul li a {
    padding: 0 7px !important;
  }

  .lamisil-top-navigation ul li:nth-child(1) ul {
    padding-right: 14% !important;
  }
  .lamisil-top-navigation ul li:nth-child(2) ul {
    padding-right: 7% !important;
  }
  .lamisil-top-navigation ul li a {
    font-size: 12px;
    line-height: 30px;
  }
  .lamisil-top-navigation .navigation-item.is-open > .navigation-branch {
    padding-left: 1%;
    padding-right: 2%;
  }

  .no-js .navigation-item:hover > .navigation-branch {
    padding-left: 1%;
    padding-right: 2%;
  }

  .lamisil-top-navigation ul li ul {
    text-align: right;
    width: 100%;
  }
  .lamisil-top-navigation ul li ul li a {
    font-size: 13px;
    line-height: 34px;
  }
  .lamisil-top-navigation .navigation-branch.navigation-level1 {
    float: right;
    margin-right: 0;
  }

  #wrapper .lamisil-top-navigation {
    padding-top: 13px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 800px) {
  .lamisil-top-navigation .navigation-branch.navigation-level2 a {
    font-size: 12px;
    line-height: 14px;
  }
  .lamisil-top-navigation ul li:nth-child(3) ul {
    padding-right: 2% !important;
  }

  #wrapper .lamisil-top-navigation ul li ul li a {
    padding: 5px 3px 3px !important;
  }
  #wrapper .lamisil-top-navigation ul li:nth-child(1) ul {
    padding-right: 22% !important;
  }
  #wrapper .lamisil-top-navigation ul li:nth-child(2) ul {
    padding-right: 12% !important;
  }

  .lamisil-top-navigation .has-active-child .navigation-level2 {
    padding-bottom: 6px;
    padding-top: 6px;
  }
  .lamisil-top-navigation .navigation-level1 li.is-active ul {
    padding-bottom: 5px;
    padding-top: 5px;
  }
  .lamisil-top-navigation .navigation-branch.navigation-level2 {
    padding: 4px 0;
  }

  #wrapper .lamisil-top-navigation .navigation-item.navigation-level1 {
    padding: 0 6px !important;
  }

  .lamisil-top-navigation ul li a {
    padding: 8px 7px 10px !important;
  }
  .lamisil-top-navigation .navigation-item.navigation-level2 {
    padding: 6px 0 8px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  #wrapper .ls-mobile-navigation-athletfoot-nav .navigation-root.navigation-branch.navigation-level1, #wrapper .ls-mobile-navigation-bodyfungus-nav .navigation-root.navigation-branch.navigation-level1, #wrapper .ls-mobile-navigation-where-to-buy-nav .navigation-root.navigation-branch.navigation-level1 {
    padding-bottom: 10px;
    padding-left: 10px;
    padding-top: 10px;
  }
  #wrapper .ls-mobile-navigation-athletfoot-nav {
    border-bottom: 1px solid #ccc;
    margin-bottom: 0;
  }

  .ls-mobile-navigation-bodyfungus-nav, .ls-mobile-navigation-where-to-buy-nav {
    border-bottom: 1px solid #ccc;
    margin-bottom: 0;
  }

  #wrapper .ls-mobile-navigation-athletfoot-nav .navigation-root.navigation-branch.navigation-level1 li, #wrapper .ls-mobile-navigation-bodyfungus-nav .navigation-root.navigation-branch.navigation-level1 li, #wrapper .ls-mobile-navigation-where-to-buy-nav .navigation-root.navigation-branch.navigation-level1 li {
    float: left !important;
    padding-bottom: 5px;
    position: relative;
    width: auto !important;
  }
  #wrapper .ls-mobile-navigation-athletfoot-nav .navigation-root.navigation-branch.navigation-level1 li a, #wrapper .ls-mobile-navigation-bodyfungus-nav .navigation-root.navigation-branch.navigation-level1 li a, #wrapper .ls-mobile-navigation-where-to-buy-nav .navigation-root.navigation-branch.navigation-level1 li a {
    border-right: 1px solid #ccc;
    color: #689ecc;
    float: left;
    font-size: 16px;
    line-height: 1.5;
    padding: 0 20px 4px;
  }

  .ls-mobile-navigation-athletfoot-nav .component-content ul li.is-active a, .ls-mobile-navigation-bodyfungus-nav .component-content ul li.is-active a, .ls-mobile-navigation-product-nav .component-content ul li.is-active a, .ls-mobile-navigation-where-to-buy-nav .component-content ul li.is-active a {
    color: #005daa !important;
    font-weight: bold;
  }

  .ls-mobile-navigation-athletfoot-nav .component-content ul li:last-child a, .ls-mobile-navigation-bodyfungus-nav .component-content ul li:last-child a, .ls-mobile-navigation-product-nav .component-content ul li:last-child a, .ls-mobile-navigation-where-to-buy-nav .component-content ul li:last-child a {
    border-right: 0 solid #ccc !important;
  }

  .page-athletes-foot #wrapper .ls-mobile-navigation-athletfoot-nav, .page-body-fungus #wrapper .ls-mobile-navigation-bodyfungus-nav {
    display: block;
  }

  #wrapper .ls-mobile-navigation-product-nav {
    display: none;
  }

  .page-where-to-buy #wrapper .ls-mobile-navigation-where-to-buy-nav {
    display: block;
  }

  #wrapper .lamisil-top-navigation {
    padding-top: 0 !important;
  }
  #wrapper .lamisil-top-navigation .navigation-branch.navigation-level1 a:hover, #wrapper .lamisil-top-navigation .navigation-branch.navigation-level1 a:focus {
    border-bottom: 0 solid #00aeef;
  }

  .lamisil-top-navigation ul li a {
    font-size: 48px;
    line-height: 92px;
  }
  .lamisil-top-navigation .navigation-item.navigation-level1 {
    border-color: #4a4a4a #4a4a4a #ccc;
    border-style: solid;
    border-width: 0 0 1px;
    box-sizing: border-box;
  }

  .lamisil-top-navigation-section {
    border-bottom: 0 solid #d9d9d9;
    box-shadow: 0 0 0 #ccc;
  }

  #wrapper .lamisil-top-navigation-section .lamisil-top-navigation ul {
    background-color: #fff;
    display: none;
    float: left;
    left: 0;
    margin-top: 87px;
    margin-right: 0;
    padding-left: 5%;
    padding-right: 5%;
    position: absolute;
    width: 100%;
    z-index: 99999;
  }

  .navigation-item.navigation-level1.has-active-child > .navigation-item-title, .navigation-item.navigation-level1.is-active > .navigation-item-title {
    display: block;
  }

  .lamisil-footer-box .navigation-branch {
    text-align: center;
  }

  #footer .navigation-item.navigation-level1 > .navigation-item-title {
    color: #fff;
    font-size: 24px;
    line-height: 60px;
  }

  .lamisil-footer-box .navigation-branch .navigation-branch.navigation-level2 {
    display: none;
  }

  #footer .navigation-item {
    border-bottom: 2px solid #a6c6e1;
    padding-bottom: 0;
    padding-top: 0;
  }

  #wrapper #footer .navigation-branch.navigation-level2 {
    margin-top: 0;
    padding-left: 30px;
  }

  #footer .navigation-item.navigation-level1 > .navigation-item-title {
    color: #fff;
    font-size: 24px;
    line-height: 60px;
    width: 90%;
  }
  #footer .lamisil-footer-box .lamisil-footer-navigation ul li a {
    background: url("../../assets/img/mobile-footer-arrow-close.png") no-repeat right 10px center;
    color: #fff;
    cursor: pointer;
    padding: 0;
    position: relative;
    text-decoration: none;
    z-index: 99;
  }
  #footer .lamisil-footer-box .lamisil-footer-navigation ul li a.active-arrow {
    background: url("../../assets/img/mobile-footer-arrow-open.png") no-repeat right 10px center;
    color: #fff;
    cursor: pointer;
    padding: 0;
    position: relative;
    text-decoration: none;
    z-index: 99;
  }
  #footer .lamisil-footer-box .lamisil-footer-navigation ul li ul li a.active-arrow {
    background-image: none !important;
  }

  #wrapper .lamisil-top-navigation ul li.has-active-child, #wrapper .lamisil-top-navigation ul li.is-open {
    margin-bottom: 0;
  }
  #wrapper .lamisil-top-navigation .navigation-item.navigation-level1.has-active-child a {
    border-bottom: 0 solid #00aeef !important;
  }

  #footer .lamisil-footer-box .lamisil-footer-navigation ul li ul li a {
    background: transparent none repeat scroll 0 0 !important;
  }
  #footer .lamisil-footer-navigation ul li ul li {
    text-align: left;
    font-size: 20px;
    line-height: 35px;
  }
  #footer .navigation-item.navigation-level2 > .navigation-item-title {
    font-size: 17px;
    line-height: 30px;
  }
  #footer .navigation-branch.navigation-level2 {
    border-top: 1px solid #a6c6e1;
    margin-top: 0;
    padding-bottom: 20px;
    padding-top: 20px;
  }
  #footer .navigation-branch.navigation-level2 .navigation-item {
    border-bottom: 0 solid #a6c6e1;
  }
  #footer .navigation-item > .navigation-item-title {
    display: block;
  }

  .lamisil-top-navigation .navigation-item.navigation-level1.has-active-child a {
    border-bottom: 0 solid #00aeef;
    font-weight: 300;
  }

  .lamisil-top-navigation-section {
    padding: 0;
  }

  .ls-mobile-navigation-product-nav {
    display: none;
  }

  .navigation.lamisil-footer-navigation.last ul li.navigation-item {
    border-bottom: 0 solid #a6c6e1 !important;
  }

  .ls-mobile-navigation-where-to-buy-nav ul li:nth-child(2) a {
    border-right: 0 solid #000;
  }
}
@media only screen and (max-width: 767px) {
  #wrapper .lamisil-top-navigation ul li:hover, #wrapper .lamisil-top-navigation ul li:focus {
    border-bottom: 1px solid #ccc;
    font-weight: normal;
  }

  .lamisil-top-navigation .navigation-item.navigation-level1:hover a, .lamisil-top-navigation .navigation-item.navigation-level1:focus a {
    font-weight: normal;
  }

  #footer .navigation-item.navigation-level1 > .navigation-item-title:hover, #footer .navigation-item.navigation-level1 > .navigation-item-title:focus {
    cursor: pointer;
    font-weight: normal;
  }
  #footer .navigation-item.navigation-level2 > .navigation-item-title:hover, #footer .navigation-item.navigation-level2 > .navigation-item-title:focus {
    cursor: pointer;
    font-weight: normal;
  }

  .lamisil-top-navigation .navigation-item.navigation-level1.is-active a {
    border-bottom: 0 solid #00aeef;
    font-weight: 300;
  }
}
@media only screen and (max-width: 568px) {
  #wrapper .ls-mobile-navigation-athletfoot-nav .navigation-root.navigation-branch.navigation-level1 li a, #wrapper .ls-mobile-navigation-bodyfungus-nav .navigation-root.navigation-branch.navigation-level1 li a, #wrapper .ls-mobile-navigation-where-to-buy-nav .navigation-root.navigation-branch.navigation-level1 li a {
    border-right: 1px solid #ccc;
    color: #689ecc;
    float: left;
    font-size: 13px;
    line-height: 1.5;
    padding: 0 11px;
  }

  .lamisil-top-navigation ul li a {
    font-size: 26px;
    line-height: 48px;
  }
  .lamisil-top-navigation .navigation-item.navigation-level1 {
    padding: 0 0 0 5px;
  }
}
@media only screen and (max-width: 480px) {
  #wrapper .ls-mobile-navigation-athletfoot-nav .navigation-root.navigation-branch.navigation-level1 li a, #wrapper .ls-mobile-navigation-bodyfungus-nav .navigation-root.navigation-branch.navigation-level1 li a, #wrapper .ls-mobile-navigation-where-to-buy-nav .navigation-root.navigation-branch.navigation-level1 li a {
    font-size: 12px;
    line-height: 1.5;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 375px) {
  #wrapper .ls-mobile-navigation-athletfoot-nav .navigation-root.navigation-branch.navigation-level1 li a, #wrapper .ls-mobile-navigation-bodyfungus-nav .navigation-root.navigation-branch.navigation-level1 li a, #wrapper .ls-mobile-navigation-where-to-buy-nav .navigation-root.navigation-branch.navigation-level1 li a {
    font-size: 11px;
    line-height: 1.5;
    padding: 0 9px;
  }

  .lamisil-top-navigation ul li a {
    font-size: 22px;
    line-height: 48px;
  }

  #footer .navigation-item.navigation-level1 > .navigation-item-title {
    color: #fff;
    font-size: 18px;
    line-height: 38px;
  }
  #footer .navigation-item.navigation-level2 > .navigation-item-title {
    font-size: 16px;
    line-height: 25px;
  }
  #footer .lamisil-footer-navigation ul li ul li {
    font-size: 16px;
    line-height: 23px;
  }

  .lamisil-top-navigation .navigation-item.navigation-level1 {
    padding: 0 9px !important;
  }
}
@media only screen and (max-width: 360px) {
  #wrapper .ls-mobile-navigation-athletfoot-nav .navigation-root.navigation-branch.navigation-level1 li a, #wrapper .ls-mobile-navigation-bodyfungus-nav .navigation-root.navigation-branch.navigation-level1 li a, #wrapper .ls-mobile-navigation-where-to-buy-nav .navigation-root.navigation-branch.navigation-level1 li a {
    font-size: 11px;
    line-height: 1.5;
    padding: 0 7px;
  }

  .lamisil-top-navigation ul li a {
    padding: 11px 11px 13px 4px !important;
  }
}
@media only screen and (max-width: 320px) {
  #wrapper .ls-mobile-navigation-athletfoot-nav .navigation-root.navigation-branch.navigation-level1 li a, #wrapper .ls-mobile-navigation-bodyfungus-nav .navigation-root.navigation-branch.navigation-level1 li a, #wrapper .ls-mobile-navigation-where-to-buy-nav .navigation-root.navigation-branch.navigation-level1 li a {
    font-size: 11px;
    line-height: 1.5;
    padding: 0 5px 0 4px;
  }

  .lamisil-top-navigation ul li a {
    padding: 13px 11px 11px 4px !important;
    font-size: 22px;
    line-height: 34px;
  }
  .lamisil-top-navigation .navigation-item.navigation-level1 {
    padding: 0 2px !important;
  }
}
.lamisil-footer-navigation .navigation-root.navigation-branch.navigation-level1 li.has-children.navigation-level1.is-open {
  margin-bottom: 0;
}

.navigation-root.navigation-branch.navigation-level1 li.has-children.navigation-level1.is-open {
  margin-bottom: 41px;
}

/*# sourceMappingURL=navigation.css.map */
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* all other colors*/
/* BUTTONS
----------------------------------*/
.notification .notificationFormElement {
  margin-bottom: 15px; }

.notification label {
  display: inline-block;
  text-align: right;
  margin-right: 10px;
  width: 200px; }

.notification input[type="text"], .notification textarea, .notification select {
  display: inline-block;
  width: 200px; }

.notification .btn {
  margin-top: 15px;
  float: right; }

.notification .notificationSuccessBox {
  display: none; }

.notification .fixedRecipientNotification input {
  border: none;
  width: 75%; }

.notification .fixedRecipientNotification label {
  font-weight: 700; }

.notification .fixedRecipientNotification .btn {
  background-color: #f36633;
  border-radius: 3px;
  color: white;
  padding: 8px 20px;
  border: 1px solid #ccc;
  cursor: pointer;
  display: inline-block; }
  .notification .fixedRecipientNotification .btn:hover {
    background-color: #939191;
    color: white; }
  .notification .fixedRecipientNotification .btn:active {
    background-color: #939191;
    color: white; }

.notificationFailureBox {
  display: none; }
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* all other colors*/
/* BUTTONS
----------------------------------*/
.poll {
  border: 1px solid #D5D1CE;
  padding: 15px; }
  .poll .content-component {
    border: 1px solid #D5D1CE;
    border-top: none; }
  .poll .poll-description, .poll .pollOptionContainer {
    padding: 0 13px; }
  .poll .genericPollGroup {
    clear: both; }
    .poll .genericPollGroup .button {
      margin-bottom: 15px; }
  .poll .pollTitle {
    text-align: right;
    margin-right: 15px; }
  .poll .pollControl-radio {
    float: left;
    margin: 0;
    padding: 0;
    width: 21px; }
    .poll .pollControl-radio input[type="radio"] {
      float: left;
      margin: 2px 2px 0 0;
      padding: 0;
      width: 15px; }
    .poll .pollControl-radio label {
      float: left;
      padding: 1px 0 0; }
  .poll button .showPollResult {
    margin: 15px 0 0 0; }
  .poll .pollError p {
    border: solid 1px #e0e0e0;
    color: #c1056f;
    padding: 10px; }

.pollResultContainer {
  padding: 0 13px; }

.pollResultsContainer {
  border-top: solid 1px #e0e0e0;
  padding-top: 10px;
  margin-top: 15px; }
  .pollResultsContainer h4 span .pollResultValue {
    display: inline-block;
    background-color: #f36633;
    color: white;
    font-size: 14px;
    padding: 5px 10px; }

.cfButton {
  background-color: #f36633;
  border: 1px solid #D5D1CE;
  color: white;
  padding: 5px 20px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  cursor: pointer;
  display: inline-block; }
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* all other colors*/
/* BUTTONS
----------------------------------*/
.powerreviews {
  border: solid 1px #e0e0e0;
  padding: 5px 10px 0 10px;
  margin-bottom: 5px; }
  .powerreviews .p-w-r .pr-header-title {
    color: #f36633; }
  .powerreviews .p-w-r .pr-star-selected {
    background-color: #f36633; }
  .powerreviews .pr-snapshot-rating .pr-stars {
    background-image: url("../../img/stars.gif"); }
  .powerreviews .pr-review-rating .pr-stars-small {
    background-image: url("../../img/stars_small.gif"); }
  .powerreviews .pr-snippet-stars .pr-stars-small {
    background-image: url("../../img/stars_small.gif"); }
  .powerreviews.pr-base-modal a, .powerreviews .pr-pa-snippet a, .powerreviews .pr-review-engine a, .powerreviews .pr-snippet a, .powerreviews prImageSnippet a {
    color: #f36633; }
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* all other colors*/
/* BUTTONS
----------------------------------*/
.product-list-main__results .product {
  border-bottom: 2px solid #f3f2f1; }

.productList .product-list-content {
  display: table;
  width: 50%;
  margin-left: auto;
  margin-right: auto; }
  .productList .product-list-content .product-list-main, .productList .product-list-content product-list-header {
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto; }

.productList .alphabet-filter__element {
  margin-left: 10px; }

.productList .no-of-shown-results, .productList .no-of-all-results, .productList .applied-filter {
  font-weight: bold; }

.productList .product-list-main {
  display: table-row;
  justify-content: space-around; }

.productList .product-list-header {
  display: table-row;
  justify-content: space-around; }

.productList .product-list-filter--alphabet {
  border-left: 2px solid #f3f2f1; }

.productList .product-list-filter .filter-trigger--alphabet {
  color: #72635d;
  cursor: default;
  opacity: 0.5;
  text-decoration: none; }
  .productList .product-list-filter .filter-trigger--alphabet.filter-trigger--active {
    color: #f36633;
    cursor: pointer;
    opacity: 1;
    text-decoration: none; }

.productList .product-list-header__filter-by .filter-by__label {
  background-color: #f36633;
  color: white;
  padding: 10px 30px;
  font-size: 16px;
  border: none;
  cursor: pointer; }

.productList ul.filter__product-types {
  display: none;
  position: absolute;
  background-color: #f2f2f2;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1; }
  .productList ul.filter__product-types li {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block; }
    .productList ul.filter__product-types li input ~ span::after {
      content: "";
      background-color: white;
      border-radius: 30px;
      width: 20px;
      height: 20px;
      margin: 0 7px 0 0;
      position: absolute;
      right: 0; }
    .productList ul.filter__product-types li input:checked ~ span::after {
      background-color: #15717e;
      border: 2px solid white;
      margin: 0 6px 0 0; }
    .productList ul.filter__product-types li input {
      visibility: hidden; }

.productList ul .alphabet-filter__elements, .productList ul .product__links--additional {
  list-style-type: none;
  margin: 0;
  padding: 0; }

.productList ul.filter__product-types.show {
  display: block;
  padding: 0; }

.productList .product__info-formula-text {
  font-style: italic; }

.productList .product .product__links a {
  color: #15717e;
  font-weight: bold; }

.productList .product .product__info-title, .productList .product .product__info-title a {
  color: #15717e;
  font-size: 18px;
  line-height: 18px;
  font-weight: bold; }

.productList .product .product__info-title.lock-icon {
  color: black;
  font-size: 18px;
  line-height: 18px;
  font-weight: bold; }
  .productList .product .product__info-title.lock-icon a:before {
    content: '!';
    color: #ff0000; }

.productList .product-list-main__results {
  width: 95%; }
  .productList .product-list-main__results .product {
    display: flex;
    margin-top: 15px; }
    .productList .product-list-main__results .product .product__info {
      width: 50%; }
    .productList .product-list-main__results .product .product__links {
      width: 60%;
      margin-left: auto;
      margin-right: auto;
      font-family: arial;
      font-size: 13px;
      font-weight: 700; }

.productList .results__show-more-btn {
  display: inline-block;
  margin-top: 15px;
  color: white;
  background-color: #15717e;
  padding: 10px 30px;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  font-size: 18px;
  width: 20%;
  margin-left: 35%;
  margin-right: auto; }
  .productList .results__show-more-btn:hover {
    background-color: white;
    display: inline-block;
    padding: 8px 30px;
    border: 2px solid #15717e;
    color: #15717e;
    font-size: 18px;
    width: 20%;
    margin-left: 35%;
    margin-right: auto; }
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* all other colors*/
/* BUTTONS
----------------------------------*/
.questionanswers.hideScoreBox .quizScoreBox, .questionanswers.hideScoreBox .quizResultBoxContainer {
  display: none; }

.quizResultBoxContainer.showBoxQuiz {
  display: block; }

.quizButton img {
  cursor: pointer; }
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* all other colors*/
/* BUTTONS
----------------------------------*/
.questionWithCheck {
  border: dotted 1px #D5D1CE;
  padding: 10px; }
  .questionWithCheck .formControl-radio {
    float: left;
    margin: 0;
    padding: 0;
    width: 21px; }
  .questionWithCheck .genericFormGroup span input[type="checkbox"] {
    float: left;
    margin: 2px 2px 0 0;
    padding: 0;
    width: 15px; }

.questionWithRadio button {
  background: white;
  border: 1px solid white;
  border-radius: 0;
  float: left;
  margin-right: 15px; }
  .questionWithRadio button.optionActive {
    border: solid 1px #D5DCEF; }

.questionWithRadio .formControl-radio {
  float: left;
  margin: 0;
  padding: 0;
  width: 21px; }

.questionWithRadio .genericFormGroup span input[type="radio"] {
  float: left;
  margin: 2px 2px 0 0;
  padding: 0;
  width: 15px; }

.questionWithRadio .genericFormGroup label, .questionWithCheck .genericFormGroup label {
  float: left;
  padding: 1px 0 0;
  width: auto;
  margin-right: 15px; }

.questionWithRadio .genericFormGroup .quizRadioImg label, .questionWithCheck .genericFormGroup .quizRadioImg label {
  width: 100px; }

.questionWithRadio .quizScoreBox, .questionWithCheck .quizScoreBox {
  border: 1px solid #0F61AF;
  background: white;
  text-align: center;
  font-weight: 700;
  padding: 5px;
  width: 50px;
  height: 15px;
  margin-left: 20px;
  float: left; }
  .questionWithRadio .quizScoreBox p, .questionWithCheck .quizScoreBox p {
    margin: 0;
    font-weight: 700; }

.questionWithRadio .imgContainer, .questionWithCheck .imgContainer {
  width: 100%;
  float: left; }

.questionWithRadio .quizQuestion p, .questionWithCheck .quizQuestion p {
  margin: 0 0 15px 0; }

.quizHideBox {
  display: none; }

.quizOverlayContainer .overlay-bg {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  z-index: 1000;
  /* high z-index */
  background: #000;
  /* fallback */
  background: rgba(0, 0, 0, 0.75);
  text-align: center; }

.quizOverlayContainer .overlay-content {
  background: none repeat scroll 0 0 white;
  display: inline-block;
  max-width: 90%;
  min-height: 80px;
  min-width: 80px;
  padding: 30px 10px 10px;
  position: relative;
  text-align: left;
  top: 150px; }

.quizOverlayContainer .overlay-close {
  background: url("../../img/overlay-close-icon.png") no-repeat scroll 0 0/20px auto rgba(0, 0, 0, 0);
  cursor: pointer;
  display: none;
  font-size: 25px;
  height: 20px;
  position: absolute;
  right: 3px;
  top: 5px;
  width: 20px;
  z-index: 9999; }

.quizOverlayContainer .close-btn:hover {
  background: #05abe0; }

.questionWithImage {
  clear: both; }
  .questionWithImage .quizQuestion {
    border: 2px solid #0F61AF;
    background: #D5DCEF;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    padding: 15px 10px 20px 10px;
    float: left;
    width: 80%; }
    .questionWithImage .quizQuestion p {
      font-weight: 700;
      line-height: 1.2em;
      margin: 10px 0 0 0;
      vertical-align: middle;
      color: black; }
  .questionWithImage .imgContainer {
    float: left;
    width: 50%;
    text-align: center; }
    .questionWithImage .imgContainer span {
      border: 3px solid #78A7D2;
      padding: 10px;
      height: 36px;
      width: 36px;
      -webkit-border-radius: 150px;
      -moz-border-radius: 150px;
      border-radius: 150px; }
    .questionWithImage .imgContainer img {
      text-align: center;
      vertical-align: bottom;
      cursor: pointer; }
  .questionWithImage .quesLeftCaption, .questionWithImage .quesRighCaption {
    float: left;
    width: 25%; }

.quizResultContainer {
  width: 92%; }

.quizScoreBox {
  border: 2px solid #0F61AF;
  background: #D5DCEF;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  padding: 5px;
  width: 58px;
  height: 62px;
  margin-left: 20px;
  float: left; }
  .quizScoreBox p {
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    margin: 0;
    color: black;
    margin-top: 15px; }
  .quizScoreBoxtotalScoreBox {
    float: right; }

.quiz .nextQuestionPage {
  float: right; }

.quiz .generateScore {
  float: right; }

.quiz .button.generateScore {
  width: 230px;
  padding: 10px;
  font-weight: 700;
  font-size: 22px;
  color: white;
  background: #115A64; }

.quiz .button.generateScoreNewPage {
  padding: 10px;
  font-weight: 700;
  color: #0073BD;
  border: solid 1px white;
  background: #E4FE98; }

.quiz.quizWithBGImage {
  float: left; }
  .quiz.quizWithBGImage .quizQuestionBox {
    background-color: #FFF1D0;
    padding: 20px;
    width: 70%; }
    .quiz.quizWithBGImage .quizQuestionBox h2 {
      color: #4469A1;
      font-size: 40px;
      margin-bottom: 0; }
    .quiz.quizWithBGImage .quizQuestionBox p {
      font-size: 18px;
      color: #5C5D59;
      margin: 0;
      line-height: 22px; }
  .quiz.quizWithBGImage .quizQuestionOption {
    position: relative;
    background-repeat: no-repeat;
    background-position: left top; }
  .quiz.quizWithBGImage .quizOptionButton {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #E2F1F3;
    padding: 17px 25px 17px 25px;
    font-size: 20px;
    border: 0;
    border-radius: 0;
    color: #73A1A7; }
    .quiz.quizWithBGImage .quizOptionButton focus {
      border: dotted 1px #000; }
    .quiz.quizWithBGImage .quizOptionButton span {
      background: url("../../img/boxlink-arrow.png") no-repeat right center;
      padding-right: 25px; }

.quiz.quizProgressBar .quizProgressBarQuestions {
  background-color: white;
  padding: 5px;
  position: relative;
  margin-bottom: 35px; }
  .quiz.quizProgressBar .quizProgressBarQuestions .quizProgressBarQuestion {
    color: #22508E;
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    position: absolute;
    top: 2px;
    padding: 0;
    border: none;
    background: none;
    cursor: text; }

.quiz.quizProgressBar .quizProgressBarDots {
  background-color: #eeece4;
  border: 1px solid #eeece4;
  border-radius: 18px;
  height: 10px;
  padding: 5px;
  position: relative; }

.quiz.quizProgressBar .quizProgressDots {
  background-color: white;
  border-radius: 100%;
  cursor: pointer;
  display: block;
  height: 12px;
  left: 0;
  position: absolute;
  top: 4px;
  width: 12px;
  box-shadow: none;
  border: 0px solid gainsboro; }
  .quiz.quizProgressBar .quizProgressDots.active {
    background-color: #099696;
    height: 16px;
    width: 16px;
    left: 0;
    position: absolute;
    top: 2px; }
  .quiz.quizProgressBar .quizProgressDots.firstactive {
    background-color: #099696;
    height: 16px;
    width: 16px;
    position: absolute;
    top: 2px; }
  .quiz.quizProgressBar .quizProgressDots.progressActive {
    background-color: #099696;
    height: 16px;
    width: 16px;
    position: absolute;
    top: 2px; }

.quizWithBGImage.questionOption1 .quizQuestionOption {
  height: 450px; }

.quizWithBGImage.questionOption2 .quizQuestionOption, .quizWithBGImage.questionOption3 .quizQuestionOption, .quizWithBGImage.questionOption4 .quizQuestionOption, .quizWithBGImage.questionOption5 .quizQuestionOption {
  height: 225px; }

.quizWithBGImage.questionOption1, .quizWithBGImage.questionOption4 {
  width: 50%; }

.quizWithBGImage.questionOption2, .quizWithBGImage.questionOption3 {
  width: 25%; }

#question3 .quizWithBGImage .questionOption2 {
  height: 450px; }
  #question3 .quizWithBGImage .questionOption2 .quizQuestionOption {
    height: 450px; }

#question3 .quizWithBGImage.questionOption2 {
  widht: 50%; }

#question2 .quizWithBGImage.questionOption3, #question2 .quizWithBGImage.questionOption4, #question2 .quizWithBGImage.questionOption5 {
  width: 25%; }

.quizProgressBar {
  background: white;
  border: solid 1px white;
  padding: 20px 0;
  border-color: white;
  box-shadow: 0 0 10px #9ecaed; }

.progressDotActive {
  width: 2%;
  background: #099696;
  height: 10px; }

.quizRadioImg {
  float: left;
  width: 100px; }

.hideQuizTotalBox .quizResultContainer {
  display: none; }

/* Mobile start */
@media only screen and (max-width: 767px) {
  .questionWithCheck .formControl-radio {
    clear: both;
    display: block; } }

@media only screen and (max-width: 420px) {
  .questionWithRadio .formControl-radio, .questionWithCheck .formControl-radio {
    clear: both;
    display: block;
    float: left;
    width: 6%; }
  .questionWithRadio .genericFormGroup label, .questionWithCheck .genericFormGroup label {
    display: block;
    float: left;
    width: 50%; }
  .quizRadioImg {
    width: 100%; }
  .questionWithImage .quizQuestion {
    width: 60%; }
  .questionWithImage .quesLeftCaption, .questionWithImage .quesRightCaption, .questionWithImage .imgContainer {
    display: block;
    width: 100%; }
  .quiz.quizProgressBar .quizProgressBarQuestions {
    margin-bottom: 15px; }
    .quiz.quizProgressBar .quizProgressBarQuestions .quizProgressBarQuestion {
      font-size: 12px;
      font-weight: 700; }
  .quiz.quizWithBGImage {
    width: 100%;
    display: block; }
    .quiz.quizWithBGImage .quizQuestionOption {
      width: 100%;
      display: block;
      background: no-repeat;
      background-position: center center;
      background-attachment: scroll;
      background-size: 100% 100%; }
  .quizWithBGImage.questionOption1, .quizWithBGImage.questionOption4, .quizWithBGImage.questionOption2, .quizWithBGImage.questionOption3 {
    width: 100%; }
  .quizWithBGImage #question3 .quizWithBGImage.questionOption2 {
    width: 100%; }
  .quizWithBGImage #question2 .quizWithBGImage.questionOption3, .quizWithBGImage #question2 .quizWithBGImage.questionOption4, .quizWithBGImage #question2 .quizWithBGImage.questionOption5 {
    width: 100%; } }
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* all other colors*/
/* BUTTONS
----------------------------------*/
.ratingsandreviews {
  padding: 20px;
  border: 1px solid #D5D1CE; }
  .ratingsandreviews .gig-comments-container {
    width: auto !important; }
  .ratingsandreviews textarea.gig-comments-textarea {
    height: 180px; }
  .ratingsandreviews div.gig-comments-commentList-header-commentsCount, .ratingsandreviews div.gig-comments-headerLinks {
    padding-top: 0px; }
  .ratingsandreviews div.gig-comments-dottedLine {
    background-image: none;
    height: 1px;
    border-bottom: 1px dotted #D5D1CE;
    margin-top: 5px; }
  .ratingsandreviews div.gig-comments-commentBox-bottom {
    border-top: none; }
  .ratingsandreviews div.gig-comments-comment-body {
    color: #635a54; }
  .ratingsandreviews div.gig-comments-headerText {
    color: #f36633;
    font-weight: 700; }
  .ratingsandreviews div.gig-comments-textarea-wrapper {
    height: 180px; }
  .ratingsandreviews div.gig-comments-commentBox-bottom {
    margin-top: 10px; }
  .ratingsandreviews div.gig-comments-star {
    background-image: url("../../img/review-and-ratings/star_grey.gif");
    width: 15px;
    height: 14px; }
  .ratingsandreviews div.gig-comments-star-full {
    background-image: url("../../img/review-and-ratings/Favourite.gif"); }
  .ratingsandreviews div.gig-comments-providerIcons {
    background-image: url("../../img/review-and-ratings/ButtonLogin_Icons.png"); }
  .ratingsandreviews div.gig-comments-star-editable, .ratingsandreviews div.gig-comments-star-editable-empty, .ratingsandreviews div.gig-comments-addComment-ratings-error, .ratingsandreviews div.gig-comments-star-myRating {
    background-image: url("../../img/review-and-ratings/star_icon_big.png"); }
  .ratingsandreviews div.gig-comments-vote-up {
    background-image: url("../../img/review-and-ratings/thumbsup_hover.png"); }
  .ratingsandreviews div.gig-comments-expand-arrow {
    background-image: url("../../img/review-and-ratings/icon_ExpandReply.png"); }
  .ratingsandreviews div.gig-comments-collapse-arrow {
    background-image: url("../../img/review-and-ratings/icon_CollapsReply.png");
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block;
    height: 13px;
    vertical-align: bottom;
    width: 10px; }
  .ratingsandreviews div.gig-comments-close-icon {
    background-image: url("../../img/review-and-ratings/overlay-close-icon.png"); }
  .ratingsandreviews div.gig-comments-star-editable-full, .ratingsandreviews div.gig-comments-star-myRating-full, .ratingsandreviews div.gig-comments-addComment-ratings-error, .ratingsandreviews div.gig-comments-star-editable-full {
    background-image: url("../../img/review-and-ratings/star_selected_big.png"); }
  .ratingsandreviews a.gig-comments-headerLinks-rss, .ratingsandreviews a.gig-comments-headerLinks-subscribe {
    text-decoration: none; }
    .ratingsandreviews a.gig-comments-headerLinks-rss:hover, .ratingsandreviews a.gig-comments-headerLinks-rss:link, .ratingsandreviews a.gig-comments-headerLinks-rss:active, .ratingsandreviews a.gig-comments-headerLinks-rss:visited, .ratingsandreviews a.gig-comments-headerLinks-subscribe:hover, .ratingsandreviews a.gig-comments-headerLinks-subscribe:link, .ratingsandreviews a.gig-comments-headerLinks-subscribe:active, .ratingsandreviews a.gig-comments-headerLinks-subscribe:visited {
      text-decoration: none; }
  .ratingsandreviews a.gig-comments-button {
    background: #f36633;
    border: 1px solid #D5D1CE;
    border-radius: 0;
    color: white;
    cursor: pointer;
    display: inline-block;
    padding: 3px 2px; }
    .ratingsandreviews a.gig-comments-button:link, .ratingsandreviews a.gig-comments-button:active, .ratingsandreviews a.gig-comments-button:visited {
      background: #f36633;
      border: 1px solid #D5D1CE;
      border-radius: 0;
      color: white;
      cursor: pointer;
      display: inline-block;
      padding: 3px 2px; }
    .ratingsandreviews a.gig-comments-button.gig-comments-button-vote {
      background: none;
      padding: 5px; }
  .ratingsandreviews a.gig-comments-button-post {
    background: #f36633;
    border: 1px solid #D5D1CE;
    border-radius: 0;
    color: white;
    cursor: pointer;
    display: inline-block;
    padding: 2px 3px; }
    .ratingsandreviews a.gig-comments-button-post:hover, .ratingsandreviews a.gig-comments-button-post:link, .ratingsandreviews a.gig-comments-button-post:active, .ratingsandreviews a.gig-comments-button-post:visited {
      background: #f36633;
      border: 1px solid #D5D1CE;
      border-radius: 0;
      color: white;
      cursor: pointer;
      display: inline-block;
      padding: 2px 3px; }
  .ratingsandreviews a.gig-comments-button-ok {
    background: #f36633;
    border: 1px solid #D5D1CE;
    border-radius: 0;
    color: white;
    cursor: pointer;
    display: inline-block;
    padding: 2px 3px; }
    .ratingsandreviews a.gig-comments-button-ok:hover, .ratingsandreviews a.gig-comments-button-ok:link, .ratingsandreviews a.gig-comments-button-ok:active, .ratingsandreviews a.gig-comments-button-ok:visited {
      background: #f36633;
      border: 1px solid #D5D1CE;
      border-radius: 0;
      color: white;
      cursor: pointer;
      display: inline-block;
      padding: 2px 3px; }
  .ratingsandreviews a.gig-comments-dropdown {
    padding: 2px;
    background: none; }
    .ratingsandreviews a.gig-comments-dropdown:link, .ratingsandreviews a.gig-comments-dropdown:active, .ratingsandreviews a.gig-comments-dropdown:visited {
      padding: 2px;
      background: none; }
  .ratingsandreviews span.gig-comments-replies-length {
    text-decoration: none; }
  .ratingsandreviews span.gig-comments-username {
    color: #f36633; }
  .ratingsandreviews .gig-rating-writeYourReview:link, .ratingsandreviews .gig-rating-writeYourReview:active, .ratingsandreviews .gig-rating-writeYourReview:visited {
    background: #f36633;
    border: 1px solid #D5D1CE;
    border-radius: 0;
    color: white;
    cursor: pointer;
    display: inline-block;
    padding: 3px 2px; }
  .ratingsandreviews .gig-comments-linksContainer li {
    background: #f36633;
    border: 1px solid #D5D1CE;
    border-radius: 0;
    color: white;
    cursor: pointer;
    display: inline-block;
    padding: 2px 3px; }
    .ratingsandreviews .gig-comments-linksContainer li:after {
      background: none; }
  .ratingsandreviews .gig-composebox-post {
    background: #f36633;
    border: 1px solid #D5D1CE;
    border-radius: 0;
    color: white;
    cursor: pointer;
    display: inline-block;
    padding: 2px 3px;
    padding: 3px 25px; }
    .ratingsandreviews .gig-composebox-post:hover {
      background: #f36633;
      border: 1px solid #D5D1CE;
      border-radius: 0;
      color: white;
      cursor: pointer;
      display: inline-block;
      padding: 2px 3px; }
  .ratingsandreviews .gig-comments-rss a:link, .ratingsandreviews .gig-comments-rss a:visited {
    color: white; }
  .ratingsandreviews .gig-comment-repliesArrow-text {
    color: white; }
  .ratingsandreviews .gig-comment-rating-star-full,
  .ratingsandreviews .gig-composebox-rating-star-full,
  .ratingsandreviews .gig-selfreview-rating-star-full {
    background-image: url("../../img/review-and-ratings/Favourite.gif"); }
  .ratingsandreviews .gig-rating-star {
    background-image: url("../../img/review-and-ratings/star_grey_big.png"); }
  .ratingsandreviews .gig-rating-star-full, .ratingsandreviews .gig-selfreview-rating-star.gig-selfreview-rating-star-full {
    background-image: url("../../img/review-and-ratings/star_selected_big.png"); }
  .ratingsandreviews .gig-rating-star-half {
    background-image: url("../../img/review-and-ratings/Star_half_big.png"); }
  .ratingsandreviews .gig-comment-vote-pos .gig-comment-vote-with-value {
    background-image: url("../../img/review-and-ratings/thumbsup_hover.png"); }
  .ratingsandreviews .gig-composebox-rating-star.gig-composebox-rating-star-full {
    background-image: url("../../img/review-and-ratings/star_selected_big.png"); }
  .ratingsandreviews .gig-rating-readReviewsLink {
    color: #05abe0;
    text-decoration: none; }
    .ratingsandreviews .gig-rating-readReviewsLink:active, .ratingsandreviews .gig-rating-readReviewsLink:hover, .ratingsandreviews .gig-rating-readReviewsLink:visited {
      color: #05abe0;
      text-decoration: none; }
  .ratingsandreviews textarea.gig-comments-textarea {
    background-image: none; }
  .ratingsandreviews .gig-comment {
    background: white;
    margin-bottom: 10px; }
  .ratingsandreviews .gig-comment-title,
  .ratingsandreviews .gig-comment-photo,
  .ratingsandreviews .gig-comment-data {
    padding: 5px; }
  .ratingsandreviews .reviewPageDetails.hideLikeLink .gig-comment-likeLink, .ratingsandreviews .reviewPageDetails.hideLikeLink .gig-comment-vote-posneg {
    display: none; }
  .ratingsandreviews .hideCommentReply .gig-comment-replyLink,
  .ratingsandreviews .hideShareButton .gig-comment-shareLink,
  .ratingsandreviews .hideOtherComments .gig-comments-comments,
  .ratingsandreviews .hideHeaderBar .gig-comments-header {
    display: none; }

div.gig-comments-star-editable-full, div.gig-comments-star-myRating-full,
div.gig-comments-addComment-ratings-error div.gig-comments-star-editable-full {
  background-image: url("../../img/review-and-ratings/star_selected_big.png"); }
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* all other colors*/
/* BUTTONS
----------------------------------*/
.readmessage .messageResultContainer ul {
  padding-left: 0; }
  .readmessage .messageResultContainer ul li {
    list-style-type: none; }
    .readmessage .messageResultContainer ul li .msgTitle {
      min-width: 130px;
      display: inline-block; }

.readmessage .readmessagaeContent .messageResultContainer ul.messageList li a {
  background: #f36633;
  border: 1px solid #D5D1CE;
  border-radius: 0;
  color: white;
  cursor: pointer;
  display: inline-block;
  padding: 5px 20px;
  font-weight: 700; }

.readmessage .readmessagaeContent .messageResultContainer ul.messageList li.readMessageDone a {
  background: #e0e0e0;
  color: #f36633;
  font-weight: normal; }

.readMessageOverlayContainer .overlay-bg {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  z-index: 1000;
  /* high z-index */
  background: #000;
  /* fallback */
  background: rgba(0, 0, 0, 0.75);
  text-align: center; }

.readMessageOverlayContainer .overlay-content {
  background: none repeat scroll 0 0 white;
  border: 5px solid #D5D1CE;
  border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  -moz-border-radius: 10px 10px 10px 10px;
  display: inline-block;
  width: 40%;
  min-height: 80px;
  min-width: 80px;
  padding: 10px 10px 10px;
  position: relative;
  text-align: left;
  top: 150px; }

.readMessageOverlayContainer .overlay-close {
  background: url("../../img/overlay-close-icon.png") no-repeat scroll 0 0/20px auto rgba(0, 0, 0, 0);
  cursor: pointer;
  display: none;
  font-size: 25px;
  height: 20px;
  position: absolute;
  right: 3px;
  top: 5px;
  width: 20px;
  z-index: 9999; }

.readMessageOverlayContainer .close-btn:hover {
  background: #05abe0; }

