@-webkit-keyframes come-in {
  0% {
    -webkit-transform: translatey(100px);
    transform: translatey(100px);
    opacity: 0;
  }

  30% {
    -webkit-transform: translateX(-50px) scale(0.4);
    transform: translateX(-50px) scale(0.4);
  }

  70% {
    -webkit-transform: translateX(0px) scale(1.2);
    transform: translateX(0px) scale(1.2);
  }

  100% {
    -webkit-transform: translatey(0px) scale(1);
    transform: translatey(0px) scale(1);
    opacity: 1;
  }
}

@keyframes come-in {
  0% {
    -webkit-transform: translatey(100px);
    transform: translatey(100px);
    opacity: 0;
  }

  30% {
    -webkit-transform: translateX(-50px) scale(0.4);
    transform: translateX(-50px) scale(0.4);
  }

  70% {
    -webkit-transform: translateX(0px) scale(1.2);
    transform: translateX(0px) scale(1.2);
  }

  100% {
    -webkit-transform: translatey(0px) scale(1);
    transform: translatey(0px) scale(1);
    opacity: 1;
  }
}

.floating-container {
  position: fixed;
  width: 100px;
  height: 100px;
  bottom: 0;
  right: 0;
  margin: 35px 25px;
  cursor: pointer;
}

.floating-container:hover {
  height: 300px;
}

.floating-container:hover .floating-button {
  box-shadow: 0 10px 25px #696cff;
  -webkit-transform: translatey(5px);
  transform: translatey(5px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.floating-container .floating-button {
  position: absolute;
  width: 65px;
  height: 65px;
  background: #696cff;
  bottom: 0;
  border-radius: 50%;
  left: 0;
  right: 0;
  margin: auto;
  color: white;
  line-height: 65px;
  text-align: center;
  font-size: 23px;
  z-index: 100;
  box-shadow: 0 10px 25px -5px #696cff;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.swal2-container {
  z-index: 1080 !important;
}

button {
  display: flex;
  align-items: center !important;
  justify-content: center !important;
}

.timeline {
  margin-top: 20px;
  position: relative;
}

.timeline:before {
  position: absolute;
  content: '';
  width: 4px;
  height: calc(100% - 50px);
  background: #5f61e6;
  left: 14px;
  top: 5px;
  border-radius: 4px;
}

.timeline-month {
  position: relative;
  padding: 4px 15px 4px 35px;
  background-color: var(--bg-cards);
  display: inline-block;
  width: auto;
  border-radius: 40px;
  border: 1px solid #5f61e6;
  border-right-color: #5f61e6;
  margin-bottom: 30px;
}

.timeline-month span {
  position: absolute;
  top: -1px;
  left: calc(100% - 10px);
  z-index: -1;
  white-space: nowrap;
  display: inline-block;
  background-color: #5f61e6;
  padding: 4px 10px 4px 20px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  border: 1px solid #5f61e6;
  color: var(--bs-dashboard-color);
  box-sizing: border-box;
}

.timeline-month:before {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background: #5f61e6;
  border-radius: 100%;
  border: 1px solid #17191B;
  left: 5px;
}

.timeline-section {
  padding-left: 35px;
  display: block;
  position: relative;
  margin-bottom: 30px;
}

.timeline-date {
  margin-bottom: 15px;
  padding: 2px 15px;
  background: #5f61e6;
  position: relative;
  display: inline-block;
  border-radius: 20px;
  border: 1px solid #5f61e6;
  color: var(--bs-dashboard-color);
}

.timeline-section:before {
  content: '';
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #5f61e6;
  top: 12px;
  left: 20px;
}

.timeline-section:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #5f61e6;
  top: 7px;
  left: 11px;
  border: 1px solid #17191B;
  border-radius: 100%;
}

.timeline-section .col-sm-4 {
  margin-bottom: 15px;
}

.timeline-box {
  position: relative;
  box-shadow: 0 2px 6px 0 rgba(67, 89, 113, 0.12);
  background-color: var(--bg-cards);
  border-radius: 15px;
  border-top-left-radius: 0px;
  border-bottom-right-radius: 0px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.box-icon {
  position: absolute;
  right: 5px;
  top: 0px;
}

.box-title {
  padding: 5px 15px;
  border-bottom: 1px solid var(--bs-border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box-title i {
  margin-right: 5px;
}

.box-content {
  padding: 5px 15px;
  background-color: var(--bg-cards);
}

.box-content strong {
  color: #666;
  font-style: italic;
  margin-right: 5px;
}

.box-item {
  margin-bottom: 5px;
}

.box-footer {
  padding: 5px 15px;
  border-top: 1px solid var(--bs-border-color);
  background-color: var(--bg-cards);
  text-align: left;
  font-style: italic;
  display: flex;
  justify-content: space-between;
}

circle-progress::part(value) {
  stroke-width: 8px;
  stroke: #5f61e6;
  stroke-linecap: round;
}

circle-progress::part(circle) {
  stroke-width: 2px;
}

circle-progress::part(text) {
  font-size: 2rem;
}

circle-progress::part(base) {
  width: 35px;
  height: 35px;
}

.select2-search__field:focus-visible {
  outline: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  background-color: var(--bg-cards) !important;
  border: 1px solid var(--bs-border-color) !important;
}

.select2-search--dropdown,
.select2-results__option,
#select2-users-results,
#select2-users-results li {
  background: var(--bg-cards) !important;
}

.select2-dropdown {
  border: 1px solid var(--bs-border-color);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  color: #696cff;
}

.select2-container--default .select2-selection--single .select2-selection__choice,
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  color: #fff;
  background: #696cff;
  border: 0;
}

.select2-container--default .select2-selection--single .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--single .select2-selection__choice__remove:focus,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background: #696cff;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #696cff;
}

.select2-selection__rendered {
  color: var(--bs-body-color) !important;
}

#notifications {
  min-width: 22rem;
}

.badge.badge-notifications {
  position: absolute;
  top: auto;
  display: inline-block;
  margin: 0;
  transform: translate(-50%, -30%)
}

[dir=rtl] .badge.badge-notifications {
  transform: translate(50%, -30%)
}

.badge.badge-notifications:not(.badge-dot) {
  padding: .2rem .4rem;
  font-size: .582rem;
  line-height: .75rem
}

#notifications {
  overflow-y: scroll !important;
  max-height: 24rem !important;
}

.bx {
  font-size: 1.15rem;
}

@media (max-width: 1199px) {
  #layout-menu {
    display: none;
  }
}

input:disabled,
button:disabled {
  cursor: not-allowed !important;
}