



/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: OpenSans-Regular;
  src: url('../fonts/OpenSans/OpenSans-Regular.ttf'); 
}



/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
    /*height: 100%;*/
    font-family: OpenSans-Regular, sans-serif;
    background: #304b57;
}

/*---------------------------------------------*/
a {
	font-family: OpenSans-Regular;
	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;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: OpenSans-Regular;
	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::-webkit-input-placeholder { color: #666666;}
input:-moz-placeholder { color: #666666;}
input::-moz-placeholder { color: #666666;}
input:-ms-input-placeholder { color: #666666;}

textarea::-webkit-input-placeholder { color: #666666;}
textarea:-moz-placeholder { color: #666666;}
textarea::-moz-placeholder { color: #666666;}
textarea:-ms-input-placeholder { color: #666666;}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}

/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-family: OpenSans-Regular;
  font-size: 15px;
  line-height: 1.4;
  color: #999999;
}

.txt2 {
  font-family: OpenSans-Regular;
  font-size: 15px;
  line-height: 1.4;
  color: #4272d7;
}

.hov1:hover {
  text-decoration: underline;
}


/*------------------------------------------------------------------
[ Header ]*/

/* Style the header with a grey background and some padding */
.header {
    overflow: hidden;
    background-color: #e9e8ea;
    padding: 0px 0px 0px 10px;
    border-bottom: 5px solid #035460;
}

.header-vertical {
    background-color: #035460;
    border-bottom: 5px solid #00a6b9;
    height: 68px;
}

/* Style the header links */
.header a, .header span {
    float: left;
    color: black;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 4px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
    font-size: 25px;
    font-weight: bold;
    padding: 10px 10px 0px 10px;
}

.header a.onoff {
    font-size: 25px;
    font-weight: bold;
    padding: 0px;
}


/* Change the background color on mouse-over */
.header a:hover {
    background-color: #ddd;
    color: black;
}

/* Style the active/current link*/
.header a.active {
    background-color: dodgerblue;
    color: white;
}

/* Float the link section to the right */
.header-right {
    float: right;
}

.header-left {
    float: left;
    padding-top: 5px;
}

.header-left span {
    color: #035460;
    font-size: 26px;
}

.header-right span:first-child {
    padding-top: 20px;
}

.header-right span strong {
    color: #00a6b9;
    font-size: 24px;
}

.header-vertical .header-right span strong {
    color: #ffffff;
    font-size: 24px;
}
.header-vertical-left {
    display: flex;
    align-items: center;
    display: table-cell;
}
.header-vertical-left img {
    float:left;
    padding: 10px;
}
.header-vertical-left span {
    margin-left: -110px;
    padding-top: 35px;
    color: #00a6b9;
    font-size: 15px;
}
.header-vertical .header-right {
    margin-top: -70px;
}
.user-vertical {
    padding-top: 21px !important;
}
.user-horizontal a:hover, .header-horizontal .header-right span:hover, .header-right a:hover {
    background-color: #e9e8ea;
}
.user-vertical a:hover, .header-vertical .header-right span:hover, .header-vertical .header-right a:hover {
    background-color: #035460;
}
.title_balcao {
    padding: 16px 0px !important;
    font-size: 16px !important;
    font-weight: bold !important;
}
/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 1039px) {
    .header-horizontal {        
        display:none;        
    }
    .header-vertical {
        display: block;
    }
}
@media screen and (min-width: 1040px) {
    .header-horizontal {
        display: block;
    }

    .header-vertical {
        display: none;
    }
}
/*//////////////////////////////////////////////////////////////////
[ login ]*/
.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: baseline;
    padding: 2%;
    /*background: #e9faff;*/
    background-image: linear-gradient(to bottom, #00a6b9, #035460);
    /*height: 70vh;
    min-height: 500px;*/
}

.wrap-login100 {
  width: 500px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;

  box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
}


/*==================================================================
[ Form ]*/

.login100-form {
  width: 100%;
}

.login100-form-title {
    display: block;
    font-family: OpenSans-Regular;
    font-size: 30px;
    line-height: 1.2;
    text-align: left;
    font-weight: bold;
}

/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  background-color: #fff;
  /*border: 1px solid #e6e6e6;*/
}

.wrap-input100.rs1 {
  border-top: none;
}

.input100 {
  display: block;
  width: 100%;
  background: #e9e8ea;
  font-family: OpenSans-Regular;
  font-size: 15px;
  color: #666666;
  line-height: 1.2;
}


/*---------------------------------------------*/
input.input100 {
  height: 68px;
  padding: 0 25px 0 25px;
}

/*------------------------------------------------------------------
[ Focus Input ]*/

.focus-input100-1, 
.focus-input100-2 {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

    .focus-input100-1::before,
    .focus-input100-2::before {
        content: "";
        display: block;
        position: absolute;
        width: 0;
        height: 1px;
        background-color: #00a6b9;
    }

.focus-input100-1::before {
  top: -1px;
  left: 0;
}

.focus-input100-2::before {
  bottom: -1px;
  right: 0;
}

.focus-input100-1::after,
.focus-input100-2::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 0;
  background-color: #00a6b9;
}

.focus-input100-1::after {
  top: 0;
  right: -1px;
}

.focus-input100-2::after {
  bottom: 0;
  left: -1px;
}

.input100:focus + .focus-input100-1::before {
  -webkit-animation: full-w 0.2s linear 0s;
  animation: full-w 0.2s linear 0s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.input100:focus + .focus-input100-1::after {
  -webkit-animation: full-h 0.1s linear 0.2s;
  animation: full-h 0.1s linear 0.2s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.input100:focus + .focus-input100-1 + .focus-input100-2::before {
  -webkit-animation: full-w 0.2s linear 0.3s;
  animation: full-w 0.2s linear 0.3s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.input100:focus + .focus-input100-1 + .focus-input100-2::after {
  -webkit-animation: full-h 0.1s linear 0.5s;
  animation: full-h 0.1s linear 0.5s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}


@keyframes full-w {
  to {
    width: calc(100% + 1px);
  }
}

@keyframes full-h {
  to {
    height: calc(100% + 1px);
  }
}


/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.container-form-btn-side {
    display: flex;
    justify-content: space-between;
}

.login100-form-btn {
    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: 60px;
    background-color: #00a6b9;
    font-family: OpenSans-Regular;
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.login40-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 40%;
    height: 60px;
    background-color: #00a6b9;
    font-family: OpenSans-Regular;
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    border-radius: 5px;
}

.login100-form-btn:hover, .login40-form-btn:hover {
    background-color: #333333;
}

.form-btn-clean {
    background-color: #ffffff;
    color: #00a6b9;
    border: 1px solid #00a6b9;
}
/*------------------------------------------------------------------
[ Alert validate ]*/
.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;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 12px;
  pointer-events: none;

  font-family: OpenSans-Regular;
  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: "\f12a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 18px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

/*------------------------------------------------------------------
[ Balcões ]*/

.wrap-balcoes100 {
    width: 850px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
}

.num_balcao {
    position: relative;
    margin: 1px;
    width: 20%;
    text-align: center;
    display: inline-block;
}

.num_balcao_link {
    position: absolute;
    left: 0;
    width: 100%;
    color: #ffffff;
    font-weight: bold;
    z-index: 1;
    top: 61%;
    padding: 0px 27%;
}

.container_balcoes {
    text-align: left;
    display: inline-block;
    width: 100%;
}
.container_senhas {
    text-align: center;
    display: inline-block;
    width: 100%;
}
.selected {
    border: 4px solid #035460;
}

@media screen and (max-width: 450px) {
    .num_balcao {
        position: relative;
        margin: 1px;
        width: 45%;
        text-align: center;
        display: inline-block;
    }
    .box #status_impressora {
        background-position: bottom right !important;
    }
}
@media (max-width:1039px) and (min-width:451px) {
    .num_balcao {
        position: relative;
        margin: 1px;
        width: 30%;
        text-align: center;
        display: inline-block;
    }
}

@media screen and (min-width: 1040px) {
    .num_balcao {
        position: relative;
        margin: 1px;
        width: 24%;
        text-align: center;
        display: inline-block;
    }
}


/*------------------------------------------------------------------
[ Contagem Senhas ]*/
.box {
    display: flex;
    flex-flow: column;
    height: 90vh;
    background: #304b57;
}

.box #contagem_senhas {
    flex: 0.01 1 auto;
}

.box #contagem_botoes {
    
    flex: 0.04 1 auto;
}

.box #status_impressora {
    flex: 0.5 40px;
    background: url('../img/powered_by_ztech.png') no-repeat;
    background-position: top right;
    background-position-y: 5px;
}

.title_contagemsenha {
    color: #ffffff;
    background: #035460;
    /*text-transform: uppercase;*/
    font-weight: bold;
    border-radius: 3px 3px 0px 0px;
    position: relative;
}

.title_contagemsenha a, .title_contagemsenha span {
    display: flex;
    justify-content: center;
    align-items: center;
    
    font-size: 18px;
    line-height: 23px;
}

.n_clientes_em_espera {
    height: 40px;
    margin-top: 10px;
}

.lbl_clientes_em_espera {
    color: #035460;
    font-weight: bold;
    font-size: 28px;
    vertical-align: -webkit-baseline-middle;
}

.n_clientes_em_espera .limite {
    color: #00a6b9;
}

.lbl_emespera {
    border-top: 1px solid #035460;
    font-size: 9px;
    margin: 0px 25px;
    height: 30px;
    color: #304b57;
    padding-top: 5px;
}
.lbl_emespera_line {
    border-top: 1px solid #035460;
    margin: 0px 25px;
    height: 5px;
    color: #304b57;
}
.lbl_emespera_txt {
    font-size: 9px;
    margin: 0px 0px;
    height: 30px;
    color: #304b57;
    padding-top: 0px;
}
.lbl_emespera_redirect {
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 15px;
    height: 30px;
    color: #304b57;
}
.lbl_emespera_redirect span {
    font-weight: bold;
}
.lbl_ultima_senha {
    color: #00a6b9;
    font-size: 42px;
    font-weight: bold;
    vertical-align: middle;
    margin-bottom: 0px;
    min-height: 63px;
}

.lbl_identificador {
    color: #035460;
    margin: 0px 7px 0px 0px;
}

.n_ultima_senha {
    
    margin: 0px 0px;
}

.n_ultima_senha_redirec {
    border-bottom: 1px solid #00a6b9;
    margin: 0px 10%;
}


.senha_tempo {
    font-size: 18px;
    color: #035460;
    height: 40px;
    margin-top: 8px;
}

.icon_senha {
    width:50px;
}
.icon_senha_2 {
    width: 45px;
}

.icon_senha_3 {
    width: 44px;
}



.btn_chamar {
    background: #00a6b9;
    color: #ffffff;
    border-radius: 3px;
    margin: 0px 15px;
    height: 50px;
    box-shadow: 0 4px 7px #7b868c;
}
.btn_chamar:hover {
    background: #ffffff;
    color: #00a6b9;
}
.lbl_chamar{
    font-size:22px;
    text-transform: uppercase;
    font-weight:bold;
}
.lbl_proxima_senha {
    font-size: 10px;
    margin-top: -8px;
}

.btn_senhas_em_espera {
    margin-top: 25px;

}


.senha-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.senha-select {
    position: relative;
    display: flex;
    flex-direction: column;
    border-width: 0px;
}

.senha-select__trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    margin: 0px 15px;
    line-height: 34px;
    background: #7b868c;
    cursor: pointer;
    border-radius: 3px 3px 0px 0px;
}

.senha-select__trigger span {
    width: 95%;
    line-height: 17px;
    padding: 4px 0px;
}

.senha-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: 0px solid #394a6d;
    border-top: 0;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 2;
}

.senha-select.open .senha-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.senha-option {
    position: relative;
    display: block;
    margin: 0 15px 0 15px;
    background: #7b868c;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    line-height: 34px;
    cursor: pointer;
    transition: all 0.5s;
}

.senha-option:hover {
    cursor: pointer;
}

.senha-option.selected {
    color: #ffffff;
    background-color: #305c91;
    border: 0px solid;
}

.arrow {
    position: relative;
    height: 15px;
    width: 0px;
}

.arrow::before, .arrow::after {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 0.15rem;
    height: 100%;
    transition: all 0.5s;
}

.arrow::before {
    left: -5px;
    transform: rotate(-45deg);
    background-color: #ffffff;
}

.arrow::after {
    left: 5px;
    transform: rotate(45deg);
    background-color: #ffffff;
}

.open .arrow::before {
    left: -5px;
    transform: rotate(45deg);
}

.open .arrow::after {
    left: 5px;
    transform: rotate(-45deg);
}


.num_btn_chamar_auto {
    position: relative;
    text-align: center;
    display: inline-block;
    background: #00a6b9;
    color: #ffffff;
    box-shadow: 0 4px 7px #304b57;
    border-radius: 7px;
    margin: 10px 15px;
    height: 75px;
}
.num_btn_chamar_auto:hover {
    background: #ffffff;
    color: #00a6b9;
}

.lbl_chamar_auto {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: bold;
    padding-top: 10px;
    margin-bottom: 10px;
}

.num_btn_chamar_susp .img-hover-susp-on {
    display: inline;
}

.num_btn_chamar_susp:hover .img-hover-susp-on {
    display: none;
}
.num_btn_chamar_susp:hover, .num_btn_chamar_susp:hover a {
    background: #00a6b9;
    color: #ffffff;
}
.num_btn_chamar_susp .img-hover-susp {
    display: none;
}
.num_btn_chamar_susp:hover .img-hover-susp {
    display: inline;
}

.button_suspensa {
    height: 70px;
    border-radius: 7px;
}
.botao_susp_esq {
    width: 44%;
    float: left;
}
.botao_susp_esq_popup {
    padding-top: 8px;
}

.botao_susp_dir {
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    padding-top: 11px;
    line-height: 1px;
    position: absolute;
    margin-left: 47%;
}

.botao_susp_dir_popup {
    padding-top: 28px;
    margin-left: 27%;
    width: 60%;
}
.botao_susp_dir .line2 {
    margin-top: 10px;
    width: 58%;
    height: 45px;
    min-height: 2px;
    line-height: 19px;
    position: absolute;
}

.one {
    line-height: 70px;
    padding-top: 0px;
}

.one_redirect {
    line-height: 60px;
    padding-top: 0px;
}

.num_printrequest {
    position: relative;
    margin: 1% 3%;
    text-align: left;
    display: inline-block;
    vertical-align: top;
}

.num_print {
    width: 180px;
}
.alerta_impressora, .alerta_impressora:hover {
    color: #ffffff;
}
.botao_printer_esq {

    float: left;
}

.botao_printer_dir {
    text-align: left;
    padding-top: 27px;
    line-height: 20px;
}
.validation_overlay {
    position: fixed;
    z-index: 999;
    height: 14em;
    width: 27em;
    overflow: visible;
    margin: auto;
    top: -4em;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    border-radius: 7px;
    display: none;
}
/* Transparent Overlay */
.validation_overlay:before {
    content: '';
    display: block;
    position: fixed;
    top: 69px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
}

.button_validation_overlay {
    border: 1px solid #e9e8ea;
    border-radius: 10px;
    box-shadow: 1px 1px 3px #304b57;
    width: 70%;
    text-align: center;
    height: 44%;
}
.modal-content {
    border: 0px solid;
    height: 100%;
    padding: 10px 0px;
    align-items: center;
}

.modal-content > div:first-child {
    padding: 15px 36px;
    border-bottom: 1px solid #00a6b9;
    margin: 0px 20px 19px 20px;
}

.modal_title_2 {
    padding: 15px 55px !important;
    text-align:center;
}

#relogio {
    font-size: 42px;
    line-height: 95%;
}

.clock_border {
}

.clock_border:before, .clock_border:after {
    content: "";
    height: 1px;
    background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(147,147,147,1) 50%,rgba(0,0,0,0) 100%);
    display: block;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: 8%;
    margin-right: 8%;
}

.textarea_redirect textarea::-webkit-input-placeholder {
    text-align: center;
}

textarea:-moz-placeholder { /* Firefox 18- */
    text-align: center;
}

textarea::-moz-placeholder { /* Firefox 19+ */
    text-align: center;
}

.lbl_duracao_redirect {
    font-size: 14px;
}
textarea:-ms-input-placeholder {
    text-align: center;
}

.btn_terminar {
    background: #00a6b9;
    color: #ffffff;
    border-radius: 3px;
    margin: 0px 0px;
    height: 50px;
    box-shadow: 1px 1px 3px #7b868c;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: bold;
    color: #ffffff;
    padding: 6px 23px;
}

.btn_terminar:hover, .btn_terminar a:hover {
    background: #ffffff;
    color: #00a6b9;
}
.bottom_redirect {
    padding: 15px;
}


.line_modal_container {
    width: 80%;
    margin: auto;
}
.line_modal_content {
    text-align: right;
    font-size: 14px;
    width: 45%;    
    float: left;
}

.line_modal_content select{
    width: 50%;
    float: right;
}

.line_modal_select {
    text-align: right;
    font-size: 14px;
    margin-left: 50%;
    
}
.line_modal_select select {
    width: 100%
}

.line_modal_select select{
    background-color: #e9e8ea;
    border-color: #e9e8ea;
}

.container-modal-btn-side {
    display: flex;
    justify-content: center;
}

.button_modal_cancel {
    color: #00a6b9;
    background-color: #ffffff;
    border: 1px solid #00a6b9;
    border-radius: 2px;
    padding: 2px 15px 2px 15px;
    text-transform: uppercase;
    font-size: 17px;
    cursor: pointer;
}

.button_modal_chamar {
    color: #ffffff;
    background-color: #00a6b9;
    border: 1px solid #00a6b9;
    border-radius: 2px;
    font-weight: bold;
    margin-left: 30px;
    padding: 2px 15px 2px 15px;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
}

.button_margin {
    margin-left: 30px;
}

.button_modal_smalltext {
    padding: 2px 35px 2px 35px;
}

.validation_overlay_suspensa {
    height: 16em; 
}
.validation_overlay_confirmation {
    height: 16em;
} 
.required_field {
    color: #00a6b9;
    font-size: 14px;
}

.line_settings_container {
    width: 100%;
    margin: auto;
    margin-bottom: 15px;
}

.line_settings_content {
    text-align: right;
    font-size: 14px;
    width: 50%;
    float: left;
}

.line_settings_select {
    text-align: left;
    font-size: 14px;
    margin-left: 56%;
}

.line_settings_select input {
    background: #e9e8ea;
}

.error_msg {
    font-size: 11px;
    color: red;
}


.m-d-20 {
    margin-bottom: 20px;
}


@media screen and (max-width: 1039px) {
    .title_contagemsenha a, .title_contagemsenha span {
        font-size: 3vw;
    }

    .botao_susp_dir {
        font-size: 2.5vw;
    }

    .container-login100 {
        padding: 0px;
    }

    .container-mobile {
        padding: 20px;
    }

    .num_contagemsenha {
        position: relative;
        /*margin: 0px 15px;*/
        width: 100%;
        text-align: center;
        display: inline-block;
    }

    .num_redirectsenha {
        position: relative;
        /*margin: 0px 15px;*/
        width: 99%;
        text-align: center;
        display: inline-block;
    }

    .container_botoes {
        background: #035460;
        border-top: 5px solid #ffffff;
        /*height: 28vh;*/
    }

        .container_botoes > div {
            padding: 25px 0px;
        }

    .num_btn_chamar_susp {
        border-radius: 7px;
        width: 40%;
        padding: 10px 0px;
        color: #035460;
        background: #ffffff;
        margin: 7px 4px;
    }

        .title_contagemsenha {
            border-radius: 0px;
            left: 0px;
            width: 100%;
            padding-top: 14px;
        }
        @supports (-ms-ime-align:auto) {
            .title_contagemsenha {
                padding-bottom: 14px;
            }
            .icon_senha_2, .icon_senha_2_off{
                margin-bottom: 10px;
            }
        }

    .content_senha {
        display: none;
        background: #ffffff;
        margin: 0px 29px 0px 29px;
        border-radius: 3px;
    }

        .content_senha_redirect {
            display: inline;
            background: #ffffff;
            display: block;
            margin: 12px 29px 22px 29px;
            border-radius: 6px;
        }

        .title_espera {
            margin-top: -37px;
            padding-left: 72%;
        }

        .title_espera .lbl_clientes_em_espera {
            color: #ffffff;
        }

        .title_arrow {
            display: inline-flex;
            margin-top: -33px;
            margin-right: -88%;
        }

        .open > .content_senha {
            display: block;
        }

        .espacamento {
            height: 2px;
            background-color: transparent;
        }

        /*.open > .espacamento {
            height: 15px;
        }*/

        #contagem_senhas .title_contagemsenha_auto:hover, .title_contagemsenha_auto.open {
            color: #00a6b9;
            background: #ffffff;
        }

        #contagem_senhas .title_contagemsenha_auto:hover .lbl_clientes_em_espera, .title_contagemsenha_auto.open .lbl_clientes_em_espera {
            color: #00a6b9;
        }

        .title_espera_auto_off {
            display: inline;
        }

        .title_espera_auto_on {
            display: none;
            margin-left: -48px;
        }

        #contagem_senhas .title_contagemsenha_auto:hover .title_espera_auto_on, .title_contagemsenha_auto.open .title_espera_auto_on {
            display: inline;
        }

        #contagem_senhas .title_contagemsenha_auto:hover .title_espera_auto_off, .title_contagemsenha_auto.open .title_espera_auto_off {
            display: none;
        }

        #contagem_senhas .title_contagemsenha_auto:hover .lbl_clientes_em_espera, .title_contagemsenha_auto.open .lbl_clientes_em_espera {
        }

        .title_contagemsenha .img-cliente {
            display: none;
        }

        #contagem_senhas .title_contagemsenha:hover .img-cliente, .title_contagemsenha.open .img-cliente {
            display: inline;
        }

        .title_contagemsenha .img-cliente-cinza {
            display: inline;
        }

        #contagem_senhas .title_contagemsenha:hover .img-cliente-cinza, .title_contagemsenha.open .img-cliente-cinza {
            display: none;
        }

        .title_contagemsenha:hover .arrow::before, .title_contagemsenha.open .arrow::before,.title_contagemsenha:hover .arrow::after, .title_contagemsenha.open .arrow::after {
            background-color: #00a6b9;
        }
        .container_printer {
            background: #304b57;
            border-top: 6px solid #ffffff;
            color: #ffffff;
            text-align: left;
            display: inline-block;
            width: 100%;
            /*min-height: 10vh;*/
        }

        .btn_redirect_adjust {
            top: 14px;
        }

        .select_redirect {
            width: 20vw;
            font-size: 12px;
        }

        .textarea_redirect textarea {
            font-size: 14px;
            background: #e9e8ea;
            resize: none;
            margin-bottom: 20px;
            padding: 10px;
            width: 77%;
        }

        .lbl_vertical {
            width: 94%;
        }

        .num_btn_chamar_auto {
            width: 50%;
        }

        .btn_chamar_auto_frame {
            border-top: 5px solid #00a6b9;
        }

        .line_modal_content {
            width: 100%;
            margin-left: 15%;
            text-align: left;
            padding-top: 0px;
            font-size: 14px;
        }

        .validation_overlay {
            width: 90%;
        }

        .line_modal_select {
            width: 100%;
            margin-left:15%;
            text-align: left;
            padding-top: 28px;
            font-size: 14px;
        }
        .line_modal_buttons {
            margin-top: 40px;
        }

        .line_modal_select select{
            width: 65%;
        }

        .validation_overlay_suspensa {
            height: 23em;
        }

        .validation_overlay_confirmation {
            height: 19em;
        } 

        .button_modal_chamar {
            margin-left: 10%;
        }
        .modal-content {
            border-radius: 7px;
        }

        .line_modal_container {
            margin: 22px;
        }
        #mobile_content {
            display:inline;
        }
        #mobile_content > .title_contagemsenha{
            display: none;
        }
        #mobile_content .content_senha {
            margin-top: 15px;
            margin-bottom: 15px;
        }
        #contagem_senhas_mobile {
            display: inline;
        }

        .title_settings {
            margin-left: 15%;
            margin-right: 15%;
        }

        .button_settings {
            width: 75%;
            margin-top: 15px;
            text-align:center;
            margin-left: 21px;
        }

        .line_settings_container {
            width: 100%;
            margin-left: 15%;
            margin-right: 15%;
        }

        .line_settings_content {
            text-align: left;
            width: 90%;
        }

        .line_settings_select {
            margin-left: 0px;
        }

        .line_settings_select input {
            width: 75%;
        }
    }

    @media screen and (min-width: 1040px) {

        .num_contagemsenha {
            position: relative;
            margin: 1%;
            width: 14%;
            text-align: center;
            display: inline-block;
            border-radius: 3px;
        }

        .num_redirectsenha {
            position: relative;
            margin: 1%;
            width: 30%;
            text-align: center;
            display: inline-block;
            border-radius: 3px;
        }

        .container_botoes {
            background: #035460;
            border-top: 1px solid #ffffff;
            /*height: 15vh;*/
        }

        .title_contagemsenha {
            padding: 10px 8px 10px 8px;
        }

        .num_btn_chamar_susp {
            border-radius: 7px;
            width: 22%;
            padding: 10px 0px;
            color: #035460;
            background: #ffffff;
        }

        .content_senha {
            display: inline;
            background: #ffffff;
            display: block;
            border-radius: 0px 0px 3px 3px;
        }

        .content_senha_redirect {
            display: inline;
            background: #ffffff;
            display: block;
            border-radius: 3px;
        }

        .title_arrow, .title_espera {
            display: none;
        }

        .container_printer {
            background: #304b57;
            border-top: 1px solid #ffffff;
            color: #ffffff;
            text-align: center;
            display: inline-block;
            width: 100%;
            /*min-height: 10vh;*/
        }

        .textarea_redirect textarea {
            font-size: 14px;
            background: #e9e8ea;
            resize: none;
            margin-bottom: 20px;
            padding: 10px;
            width: 77%;
        }

        .btn_redirect_adjust {
            top: 15px;
        }

        .select_redirect {
            width: 11vw;
            font-size: 15px;
        }
        .lbl_vertical {
            width: 22%;
        }
        .num_btn_chamar_auto {
            width: 18%;
        }
        #mobile_content {
            display: none;
        }

        #contagem_senhas_mobile {
            display: none;
        }
        .senha-select__trigger {
            padding: 0 1.4vw;
        }
    }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {

    .title_arrow {
        top: -15px;
    }
    .open .arrow::before {
        left: -5px;
        transform: rotate(45deg);
    }

    .open .arrow::after {
        left: 5px;
        transform: rotate(-45deg);
    }
    /*.title_contagemsenha:hover .arrow::before, .title_contagemsenha.open .arrow::before, .title_contagemsenha:hover .arrow::after, .title_contagemsenha.open .arrow::after {
        top: -15px;
    }*/
}

@media screen and (max-width: 1039px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    #mobile_content .content_senha {
        margin-top: 15px;
        margin-bottom: 100px;
    }
    
}
@media screen and (min-width: 1040px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
        .icon_senha_2 {
            width: 45px;
            margin-bottom: 14px;
        }
    }