@import url('https://fonts.googleapis.com/css2?family=Concert+One&family=Poppins&display=swap');

body {
	position: relative;
	font-family: 'Poppins', sans-serif;
	transition: .5s
}

.pagination {
    flex-wrap: wrap;
    display: flex;
}
.page-item.active .page-link{
    z-index: 3;
    color: #fff !important  ;
    background-color:#1CC88A !important;
    border-color: #1CC88A !important;
    border-radius: 50%;
    padding: 6px 12px;
}
.page-link{
    z-index: 3;
    color: #1CC88A !important;
    background-color: #fff;
    border-color: #1CC88A;
    border-radius: 50%;
    padding: 6px 12px !important;
}
.page-item:first-child .page-link{
    border-radius: 30% !important;
}
.page-item:last-child .page-link{
    border-radius: 30% !important;
}
.pagination li{
    padding: 3px;
}
.disabled .page-link{
    color: #212529 !important;
    opacity: 0.5 !important;
}


.tooltipevent{
    min-width:200px;
    min-height:30px;
    background:#1CC88A;
    position:absolute;z-index:10001;
    color: white;
    padding: 4px;
    border-radius: 10px;
}

@media only screen and (max-width: 428px) {
    .systemTitle{
        display: none;
    }
}
textarea {
    resize: none;
  }

.fc-time{
    display: none;
}
.fc-title{
    cursor: pointer;
    font-size: 12px;
    padding: 5px;
}
.tab p{
    font-size: 20px;
    margin: 0 0 10px 0;
  }

 .index-btn-wrapper{
    display: flex;
    justify-content: end;
}

.index-btn{
    background: #04AA6D;
    color: #ffffff;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s;
  }

.index-btn:hover{
    opacity: 0.8;
  }

  .text {
    color: green;
    opacity: 0.30;
  }

  .step{
    height: 30px;
    width: 30px;
    line-height: 30px;
    margin: 0 2px;
    color: white;
    background: green;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.25;
  }


@keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

.animated {
    animation-duration: 5s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both
}

.animatedFadeInUp {
    opacity: 0
}

.fadeInUp {
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.pagination{
   display: flex;
   justify-content: center;
   min-width: 100px;
}

.fadeDown{
    animation-delay: 1s;
    animation: fadeIn 1s ease-in both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate3d(0, -20%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

::-webkit-scrollbar {
    width: 8px;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 3px grey;
    border-radius: 5px;
  }
/*
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #04AA6D;
    border-radius: 10px;
  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #04AA6D;
  } */



