/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 16-giu-2014, 7.54.19
    Author     : Vincenzo
*/

html {
	line-height: 100%;
	font-family: Roboto;
	font-size: 14px;
	line-height: 100%;
	font-weight: 400;
}

.clearfix:after {
     visibility: hidden;
     display: block;
     font-size: 0;
     content: " ";
     clear: both;
     height: 0;
}
.clearfix { display: inline-block; }
/* start commented backslash hack \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* close commented backslash hack */

.col-24 { width: calc(100% - 30px)					!important; }
.col-19 { width: calc(79.16666666666667% - 30px)	!important; }
.col-18 { width: calc(75% - 30px)					!important; }
.col-17 { width: calc(70.83333333333333% - 30px)	!important; }
.col-16 { width: calc(66.66666666666667% - 30px)	!important; }
.col-15 { width: calc(62.5% - 30px)					!important; }
.col-14 { width: calc(58.33333333333333% - 30px)	!important; }
.col-13 { width: calc(54.16666666666667% - 30px)	!important; }
.col-12 { width: calc(50% - 30px)					!important; }
.col-11	{ width: calc(45.83333333333333% - 30px)	!important; }
.col-10	{ width: calc(41.66666666666667% - 30px)	!important; }
.col-9	{ width: calc(37.5% - 30px)					!important; }
.col-8	{ width: calc(33.33333333333333% - 30px)	!important; }
.col-7	{ width: calc(29.11111111111116% - 30px)	!important; }
.col-6	{ width: calc(25% - 30px)					!important; }
.col-5	{ width: calc(20.83333333333333% - 30px)	!important; }
.col-4	{ width: calc(16.66666666666666% - 30px)	!important; }
.col-3	{ width: calc(12.5% - 30px)					!important; }
.col-2	{ width: calc(8.333333333333333% - 30px)	!important; }
.col-1	{ width: calc(4.166666666666666% - 30px)	!important; }

.cursor {
	cursor: pointer;
}

.text-center		{ text-align: center;	}
.text-right			{ text-align: right;	}
.text-left			{ text-align: left;		}

.width-100			{ width:			100% !important; }
.width-75			{ width:			75% !important; }
.width-50			{ width:			 50% !important; }

.margin-top-10		{ margin-top:		10px !important; }
.margin-top-20		{ margin-top:		20px !important; }
.margin-top-30		{ margin-top:		30px !important; }
.margin-top-40		{ margin-top:		40px !important; }
.margin-top-50		{ margin-top:		50px !important; }
.margin-bottom-30	{ margin-bottom:	30px !important; }
.margin-bottom-20	{ margin-bottom:	20px !important; }
.margin-bottom-10	{ margin-bottom:	10px !important; }
.margin-left-20		{ margin-left:		20px !important; }
.margin-left-30		{ margin-left:		30px !important; }
.margin-right-5		{ margin-right:		5px !important; }
.margin-right-10	{ margin-right:		10px !important; }
.margin-right-30	{ margin-right:		30px !important; }
.margin-top-0		{ margin-top:		 0px !important; }
.margin-lr-5		{ margin:		 0px 5px !important; }

.padding-30			{ padding:			30px !important; }
.padding-top-7		{ padding-top:		 7px !important; }
.padding-top-20		{ padding-top:		20px !important; }
.padding-bottom-50	{ padding-bottom:	50px !important; }

.no-padding			{ padding: 0px			!important; }
.no-margin			{ margin: 0px			!important; }
.no-border-radius	{ border-radius: 0px	!important; }
.no-float			{ float: none			!important; }

.height-auto		{ height: auto			!important; }

