html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-style: inherit;
    font-variant: inherit;
    font-weight: inherit;
    line-height: inherit;
    font-family: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

@font-face {
  font-family: 'Roboto-Light';
  src: url('../fonts/Roboto-Light.ttf') format('truetype');
  font-weight: bold;
  font-style: normal; 
}
@font-face {
  font-family: 'Helvetica-Bold';
  src: url('../fonts/HelveticaNeue-Medium.ttf') format('truetype');
  font-weight: bold;
  font-style: normal; 
}
@font-face {
  font-family: 'HelveticaNeue-Light';
  src: url('../fonts/HelveticaNeue-Light.ttf') format('truetype');
  font-style: normal; 
}
@font-face {
  font-family: 'HelveticaNeue-Thin';
  src: url('../fonts/HelveticaNeue-Thin.ttf') format('truetype');
  font-style: normal;
}


/* Actaul CSS starts from here */
body {
    color: #333333;
    font: 16px "Source Sans", helvetica, arial, sans-serif;
    font-weight: 200;
    text-rendering: optimizeLegibility;
}

/* Styling header */
header{
    height: 60px;
    background-color: #333333;
}
.header-img{
    display: inline-block;
    margin: 10px 30px;
}
.header-img img{
    width: 80px;
    /*height: 45px;*/
}
#back-btn-lnk{
    height:30px;
    margin-left: 50px;
}
#back-btn-lnk a{
    text-decoration: none;
}
.back-button{
  /*  margin-left: 60px;*/
    width: 100px;
    height: 34px;
    background-color: #b71f2b;
    padding: 4px;
    cursor: pointer;
    color: #ffffff;
    padding-left: 10px;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
}
.back-button:hover{
    padding: 10px;
    height: 40px;
    padding-left: 10px;

}
.app-switcher{
    display: inline-block;
    float: right;
    position: relative;
    margin-right: 200px;
}
.app-switches{
    width: 80px;
    height: 60px;
    padding: 21px 24px;
    cursor: pointer;
    margin-left: 65px;
}
.app-switches:hover{
    background-color: #3c3c3c;
}
.app-switches img{
    width: 30px;
}
.app-switcher .middle-layer{
    position: absolute;
    width: 80px;
    height: 20px;
    left: 50px;
}
.app-switcher .app-switch-links{
    background-color: #fff;
    position: absolute;
    border: 1px solid #cecece;
    z-index: 100;
    box-shadow: 2px 2px 10px 2px rgba(0,0,0,0.23);
    top: 70px;
    border-radius: 4px;
}

.app-switch-links li{
    width: 225px;
    height: 112px;
    text-align: center;
    /* padding: 0px; */
    padding: 10px;
}
.app-switch-links .hover-app{
    background-color: #b71f2b;
    cursor: pointer; 
}

.app-switch-links img{
    width: 60%;
    margin-top: 20px;
}
.app-switch-links img:last-child{
    /*width: 60%;*/
    /*background-color: #b71f2b; */
}

