.emphasis {
    line-height: 1.6;
    margin: 28px 0;
    overflow-x: auto;
    padding: 28px 24px 4px 48px;
    position: relative;
    border-radius: 4px;
    z-index: 3;
}

.emphasis:before {
    left: 16px;
    position: absolute;
    top: 30px;
}

.emphasis .title {
    font-size: 17px;
    font-weight: 600;
    margin-top: 0;
    transition: color 0.5s;
}

.emphasis p {
    margin-top: -4px;
    padding-bottom: 8px;
}

.emphasis.info {
    color: var(--blue-container-text);
    background-color: var(--blue-container-bg);
    border-left: 3px solid var(--blue-container-border);
    border-right: 3px solid var(--blue-container-border);
}

.emphasis.info .title {
    color: var(--blue-container-title);
}

.emphasis.info.emphasis.info::before,
.emphasis.warning.emphasis.warning::before {
    background-size: contain;
    content: "";
    height: 24px;
    margin-left: -4px;
    top: 28px;
    width: 24px;
}


.emphasis.gold-quote.emphasis.gold-quote::before,
.emphasis.green-quote.emphasis.green-quote::before {
    background-size: contain;
    content: "";
    height: 28px;
    margin-left: -4px;
    top: 24px;
    width: 28px;
}


.emphasis.info.emphasis.info::before {
    background-image: var(--info);
    filter: brightness(0) saturate(100%) invert(42%) sepia(99%) saturate(3356%) hue-rotate(188deg) brightness(103%) contrast(107%);
}

.emphasis.gold-quote {
    background-color: var(--gold-container-bg);
    border-left: 3px solid var(--gold-container-border);
    border-right: 3px solid var(--gold-container-border);
    color: var(--gold-container-text);
}

.emphasis.gold-quote .title {
    color: var(--gold-container-title);
}

.emphasis.gold-quote.emphasis.gold-quote::before {
    background-image: var(--quotes);
    filter: brightness(0) saturate(100%) invert(82%) sepia(27%) saturate(4850%) hue-rotate(348deg) brightness(72%) contrast(98%);
}

.emphasis.green-quote {
    background-color: var(--green-container-bg);
    border-left: 3px solid var(--green-container-border);
    border-right: 3px solid var(--green-container-border);
    color: var(--green-container-text);
}

.emphasis.green-quote .title {
    color: var(--green-container-title);
}

.emphasis.green-quote.emphasis.green-quote::before {
    background-image: var(--quotes);
    filter: brightness(0) saturate(100%) invert(51%) sepia(79%) saturate(376%) hue-rotate(99deg) brightness(89%) contrast(85%);
}

.emphasis.warning {
    background-color: var(--red-container-bg);
    border-left: 3px solid var(--red-container-border);
    border-right: 3px solid var(--red-container-border);
    color: var(--red-container-text);
}

.emphasis.warning .title {
    color: var(--red-container-title);
}

.emphasis.warning.emphasis.warning::before {
    background-image: var(--warning);
    filter: brightness(0) saturate(100%) invert(47%) sepia(46%) saturate(4686%) hue-rotate(321deg) brightness(92%) contrast(95%);
}

.emphasis ul li:before {
    top: 0.55rem;
}

.emphasis ol li:before {
    font-size: 13px;
    top: 1px;
}


/* CAROUSEL */

.carousel {
    padding: 0 32px 0 0;
    position: relative;
}

.carousel-inner {
    overflow: hidden;
    padding: 0 16px;
    position: relative;
    width: 100%;
}

.carousel-open:checked + .carousel-item {
    opacity: 1;
    position: static;
}

.carousel-item {
    opacity: 0;
    position: absolute;
}

.carousel-open:checked + .carousel-item p {
    opacity: 1;
    -webkit-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

.carousel-item p.title, .carousel-item p {
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

.carousel-open:checked + .carousel-item .emphasis:before {
    opacity: 1;
    -webkit-transition: opacity 0.8s ease-in-out;
    transition: opacity 0.8s ease-in-out;
}

.carousel-item .emphasis:before {
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
}

.carousel-item .emphasis {
    margin-left: 16px;
    margin-right: 16px;
}

.carousel-control {
    background: rgb(from var(--gold-container-border) r g b / 0.7);
    border: 1px solid rgb(from var(--gold-container-border) r g b / 0.9);
    border-radius: 12px;
    color: var(--primary);
    cursor: pointer;
    display: none;
    font-size: 40px;
    height: 40px;
    line-height: 35px;
    position: absolute;
    text-align: center;
    top: 50%;
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 40px;
    z-index: 4;
}

.carousel-control.prev {
    left: 0;
}

.carousel-control.next {
    right: 0;
}

.carousel-control:hover {
    background: rgb(from var(--gold-container-border) r g b / 1);
    color: var(--text-color);
}

#carousel-1:checked ~ .control-1,
#carousel-2:checked ~ .control-2,
#carousel-3:checked ~ .control-3 {
    display: block;
}

.carousel-indicators {
    bottom: 2px;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    text-align: center;
    z-index: 10;
}

.carousel-indicators li {
    display: inline-block;
    margin: 0 5px;
}

.carousel-bullet {
    color: rgb(from var(--border-color) r g b / 0.6);
    cursor: pointer;
    display: block;
    font-size: 35px;
}

.carousel-bullet:hover {
    color: var(--text-color);
}

#carousel-1:checked ~ .control-1 ~ .carousel-indicators li:nth-child(1) .carousel-bullet,
#carousel-2:checked ~ .control-2 ~ .carousel-indicators li:nth-child(2) .carousel-bullet,
#carousel-3:checked ~ .control-3 ~ .carousel-indicators li:nth-child(3) .carousel-bullet {
    color: rgb(from var(--border-color) r g b / 0.8);
}