/* CAROUSEL */
.carousel-image {
    object-fit: contain;
    border-radius: .5rem;
    max-height: 720px
}

.carousel-indicators {
    position: static
}

.carousel-indicators li {
    width: 128px;
    height: 100%;
    opacity: .8
}

.carousel-indicators li img {
    border-radius: .25rem
}

/* FAQ */
.faq-item {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(250, 250, 250, 0.125);
}

.faq-last {
    border-bottom: none;
}

.faq-q {
    text-decoration: none;
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.faq-a {
    margin: 2rem 0 0 0;
    padding: 0;
}

/* Info panel */
.info-container {
    width: auto;
    display: flex;
    margin: 1.5rem auto 2.5rem;
    padding: .25rem;
}

.module-border-wrap {
  padding: .125rem;
  position: relative;
  background: linear-gradient(to top, #aa20df, #185fdf);
  margin: auto;
    border-radius: .25rem;
    transition: all .2s ease-in-out;
}

.module-border-wrap:hover {
    transform: scaleX(1.02) translateY(-1px);
    box-shadow: rgba(250, 250, 250, .65) 0 2px 5px -1px, rgba(250, 250, 250, .75) 0 1px 3px -1px;
}

.info-row {
    margin: auto;
    padding: .5rem;
    border-radius: .25rem;
    background: #050505;
}
.col-text {
    display: flex;
    margin: auto .5rem;
    padding: .5rem;
}

.col-text p {
    color: var(--color-white);
    margin-bottom: 0;
}

/* PRETTY LIST */
.pretty-ol {
    padding: 0
}

.pretty-li {
    padding: 1.25rem 0;
    margin: 0;
    list-style: none
}

.pretty-counter {
    background: linear-gradient(45deg, var(--color-white) 50%, var(--color-orange) 75%);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: shine 60s linear infinite;
    animation: shine 60s linear infinite;
    font-size: 4rem;
    line-height: 4rem;
    font-weight: 700;
    margin: auto 1rem
}

@-webkit-keyframes shine {
    to {
        background-position: 200% center;
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.pretty-bb {
    border-bottom: 1px solid var(--secondary-color-opaque-blue)
}

.pretty-heading {
    font-family: var(--font-main-text);
    padding: 0;
    font-size: 1.35rem
}

.pretty-paragraph {
    margin-bottom: 0
}

/* HOW TO */
.how-to-list {
    counter-reset: my-awesome-counter;
    list-style: none;
    padding-left: 2.5rem
}

.how-to-list-item {
    counter-increment: my-awesome-counter;
    margin: 1.5rem auto;
    padding-bottom: .5rem;
    position: relative
}

.how-to-list-item::before {
    background: var(--primary-color-dark);
    border-radius: 50%;
    box-shadow: 1px 1px 0 var(--black-text-color);
    color: var(--white-background-color);
    content: counter(my-awesome-counter);
    font-size: 1.5rem;
    font-weight: 700;
    height: var(--size);
    left: calc(-1 * var(--size) - 10px);
    line-height: var(--size);
    position: absolute;
    text-align: center;
    top: 0;
    transform: rotate(-10deg);
    width: var(--size);
    --size: 2rem
}

.block-telegram_post_embed {
    text-align: center;
    margin: 1.75rem auto 1.5rem;
}

blockquote {
    color: var(--color-grey);
    border-left: 5px solid var(--color-orange);
    padding: .25rem 0 .25rem 1rem;
    margin: 1rem;
    font-style: italic;
}

/* InfoPanel & Telegram panel */
.telegram-banner-text {
    font-size: large;
    transition: all .35s;
}
.telegram-banner-text:hover {
    color: var(--color-purple);
}

/* CUSTOM IMAGE BLOCK */
.figure-caption {
    margin: .5rem auto .25rem;
    text-align: center;
}

.cms-image {
    border-radius: .25rem;
    box-shadow: rgba(250, 250, 250, .25) 0 2px 5px -1px, rgba(250, 250, 250, .3) 0 1px 3px -1px;
    height: 100%;
    max-height: 608px;
    max-width: 100%;
    width: auto;
    display: flex;
    margin: 1rem auto;
    object-fit: contain
}

.no-shadow {
    box-shadow: none !important
}

.no-round-borders {
    border-radius: 0 !important
}

/* For small screen devices (767px and below) */
@media only screen and (max-width: 767px) {

}

/* Medium screen devices (768px and above) */
@media only screen and (min-width: 768px) and (max-width: 960px) {

}

/* Big screen devices (961px and above) + extra big screen devices (1200px and above) */
@media only screen and (min-width: 961px) {

}