.user-profile-info{
    float:right;
    position: relative;
    padding: 10px;
    margin-right: 30px;
    font-size: 14px;
}
.user-drp-info{
    color: #a9a9a9;
    cursor: pointer;
    padding: 10px;
    font-size: 14px;
}
.user-drp-info:hover{
    background-color: #3c3c3c;
    border: 1px solid #404040;
    border-bottom: none;
}
.user-info-name{
    display: inline-block;
    width: 130px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.user-info-icon{
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 15px;
}

.user-profile-info ul{
    position: absolute;
    background-color: #333333;
    top: 50px;
    left: 11px;
    display: block;
    /* width: 200px; */
    text-align: center;
    font-size: 14px;
    padding: 0px;
    width: 88%;
    list-style-type: none;
    border: 1px solid #3c3c3c;
    z-index: 100;
}
.user-profile-info li{
    width: 100%;
   /* padding: 5px 10px;*/
    height: 40px;
    padding: 10px;
    color: #a9a9a9;
    cursor: pointer;
    font-size: 13px;
}

.user-profile-info li:hover{
    background-color: #3c3c3c;
    color: #ffffff;
}


/* Styling input check boxes */
input[type="checkbox"] {
    display: none;
}

label {
    position: relative;
}

label .custom-checkbox {
    display: inline-block;
    text-align: center;
    width: 15px;
    height: 15px;
    border: 1px solid #b2b2b2;
    border-radius: 3px;
    background-color: #ffffff;
    margin: 1px;
}

label i {
    opacity: 0;
    font-size: 12px;
    color: #5D9219;
    font-weight: bold;
    margin-left: -2px;
}

input:checked + label i {
    opacity: 1;
}

.check-collapse {
    width: 16px;
    height: 16px;
    background-color: #b2b2b2;
    color: #ffffff;
    padding: 2px 4px 0px 4px;
    border-radius: 2px;
    cursor: pointer;
}

.login-container {
    margin: 5% 0px;
}

.login-container div {
    text-align: center;
    font-size: 25px;
    letter-spacing: 1px;
}

.login-form {
    margin: 2% 30%;
    width: 500px;
    border: 2px solid #F0F0F0;
    min-height: 200px;
    padding: 10px 20px;
    border-radius: 4px;
}

.login-form input {
    height: 32px;
    border: 0;
    border: 1px solid #B8B8B8;
    border-radius: 4px;
    padding-left: 10px;
    font-size: 12px;
    width: 260px;
    margin-left: 14px;
}

.login-form label {
    font-size: 12px;
}

.login-form button {
    margin-left: 150px;
    width: 100px;
}

.login-form div {
    margin: 30px 20px;
}

.container {
    margin: 20px;
    margin-bottom: 50px;
    width: 1024px;
}

label {
    font-size: 11px;
}

.search-bar {
    margin: 10px 0px;
    position: relative;
}

.search-bar input {
    padding-left: 12px;
    font-size: 11px;
    border: 0;
    border: 1px solid #CBCACA;
    border-radius: 4px;
    min-width: 830px;
    height: 32px;
    margin-right: 16px;
}
.search-bar button{
    height: 32px;
    padding: 2px;
}
.search-bar .btn-primary{
    position: absolute;
    right: 165px;
    width: 80px;
}
.search-bar .btn-success{
    background-color: #5C9118;
    border-color: #5C9118;
    margin-left: 20px;
    width: 122px;
}

.singleUser {
    padding: 10px 0px;
    font-size: 12px;
}

.singleUser:nth-child(even) {
    background-color: #d0d2d3;
}

.singleUser:nth-child(odd) {
    background-color: #f2f2f2;
}

.user-name {
    margin: 0px 20px 0px 60px;
    width: 220px;
    display: inline-block;
    padding-left: 10px;
    font-weight: 400;
}

.user-email {
    margin: 0px 110px 0px 20px;
    width: 220px;
    display: inline-block;
    font-weight: 400;
}

.user-name span, .user-email span {
    display: block;
    margin: 1px 0px;
}

.singleUser button {
    margin: 0px 5px;
    font-size: 12px;
}

.user-list-img {
    font-size: 40px;
    display: inline-block;
    position: absolute;
    margin: -8px 0px;
}

/* Edit user section */
.edit-user-sec {
    margin: 20px;
    width: 1024px;
    border-radius: 3px;
    box-shadow: 1px 1px 1px 2px #CDCDCD;
    position: relative;
    height: 550px;
    margin-bottom: 55px;
}

.edit-user-input {
    height: 26px;
    padding-left: 10px;
    font-size: 11px;
    border: 1px solid #C5C5C5;
    border-radius: 4px;
    width: 200px;
    /*margin: 5px 16px 0px 35px;*/
    margin: 5px;
    font-weight: 400;
}

.edit-user-sec select {
    height: 27px;
    border: 0;
    width: 200px;
    background-color: #ffffff;
    border: 1px solid #BBB6B6;
    font-size: 11px;
    cursor: pointer;
    font-weight: 400;
    margin: 5px;
}

.select-drp-dwn::before,
.select-drp-dwn::after {
    content: "";
    pointer-events: none;
}

.select-drp-dwn::before {
    content: "\25BC";
    font-size: 9px;
    background-color: rgb(199, 200, 200);
    color: #fff;
    cursor: pointer;
    padding: 8px 6px;
    margin: 5px 268px;
    border-radius: 4px;
    position: absolute;
}
.user-edit-box{
    display: inline-block;
    width: 250px;
    margin: 5px 15px;
    float: left;
    min-height: 235px;
    background-color: #f2f2f2;
    padding: 4px 6px;
    font-size: 11px;
    position: relative;
}
.user-edit-box .user-form-control{
    margin: 4px 0px;
}
.user-edit-box .user-form-control label{
    font-weight: 400;
    width: 80px;
}

.user-edit-box-last .select-drp-dwn::before {
    margin: 5px 179px;
}
.user-form-control button {
    margin: 5px 5px 5px 90px;
    width: 200px;
    height: 30px;
    font-size: 12px;
}


/*.user-edit-box div {
    
}*/
/*
.user-edit-box label {
    font-weight: 400;
}*/

.clearfix {
    clear: left;
}

.user-edit-box-last {
    margin: 5px 20px;
    padding: 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 400;
    background-color: #f2f2f2;
}

.edit-status-btn {
    position: absolute;
    position: absolute;
    bottom: 0;
    margin: 2px 5px;
    /* float: right; */
    right: 0;
    padding: 10px;
}

.edit-status-btn button {
    margin: 0px 10px;
    width: 65px;
}

.edit-user-name {
    background-color: #f2f2f2;
    height: 36px;
    font-size: 14px;
    font-weight: 400;
    padding: 10px;
}

.edit-user-name span {
    /*padding: 10px 0px;*/
   /* display: inline-block;*/
}

.edit-user-name div {
    float: right;
    padding: 4px;
}

.edit-user-name button {
    height: 26px;
    padding: 0 10px;
    font-size: 12px;
}

.edit-user-header span {
    width: 200px;
    display: inline-block;
    padding: 15px 0px 10px 22px;
    font-size: 12px;
    font-weight: 400;
}

.user-details label, .disable-text {
    color: #c8c8c8;
}

.error-msg-email {
    color: #ffffff;
    font-size: 7px;
    font-weight: bold;
    position: absolute;
    /* margin: 5px 66px; */
    letter-spacing: 1px;
    text-align: center;
    margin: 5px 50px;
}

.error-msg {
    border-color: #c00003;
    border-top-width: 8px;
}

.dropdown-menu {
    left: -104px;
    margin-top: -1px;
    background-color: #333333;
}

.dropdown-menu > li > a {
    color: #ffffff;
    cursor: pointer;
}

.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
    background-color: #666666;
    color: #ffffff;
}

