/*
----------------------------------------------------------------
- css: main
----------------------------------------------------------------
*/

/*
----------------------------------------------------------------
- imports
- layout
- layout | grid size
- layout | commons
- layout | commons | header
- layout | commons | footer
- layout | commons | sidebars
- layout | pages | page name
- typography
- typography | commons
- typography | commons | header
- typography | commons | footer
- typography | commons | sidebars
- typography | pages | page name
- forms
- forms | forms elements
- forms | forms layouts
- helper classes
- plugins
- mediaqueries
- mediaqueries | xlarge
----------------------------------------------------------------
*/

/*
----------------------------------------------------------------
imports
----------------------------------------------------------------
*/

@import url(https://fonts.googleapis.com/css?family=Ropa+Sans);
@import url(http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css);

/*
----------------------------------------------------------------
layout
----------------------------------------------------------------
*/

/* layout | grid size */

.row
{
	max-width: 960px;
}

.row .row,
.row.no-collapse .row
{
	margin: 0 -15px;
}

.row .cols,
.row.no-collapse .cols
{
	padding: 0 15px;
}

.list-cols > li 
{
	padding: 0 15px;
}

/* layout | commons */

main[role="main"] 
{
    padding-top: 20px;
}

div.box
{
	margin-bottom: 20px;
	padding: 20px 20px 0 20px;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
}

div.box:before, 
div.box:after 
{ 
	display: table; 
	content: "";
}
 
div.box:after 
{ 
	clear: both;
}

div.box-small
{
	padding: 10px 10px 0 10px;
}

div.box-dark
{
    background-color: #222;
}

div.box-light
{
    background-color: #ccc;
}

div.box-xlight
{
    background-color: #ddd;
}

div.box-xxlight
{
    background-color: #eee;
}

div.box-xxxlight
{
    background-color: #f0f0f0;
}

table
{
	width: 100%;
	margin-bottom: 20px;
	border: 1px solid #e3e4de;
}

th,
td
{
	padding: 10px;
	border-right: 1px solid #e3e4de;
	text-align: center;
    vertical-align: middle;
}

tbody tr:nth-child(odd)
{
	background-color: #eee;
}

tbody tr:nth-child(even) 
{
    background-color: #f9f9f9;
}

tr.pager table
{
    width: auto;
    margin: 0 auto;
    border: 0;
}

tr.pager table td 
{
    padding: 0;
    border: 0;
    border-right: 2px solid transparent;
}

tr.pager > td
{
    padding: 20px;
}

div#overlay
{
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    width: 100%;
    height:100%;
}

div#overlay img
{
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -24px 0 0 -24px;
}

/* layout | commons | header */

header[role="banner"] 
{
    padding: 20px 0;
	background: #333;    
}

nav[role="navigation"]
{
	background: #000;
    height: 40px;
}

div.dropdown
{
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    padding-top: 20px;
    background: #ddd;
    display: none;
}

ul#nav-main li:hover div.dropdown
{
    display: block;
}

/* layout | commons | footer */

footer[role="contentinfo"]
{
	background: #333;
}

/* layout | commons | sidebars */

/* layout | pages | sms inviati */

/*
----------------------------------------------------------------
typography
----------------------------------------------------------------
*/

/* typography | commons */

body
{
	color: #333;
	font: 300 16px/22px "Ropa Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6
{
	color: #0069b4;
	font-weight: 400;
}

h1,
.h1
{
	font-size: 28px;
	line-height: 34px;
}

h2,
.h2
{
	font-size: 26px;
	line-height: 32px;
}

h3,
.h3
{
	font-size: 24px;
	line-height: 30px;
}

h4,
.h4
{
	font-size: 22px;
	line-height: 28px;
}

h5,
.h5
{
	font-size: 20px;
	line-height: 26px;
}

h6,
.h6
{
	font-size: 18px;
	line-height: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dd,
pre,
hr
{
	margin-bottom: 20px;
}

ul ul,
ul ol,
ol ol,
ol ul
{
	margin-bottom: 0;
}

nav ul,
nav ol
{
	margin-left: 0;
	list-style: none;
}

dt
{
	font-size: 18px;
	font-weight: 400;
}

dd
{
	margin-left: 20px;
}

button, 
input, 
select, 
textarea 
{ 
	font-family: "Ropa Sans", sans-serif;
	font-size: 16px;
}

a:link,
a:visited
{
	color: #0067b6;
	text-decoration: underline;
    -webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}

a:hover,
a:focus,
a:active
{
	color: #2187d5;
	text-decoration: underline;
}

::selection
{
	background: #666;
	color: #fff;
}

::-moz-selection 
{
	background: #666;
	color: #fff;
}

strong
{
	font-weight: 700;
}

th
{
    text-transform: uppercase;
}

th a
{
    margin: 0 5px;
}

tr.pager table span,
tr.pager table a
{
    display: block;
    padding: 4px 10px;
    text-decoration: none;
}

tr.pager table a
{
    background: #ddd;
}

tr.pager table span,
tr.pager table a:hover,
tr.pager table a:focus
{
    background: #009fe3;
    color: #fff;
}

/* typography | commons | header */

header[role="banner"] 
{
	color: #fff;   
}

header[role="banner"] a:link,
header[role="banner"] a:visited
{
    color: #fff;
    text-decoration: none;
}

header[role="banner"] a:hover,
header[role="banner"] a:focus
{
    color: #009fe3;
}

nav[role="navigation"]
{
    font-size: 18px;
    line-height: 40px;
    text-transform: uppercase;
}

ul#nav-main
{
    position: relative;
}

ul#nav-main li
{
    float: left;
    padding-right: 40px;
    color: #fff;
    cursor: pointer;
}

ul#nav-main li:hover
{
    color: #009fe3;
}

ul#nav-main a
{
    text-decoration: none;
}

div.dropdown
{
    color: #333;
}

div.dropdown .fa
{
    display: block;
    margin-bottom: 10px;
    color: #b0b0b0;
    font-size: 80px;
    -webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}

div.dropdown a:link,
div.dropdown a:visited
{
    display: block;
}

div.dropdown a:hover .fa,
div.dropdown a:focus .fa
{
    color: #2187d5;
}

p.msg-welcome
{
    margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dashed #999;
}

/* typography | commons | footer */

footer[role="contentinfo"]
{
    color: #fff;
    text-align: center;
}

footer[role="contentinfo"] a:link,
footer[role="contentinfo"] a:visited
{
    color: #fff;
}

footer[role="contentinfo"] a:hover,
footer[role="contentinfo"] a:focus
{
    color: #009fe3;
}

/* typography | commons | sidebars */

/* typography | pages | sms inviati */

.totalSmsInviati {
    display: block;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

/*
----------------------------------------------------------------
forms
----------------------------------------------------------------
*/

/* forms | forms elements */

fieldset
{
	margin-top: 10px;
	margin-bottom: 20px;
	padding: 20px 20px 0 20px;
}

legend
{
	padding: 0 10px;
}

.form-control
{
	height: 34px;
	padding: 6px;
	border: 1px solid #ccc;
	background-color: #fff;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}

select.form-control
{
	padding: 5px 6px 6px 3px;
}

select[multiple].form-control
{
	height: auto;
	padding: 7px 4px;
}

textarea.form-control,
input[type="file"]
{
	height: auto;
}

input[type="radio"],
input[type="checkbox"]
{
	margin: 0 5px;
}

.form-control:hover,
.form-control:focus
{
	border: 1px solid #bbb;
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
	-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
}

.form-control[readonly],
.form-control[disabled]
{
	border: 1px solid #c0c0c0;
	background-color: #f5f5f5;
	-webkit-box-shadow: inherit;
	-moz-box-shadow: inherit;
	box-shadow: inherit;
	cursor: default;
}

/* forms | forms layouts */

.control-group
{
	margin-bottom: 20px;
}

.control-group:before, 
.control-group:after 
{ 
	display: table;
	content: ""; 
}

.control-group:after 
{ 
	clear: both; 
}

.form-control-block
{
	display: block;
	margin-bottom: 10px;
}

.form-control-inline
{
	display: inline-block;
	width: 100%;
	line-height: 30px;
}

.form-horizontal .cols,
.form-inline .cols
{
	padding: 0 5px;
}

.form-inline .cols:first-child
{
	padding-left: 0;
}

.form-inline .form-control,
.form-inline input,
.form-inline .button
{
	display: inline-block;
	margin: 0 1px 0 5px;
	vertical-align: middle;
}

.form-inline .form-control:first-child
{
	margin-left: 0;
}

.form-inline .cols .form-control,
.form-inline .cols .button
{
	margin: 0;
}

.form-inline label
{
	margin-left: 5px;
	vertical-align: middle;
}

.form-inline label:first-child
{
	margin-left: 0;
}

.button-inline
{
	position: relative;
	top: 32px;
}

/*
----------------------------------------------------------------
helper classes
----------------------------------------------------------------
*/

.button
{
	display: inline-block;
	height: 34px;
	padding: 0 20px;
	border: 1px solid #aaa;
	background-color: #ddd;
	color: #555;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}

a.button
{
	color: #555;
	line-height: 28px;
	text-decoration: none;
}

.button:hover,
.button:focus,
.button:active
{
	border: 1px solid #959595;
	background-color: #ccc;
}

.button[disabled]
{
	border: 1px solid #bbb;
	background-color: #bbb;
	color: #666;
}

.button-primary,
a.button-primary
{
    border: 1px solid #0067b6;
    background-color: #0067b6;
    color: #fff;
}

.button-primary:hover,
.button-primary:focus,
a.button-primary:hover,
a.button-primary:focus
{
    border: 1px solid #2187d5;
    background-color: #2187d5;
    color: #fff;
}

.mbottom
{
	margin-bottom: 20px !important;
}

.mbottom-half
{
	margin-bottom: 10px !important;
}

.mbottom-none
{
	margin-bottom: 0 !important;
}

.uppercase
{
	text-transform: uppercase;
}

.msg-box
{
	display: block;
	padding: 10px 15px;
}

.msg-success
{
    background-color: #dff0d8;
}

.msg-info
{
    background-color: #eee;
}

div.box-xxlight .msg-info
{
    background-color: #ddd;
}

.msg-warning
{
    background-color: #fcf8e3;
}

.msg-danger
{
    background-color: #f2dede;
}

.title
{
    padding-bottom: 10px;
    border-bottom: 1px solid #0069b4;
}

/*
----------------------------------------------------------------
plugins
----------------------------------------------------------------
*/

/* plugins | calendar */

.ajax__calendar_today {
    padding-bottom: 8px;
}




/* TEMPORARY */

.modalBackground 
{
    background-color:Gray;
    filter:alpha(opacity=70); 
    opacity:0.7;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}


.modalPopup
{
    min-height:300px;
    /*height:480px;*/
    width:640px;
    background-color:White;
    padding:20px 20px 20px 20px;
}

.modalPopupHandle 
{
    width:100%;
    min-height:30px;
    font-size:larger;
    font-weight:bold;
    background-color:#0E69B7;
    cursor:pointer;
    text-align:center;
    vertical-align:middle;
}
.loginPopup
{
    min-height:100px;
    /*height:480px;*/
    width:250px;
    background-color:White;
    padding:20px 20px 20px 20px;
}
.totalSmsInviati 
{
    text-transform:uppercase;
    font-weight:bolder;
}

/*
----------------------------------------------------------------
mediaqueries
----------------------------------------------------------------
*/

/* mediaqueries | xlarge */

@media screen and (min-width: 1200px) 
{
	
	/* layout | grid size */
	
	.row
	{
		max-width: 1170px;
	}
	
	.row.xlarge-collapse .row,
	.row .row.xlarge-collapse
	{
		margin: 0;
	}
	
	.row.xlarge-collapse .cols
	{
		padding: 0;
	}
	
}