@charset "UTF-8";

@media (max-width: 768px) {
    .hidden-xs{
        display: none;
    }
}

/* MAIN */
.wpsb-main{
    color: #333;
    background: #f0f0f0;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

.wpsb-main *, 
.wpsb-main ::after, 
.wpsb-main ::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.wpsb-section{
    position: relative;
}

.wpsb-section.-width-boxed > .wpsb-container{
    max-width: 1140px;
}

@media (min-width: 768px) {
    .wpsb-section.-height-full {
        height: 100vh;
    }

    .wpsb-section.-height-full > .wpsb-container {
        height: 100%; 
    } 
}

/* Column Gap */
.wpsb-section.-col-gap-narrow > .wpsb-container > .wpsb-row > .wpsb-column > .wpsb-column-wrap{
    padding: 5px;
}

.wpsb-section.-col-gap-default > .wpsb-container > .wpsb-row > .wpsb-column > .wpsb-column-wrap{
    padding: 10px;
}

.wpsb-section.-col-gap-extend > .wpsb-container > .wpsb-row > .wpsb-column > .wpsb-column-wrap{
    padding: 15px;
}

.wpsb-section.-col-gap-wide > .wpsb-container > .wpsb-row > .wpsb-column > .wpsb-column-wrap{
    padding: 20px;
}

.wpsb-section.-col-gap-wider > .wpsb-container > .wpsb-row > .wpsb-column > .wpsb-column-wrap{
    padding: 30px;
}

/* Row Position */
.wpsb-section.-row-top > .wpsb-container{
    -webkit-box-align: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}

.wpsb-section.-row-center > .wpsb-container{
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.wpsb-section.-row-bottom > .wpsb-container{
    -webkit-box-align: flex-end;
    -webkit-align-items: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
}

/* Column Position */
.wpsb-section.-col-top > .wpsb-container > .wpsb-row > .wpsb-column > .wpsb-column-wrap{
    -webkit-box-align: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}

.wpsb-section.-col-center > .wpsb-container > .wpsb-row > .wpsb-column > .wpsb-column-wrap{
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.wpsb-section.-col-bottom > .wpsb-container > .wpsb-row > .wpsb-column > .wpsb-column-wrap{
    -webkit-box-align: flex-end;
    -webkit-align-items: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
}

.wpsb-bg-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    opacity: 1;
}

.wpsb-container{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    width: 100%;
}

.wpsb-row{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.wpsb-row.-ha-left{
    justify-content: flex-start;
}

.wpsb-row.-ha-center{
    justify-content: center;
}

.wpsb-row.-ha-right{
    justify-content: flex-end;
}

.wpsb-row.-ha-space-between{
    justify-content: space-between;
}

.wpsb-row.-ha-space-around{
    justify-content: space-around;
}

.wpsb-row.-ha-space-evenly{
    justify-content: space-evenly;
}

.wpsb-column{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    min-height: 1px;
}

/* Vertical Align Column */
.wpsb-column.-va-top > .wpsb-column-wrap > .wpsb-column-content{
    align-content: flex-start;
}

.wpsb-column.-va-center > .wpsb-column-wrap > .wpsb-column-content{
    align-content: center;
}

.wpsb-column.-va-bottom > .wpsb-column-wrap > .wpsb-column-content{
    align-content: flex-end;
}

.wpsb-column.-va-space-between > .wpsb-column-wrap > .wpsb-column-content{
    align-content: space-between;
}

.wpsb-column.-va-space-around > .wpsb-column-wrap > .wpsb-column-content{
    align-content: space-around;
}

.wpsb-column.-va-space-evenly > .wpsb-column-wrap > .wpsb-column-content{
    align-content: space-evenly;
}

/* Grid */
@media (min-width: 768px) {

    .wpsb-col-101{
        flex: 1;
    }

    .wpsb-col-1{
        width: 8.333333%;
    }

    .wpsb-col-2{
        width: 16.666667%;
    }

    .wpsb-col-3{
        width: 25%;
    }

    .wpsb-col-4{
        width: 33.333333%;
    }

    .wpsb-col-5{
        width: 41.666667%;
    }

    .wpsb-col-6{
        width: 50%;
    }

    .wpsb-col-7{
        width: 58.333333%;
    }

    .wpsb-col-8{
        width: 66.666667%;
    }

    .wpsb-col-9{
        width: 75%;
    }

    .wpsb-col-10{
        width: 83.333333%;
    }

    .wpsb-col-11{
        width: 91.666667%;
    }

    .wpsb-col-12{
        width: 100%;
    }
    
    .wpsb-section > .wpsb-container > .wpsb-row > .wpsb-column > .wpsb-column-wrap.-posts{
        padding: 0;
    }
}

@media (max-width: 767px) {
    .wpsb-row {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .wpsb-column{
        width: 100%;
    }
}

.wpsb-column-wrap{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 100%;
}

.wpsb-column-content{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    position: relative;
    width: 100%;
}

.wpsb-element{
    position: relative;
    width: 100%;
}

.wpsb-element:not(:last-child){
    margin-bottom: 20px;
}

.wpsb-widget-image{
    text-align: center;
}

.wpsb-widget-image > a,
.wpsb-widget-image > figure > a {
    display: inline-block;
}

.wpsb-widget-image img{
    vertical-align: middle;
    display: inline-block;
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.wpsb-widget-button.-extra-small{
    font-size: 12px;
}

.wpsb-widget-button.-small{
    font-size: 14px;
}

.wpsb-widget-button.-medium{
    font-size: 16px;
}

.wpsb-widget-button.-large{
    font-size: 20px;
}

.wpsb-widget-button.-extra-large{
    font-size: 25px;
}

.wpsb-widget-button > .wpsb-widget-button-wrapper{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 100%;
}

.wpsb-widget-button.-align-left > .wpsb-widget-button-wrapper{
    justify-content: flex-start;
}

.wpsb-widget-button.-align-center > .wpsb-widget-button-wrapper{
    justify-content: center;
}

.wpsb-widget-button.-align-right > .wpsb-widget-button-wrapper{
    justify-content: flex-end;
}

.wpsb-widget-button.-align-right > .wpsb-widget-button-wrapper{
    justify-content: flex-end;
}

.wpsb-widget-button.-align-justified > .wpsb-widget-button-wrapper a{
    width: 100%;
}

.wpsb-widget-button a{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    font-size: 1em;
    padding: 0.9em 1.5em;
    text-decoration: none;
    line-height: 1;
    text-align: center;
    font-weight: 500;
    border: 1px solid transparent;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
}

.wpsb-widget-button .iconleft{
    font-size: 1.5em;
    margin-right: 10px;
}

.wpsb-widget-button .iconright{
    font-size: 1.5em;
    margin-left: 10px;
}

.wpsb-widget-button.-type-success a{
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.wpsb-widget-button.-type-success.-fill-line a{
    color: #fff;
    background-color: transparent;
    border: 3px solid transparent;
    border-color: #5cb85c;
}

.wpsb-widget-button.-type-success a:hover,
.wpsb-widget-button.-type-success a:focus{
    color: #fff;
    background-color: #449d44;
    border-color: #398439;
}

.wpsb-widget-button.-type-info a{
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}

.wpsb-widget-button.-type-info.-fill-line a{
    color: #fff;
    background-color: transparent;
    border-color: #286090;
}

.wpsb-widget-button.-type-info a:hover,
.wpsb-widget-button.-type-info a:focus{
    color: #fff;
    background-color: #286090;
    border-color: #204d74;
}

.wpsb-widget-button.-type-warning a{
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
}

.wpsb-widget-button.-type-warning.-fill-line a{
    color: #fff;
    background-color: transparent;
    border: 3px solid transparent;
    border-color: #f0ad4e;
}

.wpsb-widget-button.-type-warning a:hover,
.wpsb-widget-button.-type-warning a:focus{
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512;
}

.wpsb-widget-button.-type-alert a{
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}

.wpsb-widget-button.-type-alert.-fill-line a{
    color: #fff;
    background-color: transparent;
    border: 3px solid transparent;
    border-color: #d9534f;
}

.wpsb-widget-button.-type-alert a:hover,
.wpsb-widget-button.-type-alert a:focus{
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925;
}

.wpsb-widget-embed{
    position: relative; 
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.wpsb-widget-embed iframe,
.wpsb-widget-embed object,
.wpsb-widget-embed embed { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wpsb-widget-capture-form .conversion-block.-headline{
    background: #fff;
    color: #333;
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,.1);
}

.wpsb-widget-capture-form .conversion-block.-vertical{
    text-align: center;
    padding: 0;
}

.wpsb-widget-info-box.-ha-left .list-posts{
    justify-content: flex-start;
}

.wpsb-widget-info-box.-ha-center .list-posts{
    justify-content: center;
}

.wpsb-widget-info-box.-ha-right .list-posts{
    justify-content: flex-end;
}

@media (max-width: 767px) {

    .wpsb-column.-m-center .wpsb-widget-text-editor{
        text-align: center;
    }

    .wpsb-column.-m-center .wpsb-widget-button > .wpsb-widget-button-wrapper{
        justify-content: center;
    }
}