.drpdwn-up-icon {
    position: absolute;
    margin: -20px 130px;
    color: #333;
    font-size: 20px;
}

.modal.custom {
    top: 100px;
}

/*Tooltip*/
.tooltip-inner {
    white-space: nowrap;
    max-width: none;
}

li ul {
    margin: 0px 10px 0px 20px;
}

.modal-body.custom {
    min-height: 80px;
    padding: 5px 10px;
}

.modal-footer.custom {
    padding: 5px 10px;
}

/*Loader */
#mainLoaderOverlay {
    position: fixed;
    top: 0%;
    left: 0%;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 200;
}

#mainLoaderOverlay img {
    width: 50px;
    margin: 20% 10% 10% 48%;
}

.asingle-app-list {
    word-break: break-all;
}

.checkDisable .custom-checkbox {
    background-color: #CCC;
}

.modal-body .change-password {
    font-size: 14px;
    font-weight: 400px;
    margin-left: 20px;
}

.hotels-listing {
    width: 330px;
}

.check-collapse-up {
    background-color: #b2b2b2;
    color: #ffffff;
    border-radius: 2px;
    cursor: pointer;
    font-size: 13px;
    padding: 0px 4px;
}

.alert-error {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1
}

.alert-error hr {
    border-top-color: #e4b9c0
}

