#speech-bubble {
    display: block;
    position: absolute;
    width: 300px;
    right: 0;
    left: auto;
    float: left;
    top: 100%;
    max-width: 30em;
    padding: .75rem;
    margin: .125rem 0 0;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .75rem;
}

#speech-bubble::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    bottom: 100%;
    right: 28px;
    border: .75rem solid transparent;
    border-top: none;

    border-bottom-color: #fff;
    filter: drop-shadow(0 -0.0625rem 0.0625rem rgba(0, 0, 0, .1));
}

@media (max-width: 576px) {
    #speech-bubble {
        left: -116px;
    }

    #speech-bubble::before {
        right: 136px;
    }
}

#intro-container {
    display: flex;
    flex-flow: column wrap;
    align-content: center;
    align-items: center;
}

#arx-logo-full {
    margin-top: 6rem;
    margin-bottom: 2rem;
    width: 80%;
}

#arx-btns > .arx-btn {
    padding-left: 30px;
    background-repeat: no-repeat;
    background-position: top 50% left 10px;
    background-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;

}

#arx-btn-demo {
    background-image: url('/static/global/customicons/demo.svg');
    background-color: #88c6af;
}

#arx-btn-youtube {
    background-image: url('/static/global/customicons/youtube.svg');
    background-color: #85bed4;
}

#arx-btn-docs {
    background-image: url('/static/global/customicons/docs.svg');
    background-color: #9f6fc6;
}

.arx-btn:hover {
    filter: brightness(0.8);
}

.arx-btn {
    color: #212529;
    text-decoration: none !important;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, filter .15s ease-in-out;
}

#arx-btns {
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
}

.arx-btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

#arx-btns > #arx-btns:not(:last-child) > .arx-btn, #arx-btns > .arx-btn:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#arx-btns > #arx-btns:not(:first-child) > .arx-btn, #arx-btns > .arx-btn:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.card-deck {
    justify-content: space-evenly
}

.card {
    max-width: 16rem
}

.row {
    display: flex;
    justify-content: center
}

.card .list-group-item {
    padding-left: 0;
    padding-right: 0;
}

.row .no-gutters div {
    width: 100%;
}

.card-img-top {
    padding: 1rem
}

.img-container {
    padding-bottom: 100%;
    overflow: hidden;
    position: relative
}

.circle img {
    width: 100%;
    position: absolute;
    clip-path: circle();
}

.square img {
    position: absolute;
    width: 100%;
}

.card-title {
    margin-bottom: 0
}

.list-group li {
    padding: 0.2rem 1.25rem
}

.plot-container.plotly {
    display: flex;
    justify-content: center;
}

.modebar-container {
    display: none !important;
}