/**
 * Utilities
 */
.py-6 {
    padding-top: 5rem!important;
    padding-bottom: 5rem!important;
}
.py-7 {
    padding-top: 6rem!important;
    padding-bottom: 6rem!important;
}
.pt-7, .py-7 {
    padding-top: 6rem !important;
}
.pb-7, .py-7 {
    padding-bottom: 6rem !important;
}
.img-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.icon-shape {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
    border-radius: 0.375rem;
    width: 3rem;
    height: 3rem;
}
.icon-shape.icon-sm {
    width: 2rem;
    height: 2rem;
}
@media only screen and (max-width: 768px) {
    .display-4 {
        font-size: calc(1.425rem + 2.1vw);
    }
}
/**
 * Panel
 */
.panel-footer .hint-block {
    font-size: 13px;
}
.delimiter-bottom {
    position: relative;
    border: 0;
    height: 60px;
}
.delimiter-bottom:after {
    content: '';
    display: block;
    width: 80%;
    position: absolute;
    bottom: 50%;
    left: 50%;
    margin-left: -40%;
    height: 1px;
    background: radial-gradient(ellipse at center, #d1dbe7 0, rgba(255, 255, 255, 0) 75%);
}
/**
 * Pricing Switcher
 */
.pricing-switcher {
    line-height: 1rem;
    text-align: center;
    margin: 0 auto;
    width: 190px;
}
.pricing-switcher .fieldset {
    display: inline-block;
    position: relative;
    padding: 2px;
    border-radius: 50em;
    border: 1px solid #92a1ad;
}
.pricing-switcher input[type="radio"] {
    position: absolute;
    opacity: 0;
}
.pricing-switcher label {
    position: relative;
    z-index: 1;
    display: inline-block;
    float: left;
    width: 90px;
    height: 36px;
    line-height: 36px;
    cursor: pointer;
    font-size: 1rem;
    margin: 0;
    color: #313941;
}
.pricing-switcher .switch {
    /* floating background */
    position: absolute;
    top: 2px;
    left: 2px;
    height: 36px;
    width: 90px;
    background-color: var(--tblr-primary);
    border-radius: 50em;
    -webkit-transition: -webkit-transform 0.5s;
    -moz-transition: -moz-transform 0.5s;
    transition: transform 0.5s;
}
.pricing-switcher input[type="radio"]:checked + label + .switch,
.pricing-switcher input[type="radio"]:checked + label:nth-of-type(n) + .switch {
    /* use label:nth-of-type(n) to fix a bug on safari with multiple adjacent-sibling selectors*/
    -webkit-transform: translateX(90px);
    -moz-transform: translateX(90px);
    -ms-transform: translateX(90px);
    -o-transform: translateX(90px);
    transform: translateX(90px);
}
.pricing-switcher input[type="radio"]:checked+label{
    color: #FFFFFF;
}
.no-js .pricing-switcher {
    display: none;
}
/**
 * Pricing features
 */
.pricing-features p {
    margin-bottom: 3px;
}
.pricing-features p span {
}