/* common css */
* {
  margin: 0;
  padding: 0;
}

*,
:after,
:before {
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  height: 100%;
}

html {
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: "Lato", sans-serif;
  color: /*#5a6270;*/ #333;
  font-size: 14px;
  background: #fff;
  margin: 0;
  padding: 0;
  position: relative;
  /*overflow: hidden;*/
}

img {
  max-width: 100%;
  border: none;
  outline: none;
}

a {
  color: #00beff;
  text-decoration: none;
  transition: all 0.3s;
}

  a:hover {
    text-decoration: none;
  }

  a:hover,
  a:focus {
    color: #2f86d4;
  }

p {
  margin-bottom: 20px;
  line-height: 1.7em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: 300;
  line-height: 1.3em;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 {
  font-size: 60px;
  margin-bottom: 1.25em;
}

h2 {
  font-size: 46px;
  margin-bottom: 0.3em;
}

h3 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 0.3em;
}

h4 {
  font-size: 18px;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 0.5em;
}

h5 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

input,
select,
textarea,
button {
  font-family: "Lato", sans-serif;
  outline: none;
}

  input[type="number"]::-webkit-inner-spin-button,
  input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
  }

input,
select,
textarea,
.form-control,
.dropdown {
  font-size: 14px;
  color: #fff;
  line-height: 16px;
  background: #272f3b;
  height: 44px;
  border: 1px solid #272f3b;
  border-radius: 0px;
  margin: 0;
  padding: 0px 0px 0px 10px;
}

  input:focus,
  select:focus {
    border-color: #00beff;
  }

  .form-control:focus {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    color: #fff;
    line-height: 16px;
    background: #272f3b;
  }

  input.valid,
  select.valid {
    border-color: #00beff;
  }

  input.invalid,
  select.invalid {
    border-color: #d21513;
  }

    input.invalid:focus,
    select.invalid:focus {
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 77, 7, 0.5);
    }

  input[type="number"]::-webkit-inner-spin-button,
  input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0;
  }

  input[type="number"] {
    -moz-appearance: textfield;
  }

  input::-ms-clear {
    display: none;
  }

  input::placeholder, .form-control::placeholder {
    color: #999;
  }

  input::-webkit-input-placeholder {
    color: #999;
  }

  input::-moz-placeholder {
    color: #999;
  }

  input:-ms-input-placeholder {
    color: #999;
  }

  input:-moz-placeholder {
    color: #999;
  }

.inputselect {
  position: relative;
  height: 44px;
}

  .inputselect select {
    display: none;
  }

.option-selected {
  background-color: #272f3b;
}

  .option-selected:after {
    position: absolute;
    content: "";
    top: 20px;
    right: 15px;
    width: 0;
    height: 0;
    border: .5em solid transparent;
    border-color: #fff transparent transparent transparent;
  }

  .option-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 12px;
  }

.select-options div, .option-selected {
  color: #ffffff;
  padding: 8px 16px;
  line-height: 24px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

.select-options {
  position: absolute;
  background-color: #272f3b;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

.select-hide {
  display: none;
}

.select-options div:hover, .same-as-selected {
  background-color: #434b58;
  color: #f3db7d;
}

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent
}

.dropdown-toggle:empty::after {
  margin-left: 0
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: .5rem 0;
  margin: .125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: .25rem
}

.dropdown-divider {
  height: 0;
  margin: .5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: .25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0
}

  .dropdown-item:focus, .dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa
  }

  .dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #007bff
  }

  .dropdown-item.disabled, .dropdown-item:disabled {
    color: #6c757d;
    background-color: transparent
  }


.dropdown-header {
  display: block;
  padding: .5rem 1.5rem;
  margin-bottom: 0;
  font-size: .875rem;
  color: #6c757d;
  white-space: nowrap
}

.dropdown {
  padding: 0;
}

  .dropdown .dropdown-item {
    white-space: normal;
    padding: 6px 12px;
    font-size: 14px;
    color: #fff;
  }

    .dropdown .dropdown-item:hover, .dropdown .dropdown-item:focus {
      background-color: #434b58;
      color: #f3db7d;
    }

  .dropdown .dropdown-menu {
    overflow-y: auto;
    width: 101.25%;
    left: -2px;
    max-height: 200px;
    margin-top: 0;
    border-radius: 0;
    background-color: #272f3b;
  }

  .dropdown .dropdown-toggle {
    line-height: 44px;
    display: block;
    color: #fff;
    padding: 0px 12px;
    height: 27px;
  }

    .dropdown .dropdown-toggle:hover, .dropdown .dropdown-toggle:focus {
      color: #fff;
      outline: none;
    }

    .dropdown .dropdown-toggle:after {
      border-top: .5em solid;
      border-right: .5em solid transparent;
      border-bottom: 0;
      border-left: .5em solid transparent;
      float: right;
      position: relative;
      top: 20px;
      margin-left: 10px;
    }

select::-ms-expand {
  display: block;
}

/*custom checkbox*/
.form-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  position: relative;
  top: 2px;
  background: #272f3b;
  color: #999;
  height: 18px;
  width: 18px;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  margin-right: 4px;
  outline: none;
}

.form-checkbox {
  border-radius: 0;
}

  .form-checkbox:checked {
    background: #3ab16d;
  }

    .form-checkbox:checked::before {
      position: absolute;
      font-size: 14px;
      left: 5px;
      top: 0px;
      content: '\02143';
      transform: rotate(40deg);
      color: #fff;
      font-weight: bold;
    }

/*radio button*/
[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

  [type="radio"]:checked + label,
  [type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    margin-bottom: 0;
  }

    [type="radio"]:checked + label:before,
    [type="radio"]:not(:checked) + label:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 16px;
      height: 16px;
      border: 1px solid #272f3b;
      border-radius: 100%;
      background: #272f3b;
    }

    [type="radio"]:checked + label:after,
    [type="radio"]:not(:checked) + label:after {
      content: '';
      width: 12px;
      height: 12px;
      background: #3ab16d;
      position: absolute;
      top: 2px;
      left: 2px;
      border-radius: 100%;
      -webkit-transition: all 0.2s ease;
      transition: all 0.2s ease;
    }

    [type="radio"]:not(:checked) + label:after {
      opacity: 0;
      -webkit-transform: scale(0);
      transform: scale(0);
    }

    [type="radio"]:checked + label:after {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
    }

/*buttons*/
.btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 13px;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  border-radius: 0;
}

  .btn:focus {
    box-shadow: none;
  }

.btn-green {
  background-color: #3ab16d;
  color: #fff;
}

  .btn-green:hover {
    background-color: #49d26d;
    color: #fff;
  }

.btn-red {
  background-color: #d21513;
  color: #fff;
}

  .btn-red:hover {
    background-color: #c3272e;
    color: #fff;
  }

.btn-blue {
  background-color: #0000ff;
  color: #fff;
}

  .btn-blue:hover {
    background-color: #0000da;
    color: #fff;
  }

.btn-white {
  background-color: #fff;
  color: #5a6270;
}

  .btn-white:hover {
    background-color: #3ab16d;
    color: #fff;
  }

.bg-green {
  background-color: #3ab16d !important;
}

.bg-red {
  background-color: #c3272e !important;
}

a.btn:focus {
  color: #fff;
}

.modal .close.ban-icon {
  text-shadow: none;
  padding: 4px;
  position: relative;
  top: 13px;
  right: 10px;
  font-size: 18px;
  opacity: 1;
}

.ban-icon.close:not(:disabled):not(.disabled):hover, .close.ban-icon:hover {
  color: #fff;
  background: #d21513;
}

.done {
  width: 27px;
  height: 27px;
  background-color: #3ab16d;
}

  .done:after {
    content: '';
  }

/*jquery validation*/
.formError {
  top: inherit !important;
  left: inherit !important;
  margin-top: -68px;
  z-index: 9;
}

  .formError .formErrorContent {
    z-index: 991;
    width: 100%;
    background: #d21513;
    position: relative;
    color: #fff;
    min-width: 120px;
    font-size: 14px;
    line-height: 25px;
    font-weight: bold;
    padding: 4px 12px;
    border: 0px solid #fff;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
  }

  .formError .formErrorArrow {
    z-index: 996;
  }

    .formError .formErrorArrow > div {
      height: 1px;
      background: #d21513;
      margin: 0 auto;
      line-height: 0;
      font-size: 0;
      display: block;
      box-shadow: none;
      border: none;
    }

@media (max-width: 768px) {
  .show-xs {
    display: block !important;
  }

  .hidden-xs {
    display: none !important;
  }
}
/*hamburger icon*/
.hamburger {
  font: inherit;
  display: inline-block;
  overflow: visible;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: .15s;
  transition-property: opacity,filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
}

  .hamburger.is-active:hover, .hamburger:hover {
    opacity: .7;
    outline: none;
  }

  .hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
    background-color: #333;
  }

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 22px;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  position: absolute;
  width: 24px;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: .15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: #333;
}

  .hamburger-inner:after, .hamburger-inner:before {
    display: block;
    content: "";
  }

.hamburger--slider .hamburger-inner:before {
  top: 8px;
  transition-timing-function: ease;
  transition-duration: .15s;
  transition-property: transform,opacity;
}

.hamburger--slider .hamburger-inner:after {
  top: 16px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

  .hamburger--slider.is-active .hamburger-inner:before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0;
  }

  .hamburger--slider.is-active .hamburger-inner:after {
    transform: translate3d(0, -16px, 0) rotate(-90deg);
  }

.expiring {
  color: #d21513;
}

.progress-bar-expiring {
  background-color: #d21513;
}

.inprogress {
  color: #272f3b;
}

.progress-bar-inprogress {
  background-color: #272f3b;
}

.progress-bar-completed {
  background-color: #3ab16d;
}

.completed {
  color: #3ab16d;
}

/*spinner*/
.edgeLoad-EDGE-59258564 {
  display: none;
}

#Stage {
  display: none;
}

/*scroll bar*/
/*Window Scroll bar*/
/*for login page*/
/*::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 8px;
}

::-webkit-scrollbar-thumb {
    border-radius: 12px;
    border: 5px solid rgba(255,255,255,0);
    background-clip: content-box;
    background-color: #bfbfbf;
    background-color: #A0A0A0;
}*/
.scrollbar {
  overflow: hidden;
  overflow-y: auto;
}

  .scrollbar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
  }

  .scrollbar::-webkit-scrollbar {
    width: 5px;
    background-color: #F5F5F5;
  }

  .scrollbar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #555;
  }


/*table*/
.table {
  color: #5a6270;
  border: none;
}

  .table td, .table th {
    padding: 6px;
    font-weight: 500;
    border: none;
  }

  .table thead th {
    border: none;
  }

/*modal*/
.modal .close {
  color: #fff;
  /*padding: 12px;*/
}

.modal .modal-header {
  background: #272f3b;
  color: #fff;
  padding: 10px 15px;
  border-radius: 0;
}

  .modal .modal-header h5 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
  }

.modal .modal-content {
  border-radius: 0;
  border: none;
}

  .modal .modal-content label {
    color: #e0e4ee;
    font-weight: 300;
    margin-bottom: 0;
  }

.modal .modalcontent {
  background-color: #272F3B;
  padding: 10px;
  position: relative;
  margin: 0;
}

.modal-backdrop, .modal-backdrop.fade.in {
  opacity: 0.7;
  z-index: 1040 !important;
  filter: alpha(opacity=70);
  background: rgba(224, 228, 238, 0.7);
}

