/* BASIC */

body {
  font-family: "Poppins", sans-serif;
  height: 100vh;
}

a {
  color: #92badd;
  display:inline-block;
  text-decoration: none;
  font-weight: 400;
}

h2 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display:inline-block;
  margin: 40px 8px 10px 8px; 
  color: #cccccc;
}
.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column; 
  justify-content: center;
  width: 100%;
  min-height: 85%;
  padding: 20px;
}


.linkbutton {
  color: #92badd;
  display:inline-block;
  text-decoration: none;
  font-weight: 400;
}

.linkbutton:hover{
  color: #92badd;
  display:inline-block;
  text-decoration: none;
  font-weight: 400;
}

.menu {
  display:flex;
  margin-bottom: -1rem !important;
}

.dropdown{
  min-width: 140px;
}

nav .selected {
  background-color: #f5f7fb;
  color: #92badd!important; 
}

nav .linkmenu {
  color: #92badd;
  display:inline-block;
  text-decoration: none;
  font-weight: 400;
  height: 100%;

  border-top-left-radius: 7px;
  border-top-right-radius: 7px;  
  border-top: 1px solid #dce8f1;
  border-left: 1px solid #dce8f1;
  border-right: 1px solid #dce8f1;  
}

nav .linkmenu:hover{
  background-color: #f5f7fb;
  color: #92badd!important;
  text-decoration: none;
  font-weight: 400;
}

#formContent {
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  background: #fff;
  padding: 25px!important;
  position: relative;
  padding: 0px;
  -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  text-align: center;
  min-height: 350px;
}

#formFooter {
  background-color: #f6f6f6;
  border-top: 1px solid #dce8f1;
  padding: 25px;
  text-align: center;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}
.row{
  margin-right: 0!important;
  margin-left:0!important;
}

h2.inactive {
  color: #cccccc;
}

h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #5fbae9;
}
 
input[type=button], input[type=submit], input[type=reset]  {
  background-color: #56baed;
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  margin: 5px 20px 40px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover  {
  background-color: #39ace7;
}

input[type=button]:active, input[type=submit]:active, input[type=reset]:active  {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

.btn-approve, .btn-approveVehicleRequest{
  background-color: rgb(52, 134, 52);
  color: white;
  font-weight: lighter;
  margin:8px;
  width: 76px;
}

.btn-approveVehicleRequest:disabled {
    background-color:#bbbbbb;
}

.btn-decline, .btn-declineVehicleRequest{
  background-color: rgb(221, 55, 55);
  color: white;
  font-weight: lighter;
  width: 76px;
}

/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after{
  width: 100%;
}
 
/* OTHERS */

*:focus {
    outline: none;
} 

#icon {
  width:60%;
}

#confirm, #resendSMS, #goBack{
  margin-bottom: 20px;
  width: 150px;
  height: 40px;
  
}
#confirm:disabled, #resendSMS:disabled{
  background-color:#bbbbbb;
  border: 0;
}

#smsCode{
    margin:35px 0 15px 0;
    height: 75px;
  }

#login, #password{
  margin:25px 0 0 0;
  height: 50px;
}
.loginAlert{
  height: 40px;
  text-align: left;
  margin-left: 5px;
  color: rgb(221, 55, 55);
}
.smsAlert{
  text-align: center;
}

.invalid{
  border: 1px solid rgb(221, 55, 55)!important;
}

.searchClientError{
  border-bottom: 2px solid rgb(221, 55, 55)!important;
}

.clientProfilTable{
  padding:7px 20px ;
}
.bold{
  font-size:15px;
  font-weight:bold;
  color:rgb(51, 65, 90);
}

.searchError{
  top: 75px;
  left: 43%;
  position: absolute;
  font-size:25px;
  color:rgb(202, 201, 201);
  display:none;
 
}
.position2pxTop{
  margin-top:2px;
}

.position12pxTop{
  margin-top:12px;
}

.hideClient .row {
  padding: 0px!important;
  margin:0px!important;
}

.red{
  color:rgb(221, 55, 55);
}
.tooltip {
  position: relative;
  display: inline-block;
  opacity:1!important;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  left: -120px;
  top: -5px;

  /* Position the tooltip */
  position: absolute;
  z-index: 10000;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}



