* {
  margin: 0;
  padding: 0;
}
body {
  background-color: #f0ecff;
}
.img {
  width: 50px;
  height: 50px;
}
.card-title img {
  width: 100%;
  height: 300px;
}

.divLogout {
  display: none !important;
  /* height: 40px; */
}
.divLogout img {
  width: 40px;
  height: 40px;
}
.dataUser {
  cursor: pointer;
}
.alert {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 99999;
}
#taken,
#wrongResponse,
#error,
#errorPassword {
  font-size: 13px;
  color: red;
}
i {
  cursor: pointer;
}

.create {
  position: fixed;
  width: 60px;
  height: 60px;
  color: white;
  bottom: 12%;
  right: 5%;
  font-size: 45px;
  text-align: center;
  display: block;
  align-items: center;
  justify-content: center;
  line-height: 53px;
  cursor: pointer;
  display: none;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3);
}

.textarea {
  width: 100%;
  height: 60px;
  resize: none;
  border-color: #dee2e6;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
textarea:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  outline: 0;
}

.yourComment {
  width: 100%;
  outline: none;
  padding: 6px;
  padding-left: 12px;
  border-radius: 10px;
  border: 1px solid  #dee2e6;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin-right: 4px;
  margin-left: 4px;
}
.addComment [type="submit"] {
  width: 70px;
  border-radius: 8px;
  color: #4169e1;
  border-color: #4169e1;
  background-color: white;
  font-size: large;
  font-weight: 500;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.comments {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  -webkit-transition: max-height 0.3s ease-out;
  -moz-transition: max-height 0.3s ease-out;
  -ms-transition: max-height 0.3s ease-out;
  -o-transition: max-height 0.3s ease-out;
}

.comments.show {
  max-height: 700px;
  overflow: hidden;
  overflow: scroll;
  padding: 1rem;
}

.numberComent span {
  font-weight: 600;
  font-size: 40px;
  color: black;
}

.loader {
  position: fixed;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  border: 5px solid #4169e1;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-animation: rotation 1s linear infinite;
}

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