/* -- ACCORDION ------------------------- */
.webicon-accordion {
    margin: 18px 0;
}

.webicon-accordion .trigger {
    display: block;
    position: relative;
    color: #333;
    padding: 21px 0 18px 30px;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    text-decoration: none;
    margin-top: -1px;
}

.webicon-accordion .trigger:hover {
    color: #ff9f60;
}

.webicon-accordion .trigger:after,
.webicon-accordion .trigger.active:after {
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 32px;
}

.webicon-accordion .trigger:after {
    content: "+";
    color: #ff9f60;
}

.webicon-accordion .trigger.active:after {
    content: "-";
    color: #ff9f60;
}

.webicon-accordion .trigger.active:hover {
    color: #333;
}

.webicon-accordion .accordion-content {
    display: none;
    overflow: hidden;
    padding: 20px 0 20px 30px;
}

/* -- Buttons ------------------------- */
.webicon-button {
    font-size: 14px;
    padding: 5px 10px;
    margin: 5px 0;
    cursor: pointer;
    transition-duration: .2s;
    transition-timing-function: cubic-bezier(0, 0, .58, 1);
    transition-property: background, background-color, color, box-shadow, -webkit-transform;
    transition-property: transform, background, background-color, color, box-shadow;
    transition-property: transform, background, background-color, color, box-shadow, -webkit-transform;
    display: inline-block;
    position: relative;
    border: 0;
    vertical-align: middle;
    text-align: center;
    white-space: nowrap;
    font-weight: 700;
    background-color: #222;
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 0 1px transparent;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
}

.webicon-button:hover {
    -webkit-transform: scale(1.03) translateY(-2px);
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, .7);
}

.webicon-button span {
    white-space: nowrap;
    font-size: 13px;
    padding: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-family: sans-serif;
}

/* -- Dropcap ------------------------- */
.webicon-dropcap {
    font-size: 70px;
    float: left;
    line-height: 60px;
    padding: 4px 12px 0 0;
}

/* --  Buttons Colors  ------------------------- */
.color-black span, .color-black:hover {
    color: #222;
}

.color-white span, .color-white:hover {
    color: #fff;
}

.background-red {
    background-color: #fe6969;
}

.background-pink {
    background-color: #f15ac0;
}

.background-orange {
    background-color: #ff9f61;
}

.background-yellow {
    background-color: #face00;
}

.background-green {
    background-color: #00deaf;
}

.background-teal {
    background-color: #00babe;
}

.background-blue {
    background-color: #0faded;
}

.background-purple {
    background-color: #664c66;
}

.background-brown {
    background-color: #cccbad;
}

.background-gray {
    background-color: #ddd;
}

.background-black {
    background-color: #222;
}

/* -- Columns ------------------------- */
/*.webicon-columns {*/
/*margin-left: -2%;*/
/*}*/

.webicon-columns div.webicon-col {
    float: left;
    margin-left: 2%;
    margin-bottom: 18px;
}

.webicon-columns div.webicon-col:first-child {
    margin-left: 0;
}

.webicon-columns div.webicon-col img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
}

.webicon-columns.half div.webicon-col {
    width: 48%;
}

.webicon-columns.third div.webicon-col {
    width: 31.33%;
}

.webicon-columns.fourth div.webicon-col {
    width: 23%;
}

.webicon-columns.two-thirds-and-third div.webicon-col:first-child {
    width: 64.67%;
}

.webicon-columns.two-thirds-and-third div.webicon-col {
    width: 31.33%;
}

.webicon-columns.third-and-two-thirds div.webicon-col:first-child {
    width: 31.33%;
}

.webicon-columns.third-and-two-thirds div.webicon-col {
    width: 64.67%;
}

/* -- Separator ------------------------- */
.webicon-separator {
    margin: 20px 0;
}

.webicon-separator.type-thin {
    border-top: 1px solid #f1f1f1;
}

.webicon-separator.type-thick {
    border-top: 3px solid #f1f1f1;
}

.webicon-separator.type-dotted {
    border-top: 2px dotted #f1f1f1;
}

.webicon-separator.type-double {
    border-top: 3px double #f1f1f1;
}

.webicon-separator.type-dashed {
    border-top: 2px dashed #f1f1f1;
}

.webicon-separator.type-space {
    clear: both;
    height: 1px;
    margin: 30px 0;
}

/* -- Clear Floats ------------------------- */
.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

@media only screen and (max-width: 800px) {

    /* -- Columns & Authors ------------------------- */
    .webicon-columns {
        margin-left: 0;
    }

    .webicon-columns div.webicon-col {
        float: none;
        margin-left: 0;
        width: 100% !important;
    }

}