.paginate_button {
  margin-bottom:5px!important;
}

@media (min-width: 660px) {
  .floatRightHelp {
    float:right;
  }
  
}



.policeReportTable .card-table tr td:last-child, .policeReportTable .card-table tr th:last-child, .reportDatatable .card-table tr td:last-child, .reportDatatable .card-table tr th:last-child{
  padding:0px!important;
}

.policeOffenseTable .card-table tr td:last-child, .policeOffenseTable .card-table tr th:last-child, .offenseDatatable .card-table tr td:last-child, .offenseDatatable .card-table tr th:last-child{
  padding:0px!important;
}
.policeSuggestionTable .card-table tr td:last-child, .policeSuggestionTable .card-table tr th:last-child, .suggestionDatatable .card-table tr td:last-child, .suggestionDatatable .card-table tr th:last-child{
  padding:0px!important;
}
.suggestionDatatable div, .policeSuggestionTable div, .policeOffenseTable div, .policeReportTable div, .reportDatatable div, .offenseDatatable div{
  padding:0px!important;
}
/*
.ML5{
  margin-left:5px!important;
}

@media(min-width:320px) and (max-width: 370px) {
  .MR-M{
    margin-right:-5px!important;
  }
}

@media(min-width: 370px) and (max-width: 420px){
  .MR-M{
    margin-right:-15px!important;
  }
}

@media(min-width: 420px) and (max-width: 470px){
  .MR-M{
    margin-right:-30px!important;
  }
}
@media(min-width: 470px) and (max-width: 500px){
  .MR-M{
    margin-right:-45px!important;
  }
}
@media(min-width: 500px) and (max-width: 550px){
  .MR-M{
    margin-right:-55px!important;
  }
}
@media(min-width: 550px) and (max-width: 575px){
  .MR-M{
    margin-right: -70px!important;
  }
}
@media(min-width: 575px) and (max-width: 650px){
  .MR-M{
    margin-right: -2px!important;
  }
  .MR-MS{
    margin-right: -12px!important;
  }
}
@media(min-width: 650px) and (max-width: 767px){
  .MR-M{
    margin-right: -px!important;    
  }
  .MR-MS{
    margin-right: -20px!important;
  }
}
@media(min-width: 768px) and (max-width: 870px){
  .MR-M{
    margin-right: -25px!important;    
  }
  .MR-MS{
    margin-right: -0px!important;
  }
}
@media(min-width: 870px) and (max-width: 980px){
  .MR-M{
    margin-right:-30px!important;
  }
  .MR-MS{
    margin-right: -10px!important;
  }
}
.smallSec{
  font-size:12px;
}

.policeDashboardBody .swal2-container .swal2-shown{
background-color:rgba(0,0,0,.7);
}
/*
@media(min-width: 980px){
  .policeDashboardBody .swal2-popup{
    padding: 0px!important;
  
  }
}
@media(max-width: 981px){
  .policeDashboardBody .swal2-popup{
    padding: 0px!important;
  
  }
}*/

@media (min-width: 1280px) {
  .offenseHeight {
   min-height: 195px!important;
  }
}@media (max-width: 1280px) {
  .offenseHeight {
   height: 442px!important;
  }
}
@media (max-width: 321px) {
  .smallSec{
    font-size: 12px!important;
    
  }
}

*/
.condition .dataTables_wrapper #mytable_filter{
  margin:2px 6px!important;
}
.condition .dataTables_wrapper #mytable_paginate{
  margin:5px 0 0 0!important;
}

.dataTables_wrapper .dataTables_filter{
margin: 2px 4px 0 0!important;
}
.dataTables_wrapper .dataTables_paginate{
  margin: 5px!important;
}
.dataTables_scrollBody thead {visibility: hidden;}

.condition .dataTables_wrapper table td a{
 display: initial;
}


.shortNote{
  /*overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;*/

  width:98%;
}
.notes textarea.form-control {
  max-height: 99px;
  min-height:60px;
}
.img-fluid{
  max-height: 525px!important;
}
.galleryBtn .refuse{
  background-color:rgb(221, 55, 55);
}
.galleryBtn{
  height: 38px;
}
.galleryBtn .cancel{
  border:1px solid #bbbbbb;
  width: 87px;
  height: 38px;
  padding: 0px;
  line-height: inherit;
  color:#bbbbbb;
}
.cancel{
  margin-top:15px;

}
.galleryBtn .btn{
  margin-top:15px;
  margin-right:5px;
}
.messageToClient, .btnMenu{
  margin-left:15px;
  padding: 0px 10px!important;
  cursor:pointer;
}

