.align-left {
    text-align: left;
}

.align-center {
    text-align: center;
}

.align-center img {
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
}

.align-center figcaption {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.align-right {
    text-align: right;
}

.align-right img {
    margin-left: auto;
}

.align-right figcaption {
    text-align: right;
    margin-left: auto;
}

.align-justify {
    text-align: justify;
}

.float-left {
    float: left;
    margin-right: 1em;
    margin-bottom: 1em;
}

.float-right {
    float: right;
    margin-left: 1em;
    margin-bottom: 1em;
}

.valign-top {
    align-items: start;
}

.valign-middle {
    align-items: center;
}

.valign-bottom {
    align-items: end;
}

.outset-right {
    position: relative;
    width: calc(100% + 24px);
    max-width: calc(100% + 24px);
    transform: translateX(24px) translate3d(0, 0, 0);
    left: calc(24px * -1);
}

.outset-left {
    width: calc(100% + 24px);
    max-width: calc(100% + 24px);
    transform: translateX(calc(24px * -1)) translate3d(0, 0, 0);
}

.outset-both {
    position: relative;
    width: calc(100% + 24px + 24px);
    max-width: calc(100% + 24px + 24px);
    transform: translateX(-50%) translate3d(0, 0, 0);
    left: 50%;
}

.spacer {
    min-height: 5rem;
}

figure:has(> iframe) {
    text-align: center;
}

.embed-responsive {
    position: relative;
    padding: 0;
    margin: 0;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

.embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.default-dropdown-item {
    margin-top: 1.75rem;
    border-radius: 5px;
    background: #EFEFEF;
    padding: 16px 21px 14px;
}

.default-dropdown-item .dropdown {
    padding-top: 17px;
    border-top: 1px solid #CCC;
    margin-top: 12px;
    height: 0;
    display: none;
    transition: height 0.5s;
}

.default-dropdown-item .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    font-family: "Montserrat", sans-serif;
    color: #111;
}

.default-dropdown-item .item.open svg {
    transform: rotate(180deg);
}

.default-dropdown-item .item.open + .dropdown {
    display: block;
    height: auto;
}
