﻿@charset "UTF-8";
/*CSS Reset Start*/
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
html, body, div, span, object, h1, h2, h3, h4, h5, h6, b, i, dl, dt, dd, ol, ul, li, article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
}

/*Added font for our App*/
/*@font-face {
    font-family: 'OpenSans';
    src: url('../fonts/OpenSans-Regular.eot');
    src: url('../fonts/OpenSans-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/OpenSans-Regular.woff2') format('woff2'), url('../fonts/OpenSans-Regular.woff') format('woff'), url('../fonts/OpenSans-Regular.ttf') format('truetype'), url('../fonts/OpenSans-Regular.svg#OpenSans_Regular') format('svg')
}*/
* {
  font-family: "Lato", Helvetica, sans-serif;
}

html {
  --primary-color: #E06639;
  --primary-light-color: #E68E26;
  --primary-dark-color: #5C6076;
  --secondary-color: #9195A9;
  --secondary-light-color: #D8D8E5;
  color: #3D434B;
  font-size: 14px;
}

body {
  font-family: "Lato", sans-serif;
  /*background: #ccc;
  */
  line-height: 20px;
}

.conPadRemoved {
  padding-right: 10px;
}

.pageContent {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
}

.valign-middle {
  display: flex;
  align-items: center;
}

.fit-font-height {
  min-height: 1em;
}

.main-left-offset, form[name=frmMain] {
  margin-left: -30px;
}

#divPrint form[name=frmMain] {
  margin-left: 0;
}

.vendor-integration-container form[name=frmMain] {
  margin-left: 0;
}

.webConGroup {
  margin-left: -10px;
}

#divPrint webConGroup {
  margin-left: 0;
}

form[name=frmMainHeader] .col-xs-offset-1 {
  margin-left: 2px;
}

.userDataBar .col-xs-offset-1 {
  margin-left: 20px;
}

h1 {
  font-size: 26px;
  margin: 23px 0 18px;
  font-weight: 400;
}

h2 {
  font-size: 18px;
}

h3 {
  font-size: 16px;
}

h4 {
  font-size: 14px;
}

h5, h6 {
  font-size: 12px;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-size: inherit;
}

a {
  color: #E68E26;
  font-size: 14px;
}
a:hover {
  color: #E68E26;
  text-decoration: underline;
}
a:active, a:focus {
  color: #F24400;
}

.link-inactive {
  color: #9195A9;
}

input:not([type=button]):not([type=submit]) {
  border: 1px solid #D8D8E5;
  outline: none;
  font-size: 14px;
  border-radius: 2px;
}
input:not([type=button]):not([type=submit]):focus {
  border: 1px solid #E68E26;
}

textarea {
  border: 1px solid #D8D8E5;
  outline: none;
  font-size: 14px;
  border-radius: 2px;
}
textarea:focus {
  border: 1px solid #E68E26;
}

label {
  font-size: 14px;
}

.selectize-input {
  border: 1px solid #D8D8E5 !important;
  border-radius: 2px;
}

.selectize-dropdown, .selectize-input, .selectize-input input {
  font-size: 14px !important;
}

.selectize-input.focus {
  outline: none;
  border: 1px solid #E68E26 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.form-control.focus input, .selectize-input.focus input {
  border: none !important;
}
.form-control.focus input:focus, .selectize-input.focus input:focus {
  border: none !important;
}

.selectize-dropdown-content .option.active {
  background-color: #E68E26;
  color: #FFF;
}

.selectize-dropdown-content .option {
  font-size: 14px !important;
}

input[type=checkbox],
input[type=radio] {
  accent-color: #E06639;
  color: #E06639;
}
input[type=checkbox]::-webkit-color-swatch,
input[type=radio]::-webkit-color-swatch {
  background-color: #E06639;
}
input[type=checkbox]::-moz-color-swatch,
input[type=radio]::-moz-color-swatch {
  background-color: #E06639;
}

input[type=checkbox],
input[type=radio] {
  width: 1em;
  height: 1em;
  outline: none;
  cursor: pointer;
}

Specific adjustments for radio buttons input[type=radio] {
  border-radius: 50%;
}

.primaryBtn, .btnactive {
  background-color: #E06639;
  font-size: 14px;
  color: #FFF;
  border-radius: 2px;
  width: 100%;
  text-align: center;
  border: none;
  padding: 8px 0;
}
.primaryBtn:focus, .btnactive:focus {
  background-color: #E06639;
  color: #FFF;
}
.primaryBtn:hover, .btnactive:hover {
  background-color: #E68E26;
  color: #FFF;
}
.primaryBtn:disabled, .btnactive:disabled {
  opacity: 0.65;
}
.primaryBtn:disabled:hover, .btnactive:disabled:hover {
  background-color: #E06639;
  color: #FFF;
}

.secondaryBtn {
  background-color: #9195A9;
  font-size: 14px;
  color: #FFF;
  border-radius: 2px;
  width: 100%;
  border: none;
  padding: 8px 0;
}
.secondaryBtn:focus {
  background-color: #9195A9;
  color: #FFF;
}
.secondaryBtn:hover {
  background-color: #E68E26;
  color: #FFF;
}
.secondaryBtn:disabled {
  opacity: 0.65;
}
.secondaryBtn:disabled:hover {
  background-color: #9195A9;
  color: #FFF;
}

.acceptBtn {
  background-color: #59BB16;
  font-size: 14px;
  color: #FFF;
  border-radius: 2px;
  width: 100%;
  border: none;
  padding: 8px 0;
}
.acceptBtn:focus {
  background-color: #59BB16;
  color: #FFF;
}
.acceptBtn:hover {
  background-color: #E68E26;
  color: #FFF;
}
.acceptBtn:disabled {
  opacity: 0.65;
}
.acceptBtn:disabled:hover {
  background-color: #59BB16;
  color: #FFF;
}

