/* Variables */
.flexslider.galleries-layout-default{
  margin-bottom: 10px;
  border:none;
}
#carousel{
  ul{
    li{
      cursor: pointer;
    }
  }
}
.galleries-layout-default,#carousel{
  border:none;
  ul{
    li{
      list-style: none !important;
    }
  }
  .slides{
    li{
      position:relative;
      .node{
        position:absolute;
      }
    }
  }
  .node{
    width:30px;
    height:30px;
    border-radius:50%;
    border:2px solid #c72137;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    &:before{
      width:14px;
      height:14px;
      content:"";
      background: #c72137;
      border-radius:50%;
      position: absolute;
      top:6px;
      left:6px;
      -webkit-transition: all 0.3s linear;
      -moz-transition: all 0.3s linear;
      -ms-transition: all 0.3s linear;
      -o-transition: all 0.3s linear;
      transition: all 0.3s linear;
    }
    &.node_thumb{
      width:20px;
      height:20px;
      border-radius:50%;
      border:1px solid #c72137;
      &:before {
        width: 8px;
        height: 8px;
        top: 5px;
        left: 5px;
      }
    }
    &:hover{
      cursor: pointer;
      -webkit-box-shadow: 0 0 5px 3px rgba(0,0,0,0.3);
      box-shadow: 0 0 5px 3px rgba(0,0,0,0.3);
      -webkit-transition: all 0.3s linear;
      -moz-transition: all 0.3s linear;
      -ms-transition: all 0.3s linear;
      -o-transition: all 0.3s linear;
      transition: all 0.3s linear;
      &:before{
        -webkit-box-shadow: 0 0 5px 2px rgba(0,0,0,0.3);
        box-shadow: 0 0 5px 2px rgba(0,0,0,0.3);
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -ms-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
      }
      .node-desc{
        opacity:1;
        visibility: visible;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -ms-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
      }
    }
    .node-desc{
      box-shadow: 0 0 3px rgba(0,0,0,0.3);
      -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3);
      width:200px;
      padding:20px 15px;
      position:absolute;
      top:35px;
      left:-80px;
      background: #fff;
      opacity:0;
      visibility: hidden;
      -webkit-transition: all 0.3s linear;
      -moz-transition: all 0.3s linear;
      -ms-transition: all 0.3s linear;
      -o-transition: all 0.3s linear;
      transition: all 0.3s linear;
      h4.note-title{
        margin-top:0;
        font-size:14px;
        line-height: 1.2em;
        margin-bottom: 0;
      }
      p{
        margin-top: 15px;
        margin-bottom: 0;
        font-size:14px;
        line-height: 1.5em;
      }
    }
  }
}
ul.flex-direction-nav{
  a{
    font-size:0;
    background:rgba(0,0,0,0.5);
    color:#fff;
    text-align: center;
    line-height: 40px;
    &:focus{
      outline: none;
    }
    &:before{
      font-size: 16px;
      text-shadow: none;
      color:#fff;
    }
    &.flex-next, &.flex-prev{
      text-align: center;
      line-height: 40px;
    }
  }
}
