body {
  background: #f1f5f9;
}

.player
{
    margin: 10px 0;
}
.player button
{
  width: 100px;
}
#playPreview
{
  margin-right: 10px;
}


.previewImages
{
  padding: 0;
}
.previewImages li
{
  display: inline-block;
  margin: 0 8px 10px 0;
}
.previewImages li:nth-child(6n)
{
  margin-right: 0;
}

.previewImages li a:hover
{
  outline: 1px solid #ccc;
}
.previewImages li img
{
  width: 121px;
}


.bigImage 
{
  position: relative;
  height: 600px;
  margin-bottom: 20px;
}
.bigImage img {
  position: absolute;
  opacity: 0;
  margin-top: 10px;
  height: 600px;
  max-width: 100%;
  transition-timing-function: ease-in;
  transition: 0.8s;
}
.bigImage img.active
{
  opacity: 1;
  transition-timing-function: ease-out;
  transition: 0.25s;
}




.btn-lg 
{
  background: #c54a4f !important;
}
.btn-lg:hover 
{
  background: #b71217 !important;
}