<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.carousel{
    height: auto;
    width: 475px;
    margin-top: 0;
    margin-bottom: 40px;
    max-width: 475px;
    overflow-x: hidden;
    position: relative;
    display: flex;
    justify-content: flex-start;
}

h1{
    color: #333
}

.carousel-inner{
    height: 100%;
    /* min-width: 400%; */
    display: flex;
    transition: all ease .5s;
}

.carousel-item{
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-item h1{
    opacity: .5;
}

.carousel-controls .prev{
    display: inline-block;
    height: 15px;
    width: 15px;
    position: absolute;
    left: 12px;
    top: 30%;
    transform: translateY(-50%);
    background: transparent url('/assets/images/prev.svg') no-repeat;
	border-radius: 50%;
    background-position: center;
    background-size: auto 100%;
    cursor: pointer;
    opacity: 1;
}

.carousel-controls .next{
    display: inline-block;
    height: 15px;
    width: 15px;
    position: absolute;
    right: 12px;
    top: 30%;
    transform: translateY(-50%);
    background: transparent url('/assets/images/next.svg') no-repeat;
    background-position: center;
    background-size: auto 100%;
    cursor: pointer;
    opacity: 1;
}

.prev:hover, .next:hover{
    opacity: 1;
}

.carousel-indicators{
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
	display: none;
	visibility: hidden;
}

.carousel-indicators span{
    display: inline-block;
    background-color: white;
    width: 30px;
    height: 4px;
    border-radius: 2px;
    opacity: .5;
    cursor: pointer;
    margin: 3px;
}

.carousel-indicators span.active{
    opacity: 1;
}
</pre></body></html>