/*Connection alert*/

@-webkit-keyframes blinking {
    0% {
        color: #ff3d50;
    }
    /* YOU CAN ADD MORE COLORS IN THE KEYFRAMES IF YOU WANT
      50%{
        color: #55d66b;
      }
      */
    100% {
        color: #999;
    }
}

@keyframes blinking {
    0% {
        color: #ff3d50;
    }
    /* YOU CAN ADD MORE COLORS IN THE KEYFRAMES IF YOU WANT
      50%{
        color: #55d66b;
      }
      */
    100% {
        color: #999;
    }
}

.connection_alert {
    -webkit-animation: blinking 1s infinite;
            animation: blinking 1s infinite;
    margin: 0 50px;
}

.espacado {
  margin-right: 10px;
}

.content {
  padding: 30px;
  text-align: justify;
  background-color: #d3d8d4;
  border-bottom: solid 1px #fff;
  overflow-y: auto;
}

.loading_content {
  padding: 30px;
}

.navbar_h {
  cursor: pointer;
}

.image-content {
  text-align: center;
}
.community_title {
    font-family: 'Baloo Bhai', cursive;
    text-shadow: 0px 1px 1px #4d4d4d;
    color: rgb(255, 255, 255);
}

.community_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.tela_recover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: calc(100vh - 50px);
  background: #f1f4f5;
}

.recover_container {
  margin: 40px auto;
  min-width: 500px;
}

.recover_error {
  color: #f00;
}
.tela_invitation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: calc(100vh - 50px);
    background: #f1f4f5;
    text-align: center;
  }
  
  .invitation_container {
    margin: 40px auto;
    min-width: 500px;
  }
  
  .invitation_error, .warning_message {
    color: #f00;
  }

  .tela_invitation div {
    margin-top: 20px;
  }

  .tela_invitation button {
    margin-bottom: 10px;
  }
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  overflow: hidden;
}

header {
  padding: 6px 5px 3px 5px;
}
.wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100vw;
    margin: auto;
    min-height: 100vh;
}

.login {
    background-color: #394b59;
    color: #fff;
    padding: 10px 0;
    height: 100vh;
}

.login_container {
    margin: 20px;
    max-width: 300px;
}

.no_mobile {
    text-align: center;
    width: 100%;
    margin: 10px 0;
    color: rgb(155, 9, 9);
    font-weight: bold;
}

/*CUSTOM STYLES*/

.logo-login {
    background: url(/logo.6ad47802.png) no-repeat;
    width: 145px;
    height: 20px;
}

.main_navbar {
    background-color: #394b59 !important;
    z-index: 15;
}

.header_button .bp3-icon {
    color: #ffffff !important;
}

.navbar_h {
    background: url(/logo.6ad47802.png) no-repeat;
    width: 145px;
    height: 20px;
}

.community_navbar {
    background-color: #889da8 !important;
}

.community_title {
    color: #ffffff !important;
}

.communication {
    background-color: #f1f4f5 !important;
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: #f1f4f5;
    border-radius: 0px
}

::-webkit-scrollbar-thumb {
    background: #bec7c9;
    border-radius: 2px
}
/* Main */

.main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* Typing */

.typing {
    height: 40px;
    text-align: center;
    color: #666;
}

/* Communication */

.communication {
    -webkit-box-flex: 18;
        -ms-flex: 18;
            flex: 18;
    background-color: #f1f4f5;
}

/* Message */

.messages {
    height: calc(100vh - 128px);    
    font-size: 85%;
    white-space: pre-wrap;
    max-width: 1000px;
    margin: 0 auto;
}

/* Old messages */

.old_messages {
    margin-top: 10px;
    text-align: center;
    width: 100%;
}

.old_messages_button {
    font-family: inherit;
    color: #666;
    font-weight: normal;
}

.no_old_messages {
    margin-top: 10px;
}

#messageScreen {
    overflow-y: auto;
    overflow-x: hidden;
    height: 80%;
}

/* Message Input*/

.message_input {
    position: relative;
    border: 2px solid #eee;
    bottom: 120px;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    padding: 5px;
}

.message_input textarea {
    resize: none;
    height: 5vh;
    width: 100%;
    border: none;
}

