/*! 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: 60px;
  margin-bottom: 80px;
}
.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 {
  display: none;
  top: 50%;
  width: 100%;
  position: absolute;
  text-align: center;
  z-index: 10;
}
.fc .fc-btn {
  color: #666666;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  padding: 10px;
  border: 1px solid #666666;
  position: absolute;
  box-sizing: border-box;
  line-height: 0.3;
  font-size: 40px;
  opacity: 0.7;
}
.fc .fc-btn:hover,
.fc .fc-btn:focus,
.fc .fc-btn:active,
.fc .fc-btn.active {
  text-decoration: none;
  opacity: 1;
}
.fc .fc-btn.disabled {
  pointer-events: none;
  opacity: 0.4;
}
.fc .fc-btn.fc-btn-left {
  left: -60px;
}
.fc .fc-btn.fc-btn-left:before {
  right: 16px;
  top: 10px;
  position: absolute;
  display: block;
  content: " ";
  border: 9px solid;
  width: 0;
  height: 0;
  /* line-height: normal; */
  border-color: transparent #666666 transparent transparent !important;
}
.fc .fc-btn.fc-btn-right {
  right: -60px;
}
.fc .fc-btn.fc-btn-right:before {
  left: 16px;
  top: 10px;
  position: absolute;
  display: block;
  content: " ";
  border: 9px solid;
  width: 0;
  height: 0;
  /* line-height: normal; */
  border-color: transparent transparent transparent #666666 !important;
}
.fc .fc-pagination {
  display: none;
  font-size: 40px;
  width: 100%;
  text-align: center;
  top: 105%;
  left: 7px;
  position: absolute;
}
.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: #666666;
  position: relative;
  float: left;
  display: block;
  margin-right: 10px;
  margin-bottom: 10px;
  width: 14px;
  height: 14px;
  opacity: 0.7;
  text-decoration: none;
}
.fc .fc-pagination .fc-pagination-inner a:before {
  position: absolute;
  content: ' ';
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #666666;
  border-radius: 6px;
  box-sizing: border-box;
  top: 0;
  left: 0;
}
.fc .fc-pagination .fc-pagination-inner a:hover,
.fc .fc-pagination .fc-pagination-inner a:focus,
.fc .fc-pagination .fc-pagination-inner a:active,
.fc .fc-pagination .fc-pagination-inner a.active {
  text-decoration: none;
  opacity: 1;
}
.fc .fc-pagination .fc-pagination-inner a:hover:before,
.fc .fc-pagination .fc-pagination-inner a:focus:before,
.fc .fc-pagination .fc-pagination-inner a:active:before,
.fc .fc-pagination .fc-pagination-inner a.active:before {
  background-color: #666666;
}
.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: white;
}
.fc.fc-collapsed {
  background-image: none !important;
  margin: 0 !important;
}
.fc.fc-collapsed .fc-pagination {
  top: 70%;
}
.fc.fc-collapsed .fc-controls {
  display: none;
}
