@keyframes alert-response{
    from {opacity :1;}
    to {opacity :0;}
}


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

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

/* LOADING */

.loading::after {
    border: 5px solid #f3f3f3;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border-top: 5px solid #555;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    content: "";
}

.loading {
    opacity: 0.5 !important;
}

/* CONTENT HEIGHT */
#admin-content {
    min-height: calc(100vh - 4rem);
}

/* TABS */

.tabsContainer a.active {
    background-color: #80C342;
    color: white;
}

.tabsContainer a {
}

  /* Go from zero to full opacity */
  @keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
  }
  
.tabcontent {
    display: none;
    border-top: none;
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
  }


.achievementsContent {
    display: none;
    border-top: none;
    animation: fadeEffect 1s
}

.photosContent {
    display: none;
    /*border: 1px solid #ccc;*/
    border-top: none;
    animation: fadeEffect 1s;
}



    .rating-container .note > span {
      line-height: 1;
      display: block; }
    .rating-container .note .stars {
      margin-top: 12px;
      display: flex;
      flex-flow: row nowrap;
      align-items: flex-start;
      justify-content: flex-start; }
      .rating-container .note .stars .star {
        opacity: 0.5;
        transition: all 0.3s ease; }
        .rating-container .note .stars .star.active {
          opacity: 1; }
        .rating-container .note .stars .star:not(:last-of-type) {
          margin-right: 5px; }
  
  .rating-container .global-note {
    font-size: 44px;
    font-weight: 700;
    line-height: 1; }
  
  .cta.note-artisan {
    flex-flow: column nowrap;
    padding: 20px;
    min-width: 165px;
    font-weight: 400; }
    .cta.note-artisan .icon {
      margin-bottom: 15px;
      margin-right: 0; }
    .cta.note-artisan strong {
      margin-right: 3px;
      font-size: 44px;
      line-height: 1; }

/* FORMS */

.toggle__bar {
    width: 30px;
}

.toggle__handle {
    width: 14px;
    height: 14px;
    top: 1px;
    left: 1px;
}

input:checked~.toggle__handle {
    transform: translateX(100%);
}

input:checked~.toggle__bar {
    --tw-bg-opacity: 1;
    background-color: #3b63ad;
}
input:checked {
    color: #70ba01;
}

input[type="file"] {
    opacity:0;
    position: absolute;
    z-index: -5;
    width: 1px;
    height: 1px;
}

/* LISTS */
ul.list-reset::-webkit-scrollbar {
    height: 4px;
}
ul.list-reset::-webkit-scrollbar-track {
    background-color: white;
}
ul.list-reset::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0, 0.15);
    border-radius: 999px;
}

/* CHECKBOX */
input[type="checkbox"] {
    background-color: rgb(244, 245, 247);
}

.stat {
    padding: 13.5px 25px;
    min-height: 121px;
    width: 164px;
    margin-bottom: 20px;
    line-height: 1;
}

.stat .info {
    font-size: 35px;
    margin-bottom: 5px; 
}

.tooltip {
	position: relative;
}

.tooltip .tooltiptext {
	position: absolute;
	font-size: 15px;
	min-width: 150px;
	max-width: 500px;
	background-color: rgba(0, 0, 0, 0.9);
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 10px;
	z-index: 1;
	bottom: 145%;
	transform: translateX(-50%);
	left: 50%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}

.stat .difference {
    font-size: 12px;
    font-weight: 400;
    margin-top: 5px;
    color: #2ecc71;
}

.star {
    opacity: 0.5;
}

.star.active {
    opacity: 1;
}

#evaluation-container{
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
#evaluation-container::-webkit-scrollbar {
    display: none;
}