.red	{ color: #FF0000; }
.green	{ color: #1FBB00; }
.yellow	{ color: #ffd464; }

.float-left {
	float: left;
}

.p {
	font-size: 16px;
	color: #FFF;
	font-weight: 300;
}

.equal	{ font-weight: 700; font-size: 22px; }

.hide {	
	display: none;
	opacity: 0;
	
    -webkit-animation: fadeout 0.5s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadeout 0.5s; /* Firefox < 16 */
        -ms-animation: fadeout 0.5s; /* Internet Explorer */
         -o-animation: fadeout 0.5s; /* Opera < 12.1 */
            animation: fadeout 0.5s;
}

@keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* Firefox < 16 */
@-moz-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* Internet Explorer */
@-ms-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* Opera < 12.1 */
@-o-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

.show { 
	opacity: 1;
    display: block;
	
	-webkit-animation: fadein 0.5s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 0.5s; /* Firefox < 16 */
        -ms-animation: fadein 0.5s; /* Internet Explorer */
         -o-animation: fadein 0.5s; /* Opera < 12.1 */
            animation: fadein 0.5s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.loader-page {
	width: 200px;
    height: 50px;
    background-color: #CCC;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: url(../images/loader-page.gif);
    background-repeat: no-repeat;
    background-position: center center;
}

.chart {
	position: relative;
	min-height: 295px;
}

.chart .loader-page {
	width: 120px;
    height: 30px;
	background-size: 100% auto;
}

.bt-save-bottom {
	position: fixed;
    z-index: 100;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
	box-sizing: border-box;
	opacity: 0;
}

.def-list {
	margin: 0px;
	padding: 0px;
}

.def-list dt {
	color: rgba(255, 255, 255, 0.5);
	font-size: 16px;
    display: block;
    width: 150px;
    line-height: 32px;
	font-weight: 300;
	float: left;
}

.def-list dd {
	font-size: 20px;
	font-weight: 400;
	color: #FFF;
	display: block;
	line-height: 32px;
	margin: 0px;
	float: left;
	width: calc(100% - 150px);
	min-height: 32px;
	background-color: #20202a;
    border-radius: 3px;
    margin-bottom: 5px;
    padding: 3px 10px;
    box-sizing: border-box;
}

.frm {
	
}

.frm  fieldset {
	border: 0px;
	margin: 0px;
    padding: 0px;
}

.frm .radio label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
    margin-right: 15px;
    font-size: 13px;
	line-height: 29px;
	color: #9593AB;
	width: auto;
}

.frm input[type=radio] {
    display: none;
}

.frm .radio label:before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 0px;
    position: absolute;
    left: 0;
    bottom: 1px;
    background-color: #20202A;
    border-radius: 12px;
    -webkit-box-shadow: inset 0px 2px 3px 0px rgba(0,0,0,0.05);
    -moz-box-shadow: inset 0px 2px 3px 0px rgba(0,0,0,0.05);
    box-shadow: inset 0px 2px 3px 0px rgba(0,0,0,0.15);
    border-bottom: 1px solid #3E3D50;
}

.frm input[type=radio]:checked + label:before {
	font-family: FontAwesome;
    content: "\f00c";
    color: #04A2B3;
    font-size: 14px;
    text-align: center;
    line-height: 24px;
}


.frm .row {
	margin-bottom: 10px;
}

.frm label {
	display: inline-block;
    width: 150px;
	vertical-align: top;
    /* padding-top: 8px; */
	color: #999;
	line-height: 32px;
}

.frm .label-mini {
	color: #999;
    font-size: 10px;
    text-transform: uppercase;
	position: absolute;
}

.frm .text-block {
    display: inline-block;
    color: #9593AB;
    font-size: 13px;
    padding: 0px 5px;
    position: relative;
    line-height: 30px;
    top: -1px;
}

.frm .field,
.dataTables_wrapper input,
.dataTables_wrapper select{
	width: calc(100% - 154px);
    box-sizing: border-box;
    margin: 0px;
    padding: 8px 10px;
    border-radius: 3px;
    border: 1px solid #DDD;
    font-size: 16px;
    -webkit-box-shadow: inset 0px 2px 3px 0px rgba(0,0,0,0.05);
    -moz-box-shadow: inset 0px 2px 3px 0px rgba(0,0,0,0.05);
    box-shadow: inset 0px 2px 3px 0px rgba(0,0,0,0.05);
    border-bottom: 1px solid #CCC;
	outline: none;
	line-height: 24px;
}

.frm select.field {
	padding: 8px 10px 9px;
}

.dataTables_wrapper input,
.dataTables_wrapper select{
	width: auto;
}

.bt, .bt-small,
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
	display: inline-block;
    font-size: 14px;
    border: 0px;
    font-weight: 700;
    padding: 13px 60px;
    border-radius: 3px;
    background-color: #f2cb13;
    color: #222 !important;
    text-transform: uppercase;
	text-decoration: none;
	box-sizing: border-box;
	text-align: center;
}

.bt-small {
	font-size: 12px;
	padding: 5px 15px;
	line-height: 16px;
}

.bt-small .fa {
	font-size: 14px;
}

.bt-green {
	background-color: #04A2B3 !important;
}

.bt-grey {
	background-color: #999 !important;
}

.bt-add-peso {
	position: absolute;
    bottom: 8px;
    right: 38px;
    padding: 0px 6px 3px;
    box-sizing: border-box;
}

.bt-pesi-table {
	position: absolute;
    bottom: 8px;
    right: 10px;
    padding: 2px 6px 1px;
    box-sizing: border-box;
}

.bt-add-peso .fa {
	font-size: 10px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
	background: none;
	padding: 10px;
	border: 0px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
	background: none;
	background-color: #333;
	padding: 10px;
	color: #FFF !important;
	border: 0px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
	background-color: #008acf !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
	background: none;
	padding: 10px;
	color: #FFF !important;
	border: 0px;
	background-color: #04a2b3;
}

.login-page {
    background-color: #EFEFEF;
    /* background: url(../images/bg-login.jpg); 
    background-size: contain;
    background-position: center center;
	*/
    width: 100%;
    height: 100vh;
}

.frm-login legend {
	font-size: 30px;
    line-height: 100%;
    margin-bottom: 30px;
    color: #FFF;
    font-weight: 100;
}

.frm-login {
    border-radius: 5px;
    padding: 35px 40px 30px 40px;
    max-width: 400px;
    margin: auto;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    display: table;
    box-sizing: border-box;
    width: 100%;
    background-color: rgba(255,255,255,0.5);
}

.frm-login figure {
	margin: 0px;
	padding: 0px;
	margin-bottom: 30px;
	height: 60px;
}

.frm-login figure img {
	height: 100%;
}

.frm-login input[type="text"],
.frm-login input[type="password"] {
	width: 100%;
}

.frm-login .bt {
	margin-top: 10px;
}


#header {
    background-color: #008acf;
    padding: 0px;
    position: fixed;
    width: calc(100% - 300px);
    height: 60px;
    box-sizing: border-box;
    color: #FFF;
    z-index: 1000;
    box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14),0 1px 10px 0 rgba(0,0,0,0.12),0 2px 4px -1px rgba(0,0,0,0.2);
    left: 300px;
}