.typeMessageToClient label{
  display: unset;
}

.messageToClientBtn:hover{
background-color:#45aaf2!important
}

.menu-hide label{
  display: unset;
}
.leaflet-editing-icon{
  width:10px!important;
  height:10px!important;
}

@media (min-width: 800px) {
  .fotoPopup {
  padding:0 15px;
  }
}@media (max-width: 1280px) {
  .fotoPopup {
    padding:0 55px;
  }
}
@MEDIA(max-width:500px){
  .conditionTableHelp .helpContentPad{
    text-align:left!important;

  }
}
@media(max-width:600px ){
  .conditionTableHelp .helpContentPad{
   
    padding-right:20px!important
  }
}
@media(min-width:600px ){
  .conditionTableHelp .helpContentPad{
    padding-right:30px!important
  }
}

#userListTable_wrapper .dataTables_processing {
  position: relative;
  top: -55px;
  left: 95%;
  width: 30%;
  height: 25px;
  margin-left: -20%;
  margin-top: -25px;
  padding-top: 20px;
  text-align: center;
  font-size: 1.2em;
  background: none;
  }

#userListTable_wrapper tbody tr.selected{background-color:transparent}


.modal-full {
  min-width: 100%;
  margin: 0;
  padding-left: 10px;
  padding-right: 10px;
}

.modal-full .modal-content {
  min-height: 100vh;
}

.modal{
  max-height: calc(100vh - 10px);
}

.modal-body {
  max-height: calc(100vh - 170px);
  overflow-y: auto;
  padding: 0px!important;
  margin-top:15px;
}


.btnImportConf, .btnImportCancel{
  margin:20px 10px 5px 10px;
}

#userListTable_wrapper{
  overflow: auto; 
}

.fullName{
  word-break: normal;
  white-space: normal;
}

.clientConNote{
  cursor: pointer;
  white-space: normal;
}

.exportData, .importData{
cursor:pointer;
}

#editPushMessTable_filter, #editErrorMessTable_filter, #editEmailMessTable_filter, #editRegistrationTextTable_filter{
  display:none;
}
#editPushMessTable td, #editErrorMessTable td, #editEmailMessTable td, #editRegistrationTextTable td{
  white-space: initial;
}

.messErrorTD,.messEmailTD, .regTextErrorTD, .messRegTD{
  width:80%
}

.messFilterInput{
  border-radius:3px;
  border:1px solid #bfc1c4;;
  padding:4px;
  
}

.multipleMessage{
  cursor: pointer;
}

#pushNotification, #errorNotification ,#emailTextArea, #regTextArea{
  width:450px;
  min-height:100px;
  max-height:200px;
}

.editMessageBody .modal-content{
  padding:25px;
  
}

.emailSub, .addRegTextLanguage, .addNewEmailID, .addNewEmailLanguage, .addRegTextID, .regTextSub,.regTextAddNewSub, .emailAddNewSub{
  border:1px solid #868e96  ;
  border-radius: 3px;
  width:100%;
  height:40px;
  margin: 10px 0 25px 0;
  padding:0 5px;
}


.confirmEmailEditButton, .confirmRegTextButton, .confirmEmailAddNewButton, .confirmRegTextAddNewButton{
  background:rgb(52, 134, 52);
  color:#fff;
  padding:11px 34px;
  border:0px;
  border-radius:.25em;
  font-size: 17px;

}

.cancelEmailEditButton, .cancelRegTextButton,.cancelRegTextAddNewButton, .cancelEmailAddNewButton{
  background:#aaa;
  color:#fff;
  padding:11px 34px;
  border:0px;
  border-radius:.25em;
  font-size: 17px;
}

.editMenuStyle ul, .editDialMenuStyle ul, .policeMenuStyle ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: unset;
  cursor:pointer;

}

.editMenuStyle li, .editDialMenuStyle li, .policeMenuStyle li{
  float: left;
}

