
.modal-dialog > .modal-dialog {
  padding-top: 0;
  padding-bottom: 0;
}
.modal-content > div {
  padding: 16px;
}
.modal-title {
  width: 100%;
}
.modal-title > div {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

#rbp2go-scores-example-image {
  border: 2px dashed var(--gray);
  opacity: 0.7;
}
#composite-score-calculation-image, #rbp2go-score-calculation-image {
  height: 40px;
}
/* CUSTOM ACCORDION FOR DO TREE */

.custom-accordion .custom-accordion {
  padding-left: 10px;
}
.custom-accordion {
  padding-left: 0;
  width: 100%;
}
.custom-accordion-panel, .custom-accordion-item {
  margin-top: 2px;
}
.custom-accordion-panel.active > .custom-accordion-content {
  display: block;
  opacity: 1;
}
.custom-accordion-content {
  display: none;
  opacity: 0;
  transition: all 1s;
}
.custom-accordion-title, .custom-accordion-item {
  line-height: 30px;
  display: block;
}
.custom-accordion-title {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
}
.custom-accordion-panel.even > .custom-accordion-title, .custom-accordion-item.even {
  background-color: #ddd;
}
.custom-accordion-panel.even > .custom-accordion-title:hover  {
  background-color: #ccc;
}
.custom-accordion-panel:not(.even) > .custom-accordion-title {
  background-color: #eee;
}
.custom-accordion-panel:not(.even) > .custom-accordion-title:hover {
  background-color: #ddd;
}
.custom-accordion-title-button {
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  color: #444;
  width: 100%;
  display: flex;
}
.custom-accordion-title-button:hover {
  color: #000;
}
.custom-accordion-panel:not(.has-no-children) > .custom-accordion-title > .custom-accordion-title-button:before {
    content: '\f0da';
    font-family: 'FontAwesome';
    font-size: 14px;
    font-weight: normal;
    display: inline-block;
    width: 10px;
    margin-right: 5px;
    transition: all 0.15s ease-in-out;
}
.custom-accordion-panel.active:not(.has-no-children) > .custom-accordion-title > .custom-accordion-title-button:before {
  transform: rotate(90deg);
}
.custom-accordion-panel.has-no-children > .custom-accordion-title > div:first-child:before {
  height: 10px;
  width: 10px;
  display: inline-block;
  content: ' ';
  background-image: url("../icons/angle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
}
.custom-accordion-panel > .custom-accordion-title > * > span {
  margin-left: 5px;
}
.custom-accordion-title-button-additional {
  color: #000;
  background-color: #fff;
  white-space: nowrap;
  height: 25px;
  line-height: 23px;
  max-width: 300px;
  padding: 0 5px;
  margin: auto 0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.custom-accordion-title-button-additional:before {
  content: "+";
  font-size: 18px;
}
.custom-accordion-title-button-additional:not(.clicked):hover {
  color: #fff;
  background-color: #000;
}
.custom-accordion-title-button-additional.clicked:before {
  content: "\f00c";
  font-family: "FontAwesome";
  color: var(--gray);
}
.custom-accordion-title-button-additional.clicked {
  color: var(--gray);
}