.ui-autocomplete {
  font-size: 14px;
  color: #5C6076;
  background-color: #FFF;
  font-weight: normal !important;
}
.ui-autocomplete li {
  cursor: pointer;
  padding: 5px 10px;
  min-height: 1em;
  display: block;
  background-color: #FFF;
}
.ui-autocomplete .ui-menu-item .ui-corner-all {
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.ui-autocomplete .ui-state-focus {
  font-weight: normal !important;
  cursor: pointer;
  border-color: #FFF;
  background: #E68E26 !important;
  color: #FFF !important;
}

.datepicker td, .datepicker th {
  border-radius: 2px !important;
}
.datepicker table tr td span {
  height: 33px !important;
  line-height: 33px !important;
  border-radius: 2px !important;
}
.datepicker .today {
  color: #E06639 !important;
  background-color: #FFF !important;
  background-image: none !important;
  font-weight: bold !important;
}
.datepicker .active {
  color: #FFF !important;
  background-color: #E68E26 !important;
  background-image: none !important;
}

.stepMarkerPointer .new-select .new-select-content {
  right: 0;
}

.datebirthpicker input {
  max-width: 115px;
}

.accent-message-block {
  padding: 15px;
  background-color: #F1F1F5;
  color: #3D434B;
}

.heading1 {
  color: #E06639;
}

header > div {
  margin: 15px 0 9px;
}

/*Top Header Line*/
.userDataBar {
  background-color: #5C6076;
  padding-left: 35px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.userDataBar .btn {
  padding: 0;
}
.userDataBar .caret {
  margin-left: 10px;
}
.userDataBar h2 span {
  color: #FFF;
}
.userDataBar button,
.userDataBar button:hover,
.userDataBar button:focus,
.userDataBar .btn-default:active:hover,
.userDataBar .btn-default.active:hover,
.userDataBar .btn-default:visited {
  background: #5C6076;
  border: 0;
  color: #FFF;
}
.userDataBar button#dropdownMenu2 {
  outline: none;
}
.userDataBar .open > .dropdown-toggle.btn-default {
  background: #5C6076;
  border: 0;
  color: #FFF;
}
.userDataBar .dropdown-menu > li > a {
  color: #5C6076 !important;
}
.userDataBar .dropdown-menu > li > a:hover, .userDataBar .dropdown-menu > li > a:active, .userDataBar .dropdown-menu > li > a:focus {
  /*background-color: $top-bar-bg-color;
  */
  color: #E68E26 !important;
}

.userDataBarResetPassword {
  background-color: #5C6076;
  padding: 20.5px 0;
  color: #FFF;
}

/*Top Header Line*/
/*Left Navigation Menu*/
.verNavSec {
  float: left;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  min-height: 100vh;
}
.verNavSec ul li {
  list-style-type: none;
}
.verNavSec i {
  font-size: 14px;
}
.verNavSec a:focus, .verNavSec a:hover {
  text-decoration: none;
}

.collapseNav {
  float: left;
  display: none;
}
.collapseNav ul {
  width: 52px;
}
.collapseNav ul li {
  width: 30px;
  color: #FFF;
  background: #9195A9;
  height: 30px;
  border-radius: 50px;
  float: left;
  margin: 0 20%;
  margin-bottom: 15px;
  text-align: center;
  line-height: 30px;
}
.collapseNav .fa-lg {
  line-height: inherit;
  vertical-align: inherit;
}
.collapseNav a {
  color: #3D434B !important;
}

.expandNav {
  float: left;
}
.expandNav .fa-lg {
  margin-left: 0;
}
.expandNav h3 {
  cursor: pointer;
  font-size: 18px !important;
}
.expandNav h3 span {
  width: 30px;
  height: 30px;
  margin-right: 7px;
  color: #fff;
  border-radius: 50px;
  background: #9195A9;
  display: inline-block;
  text-align: center;
  margin-left: -2px;
}
.expandNav h3 span > i {
  font-size: 14px;
}
.expandNav h3 span.new {
  background-color: #E06639;
  color: #fff;
}
.expandNav h3.addGrayCol, .expandNav h3.addRedCol {
  padding: 0 10px 15px;
  cursor: pointer;
  line-height: 29px;
  color: #000000;
}
.expandNav h3.addGrayCol .fa-lg, .expandNav h3.addRedCol .fa-lg {
  line-height: inherit;
  vertical-align: inherit;
}
.expandNav h3.addRedCol {
  color: #E06639;
  font-weight: bold;
}
.expandNav h3 + ul {
  margin: 0 15px 8px 0;
}
.expandNav h3 + ul li:first-child h4 {
  padding-top: 0;
}
.expandNav h4 {
  margin: 0;
  padding: 12px 0 12px 11px;
  font-size: 16px !important;
  cursor: pointer;
}
.expandNav h4 span {
  position: relative;
  padding-left: 35px;
  display: block;
}
.expandNav h4 i.arrowDown, .expandNav h4 i.arrowRight {
  /*font-size: 20px;
  */
  width: 0.4em;
  height: 0.4em;
  border-right: 2px solid #2d2d2d;
  border-top: 2px solid #2d2d2d;
  transform: rotate(135deg);
  display: inline-block;
  font-style: normal;
  position: absolute;
  left: 8px;
  top: 3px;
}
.expandNav h4 i.arrowRight {
  transform: rotate(45deg);
}
.expandNav h4 + ul {
  margin-left: 48px;
  list-style: none;
}
.expandNav h5 {
  font-size: 14px !important;
  padding: 10px 0;
  color: #2d2d2d;
}
.expandNav h6 {
  font-size: 12px !important;
  padding: 10px 0;
}
.expandNav h6 i {
  font-size: 6px;
  margin-right: 6px;
}
.expandNav a {
  color: #3D434B !important;
}
.expandNav .activeH5, .expandNav .activeH6 {
  color: #F24400 !important;
}

#expNavCon {
  overflow: hidden;
}

#expNavCon span i, #colNavCon span i {
  color: #b5b0ac;
  /*font-size: 1.2em !important
  */
}

#colNavCon, .pageContentSec {
  overflow: hidden;
}

.navCollapse {
  cursor: pointer;
  margin-right: 5px;
}

/*Left Navigation Menu*/
/*Footer*/
footer {
  margin: 45px 0 15px;
  font-size: 10px;
}
footer ul {
  margin-bottom: 13px;
  list-style: none;
}
footer ul li {
  color: #069;
  text-align: center;
  display: inline-block;
  margin-right: 30px;
  /*font-size: 12px;
  */
}
footer ul li:last-child {
  margin-right: 0;
}
footer > div {
  color: #615a54;
  /*font-size: 10px;
  */
}
footer a {
  font-size: 12px;
  text-decoration: underline;
}

/*Footer*/
/*Accordion*/
.accordianHeading {
  font-size: 16px;
  background-color: #D8D8E5 !important;
  color: #3D434B;
  border-radius: 0;
  cursor: pointer;
}
.accordianHeading a {
  color: #3D434B;
  font-size: inherit;
}
.accordianHeading a:hover, .accordianHeading a:active {
  color: #3D434B;
}

