/* .Collapsible__trigger {
    width: 100%;
    background-color: red;
    padding-top: 10px;
    padding-bottom: 10px;

}

.ms-collaps {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    border: brown 1px solid;
    background-color: burlywood;


} */

.Collapsible__contentInner {
  padding: 10px;
  border: 1px solid #ebebeb;
  border-top: 0;
}
.Collapsible__contentInner p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 20px;
}
.Collapsible__contentInner p:last-child {
  margin-bottom: 0;
}
.Collapsible__trigger {
  display: block;
  font-weight: 500;
  text-decoration: none;
  color: #ebebeb;
  position: relative;
  border: 1px solid #ebebeb;
  padding: 10px;
  background: rgb(18, 118, 193);
}
.Collapsible__trigger:after {
  font-family: "FontAwesome";
  content: "\f107";
  position: absolute;
  right: 10px;
  top: 10px;
  display: block;
  transition: transform 300ms;
}
.Collapsible__trigger.is-open {
  background: rgb(102, 164, 223);
}
.Collapsible__trigger.is-open:after {
  transform: rotateZ(180deg);
}
.Collapsible__trigger.is-disabled {
  opacity: 0.5;
  background-color: grey;
}
.CustomTriggerCSS {
  background-color: lightcoral;
  transition: background-color 200ms ease;
}
.CustomTriggerCSS--open {
  background-color: darkslateblue;
}
.Collapsible__custom-sibling {
  padding: 5px;
  font-size: 12px;
  background-color: #cbb700;
  color: black;
}

.ms-MessageBar-innerText {
  color: black;
}

.rulesDropDowns .ms-Dropdown-title {
  border-width: 0px;
  color: blue;
}

.dividerText {
  font-size: 16px;
  display: flex;
  align-items: center;
}

.dividerText::after {
  flex: 1;
  content: '';
  padding: 1px;
  margin-left: 5px;
  background-color: lightgray;
}
.dividerText::before {
  flex: 1;
  content: '';
  padding: 1px;
  margin-right: 5px;
  background-color: lightgray;
}

.timelines {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.timeline-title {
  font-size: 1em;
  font-weight: bold;
}

.timeline-item {
  margin-bottom: 2em;
}
.timeline-item h3 {
  font-size: 1em;
  font-weight: bold;
  margin: 0;
  position: relative;
}
.timeline-item h3::before {
  content: "";
  position: absolute;
  left: -2.5em;
  background-color: lightgray;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  transform: translate(-0.5px, 0.2em);
}

.timeline-items {
  margin: 2em 1em;
  padding: 0.01em 0 1em 2em;
  border-left: 3px dotted lightgray;
}

.timeline-item {
  margin-top: -0.3em;
}
.timeline-item time {
  display: block;
  float: left;
  background-color: #8a0a0a;
  padding: 0.2em 0.4em;
}
.timeline-item > * {
  margin: 1em 0;
}
.timeline-item .location {
  clear: both;
  font-size: 0.85em;
  font-style: italic;
}