/*!
 * Star Rating
 * @version: 3.1.4
 * @author: Paul Ryley (http://geminilabs.io)
 * @url: https://github.com/pryley/star-rating.js
 * @license: MIT
 */
 .gl-star-rating[data-star-rating] {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 6px;
  margin-bottom: 6px;
}

.gl-star-rating[data-star-rating] > select {
overflow: hidden;
visibility: visible !important;
position: absolute !important;
top: 0;
width: 1px;
height: 1px;
clip: rect(1px, 1px, 1px, 1px);
-webkit-clip-path: circle(1px at 0 0);
        clip-path: circle(1px at 0 0);
white-space: nowrap;
}

.gl-star-rating[data-star-rating] > select::before,
.gl-star-rating[data-star-rating] > select::after {
display: none !important;
}

.gl-star-rating-ltr[data-star-rating] > select {
left: 0;
}

.gl-star-rating-rtl[data-star-rating] > select {
right: 0;
}

.gl-star-rating[data-star-rating] > select:focus + .gl-star-rating-stars::before {
opacity: 0.5;
display: block;
position: absolute;
width: 100%;
height: 100%;
content: '';
outline: dotted 1px currentColor;
pointer-events: none;
}

.gl-star-rating-stars {
position: relative;
display: inline-block;
height: 26px;
vertical-align: middle;
cursor: pointer;
}

.gl-star-rating-stars > span {
display: inline-block;
width: 24px;
height: 24px;
background-size: 24px;
background-repeat: no-repeat;
background-image: url(../img/star-empty.svg);
margin: 0 4px 0 0;
}

.gl-star-rating-stars > span:last-of-type {
margin-right: 0;
}

.gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars > span {
margin: 0 0 0 4px;
}

.gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars > span:last-of-type {
margin-left: 0;
}

.gl-star-rating-stars.s10 > span:nth-child(1),
.gl-star-rating-stars.s20 > span:nth-child(-1n+2),
.gl-star-rating-stars.s30 > span:nth-child(-1n+3),
.gl-star-rating-stars.s40 > span:nth-child(-1n+4),
.gl-star-rating-stars.s50 > span:nth-child(-1n+5),
.gl-star-rating-stars.s60 > span:nth-child(-1n+6),
.gl-star-rating-stars.s70 > span:nth-child(-1n+7),
.gl-star-rating-stars.s80 > span:nth-child(-1n+8),
.gl-star-rating-stars.s90 > span:nth-child(-1n+9),
.gl-star-rating-stars.s100 > span {
background-image: url(../img/star-full.svg);
}

.gl-star-rating-text {
display: inline-block;
position: relative;
height: 26px;
line-height: 26px;
font-size: 0.8em;
font-weight: 600;
color: #fff;
background-color: #1a1a1a;
white-space: nowrap;
vertical-align: middle;
padding: 0 8px 0 6px;
margin: 0 0 0 12px;
}

.gl-star-rating-text::before {
position: absolute;
top: 0;
left: -12px;
width: 0;
height: 0;
content: "";
border-style: solid;
border-width: 13px 12px 13px 0;
border-color: transparent #1a1a1a transparent transparent;
}

.gl-star-rating-rtl[data-star-rating] .gl-star-rating-text {
padding: 0 6px 0 12px;
margin: 0 12px 0 0;
}

.gl-star-rating-rtl[data-star-rating] .gl-star-rating-text::before {
left: unset;
right: -12px;
border-width: 13px 0 13px 12px;
border-color: transparent transparent transparent #1a1a1a;
}
/* Star rating CSS completed */

/* Snackbar CSS start */
.snackbar {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 2;
  left: 50%;
  transform: translate(-50%);
  bottom: 30px;
  font-size: 17px;
  box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2), 0px 6px 10px 0px rgba(0,0,0,0.14), 0px 1px 18px 0px rgba(0,0,0,0.12);
  border-radius: 4px;
}

.snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}
/* Snackbar CSS completed */

/* Share section CSS start */
.copy-link-wrapper {
  color: #555555;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  box-shadow: 1px 2px 15px #48484833;
  margin-bottom: 20px;
  cursor: pointer;
}
.copy-link-wrapper .card-link {
  padding: 10px;
}
.copy-link-wrapper .copy-link-icon-button {
  padding: 10px;
  font-size: 18px;
}
.qr-code-wrapper {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.qr-code-wrapper .qr-code-label {
  font-size: 14px;
  padding: 2px 10px;
  color: #555555;
  margin-bottom: 8px;
}
.qr-code-wrapper .qr-code-image {
  background-color: #fff;
  border-radius: 15px;
  min-width: 180px;
  max-width: 180px;
  border: 4px solid var(--theme-color);
}

/* .whatsapp share container CSS start */
.whatsapp-share-container {
  text-align: center;
}

.whatsapp-share-container .whatsapp-input-label {
  font-size: 14px;
  padding: 2px 10px;
  margin-bottom: 5px;
  display: inline-block;
  margin-bottom: 5px;
  color: #555555;
}
.whatsapp-input {
  text-align: left;
  display: flex;
}

.whatsapp-input input {
  -webkit-appearance: none;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  padding: 10px;
  outline: none;
  font-size: 12px;
  width: 100%;
  color: rgba(0, 0, 0, 0.6);
  padding-left: 40px;
}

.whatsapp-button {
  -webkit-appearance: none;
  padding: 5px 10px;
  font-size: 13px;
  background-color: #51B14D;
  opacity: 0.9;
  color: #fff;
  border: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 0 40px rgba(255, 251, 251, 0.1) inset;
  display: flex;
  align-items: center;
}

.whatsapp-button i {
  font-size: 16px;
  margin-right: 10px;
}

.input-wrapper {
  position: relative;
  flex: 1;
  border: 1px solid rgba(0,0,0,0.2);
}

.input-wrapper label {
  position: absolute;
  left: 10px;
  top: 10px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
}
/* .whatsapp share container CSS completed */
/* Share section CSS Completed */


/* Slideshow container */
.product-slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  margin-bottom: 15px;
}

/* Next & previous buttons */
.product-slide-previous, .product-slide-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  background-color: #242733;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 100;
  transition: 0.6s ease;
  border-radius: 50%;
  user-select: none;
}


/* Position the "next button" to the right */
.product-slide-next {
  right: 0;
  border-radius: 50%;
}
.product-description img {
  width: 100%;
}

/* On hover, add a black background color with a little bit see-through */
.product-slide-previous:hover, .product-slide-next:hover {
  background-color: rgba(102, 97, 97, 0.8);
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from { opacity: .4; }
  to { opacity: 1; }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .product-slide-previous, .product-slide-next { font-size: 11px; }
}


/* Modal CSS Start */
/* The Modal CSS (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
/* Modal CSS Completed */

/* Share Form in modal Start*/
.share-modal {
  padding-top: 0;
  justify-content: center;
  align-items: center;
  background-color: rgba(0,0,0,0.7);
}
.share-form {
  background-color: #F1F1F1;
  color: rgba(0,0,0,0.84);
}

.share-form .share-form-header {
  position: relative;
  padding: 20px 0;
}

.share-form .share-form-header .share-form-header-text {
  padding-top: 12px;
  margin: 0;
}

.share-form .share-form-header .close {
  top: 18px;
  color: #555555;
}

.share-form-buttons-container {
  margin-bottom: 40px;
}

.share-buttons-heading {
  position: relative;
  padding: 0 60px;
}

.share-buttons-heading .share-buttons-arrow {
  position: absolute;
  left: 35px;
  top: 16px;
  width: 30px;
  transform: rotateZ(15deg);
}