.nestedAccordion .panel-group {
  margin-bottom: 0;
}
.nestedAccordion .panel-group .panel {
  background-color: transparent;
  border-radius: 0;
}
.nestedAccordion .panel-group .panel-heading {
  padding: 0;
}
.nestedAccordion .panel-group .panel-heading a {
  display: block;
  padding: 7px 10px;
  text-decoration: none;
  position: relative;
}
.nestedAccordion .panel-group .panel-heading a:after {
  content: url("../images/downArrow.png");
  position: absolute;
  right: 10px;
  top: 5px;
  /*font-size: 15px;
  */
}
.nestedAccordion .panel-group .panel-heading a.collapsed {
  color: inherit;
}
.nestedAccordion .panel-group .panel-heading a.collapsed:after {
  content: url("../images/rightArrow.png");
}

.secondaryPannel {
  background-color: #D8D8E5;
}
.secondaryPannel a {
  color: #3D434B;
}
.secondaryPannel a:hover, .secondaryPannel a:active {
  color: #3D434B;
}
.secondaryPannel .redtext {
  color: #F24400;
}

.pagenationBg {
  background-color: #D8D8E5;
  border-radius: 0;
}

/*Accordion*/
/*Decorators*/
.container-align-center {
  display: flex;
  align-items: center;
}

.text-small {
  font-size: 12px !important;
}

.text-medium {
  font-size: 14px !important;
}

.text-large {
  font-size: 16px !important;
}

.color-approve {
  color: #59BB16 !important;
}

.color-decline {
  color: #C81C1C !important;
}

.color-conditional {
  color: #FFC250 !important;
}

.color-gray {
  color: #9195A9 !important;
}

.color-error {
  color: red;
}

.color-primary {
  color: #E06639 !important;
}

.color-primary-light {
  color: #E68E26 !important;
}

.color-secondary {
  color: #9195A9 !important;
}

.disBlock {
  display: block !important;
}

.disNone {
  display: none !important;
}

.semibold {
  font-weight: 600 !important;
}

.rotatetext {
  /* FF3.5+ */
  -moz-transform: rotate(-50deg);
  /* Opera 10.5 */
  -o-transform: rotate(-50deg);
  /* Saf3.1+, Chrome */
  -webkit-transform: rotate(-50deg);
  /* Standard */
  transform: rotate(-50deg);
}

.activeH5, .activeH6 {
  color: #F24400;
  font-weight: bold;
  text-decoration: none;
}

.activeH6 {
  color: #003346;
}

.fontsize12px {
  /*font-size: 12px
  */
}

.fontsize16px {
  /*font-size: 16px;
  */
}

.fontsize26px {
  /*font-size: 26px
  */
}

.mg30px {
  margin: 30px;
}

.marginBtm0 {
  margin-bottom: 0;
}

.mgTop4px {
  margin-top: 4px;
}

.mgTop5px {
  margin-top: 5px;
}

.mgTop13px {
  margin-top: 13px;
}

.mgRt10px {
  margin-right: 10px;
}

.mgBtm1Percent {
  margin-bottom: 1%;
}

.mgBtm12px {
  margin-bottom: 12px;
}

.mgBtm14px {
  margin-bottom: 14px;
}

.mgBtm16px {
  margin-bottom: 16px;
}

.mgBtm17px {
  margin-bottom: 17px;
}

.mgBtm20px {
  margin-bottom: 20px;
}

.mgBtm25px {
  margin-bottom: 25px;
}

.mgBtm29px {
  margin-bottom: 29px;
}

.marginTop7 {
  margin-top: 7px;
}

.marginTop10 {
  margin-top: 10px;
}

.marginTop15 {
  margin-top: 15px;
}

.marginTop20 {
  margin-top: 20px;
}

.marginTop23 {
  margin-top: 23px;
}

.marginTop25 {
  margin-top: 25px;
}

.marginTop30 {
  margin-top: 30px;
}

.marginTop35 {
  margin-top: 35px;
}

.marginTop40 {
  margin-top: 40px;
}

.marginTop60 {
  margin-top: 60px;
}

.marginTop100 {
  margin-top: 100px;
}

.mgBtm50px {
  margin-bottom: 50px;
}

.marginRt10 {
  margin-right: 10px;
}

.marginRt20 {
  margin-right: 20px;
}

.marginRt30 {
  margin-right: 30px;
}

.mgLt8px {
  margin-left: 8px;
}

.mgLt10px {
  margin-left: 10px;
}

.mgLt60px {
  margin-left: 60px;
}

.mgBtm5px {
  margin-bottom: 5px;
}

.mgRt5px {
  margin-right: 5px;
}

.mgBtm7px {
  margin-bottom: 7px;
}

.marginleft5 {
  margin-left: 5px;
}

.marginleft15 {
  margin-left: 15px;
}

.marginleft20 {
  margin-left: 20px;
}

.marginleft30 {
  margin-left: 30px;
}

.mgBtm47px {
  margin-bottom: 47px;
}

.padTb7Lr10px {
  padding: 7px 10px;
}

.padLeft22 {
  padding-left: 22px;
}

.noBold {
  font-weight: normal;
}

.libBoxHeightAuto ul {
  height: auto;
}

.padding0 {
  padding: 0;
}

.padding10 {
  padding: 10px;
}

.paddingTop20 {
  padding-top: 20px;
}

.paddingRight20 {
  padding-right: 20px;
}

.paddingRight0 {
  padding-right: 0;
}

.paddingLeft20 {
  padding-left: 20px;
}

.paddingRight10 {
  padding-right: 10px;
}

.width150 {
  width: 150px;
}

/*Decorators*/
.subtextlogo {
  font-size: 26px;
  color: #6e6259;
  margin-top: 12px;
  padding-right: 0px;
  display: none;
}

.subtextlogo > sup {
  /*font-size: 12px
  */
}

.flagbox {
  display: block;
  padding: 23px 0 0;
  /*font-size: 12px;
  */
  vertical-align: bottom;
  color: #660000;
}

.pageContentSec {
  /*font-size: 12px;
  */
  color: #2d2d2d;
}

/*Header, footer and Vertical menu End*/
#menu {
  width: 230px;
  margin-left: 2px;
}

.sapLogo {
  width: 200px;
}

/*Property circle*/
.dropdown_user {
  border: none;
  background: none;
  color: #fff;
}

/*Message Board Start*/
.dropdown_user:hover {
  border: none;
  background: none;
  color: #fff;
}

.open > .dropdown-toggle.dropdown_user:hover, .open > .dropdown-toggle.dropdown_user:focus, .dropdown_user:active.focus {
  border: none;
  background: none;
  color: #fff;
}

/*Message Board End*/
.accordianHeading {
  font-size: 16px;
}

h3, .fontsize14px {
  /*font-size: 14px
  */
}

h4, .formHeader {
  /*font-size: 13px
  */
}

.webConGroup h2 {
  margin-bottom: 18px;
}

.webConGroup h3 {
  margin-bottom: 16px;
}

