body{
  font-family: 'Josefin Sans', sans-serif;
}

@font-face {
  font-family: ARLight;
  src: url("../fonts/ARLight.otf");
  unicode-range : U+0600-06FF;
}

@font-face {
  font-family: ARMedium;
  src: url("../fonts/ARMedium.otf");
  unicode-range : U+0600-06FF;
  font-size: 1.25rem;
}


.logo-navbar{
  width: auto;
  height: 64px;
}

nav .nav-link{
  text-transform: uppercase;
  color: #af7cb6;
}

.product{
  box-shadow:  0px 2px 5px #cfb1d3;
  transition: .2s all;
  /* border-radius: 50px; */
  padding-top: 15px;
  margin-top: 15px;
}

.product:hover{
  box-shadow:  0px 5px 20px #787872;
}

.img-product{
  max-width: 170px;
  height: auto;
}


.navbar-toggler{
  border: none !important;
}

.img-icon{
  width: 55px;
  height: 55px;
}

.img-icon-language{
  width: 40px;
  height: 40px;
}

.navbar-toggler{
  display: none !important;
}


.button-action-primary:hover{
  background-color: #cfb1d3 !important;
}

.color-red-primary{
  color: #c34c46;
}

.button-action-primary{
  text-transform: uppercase;
  background-color: #af7cb6;
  border-color: #af7cb6;
  color: white !important;
}

.button-action-secondary{
  text-transform: uppercase;
  color: #af7cb6;
  border-color: #af7cb6;
}

.button-action-secondary:hover{
  background-color: #cfb1d3 !important;
  color: white !important;
}


.reassurance{
  position: relative;
}

.reassurance .fas{
  color: #c34c46 !important;
}

.reassurance:after{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255,255,255,.3);
}

.reassurance-header, .reassurance-text{
  color: #444449;
  position: relative;
  z-index: 2;
}

@keyframes cart-counter-animation {
   0% {
    transform: rotateZ(0deg);
   }
   40% {
    transform: rotateZ(0deg) scale(1);
   }
   45% {
    transform: rotateZ(42.5deg) scale(1.5);
   }
   50% {
    transform: rotateZ(-42.5deg);
   }
   55% {
    transform: rotateZ(42.5deg);
   }
   60% {
    transform: rotateZ(-42.5deg);
   }
   65% {
    transform: rotateZ(42.5deg) scale(1.5);
   }
   70% {
    transform: rotateZ(0deg) scale(1);
   }
   100% {
    transform: rotateZ(0deg);
   }
}



@keyframes vibration-animation {
   0% {
    transform: rotateZ(0deg);
   }
   45% {
    transform: rotateZ(0deg) ;
   }
   47% {
    transform: rotateZ(2.5deg);
   }
   48% {
    transform: rotateZ(-2.5deg);
   }
   49% {
    transform: rotateZ(2.5deg);
   }
   51% {
    transform: rotateZ(-2.5deg);
   }
   53% {
    transform: rotateZ(2.5deg);
   }
   55% {
    transform: rotateZ(0deg);
   }
   100% {
    transform: rotateZ(0deg);
   }
}

.vibration-effect{
  animation: vibration-animation 6s infinite linear alternate;
}

@keyframes zoom-animation {
   0% {
    transform: scale(1);
   }
   48% {
    transform: scale(1) ;
   }
   49% {
    transform: scale(1.05);
   }
   50% {
    transform: scale(1);
   }
   51% {
    transform: scale(1) ;
   }
   52% {
    transform: scale(1.05);
   }
   53% {
    transform: scale(1);
   }
   100% {
    transform: scale(1);
   }
}

.zoom-effect{
  animation: zoom-animation 6s infinite linear alternate;
}


.navbar-cart-items-counter{
  position: absolute;
  height: 20px;
  width: 20px;
  bottom: 10px;
  right: 5px;
  background-color: #af7cb6;
  border: 1px solid #af7cb6;
  color: white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cart-counter-animation 2.5s infinite linear alternate;
}

.quantity-minus, .quantity-plus{
  cursor: pointer;
}

.img-thumbnail-cart{
  height: 60px;
  width: auto;
}

.variant-size{
  border: 1px solid #af7cb6;
  color: #af7cb6;
}
.variant-size.selected{
  background-color : #af7cb6;
  color: white;
}

.picture-viewer-thumbnail{
  max-width: 85px;
  margin: 5px;
}

.picture-viewer-thumbnail.selected{
  border: 1px solid #af7cb6;
}

.mobile-picture-viewer-thumbnail{
  max-width: 55px;
  margin: 5px;
}

.mobile-picture-viewer-thumbnail.selected{
  border: 1px solid #af7cb6;
}