/*yes no box*/
.no, .yes, .disableYesOrNo {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  text-align: center;
  line-height: 44px;
  width: 44px;
  height: 44px;
  margin-right: 4px;
  background-color: #272f3b;
  cursor: pointer;
}

  .no:hover, .no:focus, .yes:hover, .yes:focus {
    text-decoration: underline;
    color: #fff;
  }

  .disableYesOrNo:hover, .disableYesOrNo:focus {
    cursor: not-allowed;
    color: #fff;
  }

.on {
  font-weight: 900;
}

.no.on {
  background-color: #d21513;
}

.no:hover {
  background-color: #d21513;
}

.yes.on {
  background-color: #3ab16d;
}

.yes:hover {
  background-color: #3ab16d;
}

.google_files {
  overflow-y: scroll;
  height: 262px;
}

a {
  color: #5a6270;
  text-decoration: none;
  transition: 0.15s;
}

  a:hover, a:focus {
    text-decoration: underline;
    color: #383d46;
  }

.hide {
  display: none;
}

.w-170 {
  max-width: 170px;
}

.w-200 {
  max-width: 200px;
}

.w-300 {
  max-width: 300px;
  width: 100%;
}

.w-375 {
  max-width: 375px;
  width: 100%;
}
/*header*/
.header {
  position: fixed;
  top: 0px;
  z-index: 8;
  width: 100%;
  border-top: 2px Solid #d21513;
  background: #fff;
  /*on select*/
}

  .header .multilingual {
    position: relative;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    color: #000;
  }

    .header .multilingual.dropdown .dropdown-toggle {
      padding: 0;
      height: auto;
    }

      .header .multilingual.dropdown .dropdown-toggle:after {
        position: absolute;
        top: 10px;
        margin-left: 0;
        right: 29px;
        background: url("../img/down-arrow.png") no-repeat;
        border: none;
        width: 10px;
        height: 10px;
      }

    .header .multilingual .dropdown-menu {
      width: 100px;
      max-height: none;
      background: #6a7382;
      padding: 4px;
      min-width: auto;
    }

      .header .multilingual .dropdown-menu .dropdown-item {
        padding: 6px;
      }

  .header .language-list {
    display: none;
    position: absolute;
    background: #6a7382;
    padding: 8px 16px;
    color: #fff;
    top: 27px;
    right: 0;
  }

    .header .language-list li {
      border-bottom: solid 1px transparent;
      margin-bottom: 1px;
    }

      .header .language-list li:hover {
        border-bottom: solid 1px #fff;
        cursor: pointer;
      }

  .header #selLanguage .languageHead, .header #selLanguage .languageList {
    color: #272f3b;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: normal;
    font-weight: normal;
    text-align: right;
    padding-right: 45px;
  }

  .header .englishIcon {
    background: url(../img/flag-sprite.png) no-repeat;
    background-position: 92px 1px;
  }

  .header .spanishIcon {
    background: url(../img/flag-sprite.png) no-repeat;
    background-position: 92px -82px;
  }

  .header .frenchIcon {
    background: url(../img/flag-sprite.png) no-repeat;
    background-position: 92px -26px;
  }

  .header .germanIcon {
    background: url(../img/flag-sprite.png) no-repeat;
    background-position: 92px -55px;
  }

  .header .dutchIcon {
    background: url(../img/flag-sprite.png) no-repeat;
    background-position: 92px 1px;
  }

  .header .portugueseIcon {
    background: url(../img/flag-sprite.png) no-repeat;
    background-position: 92px -110px;
  }

  .header hungarianIcon {
    background: url(../img/flag-sprite.png) no-repeat;
    background-position: 92px 1px;
  }

  .header colombiaIcon {
    background: url(../img/flag-sprite.png) no-repeat;
    background-position: 92px 1px;
  }

  .header norwegianIcon {
    background: url(../img/flag-sprite.png) no-repeat;
    background-position: 92px 1px;
  }

  .header romanianIcon {
    background: url(../img/flag-sprite.png) no-repeat;
    background-position: 92px 1px;
  }

  .header #selLanguage .englishIcon {
    background-position: 65px 0px;
  }

  .header #selLanguage .spanishIcon {
    background-position: 84px -85px;
  }

  .header #selLanguage .frenchIcon {
    background-position: 84px -29px;
  }

  .header #selLanguage .germanIcon {
    background-position: 86px -56px;
  }

  .header #selLanguage .portugueseIcon {
    background-position: 103px -110px;
  }

  .header #selLanguage .dutchIcon {
    background-position: 108px -137px;
  }

  .header #selectedlang img {
    padding-left: 5px;
  }

  .header #selLanguage .hungarianIcon {
    background-position: 106px -120px;
  }

  .header #selLanguage .colombiaIcon {
    background-position: 106px -145px;
  }

  .header #selLanguage .norwegianIcon {
    background-position: 106px -170px;
  }

  .header #selLanguage .romanianIcon {
    background-position: 106px -170px;
  }

.logo-wrapper {
  padding: 6px 12px 4px;
}

  .logo-wrapper a img {
    height: 55px;
    width: auto;
  }

@media (max-width: 580px) {
  .logo-wrapper a img {
    height: 40px;
  }
}

/*main*/
.main-container {
  margin-top: 75px;
  background-color: #eff2f9;
}

.element-group {
  padding: 10px;
  margin-bottom: 2px;
}

.login-container {
  background-color: #eff2f9;
  margin-top: 83px;
}

.login-register-form {
  display: flex;
  max-width: 680px;
  margin: 0 auto;
  padding: 45px 0;
  width: 100%;
}

  .login-register-form input.form-control, .login-register-form select, .login-register-form .dropdown, .login-register-form .dropdown .dropdown-toggle {
    height: 44px;
    font-size: 14px;
  }

    .login-register-form .dropdown .dropdown-toggle {
      line-height: 37px;
    }

      .login-register-form .dropdown .dropdown-toggle:after {
        top: 16px;
      }

@media (max-width: 768px) {
  .login-register-form {
    display: block;
    width: 100%;
  }
}

.login-register-form h2 {
  font-size: 20px;
  font-weight: 300;
  margin-top: 0px;
  margin-bottom: 26px;
  color: #5a6270;
}

@media (max-width: 768px) {
  .login-register-form h2 {
    background: #fff;
    padding: 10px;
    margin-bottom: 0;
    cursor: pointer;
  }
}

.login-register-form > div {
  width: 50%;
  padding: 0 15px;
  margin: 0 auto;
}

.login-register-form .login-form {
  margin-right: 20px;
}

@media (max-width: 768px) {
  .login-register-form .login-form.d-none {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .login-register-form .register-form, .login-register-form .login-form, .login-register-form .forgetPassword {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }
}

.login-register-form #creatNewlink, .login-register-form #signInLink {
  position: absolute;
  top: 10px;
  right: 28px;
  text-decoration: underline;
}

.login-form .element-group,
.register-form .element-group,
.forgetPassword .element-group {
  background: #fff;
}

  .login-form .element-group .form-control,
  .register-form .element-group .form-control,
  .forgetPassword .element-group .form-control {
    margin-bottom: 2px;
  }

  .login-form .element-group label,
  .register-form .element-group label,
  .forgetPassword .element-group label {
    margin-bottom: 0;
    position: relative;
    top: -2px;
  }

/*forgot password*/
.forgot-password .login-register-form > div {
  margin: 0 auto;
}

/*footer*/
footer {
  font-size: 10px;
  color: #959ca7;
  padding: 10px 5px 0 20px;
  bottom: 0;
  background: #fff;
  clear: both;
  border-top: solid 1px #d8d8d8;
  width: 100%;
}

  footer p {
    margin-bottom: 0;
  }

/*inner page top header*/
.customer-logo img {
  height: 55px;
  width: auto;
}

/*inner page primary header*/
.primary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #272f3b;
  padding: 0 12px 0 0;
}

  .primary-header a {
    color: #fff;
    text-align: center;
  }

    .primary-header a i {
      font-size: 24px;
      margin-bottom: 2px;
    }

@media (max-width: 580px) {
  .primary-header a i {
    font-size: 20px;
  }
}

.primary-header nav a {
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  line-height: 18px;
  padding: 10px 8px 8px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  min-width: 65px;
}

@media (max-width: 580px) {
  .primary-header nav a {
    font-size: 9px;
    padding: 4px 2px 2px;
    min-width: 40px;
  }
}

.primary-header nav a i {
  display: block;
}

.primary-header nav a:hover {
  color: #eff2f9;
  background-color: #434b58;
}

.primary-header nav a > span {
  position: relative;
  top: 2px;
}

@media (max-width: 767px) {
  .primary-header nav a > span {
    font-size: 10px;
    text-transform: uppercase;
  }
}

.primary-header nav .nav-link.active {
  color: #d21513;
  background-color: #fff;
  border-top: 1px solid #e0e4ee;
  border-bottom: 1px solid #e0e4ee;
}

.user-logout {
  color: #fff;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .user-logout {
    visibility: hidden;
    opacity: 0;
    position: absolute;
  }

    .user-logout.open-user-logout {
      visibility: visible;
      opacity: 1;
      top: 140px;
      box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.3);
      color: #000;
      width: 95%;
      padding: 10px 15px;
      right: 10px;
      transition: all 0.2s;
      background: #fff;
      border-radius: 50px;
      display: flex;
      align-items: center;
      flex: 1;
      height: 50px;
      justify-content: space-between;
    }

      .user-logout.open-user-logout a {
        color: #000;
      }
}

@media (max-width: 580px) {
  .user-logout.open-user-logout {
    top: 100px;
  }
}

.user-logout > span {
  font-size: 16px;
  display: inline-block;
  vertical-align: text-bottom;
  margin-right: 12px;
}

@media (max-width: 767px) {
  .user-logout > span {
    width: 100%;
  }
}

.user-logout a {
  padding: 4px;
}

  .user-logout a:hover {
    color: #999;
  }

.mob-user-logout {
  cursor: pointer;
  color: #fff;
  font-size: 34px;
  height: 8px;
  text-align: center;
  line-height: 0;
  width: 34px;
  transform: rotate(270deg);
  padding-bottom: 24px;
  position: relative;
  right: -6px;
  border-radius: 2px;
  border-top: solid 1px #fff;
  padding-top: 6px;
}

/*dashboard*/
.main-section {
  position: relative;
  /*top: 130px;*/
  background-color: #eff2f9;
  height: 100%;
}

@media (max-width: 580px) {
  .main-section {
    /*top: 90px;*/
  }
}

/*left top section*/
.tabmenu {
  display: flex;
  align-items: center;
  padding: 6px 0;
  background: #fff;
  width: 250px;
  min-width: 250px;
  margin-left: 10px;
}

@media (max-width: 576px) {
  .tabmenu {
    padding-left: 0 !important;
  }
}

.left-top-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
  background: #fff;
  width: 250px;
  min-width: 250px;
}

@media (max-width: 767px) {
  .left-top-section {
    display: none;
  }
}

.left-top-section h4 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 0;
  padding: 0 15px;
  text-transform: uppercase;
}

.left-top-section .hamburger .hamburger-box {
  width: auto;
  height: auto;
  text-align: center;
  border-radius: 50%;
  margin: 0 8px;
  padding: 6px;
  background: #eff2f9;
}

  .left-top-section .hamburger .hamburger-box .left-nav-icon {
    font-family: IcoFont !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    line-height: 1;
    font-size: 24px;
    color: #5f6368;
  }

    .left-top-section .hamburger .hamburger-box .left-nav-icon:before {
      content: "\ea9d";
    }

    .left-top-section .hamburger .hamburger-box .left-nav-icon:after {
      content: none;
    }

.left-top-section .hamburger.is-active {
  right: 22px;
}

  .left-top-section .hamburger.is-active .left-nav-icon:before {
    content: "\eaa0";
  }

/*left section*/
.left-nav {
  width: 200px;
  float: left;
  background: #eff2f9;
}

