.v-devday-confirmation {
  padding-top: 5rem;
}

.v-devday-confirmation-font {
  font-size: 2rem !important;
}

.v-devday-details-title {
  margin-top: 5rem;
  text-align: center;
  font-family: "mulishbold";
}

.v-devday-details-outline {
  padding: 4rem;
  background: #fdfcfc 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  opacity: 1;
  border-radius: 0.7rem;
  margin-bottom: 5rem;
}

.v-devday-details-outline .v-devday-details-section {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  flex-wrap: wrap;
}

.v-devday-details-outline .v-devday-details-section .v-devday-details-column {
  flex: 1;
}

.v-devday-title {
  color: var(--primary);
}

.v-devday-location-link {
  color: #79b8cc;
  transition: all 0.3s ease-in-out;
}

.v-devday-location-link:hover {
  color: #89c8dc;
}

.v-devday-about-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  margin-bottom: 4rem;
}

.v-devday-about-section .v-devday-about-text {
  font-size: 1.6rem;
}

.v-btn-blue {
  background-color: #33357d;
  color: #fdfcfc;
  margin-top: 1rem;
}

.v-btn-blue:hover {
  box-shadow: 0px 3px 6px #00000029;
  background-color: #4c4f96;
  color: #fdfcfc;
}

.v-btn-blue:focus {
  box-shadow: 0px 3px 6px #00000029;
  background-color: #4c4f96;
  color: #fdfcfc;
}

.v-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #4c4f96;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

.speaker-profile {
  display: flex !important;
  flex-direction: row !important;
}

.speaker-profile h3 {
  text-wrap: nowrap !important;
}

.speaker-profile img {
  width: 3rem !important;
  margin-left: 0.5rem !important;
  margin-top: 1.2rem !important;
}

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

@media (max-width: 760px) {
  .v-devday-details-outline .v-devday-details-section {
    display: block;
  }

  .v-devday-about-section {
    display: block;
  }

  .v-devday-logo-xl {
    line-height: var(--bs-body-line-height);
  }

  .v-greetings {
    font-size: 3rem;
    line-height: 4rem;
  }
}
