* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: Arial, sans-serif;
}

@font-face {
    font-family:'fa';
    src: url('../fonts/fontawesome-webfont.eot?v=4.3.0');
    src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),
        url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'),
        url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'),
        url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),
        url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');
}
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 fa;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
}

.fa-add:before { content: '\f055'; }
.fa-cog:before { content: '\f013'; }
.fa-plus:before { content: '\f067'; }
.fa-info:before { content: '\f05a'; }

.fleft { float: left; }

nav {
    padding-left: 20%;
    padding-right: 20%;
    background: #223254;
    height: 50px;
}

nav ul {
    list-style:none;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    display: block;
    color: #fff;
    height: 50px;
    line-height: 50px;
    padding-left: 15px;
    padding-right: 15px;
}

nav ul li a:hover {
    text-decoration: none;
}

main {
    margin-top: 50px;
    margin-left: 20%;
    margin-right: 20%;
}

.table {
    width: 100%;
}

.table thead th {
    text-align: left;
}

.table thead th, .table tbody td {
    padding: 5px;
}

#map {
    height: 100%;
    width: 100%;
}

.limiter {
    width: 100%;
    margin: 0 auto;
}

.container-login100 {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #f2f2f2;
}

.wrap-login100 {
    width: 390px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 77px 55px 33px 55px;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.button {
    display: inline-block;
    padding: 5px 40px;
    line-height: 30px;
    font-size: 14px;
    min-width: 0;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.button.bPrimary {
    background: #003478;
    border: 2px solid transparent;
    color: #fff;
    border: 1px solid #003478;
}

.bPrimary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.button.bPrimary:hover {
    color: #003478;
    background: #fff;    
}

.button.b_danger {
    background: #780000;
    border: 2px solid transparent;
    color: #fff;
    border: 1px solid #780000;
}

.b_danger {
    color: #fff;
    background-color: #780000;
    border-color: #780000;
}

.button.b_danger:hover {
    color: #780000;
    background: #fff;    
}

.box {
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 50px;
}

.flex {
    display: flex;
}

.flex > div {
    padding: 30px;
}

.f50 {
    width: 49%;
}

.sticky {
    position: relative;
}

.stick {
    position: sticky;
    top: 0px;
}

.stick > p {
    margin-bottom: 35px;
}

.input_text {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 280px;
}

.input_text .label {
    position: absolute;
    top: 0px;
    left: 0;
    font-size: 16px;
    color: #9098a9;
    font-weight: 500;
    transform-origin: 0 0;
    transition: all 0.2s ease;
}

.input_text input, .input_text select {
    -webkit-appearance: none;
    width: 100%;
    border: 0;
    font-family: inherit;
    padding: 12px 0;
    padding-bottom: 0px;
    margin-bottom: 12px;
    height: 48px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 2px solid #c8ccd4;
    background: none;
    border-radius: 0;
    color: #223254;
    transition: all 0.15s ease;
    z-index: 1;
    position: relative;
}

.input_text .border {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 26px;
    height: 2px;
    width: 100%;
    background: #07f;
    transform: scaleX(0);
    transform-origin: 0 0;
    transition: all 0.15s ease;
}

.input_text input:hover {
    
}

.input_text input:not(:placeholder-shown) + span, .input_text select:not(:placeholder-shown) + span {
    color: #5a667f;
    transform: translateY(-26px) scale(0.75);
    top: 5px;
}

.input_text input:focus,.input_text select:focus {
    background: none;
    outline: none;
}

.input_text input:focus + span, .input_text select:focus + span {
    color: #07f;
    transform: translateY(-26px) scale(0.75);
}

.input_text input:focus + span + .border, .input_text select:focus + span + .border {
    transform: scaleX(1);
}

.form_textarea_i label {
    color: #5a667f;
    transform: translateY(-26px) scale(0.75);
    top: 5px;
}

.form_textarea_i {
    margin-bottom: 25px;
}

p {
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
    color: #333;
}

.mainPic {
    border: 1px solid #ddd;
    border-radius: 50%;
    height: 300px;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 15px;
}

.company > div {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 18px;
    word-break: break-all;
}

.mapa {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 0px 3px 3px #ddd;
}

footer {
    height: 150px;
    background: #003478;
}

.rightClickMenu {
    background:#fff;
    border: 1px solid red;
    position: absolute;
    z-index:20000;
}

.rightClickMenu:before {
    position: absolute;
    height: 10px;
    width: 10px;
    border-radius: 50px;
    border: 1px solid green;
    background: #fff;
    content: '';
    top: -6px;
    left: -6px;
}

.rightClickMenu li {
    display: block;
    cursor: pointer;
    padding: 10px 20px;
}

.rightClickMenu li:hover {
    background: #ddd;
}

.rightClickMenu li a {
    display: block;
}

#highBox {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 2000000;
    background: rgba(0,0,0,0.75);
    top: 0;
}

#highBox .boxContainer {
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 100px;
}

.ajaxBox {
    background: #fff;
    box-shadow: 0px 0px 5px 0px #555;
    padding: 30px;
    border-radius: 5px;
}

.addTreeDiv, .addTreeDiv input {
    width: 80%;
}

.addTree {
    color: green;
    margin-left: 15px;    
    cursor: pointer;
}

.addTree:before {
    margin-right: 5px;
}

.addTree:hover {
    color: #02a902;
}

.ui-autocomplete {
    z-index: 20000000!important;
}

.table-wrapper{
    margin: 10px 70px 70px;
    box-shadow: 0px 35px 50px rgba( 0, 0, 0, 0.2 );
}

.fl-table {
    border-radius: 5px;
    font-size: 12px;
    font-weight: normal;
    border: none;
    border-collapse: collapse;
    width: 100%;    
    white-space: nowrap;
    background-color: white;
}

.fl-table td, .fl-table th {
    text-align: right;
    padding: 8px;
}

.fl-table td {
    border-right: 1px solid #f8f8f8;
    font-size: 12px;
}

.fl-table thead th {
    color: #ffffff;
    background: #4FC3A1;
}


.fl-table thead th:nth-child(odd) {
    color: #ffffff;
    background: #324960;
}

.fl-table tr:nth-child(even) {
    background: #F8F8F8;
}

/* Responsive */

@media (max-width: 767px) {
    
}

@media only screen and (max-width: 1000px) {
    .flex {
        display: block;
    }
    
    .f50 {
        width: initial;
    }
}