body {
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    font-family: 'Special Elite', cursive !important;
}
  
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

.top{
    align-items: center;
    width: 100%;
    height: 10vh !important;
    display: flex;
    justify-content: center;
}

.top img{
    height: 100%;
    margin-top: 30px;
    margin-left: 60px;
    margin-right: 60px;
}

.rotate {
    animation: rotation 3s infinite linear !important;
}

@keyframes rotation {
    from {
      transform: rotateY(0deg);
    }
    to {
      transform: rotateY(359deg);
    }
}

button{
    background: none;
    border: none;
    font-size: 20px !important;
    height: fit-content;
}

.top button {
    margin-left: 5px;
    margin-right: 5px;
    text-decoration: underline solid transparent;
    transition: all .5s ease;
}

@keyframes text-flicker {
    0% {
      opacity:0.1;
      text-shadow: 0px 0px 29px rgb(121, 30, 121);
    }
    
    2% {
      opacity:1;
      text-shadow: 0px 0px 29px rgb(121, 30, 121);
    }
    8% {
      opacity:0.1;
      text-shadow: 0px 0px 29px rgb(121, 30, 121);
    }
    9% {
      opacity:1;
      text-shadow: 0px 0px 29px rgb(121, 30, 121);
    }
    12% {
      opacity:0.1;
      text-shadow: 0px 0px rgb(121, 30, 121);
    }
    20% {
      opacity:1;
      text-shadow: 0px 0px 29px rgb(121, 30, 121);
    }
    25% {
      opacity:0.3;
      text-shadow: 0px 0px 29px rgb(121, 30, 121);
    }
    30% {
      opacity:1;
      text-shadow: 0px 0px 29px rgb(121, 30, 121);
    }
    
    70% {
      opacity:0.7;
      text-shadow: 0px 0px 29px rgb(121, 30, 121);
    }
    
    72% {
      opacity:0.2;
      text-shadow:0px 0px 29px rgb(121, 30, 121);
    }
    
    77% {
      opacity:.9;
      text-shadow: 0px 0px 29px rgb(121, 30, 121);
    }
    100% {
      opacity:.9;
      text-shadow: 0px 0px 29px rgb(121, 30, 121);
    }
  }

.top button:hover{
    text-decoration: underline solid Currentcolor;
    color: rgb(121, 30, 121);
    animation: text-flicker 3s linear infinite;
}
/* TEST BOOTSTRAP */
.section-products {
    padding: 80px 0 54px;
}

.section-products .header {
    margin-bottom: 50px;
}

.section-products .header h3 {
    font-size: 1rem;
    color: rgb(121, 30, 121); 
    font-weight: 500;
}

.section-products .header h2 {
    font-size: 2.2rem;
    font-weight: 400;
    color: #444444; 
}

.section-products .single-product {
    margin-bottom: 26px;
}

.section-products .single-product .part-1 {
    position: relative;
    height: 290px;
    max-height: 290px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 15px;
    animation: border-flicker 1s linear infinite;
}

@keyframes border-flicker {
    0% {
    
      -webkit-box-shadow: 0px 0px 38px 4px rgba(121, 30, 121, 0.73);
  -moz-box-shadow: 0px 0px 38px 4px rgba(121, 30, 121, 0.73);
  box-shadow: 0px 0px 38px 4px rgba(134, 38, 134, 0.73);
    }
    50% {
    
      -webkit-box-shadow: 0px 0px 38px 4px rgba(121, 30, 121, 0.73);
  -moz-box-shadow: 0px 0px 38px 4px rgba(121, 30, 121, 0.73);
  box-shadow: 0px 0px 38px 4px rgba(243, 8, 243, 0.73);
    }
    100% {
        -webkit-box-shadow: 0px 0px 38px 4px rgba(121, 30, 121, 0.73);
        -moz-box-shadow: 0px 0px 38px 4px rgba(121, 30, 121, 0.73);
        box-shadow: 0px 0px 38px 4px rgba(134, 38, 134, 0.73);
    }
  }  

.section-products .single-product .part-1::before {
		position: absolute;
		content: "";
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
		transition: all 0.3s;
}

.section-products .single-product:hover .part-1::before {
		transform: scale(1.2,1.2) rotate(5deg);
}

.section-products #product-1 .part-1::before {
    background: url("../images/p1front.png") no-repeat center center;
    margin: auto;
    background-size: cover;
}

.section-products #product-2 .part-1::before {
    background: url("../images/WHITE\ FRONTtest.png") no-repeat center;
    background-size: cover;
}

.section-products #product-3 .part-1::before {
    background: url("../images/placeholder.jpg") no-repeat center;
    background-size: cover;
}

.section-products #product-4 .part-1::before {
    background: url("../images/placeholder.jpg") no-repeat center;
    background-size: cover;
}

.section-products .single-product .part-1 .discount,
.section-products .single-product .part-1 .new {
    position: absolute;
    top: 15px;
    left: 20px;
    color: #ffffff;
    background-color: rgb(121, 30, 121);
    padding: 2px 8px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.section-products .single-product .part-1 .new {
    left: 0;
    background-color: #444444;
}

.section-products .single-product .part-1 ul {
    position: absolute;
    bottom: -41px;
    left: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    opacity: 0;
    transition: bottom 0.5s, opacity 0.5s;
}

.section-products .single-product:hover .part-1 ul {
    bottom: 30px;
    opacity: 1;
}

.section-products .single-product .part-1 ul li {
    display: inline-block;
    margin-right: 4px;
}

.section-products .single-product .part-1 ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #ffffff;
    color: #444444;
    text-align: center;
    box-shadow: 0 2px 20px rgb(50 50 50 / 10%);
    transition: color 0.2s;
}

.section-products .single-product .part-1 ul li a:hover {
    color: rgb(121, 30, 121);
}

.section-products .single-product .part-2 .product-title {
    font-size: 1rem;
}

.section-products .single-product .part-2 h4 {
    display: inline-block;
    font-size: 1rem;
}

.section-products .single-product .part-2 .product-old-price {
    position: relative;
    padding: 0 7px;
    margin-right: 2px;
    opacity: 0.6;
}

.section-products .single-product .part-2 .product-old-price::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #444444;
    transform: translateY(-50%);
}


.prodotto {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center;
  text-align: center;
  margin-top: 10vh;
  width: 80%;
  height: 70vh;
}

