/*! Frame Carousel - v0.1.0 - 2015-06-08
* http://www.eastros.com/frame-carousel/
* Copyright (c) 2015 Umar Ashfaq; Licensed MIT */

.fc {
    position: relative;
    text-align: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 300px;
    height: 400px;
    display: inline-block;
    margin: 20px 60px 0px
}

.fc .fc-frame {
    margin: 0 auto
}

.fc .fc-image-mask {
    background: #fff;
    position: absolute;
    overflow: hidden;
    border-radius: 2px
}

.fc .fc-film {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0
}

.fc .fc-film:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.fc .fc-image-masked {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    float: left
}

.fc .fc-controls {
    top: 50%;
    width: 100%;
    position: absolute;
    text-align: center;
    z-index: 10
}

.fc .fc-btn {
    color: #666;
    width: 40px;
    height: 40px;
    /*border-radius: 20px;*/
    padding: 10px;
    /*border: 1px solid #666;*/
    position: absolute;
    box-sizing: border-box;
    line-height: .3;
    font-size: 40px;
    opacity: .7
}

.fc .fc-btn.fc-btn-left:before,
.fc .fc-btn.fc-btn-right:before {
    top: 10px;
    display: block;
    content: " ";
    width: 0;
    position: absolute
}

.fc .fc-btn.active,
.fc .fc-btn:active,
.fc .fc-btn:focus,
.fc .fc-btn:hover {
    text-decoration: none;
    opacity: 1
}

.fc .fc-btn.disabled {
    pointer-events: none;
    opacity: .4
}

.fc .fc-btn.fc-btn-left {
    left: -60px;
    background: url('../../images/icon-arrow-left.png') no-repeat;
}

.fc .fc-btn.fc-btn-left:before {
    right: 16px;
    /*border: 9px solid;*/
    /*height: 0;*/
    /*border-color: transparent #666 transparent transparent!important*/
}

.fc .fc-btn.fc-btn-right {
    right: -60px;
    background: url('../../images/icon-arrow-right.png') no-repeat;
    background-position: right;
}

.fc .fc-btn.fc-btn-right:before {
    left: 16px;
    /*border: 9px solid;*/
    /*height: 0;*/
    /*border-color: transparent transparent transparent #666!important*/
}

.fc .fc-pagination {
    font-size: 40px;
    width: 100%;
    text-align: center;
    top: 105%;
    left: 7px;
    position: absolute;
    display: none;
}

.fc .fc-pagination .fc-pagination-inner {
    margin: 0 auto;
    display: inline-block
}

.fc .fc-pagination .fc-pagination-inner:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.fc .fc-pagination .fc-pagination-inner a {
    color: #666;
    position: relative;
    float: left;
    display: block;
    margin-right: 10px;
    margin-bottom: 10px;
    width: 14px;
    height: 14px;
    opacity: .7;
    text-decoration: none
}

.fc .fc-pagination .fc-pagination-inner a:before {
    position: absolute;
    content: ' ';
    display: block;
    width: 12px;
    height: 12px;
    border: 1px solid #666;
    border-radius: 6px;
    box-sizing: border-box;
    top: 0;
    left: 0
}

.fc .fc-pagination .fc-pagination-inner a.active,
.fc .fc-pagination .fc-pagination-inner a:active,
.fc .fc-pagination .fc-pagination-inner a:focus,
.fc .fc-pagination .fc-pagination-inner a:hover {
    text-decoration: none;
    opacity: 1
}

.fc .fc-pagination .fc-pagination-inner a.active:before,
.fc .fc-pagination .fc-pagination-inner a:active:before,
.fc .fc-pagination .fc-pagination-inner a:focus:before,
.fc .fc-pagination .fc-pagination-inner a:hover:before {
    background-color: #666
}

.fc .fc-animate {
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000
}

.fc .fc-debug:after {
    content: attr(data-debug);
    position: absolute;
    top: 0;
    left: 0;
    color: red;
    background: #fff
}

.fc.fc-collapsed {
    background-image: none!important;
    margin: 0!important
}

.fc.fc-collapsed .fc-pagination {
    top: 70%
}

.fc.fc-collapsed .fc-controls {
    display: none
}