/*Sectiune pentru meniu */
.dropbtn {
  background-color: #34cddb00;
  color: rgb(0, 0, 0);
  padding: 10px;
  font-size: 40px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: fixed;
  display: inline-block;
  z-index: 999;
  right: 4px;
  
  
}

.dropdown-content {
  display: none;
  position: fixed;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.327);
  height: 84%;
  right: 0;
  top: 0;
  
  width: 300px;
  background: rgba(0, 0, 0, 0.778);
  backdrop-filter: blur(15px);
  
  overflow: hidden;
  
  
  
  padding-top: 15%;
  
}

.dropdown-content a {
  color: rgba(189, 189, 189, 0.758);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  padding: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
 
  font-size: larger;
  
  

}

.dropdown a:hover {
  color: #ffffff;
}

.show {
  display: block;
  
  
}

.circle-container {
  height: 50px;
  width: 50px;
  background-color: #55555500;
  margin-top: 30%;
  margin-right: 50%;
}

.circle1 {
  height: 50px;
  width: 50px;
  background-color: #55555500;
  border-radius: 50%;

  border: 2px solid rgb(159, 141, 141);
  --mask: linear-gradient(red, red) padding-box,
    conic-gradient(red var(--t, 82%), transparent 0%) border-box;
  -webkit-mask: var(--mask);
  mask: var(--mask);
  rotate: -55deg;
}
@keyframes t {
  to {
    --t: 82%;
  }
}

.circle2 {
  height: 50px;
  width: 50px;
  background-color: #55555500;
  border-radius: 50%;

  border: 2px solid rgb(255, 255, 255);
  --mask: linear-gradient(red, red) padding-box,
    conic-gradient(red var(--p, 82%), transparent 0%) border-box;
  -webkit-mask: var(--mask);
  mask: var(--mask);
  rotate: -55deg;

  margin-top: -106%;
}

.circle-container:hover .circle2 {
  animation: p 0.5s linear;
}

.circle-container:hover .circle1 {
  border: 2px solid rgb(255, 255, 255);
  transition-delay: 0.5s;
}
@keyframes p {
  to {
    --p: 82%;
  }
}

.h3 {
  position: relative;
  margin-top: -80%;
  margin-left: -110%;
  font-size: 60%;
  z-index: 1000;
  font-family: "Times New Roman", Times, serif;
  color:#ffffff;
}

.arata {
  display: none;
}

.cerc1 {
  height: 50px;
  width: 50px;
  background-color: #55555500;
  border-radius: 50%;

  border: 2px solid rgb(251, 253, 141);
  align-items: center;
} 

.x-btn {
  background-color: #34cddb00;
  color: rgb(0, 0, 0);
  padding: 10px;
  font-size: 40px;
  border: none;
  margin: 6%;
}

.x-container {
  background-color: #34cddb00;
  color: rgb(255, 254, 254);
  padding: 10px;
  font-size: 40px;
  border: none;
  cursor: pointer;
  display: none;
}
#x {
  margin-top: -9%;
}

.aratare {
  display: block;
  z-index: 1000;
  position: relative;
}

.aratare:hover .cerc1 {
  background-color: #555555fb;
  transition-property: width;
  transition-duration: 1s;
}

@property --p {
  syntax: "<percentage>";
  initial-value: 0%;
  inherits: true;
}
/*end-meniu*/