@media only screen and (max-width: 600px) {
    .message_input textarea {
        height: 10vh;
    }
}
 .chat_message_container {
     margin: 0 0 0 10px;
 }

 .unsername {
     color: #999;
 }

 .chat_message, .notification_message {
     -webkit-box-flex: 1;
         -ms-flex-positive: 1;
             flex-grow: 1;
     border-radius: 1px;
     background-color: #fff;
     color: #000;
     margin: 10px 10px 10px 0;
     padding: 10px 10px;
     border-left: #749cb3 solid 2px;
     -webkit-box-shadow: 0px 1px 3px 0px #AAAAAA;
     box-shadow: 0px 1px 3px 0px #AAAAAA;
     position: relative;
 }

 .notification_message {
     background-color: #333;
     color: #fff;
     -webkit-box-shadow: -4px 5px 3px 0px #B0B0B0;
             box-shadow: -4px 5px 3px 0px #B0B0B0;
     margin-left: 5px;
 }

 .mine {
     border-left: #ccc solid 2px;
 }

 .message_toolbar{
     margin-top: 5px;
     border-top: dashed 1px #ccc;
     text-align: right;
 }

 .message_time {
     position: absolute;
     right: 5px;
 }
/*CUSTOM STYLES*/

body {
    font-size: 16px !important;
}

.bp3-running-text table, table.bp3-html-table {
    font-size: 15px;
}

.logo-login {
    background: url(/logo.54dd6cfa.png) no-repeat;
    width: 162px;
    height: 36px;
}

.navbar_h {
    background: url(/logo.54dd6cfa.png) no-repeat;
    width: 162px;
    height: 36px;
}

.main_navbar {
    background-color: #2a572c !important;
}

.main_navbar button {
    color: #f5f8fa !important;
}

.main_navbar .bp3-button-group button {
    color: #2a572c !important;
}

.main_navbar .bp3-navbar-divider {
    border-left: 1px solid rgba(163, 176, 185, 0.15);
}

.bp3-control.bp3-switch:hover input:checked~.bp3-control-indicator {
    background: #2a572c !important;
}

.bp3-control.bp3-switch input:checked~.bp3-control-indicator {
    background: #2a572c !important;
}

.community_navbar {
    background-color: #5d6e5d !important;
}

.community_navbar .bp3-button, .community_navbar .bp3-icon {
    color: #fff !important;
}

/*
.community_title {
    color: #000 !important;
}
*/

.communication {
    background-color: #d3d8d4 !important;
}

.message_input {
    border: 2px solid #5d6e5d;
}

/*
::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: #f1f4f5;
    border-radius: 0px
}

::-webkit-scrollbar-thumb {
    background: #bec7c9;
    border-radius: 2px
}
*/

.notification_message {
    background-color: #b2bbb4;
}

.notification_message .unsername {
    color: #5d6e5d;
}

.notification_message .bp3-button .bp3-icon, .notification_message .bp3-button .bp3-icon-standard, .notification_message .bp3-button .bp3-icon-large {
    color: #fff !important;
}

/* TODO: estas classes de notification deveriam ser incluidas pelas notificações (componentes)*/

.notification-help {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    border-radius: 1px;
    background-color: #fff;
    color: #000;
    margin: 10px 10px 10px 0;
    padding: 10px 10px;
    -webkit-box-shadow: 0px 1px 3px 0px #AAAAAA;
    box-shadow: 0px 1px 3px 0px #AAAAAA;
}

.notification-what {
    font-weight: bold;
}

.notification-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
}

.notification-content .notification-message, .notification-content .notification-message-help, .notification-content .notification-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -webkit-box-flex: 8;
        -ms-flex: 8;
            flex: 8;
    -ms-flex-item-align: end;
        align-self: flex-end;
}

.notification-content .notification-message-help {
    -ms-flex-item-align: center;
        align-self: center;
}

.notification-content .notification-icon {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative;
    border-radius: 1px;
    background-color: #fff;
    color: #666;
    margin: 10px 10px 10px 0;
    padding: 10px 10px;
    -webkit-box-shadow: 0px 1px 3px 0px #AAAAAA;
    box-shadow: 0px 1px 3px 0px #AAAAAA;
    font-size: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.bp3-navbar .bp3-button-text {
    font-size: 13px !important;
}

.mais {
    display: none;
}
.menos {
    display: inherit;
}

@media screen and (max-width: 1400px) {
    .home_buttom {
        display: none;
    }
}

@media screen and (max-width: 1290px) {
    .menos {
        display: none;
    }
    .mais {
        display: inherit;
    }
}

.content {
    padding: 30px;
    text-align: justify;
    background-color: #fff;
    border-bottom: solid 1px #fff;
    overflow-y: auto;
}

/*# sourceMappingURL=app.87930846.css.map*/