.logo {
    display: table;
    padding: 13px 10px 6px;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #CCC;
	text-align: center;
}

.logo a  {
	display: block;
	height: 40px;
}

.logo img  {
	width: 80%;
}

#header .dropdown-user {
	position: absolute;
    top: 0px;
    right: 20px;
    height: 60px;
    box-sizing: border-box;
    padding: 10px;
    /* min-width: 200px; */
}

#header .dropdown-user figure {
	margin: 0px;
    height: 40px;
    border-radius: 100%;
    overflow: hidden;
    width: 40px;
    float: left;
}

#header .dropdown-user figure img {
    height: 100%;
}

#header .dropdown-user .nome {
	line-height: 40px;
    padding-left: 10px;
    float: left;
	text-decoration: none;
	color: #FFF;
}

#header .dropdown-user-menu {
	background-color: #20202A;
    width: 200px;
    position: absolute;
    right: 0px;
    top: 55px;
    border-radius: 3px;
    display: none;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.3);
}



#header .dropdown-user-menu ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

#header .dropdown-user-menu ul li {
    border-bottom: 1px solid #2B2A3C;
}

#header .dropdown-user-menu ul li:last-of-type {
	border-bottom: none;
}

#header .dropdown-user-menu ul a {
	color: #FFF;
	display: block;
	padding: 15px 20px;
	text-decoration: none;
}

#left-sidebar {
	width: 300px;
    background-color: #FFF;
    position: fixed;
    top: 0px;
    height: 100%;
    padding: 0px 0px;
    box-sizing: border-box;
    box-shadow: 0 7px 10px 0 rgba(0,0,0,0.05),0 1px 10px 0 rgba(0,0,0,0.10),0 2px 4px -1px rgba(0,0,0,0.2);
    z-index: 1;
}

#left-sidebar nav {
	margin-top: 10px;
}

#left-sidebar nav ul {
	margin: 0px;
    padding: 0px;
    list-style-type: none;
}

#left-sidebar nav ul li {
	/* border-bottom: 1px solid #CCC; */
	padding-left: 20px;
}

#left-sidebar nav ul li:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

#left-sidebar nav ul li .icona {
    /* background-color: #BBB; */
    margin: 0px;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    float: left;
    margin-right: 10px;
    position: relative;
    display: table;
    text-align: center;
}

