/* Styles for Facts Boxes */

.factsbox {
    border-radius: 3px;
    width: 100%;
    max-width: 600px;
    margin: auto;
    padding: 0;
    background: #fff;
    box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.2);
}

.factsbox .factsboxtitle {
    padding: 10px 20px;
    font-weight: 800;
    border-radius: 3px 3px 0 0;
}

.factsbox .factsboxcontent{
    padding: 10px 20px;
}

.factsbox .factsboxtitle h3 {
    margin: 0;
}

.factsbox ul li {
    padding-bottom: 10px;
}

.factsbox.bullet-arrow ul,
.factsbox.bullet-point ul {
    list-style: none; 
    padding-inline-start: 20px;
}

.factsbox.bullet-arrow ul li::before,
.factsbox.bullet-point ul li::before,
.factsbox.bullet-image ul li::before { 
    display: inline-block;
    width: 1em; 
    margin-left: -1em; 
}

.factsbox.bullet-arrow ul li::before {
    content: "\25B8"; 
}

.factsbox.bullet-point ul li::before {
    content: "\2022"; 
}

.factsbox.bullet-image ul li::before {
    height: 1em;
    content: '';
    background-size: contain;
}

.factsbox.mobile{
    display: none;
}

.factsbox-template-default .entry-content {
    padding: 10% 4%;
}

.factsbox-template-default .factbox-buttons {
    display: flex;
    margin: 30px auto;
    justify-content: center;
}

.factsbox-template-default .factbox-buttons .factboxbtn {
    padding: 10px 30px;
    margin: auto 10px;
    text-transform: uppercase;
    border-width: 1px;
    border-style: solid;
    border-radius: 3px;
    text-decoration: none;
    transition: all .3s ease;
}

@media (max-width: 980px) {
    .factsbox.desktop,
    .wp-block-column:has(.factsbox.desktop){
        display: none;
    }
    .factsbox.mobile {
        display: block;
    }
}