[class^="wcss-icon-"]:before, [class*=" wcss-icon-"]:before {
  font-family: "wcss-font";
  font-style: normal;
  font-weight: normal;
  speak: none;
 
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
 
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
 
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
 
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
 
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
 
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
 
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
 
.wcss-icon-link:before { content: '\e800'; } /* '' */
.wcss-icon-googleplus:before { content: '\e801'; } /* '' */
.wcss-icon-chat:before { content: '\e802'; } /* '' */
.wcss-icon-bookmark:before { content: '\e803'; } /* '' */
.wcss-icon-cancel:before { content: '\e804'; } /* '' */
.wcss-icon-left-big:before { content: '\e805'; } /* '' */
.wcss-icon-twitter:before { content: '\f099'; } /* '' */
.wcss-icon-facebook:before { content: '\f09a'; } /* '' */
.wcss-icon-mail-alt:before { content: '\f0e0'; } /* '' */
.wcss-icon-skype:before { content: '\f17e'; } /* '' */
.wcss-icon-whatsapp:before { content: '\f232'; } /* '' */

.wcss-spinner {
  margin: 100px auto;
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center;
  
  -webkit-animation: wcss-rotate 2.0s infinite linear;
  animation: wcss-rotate 2.0s infinite linear;
}
.wcss-dot1, .wcss-dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  border-radius: 100%; 
  -webkit-animation: wcss-bounce 2.0s infinite ease-in-out;
  animation: wcss-bounce 2.0s infinite ease-in-out;
}
.wcss-dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes wcss-rotate { 100% { -webkit-transform: rotate(360deg) }}
@keyframes wcss-rotate { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg) }}

@-webkit-keyframes wcss-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes wcss-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}




.wcss-popup * {
	box-sizing: border-box;
}
.wcss-popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate( -50%, -50% );
	width: 300px;
	box-shadow: 0 30px 90px -20px rgba(0,0,0,0.3);
	border-radius: 5px;
	display: none;
	z-index: 9999999;
}


.wcss-popup__header {
  display: flex;
  justify-content: space-between;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	text-align: center;
	margin-bottom: 10px;
  position: relative;
  align-items: center;
}
.wcss-popup__header-title {
  padding: 14px 5px 14px 15px;
  font-size: 18px;
}
.wcss-popup--close {
  background: red;
  font-size: 28px;
  padding: 9px 2px;
  color: #fff;
  cursor: pointer;
  border-radius: 0 5px 0 0;
  text-shadow: 0 0 10px rgba(0,0,0,.2);
}
.wcss-popup__footer {
	height: 20px;
}





.wcss-share {
	display: flex;
	flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.wcss-share > a {
	width: 33%;
	font-size: 45px;
	text-align: center;
	height: 90px;
	text-decoration: none;
	transition: all 100ms ease-in-out;
	outline: none;
	user-select: none;
	margin-bottom: 10px;
}
	.wcss-share > a:hover {
		transform: scale(1.1);
	}
.wcss-share > a > span {
	display: block;
	font-size: 12px;
	color: #21234a !important;
}
.wcss-share .wcss-icon-whatsapp { color: #25D366; }
.wcss-share .wcss-icon-mail-alt { color: #b92b27; }
.wcss-share .wcss-icon-link { color: #21759b; }
.wcss-share .wcss-icon-facebook { color: #3b5999; }
.wcss-share .wcss-icon-twitter { color: #55acee; }
.wcss-share .wcss-icon-googleplus { color: #dd4b39; }
.wcss-share .wcss-icon-skype { color: #00AFF0; }
.wcss-share .wcss-icon-chat { color: #0084ff; }
.wcss-share .wcss-icon-bookmark { color: #00b489; }




/* Link copied */
.wcss-link-copied {
  color: #1d9f75;
  font-weight: bold;
  text-align: center;
  padding: 40px 10px;
}


/* Save cart */
.wcss-save-cart {
  margin-top: 20px;
  padding: 10px;
  text-align: center;
  display: none;
}
.wcss-save-cart__message {
  font-size: 14px;
}
.wcss-save-cart input[type="text"] {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.wcss-save-cart input[type="submit"] {
  width: 100%;
}