#left-sidebar nav ul li .icona i {
    display: table-cell;
    font-size: 20px;
    color: #000;
    vertical-align: middle;
}

#left-sidebar nav ul li .icona img {
    width: 100%;
    top: -10px;
    position: relative;
}

#left-sidebar nav a {
	color: #666;
    text-decoration: none;
    display: block;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 400;
    line-height: 50px;
    padding-left: 0px;
}

#left-sidebar nav a:hover {
	color: #333;
}

#main {
    position: absolute;
    top: 60px;
    left: 300px;
    background-color: #f9f9f9;
    width: calc(100% - 300px);
    min-height: calc(100% - 60px);
	box-sizing: border-box;
    padding: 0px;
	/* background: url(../images/bg.jpg); */
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}

#main .page-title {
	font-size: 32px;
	line-height: 100%;
	font-weight: 100;
	margin: 0px;
	border-bottom: 1px solid #dbe4ea;
	background-color: #FFFFFF;
	box-sizing: border-box;
	padding: 17px 30px;
}

#main .content {
	padding: 15px;
}

#main .box {
    background-color: #FFFFFF;
    padding: 0px;
    /* border: 1px solid #dbe4ea; */
    border-radius: 3px;
    box-sizing: border-box;
    margin: 15px;
    float: left;
    overflow: hidden;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.12),0 1px 5px 0 rgba(0,0,0,0.2);
}

#main .box .title {
	background-color: #333;
    padding: 30px;
    position: static;
    margin-top: 0;
    width: 100%;
    border-radius: 3px 3px 0px 0px;
    font-size: 24px;
    font-weight: normal;
    position: relative;
    border-bottom: 1px solid #dbe4ea;
    margin-bottom: 0;
	color: #FFF;
}

#main .box .title::before {
	content: "";
    width: 5px;
    height: 40px;
    display: block;
    position: absolute;
    background-color: #008acf;
    left: 0px;
    top: calc(50% - 20px);
}



.status {
	display: inline-block;
    width: 10px;
    height: 10px;
    text-indent: -9000px;
    background: #CCCCCC;
	border-radius: 10px;
}

.status-1 {
    background-color: #1FBB00;
}
.status-0 {
    background-color: #FF0000;
}

#ok {
	position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #1FBB00;
    padding: 15px 40px;
    border-radius: 3px;
    color: #FFFFFF;
	z-index: 1200;
}

#errors {
	position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #FF0000;
    padding: 15px 40px;
    border-radius: 3px;
    color: #FFFFFF;
	z-index: 1200
}

.gallery {
	margin-top: 10px;
}

.gallery .picture {
	width: 120px;
	text-align: center;
	display: inline-block;
	margin-top: 20px;
}

.gallery figcaption {
	width: 100%;
    height: 90px;
    overflow: hidden;
	position: relative;
	background-color: #eaeff3;
	margin-bottom: 5px;
}

.gallery figcaption img {
	width: 100%;
	position: absolute;
	margin: auto;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
}

/* personalizzazione datatable */

.dataTables_wrapper {
	/* margin-top: 30px; */
}

table.dataTable {
    padding: 20px 0px 0px 0px;
	margin: 0px 0px 15px 0px;
}

table.dataTable a {
	color: #04a2b3;
}

table.dataTable thead th, 
table.dataTable tbody td {
    padding: 8px 10px;
	border-right: 1px solid rgba(0,0,0,0.1);
}

table.dataTable thead th, table.dataTable thead td {
    padding: 12px 18px;
    background-color: #008acf;
    color: #FFFFFF;
}

table.dataTable.no-footer {
    border-bottom: 1px solid #CCC;
}

table.dataTable tbody tr.odd {
    background-color: #f9f9f9;
}
table.dataTable tbody tr.even {
    background-color: #f0f0f0;
}


.tbl1 tbody td {
	padding: 6px 10px;
}


/* TABS gestione utente */

.tabs ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    position: relative;
}

.tabs ul::after {
    border-bottom: 1px solid #444;
    visibility: visible !important;
    content: " ";
    display: block;
    position: absolute;
    bottom: 0px;
    height: 1px;
    width: 100%;
    z-index: 10;
}

.tabs ul li {
    display: inline-block;
    position: relative;
    margin: 0px 0px;
}