#nav-tab {
  /*height: 400px;*/
  overflow: hidden;
}

div#nav-tab:hover {
  overflow: auto;
}

div#nav-tab {
  padding-right: 16px;
}

  div#nav-tab:hover {
    padding-right: 0px;
  }

@media (min-width: 768px) {
  .left-nav {
    position: fixed;
    bottom: 120px;
    /* top: 235px;*/
    top: 170px;
  }

  @media (min-width: 768px) {
    /*        .personaltab {
            height: 465px !important;
        }*/

    div.sc_menu_wrapper {
      overflow-x: hidden;
      overflow-y: hidden;
      height: 485px;
    }

    .navtabhideAllbrows {
      height: 460px !important;
    }

    .sc_menu_wrapper768 {
      height: 400px !important;
    }

    .sc_menu_wrapper_left {
      height: 425px !important;
    }

    .left-nav-scroll {
      overflow-y: auto !important;
      height: 100%;
    }
  }

  @media screen and (width: 1366px) {
    .personaltab {
      height: 400px !important;
    }

    div.sc_menu_wrapper {
      overflow-x: hidden;
      overflow-y: hidden;
      height: 423px;
    }

    .personaltab.hideNav.navtabhideAllbrows {
      height: 400px !important;
    }

    .hideNav.navtabhideAllbrows {
      height: 400px !important;
    }
  }

  .personaltab.hideNav {
    position: relative;
    bottom: 0;
    top: 0;
  }

  .hamburger {
    display: block;
    top: 211px !important
  }

  .personaltab.showNav {
    top: 170px !important;
  }

  .personaltab > .hamburger {
    left: 195px !important;
  }

  .personaltab.hideNav > .hamburger {
    left: 66px !important;
  }
}


@media (max-width: 576px) {
  .left-nav {
    position: relative;
    top: 0px !important;
    bottom: 0;
  }

  .showNav {
    top: 0px !important;
  }

  .hamburger {
    display: none;
  }
}

.left-nav > ul {
  display: flex;
  flex-flow: column;
  margin-bottom: 12px;
  border-bottom: solid 1px #ccc;
  padding: 10px;
}

.left-nav ul li a {
  color: #333;
  font-size: 16px;
  margin-bottom: 6px !important;
  background: #fff;
}

.left-nav a:hover, .left-nav a.active-left-menu {
  background: #e0e4ee;
  text-decoration: none;
  font-weight: bold;
  border-left: solid 3px #c3262d;
}

.left-nav a i {
  margin-right: 6px;
  font-size: 18px;
}

  .left-nav a i.icofont-search-1 {
    font-size: 14px;
  }

.left-nav .folders {
  padding-bottom: 12px;
}

  .left-nav .folders h4 {
    margin-bottom: 0;
  }

.left-nav.hide-left-nav {
  left: -200px;
}

.left-nav.hideNav > li {
  padding: 0;
}

.left-nav.hideNav .folders {
  padding-bottom: 6px;
}

  .left-nav.hideNav .folders h4 {
    margin: 0;
  }

    .left-nav.hideNav .folders h4 a {
      text-indent: 0;
      text-transform: capitalize;
      font-weight: normal;
      display: flex;
      margin-bottom: 5px;
    }

      .left-nav.hideNav .folders h4 a i {
        font-size: 15px;
      }

.left-nav.hideNav .add-new-folderlist {
  padding: 0;
}

  .left-nav.hideNav .add-new-folderlist a {
    white-space: pre-wrap;
  }

.left-nav.hideNav .action-required h4 {
  display: none;
}

.left-nav.hideNav h4 {
  text-indent: -9999px;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.left-nav.hideNav i {
  margin-right: 0;
  margin-bottom: 2px;
  font-size: 24px;
}

.left-nav.hideNav li a {
  font-size: 12px;
  line-height: 14px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7px 30px;
  margin-bottom: 5px;
}

.left-nav.hideNav a:hover {
  color: #d21513;
  text-decoration: none;
}

.left-nav.hideNav a > span {
  display: none;
}

.left-nav .folders h4 a {
  display: block;
  margin-bottom: 0;
}

/*setting*/
.setting-section > .tab-content {
  /*height: 100%;*/
  overflow: hidden;
  /*overflow-y: auto;*/
  padding-bottom: 15px;
}

.left-nav .nav-tabs .nav-item.show .nav-link, .left-nav .nav-tabs .nav-link.active, .left-nav .nav-tabs .nav-link:hover, .left-nav .nav-tabs .nav-link {
  border: none;
  border-radius: 0;
  margin-bottom: 6px;
}

  .left-nav .nav-tabs .nav-item.show .nav-link:last-child, .left-nav .nav-tabs .nav-link.active:last-child, .left-nav .nav-tabs .nav-link:hover:last-child, .left-nav .nav-tabs .nav-link:last-child {
    margin-bottom: 0;
  }

.left-nav .nav-tabs .active .nav-link {
  color: #d21513;
  font-weight: bold;
  border-left: solid 3px #c3262d;
}

  .left-nav .nav-tabs .active .nav-link #imgwebhook {
    content: url("/Content/img/webhook_active_300px.png");
  }

  .left-nav .nav-tabs .active .nav-link #imgcontact {
    content: url("/Content/img/contacts_300px.png");
  }

  .left-nav .nav-tabs .active .nav-link #imgrequests {
    content: url("/Content/img/user-access_active.svg");
  }

  .left-nav .nav-tabs .active .nav-link #imgbranding {
    content: url("/Content/img/Branding_Red.svg");
  }
.left-nav .nav-tabs .nav-link {
  border-left: solid 3px transparent;
  /*word-break: break-all;*/
  overflow-wrap: break-word;
}

  .left-nav .nav-tabs .nav-link:hover {
    font-weight: bold;
    border-left: solid 3px #c3262d;
  }

.setting-tabs {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dee2e6;
  background: #fff;
}

@media (max-width: 767px) {
  .setting-tabs {
    margin-top: 22px;
  }
}

.setting-tabs .nav-tabs {
  width: 100%;
  border: none;
}

@media (max-width: 767px) {
  .setting-tabs .nav-tabs {
    padding-left: 78px;
  }
}

.setting-tabs .nav-tabs .nav-item {
  margin-bottom: -8px;
  background: transparent;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  border-top-width: 2px;
}

@media (max-width: 576px) {
  .setting-tabs .nav-tabs .nav-item {
    margin-bottom: -8px;
    font-size: 11px;
  }
}

.setting-tabs .nav-tabs .active .nav-item {
  border-top-color: #d21513;
  border-top-width: 2px;
  color: #d21513;
  background: transparent;
}

/* left nav toggle*/
@keyframes showNav {
  from {
    width: 65px;
  }

  to {
    width: 200px;
  }
}

@-webkit-keyframes showNav {
  from {
    width: 65px;
  }

  to {
    width: 200px;
  }
}

@-moz-keyframes showNav {
  from {
    width: 65px;
  }

  to {
    width: 200px;
  }
}

@-o-keyframes showNav {
  from {
    width: 65px;
  }

  to {
    width: 200px;
  }
}

.showNav {
  -webkit-animation: showNav 0.5s ease forwards;
  -moz-animation: showNav 0.5s ease forwards;
  -o-animation: showNav 0.5s ease forwards;
  animation: showNav 0.5s ease forwards;
}

@keyframes hideNav {
  from {
    width: 200px;
  }

  to {
    width: 65px;
  }
}

@-webkit-keyframes hideNav {
  from {
    width: 200px;
  }

  to {
    width: 65px;
  }
}

@-moz-keyframes hideNav {
  from {
    width: 200px;
  }

  to {
    width: 65px;
  }
}

@-o-keyframes hideNav {
  from {
    width: 200px;
  }

  to {
    width: 65px;
  }
}

.hideNav {
  -webkit-animation: hideNav 0.5s ease forwards;
  -moz-animation: hideNav 0.5s ease forwards;
  -o-animation: hideNav 0.5s ease forwards;
  animation: hideNav 0.5s ease forwards;
}

/*right section*/
.right-section {
  overflow-y: auto;
  width: calc(99vw - 91px);
  float: right;
  transition: all 0.3s;
  background: #eff2f9;
}

.right-sectionSearch {
  width: calc(99vw - 91px);
  float: right;
  transition: all 0.3s;
  background: #eff2f9;
}

.right-section.left-push {
  width: calc(100vw - 212px);
}

  .right-section.left-push .tab-content {
    margin-left: 0;
  }

.right-section .tab-content {
  background: #e0e4ee;
  margin: 10px 10px 10px 0px;
  padding: 12px;
  /*height: 460px;*/
  overflow-y: hidden;
  -ms-overflow-style: auto;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .right-section .tab-content {
    background: transparent;
    margin: 0;
    padding: 0px;
    /*height: 400px !important;*/
  }
}

.rightNav {
  -webkit-animation: rightNav 0.5s ease backwards;
  -moz-animation: rightNav 0.5s ease backwards;
  -o-animation: rightNav 0.5s ease backwards;
  animation: rightNav 0.5s ease backwards;
}

@keyframes rightNav {
  from {
    width: calc(100vw - 212px);
  }

  to {
    width: calc(100vw - 91px);
  }
}

@-webkit-keyframes rightNav {
  from {
    width: calc(100vw - 212px);
  }

  to {
    width: calc(100vw - 91px);
  }
}

@-moz-keyframes rightNav {
  from {
    width: calc(100vw - 212px);
  }

  to {
    width: calc(100vw - 91px);
  }
}

@-o-keyframes rightNav {
  from {
    width: calc(100vw - 212px);
  }

  to {
    width: calc(100vw - 91px);
  }
}


.rightNavExpand {
  -webkit-animation: rightNavExpand 0.5s ease forwards;
  -moz-animation: rightNavExpand 0.5s ease forwards;
  -o-animation: rightNavExpand 0.5s ease forwards;
  animation: rightNavExpand 0.5s ease forwards;
}

@keyframes rightNavExpand {
  from {
    width: calc(100vw - 91px);
  }

  to {
    width: calc(100vw - 212px);
  }
}

@-webkit-keyframes rightNavExpand {
  from {
    width: calc(100vw - 91px);
  }

  to {
    width: calc(100vw - 212px);
  }
}

@-moz-keyframes rightNavExpand {
  from {
    width: calc(100vw - 91px);
  }

  to {
    width: calc(100vw - 212px);
  }
}

@-o-keyframes rightNavExpand {
  from {
    width: calc(100vw - 91px);
  }

  to {
    width: calc(100vw - 212px);
  }
}

/*Hamburger Expand Collapse*/
.collapseNav {
  -webkit-animation: collapseNav 0.5s ease backwards;
  -moz-animation: collapseNav 0.5s ease backwards;
  -o-animation: collapseNav 0.5s ease backwards;
  animation: collapseNav 0.5s ease backwards;
}

@keyframes collapseNav {
  from {
    width: 195px;
  }

  to {
    width: 15px;
  }
}

@-webkit-keyframes collapseNav {
  from {
    width: 195px;
  }

  to {
    width: 15px;
  }
}

@-moz-keyframes collapseNav {
  from {
    width: 195px;
  }

  to {
    width: 15px;
  }
}

@-o-keyframes collapseNav {
  from {
    width: 195px;
  }

  to {
    width: 15px;
  }
}


.collapseNavExpand {
  -webkit-animation: collapseNavExpand 0.5s ease forwards;
  -moz-animation: collapseNavExpand 0.5s ease forwards;
  -o-animation: collapseNavExpand 0.5s ease forwards;
  animation: collapseNavExpand 0.5s ease forwards;
}

