* {
  box-sizing: border-box;
}

:root {
  --app-cj-top: #FAEFED;
  --app-cj-top-sandbox: #F0D7C6;
  --app-cj-blue: #517399;
  --app-cj-dark-blue: #253A55;
  --app-cj-orange: #F38B66;
}

@viewport {  
  orientation: portrait;  
}  

html {
    scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  border: 0;
  background-color: var(--app-cj-top);
  font-family: 'Catamaran', Arial, Helvetica, sans-serif;
  font-size: 16px;
  height: 100vh;
  width: 100vw;
}

p {
  font-family: 'Catamaran', Arial, Helvetica, sans-serif;
  font-size: 16px;
}

h1 {
  font-size: 22px;
  margin: 5px 0px;
}

h2 {
  font-size: 18px;
  margin: 5px 0px;
}

h3 {
  font-size: 16px;
  margin: 5px 0px;
  font-weight: 600;
}

h4 {
  font-size: 44px;
  margin: 5px 0px;
  letter-spacing: 20px;
}

.cj-container {
  padding: 0px;
  margin: 0px;
  background-color: var(--app-cj-top);
  display: block;
  height: 100%;
  width: 100%;
  position: fixed;
}

.cj-top-login{
  width: 100%;
  height: 50%;
  display: block;
}

.cj-body-login {
  width: 100%;
  height: 70%;
  background-color: #fff;
  display: block;
  border-radius: 35px;
  padding: 20px;
  position: absolute;
  top: 25%;
  overflow-y: auto;
}

.cj-bottom-login {
  width: 100%;
  height: 50%;
  background-color: var(--app-cj-blue);
  display: flex;
  align-items: end;
  justify-content: center;
}

.cj-bottom-login p {
  color: whitesmoke;
  margin: 0px;
  text-align: center;
}

.cj-top{
  width: 100%;
  height: 70px;
  display: block;
}

.cj-body {
  width: 100%;
  height: calc(100vh - 150px);
  background-color: #fff;
  display: block;
  padding: 20px;
  overflow-y: auto;
}

.cj-bottom {
    width: 100%;
    height: 80px;
    background-color: var(--app-cj-blue);
    display: flex;
    justify-content: center;
}

.cj-bottom p {
  color: whitesmoke;
  padding: 15px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0px;
  text-align: center;
  font-size: 12px;
  position: relative;
}

.badge_chat {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 0px 6px;
  border-radius: 50%;
  background: red;
  color: white;
  font-size: 10px;
}

.cj-bottom p:hover {
  background-color: var(--app-cj-dark-blue);
  cursor: pointer;
}

.cj-bottom i {
  font-size: 20px;
}

.badge_notification {
  position: relative;
  top: -10px;
  right: 20px;
  padding: 0px 6px;
  border-radius: 50%;
  background: red;
  color: white;
  font-size: 10px;
}

.cj-input-code {
  width: 70%;
  padding: 10px;
  border: 2px solid var(--app-cj-blue);
  border-radius: 4px;
  background-color: #fff;
  color: #000;
  display: block;
  margin: auto;
  font-size: 44px;
  text-align: center;
  letter-spacing: 20px;
}

.cj-input-obs {
  width: 100%;
  padding: 10px;
  border: 2px solid var(--app-cj-blue);
  border-radius: 4px;
  background-color: #fff;
  color: #000;
  display: block;
  margin: auto;
  resize: none;
}

.cj-form {
  padding: 20px;
  width: 100%;
  max-width: 600px;
  margin: auto;
}

.cj-form div {
  display: block;
}

.cj-form input[type=text], input[type=password], input[type=email] {
  width: 100%;
  padding: 10px;
  border: 2px solid var(--app-cj-blue);
  border-radius: 4px;
  background-color: #fff;
  color: #000;
}

.cj-pwd-i {
  margin-left: -35px; 
  cursor: pointer; 
  display: initial;
  color: grey;
}

.cj-form input[type=text]:disabled, input[type=password]:disabled, input[type=email]:disabled {
  opacity: 0.7;
}

.cj-form input[type=text]:read-only, input[type=password]:read-only, input[type=email]:read-only {
  opacity: 0.7;
}

.cj-form .input-check {
  background: url("./img_check.svg") no-repeat 95% 50%;
  background-size: 20px;
}

.cj-form .input-error {
  background: url("./img_xmark.svg") no-repeat 95% 50%;
  background-size: 20px;
}

.cj-form input[type=file] {
  width: 100%;
  padding: 10px;
  border: 2px solid var(--app-cj-blue);
  border-radius: 4px;
  background-color: #fff;
}

