/* Box */
.box,
.boxed-form,
.info-box,
.tabled-list {
    border: none;
}

/* Buttons */
.btn,
.wp-block-button__link {
    min-width: 22rem;
}

/* Feature Circle */
.feature-circle {
    background: var(--light-bg-color);
    text-align: center;
    width: 14rem;
    height: 14rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 2.5rem .5rem;
    line-height: 1.2;
    border-radius: 50%;
}

.feature-circle * {
    margin: 0;
    flex-basis: 100%;
    line-height: inherit;
}

@media (max-width: 500px) {
    .feature-circle {
        width: 12rem;
        height: 12rem;
        padding: 1.5rem .5rem;
    }
}

@media (max-width: 360px) {
    .feature-circle {
        width: 10rem;
        height: 10rem;
    }
}

/* Blockquote */
blockquote.box {
    font-size: 2.2rem;
    text-align: center;
    padding: var(--df-padding-unit);
    color: var(--text-light-color);
    margin-top: 0;
    margin-bottom: 2rem;
}

blockquote.box:before {
    display: none;
}

blockquote.box cite {
    text-align: center;
    margin: 0;
    font-size: 1.3rem;
}

/* Special Checked List */
.special-checked-list {
    position: relative;
}

.box .special-checked-list {
    margin: 0;
}

.special-checked-list:before {
    display: block;
    position: absolute;
    top: 0;
    left: 1.8rem;
    content: '';
    background: var(--light-bg-color);
    width: 1px;
    height: 100%;
    font-size: 0;
    pointer-events: none;
}

.special-checked-list li {
    color: var(--text-light-color);
    margin-bottom: 0;
    padding-left: 6rem;
    padding-bottom: 3rem;
}

.special-checked-list li:last-child {
    padding-bottom: 0;
}

.special-checked-list li:before {
    display: block;
    position: absolute;
    top: -.1rem;
    left: 0;
    content: '';
    background: var(--light-bg-color) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='147' height='137'%3E%3Cpath fill-rule='evenodd' fill='%23AAAAAA' d='M0 91l12-17 45 33L130 0l17 13-85 124L0 91z'/%3E%3C/svg%3E") no-repeat center center;
    background-size: 1.3rem auto;
    color: var(--highlight-color-alt);
    border-radius: 50%;
    width: 3.6rem;
    height: 3.6rem;
    margin-right: 1.5rem;
    font-size: 0;
    pointer-events: none;
    transition: all ease .1s;
    z-index: 1;
}

.box .special-checked-list li:last-child:after {
    display: block;
    position: absolute;
    top: 0;
    left: 1.6rem;
    content: '';
    background: #fff;
    width: 4px;
    height: 100%;
    font-size: 0;
    pointer-events: none;
}

.special-checked-list:not(:hover) li:first-child,
.special-checked-list li:hover {
    color: var(--title-color);
    font-weight: bold;
}

.special-checked-list:not(:hover) li:first-child:before,
.special-checked-list li:hover:before {
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='147' height='137'%3E%3Cpath fill-rule='evenodd' fill='%231D4DB8' d='M0 91l12-17 45 33L130 0l17 13-85 124L0 91z'/%3E%3C/svg%3E");
    box-shadow: 0 .4rem 1rem rgba(0, 0, 0, .1);
    transform: scale(1.2);
}

/* Embedded frame */
.iframe-map-holder {
    border-radius: var(--df-border-radius);
}