@keyframes collapseNavExpand {
  from {
    width: -100px;
  }

  to {
    width: 15px;
  }
}

@-webkit-keyframes collapseNavExpand {
  from {
    width: -100px;
  }

  to {
    width: 15px;
  }
}

@-moz-keyframes collapseNavExpand {
  from {
    width: -100px;
  }

  to {
    width: 15px;
  }
}

@-o-keyframes collapseNavExpand {
  from {
    width: -100px;
  }

  to {
    width: 15px;
  }
}

/*content section*/
.content-section {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-top: 8px;
  width: 100%;
  transition: all .3s ease;
}

@media (max-width: 992px) {
  .content-section {
    display: block;
    height: auto;
  }
}

/*main content*/
.main-content {
  margin-right: 8px;
  height: 100%;
  width: 100%;
}

@media (max-width: 992px) {
  .main-content {
    margin-bottom: 20px;
  }
}

.dashboard-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 680px) {
  .dashboard-status {
    display: block;
  }
}

.box {
  max-width: 438px;
  width: 100%;
  font-weight: 700;
  color: #fff;
  text-align: center;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}

  .box > span {
    font-size: 68px;
    font-weight: 100;
    display: block;
    padding-bottom: 20px;
    line-height: 54px;
  }

.active-summary {
  min-width: 250px;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
  padding: 16px 20px 20px;
  background: #fff;
}

  .active-summary h4 {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .active-summary ul {
    margin: 0 -12px -16px;
  }

    .active-summary ul li {
      display: flex;
      color: #333;
      font-size: 14px;
      padding: 10px 22px;
      border-bottom: solid 1px #ccc;
    }

      .active-summary ul li:hover {
        background: #eff2f9;
      }

      .active-summary ul li:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 4px;
      }

      .active-summary ul li b {
        max-width: 62px;
        width: 100%;
      }

      .active-summary ul li label {
        margin-bottom: 0;
        display: flex;
        flex-flow: column;
        width: 167%;
      }

.white-box {
  background: #fff;
  padding: 15px;
  margin-bottom: 8px;
  width: 33.33%;
  height: 110px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .white-box {
    padding: 15px;
  }
}

@media (max-width: 680px) {
  .white-box {
    width: 100%;
  }
}

.white-box h5 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 0;
  width: 100%;
}

@media (max-width: 680px) {
  .white-box h5 {
    font-size: 14px;
  }
}

.white-box h3 {
  font-size: 48px;
  line-height: 50px;
  margin-bottom: 4px;
}

@media (max-width: 680px) {
  .white-box h3 {
    font-size: 45px;
    line-height: 45px;
  }
}

.white-box:nth-child(2) {
  margin-left: 8px;
  margin-right: 8px;
}

@media (max-width: 680px) {
  .white-box:nth-child(2) {
    margin: 8px 0;
  }
}

/*progress bar*/
.progress {
  background-color: rgba(120, 130, 140, 0.13);
  width: 100%;
  height: 4px;
  border-radius: 0;
  margin-bottom: 18px;
  overflow: hidden;
}

.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width .6s ease;
  -o-transition: width .6s ease;
  transition: width .6s ease;
}

.progress-bar {
  box-shadow: none;
  font-size: 8px;
  font-weight: 600;
  line-height: 12px;
}

/*drag and drop*/
.drag-drop-pdf {
  border: dashed 2px #333;
  padding: 72px 20px;
  text-align: center;
}

  .drag-drop-pdf i {
    font-size: 40px;
    margin-bottom: 50px;
    display: block;
  }

  .drag-drop-pdf > div {
    display: flex;
    justify-content: center;
    align-items: center;
  }

@media (max-width: 767px) {
  .drag-drop-pdf > div {
    flex-flow: column;
  }

    .drag-drop-pdf > div .btn {
      width: 100%;
    }

    .drag-drop-pdf > div span {
      margin: 15px 0;
    }
}

.drag-drop-pdf > div > span {
  line-height: 0;
}

@media (max-width: 480px) {
  .drag-drop-pdf > div > span {
    display: block;
    width: 100%;
    margin: 10px 0;
    line-height: 14px;
  }
}

.drag-drop-pdf p {
  font-size: 16px;
}

.drag-drop-pdf .dropdown {
  width: 280px;
}

  .drag-drop-pdf .dropdown .dropdown-toggle {
    text-align: left;
  }

@media (max-width: 767px) {
  .drag-drop-pdf .dropdown {
    width: 100%;
  }
}

/*inbox*/
.inbox-content {
  background: #fff;
  padding: 15px;
  width: 100%;
}

  .inbox-content .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }

    .inbox-content .header-content h4 {
      font-weight: 700;
      font-size: 14px;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .inbox-content .header-content a {
      color: #333;
    }

      .inbox-content .header-content a:hover {
        color: #00beff;
      }

      .inbox-content .header-content a i {
        font-size: 24px;
      }

  .inbox-content .table tbody tr th i {
    display: inline-block;
    vertical-align: super;
    font-size: 20px;
  }

  .inbox-content .table tr td {
    vertical-align: middle;
  }

    .inbox-content .table tr td .dropdown {
      display: inline-block;
      width: 150px;
      margin-left: 10px;
    }

.out-off-mode-txt:hover {
  text-decoration: none;
}

.out-off-mode-txt span {
  color: white;
  background-color: red;
  padding: 5px 20px 5px 20px;
  font-size: 13px;
}

/*search filter box*/
.search-filter-icon {
  position: relative;
}

.search-filter-box {
  display: none;
  position: absolute;
  right: 4px;
  top: 30px;
  z-index: 9;
  padding: 2px 12px 10px;
  background: #fff;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5);
  width: 280px;
}

  .search-filter-box.show-search-box {
    display: block;
  }

  .search-filter-box input[type="text"], .search-filter-box label, .search-filter-box select {
    display: block;
    width: 100%;
  }

  .search-filter-box > label {
    margin: 6px 0 5px;
  }

  .search-filter-box .custum-radio {
    margin-top: 8px;
  }

.total-count {
  line-height: 30px;
  margin-right: 10px;
}

/*Create folder popup*/
.add-new-folderlist {
  padding-left: 54px;
  margin-top: 6px;
}

  .add-new-folderlist a {
    display: block;
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

/*content wrapper*/
.content-wrapper {
  height: 100%;
}

  .content-wrapper .documentnav {
    position: fixed;
    width: 100%;
    padding: 0 15px;
    background-color: #eff2f9;
    border-bottom: 1px solid #e0e4ee;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

    .content-wrapper .documentnav h2 {
      font-size: 16px;
      font-weight: 300;
      margin-bottom: 0;
    }

      .content-wrapper .documentnav h2 strong {
        font-weight: 900;
      }

    .content-wrapper .documentnav .btn {
      padding: 12px;
    }

/*send page*/
.sendpage form {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
}

@media (max-width: 767px) {
  .sendpage form {
    display: block;
  }
}

.sendpage h3 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
}

  .sendpage h3 span {
    font-size: 14px;
    text-transform: none;
    display: block;
  }

/*left section*/
.leftcolumn {
  background: #fff;
  padding: 10px;
  height: 100%;
  width: 100%;
  max-width: 300px;
}

@media (max-width: 767px) {
  .leftcolumn {
    max-width: 100%;
    margin-bottom: 15px;
  }
}

.leftcolumn .access-password {
  position: relative;
  margin: 5px 0;
}

  .leftcolumn .access-password input {
    padding-right: 34px;
  }

  .leftcolumn .access-password .toggle-password {
    position: absolute;
    top: 8px;
    right: 10px;
    color: #fff;
    cursor: pointer;
  }

.leftcolumn .element-group {
  background-color: #eff2f9;
  padding: 8px 10px 10px;
  margin-bottom: 2px;
}

  .leftcolumn .element-group label {
    display: block;
    margin-bottom: 5px;
    line-height: 17px;
  }

  .leftcolumn .element-group select, .leftcolumn .element-group input {
    width: 100%;
  }

/*right section*/
.rightcolumn {
  min-height: 780px;
  background-color: #e0e4ee;
  padding: 10px;
  margin-left: 15px;
  width: 100%;
}

  .rightcolumn li {
    margin-bottom: 20px;
  }

    .rightcolumn li:last-child {
      margin-bottom: 0;
    }

    .rightcolumn li > div {
      background: #fff;
      padding: 10px;
    }

      .rightcolumn li > div.nextbtn {
        background: none;
        text-align: center;
      }

    .rightcolumn li .messageTemplateDropdown select {
      width: 100%;
    }

  .rightcolumn .dropAreadiv {
    /*float: right;
    position: absolute;
    top: 5px;
    right: 0;*/
    color: #999;
    margin-top: 5px;
  }

  .rightcolumn .table {
    border: none;
    margin-bottom: 10px;
  }

    .rightcolumn .table th, .rightcolumn .table td {
      border: none;
    }

    .rightcolumn .table tbody tr td {
      padding: 0;
      background-color: #272f3b;
      border: 1px solid #fff;
    }

      .rightcolumn .table tbody tr td:first-child {
        width: 44px;
      }

      .rightcolumn .table tbody tr td.image.remove {
        width: 40px;
        background-color: #272f3b;
        padding: 5px 12px;
        line-height: 16px;
        cursor: pointer;
      }

        .rightcolumn .table tbody tr td.image.remove:hover {
          background-color: #d21513;
        }

      .rightcolumn .table tbody tr td .reciptType {
        width: 100%;
      }

.nextbtn {
  margin-top: 12px;
}

.two-fields {
  display: flex;
  justify-content: space-between;
}

  .two-fields input {
    max-width: 44px;
    margin-right: 2px;
  }

.two-box-fields .element-group {
  width: 50%;
  border-left: solid 2px #fff;
}

  .two-box-fields .element-group:first-child {
    border-left: none;
  }

.upload-drives .modal-header {
  border: none;
}

.upload-drives .modal-body {
  padding: 0;
}

  .upload-drives .modal-body .element-group {
    background: transparent;
    padding: 0;
    margin: 0;
  }

    .upload-drives .modal-body .element-group h2 {
      margin-bottom: 5px;
    }

      .upload-drives .modal-body .element-group h2:last-child {
        margin-bottom: 0;
      }

    .upload-drives .modal-body .element-group .checkboxes {
      background: #272f3b;
      display: block;
      height: 30px;
      padding: 10px;
      position: relative;
      color: white;
      font-size: 16px;
      margin-bottom: 0;
      line-height: 7px;
    }

      .upload-drives .modal-body .element-group .checkboxes:hover {
        text-decoration: underline;
      }

.template-modal .modal-body {
  padding: 0;
}

  .template-modal .modal-body .element-group {
    background: #272f3b;
    display: block;
    height: 41px;
    padding: 10px;
    position: relative;
  }

  .template-modal .modal-body label input {
    height: auto;
  }

.sequenceCss {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

  .sequenceCss label {
    margin-bottom: 0;
    line-height: 18px;
  }

/*template page*/
.managepage {
  padding-top: 15px;
  background-color: #e0e4ee;
}

  .managepage h2 {
    font-size: 20px;
    font-weight: 300;
    margin: 20px 0 10px;
  }

  .managepage .templateCreatedDate {
    min-width: 140px;
    width: 100%;
  }

  .managepage .table.table-bordered > tbody > tr > td {
    border: solid 1px #e0e4ee;
    background: #eff2f9;
    vertical-align: middle;
    padding: 6px 8px;
    width: auto;
    border-width: 10px 2px 10px 2px;
  }

    .managepage .table.table-bordered > tbody > tr > td:first-child {
      width: 44px;
    }

      .managepage .table.table-bordered > tbody > tr > td:first-child a {
        font-size: 22px;
        color: #272f3b;
      }

        .managepage .table.table-bordered > tbody > tr > td:first-child a:hover, .managepage .table.table-bordered > tbody > tr > td:first-child a:focus {
          text-decoration: none;
        }

        .managepage .table.table-bordered > tbody > tr > td:first-child a:before {
          font-family: IcoFont !important;
          speak: none;
          font-style: normal;
          font-weight: 400;
          font-variant: normal;
          text-transform: none;
          white-space: nowrap;
          word-wrap: normal;
          direction: ltr;
          line-height: 1;
          -webkit-font-feature-settings: "liga";
          -webkit-font-smoothing: antialiased;
          content: '\ea69';
        }

    .managepage .table.table-bordered > tbody > tr > td.actionableLinke {
      white-space: nowrap;
      padding: 10px 4px;
      text-align: center;
    }

  .managepage .table.table-bordered > tbody > tr.open td {
    background-color: #fff;
    border-bottom-width: 2px;
  }

    .managepage .table.table-bordered > tbody > tr.open td:first-child a:before {
      content: '\ea67';
    }

  .managepage .table.table-bordered > tbody > tr.expandcontent {
    position: relative;
  }

    .managepage .table.table-bordered > tbody > tr.expandcontent h4 {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 3px;
    }

    .managepage .table.table-bordered > tbody > tr.expandcontent > td {
      background: white;
      border-top-width: 2px;
      padding-left: 43px;
      padding-top: 20px;
      padding-bottom: 0;
      display: table-cell;
    }

    .managepage .table.table-bordered > tbody > tr.expandcontent table {
      margin-bottom: 15px;
      width: 100%;
      border: none;
    }

      .managepage .table.table-bordered > tbody > tr.expandcontent table tbody > tr > td {
        padding: 3px 0px;
        font-weight: 300;
      }

        .managepage .table.table-bordered > tbody > tr.expandcontent table tbody > tr > td:first-child {
          width: 180px;
        }

.sendpage .createMessageTemplateform {
  padding-top: 15px;
}

.tab-pane h3 {
  font-size: 16px;
  font-weight: 500;
  padding-left: 3px;
}

.form-content {
  background: #fff;
  padding: 5px 0;
}

  .form-content li {
    margin-bottom: 10px;
    background: #eff2f9;
    margin: 10px 15px;
    padding: 8px 0;
  }

    .form-content li h5 {
      font-weight: 500;
      font-size: 14px;
    }

      .form-content li h5 > span {
        border-bottom: solid 1px #ccc;
        padding-bottom: 2px;
        font-weight: 700;
      }

    .form-content li .yes, .form-content li .no {
      margin-right: 8px;
    }

    .form-content li > label {
      line-height: 20px;
      margin-bottom: 0;
      display: flex;
      align-items: center;
      height: 44px;
      font-weight: 500;
      font-size: 16px;
    }

@media (max-width: 767px) {
  .form-content li > label {
    margin-bottom: 8px;
  }
}

.form-content li > div input + label {
  position: relative;
  top: -3px;
}

.tab-search .box {
  min-width: 44px;
  max-width: 44px;
  height: 44px;
  display: inline-block;
  text-align: center;
  border: solid 1px #e0e4ee;
  vertical-align: top;
  line-height: 44px;
  color: #fff;
  background: #272f3b;
  cursor: pointer;
}

.tab-search .search:hover {
  background: #3ab16d;
  font-weight: 700;
}

.tab-search .block:hover {
  background: #d21513;
  font-weight: 700;
}

/*# sourceMappingURL=main.css.map */
/*contact css*/
.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 44px;
  margin-bottom: 0
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 44px;
  margin: 0;
  opacity: 0
}

  .custom-file-input:focus ~ .custom-file-control {
    border-color: #80bdff;
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25)
  }

    .custom-file-input:focus ~ .custom-file-control::before {
      border-color: #80bdff
    }

  .custom-file-input:lang(en) ~ .custom-file-label::after {
    content: "Browse"
  }

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 44px;
  padding: .375rem .75rem;
  line-height: 32px;
  color: #fff;
  background: #272f3b;
  border: 1px solid #272f3b;
  border-radius: .25rem
}

  .custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(44px - 1px * 2);
    padding: .375rem .75rem;
    line-height: 32px;
    color: #f3db7d;
    content: "Browse";
    background-color: #434b58;
    border-left: 1px solid #272f3b;
    border-radius: 0 .25rem .25rem 0
  }