.webConGroup h4 {
  margin-bottom: 15px;
  /*font-size: 13px
  */
}

.webConGroup hr {
  margin: 18px 0 16px;
  border-color: #d3d0ca;
}

.webConGroup .btn span {
  margin-right: 25px;
  margin-left: 25px;
}

.webConGroup ul.forms {
  margin-left: 16px;
  margin-bottom: 50px;
}

.webConGroup ul.updates {
  list-style-position: inside;
}

.webConGroup ul.forms li {
  margin-bottom: 5px;
}

.webConGroup ul.updates li {
  margin-bottom: 10px;
}

.webConGroup .border-top {
  border-top: 1px solid #d3d0ca;
}

.webConGroup .border-left {
  border-left: 1px solid #d3d0ca;
}

.webConGroup #divMessageArea a {
  /*color: #066ca4;
  */
  text-decoration: underline;
}

hr {
  margin: 10px 0px;
  border-color: #d3d0ca;
}

.conHead h3 {
  font-weight: 500;
}

.conHead hr {
  margin: 5px 0 20px;
}

.no-break {
  page-break-inside: avoid;
}

.mg0px, .customPackage .btn.removeMg {
  margin: 0;
}

#divPrint {
  width: 840px;
}

@media print {
  #divPrint {
    width: 900px;
  }
  #divPrint.PrintAll {
    width: calc(100% - 20px);
    padding-left: 10px;
    padding-right: 10px;
    margin: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    background: transparent;
    box-sizing: border-box;
  }
  .lease-recommendation {
    -webkit-print-color-adjust: exact !important;
  }
}
.resetSearchBtn, .manageFieldInput {
  width: 100%;
}

.grayBorBottom {
  border-bottom: 1px solid #b2b2b2;
}

.modelBoxBorSty {
  margin: 10px;
  border: 1px solid #d3d0ca;
  padding: 20px;
}

#onlineOrderSummary span.glyphicon {
  /*font-size: 10px;
  */
  margin-left: 10px;
}

.buttonSpace a {
  margin-right: 48px;
}

/*Model box*/
.modal-dialog {
  margin: 10% auto;
  width: 600px;
}

.alert div, .dispInBlock {
  display: inline-block;
}

.alert .image-success {
  width: 70px;
  height: 72px;
  vertical-align: top;
}

.alert .tick img {
  width: 100%;
  height: 70px;
}

.alert .popUp-content {
  /*font-size: 12px;
  */
  padding: 0;
  padding-left: 15px;
  margin-top: 11px;
}

.alert {
  padding: 0;
  margin: 0;
  /*font-size: 0;
  */
  border-radius: 0px;
}

.alert-info, .alert-success, .alert-danger {
  color: #2D2D2D;
}

.alert-danger {
  background-color: #DB5753;
}

.alert-success {
  background-color: #7eb53e;
  border: 1px solid #004c45;
}

.alert-success .tick {
  background-color: #669934;
}

.alert-info {
  background-color: #9ED5FF;
}

.modal-header {
  padding: 0px;
  border: none;
}

.modal-footer {
  text-align: center;
  border: none;
}

.closea {
  float: right;
  /*font-size: 21px;
  */
  font-weight: bold;
  line-height: 1;
  color: #fff;
  opacity: 1;
}

.rentalAgreement {
  height: 600px;
  border-radius: 0px;
}

.rentalAgreement h2 {
  /*font-size: 26px;
  */
  margin: 20px 0 0 20px;
}

.rentalAgreement h3 {
  /*font-size: 16px;
  */
  margin: 20px 0;
}

.rentalAgreement p {
  /*font-size: 12px;
  */
  /*line-height: 18px;
  */
}

