.fullcalendar a {
  color: black;
  text-decoration: none
}

.fullcalendar h3 {
  color: darkslategray;
  margin-top: 0;
}

.fullcalendar h4 {
  color: darkslategray;
  font-weight: 300;
  margin-top: 0;
}

.fullcalendar p {
  font-weight: 300;
}

.fc .fc-button-primary:focus {
  box-shadow: none !important;
}

.fullcalendar button {
  height: 50px;
  background-color: dodgerblue;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  border: none;
}

.fullcalendar .back-btn {
  margin-bottom: 30px;
  border-radius: 50%;
  border: 2px solid ghostwhite;
  background-color: white;
  height: 40px;
  width: 40px;
}

.fullcalendar .back-btn:hover {
  background-color: lightblue;
}

.fullcalendar .back-btn:focus {
  outline: 0;
}

.fullcalendar .back-btn .arrow-icon {
  width: 20px;
  margin-top: 3px;
}

.fullcalendar label {
  font-size: 0.85rem;
  font-weight: 600;
  color: darkslategray;
}

.fullcalendar input {
  display: block;
  height: 40px;
  border: 1px solid lightgray;
  border-radius: 0;
  margin: 10px 0 20px 0;
  padding: 0 15px;
  color: darkslategray;
  font-size: 1rem;
}

.fullcalendar input:focus {
  outline: 0;
  border: 1.5px solid dodgerblue;
  border-radius: 0;
}

.fullcalendar .divider {
  height: 100%;
  border-left: solid .5px whitesmoke;
}

.fullcalendar .container {
  background-color: white;
  width: 70rem;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  align-content: center;
  justify-content: center;
  border-radius: 10px;
}

.fullcalendar .description-section {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 1.5rem;
}

.fullcalendar .body-section {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 2;
  padding: 1.5rem;
  display: flex;
  gap: 0.5rem;
}

.fullcalendar #event {
  font-weight: 700;
  color: darkslategray;
}

.fullcalendar #scheduler,
.fullcalendar #duration {
  font-weight: 400;
  color: darkgray;
}

.fullcalendar #event-time-stamp {
  margin: 0;
  margin-left: 5px;
  font-weight: 400;
  color: mediumseagreen;
  line-height: 1.3;
}

.fullcalendar .icon-text-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.5rem;
}

.fullcalendar .icon-text-div img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.fullcalendar .icon-text-div #duration {
  margin: 0;
}

.fullcalendar.rounded {
  padding: 1.5rem;
}

@media (max-width: 1250px) {}

@media (max-width: 645px) {
  .fullcalendar .rounded {
    height: 100%;
    padding: 0;
  }

  .fullcalendar .description-section {
    display: flex;
    flex-direction: column;
  }

  .fullcalendar hgroup {
    padding: 0.5rem;
  }

  .fullcalendar .body-section {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 2;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .fullcalendar .container {
    background-color: white;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    align-content: center;
    justify-content: center;
    border-radius: 10px;
  }
}

/*# sourceMappingURL=styles.css.map */