.editMenuStyle li span, .editDialMenuStyle li span, .policeMenuStyle li span {
  display: block;
  color: #bbb;
  text-align: center;
  padding: 0px;
  margin: 0px 10px;
  text-decoration: none;
}

.activeEditMenu span, .activeDialEditMenu span {
  color:#5b5b5b!important;
  border-bottom:2px solid #5b5b5b;
}


.dataTables_wrapper .table{
  border-top: 0px!important;
 
}

.policeDashboardReport label,.policeDashboardSuggestion label, .policeDashboardOffense label, .policeDashboardOffenseII label,  .policeDashboardOffenseIII label{
  margin-top:8px;
}


.activePoliceMenu span{
  color:#5b5b5b!important;
  border-bottom:2px solid #5b5b5b;
}



#policeTable_filter{
  width:100%;
}

.rejectReasonModal, .confirmReasonModal{
  margin:20px 20px 0 20px;
}

#btnCancelOffense{
  margin-top: 15px;
}


.btnSuggestion{
  padding: 1px 10px!important;  
  margin:10px 3px;
  width:145px;
  cursor: pointer!important;
}

.btnReport{
  padding: 1px 10px!important;  
  margin:10px 3px;
  width:145px;
  cursor: pointer!important;
}

.checkAllText{
  font-size:14px;
  margin-top:6px;
  
}

input[name="reportStateGroup"], input[name="suggestionStateGroup"], input[name="offenseStateGroup"], input[name="offenseIIStateGroup"]{
  margin-left: 15px;
  margin-right:5px;
}

.reportStateLabel, .suggestionStateLabel, .offenseStateLabel, .offenseIIStateLabel{
  margin-top: 8px;
  font-size:13px;
  white-space:nowrap;
}

.policeOffenseDatatable tbody tr:first-child{
border-top:1px solid rgba(0, 40, 100, 0.12);

}
.reportStateOptions, .suggestionStateOptions, .offenseStateOptions, .offenseIIStateOptions{
  margin-left:10px;
}

.reportHeaderOptions, .suggestionHeaderOptions, .offenseHeaderOptions, .offenseIIHeaderOptions{
  border-bottom:1px solid rgba(0, 40, 100, 0.12);
  height: 50px;
}

