:root {
  --main-color: #303030;
  --main-color-cancel: #777777;
}

@font-face {
	font-family: montreal;
	src: url(../resources/font/montreal-serial-light-regular.ttf);
	src: url(../font/montreal-serial-light-regular.ttf)
}

* {
	outline: none;
	box-sizing: border-box;
}

html, body {
	font-family: montreal;
	font-size: 14px;
	line-height: 1.42857143;
	color: var(--main-color);
	margin: 0;
	letter-spacing: 2px;
	-webkit-overflow-scrolling: touch;
	height: 100%;
}

p {
	display: block;
}

.none {
	display: none !important;
}

.bold {
	font-weight: bold;
}

.block {
	display: block
}

.left {
	float: left;
}

.right {
	float: right !important;
}

.content-right {
	text-align: right;
}

.top {
	position: absolute;
  	top: 0px;
}

.brown {color: #964B00 !important;
}

.green {
	color: #3D9140 !important;
}

.orange {
	color: #ff8a00 !important;
}

.red {
	color: #ff0000 !important;
}

.blue {
	color: #2E5894 !important;
}

.lightgray {
	color: #D3D3D3 !important;
}

.white {
	color: #FFFFFF !important;
}

.black {
	color: #000000 !important;
}

.col-p10 {
	width: 10%
}

.col-p15 {
	width: 15%
}

.col-p40 {
	width: 40%
}

.col-1 {
	width: 8.33%
}

.col-2 {
	width: 20.66%
}

.col-3 {
	width: 25%
}

.col-4 {
	width: 33.33%
}

.col-5 {
	width: 41.66%
}

.col-6 {
	width: 50%
}

.col-7 {
	width: 58.33%
}

.col-8 {
	width: 66.66%
}

.col-9 {
	width: 75%
}

.col-10 {
	width: 83.33%
}

.col-11 {
	width: 91.66%
}

.col-12 {
	width: 100%
}

.sit-title {
	font-weight: bold;
	font-size:32px;
}

.sit-subtitle {
	font-weight: bold;
	font-size:24px;
}

.sit-hr {
	border-top: none;
	border-bottom: 2px solid var(--main-color);
	margin-top: 10px;
    margin-bottom: 10px;
}

.sit-wrap-big {
	margin: 0px auto 0px;
	max-width: 1300px;
	position: relative;
}

.sit-link-fix {
	color: var(--main-color);
	text-decoration: none;
	cursor: pointer;
}

.sit-btn, .sit-btn-cancel, .sit-btn-msg {
	color: #FFFFFF;
	padding: 6px 12px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	box-sizing: border-box;
	border-radius: 4px;
	transition: 0.2s;
}

.sit-btn:hover, .sit-btn-cancel:hover {
	font-weight: bold;
	text-decoration: none;
	background-color: white;
}

.sit-btn {
	background-color: var(--main-color);
	border: 2px solid var(--main-color);
}

.sit-btn:hover {
	color: var(--main-color);
}

.sit-btn-cancel {
	background-color: var(--main-color-cancel);
	border: 2px solid var(--main-color-cancel);
}

.sit-btn-cancel:hover {
	color: var(--main-color-cancel);
}

.sit-input, .sit-input-clear, .sit-select, .sit-select-clear, .sit-area-clear {
	font-family: montreal;
	font-size: 16px;
	background-color: inherit;
	background-color: rgba(0, 0, 0, .03);
	color: var(--main-color);
	border: none;
	border-bottom: 1px solid var(--main-color);
	border-radius: 2px 2px 0px 0px;
	padding: 0px 2px 0px 2px;
}

.sit-input-clear, .sit-select-clear, .sit-area-clear {
	width: 100%;
	display: block;
}

.sit-input, .sit-select, .sit-input-clear, .sit-select-clear {
	max-height: 20px;
}

.sit-area-clear {
	border: 1px solid var(--main-color);
}

.sit-wrap-input {
	width: 100%;
	padding-bottom: 25px;
}

.sit-inline, .sit-separator-vertical {
	display: inline-block;
	vertical-align: middle;
}

.sit-separator-vertical {
	border-left: 1px solid silver;
	height: 24px;
	width: 0px;
}

/* Customize the label (the sit-checkContainer) */
.sit-checkContainer {
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.sit-checkContainer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
	margin: 0px;
}

/* Create a custom checkbox */
.sit-checkMark {
	position: absolute;
	height: 16px;
	width: 16px;
	background-color: #eee;
	border: 1px solid black;
	border-radius: 4px;
	box-sizing: inherit;
	margin-top: -8px;
}

