@font-face {
  font-family: Poppins-Regular, sans-serif;
  src: url('../../../../../../public/css/fonts/poppins/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Medium, sans-serif;
  src: url('../../../../../../public/css/fonts/poppins/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: Poppins-Bold, sans-serif;
  src: url('../../../../../../public/css/fonts/poppins/Poppins-Bold.ttf'); 
}


* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: Poppins-Regular, sans-serif;
}


a {
	font-family: Poppins-Regular, sans-serif;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
  color: #70A7BC;
}


h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: Poppins-Regular, sans-serif;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}

/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #666666d9;}
input:-moz-placeholder { color: #666666d9;}
input::-moz-placeholder { color: #666666d9;}
input:-ms-input-placeholder { color: #666666d9;}

textarea::-webkit-input-placeholder { color: #666666d9;}
textarea:-moz-placeholder { color: #666666d9;}
textarea::-moz-placeholder { color: #666666d9;}
textarea:-ms-input-placeholder { color: #666666d9;}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


.txt1 {
  font-family: Poppins-Regular, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #666666;
}

.txt2 {
  font-family: Poppins-Regular, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  text-transform: uppercase;
}

.bg1 {background-color: #3b5998}
.bg2 {background-color: #1da1f2}
.bg3 {background-color: #ea4335}


.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.wrap-login100 {
  max-width: 550px;
  width: 100%;
  border: solid 0.5px #d9d9d9cf;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
}


.login100-form {
  width: 100%;
}

.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid #d9d9d9;
}

.label-input100 {
  font-family: Poppins-Regular, sans-serif;
  font-size: 14px;
  color: #333333;
  line-height: 1.5;
  padding-left: 7px;
}

.input100 {
  font-family: Poppins-Medium, sans-serif;
  font-size: 16px;
  color: #333333;
  line-height: 1.2;
  display: block;
  width: 100%;
  height: 40px;
  background: transparent;
  padding: 0 7px 0 43px;
}


.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::after {
  content: attr(data-symbol);
  font-family: Material-Design-Iconic-Font, sans-serif;
  color: #7a7a7a;
  font-size: 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: calc(100% - 20px);
  bottom: 0;
  left: 0;
  padding-left: 13px;
  padding-top: 3px;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #337ab7;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}


.input100:focus + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}

.input100:focus + .focus-input100::after {
  color: #70A7BC;
}

.has-val.input100 + .focus-input100::after {
  color: #70A7BC;
}


.container-login100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.wrap-login100-form-btn {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 25px;
  overflow: hidden;
  margin: 0 auto;

  box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
  -moz-box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
  -webkit-box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
  -o-box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
  -ms-box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
}

.login100-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  background: #70A7BC;
  background: -webkit-linear-gradient(right, #366D94, #A3BFCA, #366D94, #A3BFCA);
  background: -o-linear-gradient(right, #366D94, #A3BFCA, #366D94, #A3BFCA);
  background: -moz-linear-gradient(right, #366D94, #A3BFCA, #366D94, #A3BFCA);
  top: 0;
  left: -100%;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn {
  font-family: Poppins-Medium, sans-serif;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
}

.wrap-login100-form-btn:hover .login100-form-bgbtn {
  left: 0;
}


.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  bottom: calc((100% - 20px) / 2);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  right: 2px;
  pointer-events: none;

  font-family: Poppins-Regular, sans-serif;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome, sans-serif;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 16px;
  bottom: calc((100% - 20px) / 2);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  right: 8px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}


.login100-social-item {
  font-size: 25px;
  color: #fff;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 5px;
}

.login100-social-item:hover {
  color: #fff;
  background-color: #333333;
}


@media (max-width: 576px) {
  .wrap-login100 {
    padding-left: 15px;
    padding-right: 15px;
  }
} 

.table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th {
	padding: 4px;
	border-top: 1px solid transparent;
	border-bottom-width: 0px;
}
.table.dataTable thead .sorting:after, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_asc:after, .dts_label {
	display: none;
}
.table-bordered {
	border: 1px solid transparent;
}

tr.odd:hover .ico-enter{
	opacity: 1;
	transition: opacity 250ms ease-in-out;
}
tr.odd:hover{
	background-color: #337ab71f;
	transition: background-color 150ms ease-in-out;
}
tr.even:hover .ico-enter{
	opacity: 1;
	transition: opacity 250ms ease-in-out;
}
tr.even:hover{
	background-color: #337ab71f;
	transition: background-color 150ms ease-in-out;
}
.ico-enter{
	opacity: 0;
	animation-duration: 5s;
	animation-iteration-count: infinite;
}
.container-area {
	margin-right: 100px;
	max-width: 430px;
	width: 100%;
	position: relative;
}
button.login-btn {
	display:block;
	padding: 10px;
	width: 100%;
	background-color: #337ab7;
	border: 1px solid #2e6da4;
	border-radius: 8px;
	color: white;
	text-transform: uppercase;
	font-family: Poppins-Medium, sans-serif;
	font-weight: 500;
	font-size: 16px;
}
button.login-btn:hover {
	background-color: #01598d;
	transition: background-color 0.2s ease-in-out;
}
#progress_login {
	  height: 3px;
	  display: none;
	  width: 100%;
	  margin-bottom: -30px;
	  margin-top: 30px;
}
#progress_login .progress-bar {
	background-color: #70A7BC;
}
#datatableChooseGe, #esq_senha a {
	cursor: pointer;
}
#datatableChooseGe_filter label, #datatableChooseGe_filter input{
	width: 100%;
}
#login_header_1 {
	text-align: center;
	margin-bottom: 35px;
}
#login_header_2 {
	display: none;
}
#logo_empresa {
	width: 225px;
}
.color_obrigatorio {
	color:red;
}
.color_primary {
	color:#17588c;
}
@media (min-width: 1365px) {
	.container-area {
		top: -30px;
	}
}
@media (max-width: 1200px) {
	#svg_login {
		width: 46% !important;
		
	}
	.container-area {
		margin-right: 50px;
	}
}
@media (max-width: 1046px) {
	#svg_login {
		display:none;
	}
	.container-area {
		margin-right: 0px;	
	}
}
@media (max-width: 800px) {
	#logo_empresa {
		width: 200px;
	}
	#login_header_1 {
	    margin-bottom: 15px;
	}
}