.policeOffenseIIDatatable tbody tr:first-child{
  border-top:1px solid rgba(0, 40, 100, 0.12);
}

 .noteTD{
  word-break: break;
    white-space: normal;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

.moreReportTextArea{
  min-height:50px;
  max-height:250px;
}
.reportDesc{
  margin-bottom:10px;
  padding: 0 0 15px 0;
}

.reportTextArea, .suggestionTextArea{
max-height: 250px;
height: 50px;
min-height:50px;
}
.exportVehicleRadioBtn{
  margin-bottom:25px;
}

.exportVehicleRadioBtn label{
margin:15px 0 0 0;
}
.exportVehicleRadioBtn span{
  color:#8f8e8e;
  font-size:16px;
  margin-left: 17px;
  display:block;
}

.inputChangeReportLPN, .inputChangeReportBox_number{
  border: 1px solid #0d0d0d;
  border-radius: 3px;
  padding: 5px;
  width: 190px
}

.offenseBackBtn, .reportBackBtn{
  float:left;
  border: 0px;
  cursor: pointer;
}

.EI-BB{
  border-bottom:1px solid #d6d7d8;
}

.EI-dataContainer p{
  font-size: 17px;

}

.EV-table, .ED-table{
  width:100%;
  padding:15px 5px;
}

.EV-table:nth-of-type(even), .ED-table:nth-of-type(even){
  background:rgba(0, 0, 0, 0.05);
}

.EV-tableHeader, .ED-tableHeader{
  /*color: #9aa0ac;*/
}

.EV-table button, .ED-table button{
  width: 110px;
  margin:auto;
}

.smallText{
  color:#bbbbbb;
  font-size: 15px;
}

.rotateIMG{
  transition: transform 0.5s;
  cursor: pointer;
}

.flip {
  transform: rotate(-180deg);
}

.btn-outline-info{
  background: white!important;
}

.clientVehicleConNote{
  cursor: pointer;
  white-space: normal;
}
.newSelectVehicle{
  padding-right: 0px!important;
}

.confirmEmailEditButton, .createCardButton, .editCardButton, .editCardECVButton, .editCardTimeButton{
  background:rgb(52, 134, 52);
  color:#fff;
  padding:11px 34px;
  border:0px;
  border-radius:.25em;
  font-size: 17px;

}

.outlineBtn{
  background:#fff;
  color: rgb(52, 74, 134);
  padding:11px 34px; 
  border: 1px solid rgb(52, 74, 134);
  border-radius: .25em;
  font-size: 17px;
}

.outlineBtn:hover{
  background-color: rgb(52, 74, 134);
  color: #fff;
}

.cancelEmailEditButton, .cancelCardButton{
  background:#aaa;
  color:#fff;
  padding:11px 34px;
  border:0px;
  border-radius:.25em;
  font-size: 17px;
}

.btnRefreshET, .btnAddParkCard{
  outline: none !important;
  box-shadow: none!important;
}

.cardInput{
  border-radius: 3px;
  width: 200px;
  border: 1px solid rgba(0, 40, 100, 0.12);
  height: 2.375rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
}

td.details-control {
  background: url('/assets/img/arrowdown.png') no-repeat center center;
  cursor: pointer;
  background-size: 20px;
}
tr.shown td.details-control {
  background: url('/assets/img/arrowdown.png') no-repeat center center;
  background-size: 20px;
  transform: rotate(180deg);

}

table.dataTable thead th {
  background: transparent !important;
  white-space: nowrap;
}

table.dataTable thead span.sort-icon {
  display: inline-block;
  padding-left: 5px;
  width: 16px;
  height: 16px;
}

#nav{
  margin-top:5px
}
#nav a{
  color:#555;
  border:1px solid rgba(0, 40, 100, 0.12);
  box-shadow:0 1px 1px 0 rgba(0, 0, 0, 0.05);
  cursor: pointer;
  text-align: center;
  padding: 7px 12px 7px 12px;
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer; 
  font-weight: 600; 
  letter-spacing: .03em; 
  font-size: 0.8125rem; 
  min-width: 2.375rem;
}

.activeNav{
background-color: #467fcf;
border-color:#467fcf;
color:#fff!important;
}

.redBtnRefresh{
  border-color: rgba(0, 255, 0, 0.726)!important;
  color:rgba(0, 255, 0, 0.726)!important;
}



.loader{
  height: 20px!important;
  width: 20px!important;
}

.loader:after, .loaderHight.after{
  animation: loader 1s linear infinite!important;
  height: 20px!important;
  width: 20px!important;
  top:90%!important;
  left: 190%!important;

}

.loader:before, .loaderHight.before {
  height: 20px!important;
  width: 20px!important;
  top:90%!important;
  left: 190%!important;
}

.loaderBig {
  border: 8px solid #e7e7e7;
  border-radius: 50%;
  border-top: 8px solid #3498db;
  width: 60px;
  height: 60px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cardInput{
  border-radius: 3px;
  width: 200px;
  border: 1px solid rgba(0, 40, 100, 0.12);
  height: 2.375rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
}
.cardForm{
  text-align: end;
  margin-right: 108px;
}

.showEditCardInfo div{
  margin-bottom: 7px;
}

.ui-autocomplete {
  max-height: 200px;
  overflow-y: auto;   /* prevent horizontal scrollbar */
  overflow-x: hidden; /* add padding to account for vertical scrollbar */
  font-size:15px!important;
  text-align: center;
}

.ui-autocomplete:hover{
  padding:0px!important

}

.removeBtnFilter{
  border: 1px solid rgba(0, 40, 100, 0.12);
  height: 2.374rem;
  width: 2.374rem;
  background: none;
  color:  rgba(0, 40, 100, 0.12);
  border-radius: 3px;
}

.removeBtnFilter:hover{
  color: rgba(0, 40, 100, 0.4)
}

.header-brand{
  width: 50px;
}

.smsCode.form-control{
  display:inline-block;
  text-align:center;
  width: 35%;
  text-align: center;
  letter-spacing: 8px;
  font-size: 3rem;
}

.bg-light-red {
  background-color: #ffcccb!important;
}

  /* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.modal-body-custom {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.required-label:after { 
  content:"*";
  color:red;
}