﻿
html, body {
    margin: 0px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #FFFFFF;
    background-image: url('../images/bottom.png');
    background-repeat: repeat-x;
    background-attachment: fixed;
    background-position: bottom left;
}

@media screen and (max-width: 600px) {
    
    /*body {
        background-size: contain;
    }*/

    body {
        background-image: none;
    }

}

a {
    color: #4CAF50;
    outline: none;
    text-decoration: none;
}

a:focus, a:hover {
    color: #000000;
}

/* LOADER */

.loader {
    background-color: transparent;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 98;
    /* OPACITY */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
}

.waiter {
    position: relative;
    top: 50%;
    left: 50%;
    border: 16px solid #F3F3F3;
    border-top: 16px solid #4CAF50;
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-left: -60px;
    display: none;
    /* BORDER RADIUS */
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    /* ANIMATION */
    -webkit-animation: spin 2s linear infinite; /* SAFARI */
    -moz-animation: spin 2s linear infinite; /* FF */
    -o-animation: spin 2s linear infinite; /* OPERA */
    animation: spin 2s linear infinite; /* IE 10+, Fx 29+ */
}

.loading .waiter {
    display: block !important;
}

.loading {
    display: block !important;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes spin {
    0% {
        -o-transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*TOP BAR*/

.navbar {
    overflow: hidden;
    background-color: #333333;
    z-index:100;
}

.navbar a {
    float: left;
    color: #FFFFFF;
    text-align: center;
    padding: 14px 16px;
}

.awesonA {
    padding-top: 7px !important;
    padding-bottom: 7px !important;
}

.navbar span {
    text-transform: uppercase;
    float: right;
    font-size: 14px;
    color: #C2BC96;
    font-weight: bold;
    padding: 24px 6px 0px 0px;
}

.navbar a:hover, .navbar a:focus {
    background-color: #4CAF50;
}
 
 
@media screen and (max-width: 600px) {
    .navbar a {
        display: block;
        width: 100%;
        padding: 6px 6px;
        border-bottom: 1px solid white;
    }
    .navbar span {
        display: none;
    }
}
 
/* INPUTS ON FORMS */

label {
    text-transform: uppercase;
    font-size: 12px;
    color: #555555;
    font-stretch: narrower;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #CFCFCF;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #CFCFCF;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #CFCFCF;
}
 
/* FULL WITH INPUTS */

input[type=text], input[type=number], input[type=password] {
    width: 100%;
    padding: 8px 8px;
    margin: 4px 0px 8px 0px;
    display: inline-block;
    border: 1px solid #CCCCCC;
    outline: none;
    /* BOX SIZING */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

input[type=image] {
    padding: 8px 8px;
    margin: 4px 0px 8px 0px;
    border: 1px solid #CCCCCC;
    display: block;
    outline: none;
}

textarea {
    resize: none;
    width: 100%;
    height: 80px;
    padding: 8px 8px;
    margin: 4px 0px 6px 0px;
    display: inline-block;
    border: 1px solid #CCCCCC;
    outline: none;
    /* BOX SIZING */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

input[type=text]:focus, input[type=number]:focus, input[type=password]:focus, textarea:focus, select:focus {
    border: 1px solid #000000 !important;
}

input[type=text].errorInput:focus, input[type=number].errorInput:focus, input[type=password].errorInput:focus, textarea.errorInput:focus, select.errorInput:focus {
    border: 1px solid #FF9800 !important;
}

input[type=text].aspNetDisabled, input[type=number].aspNetDisabled, input[type=password].aspNetDisabled, textarea.aspNetDisabled, select.aspNetDisabled {
    background-color: #FFFFFF !important;
    color: #CFCFCF !important;
}

a.aspNetDisabled:hover {
    color:#888888;
}

input[type=image].aspNetDisabled {
    border: 1px solid #CCCCCC !important;
}

input[type=image]:focus {
    border: 1px solid #000000;
}

input[type=image]:hover {
    border: 1px solid #000000;
}

/* OCULTAR checkboxs */
.fancy input[type="checkbox"] {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
}

/* Desenhar checkbox  */
.check-box {
    width: 20px;
    height: 20px;
    border: 1px solid #CCCCCC;
    display: inline-block;
    cursor: pointer;
    position: relative;
    top: 2px;
    left: 0px;
}

/* Desenhar checkbox selecionada  */
[type=checkbox]:checked + .check-box:before {
    content: '';
    display: block;
    width: 6px;
    height: 15px;
    margin-left: 6px;
    border: 1px solid #000000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

[type=checkbox]:enabled + .check-box:hover {
    border: 1px solid #000000;
}

[type=checkbox]:focus + .check-box {
    border: 1px solid #000000;
}

.inlineCB {
    display:inline;
}

/* FULL WITH BUTTONS */
button, input[type=submit] {
    background-color: #4CAF50;
    color: #FFFFFF;
    padding: 9px 9px;
    margin: 4px 0px 4px 0px;
    border: 1px solid white;
    cursor: pointer;
    width: 100%;
    outline: none;
    font-size: 14px;
    /* BOX SIZING */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

button:hover, input[type=submit]:hover {
    background-color: #61CF66;
    border: 1px solid black;
}

button:focus, input[type=submit]:focus {
    background-color: #61CF66;
    border: 1px solid black;
}

input[type=submit].aspNetDisabled, button.aspNetDisabled {
    background-color: #CFCFCF !important;
    cursor: default;
}

/*  CANCEL BUTTON : LOGIN */
.cancelbtn {
    width: auto;
    padding: 9px 9px;
    background-color: #FF9800 !important;
}

.cancelbtn:hover, .cancelbtn:focus {
    background-color: #F44336 !important;
}

/* CLOSE BUTTON: LOGIN */
.imgcontainer {
    text-align: center;
    margin: 22px 0px 0px 0px;
    position: relative;
}

img.avatar {   
    /* BORDER RADIUS */
    -webkit-border-radius: 10%;
    -moz-border-radius: 10%;
    border-radius: 10%;
}

.container {
    padding: 10px;
    margin: 0px 20px 0px 20px;
}

/* POPUP MODEL FORM: ENTRAR */

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    padding-top: 60px;
}
 
/* CONTEÚDO */
.popup-modal-content {
    background-color: #FFFFFF;
    margin: 5% auto 10% auto; /* 5% from the top, 15% from the bottom and centered */
    border: 1px solid #888888;
    max-width: 400px; /* Could be more or less, depending on screen size */
    min-height: 360px;
}

/* CLOSE BUTTON: EDIT FORM */
.close {
    position: absolute;
    right: 20px;
    top: -5px;
    color: #000000;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

/* CLOSE BUTTON: DATA LIST */
.close {
    position: absolute;
    right: 15px;
    top: 0px;
    color: #000000;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover, .close:focus {
    color: #FF0000;
}

/* ZOOM ANIMATION */
.animate {
    -webkit-animation: animatezoom 0.6s;
    -moz-animation: animatezoom 0.6s;
    -o-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@-moz-keyframes animatezoom {
    from {
        -moz-transform: scale(0)
    }

    to {
        -moz-transform: scale(1)
    }
}

@-o-keyframes animatezoom {
    from {
        -o-transform: scale(0)
    }

    to {
        -o-transform: scale(1)
    }
}

@keyframes animatezoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
    .cancelbtn {
        width: 100%;
    }
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 600px) {
    .modal {
        background-color: rgb(255,255,255);
        background-color: rgba(255,255,255,1); /* White no opacity */
    }
    .popup-modal-content {
        border: 0px none;
    }
}

@media screen and (max-height: 600px) {
         
    .modal {
        padding-top: 10px;
    }
    
    body {
        background-image: none;
    }

    popup-modal-content {
        margin-bottom:5%;
    }

    edit-modal-content {
        margin-bottom: 5%;
    }

    list-modal-content {
        margin-bottom: 5%;
    }

    .imgcontainer {
        margin: 12px 0px 0px 0px;
    }
}

/* ALERTAS */

.alert {
    margin: 4px 0px 4px 0px;
    padding: 11px;
    background-color: #F44336;
    color: #FFFFFF;
    font-size: 14px;
    /* OPACITY */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    /* TRANSITION */
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -o-transition: 0.6s;
    transition: opacity 0.6s;
}

.alert.success {
    background-color: #000000;
}

.alert.info {
    background-color: #9F9F9F;
}

.alert.warning {
    background-color: #FF9800;
}

.closebtn {
    margin-left: 15px;
    color: #FFFFFF;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    /* TRANSITION */
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.closebtn:hover {
    color: black;
}

/* EDIT FORM CONTENT */

.edit-modal-content {
    background-color: #FFFFFF;
    margin: 4% auto 10% auto;
    border: 1px solid #888888;
    max-width: 800px;
    font-size: 16px;
    min-height: 330px;
}
  
.list-modal-content {
    /*background-color: transparent;*/
    background-color: rgb(255,255,255);
    background-color: rgba(255,255,255,0.9); /* Black w/ opacity */
    margin: 4% auto 10% auto;
    border: 0px none;
    font-size: 16px;
    padding: 0px 20px 20px 20px;
    max-width: 1024px;
}

/* TABLES */

.TrEU {
    display:none;
}

.TdEU {
    text-transform:uppercase;
    border-bottom:0px none !important;
    font-size:14px;
    color: #C2BC96;
    font-weight:bold;
}

table {
    width: 100%;
    border-spacing: 0px;
}

th {
    text-align: left;
    text-transform: uppercase;
    padding: 10px 4px 10px 4px;
    font-size: 14px;
    font-weight: normal;
    font-stretch: narrower;
}

td {
    text-align: left;
    padding: 10px 4px 10px 4px;
    border-top: 1px solid #000000;
    font-size: 14px;
    font-weight: normal;
}

th a {
    font-size: 16px;
    text-decoration: none;
}

td a {
    color: #4CAF50;
    text-decoration: none;
    outline: none;
    font-weight: bolder;
    font-size: 16px;
}

.fixedLeftSD {
    display: none;
    float: left;
}

.fixedRightSD {
    display: none;
    float: right;  
}

.fixedRight {
    float: right;
}
 
.flaskON {
    color: #FF0000;
    float: right;
    margin-right: 5px;
    /* ANIMATION */
    -webkit-animation: blinker 2s linear infinite; /* SAFARI */
    -moz-animation: blinker 2s linear infinite; /* FF */
    -o-animation: blinker 2s linear infinite; /* OPERA */
    animation: blinker 2s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.flaskOFF {
    color: #FAFAFA;
    float: right;
    margin-right:5px;
}

.biggerFlask {
    font-size: 26px;
}

.grayData {
    color: #FAFAFA !important;
}

@media only screen and (max-width: 600px) {

    /*
    thead th:not(:first-child) {
        display: none;
    }
    */

    .TrEU {
       display:table-row;
    }

    thead th {
        display: none;
    }

    td, th {
        display: block;
        border-top: 0px none;
        font-size: 24px;
    }

    td a {
        font-size: 24px;
    }

    td:first-child {
        border-bottom: 1px solid #CFCFCF;
        text-align: center;
        padding: 10px 0px 10px 0px;
    }

    td:not(:first-child) {
        display: none;
    }

    td[data-th]:before {
        content: attr(data-th);
    }

    .edit-modal-content {
        border: 0px none;
    }

    /*body {
        background-image: none;
    }*/

    .container {
        padding-top: 0px;
        margin: 0px 0px 0px 0px;
    }

    .fixedLeftSD {
        display: block;
        margin-right: 30px;
    }

    .fixedRightSD {
        display: block;
    }
}

/* 2 ROWS LAYOUT */
.column80 {
    float: left;
    width: 75%;
    padding-left:1px;
}

.column20 {
    float: left;
    width: 24%;
    padding-right: 1%;
}

.column20Last {
    float: left;
    width: 25%;
}
 
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}
  
@media screen and (max-width: 600px) {
    .column80 {
        width: 100%;
    }

    .column20 {
        width: 100%;
        padding-right:0px;
    }

    .column20Last {
        width: 100%;
    }

    .column50 {
        width: 100%;
    }

    .column34 {
        width: 100%;
    }
     
    .column33 {
        width: 100%;
    }
}

/* BREAD CRUMBS */

ul.breadcrumb {
    padding: 0px;
    list-style: none;
}

/* Display list items side by side */
ul.breadcrumb li {
    display: inline;
    font-size: 14px;
    /*text-transform:uppercase;*/
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li + li:before {
    padding: 8px;
    color: #333333;
    content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
    color: #333333;
    text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
    color: #CFCFCF;
    text-decoration: none;
}
  
h3 {
    color: #C2BC96;
    /*text-transform: uppercase;*/
}

.displayNone {
    display: none;
}