.form-content li > div .custom-file-label {
  position: absolute;
  top: 0px;
}

.deletd_custom-file::after {
  content: "Delete" !important;
}

.tab-search .box {
  border: none;
}

.profile_pic {
  display: flex;
  flex-wrap: wrap;
}

  .profile_pic h6 {
    font-size: 13px;
  }

.cont_table thead td,
.cont_table thead th {
  border: 1px solid #dee2e6;
  vertical-align: middle;
}

.cont_table {
  border: 1px solid #dee2e6;
}

  .cont_table td, .cont_table th {
    border: 1px solid #dee2e6;
    vertical-align: middle;
  }

.contact_tab .nav-item .active {
  border-top-color: #d21513;
  border-top-width: 2px;
  color: #d21513;
}

.contact_tab .nav-item {
  margin-bottom: -3px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  border-top-width: 2px;
}

.table thead th {
  vertical-align: top;
}

@media (max-width: 767px) {
  .dropdown,
  .w-300,
  .w-50,
  .cont_table,
  .profile_pic > .w-170 {
    max-width: 100%;
    width: 100% !important;
  }

  .btn {
    padding: 5px 10px;
    font-size: 13px
  }

  .contact_tab .nav-item a {
    font-size: 10px;
    padding: .5rem .1rem;
  }

  .profile_pic {
    text-align: center;
    margin: auto;
    display: block;
  }

    .profile_pic > div > img {
      margin: auto;
    }
}

.bg-white {
  background-color: #fff !important
}

.bg-transparent {
  background-color: transparent !important
}

.border {
  border: 1px solid #dee2e6 !important
}

.border-top {
  border-top: 1px solid #dee2e6 !important
}

.border-right {
  border-right: 1px solid #dee2e6 !important
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important
}

.border-left {
  border-left: 1px solid #dee2e6 !important
}

.border-0 {
  border: 0 !important
}

.border-top-0 {
  border-top: 0 !important
}

.border-right-0 {
  border-right: 0 !important
}

.border-bottom-0 {
  border-bottom: 0 !important
}

.border-left-0 {
  border-left: 0 !important
}

.border-primary {
  border-color: #007bff !important
}

.border-secondary {
  border-color: #6c757d !important
}

.border-success {
  border-color: #28a745 !important
}

.border-info {
  border-color: #17a2b8 !important
}

.border-warning {
  border-color: #ffc107 !important
}

.border-danger {
  border-color: #dc3545 !important
}

.border-light {
  border-color: #f8f9fa !important
}

.border-dark {
  border-color: #343a40 !important
}

.border-white {
  border-color: #fff !important
}

.rounded {
  border-radius: .25rem !important
}

.rounded-top {
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important
}

.rounded-right {
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: .25rem !important
}

.rounded-bottom {
  border-bottom-right-radius: .25rem !important;
  border-bottom-left-radius: .25rem !important
}

.rounded-left {
  border-top-left-radius: .25rem !important;
  border-bottom-left-radius: .25rem !important
}

.rounded-circle {
  border-radius: 50% !important
}

.rounded-0 {
  border-radius: 0 !important
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important
}

@media (min-width:576px) {
  .d-sm-none {
    display: none !important
  }

  .d-sm-inline {
    display: inline !important
  }

  .d-sm-inline-block {
    display: inline-block !important
  }

  .d-sm-block {
    display: block !important
  }

  .d-sm-table {
    display: table !important
  }

  .d-sm-table-row {
    display: table-row !important
  }

  .d-sm-table-cell {
    display: table-cell !important
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important
  }
}

@media (min-width:768px) {
  .d-md-none {
    display: none !important
  }

  .d-md-inline {
    display: inline !important
  }

  .d-md-inline-block {
    display: inline-block !important
  }

  .d-md-block {
    display: block !important
  }

  .d-md-table {
    display: table !important
  }

  .d-md-table-row {
    display: table-row !important
  }

  .d-md-table-cell {
    display: table-cell !important
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important
  }
}

@media (min-width:992px) {
  .d-lg-none {
    display: none !important
  }

  .d-lg-inline {
    display: inline !important
  }

  .d-lg-inline-block {
    display: inline-block !important
  }

  .d-lg-block {
    display: block !important
  }

  .d-lg-table {
    display: table !important
  }

  .d-lg-table-row {
    display: table-row !important
  }

  .d-lg-table-cell {
    display: table-cell !important
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important
  }
}

@media (min-width:1200px) {
  .d-xl-none {
    display: none !important
  }

  .d-xl-inline {
    display: inline !important
  }

  .d-xl-inline-block {
    display: inline-block !important
  }

  .d-xl-block {
    display: block !important
  }

  .d-xl-table {
    display: table !important
  }

  .d-xl-table-row {
    display: table-row !important
  }

  .d-xl-table-cell {
    display: table-cell !important
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important
  }
}

@media print {
  .d-print-none {
    display: none !important
  }

  .d-print-inline {
    display: inline !important
  }

  .d-print-inline-block {
    display: inline-block !important
  }

  .d-print-block {
    display: block !important
  }

  .d-print-table {
    display: table !important
  }

  .d-print-table-row {
    display: table-row !important
  }

  .d-print-table-cell {
    display: table-cell !important
  }

  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important
  }
}


.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important
}

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important
}

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important
}

.w-25 {
  width: 25% !important
}

.w-42 {
  width: 42% !important
}

.w-50 {
  width: 50% !important
}

.w-75 {
  width: 75% !important
}

.w-100 {
  width: 100% !important
}

.h-34 {
  height: 34px !important
}

.h-25 {
  height: 25% !important
}

.h-50 {
  height: 50% !important
}

.h-75 {
  height: 75% !important
}

.h-100 {
  height: 100% !important
}

.mw-100 {
  max-width: 100% !important
}

.mh-100 {
  max-height: 100% !important
}

.m-0 {
  margin: 0 !important
}

.mt-0, .my-0 {
  margin-top: 0 !important
}

.mr-0, .mx-0 {
  margin-right: 0 !important
}

.mb-0, .my-0 {
  margin-bottom: 0 !important
}

.ml-0, .mx-0 {
  margin-left: 0 !important
}

.m-1 {
  margin: .25rem !important
}

.mt-1, .my-1 {
  margin-top: .25rem !important
}

.mt-n1 {
  margin-top: -.25rem !important
}

.mr-1, .mx-1 {
  margin-right: .25rem !important
}

.mb-1, .my-1 {
  margin-bottom: .25rem !important
}

.ml-1, .mx-1 {
  margin-left: .25rem !important
}

.m-2 {
  margin: .5rem !important
}

.mt-2, .my-2 {
  margin-top: .5rem !important
}

.mr-2, .mx-2 {
  margin-right: .5rem !important
}

.mb-2, .my-2 {
  margin-bottom: .5rem !important
}

.ml-2, .mx-2 {
  margin-left: .5rem !important
}

.m-3 {
  margin: 1rem !important
}

.mt-3, .my-3 {
  margin-top: 1rem !important
}

.mr-3, .mx-3 {
  margin-right: 1rem !important
}

.mb-3, .my-3 {
  margin-bottom: 1rem !important
}

.ml-3, .mx-3 {
  margin-left: 1rem !important
}

.m-4 {
  margin: 1.5rem !important
}

.mt-4, .my-4 {
  margin-top: 1.5rem !important
}

.mr-4, .mx-4 {
  margin-right: 1.5rem !important
}