/* On mouse-over, add a grey background color */
.sit-checkContainer:hover input ~ .sit-checkMark {
	background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.sit-checkContainer input:checked ~ .sit-checkMark {
	background-color: #666;
}

/* Create the sit-checkMark/indicator (hidden when not checked) */
.sit-checkMark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the sit-checkMark when checked */
.sit-checkContainer input:checked ~ .sit-checkMark:after {
	display: block;
}

/* Style the sit-checkMark/indicator */
.sit-checkContainer .sit-checkMark:after {
	left: 4px;
	width: 4px;
	height: 8px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.sit-btn-msg {
	font-weight: bold;
	color: 2px solid var(--main-color);
	border: 2px solid var(--main-color);
	background-color: inherit;
}

.sit-btn-msg:hover {
	border: 2px solid var(--main-color);
	background-color: var(--main-color);
	color: #FFFFFF;
}

/* TABS */
.sit-tab {
  overflow: hidden;
  background-color: inherit;
  margin-bottom: 2px;
  margin-top: 2px;
}

.sit-tab a {
	background-color: inherit;
	color: var(--main-color);
	border: 1px solid var(--main-color);
	float: left;
	margin-right: 2px;
    padding: 4px;
    border-radius: 4px;
	transition: 0.2s;
	outline: 0;
	text-decoration: none;
	cursor: pointer;
	font-weight: bold;
}

.sit-tab a:hover {
	background-color: var(--main-color) !important;
	color: #FFFFFF !important;
}

.sit-tab a.active {
  background-color: var(--main-color) !important;
  color: #FFFFFF;
}

.sit-tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #000000;
  animation: sit-fadeEffect 1s; /* Fading effect takes 1 second */
  overflow: hidden;
}


/* MODAIS */
.sit-modal {
	display: none;
	position: fixed;
	vertical-align: middle;
	z-index: 9 !important;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
}

.sit-modal-content {
	position: relative;
	background-color: #FFFFFF;
	margin: auto;
	margin-top: 20px;
	padding: 10px;
	border: 2px solid var(--main-color);
	border-radius: 4px;
	width: 90%;
	height: 90%;
}

.sit-modal-content-auto {
	overflow-y: auto !important;
	overflow-x: hidden;
	height: auto !important;
	min-height: auto !important
}

/* Go from zero to full opacity */
@keyframes sit-fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

/*POPOVER DOS MAPS*/
.popover{
    position:absolute;
    top:0;
    left:0;
    z-index:1060;
    display:none;
    max-width:276px;
    padding:1px;
    font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-style:normal;
    font-weight:400;
    line-height:1.42857143;
    line-break:auto;
    text-align:left;
    text-align:start;
    text-decoration:none;
    text-shadow:none;
    text-transform:none;
    letter-spacing:normal;
    word-break:normal;
    word-spacing:normal;
    word-wrap:normal;
    white-space:normal;
    font-size:14px;
    background-color:#fff;
    background-clip:padding-box;
    border:1px solid #ccc;
    border:1px solid rgba(0,0,0,.2);
    border-radius:6px;
    -webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);
    box-shadow:0 5px 10px rgba(0,0,0,.2)
}
.popover.top{
    margin-top:-10px
}
.popover.right{
    margin-left:10px
}
.popover.bottom{
    margin-top:10px
}
.popover.left{
    margin-left:-10px
}
.popover>.arrow{
    border-width:11px
}
.popover>.arrow,.popover>.arrow:after{
    position:absolute;
    display:block;
    width:0;
    height:0;
    border-color:transparent;
    border-style:solid
}
.popover>.arrow:after{
    content:"";
    border-width:10px
}
.popover.top>.arrow{
    bottom:-11px;
    left:50%;
    margin-left:-11px;
    border-top-color:#999;
    border-top-color:rgba(0,0,0,.25);
    border-bottom-width:0
}
.popover.top>.arrow:after{
    bottom:1px;
    margin-left:-10px;
    content:" ";
    border-top-color:#fff;
    border-bottom-width:0
}
.popover.right>.arrow{
    top:50%;
    left:-11px;
    margin-top:-11px;
    border-right-color:#999;
    border-right-color:rgba(0,0,0,.25);
    border-left-width:0
}
.popover.right>.arrow:after{
    bottom:-10px;
    left:1px;
    content:" ";
    border-right-color:#fff;
    border-left-width:0
}
.popover.bottom>.arrow{
    top:-11px;
    left:50%;
    margin-left:-11px;
    border-top-width:0;
    border-bottom-color:#999;
    border-bottom-color:rgba(0,0,0,.25)
}
.popover.bottom>.arrow:after{
    top:1px;
    margin-left:-10px;
    content:" ";
    border-top-width:0;
    border-bottom-color:#fff
}
.popover.left>.arrow{
    top:50%;
    right:-11px;
    margin-top:-11px;
    border-right-width:0;
    border-left-color:#999;
    border-left-color:rgba(0,0,0,.25)
}
.popover.left>.arrow:after{
    right:1px;
    bottom:-10px;
    content:" ";
    border-right-width:0;
    border-left-color:#fff
}
.popover-title{
    padding:8px 14px;
    margin:0;
    font-size:14px;
    background-color:#f7f7f7;
    border-bottom:1px solid #ebebeb;
    border-radius:5px 5px 0 0
}
.popover-content{
    padding:9px 14px
}

.fade{
    opacity:0;
    -webkit-transition:opacity .15s linear;
    -o-transition:opacity .15s linear;
    transition:opacity .15s linear
}
.fade.in{
    opacity:1
}


#loader {
	border: 10px solid #fff;
	border-radius: 50%;
	border-top: 10px solid #333;
	width: 100px;
	height: 100px;
	-webkit-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
	position: fixed;
	left: 47%;
	z-index: 9999;
	top: 20%
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}