.share-buttons-heading .share-buttons-heading-text {
  text-align: left;
  font-family: Shadows Into Light;
  line-height: normal;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  color: #D34544;
  margin: 10px 0;
}

.share-buttons {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  padding: 0 60px;
  margin: 0;
}

.share-buttons .share-button {
  padding: 4px;
  list-style: none;
}

.share-buttons .share-button i {
  background-image: none;
  box-sizing: border-box;
  position: relative;
  margin: 0;
  overflow: hidden;
  line-height: 1.1em;
  color: #fff;
  display: block;
  cursor: pointer;
  font-size: 24px;
  height: 40px;
  width: 40px;
  text-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.share-button-whatsapp {
  background-color: #29a71a;
}

.share-button-sms {
  background-color: #1598d5;
}

.share-button-facebook {
  background-color: #3b5998;
}

.share-button-twitter {
  background-color: #2ba9e1;
}

.share-button-skype {
  background-color: #00aff0;
}

.share-button-pinterest {
  background-color: #cb2027;
}

.share-button-linkedin {
  background-color: #007bb6;
}

.share-button-telegram {
  background-color: #0088CC;
  font-size: 15px;
}

.share-button-instagram {
  background-color: #F18644;
}

.share-button-youtube {
  background-color: #E63631;
}

.share-button-mail {
  background-color: #939598;
}
/* Share Form in modal Completed*/

/* Social links CSS Start */
.social-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
}

.social-links .social-link {
  padding: 3px;
  list-style: none;
}

.social-links .social-link i {
  background-image: none;
  box-sizing: border-box;
  position: relative;
  margin: 0;
  overflow: hidden;
  line-height: 1.1em;
  color: #fff;
  display: block;
  cursor: pointer;
  font-size: 12px;
  padding: 0;
  height: 27px;
  width: 27px;
  text-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 0 40px rgba(255, 251, 251, 0.1) inset;
}

.social-link-whatsapp {
  background-color: #29a71a;
}

.social-link-sms {
  background-color: #1598d5;
}

.social-link-facebook {
  background-color: #3b5998;
}

.social-link-twitter {
  background-color: #2ba9e1;
}

.social-link-skype {
  background-color: #00aff0;
}

.social-link-pinterest {
  background-color: #cb2027;
}

.social-link-linkedin {
  background-color: #007bb6;
}

.social-link-telegram {
  background-color: #0088CC;
  font-size: 15px;
}

.social-link-instagram {
  background-color: #F18644;
}

.social-link-youtube {
  background-color: #E63631;
}

.social-link-mail {
  background-color: #939598;
}

/* Social links CSS Completed */

/* Animations classes start */
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInUpBig {
  0% {
      opacity: 0;
      -webkit-transform: translate3d(0, 2000px, 0);
      transform: translate3d(0, 2000px, 0);
  }
  100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
      opacity: 0;
      -webkit-transform: translate3d(0, 2000px, 0);
      transform: translate3d(0, 2000px, 0);
  }
  100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
  }
}


.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

/* Animations Classes Completed */

/* Links CSS Start */
.link-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 6px;
  background-color: var(--theme-color-light);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 0 40px rgba(255, 251, 251, 0.1) inset;
  margin-bottom: 20px;
  border-radius: 6px;
  color: #484848;
}
.link-card .link-icon {
  min-width: 45px;
  max-width: 45px;
  width: 100%;
  height: auto;
  margin-right: 10px;
  padding: 6px;
}

.link-card .link-icon img {
  width: 100%;
  border-radius: 6px;
}
.link-card .link-details {
  display: flex;
  flex-direction: column;
  margin-right: 20px;
}

.link-card .link-details .link-name {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}
.link-card .link-details .link-description {
  font-size: 13px;
  opacity: 0.6;
  line-height: 15px;
}
.link-card .link-arrow {
  margin-left: auto;
  margin-right: 10px;
}
/* Links CSS Completed */