.alert-error .alert-link {
    color: #843534
}

html {
    height: 100%;
}

body {
    min-height: 100%;
}

.page-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
}

.page-bg.bg-dark{
    background-color: #333333;
    background: url("/ui/static/emanagement/img/bg-dark-overlay.png") no-repeat center center;
    background-size: 100% auto;
}

.center-block {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 30%;
    height: 30%;
    margin: auto;
    background-color: #f2f2f2;
    border-radius: 5px;
}

.center-block .inner {
    margin: 40px;
}

.center-block input[type="text"],
.center-block input[type="email"],
.center-block input[type="password"] {
    height: 40px;
    border: 0;
    border: 1px solid #B8B8B8;
    border-radius: 4px;
    font-size: 14px;
    padding: 0px 10px;
}

.center-block.login-block {
    width: 100%;
    height: 100%;
    max-width: 370px;
    height: 325px;
}

.center-block.forgot-pwd-block {
    width: 100%;
    height: 100%;
    max-width: 370px;
    height: 270px;
}
.center-block.reset-pwd-block {
    width: 100%;
    height: 100%;
    max-width: 375px;
    height: 445px;
}

.center-block .form-contaner {
    margin: 10px 0px 0px;
}

.input-row {
    margin: 30px 0px;
}

.hand {
    cursor: pointer;
}

.widthfull {
    width: 100%;
}

small {
    font-size: 85%;
}

.rmargin10 {
    margin-right: 10px;
}

.popover.right > .arrow:after {
    border-right-color: #CF002B !important;
}

.popover {
    background-color: #CF002B !important;
    color: #fff !important;
    white-space: nowrap;
}

.btn-submit {
    color: #fff;
    background-color: #4BC2DD;
    border-color: #40B7D1;
}

.btn-submit.active, .btn-submit.focus, .btn-submit:active, .btn-submit:focus, .btn-submit:hover, .open > .dropdown-toggle.btn-submit {
    color: #fff;
    background-color: #3b8aa3;
    border-color: #276b7c
}

.btn-submit.active, .btn-submit:active, .open > .dropdown-toggle.btn-submit {
    background-image: none
}

.btn-submit.disabled, .btn-submit.disabled.active, .btn-submit.disabled.focus, .btn-submit.disabled:active, .btn-submit.disabled:focus, .btn-submit.disabled:hover, .btn-submit[disabled], .btn-submit[disabled].active, .btn-submit[disabled].focus, .btn-submit[disabled]:active, .btn-submit[disabled]:focus, .btn-submit[disabled]:hover, fieldset[disabled] .btn-submit, fieldset[disabled] .btn-submit.active, fieldset[disabled] .btn-submit.focus, fieldset[disabled] .btn-submit:active, fieldset[disabled] .btn-submit:focus, fieldset[disabled] .btn-submit:hover {
    background-color: #4BC2DD;
    border-color: #40B7D1
}


.btn-submit .badge {
    color: #4BC2DD;
    background-color: #fff
}
.upsell-action-link{
  float: right;
  margin: 24px 10px;
  font-size: 12px;
  color: #fff;
  background-color: #C50003;
}
.upsell-action-link button{
  padding: 4px 16px 4px 20px;
  background-color: #C50003;
  border: 0;
  /* border: 6px; */
  font-weight: 400;
}
.upsell-action-link span{
  position: absolute;
  display: inline-block;
  font-size: 30px;
  margin-top: -10px;
  color: #333333;
  cursor: pointer;
}

/* Applying unified modifier changes to reset page on Sept 16th */

.page-bg.reset-bg-dark{
    /*background-color: #333333;*/
    background: #333333 url("/ui/static/emanagement/img/Login-Page_BG_ImageAlt1.png") no-repeat center center;
    background-size: 100% auto;
}
.reset-pwd-sec{
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 30%;
    /*height: 30%;*/
    margin: auto;
    background-color: #ffffff;
    border-radius: 20px;
    width: 380px;
   /* height: 360px;*/
    margin-top: 120px;
    text-align: center;
    font-family: HelveticaNeue-Light;
    min-height: 360px;
    /*min-height: 380px;*/
    /*max-height: 420px;*/
}
.reset-pwd-sec .logo-container{
    height: 140px;
    text-align: center;
    padding: 10px;
}

