/*
 Theme Name:     Hello Elementor Child
 Template:       hello-elementor
 Version:        1.0
 Text Domain:    hello-elementor-child
*/

@import url("../hello-elementor/style.css");

.user-dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 10px;
  border-radius: 10px;
  top: 100%;
  right: 0;
  z-index: 999;
  min-width: 200px;
}

.user-dropdown-menu.active {
  display: block;
}

.user-dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  text-decoration: none;
  color: #333;
  border-radius: 6px;
}

.user-dropdown-menu a:hover {
  background-color: #f5f5f5;
}

.user-dropdown-menu a:last-child {
  color: #f60; /* orange pour Déconnexion */
  font-weight: bold;
}


/* Button spinner */
.spinner {
  animation: rotate 1s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.spinner .path {
  stroke: #fff;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

.woocommerce-order{
  padding-top: 40px;
}

.woocommerce-thankyou-order-received{
  font-size: 24px;
  color: #20B0B3;
  font-weight: 600 !important;
}

.woocommerce-order-overview.woocommerce-thankyou-order-details{
  padding: 0;
}

.woocommerce-thankyou-order-received::before{
  content: '';

}

.woocommerce-thankyou-order-details li{
  line-height: 2 !important;
}

.woocommerce .woocommerce-customer-details address{
  border: 1px solid rgba(0,0,0,.1) !important;
}

table td, table th{
  border: 0.5px solid hsla(0,0%,50%,.502);
}