button.closea {
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.popUp-content .text {
  display: block;
}

.glyphiconModifi {
  /*font-size: 30px !important;
  */
  color: #FFFFFF;
  padding: 18px;
}

.glyphiconModifiForAS400Header {
  /*font-size: 19px;
  */
  color: red;
  font-weight: bold;
}

.glyphiconModifiForAS400Headertext {
  /*font-size: 15px;
  */
  color: red;
  font-weight: bold;
  padding-left: 6px;
}

.modal-header h3 {
  /*font-size: 20px;
  */
  padding: 13px;
}

.modal-body {
  padding: 0px;
}

.modal-body .popupbox {
  height: 451px;
  margin: 9px;
  border: 1px solid #d3d0ca;
  padding: 18px;
  overflow: auto;
}

.myModalRentale {
  margin: 2% auto;
  width: 711px;
}

.myModalRentale h1 {
  margin-left: 20px;
}

.modal-body .first, .textCenter {
  text-align: center;
}

.modal-body h2 {
  /*font-size: 16px;
  */
  color: #2D2D2D;
  text-align: center;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 5px;
}

.dropdownCustm {
  background: none;
  box-shadow: none;
  border: none;
  padding-left: 0px;
}

.dropdownCustm :hover {
  background: none;
  box-shadow: none;
  border: none;
}

/*
.btnactive {
    background-color: #076ca4;
    color: #fff;
    border-radius: 0px;
}

.btnactive:hover {
    background-color: #10253f;
    color: #fff;
}

.btnactive:focus {
    color: #fff;
}
*/
.borderNone {
  border-radius: 0px;
}

/******************** Custom Package popup ************/
.myModalcustom {
  margin-top: 2%;
  width: 400px;
}

.customPackage {
  border-radius: 0px;
  width: 400px;
}

.customPackagebox {
  margin: 9px;
  border: 1px solid #d3d0ca;
  padding: 20px;
}

.customPackage h2 {
  /*font-size: 20px;
  */
  color: #2d2d2d;
  margin: 15px 0px 20px 18px;
}

.customPackage h4 {
  /*font-size: 13px;
  */
  margin-bottom: 15px;
}

.customPackage .btn {
  border-radius: 0px;
  width: 100%;
  margin-bottom: 20px;
}

/*.customPackage .arch {
    color: #066ca4;
    display: block;
    font-size: 12px;
    font-weight: normal;
    text-align: center;
    width: 100%;
}*/
.customPackage input {
  border-radius: 0px;
  margin-bottom: 20px;
}

.customPackagebox .removeHeight {
  height: auto;
}

/******************** Accordion  style strats ************/
.costmPannel .panel-title {
  padding: 7px 13px;
}

.costmPannel .panel-heading {
  background-color: #ebebeb;
  border-radius: 0;
}

.costmPannel .panel-default {
  border-radius: 0;
}

.costmPannel .glyphicon {
  /*font-size: 11px;
  */
  margin-top: 3px;
}

.costmPannel .panel-body .row {
  padding: 2px 0px;
}

.costmPannel a:hover, .costmPannel a:focus {
  text-decoration: none;
}

.UserPropertyPad, .userPermissionsPad, .userInformationPad {
  padding: 20px 20px 10px 20px;
}

.panel-group .panel + .panel {
  margin-top: 10px;
}

.costmPannel .leftSec {
  display: inline-block;
  width: 13%;
  /*font-size: 12px;
  */
}

.costmPannel .rightSec {
  margin-left: 5%;
  display: inline-block;
  width: 75%;
  /*font-size: 12px;
  */
}

.costmPannel .fontZero {
  /*font-size: 0
  */
}

.costmPannel .accordionHeader {
  display: block;
}

.accordionHeader .leftSec, .accordionHeader .rightSec {
  /*font-size: 13px;
  */
}

/******************** Accordion  style ends ************/
.redStar {
  color: red;
}

.userPermissions .checkbox {
  margin-top: 8px;
  margin-bottom: 0px;
}

.firstColAlignCen tfoot tr td:first-child, .firstColAlignCen tbody tr td:first-child {
  padding-left: 15px;
}

.textRight {
  text-align: right;
}

.userMangement {
  /*font-size: 12px;
  */
}

.userMangement ol {
  padding-left: 20px;
}

.userMangement ol li {
  margin-bottom: 10px;
}

.userMangement .resetUserName {
  float: left;
  width: 50%;
  text-align: right;
  font-weight: bold;
}

.userMangement .resetUserVal {
  float: left;
  width: 48%;
  margin-left: 2%;
}

/*****Calendar START*****/
.calendarCustIcon .input-group-addon {
  border: none;
  background-color: #fff;
  padding: 0;
}

.input-group-addon img {
  margin-left: 5px;
}

/*****Calendar END*****/
.scrollForDropdown {
  overflow-y: auto;
  min-height: 37px;
  max-height: 138px;
}

.date input {
  width: 82%;
}

.datepicker {
  min-width: 25%;
}

.inputPointTextbox {
  position: absolute;
  opacity: 0;
  top: 2;
  left: 0;
  width: inherit;
  text-indent: -9000px;
}

@media (min-width: 1024px) {
  #menu {
    width: 230px;
  }
  .propertyCir .proLine {
    width: 235px;
  }
  .propertyCirCon .proCirConSec {
    margin: 0px 40px 0px 98px;
    width: 220px;
  }
}
@media (min-width: 1280px) {
  .pageContent {
    padding-right: 15px;
    padding-left: 15px;
  }
  #menu {
    width: 230px;
  }
  .propertyCir .proLine {
    width: 345px;
  }
  .propertyCirCon .proCirConSec {
    margin: 0 150px 0 210px;
    width: 220px;
  }
  .datepicker {
    min-width: 270px;
  }
  .date input {
    width: 86%;
  }
}
@media (min-width: 980px) and (max-width: 1200px) {
  .unitAddressList ul li > div:nth-child(1) {
    width: 7%;
  }
  .unitAddressList ul li > div:nth-child(2) {
    width: 17%;
  }
  .unitAddressList ul li > div:nth-child(3) {
    width: 15%;
  }
  .unitAddressList ul li > div:nth-child(4) {
    width: 16%;
  }
  .unitAddressList ul li > div:nth-child(5) {
    width: 34%;
    text-align: right;
  }
  .unitAddressList ul li > div:nth-child(6) {
    width: 9%;
    text-align: right;
  }
  .unitAddressList ul li {
    /*font-size: 11px;
    */
  }
  .unitAddressList select {
    /*font-size: 11px;
    */
  }
}
@media all and (max-width: 980px) {
  .alertMessage {
    margin: 45% auto;
    width: 600px;
  }
  .unitAddressList ul li > div:nth-child(1) {
    width: 7%;
  }
  .unitAddressList ul li > div:nth-child(2) {
    width: 17%;
  }
  .unitAddressList ul li > div:nth-child(3) {
    width: 15%;
  }
  .unitAddressList ul li > div:nth-child(4) {
    width: 16%;
  }
  .unitAddressList ul li > div:nth-child(5) {
    width: 34%;
    text-align: right;
  }
  .unitAddressList ul li > div:nth-child(6) {
    width: 9%;
    text-align: right;
  }
  .unitAddressList ul li {
    /*font-size: 11px;
    */
  }
  .unitAddressList select {
    /*font-size: 11px;
    */
  }
}
.alert-denger {
  background-color: #ED6868;
  border: 1px solid #A11010;
}

.alert-denger .tick {
  background-color: #DB2727;
}

.test > ul {
  display: block;
}

.createScreenApp:first-child .deleteBtn, .addCriminalSrc, .createScreenApp:first-child .socialScreeningSrc, .createScreenApp:first-child .canadianAppTyle {
  display: none;
}

.createScreenApp:first-child .addCriminalSrc, .createScreenApp:first-child .addCriminalSrc {
  display: block;
}

/*Search field*/
/*Popup text background color*/
div.alert .popUp-content div {
  color: #fff;
}

div.alert .popUp-content div strong, div.alert .popUp-content div.semibold {
  font-weight: normal !important;
}

.headerBlueColor {
  /*color: #076ca4
  */
}

.headerBlackColor {
  color: #333;
}

/*Screen Applicant List style*/
.list-unstyled {
  /*font-size: 12px
  */
}

.list-unstyled .subMenuList {
  margin-left: 38px;
}

.list-unstyled .subMenuList li {
  list-style-type: disc;
}

/*Equal width for Dropdown button with input textbox, when click the dropdown*/
.dropdownIDs, .dropdownFP {
  display: inline-block;
}

.dropdownIDs input, .dropdownFP input {
  width: 100%;
  top: 0;
  padding: 0;
  cursor: pointer;
}

/* new alert popup */
.popuptables {
  width: 100%;
  height: 100%;
}

.popuptables .tr {
  display: table-row;
}

.popuptables .td {
  display: table-cell;
  vertical-align: top;
  /*font-size: 12px;
  */
  color: #fff;
}

.popuptables strong {
  font-weight: normal !important;
}

.popuptables .paddingLTTp {
  padding: 12px 15px;
}