.mb-4, .my-4 {
  margin-bottom: 1.5rem !important
}

.ml-4, .mx-4 {
  margin-left: 1.5rem !important
}

.m-5 {
  margin: 3rem !important
}

.mt-5, .my-5 {
  margin-top: 3rem !important
}

.mr-5, .mx-5 {
  margin-right: 3rem !important
}

.mb-5, .my-5 {
  margin-bottom: 3rem !important
}

.ml-5, .mx-5 {
  margin-left: 3rem !important
}

.p-0 {
  padding: 0 !important
}

.pt-0, .py-0 {
  padding-top: 0 !important
}

.pr-0, .px-0 {
  padding-right: 0 !important
}

.pb-0, .py-0 {
  padding-bottom: 0 !important
}

.pl-0, .px-0 {
  padding-left: 0 !important
}

.p-1 {
  padding: .25rem !important
}

.pt-1, .py-1 {
  padding-top: .25rem !important
}

.pr-1, .px-1 {
  padding-right: .25rem !important
}

.pb-1, .py-1 {
  padding-bottom: .25rem !important
}

.pl-1, .px-1 {
  padding-left: .25rem !important
}

.p-2 {
  padding: .5rem !important
}

.pt-2, .py-2 {
  padding-top: .5rem !important
}

.pr-2, .px-2 {
  padding-right: .5rem !important
}

.pb-2, .py-2 {
  padding-bottom: .5rem !important
}

.pl-2, .px-2 {
  padding-left: .5rem !important
}

.p-3 {
  padding: 1rem !important
}

.pt-3, .py-3 {
  padding-top: 1rem !important
}

.pr-3, .px-3 {
  padding-right: 1rem !important
}

.pb-3, .py-3 {
  padding-bottom: 1rem !important
}

.pl-3, .px-3 {
  padding-left: 1rem !important
}

.p-4 {
  padding: 1.5rem !important
}

.pt-4, .py-4 {
  padding-top: 1.5rem !important
}

.pr-4, .px-4 {
  padding-right: 1.5rem !important
}

.pb-4, .py-4 {
  padding-bottom: 1.5rem !important
}

.pl-4, .px-4 {
  padding-left: 1.5rem !important
}

.p-5 {
  padding: 3rem !important
}

.pt-5, .py-5 {
  padding-top: 3rem !important
}

.pr-5, .px-5 {
  padding-right: 3rem !important
}

.pb-5, .py-5 {
  padding-bottom: 3rem !important
}

.pl-5, .px-5 {
  padding-left: 3rem !important
}

.m-auto {
  margin: auto !important
}

.mt-auto, .my-auto {
  margin-top: auto !important
}

.mr-auto, .mx-auto {
  margin-right: auto !important
}

.mb-auto, .my-auto {
  margin-bottom: auto !important
}

.ml-auto, .mx-auto {
  margin-left: auto !important
}

@media (min-width:576px) {
  .m-sm-0 {
    margin: 0 !important
  }

  .mt-sm-0, .my-sm-0 {
    margin-top: 0 !important
  }

  .mr-sm-0, .mx-sm-0 {
    margin-right: 0 !important
  }

  .mb-sm-0, .my-sm-0 {
    margin-bottom: 0 !important
  }

  .ml-sm-0, .mx-sm-0 {
    margin-left: 0 !important
  }

  .m-sm-1 {
    margin: .25rem !important
  }

  .mt-sm-1, .my-sm-1 {
    margin-top: .25rem !important
  }

  .mr-sm-1, .mx-sm-1 {
    margin-right: .25rem !important
  }

  .mb-sm-1, .my-sm-1 {
    margin-bottom: .25rem !important
  }

  .ml-sm-1, .mx-sm-1 {
    margin-left: .25rem !important
  }

  .m-sm-2 {
    margin: .5rem !important
  }

  .mt-sm-2, .my-sm-2 {
    margin-top: .5rem !important
  }

  .mr-sm-2, .mx-sm-2 {
    margin-right: .5rem !important
  }

  .mb-sm-2, .my-sm-2 {
    margin-bottom: .5rem !important
  }

  .ml-sm-2, .mx-sm-2 {
    margin-left: .5rem !important
  }

  .m-sm-3 {
    margin: 1rem !important
  }

  .mt-sm-3, .my-sm-3 {
    margin-top: 1rem !important
  }

  .mr-sm-3, .mx-sm-3 {
    margin-right: 1rem !important
  }

  .mb-sm-3, .my-sm-3 {
    margin-bottom: 1rem !important
  }

  .ml-sm-3, .mx-sm-3 {
    margin-left: 1rem !important
  }

  .m-sm-4 {
    margin: 1.5rem !important
  }

  .mt-sm-4, .my-sm-4 {
    margin-top: 1.5rem !important
  }

  .mr-sm-4, .mx-sm-4 {
    margin-right: 1.5rem !important
  }

  .mb-sm-4, .my-sm-4 {
    margin-bottom: 1.5rem !important
  }

  .ml-sm-4, .mx-sm-4 {
    margin-left: 1.5rem !important
  }

  .m-sm-5 {
    margin: 3rem !important
  }

  .mt-sm-5, .my-sm-5 {
    margin-top: 3rem !important
  }

  .mr-sm-5, .mx-sm-5 {
    margin-right: 3rem !important
  }

  .mb-sm-5, .my-sm-5 {
    margin-bottom: 3rem !important
  }

  .ml-sm-5, .mx-sm-5 {
    margin-left: 3rem !important
  }

  .p-sm-0 {
    padding: 0 !important
  }

  .pt-sm-0, .py-sm-0 {
    padding-top: 0 !important
  }

  .pr-sm-0, .px-sm-0 {
    padding-right: 0 !important
  }

  .pb-sm-0, .py-sm-0 {
    padding-bottom: 0 !important
  }

  .pl-sm-0, .px-sm-0 {
    padding-left: 0 !important
  }

  .p-sm-1 {
    padding: .25rem !important
  }

  .pt-sm-1, .py-sm-1 {
    padding-top: .25rem !important
  }

  .pr-sm-1, .px-sm-1 {
    padding-right: .25rem !important
  }

  .pb-sm-1, .py-sm-1 {
    padding-bottom: .25rem !important
  }

  .pl-sm-1, .px-sm-1 {
    padding-left: .25rem !important
  }

  .p-sm-2 {
    padding: .5rem !important
  }

  .pt-sm-2, .py-sm-2 {
    padding-top: .5rem !important
  }

  .pr-sm-2, .px-sm-2 {
    padding-right: .5rem !important
  }

  .pb-sm-2, .py-sm-2 {
    padding-bottom: .5rem !important
  }

  .pl-sm-2, .px-sm-2 {
    padding-left: .5rem !important
  }

  .p-sm-3 {
    padding: 1rem !important
  }

  .pt-sm-3, .py-sm-3 {
    padding-top: 1rem !important
  }

  .pr-sm-3, .px-sm-3 {
    padding-right: 1rem !important
  }

  .pb-sm-3, .py-sm-3 {
    padding-bottom: 1rem !important
  }

  .pl-sm-3, .px-sm-3 {
    padding-left: 1rem !important
  }

  .p-sm-4 {
    padding: 1.5rem !important
  }

  .pt-sm-4, .py-sm-4 {
    padding-top: 1.5rem !important
  }

  .pr-sm-4, .px-sm-4 {
    padding-right: 1.5rem !important
  }

  .pb-sm-4, .py-sm-4 {
    padding-bottom: 1.5rem !important
  }

  .pl-sm-4, .px-sm-4 {
    padding-left: 1.5rem !important
  }

  .p-sm-5 {
    padding: 3rem !important
  }

  .pt-sm-5, .py-sm-5 {
    padding-top: 3rem !important
  }

  .pr-sm-5, .px-sm-5 {
    padding-right: 3rem !important
  }

  .pb-sm-5, .py-sm-5 {
    padding-bottom: 3rem !important
  }

  .pl-sm-5, .px-sm-5 {
    padding-left: 3rem !important
  }

  .m-sm-auto {
    margin: auto !important
  }

  .mt-sm-auto, .my-sm-auto {
    margin-top: auto !important
  }

  .mr-sm-auto, .mx-sm-auto {
    margin-right: auto !important
  }

  .mb-sm-auto, .my-sm-auto {
    margin-bottom: auto !important
  }

  .ml-sm-auto, .mx-sm-auto {
    margin-left: auto !important
  }
}

@media (min-width:768px) {
  .m-md-0 {
    margin: 0 !important
  }

  .mt-md-0, .my-md-0 {
    margin-top: 0 !important
  }

  .mr-md-0, .mx-md-0 {
    margin-right: 0 !important
  }

  .mb-md-0, .my-md-0 {
    margin-bottom: 0 !important
  }

  .ml-md-0, .mx-md-0 {
    margin-left: 0 !important
  }

  .m-md-1 {
    margin: .25rem !important
  }

  .mt-md-1, .my-md-1 {
    margin-top: .25rem !important
  }

  .mr-md-1, .mx-md-1 {
    margin-right: .25rem !important
  }

  .mb-md-1, .my-md-1 {
    margin-bottom: .25rem !important
  }

  .ml-md-1, .mx-md-1 {
    margin-left: .25rem !important
  }

  .m-md-2 {
    margin: .5rem !important
  }

  .mt-md-2, .my-md-2 {
    margin-top: .5rem !important
  }

  .mr-md-2, .mx-md-2 {
    margin-right: .5rem !important
  }

  .mb-md-2, .my-md-2 {
    margin-bottom: .5rem !important
  }

  .ml-md-2, .mx-md-2 {
    margin-left: .5rem !important
  }

  .m-md-3 {
    margin: 1rem !important
  }

  .mt-md-3, .my-md-3 {
    margin-top: 1rem !important
  }

  .mr-md-3, .mx-md-3 {
    margin-right: 1rem !important
  }

  .mb-md-3, .my-md-3 {
    margin-bottom: 1rem !important
  }

  .ml-md-3, .mx-md-3 {
    margin-left: 1rem !important
  }

  .m-md-4 {
    margin: 1.5rem !important
  }

  .mt-md-4, .my-md-4 {
    margin-top: 1.5rem !important
  }

  .mr-md-4, .mx-md-4 {
    margin-right: 1.5rem !important
  }

  .mb-md-4, .my-md-4 {
    margin-bottom: 1.5rem !important
  }

  .ml-md-4, .mx-md-4 {
    margin-left: 1.5rem !important
  }

  .m-md-5 {
    margin: 3rem !important
  }

  .mt-md-5, .my-md-5 {
    margin-top: 3rem !important
  }

  .mr-md-5, .mx-md-5 {
    margin-right: 3rem !important
  }

  .mb-md-5, .my-md-5 {
    margin-bottom: 3rem !important
  }

  .ml-md-5, .mx-md-5 {
    margin-left: 3rem !important
  }

  .p-md-0 {
    padding: 0 !important
  }

  .pt-md-0, .py-md-0 {
    padding-top: 0 !important
  }

  .pr-md-0, .px-md-0 {
    padding-right: 0 !important
  }

  .pb-md-0, .py-md-0 {
    padding-bottom: 0 !important
  }

  .pl-md-0, .px-md-0 {
    padding-left: 0 !important
  }

  .p-md-1 {
    padding: .25rem !important
  }

  .pt-md-1, .py-md-1 {
    padding-top: .25rem !important
  }

  .pr-md-1, .px-md-1 {
    padding-right: .25rem !important
  }

  .pb-md-1, .py-md-1 {
    padding-bottom: .25rem !important
  }

  .pl-md-1, .px-md-1 {
    padding-left: .25rem !important
  }

  .p-md-2 {
    padding: .5rem !important
  }

  .pt-md-2, .py-md-2 {
    padding-top: .5rem !important
  }

  .pr-md-2, .px-md-2 {
    padding-right: .5rem !important
  }

  .pb-md-2, .py-md-2 {
    padding-bottom: .5rem !important
  }

  .pl-md-2, .px-md-2 {
    padding-left: .5rem !important
  }

  .p-md-3 {
    padding: 1rem !important
  }

  .pt-md-3, .py-md-3 {
    padding-top: 1rem !important
  }

  .pr-md-3, .px-md-3 {
    padding-right: 1rem !important
  }

  .pb-md-3, .py-md-3 {
    padding-bottom: 1rem !important
  }

  .pl-md-3, .px-md-3 {
    padding-left: 1rem !important
  }

  .p-md-4 {
    padding: 1.5rem !important
  }

  .pt-md-4, .py-md-4 {
    padding-top: 1.5rem !important
  }

  .pr-md-4, .px-md-4 {
    padding-right: 1.5rem !important
  }

  .pb-md-4, .py-md-4 {
    padding-bottom: 1.5rem !important
  }

  .pl-md-4, .px-md-4 {
    padding-left: 1.5rem !important
  }

  .p-md-5 {
    padding: 3rem !important
  }

  .pt-md-5, .py-md-5 {
    padding-top: 3rem !important
  }

  .pr-md-5, .px-md-5 {
    padding-right: 3rem !important
  }

  .pb-md-5, .py-md-5 {
    padding-bottom: 3rem !important
  }

  .pl-md-5, .px-md-5 {
    padding-left: 3rem !important
  }

  .m-md-auto {
    margin: auto !important
  }

  .mt-md-auto, .my-md-auto {
    margin-top: auto !important
  }

  .mr-md-auto, .mx-md-auto {
    margin-right: auto !important
  }

  .mb-md-auto, .my-md-auto {
    margin-bottom: auto !important
  }

  .ml-md-auto, .mx-md-auto {
    margin-left: auto !important
  }
}

