﻿/* Side call outs */

#side-callouts {
    transition: all 0.4s;
}

#side-callouts > a {
    display: block;
    white-space: nowrap;
    position: relative;
}

#side-callouts > a > .item > i {
    width: 55px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 24px;
    display: inline-block;
}

@media (min-width: 768px) {
    #side-callouts {
        position: fixed;
        top: calc(50% - 150px);
        right: 0;
        height: 255px;
        width: 55px;
        opacity: 0;
        -ms-transform: translateX(75px);
        transform: translateX(75px);
    }

    #side-callouts.visible {
        opacity: 1;
        visibility: visible;
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    #side-callouts > a > .item {
        position: absolute;
        right: -145px;
        width: 200px;
        height: 50px;
        line-height: 50px;
        -webkit-transition: right 0.4s linear;
        -moz-transition: right 0.4s linear;
        -o-transition: right 0.4s linear;
        transition: right 0.4s linear;
    }

    #side-callouts > a:nth-child(1) > .item {
        top: 0;
    }

    #side-callouts > a:nth-child(2) > .item {
        top: 52px;
    }

    #side-callouts > a:nth-child(3) > .item {
        top: 104px;
    }

    #side-callouts > a:nth-child(4) > .item {
        top: 156px;
    }

    #side-callouts > a:nth-child(5) > .item {
        top: 208px;
    }

    /* Expanded */
    #side-callouts > a:hover > .item {
        right: 0;
        z-index: 5000;
    }
}

@media (max-width: 767px) {
    #side-callouts {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 55px;
        z-index: 1000;
        background-color: white;
        border-top: 1px solid white;
    }

    #side-callouts > a {
        display: block;
        height: 55px;
        width: calc(20% - 1px);
        float: left;
        margin: 0;
    }

    #side-callouts > a > .item {
        display: block;
        text-align: center;
        height: 55px;
        line-height: 55px;
    }

    #side-callouts > a + a {
        margin-left: 1px;
    }
}



/* Accordions */

.accordion .panel .panel-heading .panel-title a {
    padding: 25px;
    position: relative;
}

.accordion .panel .panel-body {
    background-color: #fff;
    padding: 35px;
}

.accordion .panel .panel-heading .panel-title a:before {
    position: absolute;
    right: 25px;
}

.accordion .panel-inverse .panel-heading .panel-title a {
    background-color: #444;
    border-color: #444;
}

.accordion .panel-default .panel-body {
    color: #333;
}