.reset-pwd-sec .logo-container img{
    width: 85px;
}
.reset-pwd-sec .logo-container p{
    font-size: 12px;
    margin: 15px 5px;
    color: #858585;
}
.reset-pwd-sec .form-contaner{
    margin-top: 20px;
}

.reset-pwd-sec input{
    height: 35px;
    border: 0;
    border: 1px solid #B8B8B8;
    border-radius: 4px;
    font-size: 12px;
    padding: 0px 20px;
    width: 300px;
    padding-left: 50px;
    /*border-top-width: 2px;*/

}
.reset-pwd-sec .input-row{
    position: relative;
    height: 50px;
    margin: 10px 0px 0px 0px;
}
.reset-pwd-sec .lck-key{
    position: absolute;
    width: 48px;
    height: 35px;
    /*padding: 10px;*/
    left: 32px;
    z-index: 100;
}
.reset-pwd-sec .lck-key span{
    display: inline-block;
    /* border-right: 1px solid #a29d9d; */
    /* padding: 6px 0px 5px 2px; */
    margin-left: 4px;
    color: #a29d9d;
    /* margin-right: 2px; */
    /* width: 10px; */
    width: 50px;
    padding: 10px 10px 7px 8px;
    /* margin-right: 4px; */
    /* margin-bottom: 3px; */
}
.lck-key span i{
    border-right: 1px solid #a29d9d;
    font-size: 16px;
    padding-left: 7px;
    padding-right: 12px;
}
.lck-key .bg-key{
    width: 50px;
    padding: 25px;
    background-color: #b71f2b;
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
}
.lck-key .bg-key i{
    border:0;
    border-right:0;
    color: #ffffff;
}

.password-requirement {
    padding-left: 0px;
}

.password-requirement li.list-group-item.active {
    background-color: #b71f2b;
    border-color: #b71f2b;
    padding: 2px;
    font-size: 14px;
    font-weight: bold;
}

.password-requirement li.list-group-item {
    padding: 2px;
    font-size: 12px;
}

.inpt-sbmt-btn input{
    width: 240px;
    height: 40px;
    background-color: #b71f2b;
    border-color: #b71f2b;
    color: #ffffff;
    border-radius: 2px;
    font-size: 12px;
    letter-spacing: 3px;
    /*margin-top: 10px;*/
    padding-left: 22px;
}
.reset-pwd-sec input:focus,.reset-pwd-sec input:hover{
    border-color: #b71f2b;
    outline: none;
}
.inpt-sbmt-btn input:hover{
    font-weight: bold;
    font-size: 13px;
}
.reset-pwd-sec .error-msg{
    color: #b71f2b;
    font-size: 12px;
    height: 40px;
    display: none;
}
.reset-pwd-sec .error-msg.err-msg-text{
    display: block;
    background: #ffe7e7;
    color: #c13e48;
    cursor: default;
    font-size: 13px;
    padding: 13px 10px;
    margin: 0px 40px;
}
.highlight-input-box{
    border: 2px solid #8c92db;
}
#footer{
    /* padding: 10px 20px; */
    position: fixed;
    z-index: 101;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 43px;
    background-color: rgba(51, 51, 51, 0.9);
}
#footer_links
{
    font-weight: bold;
    float: left;
    text-align: center;
    width: 100%;
    font-family: Helvetica;
    font-size: 12px;
    padding-top: 10px;
}
#footer_links a
{
    text-decoration: none;

    color: black;
}
#footer_links a.attribution-statement {
    text-align: center;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-block;
    padding: 4px 13px 5px;
    border-left: 2px solid #303030;
    border-right: 2px solid #303030;
    font-weight: normal;
}
#footer_links a.attribution-statement:hover {
    text-decoration: underline;
}
