@import url('https://fonts.googleapis.com/css?family=Fira+Sans+Extra+Condensed:400,700');
@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/*
 * -- BASE STYLES --
 * Most of these are inherited from Base, but I want to change a few.
 */

body {
    line-height: 1.7em;
    color: #7f8c8d;
    font-size: 13px;
    background: #FFFFFF;
}

h1,
h2,
h3,
h4,
h5,
h6,
label {
    color: #34495e;
}

section {
    color: black;
}


/*
 * -- PURE FORM STYLES --
 * Style the form inputs and labels
 */

.pure-form label {
    margin: 1em 0 0;
    font-weight: bold;
    font-size: 100%;
}

.pure-form input[type] {
    border: 2px solid #ddd;
    box-shadow: none;
    font-size: 100%;
    width: 100%;
    margin-bottom: 1em;
}


/*
 * -- PURE BUTTON STYLES --
 * I want my pure-button elements to look a little different
 */

.pure-button {
    background-color: #1f8dd6;
    color: white;
    padding: 0.5em 2em;
    border-radius: 5px;
}

a.pure-button-primary {
    background: white;
    color: #1f8dd6;
    border-radius: 5px;
    font-size: 120%;
}


/*
 * -- MENU STYLES --
 * I want to customize how my .pure-menu looks at the top of the page
 */

.home-menu {
    padding: 0.5em;
    text-align: center;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.10);
}

.home-menu {
    background: #2d3e50;
    border-bottom: 5px solid;
}

.home-menu .pure-menu-heading {
    color: white;
    font-weight: 400;
    font-size: 120%;
}

.home-menu .pure-menu-selected a {
    color: white;
}

.home-menu a {
    color: #6FBEF3;
}

.home-menu li a:hover,
.home-menu li a:focus {
    background: none;
    border: none;
    color: #AECFE5;
}


/*
 * -- SPLASH STYLES --
 * This is the blue top section that appears on the page.
 */

.splash-container {
    background: #1f8dd6;
    z-index: 1;
    overflow: hidden;
    /* The following styles are required for the "scroll-over" effect */
    width: 100%;
    height: 88%;
    top: 0;
    left: 0;
    position: fixed !important;
}

.splash {
    /* absolute center .splash within .splash-container */
    width: 80%;
    height: 50%;
    margin: auto;
    position: absolute;
    top: 100px;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    text-transform: uppercase;
}


/* This is the main heading that appears on the blue section */

.splash-head {
    font-size: 20px;
    font-weight: bold;
    color: white;
    border: 3px solid white;
    padding: 1em 1.6em;
    font-weight: 100;
    border-radius: 5px;
    line-height: 1em;
}


/* This is the subheading that appears on the blue section */

.splash-subhead {
    color: white;
    letter-spacing: 0.05em;
    opacity: 0.8;
}


/*
 * -- CONTENT STYLES --
 * This represents the content area (everything below the blue section)
 */

.content-wrapper {
    /* These styles are required for the "scroll-over" effect */
    position: absolute;
    top: 87%;
    width: 100%;
    min-height: 12%;
    z-index: 2;
    background: white;
}


/* This is the class used for the main content headers (<h2>) */

.content-head {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 2em 0 1em;
}


/* This is a modifier class used when the content-head is inside a ribbon */

.content-head-ribbon {
    color: white;
}


/* This is the class used for the content sub-headers (<h3>) */

.content-subhead {
    color: #1f8dd6;
}

.content-subhead i {
    margin-right: 7px;
}


/* This is the class used for the dark-background areas. */

.ribbon {
    background: #2d3e50;
    color: #aaa;
}


/* This is the class used for the footer */

.footer {
    background: #111;
}

.content {
    padding: 1em;
}

.button-success,
.button-error,
.button-warning,
.button-secondary {
    color: white;
    border-radius: 4px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.button-success {
    background: rgb(28, 184, 65);
    /* this is a green */
}

.button-error {
    background: rgb(202, 60, 60);
    /* this is a maroon */
}

.button-warning {
    background: rgb(223, 117, 20);
    /* this is an orange */
}

.button-secondary {
    background: rgb(66, 184, 221);
    /* this is a light blue */
}

.sem-permissao {
    background: rgb(204, 204, 204) !important;
}


/* Reset Select */

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0 !important;
    background: #2c3e50;
    background-image: none;
}


/* Custom Select */

.select select {
    background: #2c3e50;;
    box-shadow: none;
}

.select {
    position: relative;
    display: inline-block;
    width: 20em;
    height: 40px;    
    background: #2c3e50;
    overflow: hidden;
    border-radius: .25em;
}

select {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 0 0 .5em;
    color: #fff;
    cursor: pointer;
}

select::-ms-expand {
    display: none;
}


/* Arrow */

.select::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 0 1em;
    background: #34495e;
    pointer-events: none;
}


/* Transition */

.select:hover::after {
    color: #f39c12;
}

.select::after {
    -webkit-transition: .25s all ease;
    -o-transition: .25s all ease;
    transition: .25s all ease;
}

