@charset "UTF-8";
/* CSS Document */


/* ACCORDION FROM FINE DIET */

.wrapper-sched-2 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 900px;
    width: 90%;
    margin: auto;
    padding: 15px 15px 20px 15px;
}

.wrapper-border-sched-2 {
    display: flex;
    /* border: 1px solid black; */
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 900px;
    border-radius: 10px;
    /* width: 90%; */
    margin: auto;
    padding: 0px 0px 50px 0px;
}

.wrapper-border-schedule {
    display: flex;
    /* border: 1px solid black; */
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 900px;
    border-radius: 10px;
    /* width: 90%; */
    margin: auto;
    padding: 0px 0px 0 0px;
}


.sched-2-container {
	display: flex;
  	text-align: left;
  	margin-bottom: 20px !important;
	margin-top: 30px;
}

.sched-2 {
    display: flex;
    max-width: 900px;
    width: 100%;
    margin: auto;
    /* border-bottom: 1px solid #333; */
    /* border-radius: 6px; */
    overflow: hidden;
    justify-content: flex-start;
    align-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
}

.sched-2-2 {
    display: flex;
    max-width: 900px;
    width: 100%;
    margin: auto;
    /* border-radius: 6px; */
    overflow: hidden;
    justify-content: flex-start;
    align-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
}

.sched-2-item + .sched-2-item {
  border-top: 1px solid #333;
}

/* Header */
.sched-2-header {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.sched-2-arrow {
  transition: transform 0.3s ease;
}

/* Content (hidden by default) */
.sched-2-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;
}

.sched-2-question {
color: black;
	padding-right: 10px;
}


.sched-2-question a {
  color: inherit;
  text-decoration: none;
}

/* When open: rotate arrow + expand content */
.sched-2-item.open .sched-2-arrow {
  transform: rotate(180deg);
}
.sched-2-item.open .sched-2-content {
  max-height: 500px;  /* large enough to show your answer */
  padding: 0rem;
}






	@media (max-width: 768px) {

		
		
		
	}