/* Scroll Table Start*/
.fixed_headers {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.fixed_headers thead tr, .fixed_headers tfoot tr {
  display: block;
  position: relative;
}

.fixed_headers td:nth-child(1), .fixed_headers th:nth-child(1) {
  min-width: 100px;
}

.fixed_headers th, .fixed_headers td {
  padding: 8px;
  text-align: left;
}

.fixed_headers td:nth-child(2), .fixed_headers th:nth-child(2) {
  width: 750px;
}

.fixed_headers td:nth-child(3), .fixed_headers th:nth-child(3) {
  width: 200px;
}

.fixed_headers tbody {
  display: block;
  overflow: auto;
  width: 100%;
  min-height: 40px;
  max-height: 296px;
}

.fixed_headers > tbody > tr > td {
  padding: 10px 8px;
}

.fixed_headers > tbody > tr > th, .fixed_headers > tfoot > tr > th, .fixed_headers > thead > tr > td, .fixed_headers > tbody > tr > td, .fixed_headers > tfoot > tr > td {
  border-top: none;
  border-bottom: 1px solid rgb(221, 221, 221);
}

/* Scroll Table End*/
.dropdownValue {
  /*color: #076ca4
  */
}

table.customTableStyle thead th .glyphicon {
  margin: 0;
}

.srcApplicantOption .datebirthpicker {
  display: inline-block;
}

.pagenationFilter, .noBorTableResponsive {
  border: 0;
  background-color: rgba(0, 0, 0, 0);
}

/* Login Start*/
.loginbg {
  background-color: #ebebeb;
}

.loginContainer {
  width: 402px;
  border: 10px solid #c0c0c0;
  margin: 10% auto 0;
  background-color: #fff;
  padding: 25px;
}

.loginHeader {
  /*font-size: 30px
  */
}

.loginContainer label {
  /*font-size: 13px;
  */
}

.loginBtn, .loginBtn:focus {
  width: 100%;
  text-align: center;
  border: none;
  border-radius: 0;
  background-color: #004080;
  /*font-size: 12px;
  */
  color: #fff;
  padding: 8px 0;
}

.loginBtn:hover {
  background-color: #10253f;
  color: #fff;
}

/* Login End*/
.customTableStyle > thead > tr > th.text-center {
  text-align: center;
}

table.customTableStyle > tfoot > tr > td {
  height: 34px;
}

.bgGrayforHeading h2 {
  background-color: #ededed;
  padding: 10px;
}

ul.bulletColorCha, ul.bulletColorCha > li > ul {
  list-style-type: none;
}

ul.bulletColorCha > li, ul.bulletColorCha > li > ul {
  padding-left: 1em;
  text-indent: -0.7em;
}

ul.bulletColorCha > li:before, ul.bulletColorCha > li > ul > li:before {
  content: "• ";
  /*color: #076ca4;
      font-size: 22px;
  */
  position: relative;
  top: 3px;
}

ul.bulletColorCha > li > ul > li:before {
  content: "‐ ";
}

.headerBgWithBor {
  border: 1px solid #ddd;
  background: #ebebeb;
  padding: 10px;
  /*font-size: 14px
  */
}

.headerBg {
  border: 0;
  background: #ebebeb;
  padding: 10px;
  /*font-size: 14px
  */
}

.singlelinedata th, .singlelinedata td {
  white-space: nowrap;
}

.threeSideBor {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 15px;
}

select[multiple].form-control {
  border-radius: 0px;
}

.leaseDecisionDisclaimer .customPackagebox {
  /*font-size: 12px;
  */
  /*line-height: 20px;
  */
  padding: 15px;
}

.leaseInfoTable tr td {
  padding-top: 15px;
}

.secondaryBtn.leaseDelButton {
  width: auto;
  padding: 8px 20px;
  float: right;
}

.vAlign {
  vertical-align: top;
}

/********Dropdown menu drop icon bg issue for IE START*******/
select::-ms-expand {
  display: none;
}

.form-horizontal .control-label {
  text-align: left;
}

/********Dropdown menu drop icon bg issue for IE END*******/
.copyrightText {
  color: #615a54;
  padding: 5px 0 10px;
  text-align: center;
  /*font-size: 11px
  */
}

/*Added in login.html */
.login-custom-navbar {
  background-color: #003346;
  border: 0px solid;
  border-radius: 0px;
}

.login-custom-nav {
  display: table;
}

.login-custom-nav > li {
  width: auto;
}

.login-custom-nav > li > a {
  border-radius: 0px;
  padding: 14px 15px;
  color: #FFFFFF;
}

.login-custom-nav > li > a:hover {
  color: #003346;
}

.login-custom-nav > li > a:active, .login-custom-nav > li > a:focus {
  color: #fff;
  background-color: #337ab7;
}

.login-custom-navbar-collapse {
  padding-left: 0px;
  padding-right: 0px;
}

.img-container {
  height: 268px;
  background: url("../images/Banner_Image1.png") no-repeat;
  background-size: cover;
}

.creditReporting {
  /*font-size: 11px;
  */
  display: inline-block;
}

.houstonApartmentImg {
  vertical-align: top;
}

.bannerImg {
  background: url("../images/Banner_Image_2.png") no-repeat;
  width: 100%;
  border-radius: 0 !important;
  margin-bottom: 10px;
  background-size: cover;
  height: 310px;
}

.bannerImg p {
  /*font-size: 1.625em
  */
}

.bannerImg ul {
  list-style-type: none;
}

.box-shadow {
  box-shadow: 75px 10px 34px -67px #efefef;
}

.certifiedLogo {
  margin-top: 111px;
}

.font-size-15 {
  /*font-size: 15px
  */
}

.webConGroup .bannerImg {
  border-bottom: #d4cfcb 1px solid;
  padding: 10px;
  height: auto;
}

.updatedLogin .container {
  background: transparent;
}

.loginPageBackground {
  background: #eeeeee;
}

.whiteBackground {
  background: #FFFFFF;
}

.padding3Percent {
  padding: 3%;
}

.padding1Percent {
  padding: 1%;
}

.houstonImg {
  background: url("../../images/Login_banner_Image.png") no-repeat;
  width: 100%;
  border-radius: 0 !important;
  margin-bottom: 10px;
  background-size: cover;
  height: 285px;
  border: #0d4978 1px solid;
}

.tierRedirectionsImg {
  background: url("../../images/TierRedirection_banner_Image.png") no-repeat;
  width: 100%;
  height: 750px;
  border-radius: 0 !important;
  background-size: 100%;
}

.tierRedirectionsText {
  color: #009999;
}

#houstonApartmentImg .jumbotron {
  padding: 10px;
}

#houstonApartmentImg a {
  text-decoration: none;
}

.whiteBorder {
  border: #FFFFFF 1px solid;
}

.grayColor {
  border: #ccc 1px solid;
}

.clearBoth {
  clear: both;
}

.paddingLeft0 {
  padding-left: 0;
}

.updatedLogin footer {
  margin: 15px 0 15px;
}

.btnBorder {
  border: 1px solid #c8c8c8;
}

.pageContentSelectproperty {
  /*font-size: 12px;
  */
  /*line-height: 18px;
  */
  color: #2d2d2d;
}

