/* Overrind themes */

.border-all {
	border: 1px solid !important;
}

.nav-link.active{
    background-color: white !important;
}

li.nav-item > a.nav-link{
    color: black !important;
}

ul>li.page-item.active>a.page-link{
    background-color: #0277bd !important;
    border-color: #0288d1 !important;
    color: white !important;
}

ul>li.page-item>a.page-link{
    color: #0277bd !important;
}

input.material {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid #9e9e9e !important;
    border-radius: 0 !important;
    outline: none !important;
    height: 38px !important;
    width: 100% !important;
    font-size: 16px !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    -webkit-box-sizing: content-box !important;
            box-sizing: content-box !important;
    -webkit-transition: border .3s, -webkit-box-shadow .3s !important;
    transition: border .3s, -webkit-box-shadow .3s !important;
    transition: box-shadow .3s, border .3s !important;
    transition: box-shadow .3s, border .3s, -webkit-box-shadow .3s !important;
}

.input-group-append.material{
    max-height: 39px !important;
}
.input-group-prepend.material{
    max-height: 39px !important;
}

.form-group > label {
    font-weight: normal !important;
}

.select2-selection__choice{
    background-color: #0277bd !important;
}

.select2-results__option:hover{
    background-color: #0277bd !important;
}

.dropdown-item:active{
    background-color: #0277bd !important;
    color: white !important;
}

.swal2-popup{
    width: auto !important;
}

/* New Classes */

.body-sm{
    min-height: 351px !important;
}

.justify-items-strech{
    justify-items: stretch !important;
}

.pointer{
    cursor: pointer !important;
}

.labelWorks{
    margin-bottom: 0;
    font-size: 12px;
    font-weight: lighter;
    color: #919191;
    line-height: 20px;
}

.removeArrow.dropdown-toggle::after {
    display: none !important;
}

.wrap-text-1 {
    overflow: hidden;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.wrap-text-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.wrap-text-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.back-escurecido{
    color: grey,;
    opacity: 0.4;
}


.load{
    top: 0px !important;
    left: 0px !important;
    width: 100% !important;
    height: 100% !important;
    position: fixed !important;
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    z-index: 99999 !important;
}
.lds-dual-ring {
    opacity: 1;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid black;
    border-color: #424242 transparent #424242 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.lsd-message{
    position: relative;
    padding: .50rem .75rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    background-color: #424242;
	color: white;
	border-color: #424242 transparent #424242 transparent;
}


.chip {
    padding: 0 6px !important;
    margin-right: 0px !important;
}

.chip.retangular {
    height: auto !important;
    line-height: initial !important;
    border-radius: 3px !important;
    margin-bottom: 0px !important;
}

.btn-circle.btn-xl {
    width: 70px;
    height: 70px;
    padding: 10px 16px;
    border-radius: 35px;
    font-size: 24px;
    line-height: 1.33;
}

.btn-circle {
    width: 30px;
    height: 30px;
    padding: 6px 0px;
    border-radius: 15px;
    text-align: center;
    font-size: 12px;
    line-height: 1.42857;
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 25px;
  }

  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }

  .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }

  input:checked + .slider {
    background-color: #2196F3;
  }

  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }

  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }

  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }

  .slider.round:before {
    border-radius: 50%;
  }

.login-page,
.register-page {
	background-color: white !important;
	height: 75vh !important;
}

.content-wrapper{
    height: auto !important;
}