section {
    padding: 30px;
}

.cliente-ativo {
    padding: 0;
    margin: 0;
    list-style: none;
}

.cliente-ativo li {
    box-sizing: border-box;
    width: 300px;
    background: rgb(66, 184, 221);
    border-radius: 4px;
    display: inline-block;
    margin: 5px;
    transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;
}

.cliente-ativo li.home {
    box-sizing: border-box;
    width: 300px;
    background: rgb(66, 184, 221);
    border-radius: 4px;
    display: inline-block;
    margin: 5px;
    padding: 20px;
    color: white;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    text-transform: uppercase;
    transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;
    cursor: pointer;
    vertical-align: middle;
}


.cliente-ativo li:hover {
    opacity: 0.7;
}

.cliente-ativo li a {
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: inline-block;
    padding: 20px;
    color: white;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    text-transform: uppercase;
}

.cliente-ativo li.cinza {
    background: #AEAEAE;
}

.cliente-ativo li.active {
    background: rgb(63, 144, 87);
}

.pure-form input[type] {
    transition: border .25s ease-in-out;
    -moz-transition: border .25s ease-in-out;
    -webkit-transition: border .25s ease-in-out;
}

.btn-azul {
    background: rgb(63, 101, 166);
}

pre {
    counter-reset: line;
    -webkit-box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.28);
    -moz-box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.28);
    box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.28);
    overflow: scroll;
    max-height: 500px;
}

code {
    counter-increment: line;
    color: 333333;
}

code:hover {
    background: #CCCCCC;
    padding: 8px;
    font-weight: bold;
    text-shadow: 1px 1px 0 #eaeaea;
}

code:before {
    content: counter(line);
    background: #CCCCCC;
    display: inline-block;
    padding: 4px;
    width: 40px;
    text-align: center;
}
.page-icons {
    display: none;
}

.page-title {
    padding: 10px;
}

.cliente-ativo li.home:hover > span.page-icons {
    display: inline-block;
}

.cliente-ativo li.home:hover > span.page-title {
    display: none;
}

.cliente-ativo li.home a {
    text-decoration: none;
    display: inline;
    padding: 0;
    color: white;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}


/**
 * CARD
 */
 .card {
   position: relative;
   display: inline-block;
   overflow: hidden;
   margin: 8px;
   min-width: 230px;
   max-width: 315px;
   width: 100%;
   font-size: 14px;
   background-color: #fff;
   color: #111;
   line-height: 1.2em;
   text-align: center;
   -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.25);
   -moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.25);
    box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.25);
    padding: 20px;
 }

 .card *,
 .card *:before,
 .card *:after {
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
   -webkit-transition: all 0.35s ease;
   transition: all 0.35s ease;
 }

 .card img {
   max-width: 100%;
   vertical-align: top;
   border-radius: 10px;
 }

 .card figcaption {
   padding: 10px;
 }

 .card h3 {
   font-size: 14px;
   font-weight: bold;
   margin: 0 0 4px;
   text-transform: uppercase;
 }

 .card .price {
   margin: 8px 0;
   font-weight: 700;
   color: #4da3e2;
   font-size: 1.5rem;
 }

 .card .icons {
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   padding: 10px;
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
 }

 .card .icons a {
   margin: 2px;
   opacity: 0;
   -webkit-transform: translateY(50%);
   transform: translateY(50%);
 }

 .card .icons a i {
   display: block;
   font-size: 23.52941176px;
   line-height: 40px;
   width: 40px;
   background-color: #ffffff;
   text-align: center;
   color: #000000;
 }
.tagged-msg {
padding: 10px;
border-bottom: 1px dotted black;
margin: 20px;
background: #34495e;
border-radius: 10px;
color: white;

}

.tagged-options a, .tagged-options a:visited {
    text-decoration: underline;
    color: #78828d;
}
.badge, .badge-alert {
background: #9db5c3;
color: white;
padding: 4px;
border-radius: 6px;
margin: 4px;
font-size: 10px;
}
.badge-alert {
    background: #d53d3d;;
}

 .card .icons a i:hover {
   background-color: #4da3e2;
   color: #ffffff;
   cursor: pointer;
 }
 .card:hover {
     -webkit-box-shadow: 1px 1px 10px 0px rgb(99, 190, 195);
     -moz-box-shadow: 1px 1px 10px 0px rgb(99, 190, 195);
      box-shadow: 1px 1px 10px 0px rgb(99, 190, 195);
 }

 .card:hover a,
 .card.hover a {
   opacity: 1;
   -webkit-transform: translateX(0);
   transform: translateX(0);
 }

 .card:hover a:nth-child(2),
 .card.hover a:nth-child(2) {
   -webkit-transition-delay: 0.1s;
   transition-delay: 0.1s;
 }

 .card:hover a:nth-child(3),
 .card.hover a:nth-child(3) {
   -webkit-transition-delay: 0.2s;
   transition-delay: 0.2s;
 }