.flageText {
  text-decoration: none;
  color: #000 !important;
}

.flageText:hover {
  text-decoration: underline;
  background: none;
}

@media (min-width: 960px) {
  .login-custom-nav > li > a {
    border-radius: 0px;
    padding: 14px 13px;
    color: #FFFFFF;
  }
  .login-custom-nav > li {
    width: auto;
    display: table-cell;
  }
  .login-custom-nav > li > a {
    margin-bottom: 0;
  }
  .login-form-haa .noBold {
    /*font-size: 15px
    */
  }
  .login-form-haa .forgotPassword {
    /*font-size: 14px
    */
  }
}
.fileUpload {
  position: relative;
  overflow: hidden;
}

.fileUpload input.upload {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  /*font-size: 20px;
  */
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}

.loginContactBor {
  border-left: 1px solid #e7e7e7;
  padding-left: 34px;
}

.pageContentSec > div.container > div.row > div:first-child, .setFooterPosition {
  min-height: 370px;
}

.mousecursor {
  cursor: pointer;
}

.iconHighlightCol {
  color: #b20a3b;
}

.forArrowAlign {
  width: 120px;
  display: inline-block;
}

.customPackage .removeBtmMrg {
  margin: 0;
}

.PopUpContentBorder {
  border: 1px solid red;
}

.UnderLine {
  text-decoration: underline;
}

.main-color {
  color: #2D2D2D;
}

.main-sub-color {
  color: #EC7E31;
}

.community-decision-message {
  font-weight: bold;
}

/*Custom Select DropDown*/
select.customSelectDropdown {
  -moz-appearance: none;
  -webkit-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  background: transparent url("../../images/fill_arrownew_high_resolution.png") no-repeat top right;
  border: 0;
  background-size: 20px;
  padding-bottom: 1px;
  padding-right: 20px;
  display: block;
  width: 100%;
  height: 22px;
}

.new-select-wrapper {
  display: inline;
}

.new-select-wrapper select {
  display: none !important;
}

.new-select {
  position: relative;
  display: block;
  width: 100%;
}

.new-select.disabled {
  opacity: 0.65;
}

.new-select .new-select-button {
  white-space: nowrap;
  cursor: pointer;
  padding-right: 22px;
}

.new-select.disabled .new-select-button {
  cursor: unset;
}

.new-select .new-select-label.unselected {
  color: inherit;
  font-weight: inherit;
}

.new-select .new-select-label {
  min-height: 1em;
  display: inline-block;
  overflow: hidden;
  width: 100%;
  vertical-align: bottom;
}

.new-select .new-select-button::after {
  content: "";
  float: right;
  display: inline-block;
  /*font-size: 12px;
  */
  color: #E68E26;
  width: 22px;
  height: 22px;
  background: transparent url(../../images/fill_arrownew_high_resolution.png) no-repeat top right;
  background-size: 20px;
  right: 0;
  position: absolute;
}

.new-select .new-select-content {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 8;
  min-width: 100%;
  max-height: 50vh;
  overflow-y: auto;
  /*font-size: 12px;
  */
  white-space: nowrap;
  border-radius: 5px;
  border: 1px solid #D8D8E5;
}

.new-select .new-select-content.new-select-show {
  display: block !important;
}

.new-select .new-select-multiple {
  display: inline-block;
  background-color: #fff;
  width: 100%;
  height: 360px;
  overflow-y: auto;
  /*font-size: 12px;
  */
  border-radius: 2px;
  border: 1px solid #D8D8E5;
}

.new-select .new-select-content div:hover,
.new-select .new-select-multiple div:hover {
  background-color: #f1f1f1;
}

.new-select .new-select-content ul,
.new-select .new-select-multiple ul,
.new-select .new-select-content table,
.new-select .new-select-multiple table {
  width: 100%;
  font-size: 14px;
  color: #5C6076;
}

.new-select .new-select-content ul li,
.new-select .new-select-multiple ul li,
.new-select .new-select-content table tr,
.new-select .new-select-multiple table tr {
  padding: 0;
  margin: 0;
  min-height: 1em;
}

.new-select .new-select-content ul li span,
.new-select .new-select-multiple ul li span {
  cursor: pointer;
  padding: 5px 10px;
  display: block;
}

.new-select.disabled .new-select-content ul li span,
.new-select.disabled .new-select-multiple ul li span {
  cursor: unset;
}

.new-select .new-select-content table tr td,
.new-select .new-select-multiple table tr td {
  padding: 5px 10px;
}

.new-select .new-select-content ul li:hover,
.new-select .new-select-multiple ul li.select,
.new-select .new-select-content table tr:hover,
.new-select .new-select-multiple table tr.select {
  cursor: pointer;
  background-color: #E68E26;
  color: #FFF;
}

.new-select.disabled .new-select-content ul li:hover,
.new-select.disabled .new-select-content table tr:hover {
  cursor: unset;
  background-color: inherit;
  color: inherit;
}

.individual-score {
  padding: 0;
  width: 230px;
}

.individual-score .new-select-label {
  font-weight: bold;
  color: #E06639;
}

.individual-score .new-select table tr td:last-child {
  border-left: 1px solid #D8D8E5;
}

.score-legend-group {
  list-style: none;
}

.score-legend-group li {
  padding: 5px 0 6px;
  font-size: 12px;
  line-height: 14px;
}

@keyframes pulse-opacity {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.2;
  }
}
.loader-container {
  position: relative;
}

.loader-container.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
  z-index: 9;
  animation: pulse-opacity 3s ease-in-out infinite;
}

.selectize-control.srs-custom-dropdown .selectize-input.items {
  min-width: 100px;
  width: 100%;
  border: none !important;
  background-color: transparent;
  padding-right: 20px !important;
}
.selectize-control.srs-custom-dropdown .selectize-input.items.dropdown-active {
  background-color: transparent;
}
.selectize-control.srs-custom-dropdown .selectize-input.items .item {
  width: calc(100% - 4px);
  overflow-x: clip;
}
.selectize-control.srs-custom-dropdown.single .selectize-input:after {
  content: "" !important;
  float: right !important;
  display: inline-block !important;
  color: #E68E26 !important;
  width: 22px !important;
  height: 22px !important;
  background: transparent url(../../images/fill_arrownew_high_resolution.png) no-repeat top right !important;
  background-size: 20px !important;
  top: 10px !important;
  right: 0 !important;
  border: none;
  position: absolute !important;
  border-color: transparent !important;
}
.selectize-control.srs-custom-dropdown .selectize-dropdown.stepMarkerPointer {
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  background: #fff !important;
}
.selectize-control.srs-custom-dropdown .selectize-dropdown-content .option {
  min-height: 26px;
}

