/* JQuery CamShoot Style
-- version 1.2
-- copyright 2018 abu@dzakiyyah.com
-- licensed under the MIT
-- filename jquery.camshoot.css
*/


.flasheffect{
    opacity: 1;
    -webkit-animation: flash 1s;
    animation: flash 1s;
}

@-webkit-keyframes flash {
    0% {  opacity: .3;  }
    100% { opacity: 1; }
}
@keyframes flash {
    0% { opacity: .3; }
    100% { opacity: 1;  }
}

.camera_toolbox{
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.camera_toolbox a{
    padding-left: 10%;
    padding-right: 10%;
}

.camera_toolbox a img{
    border:1px solid #ffffff;
    padding: 5px;
    border-radius: 10px;
}

.camera_toolbox a img{
    cursor: pointer;
    opacity: .1;
}

.camera_toolbox a img:hover{
    opacity: 1;
}

.camera_toolbox a img#delete,
.camera_toolbox a img#save
{
    visibility: hidden;
}

.snap_thumb{
    top:3px;
    left:3px;
    text-align: left;
    position: absolute;
}

.snap_thumb img{
    border-radius: 5px;
}

.snap_thumb canvas{
    display: none;
}