@media (min-width:992px) {
  .m-lg-0 {
    margin: 0 !important
  }

  .mt-lg-0, .my-lg-0 {
    margin-top: 0 !important
  }

  .mr-lg-0, .mx-lg-0 {
    margin-right: 0 !important
  }

  .mb-lg-0, .my-lg-0 {
    margin-bottom: 0 !important
  }

  .ml-lg-0, .mx-lg-0 {
    margin-left: 0 !important
  }

  .m-lg-1 {
    margin: .25rem !important
  }

  .mt-lg-1, .my-lg-1 {
    margin-top: .25rem !important
  }

  .mr-lg-1, .mx-lg-1 {
    margin-right: .25rem !important
  }

  .mb-lg-1, .my-lg-1 {
    margin-bottom: .25rem !important
  }

  .ml-lg-1, .mx-lg-1 {
    margin-left: .25rem !important
  }

  .m-lg-2 {
    margin: .5rem !important
  }

  .mt-lg-2, .my-lg-2 {
    margin-top: .5rem !important
  }

  .mr-lg-2, .mx-lg-2 {
    margin-right: .5rem !important
  }

  .mb-lg-2, .my-lg-2 {
    margin-bottom: .5rem !important
  }

  .ml-lg-2, .mx-lg-2 {
    margin-left: .5rem !important
  }

  .m-lg-3 {
    margin: 1rem !important
  }

  .mt-lg-3, .my-lg-3 {
    margin-top: 1rem !important
  }

  .mr-lg-3, .mx-lg-3 {
    margin-right: 1rem !important
  }

  .mb-lg-3, .my-lg-3 {
    margin-bottom: 1rem !important
  }

  .ml-lg-3, .mx-lg-3 {
    margin-left: 1rem !important
  }

  .m-lg-4 {
    margin: 1.5rem !important
  }

  .mt-lg-4, .my-lg-4 {
    margin-top: 1.5rem !important
  }

  .mr-lg-4, .mx-lg-4 {
    margin-right: 1.5rem !important
  }

  .mb-lg-4, .my-lg-4 {
    margin-bottom: 1.5rem !important
  }

  .ml-lg-4, .mx-lg-4 {
    margin-left: 1.5rem !important
  }

  .m-lg-5 {
    margin: 3rem !important
  }

  .mt-lg-5, .my-lg-5 {
    margin-top: 3rem !important
  }

  .mr-lg-5, .mx-lg-5 {
    margin-right: 3rem !important
  }

  .mb-lg-5, .my-lg-5 {
    margin-bottom: 3rem !important
  }

  .ml-lg-5, .mx-lg-5 {
    margin-left: 3rem !important
  }

  .p-lg-0 {
    padding: 0 !important
  }

  .pt-lg-0, .py-lg-0 {
    padding-top: 0 !important
  }

  .pr-lg-0, .px-lg-0 {
    padding-right: 0 !important
  }

  .pb-lg-0, .py-lg-0 {
    padding-bottom: 0 !important
  }

  .pl-lg-0, .px-lg-0 {
    padding-left: 0 !important
  }

  .p-lg-1 {
    padding: .25rem !important
  }

  .pt-lg-1, .py-lg-1 {
    padding-top: .25rem !important
  }

  .pr-lg-1, .px-lg-1 {
    padding-right: .25rem !important
  }

  .pb-lg-1, .py-lg-1 {
    padding-bottom: .25rem !important
  }

  .pl-lg-1, .px-lg-1 {
    padding-left: .25rem !important
  }

  .p-lg-2 {
    padding: .5rem !important
  }

  .pt-lg-2, .py-lg-2 {
    padding-top: .5rem !important
  }

  .pr-lg-2, .px-lg-2 {
    padding-right: .5rem !important
  }

  .pb-lg-2, .py-lg-2 {
    padding-bottom: .5rem !important
  }

  .pl-lg-2, .px-lg-2 {
    padding-left: .5rem !important
  }

  .p-lg-3 {
    padding: 1rem !important
  }

  .pt-lg-3, .py-lg-3 {
    padding-top: 1rem !important
  }

  .pr-lg-3, .px-lg-3 {
    padding-right: 1rem !important
  }

  .pb-lg-3, .py-lg-3 {
    padding-bottom: 1rem !important
  }

  .pl-lg-3, .px-lg-3 {
    padding-left: 1rem !important
  }

  .p-lg-4 {
    padding: 1.5rem !important
  }

  .pt-lg-4, .py-lg-4 {
    padding-top: 1.5rem !important
  }

  .pr-lg-4, .px-lg-4 {
    padding-right: 1.5rem !important
  }

  .pb-lg-4, .py-lg-4 {
    padding-bottom: 1.5rem !important
  }

  .pl-lg-4, .px-lg-4 {
    padding-left: 1.5rem !important
  }

  .p-lg-5 {
    padding: 3rem !important
  }

  .pt-lg-5, .py-lg-5 {
    padding-top: 3rem !important
  }

  .pr-lg-5, .px-lg-5 {
    padding-right: 3rem !important
  }

  .pb-lg-5, .py-lg-5 {
    padding-bottom: 3rem !important
  }

  .pl-lg-5, .px-lg-5 {
    padding-left: 3rem !important
  }

  .m-lg-auto {
    margin: auto !important
  }

  .mt-lg-auto, .my-lg-auto {
    margin-top: auto !important
  }

  .mr-lg-auto, .mx-lg-auto {
    margin-right: auto !important
  }

  .mb-lg-auto, .my-lg-auto {
    margin-bottom: auto !important
  }

  .ml-lg-auto, .mx-lg-auto {
    margin-left: auto !important
  }
}

@media (min-width:1200px) {
  .m-xl-0 {
    margin: 0 !important
  }

  .mt-xl-0, .my-xl-0 {
    margin-top: 0 !important
  }

  .mr-xl-0, .mx-xl-0 {
    margin-right: 0 !important
  }

  .mb-xl-0, .my-xl-0 {
    margin-bottom: 0 !important
  }

  .ml-xl-0, .mx-xl-0 {
    margin-left: 0 !important
  }

  .m-xl-1 {
    margin: .25rem !important
  }

  .mt-xl-1, .my-xl-1 {
    margin-top: .25rem !important
  }

  .mr-xl-1, .mx-xl-1 {
    margin-right: .25rem !important
  }

  .mb-xl-1, .my-xl-1 {
    margin-bottom: .25rem !important
  }

  .ml-xl-1, .mx-xl-1 {
    margin-left: .25rem !important
  }

  .m-xl-2 {
    margin: .5rem !important
  }

  .mt-xl-2, .my-xl-2 {
    margin-top: .5rem !important
  }

  .mr-xl-2, .mx-xl-2 {
    margin-right: .5rem !important
  }

  .mb-xl-2, .my-xl-2 {
    margin-bottom: .5rem !important
  }

  .ml-xl-2, .mx-xl-2 {
    margin-left: .5rem !important
  }

  .m-xl-3 {
    margin: 1rem !important
  }

  .mt-xl-3, .my-xl-3 {
    margin-top: 1rem !important
  }

  .mr-xl-3, .mx-xl-3 {
    margin-right: 1rem !important
  }

  .mb-xl-3, .my-xl-3 {
    margin-bottom: 1rem !important
  }

  .ml-xl-3, .mx-xl-3 {
    margin-left: 1rem !important
  }

  .m-xl-4 {
    margin: 1.5rem !important
  }

  .mt-xl-4, .my-xl-4 {
    margin-top: 1.5rem !important
  }

  .mr-xl-4, .mx-xl-4 {
    margin-right: 1.5rem !important
  }

  .mb-xl-4, .my-xl-4 {
    margin-bottom: 1.5rem !important
  }

  .ml-xl-4, .mx-xl-4 {
    margin-left: 1.5rem !important
  }

  .m-xl-5 {
    margin: 3rem !important
  }

  .mt-xl-5, .my-xl-5 {
    margin-top: 3rem !important
  }

  .mr-xl-5, .mx-xl-5 {
    margin-right: 3rem !important
  }

  .mb-xl-5, .my-xl-5 {
    margin-bottom: 3rem !important
  }

  .ml-xl-5, .mx-xl-5 {
    margin-left: 3rem !important
  }

  .p-xl-0 {
    padding: 0 !important
  }

  .pt-xl-0, .py-xl-0 {
    padding-top: 0 !important
  }

  .pr-xl-0, .px-xl-0 {
    padding-right: 0 !important
  }

  .pb-xl-0, .py-xl-0 {
    padding-bottom: 0 !important
  }

  .pl-xl-0, .px-xl-0 {
    padding-left: 0 !important
  }

  .p-xl-1 {
    padding: .25rem !important
  }

  .pt-xl-1, .py-xl-1 {
    padding-top: .25rem !important
  }

  .pr-xl-1, .px-xl-1 {
    padding-right: .25rem !important
  }

  .pb-xl-1, .py-xl-1 {
    padding-bottom: .25rem !important
  }

  .pl-xl-1, .px-xl-1 {
    padding-left: .25rem !important
  }

  .p-xl-2 {
    padding: .5rem !important
  }

  .pt-xl-2, .py-xl-2 {
    padding-top: .5rem !important
  }

  .pr-xl-2, .px-xl-2 {
    padding-right: .5rem !important
  }

  .pb-xl-2, .py-xl-2 {
    padding-bottom: .5rem !important
  }

  .pl-xl-2, .px-xl-2 {
    padding-left: .5rem !important
  }

  .p-xl-3 {
    padding: 1rem !important
  }

  .pt-xl-3, .py-xl-3 {
    padding-top: 1rem !important
  }

  .pr-xl-3, .px-xl-3 {
    padding-right: 1rem !important
  }

  .pb-xl-3, .py-xl-3 {
    padding-bottom: 1rem !important
  }

  .pl-xl-3, .px-xl-3 {
    padding-left: 1rem !important
  }

  .p-xl-4 {
    padding: 1.5rem !important
  }

  .pt-xl-4, .py-xl-4 {
    padding-top: 1.5rem !important
  }

  .pr-xl-4, .px-xl-4 {
    padding-right: 1.5rem !important
  }

  .pb-xl-4, .py-xl-4 {
    padding-bottom: 1.5rem !important
  }

  .pl-xl-4, .px-xl-4 {
    padding-left: 1.5rem !important
  }

  .p-xl-5 {
    padding: 3rem !important
  }

  .pt-xl-5, .py-xl-5 {
    padding-top: 3rem !important
  }

  .pr-xl-5, .px-xl-5 {
    padding-right: 3rem !important
  }

  .pb-xl-5, .py-xl-5 {
    padding-bottom: 3rem !important
  }

  .pl-xl-5, .px-xl-5 {
    padding-left: 3rem !important
  }

  .m-xl-auto {
    margin: auto !important
  }

  .mt-xl-auto, .my-xl-auto {
    margin-top: auto !important
  }

  .mr-xl-auto, .mx-xl-auto {
    margin-right: auto !important
  }

  .mb-xl-auto, .my-xl-auto {
    margin-bottom: auto !important
  }

  .ml-xl-auto, .mx-xl-auto {
    margin-left: auto !important
  }
}

