/*
Darkbox
*/
/*[data-darkbox]{    ***** add cursor to clickable darkbox items *****
    cursor:pointer;
    backface-visibility:hidden;
} */



#darkbox{
    position:fixed;
    z-index:999999999;
    background:rgba(250,250,250,0.9) no-repeat none 50%;
    background-size: contain;
    box-shadow:0 0 0 3000px rgba(250,250,250,0.9);
    opacity:0; 
    visibility:hidden;
}
#darkbox.on{ 
    opacity:1;
    visibility:visible;
    height:90% !important;
    width:90% !important;
    left:5% !important;
    top:5% !important;
}
#darkbox:after{
    position:absolute;
    right:0; top:0;
    font-size:3em;
    content:"\2A2F";
    color:#828282;
    cursor:pointer;
}
/*prev next buttons*/
#darkbox_prev,
#darkbox_next{
    cursor:pointer;
	user-select: none; /* Standard syntax */
	-webkit-user-select: none; /* Chrome, Opera, Safari */
    -moz-user-select: none; /* Firefox 2+ */
    -ms-user-select: none; /* IE 10+ */
    
    position:absolute;
    top:50%;
    margin-top:-25px;
    height:50px;
    width:50px;
    -webkit-transition:0.3s;
    transition: 0.3s;
    border-top: 3px solid #828282;
    border-right: 3px solid #828282;
	
	background: none;
	outline: none;
}
#darkbox_prev:hover,
#darkbox_next:hover{
    border-color: #d93838;
}


#darkbox_prev{
    left: -2px;
    -o-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
#darkbox_next{
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    right: -2px;
}
#darkbox-description{
    position: absolute;
    width:100%;
	font: normal 16px 'latobold', Arial, Helvetica, sans-serif;
    color:#202020;
    bottom:5px;
    text-align:left;
    text-shadow: none;
}
#darkbox-description a{
    color:red;
    font-weight:bold;
}
#darkbox sub{font-size:10px;}