.tabs ul li a {
    display: block;
    color: #FFF;
    text-decoration: none;
    font-size: 14px;
    padding: 15px 20px;
    border-bottom: 0px;
    border-radius: 3px 3px 0px 0px;
    background-color: #FFF;
    color: #999;
	/* border: 1px solid #20202A; */
}

.tabs ul li a i.fa {
	line-height: 13px;
    font-size: 20px;
}

.tabs ul li a.active {
    background-color: transparent !important;
    border: 0px;
    color: #000 !important;
}

.tabs ul li a.active::after {
    position: absolute;
    border-bottom: 1px solid #272634;
    content: " ";
    display: block;
    z-index: 1000;
    width: 100%;
    bottom: 0px;
    left: 0px;
    height: 3px;
    background-color: #333;
}

#tab-content {
    padding: 0px 0px;
    height: calc(100vh - 300px);
    overflow-y: auto;
    margin: 0px 0px 0px;
	position: relative;
	box-sizing: border-box;
}

#tab-content .inner {
	padding-top: 30px;
}

#tab-content sidebar {
	margin: 5px 0px;
}

#tab-content sidebar ul {
	margin: 0px;
    padding: 0px;
    list-style-type: none;
	border-bottom: 1px solid #444;
	margin-bottom: 30px;
}

.title-3 {
	font-size: 24px;
    font-weight: 100;
    color: #FFF;
    margin: 0px 0px 30px 0px;
    line-height: 24px;
    border-bottom: 1px solid #434252;
    padding-bottom: 20px;
}

#tab-content sidebar {
	
}

#tab-content sidebar li {
    float: left;
}

#tab-content sidebar ul a {
	display: block;
    color: #FFF;
    text-decoration: none;
    font-size: 16px;
    line-height: 36px;
	position: relative;
	padding: 15px 30px 10px;
	color: #9593AB;
	text-align: center;
}

#tab-content sidebar ul a.active,
#tab-content sidebar ul a:hover {
	color: #FFF;
}

#tab-content sidebar ul a.active::before,
#tab-content sidebar ul a:hover::before {
	content: " ";
	display: block;
	position: absolute;
	height: 4px;
	width: 100%;
	background-color: #04A2B3;
	bottom: 0px;
	left: 0px;
}

.separator {
    height: 1px;
    border-bottom: 1px solid #434252;
    margin: 30px 0px;
}

.title-separator {
	margin: 30px 0px 15px;
	position: relative;
}

.title-separator span {
	font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #04A2B3;
    font-weight: 900;
    padding: 5px 10px;
    background-color: #272634;
    display: table;
    z-index: 20;
    position: relative;
    left: 30px;
}

.title-separator::before {
	border-bottom: 1px solid #434252;
    content: " ";
    width: 100%;
    position: absolute;
    display: block;
    top: 12px;
    z-index: 10;
}

.border-bottom::after {
	display: block;
    content: "";
    border-bottom: 1px solid #999;
    position: absolute;
    bottom: -10px;
    left: 0px;
    width: 100%;
}


/* fotogallery */

#fotogallery figure {
	width: 200px;
    height: 200px;
    overflow: hidden;
    display: inline-block;
    margin: 0px 20px 20px 0px;
	position: relative;
	border: 1px solid #EEE;
    border-radius: 5px;
}

#fotogallery figure img {
	width: 100%;
}

#fotogallery figure figcaption {
    position: absolute;
    bottom: 10px;
    right: 10px;
	width: auto;
    height: auto;
}

.tab-content {
	display: none;
}

.tab-content.show {
	display: block;
}


.domain-select {
	background-color: #EFEFEF;
	padding: 10px 20px 0px 20px;
	border-bottom: 1px solid #DDD;
}

.domain-select label {
	font-size: 11px;
    display: block;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 3px;
}



/* dropzone */

.dropzone {
    font-size: 18px;
    font-weight: 100;
    text-align: center;
    padding: 10px;
    border: 3px dashed #CCC;
	background-color: transparent;
	color: #999;
	height: auto !important;
}

@-webkit-keyframes passing-through { 0% { opacity: 0; -webkit-transform: translateY(40px); -moz-transform: translateY(40px); -ms-transform: translateY(40px); -o-transform: translateY(40px); transform: translateY(40px); }
  30%, 70% { opacity: 1; -webkit-transform: translateY(0px); -moz-transform: translateY(0px); -ms-transform: translateY(0px); -o-transform: translateY(0px); transform: translateY(0px); }
  100% { opacity: 0; -webkit-transform: translateY(-40px); -moz-transform: translateY(-40px); -ms-transform: translateY(-40px); -o-transform: translateY(-40px); transform: translateY(-40px); } }