#svg_login {
	max-width: 600px;
	width: 100%;
	right:3%;
	position: relative;
}

@-webkit-keyframes shake {
from,
to {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

10%,
30%,
50%,
70%,
90% {
	-webkit-transform: translate3d(-3px, 0, 0);
	transform: translate3d(-3px, 0, 0);
}

20%,
40%,
60%,
80% {
	-webkit-transform: translate3d(3px, 0, 0);
	transform: translate3d(3px, 0, 0);
}
}

@keyframes shake {
from,
to {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

10%,
30%,
50%,
70%,
90% {
	-webkit-transform: translate3d(-3px, 0, 0);
	transform: translate3d(-3px, 0, 0);
}

20%,
40%,
60%,
80% {
	-webkit-transform: translate3d(3px, 0, 0);
	transform: translate3d(3px, 0, 0);
}
}

.shake {
	-webkit-animation-name: shake;
	animation-name: shake;
}
	
.btn-back{
    font-size: 22px; 
    position:absolute; 
    left: 25px; 
    color: #666;
}
.btn-back:hover{
    color: #337AB7;
    transition: color 150ms ease-in-out;
}

.help-container{
	float: left;
	margin-bottom: 25px;
	margin-top: 5px;
	text-decoration: none;
}
.zmdi-caret-right, .zmdi-caret-down{
	font-size: 18px;
	margin-right: 5px;
}
.help-container a {
	cursor: pointer;
	text-decoration: none;
}
.help-container .help-items a{
	font-size: 14px;
}
.help-items {
	margin-left: 13px;
}

.login-password-icon-visibility {
  position: absolute;
  display: block;
  top: 20px;
  right: 0;
  font-size: 20px;
  padding: 10px;
  color: #5d5d5d;
  cursor: pointer;
}

#input-twofa {
    margin-top: 15px;
    width: 100%;

    .token-digit-input {
        font-size: 20px;
        height: 50px;
        text-align: center;
    }

    .col-input {
        padding: 0.5%;
        width: min-content;
    }

    .form-group {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .flex-container {
        display: flex;
        justify-content: space-between;
    }

    .flex-item {
        flex: 1;
        margin: 0 0.5%;
    }

    @media screen and (max-width: 568px) {
        .token-digit-input {
            height: 40px;
        }
        
    }
}