.cj-form input[type=file]:disabled {
  opacity: 0.7;
}

.cj-form select {
  width: 100%;
  padding: 10px;
  border: 2px solid var(--app-cj-blue);
  border-radius: 4px;
  background-color: #fff;
  color: #000;
  -webkit-appearance: none;
  background: url("./img_chevron_down.svg") no-repeat 95% 50%;
  background-size: 15px;
}

.cj-form select:disabled {
  opacity: 0.7;
}

 
.cj-form label {
  padding: 10px 0px 5px 0;
  display: inline-block;
  color: black;
}
  
.cj-form input[type=button], input[type=submit] {
  background-color: var(--app-cj-orange);
  color: whitesmoke;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  float:right;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  width: 50%;
  max-width: 250px;
  margin-top: 20px;
}
  
.cj-form input[type=button]:hover, input[type=submit]:hover {
    background-color: var(--app-cj-dark-blue);
    color: whitesmoke;
    border-radius: 50px;
}

.cj-form-div-multiselect {
  border: 1px #C6C5C3 solid;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.cj-form-div-multiselect label:hover {
  background-color: #1967D2;
  color: #fff;
}

.cj-div-main-map{
  background-color: #ddd;
  width: 100%;
  height: 300px;
}

.cj-a-login {
  color: #2f2f2f;
  text-align: center;
  padding: 18px 16px;
  text-decoration: none;
  font-weight: 600;
}

.cj-a-login:hover {
  color: var(--app-cj-orange);
  text-decoration: none;
}

.cj-a-add-frete {
  color: var(--app-cj-dark-blue);
  text-align: center;
  padding: 0px;
  margin: 0px;
  text-decoration: none;
  font-size: 50px;
  font-weight: 600;
}

.cj-a-add-frete:hover {
  color: var(--app-cj-orange);
  text-decoration: none;
}

.cj-button {
  background-color: var(--app-cj-orange);
  color: whitesmoke;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  float:right;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  width: 50%;
  max-width: 250px;
  margin-top: 20px;
}

.cj-button2 {
  background-color: var(--app-cj-orange);
  color: whitesmoke;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  width: auto;
  max-width: 250px;
  margin-top: 20px;
}

.cj-button3 {
  background-color: var(--app-cj-blue);
  color: whitesmoke;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  width: auto;
  max-width: 250px;
  margin-top: 20px;
}

.cj-button:hover ,.cj-button2:hover, .cj-button3:hover {
  background-color: var(--app-cj-dark-blue);
  color: whitesmoke;
  border-radius: 50px;
}

.cj-a-menu-top-right {
  display: block;
  color: #2f2f2f;
  text-align: center;
  padding: 20px 14px 9px 0px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}

.cj-a-menu-top-right i {
  font-size: 24px;
}

.cj-a-menu-top-right:hover {
  color: var(--app-cj-orange);
  text-decoration: none;
}

.cj-online-menu-top {
  display: block;
  color: #2f2f2f;
  text-align: center;
  padding: 20px 16px 9px 0px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}

.cj-online-menu-top i {
  font-size: 30px;
}

.cj-online-menu-top-green {
  color: #84da89;
  display: block;
  text-align: center;
  padding: 20px 16px 9px 0px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}

.cj-online-menu-top-green i {
  font-size: 30px;
}

.cj-online-menu-top-red {
  color: red;
  display: block;
  text-align: center;
  padding: 20px 16px 9px 0px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}

.cj-online-menu-top-red i {
  font-size: 30px;
}

.cj-modal-menu-right {
  overflow: auto;
  overflow-y: auto;
  background-color: var(--app-cj-dark-blue);
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: rgba(0,0,0,0.4);
}