@-moz-keyframes passing-through { 0% { opacity: 0; -webkit-transform: translateY(40px); -moz-transform: translateY(40px); -ms-transform: translateY(40px); -o-transform: translateY(40px); transform: translateY(40px); }
  30%, 70% { opacity: 1; -webkit-transform: translateY(0px); -moz-transform: translateY(0px); -ms-transform: translateY(0px); -o-transform: translateY(0px); transform: translateY(0px); }
  100% { opacity: 0; -webkit-transform: translateY(-40px); -moz-transform: translateY(-40px); -ms-transform: translateY(-40px); -o-transform: translateY(-40px); transform: translateY(-40px); } }
@keyframes passing-through { 0% { opacity: 0; -webkit-transform: translateY(40px); -moz-transform: translateY(40px); -ms-transform: translateY(40px); -o-transform: translateY(40px); transform: translateY(40px); }
  30%, 70% { opacity: 1; -webkit-transform: translateY(0px); -moz-transform: translateY(0px); -ms-transform: translateY(0px); -o-transform: translateY(0px); transform: translateY(0px); }
  100% { opacity: 0; -webkit-transform: translateY(-40px); -moz-transform: translateY(-40px); -ms-transform: translateY(-40px); -o-transform: translateY(-40px); transform: translateY(-40px); } }
@-webkit-keyframes slide-in { 0% { opacity: 0; -webkit-transform: translateY(40px); -moz-transform: translateY(40px); -ms-transform: translateY(40px); -o-transform: translateY(40px); transform: translateY(40px); }
  30% { opacity: 1; -webkit-transform: translateY(0px); -moz-transform: translateY(0px); -ms-transform: translateY(0px); -o-transform: translateY(0px); transform: translateY(0px); } }
@-moz-keyframes slide-in { 0% { opacity: 0; -webkit-transform: translateY(40px); -moz-transform: translateY(40px); -ms-transform: translateY(40px); -o-transform: translateY(40px); transform: translateY(40px); }
  30% { opacity: 1; -webkit-transform: translateY(0px); -moz-transform: translateY(0px); -ms-transform: translateY(0px); -o-transform: translateY(0px); transform: translateY(0px); } }
@keyframes slide-in { 0% { opacity: 0; -webkit-transform: translateY(40px); -moz-transform: translateY(40px); -ms-transform: translateY(40px); -o-transform: translateY(40px); transform: translateY(40px); }
  30% { opacity: 1; -webkit-transform: translateY(0px); -moz-transform: translateY(0px); -ms-transform: translateY(0px); -o-transform: translateY(0px); transform: translateY(0px); } }
@-webkit-keyframes pulse { 0% { -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transform: scale(1); }
  10% { -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); }
  20% { -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transform: scale(1); } }
@-moz-keyframes pulse { 0% { -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transform: scale(1); }
  10% { -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); }
  20% { -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transform: scale(1); } }
@keyframes pulse { 0% { -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transform: scale(1); }
  10% { -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); }
  20% { -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transform: scale(1); } }
.dropzone, .dropzone * { box-sizing: border-box; }