.selectize-control.srs-custom-dropdown.srs-custom-dropdown-filter .selectize-input.items {
  min-width: 100px;
  width: 100%;
  border: 1px solid #D8D8E5 !important;
  border-radius: 2px;
  background-color: #fff;
  font-size: 14px;
  padding: 6px 25px 0px 5px !important;
  outline: none;
}
.selectize-control.srs-custom-dropdown.srs-custom-dropdown-filter .selectize-input.items:focus, .selectize-control.srs-custom-dropdown.srs-custom-dropdown-filter .selectize-input.items.focus, .selectize-control.srs-custom-dropdown.srs-custom-dropdown-filter .selectize-input.items.dropdown-active {
  border: 1px solid #E68E26;
  outline: none;
  background-color: #fff;
}
.selectize-control.srs-custom-dropdown.srs-custom-dropdown-filter .selectize-input.items .item {
  width: calc(100% - 4px);
  overflow-x: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.selectize-control.srs-custom-dropdown.srs-custom-dropdown-filter.single .selectize-input:after {
  content: "" !important;
  float: right !important;
  display: inline-block !important;
  width: 0 !important;
  height: 0 !important;
  margin-left: 2px !important;
  vertical-align: middle !important;
  border-top: 4px dashed !important;
  border-top: 4px solid \9  !important;
  border-right: 4px solid transparent !important;
  border-left: 4px solid transparent !important;
  position: absolute !important;
  top: 50% !important;
  right: 10px !important;
  margin-top: -2px !important;
  color: #333 !important;
  background: none !important;
}
.selectize-control.srs-custom-dropdown.srs-custom-dropdown-filter .selectize-dropdown {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
}
.selectize-control.srs-custom-dropdown.srs-custom-dropdown-filter .selectize-dropdown.stepMarkerPointer {
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  background: #fff !important;
}
.selectize-control.srs-custom-dropdown.srs-custom-dropdown-filter .selectize-dropdown-content .option {
  min-height: 26px;
  padding: 3px 12px;
}
.selectize-control.srs-custom-dropdown.srs-custom-dropdown-filter .selectize-dropdown-content .option:hover, .selectize-control.srs-custom-dropdown.srs-custom-dropdown-filter .selectize-dropdown-content .option.active {
  color: #fff;
  text-decoration: none;
  background-color: #E68E26;
}

.srsDropDownList {
  border: 1px solid #D8D8E5;
  outline: none;
  font-size: 14px;
  border-radius: 2px;
  padding: 7px 10px;
}
.srsDropDownList:focus {
  border: 1px solid #E68E26;
}
.srsDropDownList .btn {
  padding: 0;
  color: #5C6076 !important;
  background-color: transparent;
}
.srsDropDownList .caret {
  margin-left: 10px;
}
.srsDropDownList button,
.srsDropDownList button:hover,
.srsDropDownList button:focus,
.srsDropDownList .btn-default:active:hover,
.srsDropDownList .btn-default.active:hover,
.srsDropDownList .btn-default:visited {
  border: 0;
  color: #FFF;
}
.srsDropDownList .open > .dropdown-toggle.btn-default {
  border: 0;
  color: #FFF;
}
.srsDropDownList .dropdown-menu > li > a {
  color: #5C6076 !important;
}
.srsDropDownList .dropdown-menu > li > a:hover, .srsDropDownList .dropdown-menu > li > a:active, .srsDropDownList .dropdown-menu > li > a:focus {
  color: #E68E26 !important;
}
.srsDropDownList a {
  cursor: pointer;
}

.aalSettingBulk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}
.aalSettingBulk .links-container {
  display: flex;
  gap: 20px;
}
.aalSettingBulk .links-container a {
  cursor: pointer;
  margin-right: 20px;
  text-decoration: none;
}
.aalSettingBulk .btn-group {
  display: flex;
  margin-bottom: 5px;
  padding: 10px;
  margin-left: auto;
}

#aalSection #aalSectionFilterType {
  width: 150px;
  margin: 0 auto;
  text-align: left;
  padding: 0.3em 0.5em;
}
#aalSection #aalSectionFilterSendWelcome {
  min-width: 115px;
  max-width: 180px;
  margin: 0 auto;
  text-align: left;
  padding: 0.3em 0.5em;
}
#aalSection .aalParam {
  vertical-align: middle;
  text-align: left;
  width: 150px;
}

.applicants-pagination .paginationValue {
  display: inline-block;
}
.applicants-pagination .selectize-control.srs-custom-dropdown {
  display: inline-block;
  top: 14px;
}

#aalPagination {
  text-align: right;
}
#aalPagination .pagination-controls {
  margin-top: 10px;
}
#aalPagination .pagination-info {
  margin-top: 10px;
}
#aalPagination .showAllButton, #aalPagination .current {
  background-color: #E06639;
  color: #FFF;
}

.aalSettingBulk #bulkAalUpdateButton {
  display: none;
}
.aalSettingBulk #bulkAalUpdateButton label {
  margin: 8px;
}

.aalSettingBulk {
  min-height: 40px;
}

.multistep-setting-header {
  padding: 10px 5px;
  background-color: #F1F1F5;
}
.multistep-setting-header div {
  font-weight: bold;
}

.multistep-setting input.validation-error {
  border-color: red !important;
}
.multistep-setting input[type=number] {
  min-width: 60px;
}

.loginSaferentLogo {
  width: 225px;
  height: 70px;
  margin-top: 22px;
  margin-bottom: 10px;
}

.login-promo-text {
  color: white;
  font-size: 24px;
  line-height: 36px;
}

.label-credentials {
  color: #3D434B;
}

.login-contact-info-text {
  color: white;
}

h3 .login-contact-info-text {
  font-weight: bold;
}

.backgroundLoginImg {
  background: url("../../images/login/inner-page-banner.jpg") no-repeat;
  border-radius: 0 !important;
  background-size: cover;
}

.login-input {
  max-width: 410px;
  height: 40px;
}

.login-button {
  font-size: 20px !important;
  padding: 0 !important;
}

.login-learn-more {
  margin-right: 64px;
  color: #E06639 !important;
  border: #E06639 1px solid;
}

.login-link {
  color: #E06639 !important;
}

.copyright-text-block {
  height: 73px;
  margin-top: 37px;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.4px;
  text-align: left;
  margin-bottom: 35px;
}

.login-contact-phone {
  margin-top: 15px;
}

.login-contact-email {
  margin-top: 15px;
}

.login-contact-hours {
  margin-top: 15px;
}

.sign-in-header {
  margin: 20px !important;
}