.profileimage {
  width: 181px;
  height: 185px;
}

.declineTemp .declineTempText.form-control {
  margin: 2px 0px;
  width: 100%;
  height: auto;
}

.declineTemp .row {
  display: flex;
  align-items: center;
}



.declineTempText.form-control {
  height: auto;
  font-size: 14px;
  line-height: 1.428571429;
  color: #ffffff;
  background-color: #272f3b;
  border: 1px solid #272f3b;
  border-radius: 0px;
  margin: 2px 0px;
  resize: none;
}

.readableText {
  background-color: #aeaeae;
  padding: 3px;
}

.form-content li > div > label {
  line-height: 20px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  height: 44px;
  font-weight: 500;
  font-size: 16px;
}

.access-password input::-webkit-input-placeholder {
  font-size: 10px;
}

.access-password input::-moz-placeholder {
  font-size: 10px;
}

.access-password input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  width: 100%;
  font-size: 10px;
}

.form-control[disabled] {
  color: #5a6270 !important;
  background-color: #eee !important;
}

form span.disabled input {
  background-color: #e0e4ee;
  border-color: #e0e4ee;
  color: #5a6270;
  cursor: default;
}

.loader {
  position: fixed;
  opacity: .8;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 100000;
  color: #fff;
  background-image: url(../../img/rsign-loader1.gif);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: #fff;
  padding: 10px;
  border: 1px solid #ff0000;
}

.settingsText {
  background: #e0e4ee;
  margin: 11px 10px 0 0;
  padding: 3px 0px 3px 10px;
}

  .settingsText > h3 {
    font-weight: bold;
    font-size: 16px;
  }

@media (max-width: 766px) {
  .personaltab > .collapsebtn.is-active {
    top: 211px !important;
    left: 195px;
  }

  .personaltab.showNav > .collapsebtn {
    top: 211px !important;
  }
}

@media (max-width: 586px) {
  .personaltab > .collapsebtn.is-active {
    top: 211px !important;
    left: 66px;
  }
}

.settingtab > .tab-pane.active {
  overflow-y: auto;
}

.labelautoheight {
  height: auto !important;
  min-height: 44px;
}

.labelsideheader {
  display: inline;
  font-weight: bold;
  font-size: 16px;
}

.chkOverRide, .chkAllOverride {
  margin: 15px 15px 15px 55px !important;
  text-align: center;
}

.chklock, .chkAllLock {
  margin: 15px 15px 15px 20px !important;
  text-align: center;
}

.divMoreSettings {
  justify-content: center;
}

.liOverride {
  margin-bottom: -22px !important;
  margin-top: -25px !important;
}

.divColorPicker {
  background: none;
  border: none;
  width: 46px;
  padding-left: 0px;
  height: 51px;
  margin-top: -3px;
}

.divColorPickerIE {
  width: 43%;
  position: absolute;
}

.divColorText {
  width: 45%;
  position: absolute;
  height: 44px;
  margin-left: 2px;
}

@-moz-document url-prefix() {
  .divColorPicker {
    margin-top: 0px;
    height: 44px;
  }
}

.settingHistory {
  font-size: 24px;
}

.modal-open {
  overflow: hidden
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0
}

  .modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out;
    -webkit-transform: translate(0,-25%);
    -ms-transform: translate(0,-25%);
    -o-transform: translate(0,-25%);
    transform: translate(0,-25%)
  }

  .modal.in .modal-dialog {
    -webkit-transform: translate(0,0);
    -ms-transform: translate(0,0);
    -o-transform: translate(0,0);
    transform: translate(0,0)
  }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto
}

.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
  box-shadow: 0 3px 9px rgba(0,0,0,.5)
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000
}

  .modal-backdrop.fade {
    filter: alpha(opacity=0);
    opacity: 0
  }

  .modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .5
  }

.modal-header {
  min-height: 16.43px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5
}

  .modal-header .close {
    margin-top: -2px
  }

.modal-title {
  margin: 0;
  line-height: 1.42857143
}

.modal-body {
  position: relative;
  padding: 15px
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll
}

.modal-open .modal {
  z-index: 1060;
}

.modal-backdrop.fade.in {
  opacity: .5;
  z-index: 1040 !important;
}

.modal-scrollable .header {
  position: relative;
}

.modal-scrollable {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
}

.modal-backdrop {
  background: rgba(224, 228, 238, 0.7);
}

.modal-dialog .header {
  padding: 10px;
  border-top: none;
  background: white;
}

#historyModal .modal-dialog .modalcontent {
  background-color: #e5e8ed;
  padding: 0px 5px;
  position: relative;
}

.modal-dialog {
  outline: none;
}

/* --- Dialog (modals and profile pages) --- */

#historyModal .widthModalbox {
  left: 50%;
  top: 55%;
  padding: 0;
  width: 1220px;
  position: absolute;
  margin: -275px 0 0 -645px !important;
  box-shadow: 0 2px 15px 15px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 2px 15px 15px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 2px 15px 15px rgba(0, 0, 0, 0.5);
  /* box-shadow: inset 0 0 6px 6px rgba(0, 0, 0, 0.2), 0 6px 10px 5px rgba(0, 0, 0, 0.19);
    -webkit-box-shadow: inset 0 0 6px 6px rgba(0, 0, 0, 0.2), 0 6px 10px 5px rgba(0, 0, 0, 0.19);
    -moz-box-shadow: inset 0 0 6px 6px rgba(0, 0, 0, 0.2), 0 6px 10px 5px rgba(0, 0, 0, 0.19);*/
  border: 1px solid #ffffff;
  border-bottom: 12px solid #ffffff;
}

.tblSettingsHistory.table > tbody > tr > td {
  word-break: break-word;
  border-width: 5px 2px 5px 2px;
  border-color: #e5e8ed;
  background: #eff2f9;
  vertical-align: middle;
}

.tblSettingsHistory.table > thead > tr > th {
  word-break: normal;
  border-width: 5px 2px 5px 2px;
  border-color: #e5e8ed;
  background: #e0e4ee;
  vertical-align: middle;
}

.tblSettingsHistory.table > tbody > tr > td > label {
  color: black;
  font-weight: 300;
  margin-bottom: 0;
}

.tblSettingsHistory.table > thead > tr > th.mainHeaderPrevHistory {
  text-align: center;
  background: #c9d0e3;
}

.tblSettingsHistory.table > thead > tr > th.mainHeaderHistory {
  text-align: center;
  background: #c9d0e3;
}

.tblSettingsHistory.table > thead > tr > th > label {
  color: #5a6270;
  font-weight: 600;
  margin-bottom: 0;
}

.w-338 {
  max-width: 338px !important;
  width: 100%;
}

.lblNotFound {
  text-align: center;
  font-weight: bold;
  color: #5a6270;
  margin-top: 50px;
}

.iFontPassword {
  float: right;
  margin-top: 4px;
  cursor: pointer;
}

.ContactDetail-Man {
  float: right;
  margin-top: -28px;
  color: white;
  margin-right: 5px;
  font-size: 18px;
  cursor: pointer;
}

.contactListTable.table > tbody > tr > td {
  word-break: break-word;
  border-width: 5px 2px 5px 2px;
  border-color: #e5e8ed;
  background: #eff2f9;
  vertical-align: middle;
}

.contactListTable.table > thead > tr > th {
  word-break: normal;
  border-width: 5px 2px 5px 2px;
  border-color: #e5e8ed;
  background: #e0e4ee;
  vertical-align: middle;
}

.contactFileListTable.table > tbody > tr > td {
  word-break: break-word;
  border-width: 5px 2px 5px 2px;
  border-color: #e5e8ed;
  background: #eff2f9;
  vertical-align: middle;
}

.contactFileListTable.table > thead > tr > th {
  word-break: normal;
  border-width: 5px 2px 5px 2px;
  border-color: #e5e8ed;
  background: #e0e4ee;
  vertical-align: middle;
}

.managepage .contactListTable.table > tbody > tr > td {
  border: solid 1px #e0e4ee;
  background: #eff2f9;
  vertical-align: middle;
  padding: 6px 8px;
  width: auto;
  border-width: 5px 2px 5px 2px;
}

.managepage .contactFileListTable.table > tbody > tr > td {
  border: solid 1px #e0e4ee;
  background: #eff2f9;
  vertical-align: middle;
  padding: 6px 8px;
  width: auto;
  border-width: 5px 2px 5px 2px;
}

.colorSection {
    /* cursor: not-allowed !important;*/
    position: absolute;
    height: 29%;
    margin-left: 6px;
    background-color: white;
    color: black;
    border-radius: 5px;
    width: 25%;
}


.preview-header {
    padding: 6px;
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid black;
}

.preview-subheader {
    height: 35%;
    border-right: 1px solid black;
}

.finish-button {
    padding: 5px 10px;
    border: none;
    color: black;
    width: 75px;
}

.preview-body {
    height: 100px;
    width: 95%;
}

.back-button {
    padding: 5px 10px;
    border: none;
    color: white;
    width: 75px;
    margin-left: 3%;
    margin-top: 3%;
}

.bannerColorPicker {
    background: none !important;
    border: none;
    width: 46px;
    padding-left: 0px;
    height: 51px;
    margin-top: -3px;
}


/*color themes*/
.custom-colors {
    width: 62%;
    font-weight: 500;
}

.previewSection {
    border: 1px solid;
    margin-left: 4%;
    background: white;
    width: 80%;
}

.preview-button {
    height: 50%;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    border-right: 1px solid black;
}

.prev-row {
    padding: 8px;
}

.colorTextBox_disable {
    cursor: not-allowed !important;
}

.companyLogo {
    max-width: 200px;
    max-height: 50px;
}

.companyLogoDiv {
    width: 200px;
}

.company_pic {
    display: flex;
    flex-wrap: wrap;
}

.colorBox {
    display: inline-block;
    width: 44px;
    height: 44px;
    background-color: #AC2329;
}


#PreviewCompanyLogo {
    width: 70%;
}

#PreviewCompanyLogo .modal-dialog {
    top: 25%;
}

#PreviewCompanyLogo {
    padding: 10px;
    height: 410px;
    overflow: hidden;
    overflow-y: hidden;
}

#mailTemplateBody {
    padding: 10px;
    height: 410px;
    overflow: hidden;
    overflow-y: auto;
}
