﻿/*!REQUIRED REFERENCES
    FILE: jdx.ui.filmstrip.scss

    *** Stylesheets
        -Style_fnProperty.scss
        -Style_fnColor.scss
        -Style_Placeholder.scss

    *** USUAGE
        #filmstrip{
            @include filmstrip();
        }

        #filmstrip-roundCorner{
            @include filmstrip($width:200px,
            $height:200px,
            $offset:8px,
            $border-width:5px,
            $border-radius:40px,
            $border-color:white,
            $gap-width:50px,
            $gap-color:transparent);
        }

        #filmstrip-circle{
            @include filmstrip(
            $width:200px,
            $height:200px,
            $offset:8px,
            $border-width:5px,
            $border-radius:100px,
            $border-color:white,
            $gap-width:50px,
            $gap-color:transparent);
        }

    *** AUTHOR
        Bikram Shakya
    
    *** BUILD DATE
        02/12/2015
*/
/*REQUIRED REFERENCES
    FILE: Style_Placeholder.scss

*** Stylesheets
    -Style_fnProperty.sass
    -Style_fnColor.sass

*/
#filmstrip-roundCorner .imageFrame, #filmstrip-roundCorner .imageFrameGap, #filmstrip-roundCorner .imagePanel span {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

#filmstrip-roundCorner {
  padding: 0;
}

.imageFrame {
  position: relative;
  display: inline-block;
  float: left;
}

.imagePanel {
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 0;
  margin: 0;
}

/*#filmstrip{
    @include filmstrip(
    $width:200px,
    $height:150px);
}*/
#filmstrip-roundCorner {
  height: 200px;
  /*$navi-size/3;*/
}

#filmstrip-roundCorner .imagestrip, #filmstrip-roundCorner .stripcontainer, #filmstrip-roundCorner .imageFrameGap, .imageFrame {
  position: relative;
  height: 200px;
}

#filmstrip-roundCorner .imagestrip {
  left: 0;
}

#filmstrip-roundCorner .stripcontainer {
  overflow: hidden;
  display: inline-block;
  float: left;
}

#filmstrip-roundCorner .imageFrameGap {
  display: inline-block;
  float: left;
  width: 250px;
  padding: 0 25px 0 25px;
  cursor:pointer;
}

.imageFrame {
    width: 200px;
    padding: 8px;
    border: 5px solid #004d8e;
    background-color: white;
    /*-webkit-border-radius: 40px;*/
    -moz-border-radius: 40px;
    -o-border-radius: 40px;
    -ms-border-radius: 40px;
    /*border-radius: 40px;*/
}

    .imageFrame.active {
        border: 5px solid white;
        background-color: transparent;
        /*background-color: transparent;*/
       
    }

.imagePanel {
    width: 174px;
    height: 174px;
    /* -webkit-border-radius: 27px;*/
    /* -moz-border-radius: 27px;
    -o-border-radius: 27px;
    -ms-border-radius: 27px;
     border-radius: 27px;*/
}

    .imagePanel span {
        position: relative;
        display: block;
        width: 174px;
        height: 30px;
        padding: 5px;
        font-size: 12px;
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
        top: 144px;
        text-align: center;
        /*-webkit-border-radius: 0 0 27px 27px;
  -moz-border-radius: 0 0 27px 27px;
  -o-border-radius: 0 0 27px 27px;
  -ms-border-radius: 0 0 27px 27px;
  border-radius: 0 0 27px 27px;*/
        /*border-bottom-left-radius:$border-radius - $offset - $border-width;
            border-bottom-right-radius:$border-radius - $offset - $border-width;*/
    }

#filmstrip-roundCorner .strip-left, #filmstrip-roundCorner .strip-right {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-top: 75px;
    width: 36px;
    height: 34px;
    background-color: white;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -o-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
    
}



#filmstrip-roundCorner .strip-left:hover, #filmstrip-roundCorner .strip-right:hover {
        background-color: #004d8e;
        border: 1px solid white;
}

    #filmstrip-roundCorner .strip-left:before, #filmstrip-roundCorner .strip-right:before {
        content: '';
       
        position: relative;
        display: block;
        top: 50%;
        width: 11px;
        height: 11px;
        -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
        -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
        -o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
        -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
        transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    }

#filmstrip-roundCorner .strip-left {
  float: left;
}

#filmstrip-roundCorner .strip-left:hover:before {
  border-top: 3px solid white;
  border-left: 3px solid white;
}

    #filmstrip-roundCorner .strip-left:before {
        left: 54%;
        /*left:($navi-size - $arrow)/2;*/
        border-top: 3px solid #004d8e;
        border-left: 3px solid #004d8e;
    }

#filmstrip-roundCorner .strip-right {
  float: right;
  margin-left: 25px;
}

#filmstrip-roundCorner .strip-right:hover:before {
  border-bottom: 3px solid white;
  border-right: 3px solid white;
}

    #filmstrip-roundCorner .strip-right:before {
        left: 46%;
        /*left: $h/2;*/
        border-bottom: 3px solid #004d8e;
        border-right: 3px solid #004d8e;
    }

/*#filmstrip-circle{
    @include filmstrip(
    $width:200px,
    $height:200px,
    $offset:8px,
    $border-width:5px,
    $border-radius:100px,
    $border-color:white,
    $gap-width:50px,
    $gap-color:transparent);
}*/

/*# sourceMappingURL=jdx.ui.filmstrip.css.map */