.loader{
    width: 100vw;
    height: 100vh;
    position: fixed;
    opacity: 0.4;
    filter: alpha(opacity=40);
    background-color:#eceaea;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    z-index: 10000;
}


.spinner {
    width: 75px;
    height: 75px;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.05);
    border-top-color: #3ACADA;
    animation: spin 1s infinite linear;
    border-radius: 100%;
    border-style: solid;
}

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

.modal .btn-google{
  position: relative;
}

.modal .btn-google #googleRegisterBtn,
.modal .btn-google #googleLoginBtn{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.bg-green-100 .details div.text-success {
  font-size: 13px;
}

/* 
overflow: hidden;
max-width: 170px;
max-height: 50px;
margin: 0 auto;> */

#commentModal .container-start {
  display: flex; 
  justify-content: center; 
  align-items: center; 
  width: 100%; 
}

#commentModal .container-start .wrapper-start {
  display: flex; 
  padding: 0.75rem; 
  margin: 0.5rem; 
  margin-top: 0.5rem; 
  justify-content: center; 
  align-items: center; 
  width: 18rem; 
  height: 5rem; 
  border-radius: 0.25rem; 
}

#commentModal .container-start .element-start {
  display: flex; 
  margin-left: 0; 
  gap: 12px;
}

#commentModal .container-start .start{
  padding: 0.25rem; 
  margin: 0; 
  color: transparent; 
  width: 3rem; 
  border-radius: 0.125rem; 
  cursor: pointer; 
  fill: currentColor; 
  border: none;
  background-color:transparent;
}

#commentModal .container-start .start-wait{
  color: #ffc107; 
}

#commentModal .container-start .start-success{
  color: #ffc107; 
}

#commentModal .input-content {
  width: 100%;
  height: 15rem;
  border: none;
  padding: 10px;
  box-sizing: border-box;
  box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.1) inset;
-webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.1) inset;
-moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.1) inset;
}
@media screen and (min-width: 768px) {
  .delete-account{
    position: absolute;
    bottom: 0;
    left: 0;
  }

  #pills-profile{
    position: relative;
  }

}

.rotate-ico {
  animation: rotation 8s infinite linear;
}

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