/* .dropzone { min-height: 150px; border: 2px solid rgba(0, 0, 0, 0.3); background: white; padding: 54px 54px; } */
.dropzone.dz-clickable { cursor: pointer; }
.dropzone.dz-clickable * { cursor: default; }
.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * { cursor: pointer; }
.dropzone.dz-started .dz-message { display: none; }
.dropzone.dz-drag-hover { border-style: solid; }
.dropzone.dz-drag-hover .dz-message { opacity: 0.5; }
.dropzone .dz-message { text-align: center; margin: 2em 0; }
.dropzone .dz-preview { position: relative; display: inline-block; vertical-align: top; margin: 16px; min-height: 100px; }
.dropzone .dz-preview:hover { z-index: 1000; }
.dropzone .dz-preview:hover .dz-details { opacity: 1; }
.dropzone .dz-preview.dz-file-preview .dz-image { border-radius: 20px; background: #999; background: linear-gradient(to bottom, #eee, #ddd); }
.dropzone .dz-preview.dz-file-preview .dz-details { opacity: 1; }
.dropzone .dz-preview.dz-image-preview { background: white; }
.dropzone .dz-preview.dz-image-preview .dz-details { -webkit-transition: opacity 0.2s linear; -moz-transition: opacity 0.2s linear; -ms-transition: opacity 0.2s linear; -o-transition: opacity 0.2s linear; transition: opacity 0.2s linear; }
.dropzone .dz-preview .dz-remove { font-size: 14px; text-align: center; display: block; cursor: pointer; border: none; }
.dropzone .dz-preview .dz-remove:hover { text-decoration: underline; }
.dropzone .dz-preview:hover .dz-details { opacity: 1; }
.dropzone .dz-preview .dz-details { z-index: 20; position: absolute; top: 0; left: 0; opacity: 0; font-size: 13px; min-width: 100%; max-width: 100%; padding: 2em 1em; text-align: center; color: rgba(0, 0, 0, 0.9); line-height: 150%; }
.dropzone .dz-preview .dz-details .dz-size { margin-bottom: 1em; font-size: 16px; }
.dropzone .dz-preview .dz-details .dz-filename { white-space: nowrap; }
.dropzone .dz-preview .dz-details .dz-filename:hover span { border: 1px solid rgba(200, 200, 200, 0.8); background-color: rgba(255, 255, 255, 0.8); }
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) { overflow: hidden; text-overflow: ellipsis; }
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span { border: 1px solid transparent; }
.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span { background-color: rgba(255, 255, 255, 0.4); padding: 0 0.4em; border-radius: 3px; }
.dropzone .dz-preview:hover .dz-image img { -webkit-transform: scale(1.05, 1.05); -moz-transform: scale(1.05, 1.05); -ms-transform: scale(1.05, 1.05); -o-transform: scale(1.05, 1.05); transform: scale(1.05, 1.05); -webkit-filter: blur(8px); filter: blur(8px); }
.dropzone .dz-preview .dz-image { border-radius: 5px; overflow: hidden; width: 120px; height: 120px; position: relative; display: block; z-index: 10; }
.dropzone .dz-preview .dz-image img { display: block; }
.dropzone .dz-preview.dz-success .dz-success-mark { -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); }
.dropzone .dz-preview.dz-error .dz-error-mark { opacity: 1; -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); -moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); -o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); }
.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark { pointer-events: none; opacity: 0; z-index: 500; position: absolute; display: block; top: 50%; left: 50%; margin-left: -18px; margin-top: -18px; }
.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg { display: block; width: 36px; height: 36px; }
.dropzone .dz-preview.dz-processing .dz-progress { opacity: 1; -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; -ms-transition: all 0.2s linear; -o-transition: all 0.2s linear; transition: all 0.2s linear; }
.dropzone .dz-preview.dz-complete .dz-progress { opacity: 0; -webkit-transition: opacity 0.4s ease-in; -moz-transition: opacity 0.4s ease-in; -ms-transition: opacity 0.4s ease-in; -o-transition: opacity 0.4s ease-in; transition: opacity 0.4s ease-in; }
.dropzone .dz-preview:not(.dz-processing) .dz-progress { -webkit-animation: pulse 6s ease infinite; -moz-animation: pulse 6s ease infinite; -ms-animation: pulse 6s ease infinite; -o-animation: pulse 6s ease infinite; animation: pulse 6s ease infinite; }
.dropzone .dz-preview .dz-progress { opacity: 1; z-index: 1000; pointer-events: none; position: absolute; height: 16px; left: 50%; top: 50%; margin-top: -8px; width: 80px; margin-left: -40px; background: rgba(255, 255, 255, 0.9); -webkit-transform: scale(1); border-radius: 8px; overflow: hidden; }
.dropzone .dz-preview .dz-progress .dz-upload { background: #333; background: linear-gradient(to bottom, #666, #444); position: absolute; top: 0; left: 0; bottom: 0; width: 0; -webkit-transition: width 300ms ease-in-out; -moz-transition: width 300ms ease-in-out; -ms-transition: width 300ms ease-in-out; -o-transition: width 300ms ease-in-out; transition: width 300ms ease-in-out; }
.dropzone .dz-preview.dz-error .dz-error-message { display: block; }
.dropzone .dz-preview.dz-error:hover .dz-error-message { opacity: 1; pointer-events: auto; }
.dropzone .dz-preview .dz-error-message { pointer-events: none; z-index: 1000; position: absolute; display: block; display: none; opacity: 0; -webkit-transition: opacity 0.3s ease; -moz-transition: opacity 0.3s ease; -ms-transition: opacity 0.3s ease; -o-transition: opacity 0.3s ease; transition: opacity 0.3s ease; border-radius: 8px; font-size: 13px; top: 130px; left: -10px; width: 140px; background: #be2626; background: linear-gradient(to bottom, #be2626, #a92222); padding: 0.5em 1.2em; color: white; }
.dropzone .dz-preview .dz-error-message:after { content: ''; position: absolute; top: -6px; left: 64px; width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-bottom: 6px solid #be2626; }



@media only screen and (max-width: 1600px) { 
	
	html {
		font-size: 12px;
	}
	
	.margin-top-50 {
		margin-top: 35px !important;
	}
	
	.margin-top-40 {
		margin-top: 30px !important;
	}
	
	.bt, .bt-small { 
		font-size: 12px;
		padding: 10px 40px;
	}
	
	.dataTables_wrapper .dataTables_paginate .paginate_button.current {
		font-size: 12px;
	}
	
	.bt-small {
		font-size: 11px;
		padding: 3px 10px;
		line-height: 16px;
	}
	
	#left-sidebar {
		width: 65px;
		overflow: hidden;
	}
	
	#left-sidebar nav ul li picture {
		margin-right: 0px;
	}
	
	#left-sidebar a span {
		display: none;
	}
	
	#main {
		width: calc(100% - 65px);
		left: 65px;
	}
	
	#main .content {
		padding: 5px;
	}
	
	#main .page-title {
		font-size: 24px;
		margin: 0px;
		padding: 15px 20px;
	}
	
	#main .box {
		padding: 20px;
	}
	
	#tab-content {
		height: calc(100vh - 240px);
	}
	
	#tab-content .inner {
		padding-top: 30px;
	}
	
	.title-3 {
		font-size: 22px;
		margin: 0px 0px 20px 0px;
		line-height: 22px;
		padding-bottom: 10px;
	}
	
	table.dataTable tbody th, table.dataTable tbody td {
		padding: 7px 10px;
	}
	
	.frm .field, .dataTables_wrapper input, .dataTables_wrapper select {
		padding: 1px 10px;
		font-size: 14px;
		margin: 3px 0px 0px;
	}
	
	.frm .text-block {
		line-height: 26px;
	}
	
	.frm .row {
		margin-bottom: 0px;
	}
	
	.frm select.field {
		padding: 2px 6px 3px;
	}
	
	.tabs ul li a {
		font-size: 14px;
		padding: 11px 15px;
	}
	
	.equal {
		font-weight: 700;
		font-size: 19px;
		top: 1px;
		position: relative;
	}
	
	
	
	.body-info {
		padding: 20px 15px;
	}
	
	.user-sidebar .body-info .summary-box {
		padding: 15px 5px 0;
		font-size: 22px;
	}
	
	.user-sidebar .body-info div.height {
		padding: 18px 5px;
	}
	
	.user-sidebar .body-info div.height .silhouette {
		width: 180px;
	}
	
	.user-sidebar .body-info .info-box {
	    font-size: 24px;
	}
	
	.user-sidebar .body-info .label {
		font-size: 11px;
		margin-bottom: 10px;
		line-height: 11px;
	}
	
	.user-sidebar .body-info div.height img {
		width: 50px;
		margin: 0px 20px 0px 0px;
	}
	
	.separator {
		margin: 20px 0px;
	}
	
	#tab-content sidebar ul {
		margin-bottom: 20px;
	}
	
	#tab-content sidebar ul a {
		font-size: 14px;
		line-height: 36px;
		padding: 5px 20px 5px;
	}
	
	.title-separator span {
		font-size: 12px;
	}
	
	equal {
		font-weight: 700;
		font-size: 22px;
		top: 2px;
		position: relative;
	}
	
	.chart {
		position: relative;
		min-height: 250px;
	}
}

@media only screen and (max-height: 830px) { 
	.body-info {
		padding: 15px;
	}
	
	.body-info h3 {
	   margin: 0px 0px 15px 0px;
	}
	
	.user-sidebar .body-info .summary-box {
		padding: 10px 5px 0;
		font-size: 22px;
		min-height: 65px;
	}
	
	.user-sidebar {
		max-width: 230px !important;
	}
}