/*_______________________________________________________
//  CAMERA*/
.camera{
    position: relative;
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}
.camera-dialog-header{
    font-weight: 700;
}
.camera .webcam-title{
    margin: 0;
    padding: 0;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
}

.camera .focus{
}

.camera .snapshot-btn{
    height: 42px;
}

.camera .focus img{
    width: 480px;
    height: 480px;
    margin: 0 auto;

}

#webCamFocus{
    width: 480px;
    height: 480px;
    margin: 0 auto;

}

/*--- DIALOG --*/
#cameraDialog{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    text-align: center;
    display: none;
}

#cameraDialog .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 50%;
  min-width: 350px;
  height: 400px;
  z-index: 15000;
  border: 8px solid #7c9cc5;
  /*border-top-width: 5px;*/
  background: #eff3f9;
  color: #666666;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  overflow: auto;
}

#cameraDialog .title{
    background: #e3f99e;
    padding: 5px;
    padding-left: 15px;
    border-bottom: 1px solid #babeae;
}
.camera-close {
    position: absolute;
    display: block;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    line-height: 16px;
    width: 30px;
    height: 25px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    background: #fa072f;
    text-align: center;
    color: #fff;
    padding-top: 2px;
}
.close:hover {
    background: #f75b75;
}


@media(max-width: 1024px){
    #cameraDialog .content {
        width: 90%;
    }
}

@media(max-width: 768px){
    #cameraDialog .content {
        width: 90%;
    }
}

.photo-section{
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.photo-section button{
    padding: 3px 12px;
    margin-top: 20px;
}
.photo{
    width: 240px;
    height: 240px;
    margin: 0 auto;
    border: 1px dashed rgba(0,0,0,0.5);
    padding: 5px;
    cursor: pointer;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.photo img{width: 100%;}
.photo .photo-label{
    display: block;
    width: 100%;
    margin: 20% auto;
    text-align: center;
    font-size: 24px;
    opacity: 0.5;
}
.photo:hover{
    border-width: 2px;
}
.photo:active{
    border-color: #517ff5;
}
/*END*/