/*--------------------------------------------------------------------------*/
/*page notification session message begin*/
.pagenotification{
    padding: 15px 25px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size:16px;
    border-radius: 25px;
    position: fixed; 
    /*width: auto; */
    /* top:50%; 
    left: 40%; */
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 20%;
    z-index: 99999999;
}

.pagenotification i { 
  padding-right: 5px;
  color: #57E964;
}

.noticlbtn{
    margin-left: 15px;
    color: white;
    font-weight: 400;
    float: right;
    font-size: 22px;
    line-height: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.noticlbtn:hover {
    /*font-size: 23px;*/
}

/*page notification session message end*/

.ctaWhatsapp{
  z-index: 9999; 
  position: fixed;
  bottom: 20px; 
  left: 10px; 
}

.ctaWhatsapp i{
  font-size: 40px;
  height: 50px; 
  width: 50px;
  text-align: center;
  padding:4px 4px;
  color:#3BC04D;
  border-radius: 50px; 
  background: #ffffff;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.myStyleShadow{
    /*box-shadow: 0 2px 4px 0 rgba(5,47,95,.04),0 12px 16px 0 rgba(52,105,203,.12);*/
    box-shadow: 0 0 8px 0 rgba(0,0,0,.08),0 0 15px 0 rgba(0,0,0,.02),0 0 20px 4px rgba(0,0,0,.06);
    transition: .3s !important;
}

@media only screen and (min-width: 768px) {
    /* For Desktop: */
    .largeScreenViewOnly {
        visibility: visible;
        /*display: block;*/
    }

    .smallScreenViewOnly {
        visibility: hidden;
        display: none;
    }
}

@media only screen and (max-width: 600px) {
    /* For tablets: */
    .largeScreenViewOnly {
        visibility: hidden;
        display: none;
    }

    .smallScreenViewOnly {
        visibility: visible;
        display: ;
    }
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
    .largeScreenViewOnly {
        visibility: hidden;
        display: none;
    }

    .smallScreenViewOnly {
        visibility: visible;
        display: ;
    }
}

.productBackgroundGradient{
    background: -webkit-linear-gradient(bottom, rgb(193, 193, 193) 0%, rgb(219, 219, 219) 50%, rgb(167, 163, 159) 100%);
    background: -o-linear-gradient(bottom, rgb(193, 193, 193) 0%, rgb(219, 219, 219) 50%, rgb(167, 163, 159) 100%);
    background: -ms-linear-gradient(bottom, rgb(193, 193, 193) 0%, rgb(219, 219, 219) 50%, rgb(167, 163, 159) 100%);
    background: -moz-linear-gradient(bottom, rgb(193, 193, 193) 0%, rgb(219, 219, 219) 50%, rgb(167, 163, 159) 100%);
    background: linear-gradient(to top, rgb(193, 193, 193) 0%, rgb(219, 219, 219) 50%, rgb(167, 163, 159) 100%);

}