 /* Wayra Click Order/Chat Floating Button */


.wayra-coc-floating-label {
    right: 85px;
    position: fixed;
    display: table;
    visibility: hidden;
    z-index: 9999;
    text-align: center;

	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

.wayra-coc-floating-label-text {
    color: #43474e;
    background: #f5f7f9;
    display: inline-block;
    padding: 7px;
    border-radius: 3px;
    font-size: 14px;
    bottom: 15px;
}

@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
}

/* Wayra Click Order/Chat Button */
.product_meta .wayra-coc-button {
    font-size: 1.16em !important;
}
/* BUTTON */
.wayra-coc-button {
  position: relative;
  display: inline-block;
  color: #fff;
  font-weight: 600;
  background: #151027B8;
  border: 1px solid #262340;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
  padding: 12px 24px;
  margin: 0 auto;
}

/* Before = Border Animation */
.wayra-coc-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  z-index: -1;
  border-radius: 50px;
  transition: 0.5s all ease;
  background: linear-gradient(135deg, #5611D6, #56CFE1, #FF009D);
}

/* After = Background Dark Layer */
.wayra-coc-button:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: 50px;
  background: #110d20;
  z-index: -2;
}

/* Hover Effect */
.wayra-coc-button:hover:before {
  width: 100%;
}

.wayra-coc-button svg {
	width: 1em;
	fill: white;
    margin-right: 5px;
    vertical-align: middle;
    margin-bottom: 2px !important;
}