.rva-primary-btn {
  background: var(--primary-btn-color) !important;
  margin-bottom: 20px;
  border: none !important;
}

.bulk-btn {
  background: #005b7aab !important;
  margin-bottom: 20px;
  border: none !important;
}

.detail-fpc {
  top: 57px;
  animation: slide-up 0.6s;
  overflow-y: scroll !important;
  padding-bottom: 39px !important;
}

@keyframes slide-up {
  0% {
    opacity: 1;
    transform: translateY(780px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.detail-fpc-closed {
  animation: slide-down 0.6s;
}

@keyframes slide-down {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 1;
    transform: translateY(780px);
  }
}

main {
  background: #00a6df;
}

.team-fpc {
  padding-bottom: 85px !important;
}

.back-btn {
  width: 23px;
  height: 23px;
  position: absolute;
  left: 15px;
  top: 14px;
}