.cj-modal-menu-right a {
  float: none;
  display: block;
  color: whitesmoke;
  text-align: right;
  padding: 14px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.cj-modal-menu-right a:hover {
  background-color: var(--app-cj-blue);
  color: whitesmoke;
  text-decoration: none;
}

.cj-modal-menu-right h1 {
  float: none;
  display: block;
  color: whitesmoke;
  text-align: center;
  font-size: 20px;
  margin: 0px;
}

.cj-modal-menu-right p {
  float: none;
  display: block;
  color: whitesmoke;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  margin: 0px;
}

.cj-modal-menu-right i {
  font-size: 100px;
  margin: 25px;
}

.cj-modal-message {
  overflow: auto;
  overflow-y: auto;
  background-color: var(--app-cj-dark-blue);
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  background-color: rgba(0,0,0,0.4);
  align-items: center;
  justify-content: center;
}

.cj-modal-message div {
  width: 80%;
  max-width: 500px;
  min-height: 200px;
  background-color: #fff;
  overflow-y: auto;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 15px 15px 25px 15px;
}

.cj-modal-message p {
  text-align: center;
  margin: 10px 0px;
}

.cj-modal-message form {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.cj-modal-tour {
  overflow: auto;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  background-color: rgba(0,0,0,0.6);
}

.cj-modal-tour-box {
  width: 300px;
  height: 200px;
  background-color: var(--app-cj-blue);
  align-items: center;
  justify-content: center;
  padding: 15px 15px 25px 15px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  z-index: 40;
  position: absolute;
}

.cj-modal-tour-box-top-arrow {
  --left-arrow: 150px;
}

.cj-modal-tour-box-top-arrow::before {
  content:'';
  position: absolute;
  left: var(--left-arrow);
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-bottom: 25px solid var(--app-cj-blue);
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  top: -25px;
}

.cj-modal-tour-box-bottom-arrow {
  --left-arrow: 150px;
}

.cj-modal-tour-box-bottom-arrow::after {
  content:'';
  position: absolute;
  left: var(--left-arrow);
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-top: 25px solid var(--app-cj-blue);
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  top: 200px;
}

.cj-modal-tour p {
  text-align: center;
  margin: 10px 0px;
  color: #fff;
}

.cj-modal-tour a {
  text-align: center;
  margin: 10px 0px;
  color: #fff;
  text-decoration: none;
  border: 2px solid #fff;
  padding: 5px;
}

.cj-modal-tour a:hover {
  background-color: var(--app-cj-dark-blue);
}

.cj-modal-tour .cj-span-x {
  color: #fff;
}

.cj-a-button {
  text-align: center;
  margin: 10px 0px;
  color: #fff;
  text-decoration: none;
  border: 2px solid #fff;
  padding: 5px;
  background-color: var(--app-cj-blue);
}

.cj-a-button:hover {
  background-color: var(--app-cj-dark-blue);
}

/* Slider On/Off */
.switch {
  --secondary-container: #3a4b39;
  --primary: #84da89;
  font-size: 17px;
  position: relative;
  display: inline-block;
  width: 3.7em;
  height: 1.8em;
 }
 
 .switch input {
  display: none;
  opacity: 0;
  width: 0;
  height: 0;
 }
 
 .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ddd;
  transition: .2s;
  border-radius: 30px;
 }
 
 .slider:before {
  position: absolute;
  content: "";
  height: 1.4em;
  width: 1.4em;
  border-radius: 20px;
  left: 0.2em;
  bottom: 0.2em;
  background-color: #aaa;
  transition: .4s;
 }
 
 input:checked + .slider::before {
  background-color: var(--primary);
 }
 
 input:checked + .slider {
  background-color: var(--secondary-container);
 }
 
 input:focus + .slider {
  box-shadow: 0 0 1px var(--secondary-container);
 }
 
 input:checked + .slider:before {
  transform: translateX(1.9em);
 }

 /* Slider On/Off */


.cj-div-main-fretes {
  width: 100%;
  align-items: center;
  justify-content: center;
  display: none;
  flex-wrap: wrap;
}

.cj-div-main-fretes-show {
  display:flex;
}

.cj-div-main-notificacao {
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

.cj-div-main-notificacao div {
  background-color: var(--app-cj-blue);
  width: 100%;
  margin: 10px 0px;
  padding: 10px;
}

.cj-div-main-notificacao p {
  margin: 0px;
  color: whitesmoke;
  text-decoration: none;
}

.cj-div-main-notificacao div:hover {
  background-color: var(--app-cj-dark-blue);
  cursor: pointer;
}

.cj-p-pwd-check {
  background: url("./img_check.svg") no-repeat 0% 50%;
  background-size: 20px;
  font-size: 14px;
  padding: 10px 0px 0px 30px;
  margin: 0px;
}

.cj-p-pwd-error {
  background: url("./img_xmark.svg") no-repeat 0% 50%;
  background-size: 20px;
  font-size: 14px;
  padding: 10px 0px 0px 30px;
  margin: 0px;
}

.cj-div-inside-menu {
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  padding-top: 10px;
}

.cj-div-inside-menu a {
  width: 33%;
  display: block;
  color: whitesmoke;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  background-color: var(--app-cj-blue);
  border: 1px solid white;
}

.cj-div-inside-menu a:hover {
  background-color:  var(--app-cj-dark-blue);
  color: whitesmoke;
  text-decoration: none;
}

.cj-div-inside-menu .aselected {
  background-color:  var(--app-cj-dark-blue);
}

.cj-div-card-action {
  background-color: var(--app-cj-orange);
  padding: 0px;
  margin-top: 0px;
}

.cj-div-card-action:hover {
  background-color: var(--app-cj-dark-blue);
  cursor: pointer;
}

.cj-div-card-action p {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: white;
    margin: 0px;
    padding: 10px;
}

.cj-div-truck-list {
  background-color: whitesmoke;
  padding: 10px;
  margin-top: 15px;
}

.cj-div-truck-list:hover {
  background-color: #dfdfdf;
  padding: 10px;
  margin-top: 15px;
}

.cj-div-truck-list a {
  text-decoration: none;
  font-weight: 600;
  color: var(--app-cj-orange)
}

.cj-div-truck-list a:hover {
  color: var(--app-cj-blue);
}

.cj-div-truck-list a:visited {
  color: var(--app-cj-orange);
}

.cj-div-truck-list a:visited:hover {
  color: var(--app-cj-blue);
}

.cj-div-truck-list h2 {
  margin: 5px 35px 5px 0px;
}

.cj-div-freight-list {
  background-color: whitesmoke;
  padding: 10px;
  margin-top: 15px;
}

.cj-div-freight-list:hover {
  background-color: #dfdfdf;
}

.cj-div-freight-list a {
  text-decoration: none;
  font-weight: 600;
  color: var(--app-cj-orange)
}

.cj-div-freight-list a:hover {
  color: var(--app-cj-blue);
}

.cj-div-freight-list a:visited {
  color: var(--app-cj-orange);
}

.cj-div-freight-list a:visited:hover {
  color: var(--app-cj-blue);
}


.cj-span-x {
    color: #000;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-right: 10px;
}

.cj-span-x:hover,
.cj-span-x:focus {
  color: var(--app-cj-orange);
  text-decoration: none;
  cursor: pointer;
}

.cj-div-dashboard {
  display: flex; 
  flex-wrap: wrap; 
  justify-content: left; 
  width: 100%;
}

.cj-div-dashboard div {
  width: 100px; 
  height: 150px;
  margin: 5px; 
  padding: 5px; 
  text-align: center;
  align-content: center;
  background-color: whitesmoke; 
}

.cj-div-dashboard div:hover {
  cursor: pointer;
  background-color: #dfdfdf; 
}

.cj-div-dashboard .div-double {
  width: 210px; 
}


.cj-input-search {
  width: 100%;
  padding: 10px 35px;
  border: 2px solid var(--app-cj-blue);
  border-radius: 4px;
  background-color: #fff;
  color: #000;
  background-image: url('./img_search.svg');
  background-position: 10px;
  background-repeat: no-repeat;
  background-size: 16px;
}


.cj-chat-div-to {
  display:flex;
  justify-content: right;
}

.cj-chat-div-to p {
  background-color: var(--app-cj-top);
  padding: 10px;
  border-radius: 10px;
  width: fit-content;
  margin: 5px;
  text-align: right;
}

.cj-chat-div-from {
  display:flex;
  justify-content: left;
}

.cj-chat-div-from p {
  color: whitesmoke;
  background-color: var(--app-cj-blue);
  padding: 10px;
  border-radius: 10px;
  width: fit-content;
  margin: 5px;
  text-align: left;
}

.cj-chat-div-to-date {
  display:flex;
  justify-content: right;
}

.cj-chat-div-to-date p {
  padding: 0px;
  padding-right: 10px;
  padding-bottom: 12px;
  margin: 0px;
  text-align: right;
  font-size: 12px;
}

.cj-chat-div-from-date {
  display:flex;
  justify-content: left;
}

.cj-chat-div-from-date p {
  padding: 0px;
  padding-left: 10px;
  padding-bottom: 12px;
  margin: 0px;
  text-align: left;
  font-size: 12px;
}

.cj-div-chat-users {
  background-color: var(--app-cj-blue);
}

.cj-div-chat-users p {
  padding: 10px;
  color: whitesmoke;
  margin: 5px 0px;
}

.cj-div-chat-users :hover {
  background-color: var(--app-cj-dark-blue);
  cursor: pointer;
}

.cj-div-chat-users-selected {
  background-color: var(--app-cj-dark-blue);
}


@media screen and (max-width: 850px) {
  
  
}


  