.Toastify__toast-container {
  z-index: 9999;
  position: fixed;
  padding: 4px;
  width: 320px;
  box-sizing: border-box;
  color: #fff; }
  .Toastify__toast-container--top-left {
    top: 1em;
    left: 1em; }
  .Toastify__toast-container--top-center {
    top: 1em;
    left: 50%;
    margin-left: -160px; }
  .Toastify__toast-container--top-right {
    top: 1em;
    right: 1em; }
  .Toastify__toast-container--bottom-left {
    bottom: 1em;
    left: 1em; }
  .Toastify__toast-container--bottom-center {
    bottom: 1em;
    left: 50%;
    margin-left: -160px; }
  .Toastify__toast-container--bottom-right {
    bottom: 1em;
    right: 1em; }

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0; }
    .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
      top: 0; }
    .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
      bottom: 0; }
    .Toastify__toast-container--rtl {
      right: 0;
      left: initial; } }

.Toastify__toast {
  position: relative;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 1px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
  direction: ltr; }
  .Toastify__toast--rtl {
    direction: rtl; }
  .Toastify__toast--default {
    background: #fff;
    color: #aaa; }
  .Toastify__toast--info {
    background: #3498db; }
  .Toastify__toast--success {
    background: #07bc0c; }
  .Toastify__toast--warning {
    background: #f1c40f; }
  .Toastify__toast--error {
    background: #e74c3c; }
  .Toastify__toast-body {
    margin: auto 0;
    -ms-flex: 1;
        flex: 1; }

@media only screen and (max-width: 480px) {
  .Toastify__toast {
    margin-bottom: 0; } }

.Toastify__close-button {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start; }
  .Toastify__close-button--default {
    color: #000;
    opacity: 0.3; }
  .Toastify__close-button:hover, .Toastify__close-button:focus {
    opacity: 1; }

@keyframes Toastify__trackProgress {
  0% {
    width: 100%; }
  100% {
    width: 0; } }

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  z-index: 9999;
  opacity: 0.7;
  animation: Toastify__trackProgress linear 1;
  background-color: rgba(255, 255, 255, 0.7); }
  .Toastify__progress-bar--rtl {
    right: 0;
    left: initial; }
  .Toastify__progress-bar--default {
    background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55); }

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft; }

.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight; }

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown; }

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp; }

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft; }

.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight; }

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp; }

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown; }

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes Toastify__zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn; }

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut; }

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }

@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.Toastify__flip-enter {
  animation-name: Toastify__flipIn; }

.Toastify__flip-exit {
  animation-name: Toastify__flipOut; }

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0); } }

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0); } }

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 110%, 0); } }

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -110%, 0); } }

.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft; }

.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight; }

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown; }

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp; }

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft; }

.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight; }

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp; }

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown; }
.viewEscalationInfo .info1
{
    max-width: 34%;
}

.viewEscalationInfo .info2
{
    max-width: 30%;
}

.viewEscalationInfo .info3
{
    max-width: 36%;
}

.viewEscalationDrawer .dzu-dropzone
{
    min-height: 120px !important;
    max-height: 200px!important;
    overflow-x: auto!important;
}
.lotLocationView .sectionHeaderBox {
    background: none !important;
    border: none !important;
    color: #354957;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    padding: 0 12px 12px ;
    padding-left: 15px !important;
}
.lotLocationView .craSection{
    margin: 5px 4px 15px;
}
.lotLocationView .card-body {
    padding: 0px !important;
    margin: -5px -5px -10px;
}
.image-gallery-icon {
    color: #fff;
    transition: all .3s ease-out;
    appearance: none;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    outline: none;
    position: absolute;
    z-index: 4;
    filter: drop-shadow(0 2px 2px #1a1a1a)
}

@media(hover: hover)and (pointer: fine) {
    .image-gallery-icon:hover {
        color: #337ab7
    }

    .image-gallery-icon:hover .image-gallery-svg {
        transform: scale(1.1)
    }
}

.image-gallery-icon:focus {
    outline: 2px solid #337ab7
}

.image-gallery-using-mouse .image-gallery-icon:focus {
    outline: none
}

.image-gallery-fullscreen-button,
.image-gallery-play-button {
    bottom: 0;
    padding: 20px
}

.image-gallery-fullscreen-button .image-gallery-svg,
.image-gallery-play-button .image-gallery-svg {
    height: 28px;
    width: 28px
}

@media(max-width: 768px) {

    .image-gallery-fullscreen-button,
    .image-gallery-play-button {
        padding: 15px
    }

    .image-gallery-fullscreen-button .image-gallery-svg,
    .image-gallery-play-button .image-gallery-svg {
        height: 24px;
        width: 24px
    }
}

@media(max-width: 480px) {

    .image-gallery-fullscreen-button,
    .image-gallery-play-button {
        padding: 10px
    }

    .image-gallery-fullscreen-button .image-gallery-svg,
    .image-gallery-play-button .image-gallery-svg {
        height: 16px;
        width: 16px
    }
}

.image-gallery-fullscreen-button {
    right: 0
}

.image-gallery-play-button {
    left: 0
}

.image-gallery-left-nav,
.image-gallery-right-nav {
    padding: 30px 6px;
    top: 50%;
    transform: translateY(-50%)
}

.image-gallery-left-nav .image-gallery-svg,
.image-gallery-right-nav .image-gallery-svg {
    height: 120px;
    width: 60px
}

@media(max-width: 768px) {

    .image-gallery-left-nav .image-gallery-svg,
    .image-gallery-right-nav .image-gallery-svg {
        height: 72px;
        width: 36px
    }
}

@media(max-width: 480px) {

    .image-gallery-left-nav .image-gallery-svg,
    .image-gallery-right-nav .image-gallery-svg {
        height: 48px;
        width: 24px
    }
}

.image-gallery-left-nav[disabled],
.image-gallery-right-nav[disabled] {
    cursor: disabled;
    opacity: .6;
    pointer-events: none
}

.image-gallery-left-nav {
    left: 0
}

.image-gallery-right-nav {
    right: 0
}

.image-gallery {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    position: relative
}

.image-gallery.fullscreen-modal {
    background: #000;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 5
}

.image-gallery.fullscreen-modal .image-gallery-content {
    top: 50%;
    transform: translateY(-50%)
}

.image-gallery-content {
    position: relative;
    line-height: 0;
    top: 0
}

.image-gallery-content.fullscreen {
    background: #000
}

.image-gallery-content .image-gallery-slide .image-gallery-image {
    max-height: calc(100vh - 80px)
}

.image-gallery-content.left .image-gallery-slide .image-gallery-image,
.image-gallery-content.right .image-gallery-slide .image-gallery-image {
    max-height: 75vh !important;
    width: 100%;
}

.image-gallery-slide-wrapper {
    position: relative
}

.image-gallery-slide-wrapper.left,
.image-gallery-slide-wrapper.right {
    display: inline-block;
    width: calc(100% - 180px);
    border: 1px solid #9D9D9D;
    padding: 10px;
    height: calc(100vh - 75px);
}

@media(max-width: 768px) {

    .image-gallery-slide-wrapper.left,
    .image-gallery-slide-wrapper.right {
        width: calc(100% - 180px);
        border: 1px solid #9D9D9D;
        padding: 10px;
        height: calc(100vh - 75px);
    }
}

.image-gallery-slide-wrapper.image-gallery-rtl {
    direction: rtl
}

.image-gallery-slides {
    line-height: 0;
    overflow: hidden;
    position: absolute !important;
    white-space: nowrap;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    width: 100%;
}

.image-gallery-slide {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    display: block!important;
}

.image-gallery-slide.center {
    position: relative
}

.image-gallery-slide .image-gallery-image {
    width: 100%;
    object-fit: contain
}

.image-gallery-slide .image-gallery-description {
    background: rgba(0, 0, 0, .4);
    bottom: 70px;
    color: #fff;
    left: 0;
    line-height: 1;
    padding: 10px 20px;
    position: absolute;
    white-space: normal
}

@media(max-width: 768px) {
    .image-gallery-slide .image-gallery-description {
        bottom: 45px;
        font-size: .8em;
        padding: 8px 15px
    }
}

.image-gallery-bullets {
    bottom: 20px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 80%;
    z-index: 4
}

.image-gallery-bullets .image-gallery-bullets-container {
    margin: 0;
    padding: 0;
    text-align: center
}

.image-gallery-bullets .image-gallery-bullet {
    appearance: none;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 2px #1a1a1a;
    cursor: pointer;
    display: inline-block;
    margin: 0 5px;
    outline: none;
    padding: 5px;
    transition: all .2s ease-out
}

@media(max-width: 768px) {
    .image-gallery-bullets .image-gallery-bullet {
        margin: 0 3px;
        padding: 3px
    }
}

@media(max-width: 480px) {
    .image-gallery-bullets .image-gallery-bullet {
        padding: 2.7px
    }
}

.image-gallery-bullets .image-gallery-bullet:focus {
    transform: scale(1.2);
    background: #337ab7;
    border: 1px solid #337ab7
}

.image-gallery-bullets .image-gallery-bullet.active {
    transform: scale(1.2);
    border: 1px solid #fff;
    background: #fff
}

@media(hover: hover)and (pointer: fine) {
    .image-gallery-bullets .image-gallery-bullet:hover {
        background: #337ab7;
        border: 1px solid #337ab7
    }

    .image-gallery-bullets .image-gallery-bullet.active:hover {
        background: #337ab7
    }
}

.image-gallery-thumbnails-wrapper {
    position: relative
}

.image-gallery-thumbnails-wrapper.thumbnails-swipe-horizontal {
    touch-action: pan-y
}

.image-gallery-thumbnails-wrapper.thumbnails-swipe-vertical {
    touch-action: pan-x
}

.image-gallery-thumbnails-wrapper.thumbnails-wrapper-rtl {
    direction: rtl
}

.image-gallery-thumbnails-wrapper.left,
.image-gallery-thumbnails-wrapper.right {
    display: inline-block;
    vertical-align: top;
    width: 160px
}

@media(max-width: 768px) {

    .image-gallery-thumbnails-wrapper.left,
    .image-gallery-thumbnails-wrapper.right {
        width: 160px
    }
}

.image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails,
.image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails {
    height: 100%;
    width: 100%;
    left: 0;
    padding: 0;
    position: absolute;
    top: 0
}

.image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails .image-gallery-thumbnail,
.image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails .image-gallery-thumbnail {
    display: block;
    margin-right: 0;
    padding: 0
}

.image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails .image-gallery-thumbnail+.image-gallery-thumbnail,
.image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails .image-gallery-thumbnail+.image-gallery-thumbnail {
    margin-left: 0;
    margin-top: 2px
}

.image-gallery-thumbnails-wrapper.left,
.image-gallery-thumbnails-wrapper.right {
    margin: 0 5px
}

@media(max-width: 768px) {

    .image-gallery-thumbnails-wrapper.left,
    .image-gallery-thumbnails-wrapper.right {
        margin: 0 3px
    }
}

.image-gallery-thumbnails {
    overflow: hidden;
    padding: 5px 0
}

@media(max-width: 768px) {
    .image-gallery-thumbnails {
        padding: 3px 0
    }
}

.image-gallery-thumbnails .image-gallery-thumbnails-container {
    cursor: pointer;
    text-align: center;
    white-space: nowrap
}

.image-gallery-thumbnail {
    display: inline-block;
    border: 4px solid transparent;
    transition: border .3s ease-out;
    width: 160px;
    background: transparent;
    padding: 0
}

@media(max-width: 768px) {
    .image-gallery-thumbnail {
        border: 3px solid transparent;
        width: 160px
    }
}

.image-gallery-thumbnail+.image-gallery-thumbnail {
    margin-left: 2px
}

.image-gallery-thumbnail .image-gallery-thumbnail-inner {
    display: block;
    position: relative
}

.image-gallery-thumbnail .image-gallery-thumbnail-image {
    vertical-align: middle;
    width: 100%;
    line-height: 0
}

.image-gallery-thumbnail.active,
.image-gallery-thumbnail:focus {
    outline: none;
    border: 4px solid #337ab7
}

@media(max-width: 768px) {

    .image-gallery-thumbnail.active,
    .image-gallery-thumbnail:focus {
        border: 3px solid #337ab7
    }
}

@media(hover: hover)and (pointer: fine) {
    .image-gallery-thumbnail:hover {
        outline: none;
        border: 4px solid #337ab7
    }
}

@media(hover: hover)and (pointer: fine)and (max-width: 768px) {
    .image-gallery-thumbnail:hover {
        border: 3px solid #337ab7
    }
}

.image-gallery-thumbnail-label {
    box-sizing: border-box;
    color: #fff;
    font-size: 1em;
    left: 0;
    line-height: 1em;
    padding: 5%;
    position: absolute;
    top: 50%;
    text-shadow: 0 2px 2px #1a1a1a;
    transform: translateY(-50%);
    white-space: normal;
    width: 100%
}

@media(max-width: 768px) {
    .image-gallery-thumbnail-label {
        font-size: .8em;
        line-height: .8em
    }
}

.image-gallery-index {
    background: rgba(0, 0, 0, .4);
    color: #fff;
    line-height: 1;
    padding: 10px 20px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 4
}

@media(max-width: 768px) {
    .image-gallery-index {
        font-size: .8em;
        padding: 5px 10px
    }
}
.modal-open .modal{
    background-color: rgba(78, 78, 78, 0.5) !important;
}

.vehicle-image-gallery-wrapper {
    width: 100%;
    height: calc(100vh - 140px);
    display: flex;
}

.vehicle-image-gallery-wrapper .image-gallery,
.vehicle-image-gallery-wrapper .image-gallery-content,
.vehicle-image-gallery-wrapper .image-gallery-slide-wrapper,
.vehicle-image-gallery-wrapper .image-gallery-slides {
    width: 100%;
    height: 100%;
}

.vehicle-image-gallery-wrapper .image-gallery-slide .image-gallery-image {
    max-height: 100%;
}

.viewCallbackInfo .info1
{
    max-width: 34%;
}

.viewCallbackInfo .info2
{
    max-width: 30%;
}

.viewCallbackInfo .info3
{
    max-width: 36%;
}

.viewCallbackDrawer .dzu-dropzone
{
    min-height: 50px !important;
}

.callbackNoteFormCont .msgBrdGray
{
    border: none !important;
}

.callbackNoteFormCont .card-body
{
    padding: 5px 0 0 !important;
}
.viewCallbackDrawer .callbackNoteFormSection{
    margin: -10px;
}
.callbackDocumentFormSection .dzu-dropzone {
    min-height: 200px !important;
}

.callbackDocumentFormSection .msgBrdGray
{
    border: none !important;
}
.viewCallbackDrawer .errorBox{
    margin: 0px -15px -10px;
}
.viewCallbackDrawer .card-header-tabs{
    margin: 0px;
}

.callHeaderDiv{
    text-align: center;
    color: #ffff;
    font-size: 16px;
    font-weight: bold;
    /* background-color: #3F9D00; */
    background-color: #253F65; 
    position: absolute;
    top: 0;
    padding: 10px;
    width: 100%;
    left: 0;
  }

  .dueCallHeaderDiv{
    text-align: center;
    color: #ffff;
    font-size: 16px;
    font-weight: bold;
    background-color: #D60000;
    position: absolute;
    top: 0;
    padding: 10px;
    width: 100%;
    left: 0;
  }
  .contactSelectHeader
  {
      text-align: left;
      letter-spacing: 0px;
      color: #666666;
      opacity: 1;
  }


/*[Callback]>>The height of "notes" & "Attachmnet section" should be in proper*/
.callbackNoteFormSection .dzu-dropzone{
    max-height: 315px;
    overflow-y: auto !important;
}
.callbackNoteFormSection .extraPad10x15 {
    padding: 0px 0px !important;
}

.callbackNoteFormCont .errorBox
{
    display: none;
}
.callbackFormSection .form-row, .callbackFormSection .msgBrdGray
{
    border: none !important;
}
.callbackFormSection .form-row{
    padding: 0 0 0 7px;
}

.followUpForm .dzu-dropzone{
    height: 196px!important;
    max-height: 196px;
    overflow-y: auto!important;
}
.callBackFormDiv .formSpacing{
    padding: 10px 0 0 10px;
}

.callbackFormSection .add-callback-time-inputs {
    
    width: 40%;
    position: absolute;
    bottom: 10px;
    padding: 0 25px;
}

.callbackFormSection .add-callback-time-inputs .form-group {
    flex: 1;
}
.add-callback-time-inputs .row{
    display: flex!important;
}
.add-callback-time-inputs  button#daysToAdd{
    background: #ffff 0% 0% no-repeat padding-box;
    border-radius: 0px;
    border: #EFEFEF solid 1px;
    color: #3c7bd1;
    font-size: 14px;
    line-height: 17px;
    opacity: 1;
    font-weight: 500;
    width: 100%;
    height:auto;
}
.add-callback-time-inputs button#timeToAdd {
    background: #ffff 0% 0% no-repeat padding-box;
    border-radius: 0px;
    border: #EFEFEF solid 1px;
    color: #3c7bd1;
    font-size: 14px;
    line-height: 17px;
    opacity: 1;
    font-weight: 500;
    width: 100%;
    height: auto;
}

.add-callback-file a{
    margin-left: 422px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #3c7bd1 !important;
}
.add-callback-file {
    width: 100%;
    padding-right: 5px;
    padding-bottom: 5px;
    position: absolute;
    right: 0;
    top:0;
    z-index: 1;
}
.mrgBtZero{
    margin-bottom: 0!important;
}
.callbackDrawerSec .row{
	display: flex!important;
}
.callbackDrawerSec .UploadSection{
	padding-top: 23px;
}
.callbackDrawerSec .docUpload{
	padding: 0px;
}
.callbackDrawerSec .cannedUpload .dzu-dropzone {
    height: 167px !important;
	min-height: 167px !important;
    max-height: 167px !important;
    overflow-y: auto !important;
}
.callbackDrawerSec progress{
    width: 100px;
}
.uploadedFileSectioCallback{
    max-height: 176px;
    overflow-y: auto;
    padding: 0 5px;
    margin-top: 23px;
    overflow-x: hidden;
}
.attachmentCountCallback{
    position: absolute;
    right: 5px;
    top: 2px;
    font-size: 14px;;
}
.callbackDrawerSec .UploadSection.UploadSectionAct{
    min-height: 167px !important;
    max-height: 168px !important;
    overflow-y: auto !important;
    padding-top:0px!important;
    margin-top: 23px;
}
.selectedUser , .userSelectionContainer:hover
{
    border: 2px solid #253342 !important;
    opacity: 1;
}

.highlightedUser:hover {
    background-color: #3F9D001A !important;
    border: 2px solid #3F9D00 !important;
} 
.unselectedUserBox .sectionBlur {
    opacity: 0.4;
}
.unselectedUserBox .sectionBlur:hover {
    opacity: 1;
}
.table-responsive > .table-bordered {
    border-right: #CFCFCF solid 1px !important;
    border-left: #CFCFCF solid 1px !important;
  }
.hideFormBorder .msgBrdGray {
   /*border: none !important;*/
    display: none;
}
.stateUploadForm .inlinePopUpForm{
    width: 100%;
    margin: 0 5px 0px 15px;
}
.stateUploadForm .form-row{
    display: block;
    width: 100%;
}
/*
.addStateUploadForm .msgBrdGray{
    display: none;
}*/

.uploadThumb {
    max-width: 100%;
    height: 100px;
    display: block;
    width: auto;
}
.switcher-text-canned{
    width: 60px !important;
}

.switcher-text-richtext{
    left: -33px !important;
    color: white !important;
    white-space: nowrap;
}

.jodit-add-new-line{
    display: none !important;
}

#SendEmailForm_emailSubject{
    width: calc(100% - 40px);
    resize: none; 
}

[for="SendEmailForm_emailSubject"] + div > div:first-child{
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
}

.email-pointer-events-none{
    pointer-events: none;
}


#SendEmailForm_bcc{
    z-index: 2 !important;
}

#SendEmailForm_cc{
    z-index: 2 !important;
}

#SendEmailForm_fromEmail{
    z-index: 3 !important;
}
#SendEmailForm_replyToEmail{
    z-index: 4 !important;
}
#SendEmailForm_template_id{
    z-index: 5 !important;
}
#SendEmailForm_cannedMessage{
    z-index: 6 !important;
}
#SendEmailForm_contactEmailId{
    z-index: 7 !important;
}

.email-documents .dzu-previewFileName{
    word-break: break-all !important;
}

.emailSubjectField .action{
    flex: 0 0 20px;
}
#CreateCannedEmailMessageForm_emailSubject {
    padding-top: 10px;
    resize:none;
    width: calc(100% - 43px);

}

[for="CreateCannedEmailMessageForm_emailSubject"] + div > div:first-child{
    float: right;
    margin-top: 3px;
}

#CreateCannedEmailMessageForm_bcc{
    z-index: 3 !important;
}
#CreateCannedEmailMessageForm_fromEmail{
    z-index: 5 !important;
}

@media only screen and (min-width: 1200px){
    .modal-preview{
        min-width: 80vw!important;
    }
}
.cannedUpload .inlineForm{
    width: 100%;
}

.is_upload .col-md-7.adjustPadd {
    max-width: 100%;
    flex: 100%;
}


.margin-min-2 {
    margin-left: -2%;
}

.margin-add-2 {
    margin-left: 2%;
}

.sms-doc-upload .formSpacing {
    padding: 0 !important;;
}

.sms-doc-upload .cannedUpload{
    margin: 10px 10px 0 10px;
}
#sendSmsForm {
    margin: 0px -15px;
}

#sendSmsForm .card-body {
    padding: 6px 0px !important;
}

#sendSmsForm form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#sendSmsForm .cannedUpload form {
    margin: 0px !important;
}

.cannedUpload .dzu-dropzone {
    min-height: 250px !important;
}

#sendSmsForm .msgBrdGray {
    border: none !important;
    padding-right: 0;
}
.modal-bottom #sendSmsForm .msgBrdGray{
    padding-right: 10px!important;
}
.SendSms .errorBox {
    width: 100%;
}
.sendSmsForm .errorBox{
    margin: 5px 0px 0px;
}
.cannedTogg .switcher-indicator .react-switch-bg div:first-child {
    width: 52px;
}

.colFullWidth {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
}

.sendSMSFormView form {
    display: block !important;
}

.sendSMSFormView .dzu-dropzone {
    margin: 0;
    width: 100%;
    margin-bottom: 15px;
}

.boxActionDoc {
    position: absolute;
    top: 0px;
    right: 5px;
    background-color: #253342;
    border-radius: 0px 3px 0px 3px;
    padding: 2px 5px;
    width: auto;
    height: 30px;
    text-align: center;
    display: none;
    cursor: pointer;
    min-width: 30px;
}

.boxAction:hover .boxActionDoc {
    display: block;
}

.charCountCont {
    color: red;
}

.sendSMS .PersonlizationBtn {
    position: absolute;
    top: 0;
    right: 0;
    height: 0;
}

.btnFooterFix {
    position: absolute;
    bottom: 0;
    right: 0;
}
.sms-btn-disabled {       
    background-color: gray ;
    cursor: not-allowed;
    padding: 0.375rem .65rem !important;
    
}
.sms-btn-grey{
    color: white !important;
    opacity: .5 !important;
    padding: 0.375rem .65rem !important;
}

.sms-message-box .msgBrdGray {
    height: calc(100% - 7px);
}

.sms-message-box .msgBrdGray .form-row{
    height: 100%;
}
#LeadContactNoteForm_notes .editor-class{
    background-color: #EFEFEF !important;
}
.paraSec ol {
    padding: 0 15px;
}
.callbackGroupModal .modal-content{ overflow: visible!important;}
.callbackGroupModal .modal-body{ overflow:visible!important;}
.paraSec ol {
    padding: 0 15px;
}
.callbackGroupModal .modal-content{ overflow: visible!important;}
.callbackGroupModal .modal-body{ overflow:visible!important;} 
.callbackFormSection .form-row, .callbackFormSection .msgBrdGray
{
    border: none !important;
}
.callbackFormSection .form-row{
    padding: 0 0 0 7px;
}

.callbackForm .dzu-dropzone{
    height: 196px!important;
    max-height: 196px;
    overflow-y: auto!important;
}
.callBackFormDiv .formSpacing{
    padding: 10px 0 0 10px;
}
/* Step Progress Bar Style */
body {
    counter-reset: section;
}
  
.boxContainer{
    width: 100%;
    position: relative;
    display: inline-block;
}
.stepProgressBar{
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 100%;
    margin: 30px 0 40px 0;
    padding: 0px 10px;
    text-align: center;
}
.stepProgressBar li{
    list-style-type: none;
    display: inline-block;
    width: 20%;
    position: relative;
    text-align: center;
}
.stepProgressBar li:before {
    counter-increment: section;
    content: counter(section);
    /*content: '\2713';*/
    width: 36px;
    height: 36px;
    line-height: 22px;
    border: 5px solid #ddd;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: #fff;
    color:#3F9D00;
    font-weight: 600;
}
.stepProgressBar li:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 20px;
    background-color: #ddd;
    top: 9px;
    left: -50%;
    z-index: -1;
}
.stepProgressBar li:first-child:after{
    content: none;
}
.stepProgressBar li{
    color: #333333;
    font-size: 14px;
}
.stepProgressBar li.activeStep:before{
    border-color: #3F9D00;
}
.stepProgressBar li.activeBar + li:after{
    background-color: #3F9D00;
}
.cadenceTitleHeader {
    color: #354957;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    padding: 12px;
}
.popUpInline.ContactActivityForm form .col-sm-12.sectionHeaderBox {
    display: none;
}
.react-time-picker__wrapper button:last-child
{
    display: none;
}

.react-time-picker__wrapper
{
    border: none;
}

.react-time-picker__wrapper select.react-time-picker__inputGroup__input.react-time-picker__inputGroup__amPm {
    position: absolute;
    right: 30px;
    top:-1px;
}
.react-time-picker__wrapper select.react-time-picker__inputGroup__input.react-time-picker__inputGroup__amPm:focus-visible {
    box-shadow: 0 0 0 1px transparent;
}
input.react-time-picker__inputGroup__input.react-time-picker__inputGroup__hour,
input.react-time-picker__inputGroup__input.react-time-picker__inputGroup__minute,
select.react-time-picker__inputGroup__input.react-time-picker__inputGroup__amPm {
    outline: none !important;
}
.react-time-picker__wrapper {
    padding: inherit;
}

.rideFormView .react-time-picker__inputGroup__input.react-time-picker__inputGroup__hour{
    text-align: right;
}
#createRide .react-time-picker__inputGroup__input.react-time-picker__inputGroup__hour{
    text-align: right;
}

.react-time-picker__inputGroup span.react-time-picker__inputGroup__divider {
    padding: 0px !important;
}

.activityTimePicker .react-time-picker__wrapper{
    margin: 0 -25px!important;
}
.activityTimePicker .react-time-picker__inputGroup{
    padding: 3px 2px!important;
}
.activityTimePicker .react-time-picker__inputGroup__leadingZero{
    padding-top: 1px;
}
.activityTimePicker .react-time-picker__wrapper select.react-time-picker__inputGroup__input.react-time-picker__inputGroup__amPm{
    top:-1px!important;
}
.activityTimePicker{
    position: relative;
}
.activityTimePicker .dateRangeClear{
    position: absolute;
    top: 40px;
}
.react-time-picker__inputGroup__input:invalid {
  background: rgba(0, 0, 0, 0);
}
#ContactActivityForm_relatableEntityGroups div:first-child,#ContactActivityForm_relatableEntityGroups div:nth-child(2) {
    font-size: 14px;
   text-transform: capitalize;
}
.cannedUpload .docUpload .inlineForm{
    width: 100%;
}

.is_upload .col-md-7.adjustPadd {
    max-width: 100%;
    flex: 100%;
}


.margin-min-2 {
    margin-left: -2%;
}

.margin-add-2 {
    margin-left: 2%;
}

.sms-doc-upload .formSpacing {
    padding: 0 !important;;
}

.sms-doc-upload .cannedUpload .docUpload{
    margin: 10px 10px 0 10px;
}

.UploadSectionAct {
    height: 100%;
}
.UploadSectionAct:has(.border-dotted),
.UploadSectionAct:has(.border-dotted),
.UploadSectionAct:has(.border-dotted){
    overflow-y: auto !important;
	overflow-x: hidden !important;
    max-height: 320px;
    min-height: 200px !important;
    height: auto;
}
.companyActivityForm .col-md-6.cannedUpload.docUpload:has(.dzu-dropzone),
.ContactActivityForm .col-md-6.cannedUpload.docUpload:has(.dzu-dropzone),
.OpportunityActivityForm .col-md-6.cannedUpload.docUpload:has(.dzu-dropzone) {
	height: 100%;
}
.companyActivityForm .form-group.col-md-6 #CompanyActivityForm_description.editor-wrapper-container .rdw-editor-toolbar.toolbar-class,
.ContactActivityForm .form-group.col-md-6 #CompanyActivityForm_description.editor-wrapper-container .rdw-editor-toolbar.toolbar-class,
.OpportunityActivityForm .form-group.col-md-6 #CompanyActivityForm_description.editor-wrapper-container .rdw-editor-toolbar.toolbar-class {
	height: 100%;
	min-height: 95px;
}
.companyActivityForm .cannedUpload.docUpload .dzu-dropzone:has(.dzu-inputLabel),
.ContactActivityForm .cannedUpload.docUpload .dzu-dropzone:has(.dzu-inputLabel),
.OpportunityActivityForm .cannedUpload.docUpload .dzu-dropzone:has(.dzu-inputLabel) {
	overflow-y: auto !important;
	overflow-x: hidden !important;
    max-height: 320px;
    min-height: 200px !important;
    height: 100%;
}
.companyActivityForm .form-group.col-md-6 .col-md-6.cannedUpload.docUpload:has(input[name*="CompanyActivityForm[files]"]) .dzu-dropzone,
.ContactActivityForm .form-group.col-md-6 .col-md-6.cannedUpload.docUpload:has(input[name*="CompanyActivityForm[files]"]) .dzu-dropzone,
.OpportunityActivityForm .form-group.col-md-6 .col-md-6.docUpload:has(input[name*="CompanyActivityForm[files]"]) .dzu-dropzone,
.companyActivityForm .cannedUpload.docUpload .dzu-dropzone:has(.dzu-previewContainer),
.ContactActivityForm .cannedUpload.docUpload .dzu-dropzone:has(.dzu-previewContainer),
.OpportunityActivityForm .cannedUpload.docUpload .dzu-dropzone:has(.dzu-previewContainer){
    overflow-y: auto !important;
	overflow-x: hidden !important;
    max-height: 320px;
    min-height: 200px !important;
    height: auto;
}
.col-md-4 {
  width: 300px;
  position: relative;
}

h3 {
  font-size: 14px;
  margin-bottom: 10px;
}

.react-select__controlLinkedEntity {
  background-color: #EBEBEB;
  color: white;
  padding: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.react-select__value-containerLinkedEntity {
  color: #3c7bd1 !important;
  text-decoration: underline
}

.react-select__indicators {
  display: flex;
  align-items: center;
}

.react-select__indicatorLinkedEntity {
  color: #666666;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.react-select__indicator:hover {
  color: #ffffffcc;
}

.linked-entity-selector .entityPanelArea {
  position: absolute;
  margin-top: 10px;
  right: 5px;
  min-height: 280px;
  border: 1px solid #C7C7C7 !important;
  background-color: #FFFFFF !important;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 4px;
  z-index: 100;
  color: #454545 !important;
}

.entities-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.entities-list li {
  cursor: pointer;
  padding: 8px;
  transition: background-color 0.2s ease, border 0.2s ease;
}

.entities-list li:hover {
  background-color: #dbd8d8 !important;
}

.entities-list li.selected {
  background-color: #d3f3de;
  border: 2px solid #3f9d00;
}

.options-panel {
  padding: 10px;
}

.searchBoxLinkedEntity {
  border-bottom: 1px solid #EBEBEB;
  position: relative;
  padding: 10px;
}


.searchBoxLinkedEntity input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ebebeb;
  border-radius: 4px;
}

.entityPanelArea .searchIcon {
  top: 22px !important;
  position: absolute;
  right: 20px;
  color: #c7c7c7;
  cursor: unset !important;
  font-size: 16px;
}

.entityPanelArea .clearIconLinkedEntity {
  top: 22px !important;
  position: absolute;
  right: 20px;
  color: #666;
  cursor: pointer !important;
  font-size: 16px;
}

.options-panel h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #000000;
  font-weight: normal;
}

.options-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.options-panel li {
  display: flex;
  align-items: center;
  padding: 5px;
  transition: background-color 0.2s ease, border 0.2s ease;
}

.options-panel li:hover {
  background-color: #d3f3de;
  border: 2px solid #3f9d00;
}

.options-panel input[type="checkbox"] {
  margin-right: 10px;
  accent-color: #3f9d00;
}

.options-panel label {
  color: #454545 !important;
  font-size: 14px;
}

.options-panel p {
  font-size: 14px;
}

.options-panel ul>li label {
  position: relative;
  top: 3px;
}

.entityArrow-up {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid #dddddd;
  position: absolute;
  right: 10px;
  margin-top: 2px;
}

.linked-entity-selector .react-select__control {
  position: relative;
  top: 2px;
  height: 42px;
  border: none;
}

.options-tooltip-body {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  padding-top: 5px;
  max-height: 400px;
  overflow-y: auto;
}

.tooltip {
  z-index: 99999 !important;
}


.options-tooltip.bs-tooltip-left .arrow::before,
.options-tooltip.bs-tooltip-auto[x-placement^="left"] .arrow::before {
  border-left-color: #253342 !important;
}

.options-tooltip .tooltip-inner {
  max-width: 40vw !important;
  background-color: #253342 !important;
  padding: 12px 15px !important;
}

.messageImage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.inner-messageImage {
  text-align: center;
  border-radius: 4px;
  padding: 25px;
  background-color: rgb(243, 244, 244);
  width: 80%;
  margin: 0 20px 0 10px;
  color: #A8A8A8;
  /* word-break: break-all; */
  max-height: 250px;
  overflow-y: auto;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 10px solid #8C8C8C;
  position: absolute;
  right: 15px;
  z-index: 999;
}

.inner-triangle {
  position: relative;
  top: 2px;
  left: -5px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 10px solid white;
}

.options-panel-Heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 9px;
  padding-top: 10px;
}

.select-all {
  align-items: center;
  display: flex;
  color: #3c7bd1;
}

.entitySearchcontainer {
  display: grid;
  grid-template-columns: 40% 2% 58%;
  align-items: stretch;
  max-height: 300px;
  min-height: 280px;
  overflow-y: auto;
  width: 100%;
}

.optionsPanel_sep {
  border-left: 1px solid #C7C7C7;
  text-align: center;
}

@media (min-width: 1200px) {
  .linked-entity-selector .entityPanelArea {
    width: 45vw !important;
  }
}

@media (min-width: 1400px) {
  .linked-entity-selector .entityPanelArea {
    width: 38vw !important;
  }
}
#AttributeForm_selectedGroups .react-select__menu {
    position : absolute !important;
}
:root{
    --from-email-calc-width:50px;
}

.switcher-text-canned{
    width: 60px !important;
}

.switcher-text-richtext{
    left: -33px !important;
    color: white !important;
    white-space: nowrap;
}

.jodit-add-new-line{
    display: none !important;
}

#SendEmailForm_emailSubject{
    width: calc(100% - 40px);
    resize: none; 
}

[for="SendEmailForm_emailSubject"] + div > div:first-child{
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
}

.email-pointer-events-none{
    pointer-events: none;
}


#MbxSendEmailForm_bcc{
    z-index: 2 !important;
}

#MbxSendEmailForm_cc{
    z-index: 2 !important;
}

#MbxSendEmailForm_fromEmail{
    z-index: 3 !important;
}


.email-documents .dzu-previewFileName{
    word-break: break-all !important;
}

#MbxSendEmailForm_emailSubject {
    padding-top: 10px;
    resize:none;
    padding-right: 65px;
}

[for="MbxSendEmailForm_emailSubject"] + div > div:first-child{
    float: right;
    margin-top: 3px;
}

#MbxSendEmailForm_bcc{
    z-index: 3 !important;
}
#MbxSendEmailForm_fromEmail{
    z-index: 5 !important;
}

.hide-personalization div:nth-child(1){
    display: none;
}

.hide-personalization .form-control{
   width: 100% !important;
}

#MbxSendEmailForm .form-group{
    display: flex;
    align-items: stretch;
}

#MbxSendEmailForm .form-group label{    
    margin: 0;
    display: flex;
    align-items: center;
    background: #EFEFEF;
    flex:none;
    padding: .375rem .75rem;
    padding-right: 0    ;
    width: 65px;
}

#MbxSendEmailForm .form-group > div{
    flex: auto;
}
#MbxSendEmailForm .form-group > label > span{
   color: #dc3545 !important;
}
#MbxSendEmailForm .form-group .text-danger{

    border: 1px solid #dc3545 !important;
    border-top: 1px solid #dc3545 !important;
    border-bottom: 1px solid #dc3545 !important;
    border-left: 1px solid #dc3545 !important;
    border-right: 0px !important;

}
#MbxSendEmailForm .form-group .border-danger{
    border: 1px solid #dc3545 !important;
    border-top: 1px solid #dc3545 !important;
    border-bottom: 1px solid #dc3545 !important;
    border-right: 1px solid #dc3545 !important;
    border-left: 0px !important;
}
#MbxSendEmailForm .form-group .chips-input {
    border: 1px solid #EFEFEF;
}

#MbxSendEmailForm .selectInputField > :first-child{
    height: 100%;
}
#MbxSendEmailForm .selectInputField > :nth-child(2){
    border: none;
}


.fromEmail{
    padding: 0 5px;
    width: calc(100% - var(--from-email-calc-width));
}

.cc-plus-icon-wrapper{
    width: 45px;
    background: #EFEFEF;
    flex: none;
    padding-right: 0;
    margin-bottom: 10px;
    
}

.cc-plus-icon-wrapper button {
    background: #EFEFEF;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.cc-plus-icon{
    width: 45px;
    margin: 0;
    background: #EFEFEF;
    flex: none;
    padding-right: 0;
    color: #666666;
}

.cc-plus-icon-wrapper .dropdown-toggle,
.cc-plus-icon-wrapper .dropdown-toggle:hover,
.cc-plus-icon-wrapper .dropdown-toggle:focus,
.cc-plus-icon-wrapper .dropdown-toggle:active{
    padding: 0;
    border: none;
}

.cc-plus-icon-wrapper .action .dropdown-menu{
    width: 150px;
}

.chips-delete-button{
    flex: none !important;
    width: 45px;
    font-size: 21px;
    margin-left: 5px;
    background: #EFEFEF;
    cursor: pointer;
    color: #dc3545 ;
    min-height: 42px;
    align-self: stretch;
}

.form-adjust{
    --from-email-calc-width:0px
}

#MbxSendEmailForm .email-documents .dzu-dropzone {
    height: 350px !important;
}

#MbxSendEmailForm .email-documents .dzu-dropzone{
    min-height: auto !important;
    max-height: none !important;
}

#MbxSendEmailForm .jodit-wysiwyg {
    height: 250px !important;
}
.mass-mail-subject-emoji {
    padding: 0 !important;
    margin: 0 !important;
}
#MbxSendEmailForm .mass-mail-subject-emoji .EmojiBtn {
    position: absolute;
    z-index: 999;
    right: 2px;
    top: -44px !important;
}
#MbxSendEmailForm .mass-mail-subject-emoji .EmojiBtn .action .dropdown-menu .dropDownActionMenu {
    max-height: 331px !important;
    /*overflow-y: auto !important;*/
    overflow: hidden !important;
    background-color: #4C4A49 !important;
    /*width: calc(100vw - 0px) !important;*/
    position: absolute;
    right: 0px;
    top: 0px !important;
    border-radius: 9px;
    border: 1px solid #dadada;
}
.mass-mail-subject-emoji .EmojiBtn .action button {
    background-color: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}
.mass-mail-subject-emoji .EmojiBtn .dropdown .dropdown-menu .dropDownActionMenu aside {
    height: calc(100vh - 401px) !important;
    /*width: calc(100vw - 1572px) !important;*/
    width:350px !important;
}

#MbxSendEmailForm .jodit-wysiwyg {
    height: 250px !important;
}

/*#MbxSendEmailForm .mass-mail-subject-emoji .EmojiBtn .btn-group .btn span.font14 {
    position: fixed;
    top: 178px;
    right: 54px;
    !*position: absolute;
    right: 21px;*!
    z-index: 1000;
}*/
#MbxSendEmailForm .replyEmoji{
    position: absolute;
    bottom: -17px;
    right: 7px;
    z-index: 1000;
}
#MbxSendEmailForm .emojiWithCcAndBccReply{
    position: absolute;
    bottom: 85px;
    right: 3px;
}
#MbxSendEmailForm .emojiWithCcOrBcc {
    position: absolute;
    bottom: 33px;
    right: 7px;
}
#MbxSendEmailForm .emojiWithCcAndBcc{
    position: absolute;
    bottom: 84px;
    right: 7px;
}
#MbxSendEmailForm .emojiWithCcOrBccReply {
    position: absolute;
    bottom: 32px;
    right: 7px;
}
#MbxSendEmailForm .emojiWithCcAndBccReply {
    position: absolute;
    bottom: 84px;
    right: 7px;
}
/*#MbxSendEmailForm .replyEmojiToNotEmpty{
    position: fixed;
    top: 192px;
    right: 50px;
    z-index: 1000;
}*/
#MbxSendEmailForm .emojiWithCcAndBccResend{

}
#MbxSendEmailForm .emojiWithCcOrBccResend {
}
#MbxSendEmailForm .smileEmoji{
    position: fixed;
    bottom: 405px;
    right: 51px;
}


#MbxSendEmailForm .mass-mail-subject-emoji .EmojiBtn .epr-emoji-category[data-name="flags"] {
    display: none !important;
}
#MbxSendEmailForm .mass-mail-subject-emoji .EmojiBtn .epr-icn-flags[aria-label="Flags"] {
    display: none !important;
}
#MbxSendEmailForm .mass-mail-subject-emoji .EmojiBtn .epr-emoji-category[data-name="objects"] {
    display: none !important;
}
#MbxSendEmailForm .mass-mail-subject-emoji .EmojiBtn .epr-icn-objects[aria-label="Objects"] {
    display: none !important;
}

/*
#MbxSendEmailForm .mass-mail-subject-emoji .EmojiBtn .action .dropdown-menu .ccOrBccDropdownEmoji{
    top: -42px !important;
}
#MbxSendEmailForm .mass-mail-subject-emoji .EmojiBtn .action .dropdown-menu .ccBccDropdownEmoji{
    top: -101px !important;
}*/

.tooltip-inner{
    max-width: 350px!important;
}
.coreUserForm .crmCardHeaderForm{
    padding-left: 10px!important;
    padding-bottom: 0px!important;
}

.popover-body .w50 ul{
    padding: 0 13px;
    margin: 0;
}
.popover-body .card{
    margin: 5px 0 0;
} 
.popUpInline.companyActivityForm form .col-sm-12.sectionHeaderBox {
    display: none;
}
.react-time-picker__wrapper button:last-child
{
    display: none;
}

.react-time-picker__wrapper
{
    border: none;
}

.react-time-picker__wrapper select.react-time-picker__inputGroup__input.react-time-picker__inputGroup__amPm {
    position: absolute;
    right: 30px;
    top:-1px;
}
.react-time-picker__wrapper select.react-time-picker__inputGroup__input.react-time-picker__inputGroup__amPm:focus-visible {
    box-shadow: 0 0 0 1px transparent;
}
input.react-time-picker__inputGroup__input.react-time-picker__inputGroup__hour,
input.react-time-picker__inputGroup__input.react-time-picker__inputGroup__minute,
select.react-time-picker__inputGroup__input.react-time-picker__inputGroup__amPm {
    outline: none !important;
}
.react-time-picker__wrapper {
    padding: inherit;
}

.rideFormView .react-time-picker__inputGroup__input.react-time-picker__inputGroup__hour{
    text-align: right;
}
#createRide .react-time-picker__inputGroup__input.react-time-picker__inputGroup__hour{
    text-align: right;
}

.react-time-picker__inputGroup span.react-time-picker__inputGroup__divider {
    padding: 0px !important;
}

.activityTimePicker .react-time-picker__wrapper{
    margin: 0 -25px!important;
}
.activityTimePicker .react-time-picker__inputGroup{
    padding: 3px 2px!important;
}
.activityTimePicker .react-time-picker__inputGroup__leadingZero{
    padding-top: 1px;
}
.activityTimePicker .react-time-picker__wrapper select.react-time-picker__inputGroup__input.react-time-picker__inputGroup__amPm{
    top:-1px!important;
}
.activityTimePicker{
    position: relative;
}
.activityTimePicker .dateRangeClear{
    position: absolute;
    top: 40px;
}
.react-time-picker__inputGroup__input:invalid {
  background: rgba(0, 0, 0, 0);
}
#CompanyActivityForm_relatableEntityGroups div:first-child,#CompanyActivityForm_relatableEntityGroups div:nth-child(2) {
    font-size: 14px;
   text-transform: capitalize;
}
.popUpInline.OpportunityActivityForm form .col-sm-12.sectionHeaderBox {
    display: none;
}
.react-time-picker__wrapper button:last-child
{
    display: none;
}

.react-time-picker__wrapper
{
    border: none;
}

.react-time-picker__wrapper select.react-time-picker__inputGroup__input.react-time-picker__inputGroup__amPm {
    position: absolute;
    right: 30px;
    top:-1px;
}
.react-time-picker__wrapper select.react-time-picker__inputGroup__input.react-time-picker__inputGroup__amPm:focus-visible {
    box-shadow: 0 0 0 1px transparent;
}
input.react-time-picker__inputGroup__input.react-time-picker__inputGroup__hour,
input.react-time-picker__inputGroup__input.react-time-picker__inputGroup__minute,
select.react-time-picker__inputGroup__input.react-time-picker__inputGroup__amPm {
    outline: none !important;
}
.react-time-picker__wrapper {
    padding: inherit;
}

.rideFormView .react-time-picker__inputGroup__input.react-time-picker__inputGroup__hour{
    text-align: right;
}
#createRide .react-time-picker__inputGroup__input.react-time-picker__inputGroup__hour{
    text-align: right;
}

.react-time-picker__inputGroup span.react-time-picker__inputGroup__divider {
    padding: 0px !important;
}

.activityTimePicker .react-time-picker__wrapper{
    margin: 0 -25px!important;
}
.activityTimePicker .react-time-picker__inputGroup{
    padding: 3px 2px!important;
}
.activityTimePicker .react-time-picker__inputGroup__leadingZero{
    padding-top: 1px;
}
.activityTimePicker .react-time-picker__wrapper select.react-time-picker__inputGroup__input.react-time-picker__inputGroup__amPm{
    top:-1px!important;
}
.activityTimePicker{
    position: relative;
}
.activityTimePicker .dateRangeClear{
    position: absolute;
    top: 40px;
}
.react-time-picker__inputGroup__input:invalid {
  background: rgba(0, 0, 0, 0);
}
#OpportunityActivityForm_relatableEntityGroups div:first-child,#OpportunityActivityForm_relatableEntityGroups div:nth-child(2) {
    font-size: 14px;
   text-transform: capitalize;
}
.is-schedule-no {
    text-wrap: nowrap;
    left: -40px !important;
}

#MassMailConfigFormAction .mass-mail-config {
    display: flex;
    align-items: end;
}

#MassMailConfigFormAction .mass-mail-config label {
    margin: 0;
    display: flex;
    align-items: center;
    background: #EFEFEF;
    flex: none;
    padding: .375rem .75rem;
    padding-right: 0;
    width: 100px;
    height: 42px;
}

#MassMailConfigFormAction .mass-mail-config > div {
    flex: auto;
}

#MassMailConfigFormAction .mass-mail-config > label > span {
    color: #dc3545 !important;
}

#MassMailConfigFormAction .mass-mail-config .text-danger {

    border: 1px solid #dc3545 !important;
    border-top: 1px solid #dc3545 !important;
    border-bottom: 1px solid #dc3545 !important;
    border-left: 1px solid #dc3545 !important;
    border-right: 0px !important;

}

#MassMailConfigFormAction .mass-mail-config .border-danger {
    border: 1px solid #dc3545 !important;
    border-top: 1px solid #dc3545 !important;
    border-bottom: 1px solid #dc3545 !important;
    border-right: 1px solid #dc3545 !important;
    border-left: 0px !important;
}

#MassMailConfigFormAction .mass-mail-config .chips-input {
    border: 1px solid #EFEFEF;
    min-height: 42px;
    height: auto;
}


.mass-mail-cc-bcc-label {
    align-items: stretch !important;
}

.mass-mail-cc-bcc-label label {
    height: auto !important;
}

#MassMailConfigFormAction .selectInputField > :first-child {
    height: 100%;
}

#MassMailConfigFormAction .selectInputField > :nth-child(2) {
    border: none;
}


.mass-mail-switcher > div {
    height: 42px;
}

/* #MassMailConfigFormAction .email-documents .dzu-dropzone{
    height: 100%;
}*/

#MassMailConfigFormAction .selectInputField > :first-child {
    height: 100%;
}

#MassMailConfigFormAction .selectInputField {
    height: 42px;
}

#MassMailConfigFormAction .selectInputField .react-select__control {
    border: none;
}

.mass-mail-subject-personalisation {
    padding: 0 !important;
    margin: 0 !important;
}

.mass-mail-subject-personalisation .PersonlizationBtn {
    position: absolute;
    z-index: 999;
    right: 2px;
    top: -44px !important;
}



#MassMailConfigForm_subject {
    padding-right: 65px;
}

.mass-mail-config-form-tooltip {
    z-index: 99999999 !important;
}

.mass-mail-configuration-status-no {
    text-wrap: nowrap;
    left: -25px !important;
}

.mass-mail-switcher .react-switch .react-switch-bg {
    background: rgb(36, 110, 165) !important;
}

#MassMailConfigFormAction .jodit-wysiwyg {
    height: calc(100vh - 550px) !important;
}

#MassMailConfigFormAction .email-documents .dzu-dropzone {
    height: 350px !important;
    min-height: auto !important;
    max-height: none;
}


.mass-mail-is-schedule-status-no div .react-switch .react-switch-bg{
    background-color:rgb(36, 110, 165) !important;
}
.mass-mail-subject-emoji {
    padding: 0 !important;
    margin: 0 !important;
}
.mass-mail-subject-emoji .EmojiBtn {
    position: absolute;
    z-index: 999;
    right: 32px;
    top: -44px !important;
}
#MassMailConfigFormAction .mass-mail-subject-emoji .EmojiBtn .action .dropdown-menu .dropDownActionMenu {
    max-height: 329px !important;
    /* overflow-y: auto !important; */
    overflow: hidden !important;
    background-color: #4C4A49 !important;
    position: absolute;
    right: 0px;
    top: 0px !important;
    border-radius: 9px;
    border: 1px solid #dadada;
}
.mass-mail-subject-emoji .EmojiBtn .action button {
    background-color: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}
.EmojiBtn .action .dropdown-menu.show {
    position: absolute !important;
    inset: 0px 0px auto auto !important;
    margin: 0px !important;
    transform: translate3d(0px, 30.4px, 0px) !important;
}
#MassMailConfigFormAction .mass-mail-subject-emoji .EmojiBtn .dropdown .dropdown-menu .dropDownActionMenu aside {
    height: calc(100vh - 387px) !important;
    /*width: calc(100vw - 1572px) !important;*/
    width:350px !important;
}

#MassMailConfigFormAction .mass-mail-subject-emoji .EmojiBtn .epr-emoji-category[data-name="flags"] {
    display: none !important;
}
#MassMailConfigFormAction .mass-mail-subject-emoji .EmojiBtn .epr-icn-flags[aria-label="Flags"] {
    display: none !important;
}
#MassMailConfigFormAction .mass-mail-subject-emoji .EmojiBtn .epr-emoji-category[data-name="objects"] {
    display: none !important;
}
#MassMailConfigFormAction .mass-mail-subject-emoji .EmojiBtn .epr-icn-objects[aria-label="Objects"] {
    display: none !important;
}
#MassMailConfigFormAction .jodit-wysiwyg {
    height: 250px !important;
}
.folder-title{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;    
}

.folder-label{
    width: calc(100% - 80px);
    white-space: nowrap;
    overflow: hidden; 
    text-overflow: ellipsis;
    font-size: 16px;
    color: #5b5b5b;
    font-weight: 500
}

.btn-preview-blue{
    background-color: #2F7FE3;
    background: #2F7FE3;
}

.mass-mail-disable-types{
    opacity: .8;
    pointer-events: none;
}

  .select-email-field{
    padding: 8px;
  }
body {
    margin: 0; /* Optional: removes default margin */
  }
  
  .alert-note {
    width: 100%;
    background-color: #fdeaea;
    color: #333;
    padding: 12px 20px;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    box-sizing: border-box; /* Ensures padding doesn't overflow */
  }
  
#MarketerNonProfitForm_transactionType{
    background-color: #e9ecef !important;
}
/*#TransactionTypeForm_payFrom .react-select__menu, #TransactionTypeForm_sumIntoTransactionGroup .react-select__menu, #GroupForm_sumIntoGroupId .react-select__menu, #GroupForm_calculatedFrom .react-select__menu { position:relative;}*/

#GroupForm_containsSummedTransactionTypesOrGroups .react-select-2-input { position:relative;}

.manageTransactionTypes .crmCardHeaderGrid.card-header{display: none;}
.custMaxWidth99_5 {
    max-width: 99.5%;
}

.bottom-pagination .TagRuleGridHeader{
 display: none;
}

.TagRuleGrid .gridLoaderInfo {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 5px;
}

.viewDataBtn {
    display: flex;
    justify-content: center;
    width: 100%;
}

.TagRuleGrid #entitytTableGrid .card-body{
    padding: 0px;
    position: relative;
    z-index: 0;
}
.assignmentConditionRuleGrid .addRuleBtn{
    height: auto!important;
    width:auto!important;
    position: relative!important;
    top: 0px!important;
}
.assignmentConditionRuleGrid .addRuleBtn svg{
    font-size:12px
}
.addRuleBtn{
    height: 42px!important;
    width:42px!important;
    position: relative!important;
    top: 0px!important;
}
.addRuleBtn .iconAlign-th{
   position: absolute !important;
  top: 13px !important;
  left: 13px !important;
}
.TagRuleGrid{
    position: relative;
    top:-10px;
}
.TagRuleGridHeader{
    position: absolute!important;
    top:-45px;
    z-index: 1;
    width: 80%!important;
}

.disabled-richtext .disabledRichTextEditor{
    height: 90px;
    background: #EFEFEF !important;
    border-radius: 0px !important;
    border: #EFEFEF solid 1px !important;
    color: #454545 !important;
    font-size: 14px !important;
    line-height: 20px !important;
    opacity: 1 !important;
    min-height: 42px !important;
    padding: 10px !important;
    overflow: hidden;
}


.nav-vehicle-docs .popUpLayoutForm{
    width: 100% !important;
}

/*Added style for Manage vendor >> Inventory >> Bid Retrival Grid*/
.TagRuleGrid .table-responsive {
    min-height: 95px;   
}

/* Updated CSS */
.donorDonationSearch .text-right {
    white-space: nowrap; 
}
.oprationStatus table thead tr th:nth-child(1),
.oprationStatus table tbody tr td:nth-child(1) { width: 20%;max-width: 45vh; }
.drawer-field-grid.nonprofitQuestions {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.drawer-field-grid.nonprofitQuestions .drawer-field-label,
.drawer-field-grid.nonprofitQuestions .drawer-field-value {
    flex: initial;
    width: auto;
    max-width: 49%;
}
div[id*="vehicleDetailsDrawerTabs-tabpane-"] .drawer-field-label {
    font-size: 14px;
}

.nav-nonprofit-grouping .selectInputField {
  z-index: 999;
  width: 260px;
}

.highcharts-credits{
    display: none !important;
}

.nav-donation-report-total-row > td{
    color: white !important;
}

/* wizard CSS */
.app-content:has(.mainWrapper) {
    border: none !important;
}
.mainWrapper form .row .col-sm-8 {
    display: none !important;
}
body.theme-navv3 div.mainWrapper {
    background-size: cover !important;
    background-position: center !important;
    height: calc(100vh - 40px) !important;
    overflow-y: auto;
    align-content: center;
}
body.theme-navv3 div.mainWrapper .topCardOrange {
    border-top: none !important;
    background: none !important;
    box-shadow: none !important;
    opacity: 1;
    width: auto;
    height: auto;
    padding: 0px;
    margin-top: 5px !important;
}
body.theme-navv3 div.mainWrapper .topCardOrgHead {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
}
body.theme-navv3 div.mainWrapper .topCardOrange label {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
}
body.theme-navv3 div.mainWrapper .btn-orange {
    background-color: #F39F4B !important;
    box-shadow: none !important;
    border-radius: 4px !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    border: 0 !important;
    height: 42px !important;
    line-height: 42px !important;
    cursor: pointer !important;
    padding: 0 18px !important;
    text-align: center !important;
    vertical-align: top !important;
    display: inline-block !important;
    -webkit-user-drag: none !important;
    width: 100%;
}
body.theme-navv3 div.mainWrapper .text-primary.small.position-absolute {
    color: #ffffff !important;
}
body.theme-navv3 div.mainWrapper .topCardOrange .col-md-12.col-sm-12.col-xs-12 {
    padding-left: 0 !important;
}
body.theme-navv3 div.mainWrapper .selectInput {
    background-color: #e8f0fe !important;
    border: 1px solid #e8f0fe;
    border-radius: 4px;
    box-shadow: none;
    font-size: 14px;
    outline: none;
    width: 100%;
    padding: 0px !important;
}
body.theme-navv3 div.mainWrapper .selectInput>div:first-child {
    background-color: #e8f0fe !important;
    border: 1px solid #fff;
    border-radius: 4px;
    box-shadow: none;
    font-size: 14px;
    outline: none;
    height: 42px;
    width: 100%;
}
body.theme-navv3 div.mainWrapper #WizardSetPasswordForm_password{
    /* background: #ffffff !important;
    background-color: #ffffff !important; */
    border: 1px solid #fff;
    border-radius: 4px;
    box-shadow: none;
    font-size: 14px;
    outline: none;
    height: 42px;
    width: 100%;
}
body.theme-navv3 div.mainWrapper input[name*="WizardSetPasswordForm[confirmPassword]"]{
    background-color: #e8f0fe !important;
    border: 1px solid #fff;
    border-radius: 4px;
    box-shadow: none;
    font-size: 14px;
    outline: none;
    height: 42px;
    width: 100%;
}
body.theme-navv3 div.mainWrapper .btnBox {
    margin: 25px 15px 25px 0px;
}
div#WizardSetPasswordForm\[password\]-constraints-tooltip {
    max-width: fit-content !important;
}
body.theme-navv3 div.mainWrapper .topCardOrange .errorBox {
    margin: 0 15px 0 0px !important;
}
body.theme-navv3 div.mainWrapper #WizardSetPasswordForm_password ~ .btn:focus,
body.theme-navv3 div.mainWrapper #WizardSetPasswordForm_password ~ .btn.focus {
    outline: 0;
    box-shadow: none;
}
body.theme-navv3 form .topCardOrange .position-absolute.d-flex.align-items-center.gap-2 {
    background: #FFFFFF;
    padding: 0 .5em;
}
body.theme-navv3 form .topCardOrange .position-absolute.d-flex.align-items-center.gap-2 button{
    padding: 0 .3em !important;
}
body.theme-navv3 form .topCardOrange .btn:focus,
body.theme-navv3 form .topCardOrange .btn.focus {
    box-shadow: none !important;
}
/* wizard CSS */
.next-callback-type-header label{
    padding-top:5px;
}
.callback-due-date-default-times-header div label{
    padding-top:5px;
}
/* .next-callback-type-container{
    border-top:none !important;
} */

.callback-due-date-default-times-container{
    border-top:none !important;
}
.callback-type-configuration-header{
    display: none;
}
.next-callback-type-header span, .callback-due-date-default-times-header span{
    display: block;
}

/* ----- New Css For Callback Default Toggle Button */
.callback-default-time-header {
  width: 100%;
  margin-bottom: 8px;
}

.callback-default-time-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.callback-default-time-label {
  font-weight: 500;
  flex: 1;
}

.callback-toggle {
  margin-left: 1rem;
  display: flex;
  align-items: center;
}
.callback-toggle {
  display: flex;
  align-items: center;
  gap: 6px; /* space between toggle and label */
}

.callback-toggle .same-time-label {
  font-weight: 500;
  white-space: nowrap;
}
.callback-default-time-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.callback-toggle-vertical {
  display: flex;
  flex-direction: column;
  /* align-items: flex-end; 
  gap: 4px; */
}

.same-time-label {
  font-weight: 500;
  white-space: nowrap;
}



.commCenterInlineForm .row, .commCenterDrawerForm .row, .commCenterNotesForm .row, .commDispositionForm .row,
.contactSendEmailForm .row, .commSingleEntity .row, .followUpForm .row, .contactSendSmsForm .row
{
    display: inherit;
}

.callIcon{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 2px;
    opacity: 1;
    padding: 8px 10px;
    margin: 3px 5px;
    display: inline-block;
}
.callIcon:hover{
    opacity: 0.8;
}
.dueCallIcons{
  position: fixed;
  right: -6px;
  bottom: 0;
  height: 40px;
  line-height: 40px;
}
.callbackDue{
  width: 40px;
  height: 40px;
  display: inline-block;
  background-color: #fff;
  border: #D60000 solid 2px;
  line-height: 38px;
}
.viewCallback{
  width: 40px;
  height: 40px;
  display: inline-block;
  background-color: #fff;
  border: #3f9d19 solid 2px;
  line-height: 38px;
}

.bottomNotificationContainer{
  position: fixed;
  bottom: 60px;
  right: 20px;
  max-height: 60vh;
  overflow-y: auto;
  overflow-x: hidden;
  width: 40vw;
}

.notifySec{
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 10px #00000029;
  border: 2px solid #D60000;
  opacity: 1;
  margin: 5px 0;
  padding: 20px;
}
.closeNotification{
  background-color: #D60000;
  padding: 0px 6px 4px;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: -10px;
  right: 0;
}

.dueHeaderDiv{
  text-align: center;
  color: #ffff;
  font-size: 16px;
  font-weight: bold;
  background-color: #D60000;
  position: absolute;
  top: 0;
  padding: 10px;
  width: 100%;
  left: 0;
}

.viewdueCallbackPadd{
  padding-top: 10px;
}

.imageGallaryCallback{
  max-height: 380px;
  overflow-y: auto;
}
.cntr{
    text-align: center;
}
.link_active{
    color:"#0056b3" !important;
    text-decoration: none ;
}
.link_inactive{
    color:"#0056b3" !important;
    text-decoration:"none";
    cursor:"default";
}

.lnheight{
    line-height: 22px !important;
  }

  .closeNotification{
	background-color: #D60000;
	padding: 10px 5px;
	text-align: center;
	cursor: pointer;
	position: absolute;
	top: -20px;
	right: -10px;
	height: 24px;
}

.closeNotificationIcon{
	position: relative;
	top: -20px;
	right: 1px;
}

.file-icon-placeholder svg {
    width: 36px;
}

.callbackNoteFormSection .formSpacing{ 
	padding:0px!important;
}
.paddingNoteSec{
	padding:5px 5px 5px 5px;
}
.callbackDocumentFormCont .col-md-auto{
	padding: 0px!important;
}
.callbackDocumentFormCont .card-body{
	padding: 5px!important;
}
.callbackDocumentFormCont .formSpacing{ 
	padding:10px!important;
}
.modal-header .close{ 
	position: relative; top:-10px;
}
.agentGroupAssignedLabel label{
	display: block;
}
.serviceGroupLink{
	float: right;
}
#CallbackNoteForm_notes .rdw-editor-main{
	min-height: 286px !important;
    max-height: 287px;
}
#CallbackForm_notes .rdw-editor-main{
	min-height: 147px !important;
    max-height: 148px;
}
.callDetailContentWrapper:has(.reallocateCallback) {
    min-height: 23vh;
}

.customTimePickerHour{
	border: none;
	width: 24px;
	text-align: center;
	background-color: transparent;
	padding: 0;
	outline: none;
	color:  #495057
}
.customTimePickerMinute{
	border: none;
    width: 30px;
    text-align: center;
    background-color: transparent;
    padding: 0;
    outline: none;
    color:  #495057
}
.customTimePickerPeriod{
	border: none;
    background-color: transparent;
    margin-left: auto;
    outline: none;
    color:  #495057;
    cursor: pointer;
    font-size: 0.875rem;
    padding: 0 0 0 4px;
}
.callDetailNoteCont .jodit-status-bar {
  display: none;
}

.callDetailNoteCont .jodit-container{
    border: none !important;
}

.callDetailNoteCont {
    padding-left: 0px;
    padding-right: 0px;
    max-height: calc(100vh - 60vh);
    min-height: 200px;
    overflow-y: auto;
}

#fieldsetTab .tab-content{
    border: #EFEFEF solid 1px;
    padding: 10px 15px !important;
}

.callDetailLeftTabCont .tab-content{
    padding-left: 0px !important;
    padding-right: 0px !important;
    padding-top: 1px !important;
}

.callDetailRightTabCont .tab-content{
    padding-top: 0px !important;
}

.callDetailNoteCont .note-card {
    border: none;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}
.callDetailNoteCont .note-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.callDetailNoteCont .note-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 8px;
}

.callDetailNoteCont .note-content-editor {
    /*font-size: 1rem;*/
    padding-right: 10px; /* Add padding to prevent overlap with scrollbar */
}

.callDetailNoteCont .note-content {
    /*font-size: 1rem;*/
    max-height: 150px; /* Set the maximum height */
    overflow-y: auto; /* Enable vertical scroll when content exceeds height */
    padding-right: 10px; /* Add padding to prevent overlap with scrollbar */
}

.addNoteFormCont, .addDocFormCont{
    padding-left: 0px;
    padding-right: 0px;
    max-height: 400px;
    overflow-y: auto;
}

.addNoteFormCont .msgBrdGray, .addDocFormCont .msgBrdGray{
    border: none !important;
}

.addNoteFormCont .col-sm-12, .addDocFormCont .col-sm-12
{
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
}

.addNoteFormCont #entityFormSec .card-body, .addDocFormCont #entityFormSec .card-body{
    padding: 0px;
}

.callNoteFormDiv, .callDocFormDiv
{
    overflow:hidden auto;
}

.addDocFormCont .dzu-dropzone{
    min-height: 250px !important;
}


.associateContactTooltips .popover{
    background-color:#253342;
    min-width: 200px!important;
    color: #FFF;
    text-align: left;
}
.associateContactTooltips .bs-popover-right>.arrow::after{
    border-left-color: #253342;
}

.associateContactTooltips .popover-body{
    width: auto!important;
    text-align: left;
}
.associateContactTooltips .popover-body div{
    color: #fff!important;
}

.deleteIcon{
    background-color: #D60000;
    padding: 6px;
    border-radius: 3px;
    cursor: pointer;
}
.deleteIcon svg{
    position: relative;
    top: -2px;
}
.viewIcon{
    background-color: #FFFFFF;
    padding: 6px;
    border-radius: 3px;
    cursor: pointer;
}
.viewIcon svg{
    position: relative;
    top:-2px;
    color:#334959 ;
}
.downloadIcon{
    background-color: #FFFFFF;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    text-align: center;
}
.downloadIcon .icon{
    position: relative;
    top: -2px;
}
.associateContactTooltips .bs-popover-right>.arrow::after{
    border-right-color: #253342 !important;
}

.contactActionDropdownButton .btn-info{
    background-color: #253342;
    border: #253342 1px solid;
}

.contactActionDropdownButton .btn-info:hover{
    background-color: #253342;
    border: #253342 1px solid;
}

.btnAddPdAdj {
    padding: 0px 5px 2px !important;
}
#CallNoteForm_note{
    padding: 5px 20px;
}

#CallNoteForm_note .rdw-editor-main{
    min-height: 10rem;
    max-height: 10rem;
}

.callNoteFormDiv .craSection,  .callNoteFormDiv .form-group{
    margin-bottom: 0px!important;
}

#rightTabsCallDetail-tabpane-uploadDocForm .addDocFormCont .fileUploadPlaceHolderContainer{
    padding: 20px;
}

#rightTabsCallDetail-tabpane-uploadDocForm .addDocFormCont .dzu-dropzone {
    min-height: 304px !important;
    width: 96%;
    margin: 5px 15px;
}

#leftTabsCallDetail-tabpane-docList{
    min-height: 334px;
    max-height: 335px;
    overflow-y: auto;
    overflow-x: hidden;
}

.filterActionMenu .action > button{
    background-color: transparent!important;
    border: none!important;
    border-radius: 0px;
}
.filterActionMenu .show>.btn-primary{
    background-color:transparent !important;
    border:none !important;
    box-shadow: none !important;
}
.filterActionMenu .action button:hover,  .filterActionMenu .action button:focus,  .filterActionMenu .action button:active{
    background-color: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0px;
}
.filterActionMenu .action .dropdown-menu{
    min-width: 150px;
    width: 180px;
    transform: translate(-60px, 35px)!important;
}
.filterActionMenu .caretSign {
    position: absolute;
    top: -17px;
    left: 75px;
}
.filterActionMenu .action-menu-item:first-child{
    border-top-left-radius:10px!important; 
    border-top-right-radius:10px!important;
}
.filterActionMenu svg{
    position: relative;
    top:-5px
}

.mapCallCustomerPhoneForm .popUpLayoutForm{
    display: inline-block;
    width: 100%;
}
.fade.modal-bottom.modal.show .callDetailDrawerOnCall b {
	color: #000000;
}
.callDetailDrawerOnCall .modal-footer ,
.callDetailDrawerOnCall .modal-header {
    display: none !important;
}

.resizeCallDetailsDrawer {
    max-height: 0px !important;
    height: 0px !important;
}

.callDetailDrawerOnCall .custom-dropdown-menu .dropdown-menu[style*="transform: translate(0px, 27px);"] {
    transform: translate(0px, 35px) !important;
}
.fade.modal-bottom.modal.show[style*="display: block;"]:has(.callDetailDrawerOnCall) {
    /* z-index: 9999 !important; */
    z-index: 1049 !important;
}
.modalCustomClassDrawerModalParent .modal-header button.close {
    color: #FFFFFF;
    opacity: 1;
    padding-top: 14px;
    font-weight: 400;
}
.modalCustomClassDrawerModalParent .modal-header svg.gray.modalArrowIcon {
    color: #FFFFFF;
    display: none;
}
.modal.modal-bottom .callDetailDrawerOnCall .modal-body {
    max-height: 90.9vh;
}
.notesWrapper{
    min-height: 5rem;
}
.notesDrawer .modal-header {
    display: none !important;
}
.card.linkedToMatchedClient:hover ,
.card.linkedToMatchedcompany:hover ,
.card.linkedToMatchedcontact:hover ,
.card.linkedToMatchedtask:hover {
    box-shadow: 1px 3px 10px #DDD;
}
.textYellow{
    color:#FFBF3F;
}
.link-to-client-form .brdBoxGary1px {
    border: none !important;
}
.link-to-client-button {
    position: relative;
    /* top: 45px; */
    top: 20px;
}
.LinkToAnotherContact .boxWhite-brd.padd10 {padding-top: 0;}
.LinkToAnotherContact .form-group-equal {
    margin-top: 0;
}
.addNotesTab div#mainErrorDiv .errorSummary {
    margin: 0px 15px 10px;
}
.dispatch-note-input .react-select__menu {
	max-width: max-content;
}
.dispatch-note-input .react-select__control {
    min-height: 25px !important;
    height: 25px !important;
    border: none;
    font-weight: 500;
    cursor: pointer;
}
.dispatch-note-input .react-select__input {
    font-size: 16px !important;
    color: #000000 !important;
}
.dispatch-note-input .react-select__control--is-focused,
.dispatch-note-input .react-select__control--is-selected {
    border: none !important;
    box-shadow: none !important;
}
.dispatch-note-input .react-select__input-container {
    border: none !important;
}
.dispatch-note-input .react-select__value-container {
    padding: 0 6px !important;
    min-height: 20px !important;
    height: 20px !important;
}
.dispatch-note-input .react-select__value-container .react-select__single-value + div {
    padding: 0px !important;
	margin: 0px !important;
}
.dispatch-note-input .react-select__indicators .react-select__indicator-separator {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}
.dispatch-note-input .react-select__indicators .react-select__indicator {
    padding: 0px 8px !important;
    color: #000 !important;
}
.dispatch-note-input .react-select__placeholder {
    font-size: 16px !important;
    color: #000 !important;
}
.dispatch-note-input .react-select__menu {
    width: 450px !important;
    color: #13305E !important;
}
.dispatch-note-input .react-select__control--is-disabled {
    background-color: transparent !important;
    cursor: not-allowed !important;
}
.dispatch-note-input .react-select__control--is-disabled .react-select__placeholder, .dispatch-note-input .react-select__control--is-disabled .react-select__indicators .react-select__indicator {
    color: #D0D3D4 !important;
}
.dispatch-note-input .react-select__menu-list .react-select__option:hover {
    background-color: #307FE3 !important;
    color: #FFF !important;
    opacity: 0.8;
}
.dispatch-note-input .react-select__menu-list .react-select__option--is-focused {
    background-color: transparent !important;
    color: inherit !important;
}
.dispatch-note-input .react-select__option:not(:last-child) {
	border-bottom: 2px solid #EBEBEB;
}
.legendWrapper:has(.dispatch-note-input) {
    padding-top: 0px;
    padding-bottom: 4px;
}
.dispatch-note-input {
    padding: 2px;
}
.modalCustomClassDrawerModalParent .modal-body{
    padding-bottom: 10px!important;
    padding-top: 10px!important;
}

.fieldsetWrapper{
    min-height: 7em;
    flex-direction: column;
    height:100%;
    width: 100%;
}
.legendWrapper.notesSelectInput .react-select__control.react-select__control--is-disabled {
    flex-wrap: nowrap;
    min-height: 20px !important;
    height: 21px !important;
}
.fieldset .legend {
    top: -15px;
    position: relative;
    z-index: 10;
    padding-left: 5px;
}
.legendWrapper{
    margin: 0px 10px 0px 0px;
    padding: 2px 5px 3px;
    border: 1px solid #D0D3D4;
    display: inline-block;
    background: #FFFFFF;
    position: relative;
    z-index: 10;
    color: #000000;
}
.fieldsetWrapperDivide{
    height: unset;
}

.notesSelectInput{
    min-width: 11rem;
}

.callDetailRed{
    color: #D60915 !important;
}
.minHeight48{
    min-height: 3rem;
}
.linkToAnotherContact .ps-custom-card-contact {
    height: calc(100em - 86em);
    overflow: auto;
}
.ps-custom-card-contact {
    /* height: 40vh; */
    height: calc(100em - 89em);
    overflow: auto;
}
.Toastify__toast-container {
    z-index: 99999 !important;
}
.pointer-events-none {
    pointer-events: none;
}
.widthMaxContent{
    width: max-content;
}
div#fieldsetTab {
    flex: auto;
}
.ps-custom-card {
    height: 46vh;
    overflow: auto;
}
.linkToMatchedCompany:has(.ps-custom-card) {
	min-height: 46vh;
	overflow: hidden;
}
.linkToMatchedCompany .ps-custom-card {
    overflow: auto;
    max-height: 46vh;
    height: auto;
}
div#fieldsetTab {
    flex: auto;
}

.legendWrapper.notesSelectInput .dispatch-note-input .react-select__input {
    font-size: 14px !important;
}
.legendWrapper.notesSelectInput .react-select__placeholder + div {
    margin: 0px;
    padding-bottom: 0px;
    padding-top: 0px;
    min-height: 20px !important;
	height: 20px !important;
}
.legendWrapper.notesSelectInput .dispatch-note-input.react-select--is-disabled .react-select__placeholder + div {
	min-height: 20px !important;
	height: 20px !important;
}
.legendWrapper.notesSelectInput .dispatch-note-input.react-select--is-disabled .react-select__placeholder {
    font-size: 14px !important;
    min-height: 20px !important;
	height: 20px !important;
}
.legendWrapper.notesSelectInput .dispatch-note-input .react-select__placeholder {
    font-size: 14px !important;
    min-height: 20px !important;
	height: 20px !important;
}
.legendWrapper.notesSelectInput .dispatch-note-input {
    padding: 2px 0px 0px !important;
}
.legendWrapper.notesSelectInput .dispatch-note-input .react-select__control {
    min-height: 20px !important;
	height: 20px !important;
}
.searchNoteArea:has(.noteSearch),
.searchNoteArea input.noteSearch:focus-visible{
	outline:none;
}
.fieldsetModalHeadSection .col-sm-3 .bold {font-weight: 400;}
.fieldsetModalHeadSection .col-sm-3 b {font-weight: 500;}
.fontWeight-500 {font-weight: 500;}

.notesWrapper.dispatch-notes-form #RideNoteForm_notes {
    height: auto !important;
}
.notesWrapper.dispatch-notes-list .card-body {
	padding:  0.4rem 1.3rem 0px !important;
}
.notesWrapper.dispatch-notes-form {
    padding: 0px !important;
}
.notesWrapper.dispatch-notes-form .card-body {
    padding: 10px 10px 0px 10px !important;
}
.notesDrawer:has(.dispatch-notes-form) .modal-footer {
    padding-top: 0px;
}
.notesWrapper.dispatch-notes-form .row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}
.notesWrapper.dispatch-notes-form .row .col {
    padding: 0px 3px !important;
}
.modal.modal-bottom .notesDrawer .modal-body {
	padding: 0px !important;
}
.notesDrawer {
    display: flex;
    flex-direction: column;
}

.notesDrawer .callHeaderDiv {
    position: sticky;
    top: 0;
    z-index: 10;
}

.notesDrawer .notesWrapper.dispatch-notes-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}
.endCallDispo .modal-header{
    border-radius: 0;
}
.commDispositionForm .popUpLayoutForm .msgBrdGray{
    margin-top: 5px;
    padding: 10px 20px 0px;
    margin-bottom: -10px;
}
.commDispositionForm .dzu-dropzone{
    min-height: 150px!important;
    max-height: 150px!important;
    overflow-y: auto!important;
}
.callDrawerDispo .popUpLayoutForm{
    width: 100%;
}

@media only screen and (max-width: 1950px) {
    .modal.modal-bottom .modal-body:has(.callDetailContentWrapper) {
       max-height: calc(100vh - 40px);
       overflow-y: hidden;
    }
}

.modal.modal-bottom .modal-body:has(.commDispositionForm) {
    min-height: 40vh;
}
.legend.callDrawerDispo .popUpLayoutForm .form-row{
    border: none;
    min-height: 30vh;
}
.phoneManagerDrawer .modal-content {
    overflow: visible !important;
}

.phoneManagerDrawer .modal-body {
    overflow: visible !important;
}

.phoneManagerForm .popUpLayoutForm {
    width: 100%;
}

.notAllowed{
    cursor:not-allowed !important;
}

.deviceSettingsFormCont label
{
    float: left;
    width: 100%;
    text-align: left;
}

.deviceSettingsFormCont .popUpLayoutForm
{
    float: left;
    width: 100%;
    margin: 18px 5px 0px;
}

.deviceSettingsFormCont .mainErrorDiv
{
    text-align: left;
}

.queueAgentRowOffline {
    background-color: lightgray;
}

.queueAgentRowOnline {
    background-color: lightgreen;
}

.queueAgentRowBusy {
    background-color: lightcoral;
}

.marginLeftRight0{
    margin-left: 0px;
    margin-right: 0px;
}
@media only screen and (min-width: 1200px) {
    .modal-dialog {
        min-width: 25%!important;
        margin: 0;
    }
}
.dialOpen{
    position: absolute;
    bottom: 5px;
    z-index: 999;
    right: 10px;
    cursor: pointer;
}
.sampleIcons{
    position: absolute;
    bottom: 5px;
    z-index: 999;
    left: 10px;
    cursor: pointer;
}

.modal-20{
    background-color: #FFF;
    position: fixed;
    z-index: 9999;
    bottom: 40px;
    left: 1px;
    width: 20%;
    padding: 20px;
}
.modal-30{
    background-color: #FFF;
    position: fixed;
    z-index: 9999;
    bottom: 40px;
    left: 1px;
    width: 30%;
    padding: 20px;
}
.modal-40{
    background-color: #FFF;
    position: fixed;
    z-index: 9999;
    bottom: 40px;
    left: 1px;
    width: 40%;
    padding: 20px;
}

.modal-30-withoutPadding{
    background-color: #FFF;
    position: fixed;
    z-index: 9999;
    bottom: 40px;
    left: 1px;
    width: 30%;
}
.modal-40-withoutPadding{
    background-color: #FFF;
    position: fixed;
    z-index: 9999;
    bottom: 40px;
    left: 1px;
    width: 40%;
}
.modal-50{
    background-color: #FFF;
    position: fixed;
    z-index: 9999;
    bottom: 40px;
    left: 1px;
    width: 50%;
    padding: 20px;
}
.modal-70-leftPadding{
    background-color: #FFF;
    position: fixed;
    z-index: 9999;
    bottom: 40px;
    left: 29.9%;
    width: 70%;
}
.modal-60-leftPadding{
    background-color: #FFF;
    position: fixed;
    z-index: 9999;
    bottom: 40px;
    left: 39.9%;
    width: 60%;
}
.modal-50-leftPadding{
    background-color: #FFF;
    position: fixed;
    z-index: 9999;
    bottom: 40px;
    left: 29.9%;
    width: 50%;
}
.modal-50-leftPadding-with-50{
    background-color: #FFF;
    position: fixed;
    z-index: 9999;
    bottom: 40px;
    left: 49.9%;
    width: 50%;
}
.modal-75-withoutPadding{
    background-color: #FFF;
    position: fixed;
    z-index: 9999;
    bottom: 40px;
    left: 1px;
    width: 75%;
}
.modal-100{
    background-color: #FFF;
    position: fixed;
    z-index: 9999;
    bottom: 40px;
    left: 1px;
    width: 99.85%;
    padding: 20px;
}
.modal100{
    background-color: #FFF;
    position: fixed;
    z-index: 9999;
    bottom: 40px;
    left: 1px;
    width: 99.85%;
    padding:0 15px;
}
.modal50{
    background-color: #FFF;
    position: fixed;
    z-index: 9999;
    bottom: 40px;
    left: 1px;
    width: 49.85%;
    padding:0 15px;
}
.closeModal{
    position: absolute;
    top: 10px;
    right: 10px;
}
.loaderDiv{
    padding-top: 50px;
    padding-bottom: 50px;
}
.loader{
    width: 150px;
    height: 150px;
    margin: 0 auto;
    text-align: center;
}
.brd-blue{
    border:#3C7BD1 solid 1px;
}
.brd-red{
    border:#D60000 solid 1px;
}
.brd-darkBlue{
    border:#12305D solid 1px;
}
.brd-grey{
    border:#D1D3D4 solid 1px;
}
.redBG{
    background-color: #D60001;
}
.brd-darkBlueShadow{
    box-shadow: 0px 3px 6px #07070769;
    border: 1px solid #12305D;
    border-radius: 0px 3px 0px 0px;
    opacity: 1;
}
.brd-darkSkyBlueShadow{
    box-shadow: 0px 3px 6px #07070769;
    border: 1px solid #3C7BD1;
    border-radius: 0px 3px 0px 0px;
    opacity: 1;
}
.brdBtBlue{
    border-bottom: 1px solid #12305D;
}
.brdRadius3{
    border-radius: 3px 3px 0 0;
}
.iconBlue{
   color:#3C7BD1
}
.iconGray{
    color:#D1D1D1;
}
.iconRed{
    color:#D60915;
}
.padd20{
    padding: 20px;
}
.paddLT20{
    padding-left: 20px;
    padding-top: 20px;
}
.paddLeft10{
    padding-left:10px;
}

.paddT20L10{
    padding-left: 10px;
    padding-top: 20px;
}
.padd100{
    padding: 100px 10px;
} 
.mrgAdjust{
    margin: 0 -5px 0 -15px;;
}
.mrgAdjust1{
    margin: 0 -5px 0 -5px;;
}
.mrgZero{
    margin: 0;
}
.dInherit{
    display: inherit;
}
.btnSecLeftPull{
    margin-left: -10px;
}
.buttonBrdIcons{
    border-radius: 3px;
    padding: 4px;
    width: 30px;
    height: 30px;
    display: inline-table;
    margin: 5px 9px 5px 9px;
}
.buttonRedBrdIcons{
    border-radius: 3px;
    padding: 4px;
    width: 30px;
    height: 30px;
    display: inline-table;
    margin: 6px 8px 5px 8px;
}
.buttonBrdIcons:hover{
    border:#3C7BD1 solid 1px;
    cursor: pointer;
}
.redBG:hover {
    border: #d60001 solid 1px;
}
.lastEndCallIcons .buttonRedBrdIcons:hover{
    background-color: #D60001;
}
.lastEndCallIcons .buttonRedBrdIcons:hover .callEnd{
    color: #fff;
}
.lastEndCallIcons{
    text-align: center;
    float: right;
}
/* Phonesystem Design Styles
.phoneSystemModal .modal-header, .phoneSystemModal .modal-footer{
    display: none!important;
}*/
/* comment this code after added modalCustomClass="phoneSystemModal"
.modal-header, .modal-footer{
    display: none!important;
}
*/
.btnStickyRight{
    position: absolute;
    right: 0;
    top: -1px;
}
.btnSmall{
    font-size: 12px!important;
    padding: 5px!important;
}
.btnSmall:hover{
    font-size: 12px!important;
    padding: 5px!important;
}
.onlineIcon{
    color: #30f730;
    background-color: #007108;
    border: #007108 solid 1px;
    border-radius: 100px;
}
.offlineIcon{
    color: #e7ece7;
    background-color: #7a7575;
    border: #a29a9a solid 1px;
    border-radius: 100px;
}
.dial-pad-header {
    background-color: #3C7BD1;
    color: #fff;
    padding: 10px;
}
.redBGDialPad {
    background-color: #D60000!important;
}
.brd-darkBlueShadow.deviceSettingsFormCont .row.dial-pad-header.marginRemove.border-top.white.dark-blue-bg {
    /*margin: -20px -15px 0px;*/
}
.marginRemove{
    margin: -20px -20px 0px;
}
.marginRemoveCust{
    margin: -20px -25px 0px -20px;
}
.marginZero{
    margin: 0px!important;
}
.paddingTopRemove{
    padding-top: 0px;
}
.grid-cols {
    height: 330px !important;
    overflow-y: auto !important;
    padding-top: 13px;
}
.dial-pad-content {
    padding: 0px 5px;
    /* height: 100px; */
}
.dial-pad-header h5{
    margin: 0px;
    padding: 0px;
    font-size: 16px;
    line-height: 15px;
}
.current-status-action-buttons {
    display: flex;
    justify-content: space-between;
    margin: 0px 4px 20px;
}
.right-border{
    border-right: #E2E7EB solid 1px;
}
.left-border-blue{
    border-left: #12305D solid 1px;
}
.right-border-blue{
    border-right: #12305D solid 1px;
}
.left-border-blue{
    border-left: #12305D solid 1px;
}
.dial-pad-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2px;
    margin: 6px 6px 8px 8px;
    border-radius: 3px;
    cursor: pointer;
    height: 46px;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
}
.dial-pad-col:active{
    border: #333 solid 1px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    background-color: #f5f5f5;
}

.dial-pad-col-active{
    border: #333 solid 1px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    background-color: #f5f5f5;
}

.dial-pad-col .num {
   color: #000;
   font-size: 16px !important;
   font-weight: bold;
}
.dial-pad-col .letters {
    font-size: 10px !important;
}

.display-dialed-number {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-left: -4%;
    margin-right: -2%;
    width: 103%!important;
}

.display-dialed-number .dialed-number {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    width: 90%;
    flex: 1;
    padding: 5px 10px;
    text-align: start;
}
.display-dialed-number .cancel-button {
    cursor: pointer !important;
}

.status-button {
    background-color: #FFF;
    color: #000000;
    height: 50px !important;
    border: 1px solid #D1D3D4 !important;
    border-radius: 3px !important;
    font-size: 15px !important;
    padding: 4px !important;
    word-wrap: break-word;
}
.status-button:hover, .status-button:active {
    background-color: #307FE3 !important;
    color: #FFF !important;
}

.status-col .status-button.active{
    background-color: #307FE3 !important;
    color: #FFF !important;
}
.end-of-shift-container {   
    height: 300px !important;
    max-height: 350px !important;
    padding: 1rem;
}

.current-status-container .status-col {
    margin: 5px 0px;
    padding: 0px 5px;
}

.phone-icon-wrapper {
    background-color: #3E9D00;
    padding: 8px;
    cursor: pointer;
    border-radius: 0px 3px 3px 0px;
}

.phone-icon-wrapper-inactiveCall{
    background-color: #808080FF !important;
}

.phone-icon-wrapper svg{
    position: relative;
    top: -2px;
    right: 3px;
}
.btn-radius{
    border-radius: 3px!important;
}
.btn-width{
    width: 116px;
}
.mrgLeftFix{
    margin-left: -10px!important;
}
.agentList{
    max-height: calc(100vh - 64vh);
    overflow-y: auto;
}
.userListSec{
    padding: 6px 10px;
    text-align: left;
}
.userListPhone{
    width: 55%;
    text-align: right;
}
.userPhoneIcon{
    color: #3C7BD1;
    font-size: 18px;
    position: absolute;
    top: 7px;
    right: 10px;
    cursor: pointer;
}
.callTalk{
    color: #3C7BD1;
    font-size: 23px;
}
.paddRt30{ padding-right: 30px;}
.paddRt50{ padding-right: 50px;}
.view-all-link {
    color: #2F7FE3;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}


.search-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.search-input {
    width: 100%;
    height: 32px;
    line-height: 17px;
    font-size: 12px;
}
.search-icon-wrapper {
    width: 30px;
    height: 30px;
    background-color: #3E9D00;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 3px;
    cursor: pointer;
}
.search-icon-wrapper .search-icon {
    font-size: 15px;
    color: #FFF;
    position: relative;
    left: 1px;
    top: -1px;

}

.agentList::-webkit-scrollbar {
    width: 10px;
  }
   
  .agentList::-webkit-scrollbar-track {
    box-shadow: inset 0 0 1px rgba(136, 136, 136, 0.3);
  }
   
  .agentList::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid rgb(192, 192, 192);
  }

  .phoneSystemTop{
    /* position: absolute;
    top: 60px;
    left: 0px; */
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    border: 1px solid var(--unnamed-color-d60000);
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 3px #E2E7EB;
    border: 1px solid #D60000;
    opacity: 1;
    width: 100%;
    position: relative;
    top:1px;
    margin-bottom: 1px;
  }
  .btnText{
    position: relative;
    top:2px;
    left:3px;
  }
.inputPhone{
    border: #D1D3D4 solid 1px;
    height: 40px;
    line-height: 36px;
    background-color: #fff;
    display: inline-block;
    border-radius: 3px 0 0 3px;
    color:#000000;
    font-weight: 600;
    width: 70%;
    margin-left: 7px;
    padding: 0 10px;
}
.inputPhone:focus-visible{
    outline: none;
    box-shadow: none;
    border: #D1D3D4 solid 1px!important;
}
.btn-outline{
    border: #3C7BD1 solid 1px;
    background-color: #FFF;
    border-radius: 2px;
    color: #3C7BD1;
    padding: .375rem .65rem;
    line-height: 1.5;
}
.btn-outline:hover{
    border: #3C7BD1 solid 1px;
    border-radius: 3px;
    background-color: #3C7BD1;
    color: #FFFFFF;
}
.btn-outline-gray{
    border: #D1D3D4 solid 1px;
    background-color: #FFF;
    border-radius: 2px;
    color: #D1D3D4;
    padding: .375rem .65rem;
    line-height: 1.5;
}
.btn-outline-gray:hover{
    border: #D1D3D4 solid 1px;
    border-radius: 3px;
    background-color: #D1D3D4;
    color: #FFFFFF;
}
.inputGray label{
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    line-height: 21px;
}
.dialPadIcon{
    position: absolute;
    top: -5px;
    right: 2px;
}

.current-status-action-buttons .btn-green:hover, .current-status-action-buttons .btn-green:focus, .current-status-action-buttons .btn-green:active, .current-status-action-buttons .active-green{
    background-color: #fff !important;
    border: #3E9D00 solid 1px !important;
    color: #3E9D00;
    font-weight: 600;
    box-shadow: 1px 1px 2px 0px #3E9D00;
}
.current-status-action-buttons .btn-red:hover, .current-status-action-buttons .btn-red:focus, .current-status-action-buttons .btn-red:active, .current-status-action-buttons .active-red{
    background-color: #fff !important;
    border: #D60000 solid 1px !important;
    color: #D60000;
    font-weight: 600;
    box-shadow: 1px 1px 2px 0px #D60000;
}
.current-status-action-buttons .btn-red, .current-status-action-buttons .btn-green {
    width: 127px !important;
    height: 50px !important;
}
.current-status-action-buttons .btn-green:not(.active-green) {
    background-color: #FFBF3F !important;
    border: 1px solid #FFBF3F !important;
    box-shadow: 1px 1px 2px 0px #FFBF3F !important;
    color: #000;
}
.current-status-action-buttons .btn-green:not(.active-green):active, .current-status-action-buttons .btn-green:not(.active-green):focus {
    opacity: 1;
}
.current-status-action-buttons .btn-green:not(.active-green):hover {
	opacity: 0.8;
}
.status-col .btn-outline-secondary .active{
    color: #fff;
    background-color: #6c757d;
}
.svgSizeAdjust svg{
    width: 65px;
    height: 65px;
    margin-top: 15px;
    cursor: pointer;
}
.svgSizeAdjust-1 svg{
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.conferenceSizeAdjust svg{
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.addPeopleSec{
    max-height: 115px;
    overflow-y: auto;
    margin: 0 -8px 0 0;
}
.phoneNotificationSec{
    margin: -20px;
    background-color: #3C7BD1;
    color: white;
    padding: 12px 20px;
}
.tp5{
    top:5px;
}
.tp8{
    top:8px;
}
.tp10{
    top:10px;
}
.callBg{
    padding: 12px 10px;
    background-color: #3E9D00;
    border-radius: 100px;
}
.callEndBg{
    padding: 12px 10px;
    background-color: #D60001;
    border-radius: 100px;
}

.confActionsDiv{
    /* padding: 0 15px 20px 15px; 
    margin-top: -15px; */
    position: absolute;
    bottom: 0;
}
.addPeopleConf{
    padding: 0 10px 15px 5px;
}

.w3-light-grey, .w3-hover-light-grey:hover, .w3-light-gray, .w3-hover-light-gray:hover {
    color: #000 !important;
    background-color: #f1f1f1 !important;
    height:13px;
}
.w3-green, .w3-hover-green:hover {
    color: #fff !important;
    background-color: #4CAF50 !important;
}
.noMsgSec{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 10;
}
.moveModalRight{
    left: 20.05%!important;
}
.customBox .dial-pad-container{
    width: 230px;
}
/* Email Design */
.modal-Right{
    background-color: #FFF;
    background-color: #FFF;
    position: absolute;
    bottom: 40px;
    right: 0;
    width: 50%;
    height: 84vh;
}
.brd-darkSkyGrayShadow{
    box-shadow: 0px 3px 6px #ccc;
    border: 1px solid #ccc;
    border-radius: 0px 3px 0px 0px;
    opacity: 1;
}
.dial-pad-header-new{
    background-color: #3F9D00;
    color: #fff;
    padding: 10px 0;
    margin: 0;
}
.modal-Right .search-input{
    width: 100%;
    height: 35px;
    line-height: 17px;
    font-size: 14px;
    background-color: #f5f5f5;
    color: #333333;
}
.closeIcon{
    position: absolute;
    top:5px;
    right: 3px;
    cursor: pointer;
}

/* Callback screen*/
.fieldsetBox{
    border:#EFEFEF solid 2px;
    margin: 6px 0;
    position: relative;
}
.legendBox{
    border: #EFEFEF solid 2px;
    padding: 5px 15px;
    width: auto;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-left: 15px;
    margin-bottom: 0;
}
.paddTPLR{ padding:10px 15px 13px;}
.padd0{ padding: 0;}
.addNoteArea{
    min-height: 330px;
    max-height: 331px; 
    margin-top: 2px; 
    overflow: hidden auto;
    padding-bottom: 5px;
}
.noteListSection{ 
    min-height: 250px;
    max-height: 251px; 
    margin-top: 2px; 
    overflow: hidden auto;
    padding-bottom: 5px;
}
.noteTabSection{
    min-height: 250px;
    max-height: 251px; 
    margin-top: 2px; 
    overflow: hidden auto;
    padding-bottom: 5px;
}
.notBoxArea{
    min-height: 275px;
    max-height: 277px; 
    margin-top: 2px; 
    overflow: hidden auto;
    padding-bottom: 5px;
}
.noteBox{
    border:#EBEBEB solid 1px;
    padding: 12px;
}
.whenBesideTab{
    margin-top: 22px!important;
}

/* Customize tab line fieldset */
/* Generic Tab Section Style */
#fieldsetTab{ margin-top: 5px;}
#fieldsetTab .nav-tabs{ border-bottom: none!important;}
#fieldsetTab .nav-tabs a{ border-top: #EFEFEF solid 2px!important; border-right: #EFEFEF solid 2px!important;border-left: #EFEFEF solid 2px!important; color: #8b8b8b;border-radius: 0px!important; padding: 5px 15px!important;}
#fieldsetTab .nav-tabs .nav-item.show .nav-link, #fieldsetTab .nav-tabs .nav-link.active{
  color: #FFFFFF!important;
  background-color: #3F9D00!important;
  border-radius: 0px!important;
  border: #3F9D00 solid 2px!important;
  padding: 5px 15px!important;
}
#fieldsetTab .nav-tabs .nav-link:hover{
  border: #3F9D00 solid 2px!important;
  background-color: #3F9D00!important;
  border-radius: 0px!important;
  color: #FFFFFF!important;
  padding: 5px 15px!important;
}
#fieldsetTab .tab-content{
  border: #EFEFEF solid 2px;
  padding: 10px 15px;
}
.callHeaderDiv {
    text-align: left;
    color: #ffff;
    font-size: 16px;
    font-weight: bold;
    background-color: #3F9D00;    
    position: absolute;
    top: 0;
    padding: 10px;
    width: 100%;
    left: 0;
  }
.btnSec { margin-top: -6px;}
.btnSec .btn-sm{
    padding: 3px 10px 4px;
    line-height: 18px;
    font-size: 13px !important;
}
.btnSec .btn-sm {
    padding: 3px 10px 4px!important;
    line-height: 18px;
    font-size: 13px !important;
}

.rt10{
    right:10px;
}
.posAbs{
    position:absolute;
}

.phoneSystemTop .callIcon{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 2px;
    opacity: 1;
    padding: 8px 10px;
    margin: -1px 10px 0;
    display: inline-block;
}
.dialOpt:first-child{
    margin-left: -8px;;
}
.gearIcon-left{
    position: absolute;
    left: 0;
    top: -2px;
}
.queListIconsAlign{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.queListText{
    text-align: center;
    width: 45px;
    line-height: 10px;
    padding-top: 2px;
}

/* Phone Callback Attachment and Notes */
.searchNoteArea{
    position: relative;
    margin-bottom: 6px;
}
.callNoteViewSection .noteSearch{
	margin-left: 0px;
}
.noteSearch{
    background-color: #FFFFFF;
    border-radius: 3px;
    border: #EBEBEB solid 1px;
    height: 35px;
    color: #666;
    width: 100%;
    padding-left: 10px;
    margin-left: 4px;
}
.searchTaskIcon{
    position: absolute!important;
    top: 4px!important;
    right: 30px!important;
    color: #000000!important;
    cursor: pointer!important;
    background-color: #3F9D0000!important;
    height: 30px!important;
    width: 30px!important;
    text-align: center!important;
}
.searchIcon{
    position: absolute!important;
    top: 4px!important;
    right: 5px!important;
    color: #000000!important;
    cursor: pointer!important;
    background-color: #3F9D0000!important;
    height: 30px!important;
    width: 30px!important;
    text-align: center!important;
}
  .searchIcon .faSearch{
    position: relative;
    top: 2px;
    font-size: 18px;
  }
  .icon-container {
    background-color: #3F9D00;
    width: 30px; 
    height: 30px;
    display: flex;
    justify-content: center;  
    align-items: center;      
    border-radius: 3px;      
    position: relative;
    top: 2px; 
  }
  
  .icon-container .faPlus {
    color: white;  /* Change the icon color to white for contrast */
    font-size: 16px;  /* Adjust the size of the icon */
  }
  .noteBox .actionBtn{
    position: absolute;
    top: -2px;
    right: 0;
  }

  .attchmentArea{
    display: grid;
    grid-template-columns: repeat(6, 1fr); 
    gap: 10px; 
  }
  .attachmentBox{
    text-align: center;
    border: 2px dashed #EBEBEB;
    border-radius: 2px;
    padding: 5px;
  }
  .attachmentBox:hover{
    border: #3F9D00 solid 2px;
    border-radius: 2px;
    padding: 5px;
    cursor: pointer;
  }
  .noteActionMenu .action > button{
    background-color: transparent!important;
    border: none!important;
    border-radius: 0px;
  }
  .noteActionMenu .show>.btn-primary{
    background-color:transparent !important;
    border:none !important;
    box-shadow: none !important;
  }
  .noteActionMenu .action button:hover,  .noteActionMenu .action button:focus,  .noteActionMenu .action button:active{
    background-color: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0px;
  }
  .noteActionMenu .action .dropdown-menu{
    min-width: 80px;
    width: 100px;
  }

.gallerySec {
    width: auto; 
    height: 100px;
    overflow: hidden;
    position: relative;
}

.responsive-image {
    width: auto; 
    height: 100%;
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
}
.responsive-svg{
    width: auto;
    height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.stickyTopBtn{
    position: absolute;
    right: 10px;
    top: -39px;
    background-color: #fff;
    width: auto;
    padding: 6px 4px 6px 8px;
    margin: 0;
}
.callbackActionBtn .dropdown-toggle{
    padding: 4px 10px 3px !important;
    line-height: 18px;
    font-size: 13px !important;
    border-radius: 2px;
}
/* comment code of border 
.stickyTopBtn{
    position: absolute;
    right: 10px;
    top: -39px;
    background-color: #fff;
    width: 260px;
    border: #EFEFEF solid 2px;
    padding: 6px 6px 6px 7px;
    margin: 0;
}*/

.filterActionMenu .action > button{
    background-color: transparent!important;
    border: none!important;
    border-radius: 0px;
}
.filterActionMenu .show>.btn-primary{
    background-color:transparent !important;
    border:none !important;
    box-shadow: none !important;
}
.filterActionMenu .action button:hover,  .filterActionMenu .action button:focus,  .filterActionMenu .action button:active{
    background-color: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0px;
}
.filterActionMenu .action .dropdown-menu{
    min-width: 150px;
    width: 180px;
    transform: translate(-60px, 35px)!important;
}
.filterActionMenu .caretSign {
    position: absolute;
    top: -17px;
    left: 75px;
}
.filterActionMenu .action-menu-item:first-child{
    border-top-left-radius:10px!important; 
    border-top-right-radius:10px!important;
}
.filterActionMenu svg{
    position: relative;
    top:-5px
}
.model-40-setting{
    padding: 14px;
}
.w5{
    width:5%;
}

.w75{
    width:75%;
}
.linkToMatchedTask#fieldsetTab{
    overflow-y: auto;
    max-height: 46vh;
}
.associatedTasks#fieldsetTab ,
.queueAgentList#fieldsetTab{
    overflow-y: auto;
    max-height: 46.3vh;
}
/* Sidebar fixed to the left */
.sidebar {
    position: absolute; /* Fixed positioning to stay on the screen */
    top: 0;
    /* min-height: 100%;
    height: 100%; */
    /* min-height: calc(100% - 80px); */
    /* height: calc(100% - 125px); */
    /* height: calc(100em - 65.8em); */
    /* height: calc(100em - 70.8em); */
    height: calc(100% + 7.9em);
    width: 3.5rem; /* Default width of sidebar */
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: 0.3s width;
    z-index: 1000; /* Ensure it's on top of other content */
}

/* Box icon container */
.boxicon-container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    cursor: pointer;
    position: relative;
}

/* Box icon */
.boxicon {
    margin: 0.8rem;
    animation-iteration-count: 1;
    z-index: 2;
}
.hovered-div .ml-auto.nav .custom-dropdown-menu .nav-link {
	color: #13305E;
	font-weight:600;
}
.hovered-div .ml-auto.nav .custom-dropdown-menu .dropdown-menu {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    min-width: 100%;
    /* border-top: 6px solid transparent; */
}
/* Hovered div */
.hovered-div {
    position: absolute;
    top: 6px;
    right: 100%; /* Position it to the left of the icon */
    min-width: max-content;
    width: auto;
    height: 75%;
    border: solid 2px rgb(19 48 94);
    border-right: none;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    visibility: hidden; /* Initially hidden */
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    color: #13305E;
	font-weight:600;
    border-radius: 4px 0px 0px 4px;
}

/* When the item is hovered, show the hovered div */
.sidebar.stickySidebarCallDetail .hovered-div:has(#actDropDown) {
    padding: 0px 0px;
}
.boxicon-container:hover .hovered-div {
    visibility: visible;
    opacity: 1;
}

/* Keep hovered div visible when mouse is over it */
.hovered-div:hover {
    visibility: visible;
    opacity: 1;
}


.first-and-last-trash-fix {
    margin: 0.8rem;
}

.boxicon-container:hover > .boxicon::after {
    opacity: 1;
    transition: 0.1s;
}

.final-icon {
    background-color: red;
}

.description {
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5rem;
    z-index: 10;
    font-weight: bold;
    margin: 0;
    color: black;
    transition: 0.2s opacity;
}

.active-description {
    color: white;
}

/*.expanded {
    width: 13rem;
    align-items: flex-start;
}*/

.show-description {
    opacity: 1;
}

.container {
    display: flex;
}

.text {
    color: white;
    z-index: 100;
    margin: 0 auto;
    align-self: center;
    font-size: 32px;
}

.stickySidebarCallDetail{
    position: absolute;
    /* top: 78px; */
    top: 0px;
    right: 0;
    /* height:100%; */
}

/* .stickyFooter{
    z-index:999999!important;
} */
.callDetailContentWrapper:has(.linkToAnotherContact) {
    min-height: 21rem;
}
.callDetailContentWrapper{
    min-height: 200px;
    max-height: calc(100vh - 150px);
}
.callDetailContentWrapper .fieldset{
    position: relative;
}
.fullSizeOpenAgentAction {
    height: calc(100% - 1em);
}
div#fieldsetTab2 {
    flex: auto;
}
.callDetailContentWrapper .fieldset .actionBtnPos{
    position: absolute;
    top: -18px;
    right: 38px;
}

.callDetailMenuItem{
    color: #757587;
}

.boxicon-container {
    position: relative;
    display: flex;
    justify-content: flex-start;
    cursor: pointer;
    position: relative;
}

.boxicon-container .description {
    transition: 0.2s;
}

.boxicon-container:hover .description {
    opacity: 1;
}
/* Apply to the individual items inside the dropdown */
.custom-dropdown-menu .dropDownActionMenu > div {
    background-color: white;  /* White background for the dropdown items */
    padding: 10px 15px;  /* Padding for the dropdown items */
    cursor: pointer;  /* Make items look clickable */
    color: #333;  /* Text color for items */
    border-bottom: 1px solid #ddd;  /* Optional: border between items */
}

/* Style for the items on hover */
.custom-dropdown-menu .dropDownActionMenu > div:hover {
    background-color: #f0f0f0;  /* Background color on hover */
    color: #007bff;  /* Change text color on hover */
}

/* Optional: Highlight selected item */
.custom-dropdown-menu .dropDownActionMenu > div.selected {
    background-color: #007bff;  /* Background color for selected item */
    color: white;  /* Text color for selected item */
}

/* Override the default dropdown item styling */
.custom-dropdown-menu .dropDownActionMenu .action-menu-item {
    color: #13305E;  /* Default text color */
    text-decoration: none;  /* Remove underline from links */
    padding: 10px 15px;  /* Add padding for the items */
    cursor: pointer;  /* Make them clickable */
}
.mapCallToExistingContactHeader > span.bold {
	color: #FFFFFF;
}
.modal-title:has(.mapCallToExistingContactHeader) ~ button.close  {
	opacity: 1;
	padding-top: 14px;
}
.modal-dialog.modalCustomClassDrawerModalParent > .modal-content {
	min-height: 15vh;
}
.modal-title:has(.mapCallToExistingContactHeader) ~ button.close > span {
	color: #FFFFFF;
}
.modal-title:has(.mapCallToExistingContactHeader) + .gray.modalArrowIcon {
	color: #FFFFFF;
    display: none;
}
.modal-header:has(.mapCallToExistingContactHeader) {
	background-color: #13305E!important;
	border-radius: 0px;
}
.custom-dropdown-menu .dropDownActionMenu .action-menu-item.show-all-button {
    color: #FFFFFF !important;  /* Ensure the color stays on hover */
    background-color: #13305E !important;  /* Do not change background color */
}
/* Hover effect for the action menu items */
.custom-dropdown-menu .dropDownActionMenu .action-menu-item:hover {
    color: #FFFFFF !important;  /* Ensure the color stays on hover */
    background-color: #13305E !important;  /* Do not change background color */
}
.form-row .form-group:has(#CallNoteForm_note) {
    padding-top: 0px;
}
.custom-dropdown-menu .dropDownActionMenu .action-menu-item{
    color: #13305E !important;  /* Ensure the color stays on hover */
}
/* Optional: Remove the divider between the first item and the menu */
.custom-dropdown-menu .dropDownActionMenu .action-menu-item:first-child {
    border-top: none;  /* Remove divider from the topmost item */
}

.fieldset {
    margin: 5px 2px 2px;
    padding: 0px 20px 10px;
    border: 1px solid #D0D3D4;
}
.legendGroup-left {
    display: inline-block;
    float: left;
}
.legendGroup-right {
    display: inline-block;
    float: right;
}

.fieldset .legendButton {
    margin: 0px 4px 0px;
    padding: 0px;
    /* border: 1px solid #D0D3D4; */
    display: inline-block;
    /* background: #FFFFFF; */
    top: -45px;
    position: relative;
}
/* Custom CSS */
.rotate-45 {
    transform: rotate(45deg); /* Rotates the element by 45 degrees */
    display: inline-block; /* Ensures the transform property works */
}

.actionBtnPos{
    position: relative;
    top: -50px;
}
.w95{
    width:95%
}
.w99{
    width:99%
}
.boxicon-container:hover g,
.boxicon-container:hover svg {
    filter: brightness(1.5); /* Increases brightness on hover */
    opacity: 1; /* Ensure visibility */
}
.boxicon-container:hover svg {
    transform: scale(1.1); /* Slight zoom effect */
    transition: all 0.3s ease-in-out;
}
.boxicon-container.active{
    filter: brightness(1.5); /* Increases brightness on hover */
    opacity: 1; /* Ensure visibility */
}
.boxicon.active{
    filter: brightness(1.5); /* Increases brightness on hover */
    opacity: 1; /* Ensure visibility */
}
.callTransferHeader{
    background: transparent;
    color: black;
}
.userAgentListBox{
    min-height:68px;
}
.queueAgentRowBox{
    min-height:44px;
}
.custom-gap-10{
    gap: 10px;
}
.dark-blue.dark-blue-border:hover{
    border: 1px solid red !important;
    color: red !important;
    background: transparent;
}
/* .fade.modal-bottom.modal.show[style*="display: block;"]:has(.modalCustomClassDrawerModalParent) { */
/* .fade.modal-bottom.modal.show */
/*.fade.modal-bottom.modal.show[style*="display: block;"]:has(.callDetailDrawerOnCall) ~ .fade.modal-bottom.modal.show {*/
/*    z-index: 999999 !important;*/
/*}*/
.stickyFooter {
    z-index: 1050 !important;
}
fieldset.fieldsetModalHeadSection .paddTPLR {
    padding-top: 0px;
}
.legendNotAllowed{
    cursor:not-allowed !important;
}
.legendInactive{
    border: 1px SOLID #D0D3D4;
    color: #D0D3D4;
}
.h40 {
    height: 40%;
}
.h45 {
    height: 45%;
}
.callThirdPartyFieldsetTab {
    height: calc(100% - 32px);
}
/* End of shift style starts */
.end-of-shift-card .title {
    color: #D60915;
    font-size: 16px;
}
.end-of-shift-card .message {
    color: #000;
    font-size: 14px;
}
.end-of-shift-card .available-button {
    color: #FFF;
    font-size: 16px;
    width: 128px;
    height: 56px;
}
.psCardMinHeight{
    min-height: 9.5rem;
}
.scriptSection{
    max-height: 8em;
    overflow: auto;
    padding-left: 5px !important;
}
.agentSection{
    max-height: 4em;
    min-height: 4em;
    overflow: auto;
    padding-left: 5px !important;
}
.agentSection .link-to-client-form {
    padding-left: 31px !important;
}
.nonAgentSection .link-to-client-form {
    padding-left: 20px;
}
.linkToAnotherContact .link-to-client-form{
    padding-left: 20px;
}
.custom-gap-20{
    gap: 20px;
}
/* .modal-dialog.callDetailDrawerOnCall .modal-content {
    min-height: calc(100rem - 61rem);
} */
.callDetailContentWrapper {
    width: calc(100% - 3rem);
}
.callDetailDrawerOnCall .modal-body:has(.sidebar.dark-blue-bg.stickySidebarCallDetail) {
    padding-right: 0px;
    overflow-x: hidden;
    overflow-y: hidden;
}
.modal-dialog.callDetailDrawerOnCall .row.LinkToAnotherContact {   
    overflow-y: auto;
    max-height: calc(100vh - 50.5vh) !important;
}
.modal-dialog.callDetailDrawerOnCall .row.LinkToAnotherContact .table-responsive {
    overflow-y: overlay;
    max-height: calc(100vh - 50vh) !important;
}
.deviceSettingsFormCont .deviceSettingsFormContRow label {
    float: unset;
}
.deviceSettingsFormCont label:has(+ div .d-flex.flex-column .position-relative input[label="Password"]) {
  float: unset;
}
.w-100vh {
    width: 100vh !important;
}
.fieldset:has(.searchUserList) {
    padding: 0px 5px 10px;
}
/* @media only screen and (min-width: 1280px){ */
@media only screen and (min-width: 1280px) and (max-width: 1600px){
    .boxicon {
        margin: 0.6rem 0.8rem;
        animation-iteration-count: 1;
        z-index: 2;
    }
}
/* End of shift style ends */
.modal100-nav{
    background-color: #FFF;
    position: fixed;
    z-index: 9999;
    bottom: 40px;
    left: 1px;
    width: 99.85%;
    padding: 10px;
}
.modal50-nav{
    background-color: #FFF;
    position: fixed;
    z-index: 9999;
    bottom: 40px;
    left: 1px;
    width: 50%;
    border: #EFEFEF solid 1px;
}
.drawerHeadSec{
    background-color: #253F65;
    color: #FFFFFF;
    line-height: 44px;
    padding: 0 20px;
    display: inline-flex;
    justify-content: center;
    width: 100%;
}
.drawerHeadSecWhite{
    color: #000000;
    line-height: 44px;
    display: inline-flex;
    width: 100%;
}
.head1{
    font-size: 16px;
    font-weight: 500;
}
.subHead1{
    font-size: 12px;
    font-weight: 400;margin-left: auto;
}
.skyBlueBgIconSec{
    background-color: #DEEBFF;
    color: #0047BA;
    font-size: 10px;
    line-height: 14px;
    border-radius: 15px;
    padding: 4px 10px 6px;
    margin-left: 10px;
    white-space: nowrap;
    cursor: pointer;
}
.flexRight{
    margin-left: auto;
}
.boxAgentScript{
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
}
.minHt{
    min-height: 120px;
}
.navInboundCallDrawerTabs #fieldsetTab .nav-tabs .nav-link.active{
    color: #FFFFFF!important;
}

/* .callDetailLeftTabCont{ //Note:- Added width 100% to render required sections with full width
    width: 50%;
    float: left;
} */
.callDetailLeftTabCont{
    width: 100%;
    float: left;
}
.callDetailRightTabCont {
    width: 50%;
    float: left;
    padding-left: 10px;
}
.navInboundCallDrawerTabs .callDetailNoteCont {
    padding-left: 5px;
    margin-right:-4px;
    max-height: 260px;
    min-height: 260px;
}
.navInboundCallDrawerTabs .callDetailRightTabCont .tab-content{
    max-height: 325px;
    min-height: 325px;
    overflow-y: auto;
}
.navInboundCallDrawerTabs  #rightTabsCallDetail-tabpane-uploadDocForm .addDocFormCont .fileUploadPlaceHolderContainer{
    padding: 5px 20px;
}
.navInboundCallDrawerTabs #rightTabsCallDetail-tabpane-uploadDocForm .addDocFormCont .dzu-dropzone{
    min-height: 265px!important;
}
.navInboundCallDrawerTabs .callDetailRightTabCont.section100 {
    width: 100% !important;
    padding-left: 0px;
}
.modal-header .close{
    color:#FFFFFF;
    opacity: 1;
}
.modal-header .close:hover{
    color:#FFFFFF;
    opacity: 0.8;
}
.adjustHeightThirdPartyCall{
    min-height: 293px;
}

/* dialpad first number style */
.dial-pad-container .dial-pad-col:first-child
{
    justify-content: flex-start;
}
.dial-pad-container .dial-pad-col:first-child .num {
    margin-top: 1px;
}
.stickyFooter .dialpadEnabledIcon{
    display: flex;
}
#root:has(~ .fade.modal-bottom.modal.show .callDetailDrawerOnCall) > .ui-navbar.navbar-fixed-top
{
	z-index: 1049;
}

.incoming-call-wrapper{
background-color:#F8FAFC;
border:#E2E8F0 solid 1px;
border-radius:10px;
padding:10px;
}

.callback-max-button-width{
    max-width: 11rem !important;
}
.borderRightGray{
    border-right: #D1D3D4 solid 1px;
}
.callDrawerDispo .popUpLayoutForm:has(.errorSummary) {
    max-height: 33vh;
    overflow-y: auto;
}
.acSpaceEvenly{
  align-content: space-evenly;
}
.fontEM12{font-size: 1.2em}

.agentSection:has(.callbackAgentActions){
    min-height: 28vh;
}
.textOneLine{
    white-space: nowrap;
}

.customPhone{
    padding: 3px;
}

.customEmail{
    padding: 3px;
}
.utleftMenu-List-selected
{
    background-color: #25334219; color: #454545; cursor: pointer; border-bottom: #CFCFCF solid 1px;
}
/* ------------- Service Desk Styles ------------- */
/* ----------------------------------------------- */
.boxWhite-brd{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    /* box-shadow: 0px 3px 6px #00000029; */
    border-top: #E9E9E9 solid 10px;
    opacity: 1;
  }
  .custSession-sec{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    /* box-shadow: 0px 3px 6px #00000029; */
    border-bottom: #E9E9E9 solid 10px;
    margin-bottom: -10px;
    opacity: 1;
  }
  .userIcon{
    padding: 10px 10px 10px 5px;
  }
  .userInfo-icon{
    width: 20px;
    height: 20px;
    background: #454545;
    border-radius: 50px;
    position: relative;
    list-style-type: none;
    text-align: center;
    display: inline-block;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 16px;
    vertical-align: middle;
    margin: 4px 8px 5px;
  }
  /* Added for Communication Center Top Buttons */
  .topPlusEnt{
    margin: 0 5px;
    position: relative;
    top: -3px;
    font-size: 26px;
  }
  .topExclamationTri{
    font-size: 23px;
    color: #D60000;
  }

  .addIcon{
    background-color: #3F9D19;
    border:#3F9D19 solid 1px;
    padding: 8px 10px;
    margin: 3px 5px;
    border-radius: 2px;
    opacity: 1;
    display: inline-block;
  }
  .addIcon:hover{
    opacity: 0.9;
  }
  .phoneIcon{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #3F9D19;
    border-radius: 2px;
    opacity: 1; 
    padding: 8px 10px;
    margin: 3px 5px;
    display: inline-block;
  }
  .phoneIcon:hover{
    opacity: 0.8;
  }
  .clearIcon{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #D60000;
    border-radius: 2px;
    opacity: 1; 
    padding: 8px 10px;
    margin: 3px 5px;
    display: inline-block;
  }
  .clearIcon:hover{
    opacity: 0.8;
  }
  .warningIcon{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #D60000;
    border-radius: 2px;
    opacity: 1; 
    padding: 9px 11px;
    margin: 3px 5px;
    display: inline-block;
    position: relative;
  }
  .warningIcon:hover{
    opacity: 0.8;
  }
  .phoneRed{
    background-color: #D60000;
    border:#D60000 solid 1px;
    padding: 8px 10px;
    margin: 3px 5px;
    border-radius: 2px;
    opacity: 1;
    display: inline-block;
  }
  .phoneRed:hover{
    opacity: 0.8;
  }
  .notifyCount{
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: #D60000;
    border:#D60000 solid 1px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    width: 15px;
    height: 15px;
    display: inline-block;
  }
  .pHeading-1{
    color: #253342;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
  }
  .pHeading-2{
    color: #253342;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
  }
  .pHeading-3{
    color: #253342;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
  }
  .pHeading-4{
    color: #354957;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
  }
  .headAdjustPadd{
    padding: 12px 0;
    margin-left: -2px;
  }
  .pHeadAdjust{
    padding: 8px 0;
    margin-left: -5px;
  }
  .tabBox{
    border:#EFEFEF solid 2px;
    margin-top: 5px;
    position: relative;
  }
  .tabBox-search{
    border:#EFEFEF solid 2px;
    position: relative;
  }
  .rightIcon{
    position: absolute;
    top:5px;
    right: 10px;
  }
  .vertical-middle{
    display: inline-block;
    height: 100%;
    vertical-align: middle;
  }
  .mrgBT50{
    margin-bottom: 50px;
  }
  .mrgBT80{
    margin-bottom: 80px;
  }
  .paddBT50{
    padding-bottom: 50px;
  }
  /* -------------- Dashboard Styles -------------------
  -----------------------------------------------------*/

  .topCardBox{
    border-top: #253342 solid 5px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 6px #00000026;
    opacity: 1;
  }
  .topCardCount h2{
    font-size: 1.5rem;
  }
  .topCardCount a{
    color: #212c40;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    padding-top: 15px;
    display: inline-block;
  }
  .topCardCount a:hover{
    color: #212c40;
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.8;
    text-decoration: none;
    padding-top: 15px;
    display: inline-block;
  }
  .topCardSm-text{
    font-size: 14px;
    color: #000000;
    font-weight: 400;
    margin-top: -5px;
    margin-bottom: 0;
  }
  .topCardTitle{
    color: #354957;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    padding-bottom: 10px;
}
.topCardLink a{
    color: #3F9D19;
    font-size:14px;
    line-height: 22px;
    text-decoration: none;
}
.topCardLink a:hover{
    text-decoration: underline;
    opacity: 0.8;
}
.dblockImp{ display: block!important;}

/* ---------------- Dashboard Tabs Styles --------------
-------------------------------------------------------*/

#blueTab .nav-tabs{ padding-bottom: 1px!important;}
#blueTab .nav-tabs a{ border: 1px solid #FFFFFF!important; color: #333333;border-radius: 0px!important; padding: 6px 10px!important;}
#blueTab .nav-tabs .nav-item.show .nav-link, #blueTab .nav-tabs .nav-link.active{
  color: #FFFFFF!important;
  background-color: #253342!important;
  border-radius: 0px!important;
  border: #253342 solid 1px!important;
}
#blueTab .nav-tabs .nav-link:hover{
  border: #253342 solid 1px!important;
  background-color: #253342!important;
  border-radius: 0px!important;
  color: #FFFFFF!important;
}
#blueTab .tab-content{
  margin: 10px 5px;
}
#blueTab .tab-content ul{
  padding: 0;
  list-style: none;
}

#darkblueTab .nav-tabs{ padding-bottom: 1px!important;}
#darkblueTab .nav-tabs a{ border: 1px solid #FFFFFF!important; color: #333333;border-radius: 0px!important; padding: 6px 10px!important;}
#darkblueTab .nav-tabs .nav-item.show .nav-link, #darkblueTab .nav-tabs .nav-link.active{
  color: #FFFFFF!important;
  background-color: #253342!important;
  border-radius: 0px!important;
  border: #253342 solid 1px!important;
}
#darkblueTab .nav-tabs .nav-link:hover{
  border: #253342 solid 1px!important;
  background-color: #253342!important;
  border-radius: 0px!important;
  color: #FFFFFF!important;
}
#darkblueTab .tab-content{
  margin: 0px;
}
#darkblueTab .tab-content ul{
  padding: 0;
  list-style: none;
}

/* Dashbord redesign*/
#genericTab .tab-content .dashBoardTabContentNew ul{
  padding: 0;
  margin: 0 -10px;
  list-style: none;
}
.dashBoardTabContentNew .contentList{
  border-top: 1px solid #DDDDDD;
  border-bottom: none;
  border-left: none;
  border-right: none;
  box-shadow: none;
  padding: 0 10px;
  margin-bottom: 0;
  list-style: none;
}
.dashBoardTabContentNew .remTimeBoxCurve{
  border:none;
  border-radius: 5px;
  background-color: #D4F6DE;
  color: #3F9D00;
  font-size: 14px;
  text-align: left;
  padding: 2px 10px;
  line-height: 22px;
  margin: 2px;
}

.dashBoardTabContentNew .overdueTimeBoxCurve{
  border: none;
  border-radius: 5px;
  background-color: #F9D6DC;
  color: #D60000;
  font-size: 14px;
  text-align: left;
  padding: 2px 10px;
  line-height: 22px;
  margin: 2px;
}
.dashBoardTabContentNew .titleLink a{
  color: #000000;
  text-decoration: none;
}
.dashBoardTabContentNew .titleLink a:hover{
  color: #000000;
  text-decoration: underline;
}

.app-content-slide .dashBoardTabContentNew .overdueTimeBoxCurve{
  font-size: 12px!important;
}
.grayRoundBtn{
  width: 28px;
  height: 28px;
  line-height: 26px;
  background:transparent;
  border:#E4E6E5 solid 1px;
  border-radius: 2px;
  position: relative;
  list-style-type: none;
  text-align: center;
  display: table;
  cursor:pointer;
}
.grayRoundBtn:hover{
  border:#E4E6E5 solid 1px !important;
  background-color: #f5f5f5 !important;
}
/* Action DropDown Menu */
.dashboardCardBox ::-webkit-scrollbar {
  background-color: #FFFFFF;
}
.dashboardCardBox .actionDashboard .dropdown-menu{
  max-height: calc(100vh - 350px);
  overflow-y: auto;
}
.dashboardDropmenu button{
  margin-left: 4px;
}
.actionDashboard{
  position: relative!important;
  top: -4px;
  left: 2px;
}
.actionDashboard button{
  background-color: transparent;
  border: none;
  border-radius: 3px;
  padding: 0 3px;
}
.actionDashboard button:hover, .actionDashboard button:focus, .actionDashboard button:active{
  opacity: 0.8;
}
.actionDashboard button:hover,.actionDashboard button:focus,.actionDashboard button:active{
  background-color: #f5f5f5;
  box-shadow: none;
  border: none;
  border-radius: 3px;
  padding: 0 3px;
}
.actionDashboard .btn-primary:not(:disabled):not(.disabled):active{
  background-color: transparent;
  border: none;
}
.actionDashboard .dropdown-toggle::after{
  display: none;
}
.actionDashboard .caretSign{
  display: none;
}
.actionDashboard .action-menu-item:focus, .actionDashboard .action-menu-item:active{
  background-color: transparent!important;
  color:#000000!important;
}
.actionDashboard .action-menu-item:hover {
  background-color: #f5f5f5!important;
}
.actionDashboard .action-menu-item:not(:last-child){
  border-bottom: none !important;
  background-color: transparent;
}
.actionDashboard .action-menu-item{
  color:#000000!important;
  font-weight: 600;
}
.actionDashboard .dropdown-menu{
  padding: 0;
}

.dashboardDropmenu-outline button{
  margin-left: 4px;
}
.actionDashboard-outline{
  position: relative!important;
  top: -4px;
  left: 2px;
}
.actionDashboard-outline button{
  background-color: transparent;
  border: #E4E6E5 solid 1px!important;
  border-radius: 3px;
  padding: 0 6px;
  color: #000000;
  position:relative;
	top:1px;
}
.actionDashboard-outline button span{
	line-height:23px;
}
.actionDashboard-outline button:hover, .actionDashboard-outline button:focus, .actionDashboard-outline button:active{
  opacity: 0.8;
  padding-bottom: 0.19rem !important;
}
.actionDashboard-outline button:hover,.actionDashboard-outline button:focus,.actionDashboard-outline button:active{
  background-color: #f5f5f5;
  border: #E4E6E5 solid 1px!important;
  box-shadow: none;
  border-radius: 3px;
  padding: 0 6px;
  color: #000000;
}
.actionDashboard-outline .btn-primary:not(:disabled):not(.disabled):active{
  background-color: transparent;
  border: none;
}
.actionDashboard-outline .dropdown-toggle::after{
  display: none;
}
.actionDashboard .caretSign{
  display: none;
}
.actionDashboard-outline .action-menu-item:focus, .actionDashboard-outline .action-menu-item:active{
  background-color: transparent!important;
  color:#000000!important;
}
.actionDashboard-outline .action-menu-item:hover {
  background-color: #f5f5f5!important;
}
.actionDashboard-outline .action-menu-item:not(:last-child){
  border-bottom: none !important;
  background-color: transparent;
}
.actionDashboard-outline .action-menu-item{
  color:#000000!important;
  font-weight: 600;
}
.actionDashboard-outline .dropdown-menu{
  padding: 0;
}
.actionDashboard-outline button, .actionDashboard-outline button:hover{
  padding-bottom: 0.19rem;
}
.actionDashboard-outline .dropdown-menu{
  transform: translate(-90px, 34px)!important;
}
.grayBrdBtn{
    border: #E4E6E5 solid 1px !important;
    box-shadow: none;
    border-radius: 3px;
    padding: 0 6px;
    color: #000000;
    font-size: 14px;
    font-weight: 200;
    position: relative;
    top: -3px;
}
.grayBrdBtn:hover{
  border: #E4E6E5 solid 1px !important;
  background-color: #f5f5f5 !important;
  box-shadow: none;
  border-radius: 3px;
  padding: 0 6px;
  color: #000000;
  font-size: 14px;
  font-weight: 200;
  position: relative;
  top: -3px;
}
.btnAlign{
  position: relative;
  top: 1px;
}
.dashBoardTabContentRecentlyUpdate .contentList{
  border-bottom: none;
  border-top: none;
  border-left: none;
  border-right: none;
  box-shadow: none;
  padding: 0 0 10px;
  margin-bottom: 0;
  list-style: none;
}
.dashBoardTabContentRecentlyUpdate ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
.nameText{
  color: #858585;
}
.dashBoardTabContentRecentlyUpdate .titleLink a{
  color: #000000;
  text-decoration: none;
}
.dashBoardTabContentRecentlyUpdate .titleLink a:hover{
  color: #000000;
  text-decoration: underline;
}
.viewAll-btn a{
  background-color: rgba(33, 193, 92, 0.2) !important;
  color: #3F9D00 !important;
  padding: 3px 6px;
  text-decoration: none;
  border-radius: 3px;
}
.viewAll-btn a:hover{
  background-color: rgba(33, 193, 92, 0.2) !important;
  color: #3F9D00 !important;
  padding: 3px 6px;
  opacity: 0.8;
  text-decoration: none;
  border-radius: 3px;
}
  /* -------------- Sticky Footer Section -------------- 
  ----------------------------------------------------*/
  
  .stickyFooter{
    background-color: #253342;
    padding: 8px;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 101;
    width: 100%;
    /* border-top: #E9E9E9 solid 10px; */
  }
  .footerActIcon{
      margin-right: 6px;
  }
  .footerActIcon a{
      opacity: 1;
  }
  .footerActIcon a:hover{
    opacity: 0.8;
  }
  .stickyFooter svg{ width: auto;}

  /* Color Scheme Styles */
  .pickerBox{
    background-color: #EFEFEF;
    color: #000000;
    font-size: 14px;
  }
  .white-picker{
    background-color: #FFFFFF;
    border: 1px solid #CFCFCF;
    height: 35px;
    width: 35px;
    margin-right: 10px;
  }
  .black-picker{
    background-color: #000000;
    border: 1px solid #CFCFCF;
    height: 35px;
    width: 35px;
    margin-right: 10px;
  }
  .gray-picker{
    background-color: #EFEFEF;
    border: 1px solid #CFCFCF;
    height: 35px;
    width: 35px;
    margin-right: 10px;
  }
  .green-picker{
    background-color: #3F9D19;
    border: 1px solid #CFCFCF;
    height: 35px;
    width: 35px;
    margin-right: 10px;
  }
  .orange-picker{
    background-color: #F79126;
    border: 1px solid #CFCFCF;
    height: 35px;
    width: 35px;
    margin-right: 10px;
  }
  .red-picker{
    background-color: #D60000;
    border: 1px solid #CFCFCF;
    height: 35px;
    width: 35px;
    margin-right: 10px;
  }
  .picker-sep{
    border: 1px solid #EFEFEF;
    opacity: 1;
    height: 1px;
    margin: 5px 0 10px;
  }

/*---------- Bootom Modal Drawer -----------*/
/*------------------------------------------*/
.modal.modal-bottom.fade .modal-dialog {
  transform: translate3d(0, 100vh, 0);
}

.modal.modal-bottom.show .modal-dialog {
  transform: translate3d(0, 0, 0);
}
/* .modal.modal-bottom .modal-dialog {
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
} */

.modal.modal-bottom .modal-dialog {
  position: fixed;
  margin: auto;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.modal.modal-bottom .modal-content {
  height: auto;
  overflow-y: auto;
}
.modal.modal-bottom .modal-body {
  padding: 0px 15px;
  max-height: calc(100vh - 155px);
  min-height: 60px;
  overflow-x: auto;
}
.modal.modal-bottom .modal-header{
  border:none;
  color: #000000;
  font-size: 16px;
  line-height: 21px;
}
.modal.modal-bottom .modal-header .modal-title{
  color: #000000;
  font-size: 16px;
  line-height: 21px;
}
.modal.modal-bottom.fade .modal-dialog {
  bottom: -100%;
  -webkit-transition: opacity 0.3s linear, bottom 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, bottom 0.3s ease-out;
  -o-transition: opacity 0.3s linear, bottom 0.3s ease-out;
  transition: opacity 0.3s linear, bottom 0.3s ease-out;
}

.modal.modal-bottom.fade.show .modal-dialog {
  bottom: 40px;
  left: 0;
}

.modal.modal-bottom.fade .modal-dialog {
  bottom: -100%;
}
.modal.modal-bottom .modal-footer{
  border-top:none;
  display:inline-block;
}
.modal-bottom .modalFooterSec{
  padding: 0 15px 10px;
}
.btn-red{
  color: #FFFFFF;
  background-color: #D60915!important;
  border: #D60915 1px solid!important;
  opacity: 1;
}
.btn-red:hover, .btn-red:active, .btn-red:focus{
  color: #FFFFFF;
  background-color: #D60915!important;
  opacity: 0.8;
}
.btn-green{
  color: #FFFFFF;
  background-color: #3F9D00!important;
  border: #3F9D00 1px solid!important;
  opacity: 1;
}
.btn-green:hover, .btn-green:active, .btn-green:focus{
  color: #FFFFFF;
  background-color: #3F9D00!important;
  opacity: 0.8;
}
.textAreaSec{
  background-color: #EFEFEF;
  border: #EFEFEF solid 1px;
  height: 120px;
  width: 100%;
}
.pull-btn-right{
  margin-left: 8px!important;
}
.selDocSec{
  position: relative;
}
.selDocAction{
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 3px 0 3px;
  background-color: #253342;
  padding: 2px 5px 5px;
  width: 55px;
  text-align: center;
}

@media only screen and (min-width: 320px) and (max-width: 600px){
  .mobCenter{ text-align: center!important;}
  .mobMrgBt10{ margin-bottom: 10px;}
  .dashboardSectionMaxHtScroll{
    min-height: 75px!important;
    max-height: 550px!important;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .gridCardBoxInner{
    z-index: inherit!important;
  }
  
}

.navbar-slide{ padding: 10px 16px 0px 310px;}
.connectedWith{ position:absolute; top: 0px; height: 100%;}
.leftDrawer{ background-color: #FFFFFF;width: 300px;height: calc( 100vh - 40px);display: flex; justify-content: center; position: fixed;
  top: 0; z-index: 1000; box-shadow: 0 1px 7px rgb(0 0 0 / 40%);}
.leftDrawer.active{transition: 350ms; display: block;}
.connectionList{ max-height: calc(100vh - 120px); overflow-y: auto;}
.connectionList ul{ padding: 0;margin: 0;}
.connectionList ul > li{ list-style: none; padding: 12px 20px; border-bottom: #EFEFEF solid 1px;}
.connectionList ul > li:hover, .connectionList ul > li:focus, .connectionList ul > li:visited{ background-color: #3F9D19; color: #FFFFFF; cursor: pointer;}
.connectionList ul .active{ background-color: #3F9D19; color: #FFFFFF; cursor: pointer; border-bottom: #49b720 solid 1px;}
/* Quick search result grid padding 10px;*/
.searchResultGrid .card-body{
  padding: 0px!important;
  margin-bottom: 0px!important;
}

/* TopCard slider styles */
.carousel-inner{
  background-color:#E9E9E9;
}
.topCardSlider .carousel-inner{
  border-bottom: #E9E9E9 solid 10px;
}
.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover{
  width: 15px!important;
}
.carousel-control-prev-icon{
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"><polyline points="15 18 9 12 15 6"/></svg>')!important;
  background-color: rgba(33, 193, 92, 0.2) !important;
  height: 50px;
  border:#91f84d solid 1px;
  border-radius: 0px 2px 2px 0px;
}
.carousel-control-next-icon{
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 18 15 12 9 6"/></svg>')!important;
  background-color: rgba(33, 193, 92, 0.2) !important;
  height: 50px;
  border:#91f84d solid 1px;
  border-radius: 0px 2px 2px 0px;
}
.carousel-control-prev-icon:hover, carousel-control-next-icon:hover {
  border:#3F9D00 solid 1px!important;  
}
.carousel-indicators{
  display: none;
}
.carousel-control-next, .carousel-control-prev{
  width: 15px!important;
}
.topCardSlider .p-3{
  padding: 1rem 1.5rem !important;
}
.sectionMaxHtScroll{
  min-height: calc(100vh - 312px);
  max-height: calc(100vh - 312px);
  overflow-y: auto;
}
.removePadRight{
  padding-right: 0px!important;
}
.removePadLeft{
  padding-left: 0px!important;
}
.gridCardBox h6{
  margin-bottom: 0px;
}
.view-all-records a{
  color: #000000 !important;
  text-decoration: none;
  line-height: 27px;
  font-weight: 400;
}
.view-all-records a:hover{
  color: #000000 !important;
  text-decoration: none;  
  line-height: 27px;
  font-weight: 400;
}
.myTaskSec{
  padding: 0px!important;
}

.icon-circle {
  width: 30px; 
  height: 30px;
  background-color: #f5f5f5;
  border-radius: 50%; 
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px 0 0; 
}

.carousel-control-prev, .carousel-control-next{
  display: none;
}
.carousel-control-prev.newPrev, .carousel-control-next.newNext{
  display: flex!important;
}
.carousel-control-next{
  align-items: center;
  right: 1px !important;
  cursor: pointer;
}
.carousel-control-prev{
  align-items: center;
  left: 0px !important;
  cursor: pointer;
}
.carousel-control-next-icon,.carousel-control-prev-icon{
  display: flex;
  align-items: center;
  justify-content: center;
}
/* .carousel-item .rowEqualHeight {
  display: flex;
  flex-wrap: wrap;
} */

.equal-height {
  display: flex;
}
.equal-height .box {
  background-color: #FFFFFF; 
  padding: 20px;
  border: 1px solid #dee2e6;
  flex: 1; 
  min-height: 135px;
}
.carousel-item .badgeAdd {
  white-space: nowrap;
}

.dashboardSectionMaxHtScroll{
  min-height: calc(100vh - 325px);
  max-height: calc(100vh - 325px);
  overflow-y: auto;
  overflow-x: hidden;
}

.noTopCardSectionMaxHtScroll{
  min-height: calc(100vh - 179px);
  max-height: calc(100vh - 180px);
  overflow-y: auto;
  overflow-x: hidden;
}

.dashboard-my-task-help-text { 
  width: 300px;
}
.dashboard-my-task-help-text .tooltip-inner{
  width: 100% !important;
  max-width: 100% !important;
}

/* dashboard dropdown option Recently Added and others */
.dashboardDropmenu .dropDownActionMenu .dropdown-item{
  white-space:normal!important;
}
.dashboardDropmenu .dropdown-item .dropDownActionMenu{
  width: 200px;
  max-height: 320px;
  overflow-y: auto;
}

.dashboardCardBox .recentlyAddedSection .dashboardDropmenu{
  position: absolute;
  left: 120px;
  top: 8px;
}

.dashboardCardBox .recentlyUpdatedSection .dashboardDropmenu{
  position: absolute;
  left: 135px;
  top: 8px;
}

.dashboardCardBox .myTaskSection .dashboardDropmenu{
  position: absolute;
  left: 72px;
  top: 8px;
}

.dashboardDropmenu .dropDownActionMenu .dropdown-item:active{
  background-color : #f5f5f5 !important;
}

.dashbordEntityName{
  word-break: break-word;
}

@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .app-content-slide .carousel-item .badgeAdd{
    white-space: nowrap;
  }
  .app-content-slide .viewAll-btn{
    margin-left: -10px;
  }
  .app-content-slide .dashboardCardBox .recentlyUpdatedSection .dashboardDropmenu{
    position: relative;
    left: 0;
    top: 0;
  }
  .app-content-slide .recentlyAddedSection .dropdown-menu{
    transform: translate3d(-70px, 28.6667px, 0px)!important;
  }
  
}

.noWrap{
    white-space: nowrap;
}
.crmAppContentLocked button.btn,
.crmAppContentLocked a.btn,
.crmAppContentLocked input.btn,
.crmAppContentLocked button[class^="btn-"],
.crmAppContentLocked a[class^="btn-"],
.crmAppContentLocked input[class^="btn-"]
{
    /*display: none;*/
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #ccc !important;
    border-color: #bbb !important;
    color: #666 !important;
    text-shadow: none !important;
    box-shadow: none !important;
}
.ui-navbar {
  background-color: #ffffff;
  height: 60px;
  padding: 10px 16px 10px 16px;
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.4);
}

.nav-menu {
  background-color: #253342;
  width: 300px;
  height: 100vh;
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  display: none;
  z-index: 1000;
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.4);
}

.nav-bar-toggle {
  width: 3%;
  display: inline-block;
  text-align: start;
  font-size: 1.2rem;
}
.nav-bar-logo{
  width:67%;
  display: inline-block;
  text-align: start;
  padding-left: 10px;
}

.sidebar-toggle-button {
  font-size: 1.2rem;
  cursor: pointer;
}

.nav-user-item {
  width: 50%;
  text-align: end;
}

.side-bar-options {
  border-radius: 0px;
  padding-top: 16px;
}
.no-border {
  border: 0px !important;
}
.nav-menu.active {
  transition: 350ms;
  display: block;
}

.nav-menu-items {
  width: 100%;
}

.side-bar-nav {
  background-color: #ffffff;
  border-bottom: 1px solid lightgrey;
  height: fit-content;
  padding-top: 0.7rem;
  height: 60px;
  color: white;
}
.side-bar-nav-logo {
  display: inline-block;
  width: 90%;
}

.side-bar-nav-close {
  cursor: pointer;
  color: black;
  display: inline-block;
  width: 10%;
  font-size: 1.4rem;
}

.list-group-item{ 
  background-color: #253342!important;
}
.list-group-item:hover, .list-group-item:focus{
  text-decoration: none!important;
}
.list-group-item-action{
  color: rgba(255, 255, 255, 0.25)!important;
}
.list-group-item-action:active{
  color: #ffffff!important;
}
.list-group-item-action:hover{
  color: #ffffff!important;
}
.list-group-item-action:focus{
  color: #ffffff!important;
}
/* 
.navBarChildMenu
{
  padding-left: 45px !important;
} */

.navBarParentMenu
{
  cursor: pointer;
  color: #fff !important;
}
.tertiaryMenuList ul > li {
  padding: 0px !important;
}

.menuNotificationCount{
  position: relative;
  top: 0;
  left: 3px;
  background-color: #D60000;
  border: #D60000 solid 1px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 1px 5px 2px;
}

/* Notification section If no universal search */
.noUniveralSearch .notifyWrapper{
  /* left: -230px!important; */
  left: -10vh!important;
  top: 40px!important;
}
.noUniveralSearch .notifyWrapper .triangle{
  display:none;
}
/* End*/

.navbarMenuOverlay
{

}

.navbarMenuOverlayContainer
{
  word-wrap: break-word !important;
}

.navDonorSearchGridUL
{
  padding-top: 5px;
}

.navDonorSearchGridSubUL
{
  padding-left: 8px;
}
.navBar-navLogo{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#uniCloseBox  .search-section-container{
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  overflow-x: hidden!important;
  position: relative;
  z-index: 999;
}


.uniHeader
{
    font-size: 16px;
    font-weight: bold;
    padding-left: 6px;
}

.uniItem
{
  border-top: 1px solid #e9ecef!important;
}

.uniMoreItems
{
    text-align: right !important;
}

.uniNoItems
{
    font-size: 16px;
}

.uniClose {
  font-size: 12px;
  position: absolute;
  width: auto !important;
  top: -5px;
  right: 0;
  height: 20px;
  padding: 5px !important;
  color: #263341 !important
}
#uniCloseBox .uniClose:hover, #uniCloseBox .uniClose:hover {
  background-color:transparent !important;
  border: none !important;
  cursor: pointer;
  color: #263341 !important
}

.searchEntity .dropdown-menu{
    width: 500px;
    transform: none!important;
    left: -500px!important;
    top: 15px!important;
    padding: 0px;
    border: #263341 solid 2px!important;
    border-radius: 0px!important;
  }
  .searchEntity .dropdown-header{
    padding: 8px 15px;
    background-color: #EFEFEF;
  }
  .searchEntity .uniMoreItems{
    text-align: center!important;
    border-top: 1px solid #e9ecef;
    margin-top: 6px;
  }
  .searchEntity .dropdown-divider{
    margin: 0px;
  }
  .searchEntity .uniViewAll{
    /* background-color: #cccccc; */
    background: #3F9D00 0% 0% no-repeat padding-box;
    text-align: center!important;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff!important;
  }
  .searchEntity .uniViewAll:hover{
    /* background-color: #cccccc; */
    background-color: #3F9D00 !important;
    text-align: center!important;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.8;
    color: #fff!important;
  }
  .searchEntity .searchResult{
    font-size: 13px;
    text-transform: uppercase;
    padding: 10px 15px;
    position: relative;
    font-weight: 600;
    height: 25px;
  }
#uniCloseBox .dropdown-item.active, #uniCloseBox .dropdown-item:active{
    background-color: transparent;
    color: #000000;
  }
.searchEntity .uniNoItems{
    white-space: normal;
}

.uniItem  
.highlight {
  background: yellow;
}

#uniCloseBox:after {
  content: '';
  display: block;
  position: absolute;
  top: -8px;
  right:1px;
  width: 12px;
  height: 12px; 
  background: #FFFFFF;
  border-right:2px solid #263341;
  border-bottom:2px solid #263341;
  -moz-transform:rotate(-135deg);
  -webkit-transform:rotate(-135deg);
}

.uniItem {
  position: relative;
}
.uni-status{
  position: absolute;
  right: 5px;
  top: 30px;
}
.uniStatusCore{
  position: absolute;
  right: 5px;
  top: 5px;
  max-width:45%;
}
#uniCloseBox .dropdown-item{
  color: #263341;
  line-height: 24px;
}
#uniCloseBox .uniItem:hover{
  background-color: #C5E1BA !important;
  border: 2px solid #3F9D19 !important;
}
#uniCloseBox .uniViewAll:hover{
  border: none!important;
  opacity: 0.8!important;
} 
#uniCloseBox .uniHeader{
  display: none;
}
.uniSearchEntityTitle{
  max-width: 100%;
  white-space: wrap;
}
.unisearchLabel{
  max-width: 50%;
  white-space: wrap;
}
.search-section-container .dropdown-item-text{
  white-space: wrap!important;
}


.hover-details {
  position: absolute;
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  margin-top: 10px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.searchListTooltips .arrow::before {
  border-left-color: #fff !important;
}
.searchListTooltips .arrow {
  right: 1px !important;
}

.searchListTooltips .tooltip-inner{
  background-color:#ffffff;
  min-width: 350px!important;
  color: #000000;
  text-align: left;
  padding: 10px;
  border: #ccc solid 1px;
  border-radius: 0px!important;
 -webkit-box-shadow: 0px 0px 5px 0px rgba(200,200,200,1);
-moz-box-shadow: 0px 0px 5px 0px rgba(200,200,200,1);
box-shadow: 0px 0px 5px 0px rgba(200,200,200,1); 

}

.detailItem  
.highlight {
  background: yellow;
}

.searchListTooltips{
  /* opacity: 1!important; */
  margin-right: 19px !important;
  z-index: 99999!important;
}

.searchListTooltips.show{
    opacity: 1!important;
}

.innerDivs .childDiv:last-child{
  border-bottom: none!important;
}
.custrnt{
  border-top:#ddd solid 1px;
}
.custrnt .brdBt1LightGray, .only-custrnt .brdBt1LightGray{
  border-bottom: none!important;
}

.tooltip-custom {
  position: absolute;
  left: -250px; /* Adjust based on the width of your tooltip */
  top: 50%;
  transform: translateY(-50%);
  width: 200px; /* Adjust the width as needed */
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 10px;
  z-index: 1000;
  border-radius: 4px;
  opacity: 1!important;
}


.tooltip-custom {
  position: absolute;
  width: 200px; /* Adjust the width as needed */
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 10px;
  z-index: 1000;
  border-radius: 4px;
}


.navbar-slide{ padding: 10px 16px 0px 310px;}
.connectedWith{ position:absolute; top: 0px; height: 100%;}
.leftDrawer{ background-color: #FFFFFF;display: flex; justify-content: center; position: fixed;
    top: 0; z-index: 100; box-shadow: 0 1px 7px rgb(0 0 0 / 40%);}
.leftdrawer-width{ width: 300px;height: 100vh;position: relative}
.leftDrawer.active{transition: 350ms; display: block;}
.connectionList{ max-height: 85vh; overflow-y: auto;}
.connectionList ul{ padding: 0;margin: 0;}
.connectionList ul > li{ list-style: none; padding: 12px 20px; border-bottom: #EFEFEF solid 1px;} 
.connectionList ul > li:hover, .connectionList ul > li:focus, .connectionList ul > li:visited{ background-color: #3F9D19; color: #FFFFFF; cursor: pointer;} 
.connectionList ul .active { background-color: #3F9D19; color: #FFFFFF; cursor: pointer; border-bottom: #49b720 solid 1px;} 
.connectionList ul .active a{ color: #FFFFFF; text-decoration: none;}
.connectionList ul > li a{ color: #000000; text-decoration: none;}
.padd18x20{ padding: 18px 20px;}

.fMenuAction a{ text-decoration: none;}
.footerActIcon{ position: relative;}
.sessionContactCount{ position: absolute; top: -6px; left: 18px; width:16px; height:16px; color:#FFFFFF; font-size:10px; background-color: #D60000; border-radius: 100%; }
#callbackTab .nav-tabs{ padding-bottom: 1px!important;border-bottom: 5px solid #E9E9E9;font-size: 15px;
  font-weight: 600;}
#callbackTab .nav-tabs a{ border: 1px solid #FFFFFF!important; color: #333333;border-radius: 0px!important; padding: 8px 14px!important;font-size: 15px;
  font-weight: 600;}
#callbackTab .nav-tabs .nav-item.show .nav-link, #callbackTab .nav-tabs .nav-link.active{
  color: #333!important;
  background-color: #E9E9E9!important;
  border-radius: 0px!important;
  border: #E9E9E9 solid 1px!important;
}
#callbackTab .nav-tabs .nav-link:hover{
  border: #E9E9E9 solid 1px!important;
  background-color: #E9E9E9!important;
  border-radius: 0px!important;
  color: #333!important;
}
#callbackTab .tab-content{
  margin: -5px 5px;
}
#callbackTab .connectionList ul li:hover a, #callbackTab .connectionList ul li:hover .green {
  color: #ffffff!important;
}


.connectionList{ max-height: calc(100vh - 120px)!important; overflow-y: auto;}
.connectionList ul{ padding: 0;margin: 0;}
.connectionList ul > li{ list-style: none; padding: 12px 30px 12px 16px!important; border-bottom: #EFEFEF solid 1px;} 
.connectionList ul > li:last-child{ border-bottom: none;} 
.connectionList ul > li:hover, .connectionList ul > li:focus, .connectionList ul > li:visited{ background-color: #3F9D19; color: #FFFFFF; cursor: pointer;} 
.connectionList ul .active { background-color: #3F9D19; color: #FFFFFF; cursor: pointer; border-bottom: #49b720 solid 1px;} 
.connectionList ul .active a{ color: #FFFFFF; text-decoration: none;}
.padd18x20{ padding: 18px 20px;}
.connectionList ul > li .active .green{ background-color: #3F9D19; color: #FFFFFF; cursor: pointer;} 
.rightClose{
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
}
.rightIconPos{
  position:absolute;
  top: 12px;
  right: 10px;
}

.callTooltip{
  z-index: 9999 !important;
}

.noRecFound{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: calc(100vh - 120px);
}

.singleTabClass{
  display: block !important;
  position: relative;
  z-index: 1;
}

#callbackTab .tabBox {
  margin-top: 0px;
}

#callbackTab .connectionList{
  margin: -10px -11px !important;
}

.clearConnectedWithBtn{
  position: fixed;
  bottom: 43px;
  left: 0px;
  width: 300px;
}
.stickyFooter {
    z-index: 1050 !important;
}
.leftMenu-List-selected
{
    background-color: #25334219; color: #454545; cursor: pointer; border-bottom: #CFCFCF solid 1px;
}
.statsCountCircle{
    position: absolute;
    top: -6px;
    right: -10px;
    background-color: #D60000;
    border: #D60000 solid 1px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    min-width: 20px;
    min-height: 20px;
    display: inline-block;
    line-height: 18px;
}

.statsLink
{
    color: inherit;
}
.modal-full{
    background-color: #FFF;
    position: fixed;
    bottom: 40px;
    left: 1px;
    width: 99.85%;
    padding: 20px;
  }
  .brd-darkBlueShadow{
    box-shadow: 0px 3px 6px #07070769;
    border: 1px solid #12305D;
    border-radius: 0px 3px 0px 0px;
    opacity: 1;
  }

  .mailbox-login-model{
    z-index: 9999;
  }

  .mailbox-login-close{
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 99999;
  }
.yiiLog
{
    font-size: 12px !important;
}

.yiiLog pre
{
    font-size: 12px !important;
}

.yiiLog th
{
    height: 30px;
}
/* Style for spacing between header and grid */
.app-content{
  min-height: calc(100vh - 70px)!important;
}


.formHeaderGeneric .card-header{
    padding: 10px 10px 0 10px!important;
}
.customTabForCars .tab-content{
    margin: 10px !important;
}
.customTabForCars .card-body{
    padding: 0px!important;
}
.padd10-bt0{
    padding: 10px 10px 0px;
}

/* Switcher Custom */
.switcher-custom{
    position: relative;
    display: inline-block;
    width: 105px;
    height: 30px;
    line-height: 26px;
  }
  .switcher-custom input{
    display: none;
  }
  .switcher-custom .switcher-copy{
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 100;
    transition: transform 0.3s, opacity 0.3s;
  }
  .switcher-custom .switcher-indicator{
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .switcher-custom .switcher-indicator:before{
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 3px;
    background-color: rgb(255, 255, 255);
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 100px;
  }
  .switcher-custom .yes{
    color: #fff;
    margin-left: 14px;
    transform: translateX(0px);
  }
  .switcher-custom .no{
    margin-right: 14px;
    transform: translateX(-27px);
    color: #666;
  }
  .switcher-custom .active{
    color: #fff;
    margin-left: 14px;
    transform: translateX(0px);
  }
  .switcher-custom .inactive{
    margin-right: 14px;
    transform: translateX(-15px);
    color: #666;
  }
  .switcher-custom input:checked + .switcher-indicator {
    background-color: #2196F3;
  }
  .switcher-custom input:checked + .switcher-indicator:before {
    -webkit-transform: translateX(73px);
    -ms-transform: translateX(73px);
    transform: translateX(73px);
  }
  .switcher-custom input:checked + .switcher-indicator .no{
    opacity: 0;
    transform: translateX(20px);
  }
  .switcher-custom input:checked +  .switcher-indicator .yes{
    opacity: 1;
    transform: translateX(20px);
  }
  .switcher-text {
    color: white;
    position: relative;
    top: 3px;
    left: 5px;
  }
  .switcher-text-yes {
    color: #ffffff;
    position: relative;
    top: 3px;
    left: 12px;
  }
  .switcher-text-no {
    color: #000000;
    position: relative;
    top: 3px;
    left: 5px;
  }
/* End */  

  /* Add more icon in next line right align style*/
  .addMoreNextLine div{
    position: relative;
    right: 0px;
    top: 0;
    float: right;
  }
  .addMoreNextLine .bi-plus-circle-fill{
    color: #3F9D00;
    font-size: 14px;
    margin: 3px 0px;
  }
  .addMoreNextLine .bi-dash-circle-fill{
    color: #D60000;
    font-size: 14px;
    margin: 3px;
}
.addGroupModal .formSpacing{
  padding: 10px 20px 0 20px;
}
.addGroupModal .modal-content{ overflow: visible!important;}
.addGroupModal .modal-body{ overflow:visible!important;} 

.ContractPopup .card-body{
  padding:0px!important;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .OppStageBox .leftBrdSec .ml-2{
    margin-left: 1.4rem !important;
  }
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  height:100%;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  text-align: left;
  background-color: #E9E9E9!important;
  position: relative;
  min-height: 100%;
}

.incrementalFirstHeaderBox
{
  background: #FFFFFF 0% 0% no-repeat padding-box;
  color: #354957;
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  padding: 12px;
}

.formIncrementalDivider:nth-of-type(1)
{
  display: none;
}

.formIncrementalDivider {
  border-bottom: 1px solid #dee2e6!important;
}

/* Style for spacing between header and grid */
.app-content{
   margin: 10px 10px 0px 10px;
   overflow: hidden;
   background-color: #FFFFFF;
   border-bottom: #E9E9E9 solid 50px;
   min-height: calc(100vh - 120px);
 }
 .app-content-slide {
   overflow: hidden;
   background-color: #FFFFFF;
   margin-left: 300px;
   border-left: #E9E9E9 solid 10px;
   border-right: #E9E9E9 solid 10px;
   border-top: #E9E9E9 solid 10px;
   min-height: calc(100vh - 120px);
 }

.ui-disabled {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.nav-bar-logo{
  width: 50%;
}

.logo{
  height: 40px;
  width: auto;
}
.ui-nav {
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.4);
  height: 56px;
}
.cNoBorder
{
  border: none !important;
}
.popUpBackButtCont
{
  float: left;
  width: 70%;
}
.serviceDeskCardHeaderGrid
{
  background-color: #fff !important;
  padding-top: 10px !important;
  padding-left: 7px !important;
  padding-right: 7px !important;
  /* border-bottom: 1px solid rgba(0,0,0,.125) !important; */
}

.serviceDeskCardHeaderForm, .crmCardHeaderForm, .crmAdminCardHeaderForm, .crmDevCardHeaderForm
{
  background-color: #fff !important;
  padding-top: 10px !important;
  padding-left: 7px !important;
  padding-right: 7px !important;
}

.serviceDeskCardHeaderForm .formBreadTitle, .crmCardHeaderForm .formBreadTitle,
.crmAdminCardHeaderForm .formBreadTitle, .crmDevCardHeaderForm .formBreadTitle
{
  color: #253342;
  font-size: 17px;
  font-weight: 600;
}

/* Grid Quick Filter Style*/

#dropdown-basic-button-quickFilter
{
  color: #000 !important;
  background-color: #E9E9E9 !important;
  border-color: #E9E9E9 !important;
}
.quickFilterDMenu .dropdown-item {
  font-size: 14px;
  padding: 6px 15px;
  color:#000;
}
.quickFilterDMenu .dropdown-menu{
  padding:0px;
}

/* Custom styles for smenu scroll Bar */
.side-bar-options::-webkit-scrollbar {
  width: 8px;               /* width of the entire scrollbar */
}

.side-bar-options::-webkit-scrollbar-track {
  background: #253342;        /* color of the tracking area */
}

.side-bar-options::-webkit-scrollbar-thumb {
  background-color: #666666;    /* color of the scroll thumb */
  border-radius: 10px;       /* roundness of the scroll thumb */
  /*border: 3px solid #EFEFEF;  /* creates padding around scroll thumb */
}

/* Left Sidebar Menu */
.leftMenuSecWithNotify{ top: 60px!important;}
.leftMenuSec{ position:absolute; top: 62px; height: 100%; z-index: 100;}
.leftDarkNav{ padding-bottom: 35px;}
.userLoginMenu{ padding: 0 20px; margin-top: 20px;}
.signOut a{color: #FFFFFF80; text-decoration: none; font-size: 13px; line-height: 17px;}
.signOut a:hover{color: #ffffff; text-decoration: none; font-size: 13px; line-height: 17px;}
.menuText{ color: #FFFFFF80; text-decoration: none; font-size: 13px; line-height: 17px; }
.userNameTxt{ font-size: 14px; color: #FFFFFF; padding-top: 5px;}

.side-bar-options{
  /* max-height: 90vh;
  overflow-y: auto; */
  overflow-x: hidden;
  padding-top: 12px;
  background-color: #253342;
}
.side-bar-options a:hover{
  text-decoration: none;
}
.navBarParentMenu, .navBarChildMenu{
  font-size: 14px;
}
.navBarParentMenu svg, .navBarChildMenu svg{
  margin-right: 5px;
  font-size: 18px;
  position: relative;
  top:-2px;
}
.navBarChildMenu{
  padding:6px 10px 6px 15px!important;
  border-left: #5C6671 solid 3px!important;
  margin-left: 38px!important;
  width: 80%!important;
}
.navBarChildMenu svg{ display: none;}

table {
  border-collapse: collapse;
}

th {
  text-align: inherit;
}
/* Global Style for Entity Form */
#entityFormSec{
  border:none;
  border-radius:0px;
  /* margin-bottom: 50px; */

}
#entityFormSec .card-header{
  background: #E9E9E9 0% 0% no-repeat padding-box;
  opacity: 1;
  padding: 0px 0px 10px;
}
#entityFormSec .card{
  border:none;
  border-radius: none;
}
#entityFormSec .card-body{
  padding: 10px;
}
/* Global Table and Entity form CSS Style*/
#entitytTableGrid .card-header{
  background: #ffffff 0% 0% no-repeat padding-box;
  opacity: 1;
  padding: 10px 10px 10px;
}
#entitytTableGrid .card{
  border:none;
  border-radius: none;
  /* Style for grid page white bg 100%
  height: 100%;
  min-height: calc(100vh - 130px);
   End */
}
/* Change for grid bottom space removed */
#entitytTableGrid .card-body{
  /*padding: 6px 10px 30px 10px;*/
  padding: 10px 10px 10px 10px;
}

/* Page Height : for grid & form section */
#dispoPage .card{
  height: 100%;
  min-height: calc(100vh - 160px);
}

.gridBread, .formBread{
  color: #000000;
}
.gridBread a, .formBread a{
  color: #000000;
  text-decoration: none;
}
.gridBread a:hover, .gridBread a:focus, .formBread a:hover, .formBread a:focus{
  color: #000000;
  opacity: 0.8;
  text-decoration: none;
}

/* Admin menu grid styles*/
.viewBread a{
  color: #ffffff;
  text-decoration: none;
}
.viewBread a:hover, .viewBread a:focus{
  color: #ffffff;
  opacity: 0.8;
  text-decoration: none;
}

/* Global Style for Card Header */
.card .card-header{
	padding: 8px 20px;
  background-color: #253342;
  color: #ffffff;
	border-bottom: none;
	font-size: 16px;
  font-weight: 600;
  line-height: 27px;
}

.formTitleDesc
{
  font-size: 12px;
  font-weight: normal;
  color: #253342;
}

.popGridForm .popUpLayoutForm
{
  width: 100%;
  padding: 0 10px;
}

.cardHeaderDesc
{
  padding: 16px;
  font-size: 15px;
  padding-left: 20px;
}
.cardColorEleBox{
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #EFEFEF;
  opacity: 1;
  max-width: 90px;
  display: inline-block!important;
  margin-right: 10px;
  border-radius: 0px!important;
  cursor: pointer;

}
.cardColorEleSec{
  display: inline-block !important;
  cursor: pointer;
  height: 30px;
  width: 30px;
  margin: 15px 30px 12px;
  border: 1px solid #CCCCCC!important;
}

.cardColorEle
{
  max-width: 150px;
  display: inline-block !important;
  cursor: pointer;
  height: 30px;
  padding: 0 10px;
}
.selectedColorBorder{
  border: 2px solid #3B86FF;
}
.color-title{
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 15px;
}
.cardColorEle .border
{
  border: 4px solid #dee2e6 !important;
}

.cardColorEle .card-body
{
  min-height: 10px;
  height: 10px;
  padding: 1.50rem;
  padding-bottom: 2.40rem;
  font-size: 10px;
}

.txtAlignRight
{
  text-align: right;
}

.cardColorEle .card-title
{
  text-align: center;
  margin-bottom: 0px;
  line-height: 28px;
}

/* Style for Table Grid Per Page and Jump options*/
.gridPageDisplayLabel{
  font-size: 14px;
  color: #000000;
}

.gridPageSizeLabel{
	padding-top: 4px;
    margin-right: 6px;
    margin-bottom: 20px;
}

.gridPaginationSection{
  /* margin: 0 auto;
  position:relative;
  z-index: 0; */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.gridPageBySizeSec{
  display: flex;
}

.gridPageBySizeSec .gridPageSizeInputCont select, .gridPageBySizeSec .gridJumpToInputCont select{
	border: #CFCFCF solid 1px;
  border-radius: 3px;
  height: 30px;
  color: #000000;
  padding: 0 5px;
  font-size: 12px;
  margin-top: 4px;
}

/* Style for Grid Pagination */
.ui-pagination {
  display: flex;
  justify-content: flex-end;
  color: #000000;
  font-size: 14px;
}
.gridPaginationSection .pagination{
  margin-bottom: 0px;
  margin-top: 7px;
}
.pageSecLink{
  border: #fff solid 1px!important;
  color: #000000!important;
  padding: 5px 5px 6px!important;
  margin: 0 3px;
}
.pagination li:last-child a{
  color: #2C81C1 !important;
}
.pagination li:first-child a{
  color: #2C81C1 !important;
}
.page-item.active .pageSecLink{
  background-color: #FFFFFF!important;
  border: 1px solid #2C81C129!important;
  box-shadow:none!important;
  opacity: 1!important;
  color: #2C81C1 !important;
  font-weight: 600;
}
.pageSecLink:hover, .pageSecLink:focus, .pageSecLink:active{
  background-color: #FFFFFF!important;
  border: 1px solid #2C81C129!important;
  opacity: 1!important;
  color: #2C81C1 !important;
}
.page-link:focus{
  box-shadow:none!important;
}

/* Green Plus Button */
.btn-success .iconAlign-th{
  position: relative;
  top: -2px;
}

/* style for table grid header buttons */
.gridLoaderInfo .btn-success{
  margin: 0 4px;
}
.gridLoaderInfo .btn-secondary{
  margin: 0 4px;
  background-color: #D60915;
  border-color: #D60915;
}
.gridLoaderInfo .btn-secondary:hover, .gridLoaderInfo .btn-secondary:focus, .gridLoaderInfo .btn-secondary:active{
  background-color: #D60915;
  border-color: #D60915;
  margin: 0 4px;
  opacity: 0.8;
  box-shadow: none!important;
}
.gridLoaderInfo .btn-success svg, .gridLoaderInfo .btn-secondary svg{
  position: relative;
  top: -3px;
}

/* Style for Generic table border */
.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td{
  border:none!important;
}
.table-responsive > .table-bordered{
  border-top: #CFCFCF solid 1px!important;
  border-bottom: #CFCFCF solid 1px!important;
}

/* Style for table grid filter options*/
.tableGridFilter .form-control:focus, .tableGridFilter select:focus{
  box-shadow: none;
}
.tdFilter{
  position: relative;
}
.dateRangeFilterIcon{
  position:absolute;
}
.tableGridFilter{
  border-top:#CCCCCC solid 1px;
  border-bottom:#CCCCCC solid 1px;
  background-color: #ffffff;
}
.tableGrid .tbody{
  border-top:#CCCCCC solid 1px;
}
.tableGridFilter .form-control, .tableGridFilter select{
  border: #CCCCCC solid 1px;
  height: 39px;
  border-radius: 0px;
  color:#000000 ;
  opacity: 1;
  font-size: 14px;
}
.tableGridFilter .form-control:focus, .tableGridFilter select:focus{
  box-shadow: none;
  border-color: #CCCCCC;
}

/* Style for Table border radius*/
.table-responsive{ border-radius: 0px!important; padding: 0 1px; }

/* Style for table grid tabel column heading */
.tableGrid{
  color: #000000;
  font-size: 14px;
}

.tableGrid .tHead {
	/* background-color: #E9F2F8;
	color: #2C81C1;
  background-color: #EFEFEF;
	color: #666666;*/
  background-color: #253342;
  color: #FFFFFF;
	font-size: 13px;
}

/* Grid column fluctuate while filtering data*/
.tableGrid .selectedClmn {
  width: 32px;
}
.tableGrid .actionClmn {
  width: 130px;
  color: #ffffff;
}
/*Do not uncomment below styles, it's creating problem for config widths*/
/* .tableGrid td:last-of-type {
  width: 130px;
  text-align: center;
}
.tableGrid th {
  max-width: 100%;
  table-layout: fixed;
}  */
/* End */

.tableGrid .tHead a {
	color: #ffffff;
	text-decoration: none;
}
.tableGrid .tHead a:hover {
	color: #ffffff;
  opacity: 0.9;
	text-decoration: underline;
	cursor: pointer;
}

.tableGrid .tdFilter select
{
  width: 100%;
}

/* Style for table grid column border color */
.table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
    border-left: #CFCFCF solid 1px!important;
    border-right: #CFCFCF solid 1px!important;
    color: #000000;
}


/* sticky table header style*/
.tableGrid > thead > tr > th:not(:first-child){
  box-shadow: inset 1px 0px #CFCFCF, 0px 0px #CFCFCF;
 }
 .tableGrid > thead > tr > th{
   position: sticky;
   top: -1px;
   z-index: 1;
   background-color: #253342;
   color: #FFFFFF;
   font-size: 13px;
 }
 /* End */

/* Style for table grid row even/odd */
.tableGrid .oddRow:hover,
.tableGrid .evenRow:hover {
  /*background-color: #F9F9F9 !important;*/
  background-color: #C5E1BA!important;
  border: 2px solid #3F9D19;
  /* cursor: pointer; */
}

.tableGrid .oddRow {
  background-color: #EFEFEF !important;
}
.tableGrid .evenRow {
  background-color: #F9F9F9 !important;
}

@scope(body.theme-navv3){
  .tableGrid .oddRow {
    background-color: #FFFFFF !important;
    border-bottom: 1px solid #CCCCCC;
    border-top: 1px solid #CCCCCC;
  }
  .tableGrid .evenRow {
    background-color: #FFFFFF !important;
  }
  .strGridwrap>.selectInputField>div:first-child {
      background: #FFFFFF;
      border: #cccccc solid 1px;
      border-radius: 3px;
      box-sizing:unset;
    }
    .strGridwrap>.selectInputField>div>div,
    .strGridwrap>.selectInputField>div>div>div[class*="-singleValue"] {
      background: #FFFFFF;
      border: none;
      box-sizing:unset;
    }
    .strGridwrap>.selectInputField div:nth-child(2) {
      background: #FFFFFF;
      border: none;
      box-sizing:unset;
      color: #cccccc;
    }
    .strGridwrap>.selectInputField div:nth-child(2) div index,
    .strGridwrap>.selectInputField div:nth-child(2) div {
      background: #FFFFFF;
      border: none;
      box-sizing:unset;
      color: #000000;
    }
    .tdFilter .multiSelectGridFilter .select-filter-options__multi-value .select-filter-options__multi-value__label,
    .tdFilter .multiSelectGridFilter .select-filter-options__multi-value .select-filter-options__multi-value__remove {
      margin: 2px;
    }
}
.tableGrid .approvedRow {
  background-color:#c1e6bd !important;
 }
.tableGrid .rinkRow {
  background-color: #D600001A!important;
}
.tableGrid .disabledRow {
  background-color: #D3D3D3 !important;
}
.tableGrid .lightRedRow {
  background-color: #ffcccb !important;
}
.tableGrid .nonSoldRow{
  border:1.5px red solid;
}
.errBorder {
  border: 1.5px red solid;
  padding: 0px !important;
  position: relative;
  left: 5px;
}
.tableGrid a {
  color: #000000;
  text-decoration: none;
}
.tableGrid a:hover {
  color: #000000;
  opacity: 0.8;
  text-decoration: underline;
}

/* Style for Table grid action icons */
.tableGrid .editAction{
  color: #253342;
  font-size: 18px;
  margin: 2px 4px;
}
.tableGrid .delAction{
  color: #253342;
  font-size: 18px;
  margin: 2px 4px;
}
.tableGrid .viewAction{
  color: #253342;
  font-size: 20px;
  margin: 2px 4px;
}
.tableGrid .viewActionIncomplete{
  color: #253342;
  font-size: 18px;
  margin: 2px 4px;
}
.tableGrid .documentAction{
  color: #253342;
  font-size: 16px;
  margin: 2px 6px;
}

/* Added Extra bottom margin to the table grid
.entityGridView .card-body{
  margin-bottom: 25px;
}*/

.w100 {
  width: 50px;
}

.globalSpinner
{
  float: right;
  margin-right: 10px;
}

.rowAlignedButt
{
  display: inline-block !important;
  width: 100%;
  margin-left: 16.666667% !important;
  margin-top: 10px;
}

.inlineFormButts
{
  display: inline-block;
  width: 100%;
  text-align: right;
  padding-right: 20px;
  padding-bottom: 20px;
}

/* NavBar */
.nav-bar-toggle{
  width: auto;
}
/* DropDown Menu */
.dropdown{
  position:relative;
  display: inline-block;
}
.dropdown-item{
  text-transform: capitalize;
}
.app-switcher button.dropdown-toggle::after{
  display: none;
}
.app-switcher button{
  background-color: transparent;
  padding: 0 10px;
  border: none;
  position: relative;
  top: -4px;
}
.app-switcher button:hover,.app-switcher button:focus,.app-switcher button:active{
  background-color: transparent;
  box-shadow: none;
  border-color: transparent;
}
.appSwitcherIcon{
  font-size: 19px;
  color:#000000;
}
.show>.btn-primary.dropdown-toggle{
  background-color: transparent!important;
  border-color:transparent!important;
  box-shadow: none!important;
}
.app-switcher button:not(:disabled):not(.disabled):active{
  background-color: transparent;
  border-color:transparent;
  box-shadow: none!important;
}
.app-switcher .dropdown-menu {
  border:none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
  border-radius: 0;
  top:10px!important;
  left: 5px!important;
  z-index: 9999;
}
.dropdown-menu .app-menu-item{
  padding: 6px 15px;
}
.dropdown-menu .app-menu-item:active{
    color: #666;
    background-color: #f5f5f5;
}

/* App Switcher DropDown Menu */
.dropdown{
  position:relative;
  display: inline-block;
}
.app-switcher button.dropdown-toggle::after{
  display: none;
}
.app-switcher button{
  background-color: transparent;
  padding: 0 0 0 10px;
  border: none;
  position: relative;
  top: -4px;
}
.app-switcher button:hover,.app-switcher button:focus,.app-switcher button:active{
  background-color: transparent;
  box-shadow: none;
  border-color: transparent;
}
.appSwitcherIcon{
  font-size: 19px;
  color:#000000;
}
/*.show>.btn-primary.dropdown-toggle{*/
/*  background-color: transparent!important;*/
/*  border-color:transparent!important;*/
/*  box-shadow: none!important;*/
/*}*/
.app-switcher button:not(:disabled):not(.disabled):active{
  background-color: transparent;
  border-color:transparent;
  box-shadow: none!important;
}
.app-switcher .dropdown-menu {
  border:none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
  border-radius: 0;
  top:10px!important;
  left: 5px!important;
  padding: 0px;
}

.dropdown-menu .action-menu-item{
  padding: 6px 15px;
  font-size: 14px;
}
.dropdown-menu .action-menu-item:active{
  color: #666;
  background-color: #f5f5f5;
}

/* Action DropDown Menu */
.actDropDownSec button{
  margin-left: 4px;
}
.action button{
  background-color: #3F9D00;
  border: #3F9D00 solid 1px;
  border-radius: 3px;
}
.action button:hover, .action button:focus, .action button:active{
  opacity: 0.8;
}
.action button:hover,.action button:focus,.action button:active{
  background-color: #3F9D00;
  box-shadow: none;
  border: #3F9D00 solid 1px;
  border-radius: 3px;
}
.PersonlizationBtn .action button:focus {
  background-color: transparent;
  box-shadow: none;
  border: none;
  border-radius: 0px;
}
.actDropDownSec .show>.btn-primary{
  background-color: #3F9D00!important;
  border-color:#3F9D00!important;
  box-shadow: none!important;
}
.action button:not(:disabled):not(.disabled):active{
  background-color: #3F9D00;
  border-color:#3F9D00;
  box-shadow: none!important;
}
.action button span{
    position: relative;
    top: -1px;
}
.action .dropdown-menu {
  border:none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
  border-radius: 0;
  top:10px!important;
  /*left: 5px!important;*/
  margin: 0px;
  padding: 0px;
  background-color: #4C4A49!important;
  border-radius: 3px!important;
  width: auto;
  min-width: 250px;
  max-width: 350px;
  z-index: 99999;
}
.action-menu-item{
  color: #FFFFFF!important;
  font-size: 13px!important;
}
.action-menu-item:not(:last-child) {
  border-bottom: #5E5D5D solid 1px!important;
  background-color: #4C4A49;
}
/* Dropdown menu for testClass*/
.testClass .action-menu-item{
  border-bottom: #5E5D5D solid 1px!important;
}
.testClass:hover{
  text-decoration:none;
}
/*End*/

.dropDownActionMenu a:hover:first-child {
    border-radius: 3px 3px 0 0;
}
.dropDownActionMenu a:hover:last-child {
    border-radius: 0 0 3px 3px;
}
.action-menu-item:hover, .action-menu-item:focus, .action-menu-item:active {
  background-color: #343434!important;
}
.action button.dropdown-toggle::after{
  display: none;
}
.caretSign{
  position: absolute;
  top: -17px;
  right: 10px;
}
.caretSignDesign{
  color: #4C4A49;
  font-size: 24px;
}
.caretDownSign{
  position: relative;
  top: -1px;
  left: 1px;
}

/* Top Add Icon style */
.topRightSec{
  position: relative;
  top: 6px;
  right: -2px;
}
.topRightSec .createEntityDowpdown{
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  overflow-x: hidden!important;
}
.topAddEntity{
  position: relative;
  top: 5px;
  right: 6px;
}
.topAddEntity button.dropdown-toggle::after{
  display: none;
}
.topAddEntity button{
  background-color: #3F9D00;
  padding: 0 7px 4px;
  border: none;
  border-radius: 2px;
  position: relative;
  top: -5px;
}
.dInBlock .show>.btn-primary.dropdown-toggle{
  background-color: #3F9D00!important;
}
.plusButtonSec button{
  height: 30px;
}
.topAddEntity button:hover,.topAddEntity button:focus,.topAddEntity button:active{
  background-color: #3F9D00;
  box-shadow: none;
  border-color: transparent;
}
.topAddEntityIcon{
  font-size: 16px;
  color:#FFFFFF;
}
.topAddEntity button:not(:disabled):not(.disabled):active{
  background-color: #3F9D00;
  border-color:transparent;
  box-shadow: none!important;
}
.topAddEntity .dropdown-menu {
  border:none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
  border-radius: 0;
  padding: 0px;
}
.dropdown-menu .topAddEntity-item{
  padding: 8px 15px;
  font-size: 14px;
  white-space: nowrap;
}
.dropdown-menu .topAddEntity-item:active{
  color: #666;
  background-color: #f5f5f5;
}
.dropdown-menu .topAddEntity-item a{
  color: #666;
  text-decoration: none;
}

/* Universal Search Entity */
.searchEntity input[type=text]{
  border: 1px solid #DDDDDD;
  border-radius: 2px;
  color: #454545;
  height: 30px;
  line-height: 30px;
  padding: 5px 30px 5px 10px;
 /* opacity: 50%;*/
}
.app-content .searchBox input[type=text]{
  border: #DDDDDD solid 1px;
  border-radius: 2px;
  color: #454545;
  height: 30px;
  line-height: 30px;
  padding: 5px 30px 5px 10px;
  width:220px;
}
.app-content-slide .searchBox input[type=text]{
  border: #DDDDDD solid 1px;
  border-radius: 2px;
  color: #454545;
  height: 30px;
  line-height: 30px;
  padding: 5px 30px 5px 10px;
  width:80px;
}

.searchEntity{
  margin-right: 14px;
  position: relative;
}
.searchIcon{
  position: absolute;
  top: 0;
  right: 8px;
  color: #C7C7C7;
  cursor: pointer;
  /* background-color: #3F9D00;
  height: 30px;
  width: 30px;
  text-align: center; */
}
.searchIcon svg{
  position: relative;
  top: 2px;
}
.searchEntity #dropdown-basic-uni-serach{
  display: none;
}
/*LogOff */
.logOff{
  position: relative;
  top: 0;
  color: #fff;
  cursor: pointer;
  background-color: #D60000;
  height: 30px;
  width: 30px;
  text-align: center;
  border-radius: 2px;
}
/* Circle Background Style*/
.grayCircle-sm{
  width: 20px;
  height: 20px;
  background: #ccc;
  border-radius: 100%;
  position: relative;
  list-style-type: none;
  text-align: center;
  display: table;
  vertical-align: middle;
}
.greenCircle-sm{
  width: 20px;
  height: 20px;
  background: #3F9D00;
  border-radius: 100%;
  position: relative;
  list-style-type: none;
  text-align: center;
  display: table;
  vertical-align: middle;
}
.redCircle-sm{
  width: 20px;
  height: 20px;
  background: #D60000;
  border-radius: 100%;
  position: relative;
  list-style-type: none;
  text-align: center;
  display: table;
  vertical-align: middle;
}
.whiteCircle-sm{
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 100%;
  position: relative;
  list-style-type: none;
  text-align: center;
  display: table;
  vertical-align: middle;
}

/* Circle Background Style*/
.graySquareRound-sm{
  width: 24px;
  height: 24px;
  background: #ccc;
  border-radius: 2px;
  position: relative;
  list-style-type: none;
  text-align: center;
  display: table;
  vertical-align: middle;
  cursor:pointer;
}
.greenSquareRound-sm{
  width: 24px;
  height: 24px;
  background: #3F9D00;
  border-radius: 2px;
  position: relative;
  list-style-type: none;
  text-align: center;
  display: table;
  cursor:pointer;
}
.redSquareRound-sm{
  width: 24px;
  height: 24px;
  background: #D60000;
  border-radius: 2px;
  position: relative;
  list-style-type: none;
  text-align: center;
  display: table;
  cursor:pointer;
}
.blueSquareRound-sm{
  width: 24px;
  height: 24px;
  background: #007bff;
  border-radius: 2px;
  position: relative;
  list-style-type: none;
  text-align: center;
  display: table;
  cursor:pointer;
}
.whiteSquareRound-sm{
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  border-radius: 2px;
  position: relative;
  list-style-type: none;
  text-align: center;
  display: table;
  cursor:pointer;
}

.squareRoundTxt
{
  color: #fff;
  padding-right: 10px;
  padding-left: 10px;
  width: auto;
}

.margin10
{
  margin-bottom:10px;
}

.tabButt
{
  float: right;
  padding-right: 5px;
  margin-top: -32px;
}

/* Color Code */
.white{ color: #FFFFFF;}
.black{ color: #000000;}
.skyBlue{ color: #106FAF; }
.red{ color: #D60000; }
.redColor{ color: #D60000!important; }
.blueLight{ color: #2C81C1; }
.darkBlue{ color: #354957;}
.darkBlue-1{ color: #253342;}
.green{ color: #3F9D19; }
.orange{ color: #FF962C;}
.orgRed{ color: #FF552C;}

.gray{ color: #666666;}
.darkGray{ color: #333333; }
.lightGray{ color: #D1D1D1;}
.blackGray{ color: #454545;}
.grayNew{ color: gray;}
.gray-imp{ color: #666666 !important;}

/* Background Color Code */
.whiteBG{ background-color: #FFFFFF; }
.whiteBGImp{ background-color: #FFFFFF !important; }
.greenBG{ background-color: #3F9D00;}
.bodyBG{ background-color: #E9E9E9;}
.orangeBG{ background-color: #F79126;}
.grayBG{ background-color: #EFEFEF;}

.grayLessBG{ background-color: #f5f5f5;}

/* Display */
.dFlex{ display: flex; }
.dBlock{ display: block;}
.dInBlock{ display: inline-block;}
.dTable{ display: table;}
.fRight{ float: right;}
.fLeft{ float: left;}
.dInFlex{ display: inline-flex; }

.vAlignMiddle{ vertical-align: middle; display: table-cell;}
.pullRight{ position: relative; right:-35px;}
.pullRightReportMenu{ position: relative; right:-35px;}
.pullRight{ position: relative; right:-30px;}

/* Custom Margin Styles */
.mrgAuto{ margin: 0 auto;}
.mrgTp1{ margin-top: 1px; }
.mrgTp2{ margin-top: 2px; }
.mrgTp3{ margin-top: 3px; }
.mrgTp4{ margin-top: 4px; }
.mrgTp5{ margin-top: 5px; }
.mrgTp6{ margin-top: 6px; }
.mrgTp7{ margin-top: 7px; }
.mrgTp12{ margin-top: 12px; }

.mrgBt0{ margin-bottom: 0px; }
.mrgBt1{ margin-bottom: 1px; }
.mrgBt2{ margin-bottom: 2px; }
.mrgBt3{ margin-bottom: 3px; }
.mrgBt4{ margin-bottom: 4px; }
.mrgBt5{ margin-bottom: 5px; }
.mrgBt10{ margin-bottom: 10px; }
.mrgBt50{ margin-bottom: 50px;}

.mrgLt1{ margin-left: 1px; }
.mrgLt2{ margin-left: 2px; }
.mrgLt3{ margin-left: 3px; }
.mrgLt4{ margin-left: 4px; }
.mrgLt5{ margin-left: 5px; }
.mrgLt10{ margin-left: 10px; }

.mrgRt1{ margin-right: 1px; }
.mrgRt2{ margin-right: 2px; }
.mrgRt3{ margin-right: 3px; }
.mrgRt4{ margin-right: 4px; }
.mrgRt5{ margin-right: 5px; }
.mrgRt10{ margin-right: 10px; }
.mrgTB15{ margin: 15px 0;}
.mrg30{ margin: 30px;}
.mrgTB10{ margin: 10px 0;}

.mrgMLT5{ margin-left: -5px;}
.mrgMLT10{ margin-left: -10px;}
.mrgMRT5{ margin-right: -5px;}
.mrgMRT10{ margin-right: -10px;}
.mrgPullTop1{ margin-top: -1px;}
.mrgPullTop2{ margin-top: -2px;}
.mrgPullTop3{ margin-top: -3px;}
.mrgPullTop4{ margin-top: -4px;}
.mrgPullTop5{ margin-top: -5px;}
.mrgPullTop6{ margin-top: -6px;}
.mrgPullTop7{ margin-top: -7px;}
.mrgPullTop10{ margin-top: -10px;}
.mrgPullTop15{ margin-top: -15px;}
.mrgPullTop22{ margin-top: -22px;}
.mrgPullLeft35{ margin-left: -35px;}
.mrgPullLeft50{ margin-left: -50px;}
.mrgPullBottom10{ margin-bottom: -10px;}
.mrgPullBottom15{ margin-bottom: -15px;}
.mrgPullLeft15{ margin-left: -15px;}

/* Custom padding Styles */
.padTp1{ padding-top: 1px; }
.padTp2{ padding-top: 2px; }
.padTp3{ padding-top: 3px; }
.padTp4{ padding-top: 4px; }
.padTp5{ padding-top: 5px; }
.padTp6{ padding-top: 6px; }
.padTp7{ padding-top: 7px; }
.padTp8{ padding-top: 8px; }
.padTp10{ padding-top: 10px; }
.padTp15{ padding-top: 15px; }
.padBt10{ padding-bottom: 10px; }
.padBt15{ padding-bottom: 15px; }
.padBt20{ padding-bottom: 20px; }
.paddLt5{ padding-left: 5px;}
.paddRt5{ padding-right: 5px;}
.paddRt6{ padding-right: 6px;}
.plNew-3{ padding-left: 1.3rem !important;}
.paddRt15{ padding-right: 15px;}
.paddRt20{ padding-right: 20px;}
.padd5{ padding: 5px;}
.padd10{ padding: 10px;}
.padd12{ padding: 12px;}
.padd15{ padding: 15px;}
.padd15-10{ padding: 15px 10px 5px;}
.paddLR5{ padding: 0 5px;}
.paddLR10{ padding: 0 10px;}
.paddLR-10{ padding: 0 10px;}
.paddLR15{ padding: 0 15px;}
.paddLR20{ padding: 0 20px;}
.paddLt10{ padding-left: 10px;}
.paddLt15{ padding-left: 15px;}
.paddBT50{ padding-bottom: 50px;}
.paddBT20{ padding-bottom: 20px;}
.paddRt50{ padding-right: 50px !important;}
.paddTB5LR10{ padding:5px 10px;}
.paddExtra{ padding: 10px 15px;}

.padd10-bt0{ padding: 10px 10px 0px;}

/* Custom style for vehilcle reassignment*/
.paddLRCust{margin-bottom: -20px;padding: 0 5px 0 15px;}
.paddLRCust .adjustPadd{ padding-left: 0px!important;padding-right: 0px!important;}
.customHeader {font-size: 16px !important;font-weight: 400 !important;}

/* Font Size Style */
.font10{ font-size: 10px;}
.font11{ font-size: 11px;}
.font12{ font-size: 12px;}
.font13{ font-size: 13px;}
.font14{ font-size: 14px;}
.font15{ font-size: 15px;}
.font16{ font-size: 16px;}
.font17{ font-size: 17px;}
.font18{ font-size: 18px;}
.font19{ font-size: 19px;}
.font20{ font-size: 20px;}
.font21{ font-size: 21px;}
.font22{ font-size: 22px;}
.font23{ font-size: 23px;}
.font24{ font-size: 24px;}
.font25{ font-size: 25px;}
.font26{ font-size: 26px;}
.font27{ font-size: 27px;}
.font28{ font-size: 28px;}
.font29{ font-size: 29px;}
.font30{ font-size: 30px;}
.font31{ font-size: 31px;}
.font32{ font-size: 32px;}
.font33{ font-size: 33px;}
.font34{ font-size: 34px;}
.font35{ font-size: 35px;}
.font36{ font-size: 36px;}
.font37{ font-size: 37px;}
.font38{ font-size: 38px;}
.font39{ font-size: 39px;}
.font40{ font-size: 40px;}
.font45{ font-size: 45px;}
.font24Imp{ font-size: 24px!important;}

/* Font Style */
.bold{ font-weight: 600;}

.normal{ font-weight: 400;}

/* column width */
.col100{ width: 100%; }
.col40{ width: 40%; display: inline-block;}
.col30{ width: 30%; display: inline-block;}

/* Max widths */
.mw-32{max-width: 32% !important;}

/* Border Styles */
.brdSquare{ border:1px solid #E9E9E9;}
.brdGrayBox{ border: 1px solid #e0e5ec;}
.brdGreenBox{ border: 1px solid #3F9D00;}
.brdGreenBox2px{ border: 2px solid #3F9D00;}
.brdGraySec{ border: 1px solid #EFEFEF;}
.brdDarkGrayBox{ border: 1px solid #CCCCCC;}
.brdDarkBlue4{ border: 4px solid #354957;}
.brdBlue2px{ border:2px solid #253342;}
.brdTp1{ border-top:1px solid #E9E9E9;}
.brdTp2{ border-top:2px solid #E9E9E9;}
.brdTp3{ border-top:3px solid #E9E9E9;}
.brdTp4{ border-top:4px solid #E9E9E9;}
.brdTp5{ border-top:5px solid #E9E9E9;}

.brdRt1{ border-right:1px solid #E9E9E9;}
.brdRt2{ border-right:2px solid #E9E9E9;}
.brdRt3{ border-right:3px solid #E9E9E9;}
.brdRt4{ border-right:4px solid #E9E9E9;}
.brdRt5{ border-right:5px solid #E9E9E9;}

.brdLt1{ border-Left:1px solid #E9E9E9;}
.brdLt2{ border-Left:2px solid #E9E9E9;}
.brdLt3{ border-Left:3px solid #E9E9E9;}
.brdLt4{ border-Left:4px solid #E9E9E9;}
.brdLt5{ border-Left:5px solid #E9E9E9;}

.brdBt1{ border-bottom:1px solid #E9E9E9;}
.brdBt2{ border-bottom:2px solid #E9E9E9;}
.brdBt3{ border-bottom:3px solid #E9E9E9;}
.brdBt4{ border-bottom:4px solid #E9E9E9;}
.brdBt5{ border-bottom:5px solid #E9E9E9;}

.brdBt-lightGray{border-bottom:1px solid #EFEFEF;}
.brdBt-lessGray{ border-bottom: 1px solid #CFCFCF;}
.brdBt1LightGray{ border-bottom:1px solid #DDDDDD;}
.reportBrd{ border: #CFCFCF solid 1px;}
.brdBt1Gray{ border-bottom:1px solid #E2E2E2;}
.brdTp1Gray{ border-top:1px solid #E2E2E2;}

.brdTpGreen5px{ border-top:#3F9D19 solid 5px;}
.brdTpBlue5px{ border-top:#3B86FF solid 5px;}
.brdTpOrange5px{ border-top:#FF962C solid 5px;}
.brdTpRed5px{ border-top:#D60000 solid 5px;}
.brdTpRed1px{ border-top:#D60000 solid 1px;}
.brdTpRed2px{ border-top:#D60000 solid 2px;}
.brdBoxGary1px{ border: #EFEFEF solid 1px;}
.brdBoxGary2px{ border: #EFEFEF solid 2px;}
.brdGrayRight1px{ border-right: #EFEFEF solid 1px;}
.boxGrayBrd{ border: #E2E2E2 solid 1px;}
.brdTopGray10{ border-top: #E9E9E9 solid 10px;}
.brdBotGray10{ border-bottom: #E9E9E9 solid 10px;}
.brdLeftGray10{ border-left: #E9E9E9 solid 10px;}
.brdRightGray10{ border-right: #E9E9E9 solid 10px;}

/* Border Radius */
.brdRadius4{ border-radius: 4px;}

/* Border sell for Batch Vehicle */
#batchVehicle .cellBrd-green{
    outline: solid 2px #3F9D19;
    outline-offset: -6px;
}
#batchVehicle .cellBrd-red{
  outline: solid 2px #D60000;
  outline-offset: -6px;
}
#batchVehicle .cellBrd-orange{
  outline: solid 2px #ec954cae;
  outline-offset: -6px;
}
/*#batchVehicle .cellBrd-green span, #batchVehicle .cellBrd-red span, #batchVehicle .cellBrd-orange span{
  width: 100%;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
}*/

#tabelCust .brdBtGreen3px{ border-bottom:#3F9D19 solid 3px!important;}

/* Top style */
.tp1{ top: 1px;}
.tp2{ top: 2px;}
.tp3{ top: 3px;}

/* Top style negative*/
.tp1M{ top: -1px;}
.tp2M{ top: -2px;}
.tp3M{ top: -3px;}
.tp4M{ top: -4px;}
.tp5M{ top: -5px;}
.tp6M{ top: -6px;}

/* Custom hright class */
.ht35{ height: 35px!important;}
.ht80vh{ height: 80vh;}
/* standard class for ul and li table grid */
.tableGrid ul {
  list-style: none;
  padding:0;
  margin:0;
}
.tableGrid ul li{
  display: flex;
  width: 100%;
  padding: 5px 0;
}
.border-dotted{
  background: #FBFBFB 0% 0% no-repeat padding-box;
  border: 2px dashed #DCDCDC;
  border-radius: 4px;
}
.border-active{
  background: #FBFBFB 0% 0% no-repeat padding-box;
  border: 2px solid #3F9D19;
  border-radius: 4px;
}

.divider{ background-color: #E9E9E9; height: 4px;}

.brdDarkBlueDesc {
  box-shadow: 0px 0px 6px #00000012;
  border: 4px solid #354957;
  opacity: 1;
}

/* Button Styles */
button:focus{ outline: none!important;}
.btn-cancel{
  color: #4C4A49!important;
  background-color: #E2E2E2!important;
  border-color: #E2E2E2!important;
  outline: none;
  box-shadow: none;
}
.btn-cancel:not(:disabled):not(.disabled):active, .btn-cancel:not(:disabled):not(.disabled).active, .show > .btn-cancel.dropdown-toggle{
  color: #4C4A49!important;
  background-color: #D4D3D3!important;
  border-color: #D4D3D3!important;
  outline: none;
  box-shadow: none;
}
.btn-save{
  color: #FFFFFF;
  background-color: #2C81C1;
  border-color: #2C81C1;
  outline: none;
  box-shadow: none;
}
.btn-save:not(:disabled):not(.disabled):active, .btn-save:not(:disabled):not(.disabled).active, .show > .btn-save.dropdown-toggle{
  color: #FFFFFF;
  background-color: #2A7AB6;
  border-color: #2A7AB6;
  outline: none;
  box-shadow: none;
}
.btn-square{
  border: none!important;
  border-radius: 0px!important;;
}
.btn-round{
  border: none!important;
  border-radius: 2px!important;
}
.btn-round:hover, .btn-round:focus, .btn-round:active{
  border: none!important;
  border-radius: 2px!important;
}
.btn-back{
  color: #000000;
  background-color: #E2E2E2;
  border: #E2E2E2 solid 1px;
  outline: none;
  box-shadow: none;
  padding: .375rem .65rem;
  font-size: 14px;
  line-height: 1.5;
}
.btn-back:hover, .btn-back:focus, .btn-back:active{
   opacity: 0.8;
}
.btn-red{
  display: inline-block;
  color: #FFFFFF;
  background-color: #D60915;
  border: #D60915 1px solid;
  font-size: 14px;
  font-weight: 400;
  border-radius: 2px;
  outline: none;
  box-shadow: none;
  opacity: 1;
  padding: .375rem .65rem;
  line-height: 1.5;
  cursor: pointer;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-red:hover, .btn-red:focus, .btn-red:active{
  opacity: 0.8;
}
.btn-green{
  display: inline-block;
  color: #FFFFFF;
  background-color: #3F9D00;
  border: #3F9D00 1px solid;
  font-size: 14px;
  font-weight: 400;
  border-radius: 2px;
  outline: none;
  box-shadow: none;
  opacity: 1;
  padding: .375rem .65rem;
  line-height: 1.5;
  cursor: pointer;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-green:hover, .btn-green:focus, .btn-green:active{
  opacity: 0.8;
}
.btn-orange{
  display: inline-block;
  color: #FFFFFF;
  background-color: #F79126;
  border: #F79126 1px solid;
  font-size: 14px;
  font-weight: 400;
  border-radius: 2px;
  outline: none;
  box-shadow: none;
  opacity: 1;
  padding: .375rem .65rem;
  line-height: 1.5;
  cursor: pointer;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-orange:hover, .btn-orange:focus, .btn-orange:active{
  opacity: 0.8;
}
.btn-blue{
  display: inline-block;
  color: #FFFFFF;
  background-color: #2C81C1;
  border: #2C81C1 1px solid;
  font-size: 14px;
  font-weight: 400;
  border-radius: 2px;
  outline: none;
  box-shadow: none;
  opacity: 1;
  padding: .375rem .65rem;
  line-height: 1.5;
  cursor: pointer;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-blue:hover, .btn-blue:focus, .btn-blue:active{
  opacity: 0.8;
}
.btn-no{
  display: inline-block;
  color: #454545;
  background-color: #C3C3C3;
  border: #C3C3C3 1px solid;
  font-size: 14px;
  font-weight: 400;
  border-radius: 2px;
  outline: none;
  box-shadow: none;
  opacity: 1;
  padding: .375rem .65rem;
  line-height: 1.5;
  cursor: pointer;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-no:hover, .btn-no:focus, .btn-no:active{
  opacity: 0.8;
}
.btn-greenBrd{
  display: inline-block;
  color: #3F9D19;
  background-color: #FFFFFF;
  border: #3F9D00 1px solid;
  font-size: 14px;
  font-weight: 400;
  border-radius: 2px;
  outline: none;
  box-shadow: none;
  opacity: 1;
  padding: .375rem .65rem;
  line-height: 1.5;
  cursor: pointer;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-greenBrd:hover, .btn-greenBrd:focus, .btn-greenBrd:active{
  background-color: #3F9D00;
  color: #FFFFFF;
}
.btn-Dblue{
  display: inline-block;
  color: #FFFFFF;
  background-color: #253342;
  border: #253342 1px solid;
  font-size: 14px;
  font-weight: 400;
  border-radius: 2px;
  outline: none;
  box-shadow: none;
  opacity: 1;
  padding: .375rem .65rem;
  line-height: 1.5;
  cursor: pointer;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-Dblue:hover, .btn-Dblue:focus, .btn-Dblue:active{
  opacity: 0.8;
}
.btn-darkBlue{
  display: inline-block;
  color: #FFFFFF;
  background-color: #253342;
  border: #253342 1px solid;
  font-size: 14px;
  font-weight: 400;
  border-radius: 2px;
  outline: none;
  box-shadow: none;
  opacity: 1;
  padding: .375rem .65rem;
  margin: 0;
  line-height: 1.5;
  cursor: pointer;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-darkBlue:hover, .btn-darkBlue:focus, .btn-darkBlue:active{
  opacity: 0.8;
}

.btn-myaccount{
  display: inline-block;
  color: #FFFFFF;
  background-color: #FD962B;
  border: #FD962B 1px solid;
  font-size: 13px;
  font-weight: 600;
  border-radius: 3px;
  outline: none;
  box-shadow: none;
  opacity: 1;
  padding: 5px 12px;
  line-height: 14px;
  height: 30px;
  cursor: pointer;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-myaccount:hover, .btn-myaccount:focus, .btn-myaccount:active{
  opacity: 0.8;
}

.btn-gray{
  display: inline-block;
  color: #454545;
  background-color: #E2E2E2;
  border: #E2E2E2 1px solid;
  font-size: 14px;
  font-weight: 400;
  border-radius: 3px;
  outline: none;
  box-shadow: none;
  opacity: 1;
  padding: .375rem .65rem;
  line-height: 1.5;
  cursor: pointer;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-gray:hover, .btn-gray:focus, .btn-gray:active{
  opacity: 0.8;
}
.btn-gray-SaveasDraft{
  display: inline-block;
  color: #000000;
  background-color: #E2E2E2!important;
  border: #E2E2E2 1px solid!important;
  font-size: 14px!important;
  font-weight: 400!important;
  border-radius: 2px!important;
  outline: none;
  box-shadow: none;
  opacity: 1;
  padding: .375rem .65rem!important;
  line-height: 1.5!important;
  cursor: pointer;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-gray-SaveasDraft:hover, .btn-gray-SaveasDraft:focus, .btn-gray-SaveasDraft:active{
  opacity: 0.8;
}

.btn-back-new{
  display: inline-block;
  color: #FFFFFF;
  background-color: #CCCCCC;
  border: #CCCCCC 1px solid;
  font-size: 14px;
  font-weight: 400;
  border-radius: 3px;
  outline: none;
  box-shadow: none;
  opacity: 1;
  padding: .375rem .65rem;
  line-height: 1.5;
  cursor: pointer;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-back-new:hover, .btn-back-new:focus, .btn-back-new:active{
  opacity: 0.8;
}
.btn-lightGray{
  display: inline-block;
  color: #253342;
  background-color: #CCCCCC;
  border: #CCCCCC 1px solid;
  font-size: 14px;
  font-weight: 400;
  border-radius: 2px;
  outline: none;
  box-shadow: none;
  opacity: 1;
  padding: .375rem .65rem;
  line-height: 1.5;
  cursor: pointer;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-lightGray:hover, .btn-lightGray:focus, .btn-lightGray:active{
  opacity: 0.8;
}
.btn-clearAll{
  display: inline-block;
  color: #253342;
  background-color: #CCCCCC;
  border: #CCCCCC 1px solid;
  font-size: 14px;
  font-weight: 400;
  border-radius: 0px;
  outline: none;
  box-shadow: none;
  opacity: 1;
  padding: .375rem .65rem;
  line-height: 1.5;
  cursor: pointer;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.clearAll:hover, .clearAll:focus, .clearAll:active{
  opacity: 0.8;
}

.btn-darkgray{
  display: inline-block;
  color: #FFFFFF;
  background-color: #000000;
  border: #000000 1px solid;
  font-size: 14px;
  font-weight: 400;
  border-radius: 2px;
  outline: none;
  box-shadow: none;
  opacity: 1;
  padding: .375rem .65rem;
  line-height: 1.5;
  cursor: pointer;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-darkgray:hover, .btn-darkgray:focus, .btn-darkgray:active{
  opacity: 0.8;
}

.btn-blueReportIcon{
  display: inline-block;
  color: #FFFFFF;
  background-color: #253342;
  border: #253342 1px solid;
  font-size: 14px;
  font-weight: 400;
  border-radius: 2px;
  outline: none;
  box-shadow: none;
  opacity: 1;
  padding: .375rem .65rem;
  line-height: 1.5;
  cursor: pointer;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-blueReportIcon:hover, .btn-blueReportIcon:focus, .btn-blueReportIcon:active{
  opacity: 0.8;
}
.btn-blueReport{
  display: inline-block;
  color: #FFFFFF;
  background-color: #4987CA;
  border: #4987CA 1px solid;
  font-size: 14px;
  font-weight: 400;
  border-radius: 2px;
  outline: none;
  box-shadow: none;
  opacity: 1;
  padding: .375rem .65rem;
  line-height: 1.5;
  cursor: pointer;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-blueReport:hover, .btn-blueReport:focus, .btn-blueReport:active{
  opacity: 0.8;
}
.btn-browse-blue{
  display: inline-block;
  color: #0047BA!important;
  background-color: #DEEBFF!important;
  border: #DEEBFF 1px solid!important;
  font-size: 14px!important;
  font-weight: 400!important;
  border-radius: 2px!important;
  outline: none;
  box-shadow: none;
  opacity: 1;
  padding: 9px 12px!important;
  line-height: 1.5!important;
  cursor: pointer;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-browse-blue:hover, .btn-browse-blue:focus, .btn-browse-blue:active{
  opacity: 0.8;
}

.btn-resend-blue{
  display: inline-block;
  color: #0047BA!important;
  background-color: #DEEBFF!important;
  border: #DEEBFF 1px solid!important;
  font-size: 14px!important;
  font-weight: 400;
  border-radius: 2px!important;
  outline: none;
  box-shadow: none;
  opacity: 1;
  padding: .375rem .65rem;
  line-height: 1.5;
  cursor: pointer;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-resend-blue:hover, .btn-resend-blue:focus, .btn-resend-blue:active{
  opacity: 0.8;
}
.btnAlignFix{ position: relative; top:-4px;}
.btn-disabled{
  opacity : 0.5 !important;
 }
.loadDonation-btn a{
  display: inline-block;
  color: #3F9D19;
  background-color: #FFFFFF;
  border: #3F9D00 1px solid;
  font-size: 14px;
  font-weight: 400;
  border-radius: 2px;
  outline: none;
  box-shadow: none;
  opacity: 1;
  padding: .375rem .65rem;
  line-height: 1.5;
  cursor: pointer;
  text-decoration: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.loadDonation-btn a:hover, .loadDonation-btn a:focus, .loadDonation-btn a:active{
  background-color: #3F9D00;
  color: #FFFFFF;
  text-decoration: none;
}
.gridLoaderInfo .btn-success{
  background-color: #3F9D00!important;
  border: #3F9D00 1px solid!important;
}
.gridLoaderInfo .btn-success:hover,.gridLoaderInfo .btn-success:active{
  opacity: 0.8;
  outline: none;
  box-shadow: none!important;
}
.gridLoaderInfo .btn-success:focus{
  outline: none;
  box-shadow: none!important;
}
/* Button Width Stye */
.btn-width-25{
  width: 25%;
}
.btn-width-33{
  width: 33.99%;
}
.btn-width-50{
  width: 50%;
}
.btn-width-100{
  width: 100%;
}
.btn-width-33-33{
  width: 33.33%;
}

/* Width Style */
.w10{ width: 10%;}
.w20{ width: 20%;}
.w15{ width: 15%;}
.w25{ width: 25%;}
.w30{ width: 30%;}
.w40{ width: 40%;}
.w45{ width: 45%;}
.w49{ width: 49%;}
.w50{ width: 50%;}
.w55{ width: 55%;}
.w60{ width: 60%;}
.w70{ width: 70%;}
.w80{ width: 80%;}
.w90{ width: 90%;}
.w100{ width: 100%;}
.w-max{width: max-content}

/* Switcher Toggle Style */
.switcher{
  position: relative;
  display: inline-block;
  width: 75px;
  height: 30px;
}
.switcher input{
  display: none;
}
.switcher .switcher-copy{
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 100;
  transition: transform 0.3s, opacity 0.3s;
}
.switcher .switcher-indicator{
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.switcher .switcher-indicator:before{
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 3px;
  background-color: rgb(255, 255, 255);
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 100px;
}
.switcher .yes{
  opacity: 0;
  color: #fff;
  font-weight: 600;
  margin-left: 14px;
  transform: translateX(-20px);
}
.switcher .no{
  margin-right: 14px;
  transform: translateX(0px);
  color: #666;
  font-weight: 600;
}
.switcher input:checked + .switcher-indicator {
  background-color: #253F65;
}
.switcher input:checked + .switcher-indicator:before {
  -webkit-transform: translateX(44px);
  -ms-transform: translateX(44px);
  transform: translateX(44px);
}
.switcher input:checked + .switcher-indicator .no{
  opacity: 0;
  transform: translateX(20px);
}
.switcher input:checked +  .switcher-indicator .yes{
  opacity: 1;
  transform: translateX(0px);
}

.switcher-large{
  position: relative;
  display: inline-block;
  width: 105px;
  height: 30px;
}
.switcher-large input{
  display: none;
}
.switcher-large .switcher-copy{
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 100;
  transition: transform 0.3s, opacity 0.3s;
}
.switcher-large .switcher-indicator{
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.switcher-large .switcher-indicator:before{
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 3px;
  background-color: rgb(255, 255, 255);
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 100px;
}
.switcher-large .yes{
  opacity: 0;
  color: #fff;
  font-weight: 600;
  margin-left: 14px;
  transform: translateX(-20px);
}
.switcher-large .no{
  margin-right: 14px;
  transform: translateX(-10px);
  color: #666;
  font-weight: 600;
}
.switcher-large input:checked + .switcher-indicator {
  background-color: #2196F3;
}
.switcher-large input:checked + .switcher-indicator:before {
  -webkit-transform: translateX(73px);
  -ms-transform: translateX(73px);
  transform: translateX(73px);
}
.switcher-large input:checked + .switcher-indicator .no{
  opacity: 0;
  transform: translateX(20px);
}
.switcher-large input:checked +  .switcher-indicator .yes{
  opacity: 1;
  transform: translateX(20px);
}
.switcher-text {
  color: white;
  position: relative;
  top: 3px;
  left: 5px;
}

/* Switcher Custom */
.switcher-custom{
  position: relative;
  display: inline-block;
  width: 105px;
  height: 30px;
  line-height: 26px;
}
.switcher-custom input{
  display: none;
}
.switcher-custom .switcher-copy{
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 100;
  transition: transform 0.3s, opacity 0.3s;
}
.switcher-custom .switcher-indicator{
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.switcher-custom .switcher-indicator:before{
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 3px;
  background-color: rgb(255, 255, 255);
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 100px;
}
.switcher-custom .yes{
  color: #fff;
  margin-left: 14px;
  transform: translateX(0px);
}
.switcher-custom .no{
  margin-right: 14px;
  transform: translateX(-27px);
  color: #666;
}
.switcher-custom .active{
  color: #fff;
  margin-left: 14px;
  transform: translateX(0px);
}
.switcher-custom .inactive{
  margin-right: 14px;
  transform: translateX(-15px);
  color: #666;
}
.switcher-custom .enabled{
  color: #fff;
  margin-left: 14px;
  transform: translateX(0px);
}
.switcher-custom .disabled{
  margin-right: 14px;
  transform: translateX(-30px);
  color: #666;
}
.switcher-custom .notRequired{
  margin-right: 14px;
  transform: translateX(-50px);
  color: #666;
}

.switcher-custom input:checked + .switcher-indicator {
  background-color: #2196F3;
}
.switcher-custom input:checked + .switcher-indicator:before {
  -webkit-transform: translateX(73px);
  -ms-transform: translateX(73px);
  transform: translateX(73px);
}
.switcher-custom input:checked + .switcher-indicator .no{
  opacity: 0;
  transform: translateX(20px);
}
.switcher-custom input:checked +  .switcher-indicator .yes{
  opacity: 1;
  transform: translateX(20px);
}
.switcher-text {
  color: white;
  position: relative;
  top: 3px;
  left: 5px;
}

/* Switcher 125 width */
.switcher-extraLarge{
  position: relative;
  display: inline-block;
  width: 125px;
  height: 30px;
}
.switcher-extraLarge input{
  display: none;
}
.switcher-extraLarge .switcher-copy{
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 100;
  transition: transform 0.3s, opacity 0.3s;
}
.switcher-extraLarge .switcher-indicator{
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.switcher-extraLarge .switcher-indicator:before{
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 3px;
  background-color: rgb(255, 255, 255);
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 100px;
}
.switcher-extraLarge .yes{
  opacity: 0;
  color: #fff;
  font-weight: 600;
  margin-left: 14px;
  transform: translateX(-20px);
}
.switcher-extraLarge .no{
  margin-right: 14px;
  transform: translateX(0px);
  color: #666;
  font-weight: 600;
}
.switcher-extraLarge input:checked + .switcher-indicator {
  background-color: #2196F3;
}
.switcher-extraLarge input:checked + .switcher-indicator:before {
  -webkit-transform: translateX(47px);
  -ms-transform: translateX(47px);
  transform: translateX(47px);
}
.switcher-extraLarge input:checked + .switcher-indicator .no{
  opacity: 0;
  transform: translateX(20px);
}
.switcher-extraLarge input:checked +  .switcher-indicator .yes{
  opacity: 1;
  transform: translateX(0px);
}

@media only screen and (max-width: 1280px) {
  .switcher-extraLarge input:checked + .switcher-indicator:before {
    -webkit-transform: translateX(28px);
    -ms-transform: translateX(28px);
    transform: translateX(28px);
  }

  #fileUploadSection .dzu-dropzone{
    overflow-y: hidden!important;
    overflow-x: auto!important;
  }

  /* Cadence rweditor */
  /* #CadenceForm_emailBody_0 .rdw-image-modal{
    left: -185px!important;
  } */
  #CadenceForm_emailBody_0 .rdw-emoji-modal{
    left: -140px!important;
  }
  #CadenceForm_emailBody_0 .rdw-embedded-modal{
    left: -95px!important;
  }
}

/* Generic Modal Styles */

  /* Modal Wrapper */
  .craModal .modal-content{
    border-radius: 0px;
    border:none;
  }
  /* Modal Header */
  .craModal .modal-header .close{
    padding: 0;
    margin: 0;
    outline: none;
  }
  /* .craModal .modal-header{
    border-bottom:none;
  } */
  .craModal .modal-header .h4{
    font-size: 20px;
  }
  .craModal .modal-header .modal-title{
    color: #000000;
    line-height: 27px;
    font-weight: 600;
  }
  /* Modal Footer */
  .craModal .modal-footer{
    border-top: none;
    padding: 0px;
    justify-content: flex-start;
  }
  .craModal .modal-footer button{
    margin: 0px;
  }

  /* Modal style for vertically show center*/
  .modal {
    text-align: center;
    padding: 0!important;
  }
  .modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
  }
  .modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    min-width: 800px;
  }

  /* Left Entity Details Snippet Box */
  .l-Sinppet-box {
    border: #EFEFEF solid 2px;
    padding: 10px;
    margin: 5px 10px;
  }
  .l-snippet-head{
    color: #333333;
    font-size: 14px;
    font-weight: 600;
  }
  .l-snippet-head-green{
    color: #3F9D00;
    font-size: 18px;
    font-weight: 600;
  }
  .l-Sinppet-box-new {
    border: 1px solid #CCCCCC;
    padding: 15px;
    width: 98%;
  }
  .l-Sinppet-box-full{
    border: #EFEFEF solid 2px;
    padding: 15px;
    margin: 5px 10px;
    display: block;
    text-align: center;
  }
  .l-Sinppet-box-full tbody{
    display: inline;
  }
  .l-Sinppet-box-withoutLeftMargin {
    border: #EFEFEF solid 2px;
    padding: 10px;
    margin: 5px 10px 5px 0;
  }

  /* Dashboard Styles */

    /* Top Cards */
    .dTopCards{
      background: #FFFFFF 0% 0% no-repeat padding-box;
      /* box-shadow: 0px 0px 6px #00000026; */
      opacity: 1;
      width: 100%;
      position: relative;
    }
    .tpCardCount{
      text-align: center;
      padding-bottom: 5px;
    }
    .tpCardCount {
      color: #253342;
      font-size: 30px;
      font-weight: 600;
      line-height: 22px;
      text-decoration: none;
    }
    .tpCardCount a{
      color: #253342;
      font-size: 30px;
      font-weight: 600;
      line-height: 22px;
      text-decoration: none;
    }
    .tpCardCount a:hover{
      text-decoration: none;
      color: #253342;
      opacity: 0.8;
    }

    .topCardText{
      color: #253342;
      font-size: 18px;
      text-align: center;
      line-height: 22px;
      padding-bottom: 20px;
    }
    .totalEntityCount{
      position: absolute;
      bottom: 10px;
      right: 10px;
    }
    .totalEntityCount a{
      color:#4F96CB;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
    }
    .totalEntityCount a:hover{
      text-decoration: none;
      color:#4F96CB;
      opacity: 0.8;
    }
    .imgVert img{
      display: block;
      margin-left: auto;
      margin-right: auto;
      height: 100%;
    }

    /* Dashboard Grid Card */
    .gridCardBox{
      background: #FFFFFF 0% 0% no-repeat padding-box;
      /* box-shadow: 0px 3px 6px #00000029; */
      border:#DDDDDD solid 1px;
      opacity: 1;
      color: #253342;
      font-size: 20px;
      line-height: 22px;
      font-weight: 600;
      padding: 10px;
      position: relative;
      z-index: 10;
    }
    .gridCardBoxInner{
      background: #FFFFFF 0% 0% no-repeat padding-box;
      padding: 10px;
      border-left: 1px solid #e0e5ec;
      border-right: 1px solid #e0e5ec;
      border-bottom: 1px solid #e0e5ec;
      opacity: 1;
      position: relative;
      z-index: 9;
      /* top:-5px; */
      top: 0px;
    }
    .gridCardBoxAddBtn{
      position: absolute;
      top: 7px;
      right: 24px;
    }
    .contentList{
      box-shadow: 0px 0px 6px #00000026;
      border: 1px solid #DDDDDD;
      padding: 0;
      margin-bottom: 10px;
      list-style: none;
    }
    .remTimeBoxCurve{
      border:#86C16E solid 1px;
      border-radius: 20px;
      background-color: #EBF5E8;
      color: #3F9D00;
      font-size: 14px;
      text-align: center;
      padding: 2px;
      line-height: 20px;
      margin-top: 10px;
    }
    .overdueTimeBoxCurve{
      border:#E5636B solid 1px;
      border-radius: 20px;
      background-color: #FBE6E7;
      color: #E5636B;
      font-size: 14px;
      text-align: center;
      padding: 2px;
      line-height: 20px;
      margin-top: 10px;
    }.gridCardBoxInner{
      background: #FFFFFF 0% 0% no-repeat padding-box;
      padding: 10px;
      border-left: 1px solid #e0e5ec;
      border-right: 1px solid #e0e5ec;
      border-bottom: 1px solid #e0e5ec;
      opacity: 1;
      position: relative;
      z-index: 9;
      /* top:-5px; */
      top: 0px;
    }
    .gridCardBoxAddBtn{
      position: absolute;
      top: 7px;
      right: 24px;
    }
    .contentList{
      box-shadow: 0px 0px 6px #00000026;
      border: 1px solid #DDDDDD;
      padding: 0;
      margin-bottom: 10px;
      list-style: none;
    }
    .remTimeBoxCurve{
      border:#86C16E solid 1px;
      border-radius: 20px;
      background-color: #EBF5E8;
      color: #3F9D00;
      font-size: 14px;
      text-align: center;
      padding: 2px;
      line-height: 20px;
      margin-top: 10px;
    }
    .overdueTimeBoxCurve{
      border:#E5636B solid 1px;
      border-radius: 20px;
      background-color: #FBE6E7;
      color: #E5636B;
      font-size: 14px;
      text-align: center;
      padding: 2px;
      line-height: 20px;
      margin-top: 10px;
    }
    .dashBoardTabContent{
      min-height: 250px;
    }
    .myTaskTabContent{
      min-height: 244px;
    }
    .taskViewAll a{
      color:#4F96CB;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
    }
    .taskViewAll a:hover{
      opacity: 0.8;
      text-decoration: none;
    }
    .quickLinksBox {
      list-style: none;
      padding: 0px 10px 0px;
      margin: 0;
    }
    .quickLinksBox a{
      color: #2C81C1;
      font-size: 16px;
      text-decoration: none;
    }
    .quickLinksBox a:hover{
      text-decoration: none;
      opacity: 0.8;
    }


    /* Dashboard Grid Card */
    .gridCardBox{
      background: #FFFFFF 0% 0% no-repeat padding-box;
      /* box-shadow: 0px 3px 6px #00000029; */
      border:#DDDDDD solid 1px;
      opacity: 1;
      color: #253342;
      font-size: 20px;
      line-height: 22px;
      font-weight: 600;
      padding: 10px;
      position: relative;
      z-index: 10;
    }
    .gridCardBoxInner{
      background: #FFFFFF 0% 0% no-repeat padding-box;
      padding: 10px;
      border-left: 1px solid #DDDDDD;
      border-right: 1px solid #DDDDDD;
      border-bottom: 1px solid #DDDDDD;
      opacity: 1;
      position: relative;
      z-index: 9;
      /* top:-5px; */
      top: 0px;
    }
    .gridCardBoxAddBtn{
      position: absolute;
      top: 7px;
      right: 24px;
    }
    .contentList{
      box-shadow: 0px 0px 6px #00000026;
      border: 1px solid #DDDDDD;
      padding: 0;
      margin-bottom: 10px;
      list-style: none;
    }
    .remTimeBoxCurve{
      border:#86C16E solid 1px;
      border-radius: 20px;
      background-color: #EBF5E8;
      color: #3F9D00;
      font-size: 14px;
      text-align: center;
      padding: 2px;
      line-height: 20px;
      margin-top: 10px;
    }
    .overdueTimeBoxCurve{
      border:#E5636B solid 1px;
      border-radius: 20px;
      background-color: #FBE6E7;
      color: #E5636B;
      font-size: 14px;
      text-align: center;
      padding: 2px;
      line-height: 20px;
      margin-top: 10px;
    }
    .dashBoardTabContent{
      min-height: 250px;
    }
    .myTaskTabContent{
      min-height: 244px;
    }
    .taskViewAll a{
      color: #4F96CB;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
    }
    .taskViewAll a:hover{
      opacity: 0.8;
      text-decoration: none;
    }
    .quickLinksBox {
      list-style: none;
      padding: 0px 10px 0px;
      margin: 0;
    }
    .quickLinksBox a{
      color: #2C81C1;
      font-size: 16px;
      text-decoration: none;
    }
    .quickLinksBox a:hover{
      text-decoration: none;
      opacity: 0.8;
    }

    /* Generic Tab Section Style */
    #genericTab .nav-tabs{ padding-bottom: 1px!important;}
    #genericTab .nav-tabs a{ border: 1px solid #FFFFFF!important; color: #333333;border-radius: 0px!important; padding: 8px 10px!important;}
    #genericTab .nav-tabs .nav-item.show .nav-link, #genericTab .nav-tabs .nav-link.active{
      color: #FFFFFF!important;
      background-color: #3F9D00!important;
      border-radius: 0px!important;
      border: #3F9D00 solid 1px!important;
    }
    #genericTab .nav-tabs .nav-link:hover{
      border: #3F9D00 solid 1px!important;
      background-color: #3F9D00!important;
      border-radius: 0px!important;
      color: #FFFFFF!important;
    }

    #genericTab .tab-content{
      margin: 10px 5px;
    }
    /* #genericTab .tab-content ul{
      padding: 0;
      list-style: none;
    } */
    #genericTab .tab-content .myTaskTabContent{
      padding: 0;
      list-style: none;
    }
    #genericTab .tab-content .dashBoardTabContent ul{
      padding: 0;
      list-style: none;
    }

    #myTaskGridTab-tab-5{
      color: #D60000!important;
      font-weight: 600;
    }
    .pinTab{
      position: relative;
      top: -8px;
      right: 4px;
      color: #FF962C;
      font-size: 12px;
    }

    /* Input Styles */
    .inputGray .form-control{
      background: #EFEFEF;
      border-radius: 0px;
      border: #EFEFEF solid 1px;
      color: #000000;
      font-size: 14px;
      line-height: 17px;
      opacity: 1;
      height: 42px;
    }
    .inputGray .form-control:focus{
      border: #EFEFEF solid 1px;
      box-shadow: none;
      background: #EFEFEF 0% 0% no-repeat padding-box;
    }
    .inputGray label{
      color: #000000;
      font-size: 14px;
      font-weight: 600;
      line-height: 21px;
    }
    /* Textarea padding */
    .inputGray textarea {
      padding: 10px 12px
    }

    .selectInputField div:first-child{
      background: #EFEFEF;
      border-radius: 0px;
      border: #EFEFEF solid 1px;
      color: #000000;
      /* font-size: 14px; */
      line-height: 17px;
      opacity: 1;
      cursor: pointer;
    }

    .selectInputField div:nth-child(2){
      background: #EFEFEF;
      border-radius: 0px;
      border: #EFEFEF solid 1px;
      color: #000000;
      /* font-size: 14px; */
      line-height: 17px;
      opacity: 1;
      cursor: pointer;
    }

    /* multi-select input type style fixes*/
    .css-1hwfws3{
      padding: 0px 5px!important;
    }


    /* Input for existing contact, company, opp, initiative, task*/
    .ExistingContactForm .form-control, .ExistingCompanyForm .form-control, .ExistingOpptyForm .form-control{
      background:none;
      border:none;
      padding: 0px;
      margin-top: -10px;
      height: 100%;
      /* margin: -30px 0 -20px; */
    }
    /* .selectInputField div:focus, .selectInputField div:hover, .selectInputField div:active {
      box-shadow: none!important;
      background: #cccccc 0% 0% no-repeat padding-box;
    } */

    /* Panel BreadCrumb Box */
    .panelBredcrumb{
      background: #FAFAFA 0% 0% no-repeat padding-box;
      border-top: 1px solid #E2E2E2;
      border-left: 1px solid #E2E2E2;
      border-right: 1px solid #E2E2E2;
      border-radius: 3px 3px 0px 0px;
      opacity: 1;
      color: #999999;
    }
    .panelBredcrumbHeading{
      color: #999999;
      font-size: 15px;
      line-height: 18px;
      padding: 15px 0;
    }
    .panelBredcrumbHeaderButton{
      padding: 7px 0;
    }

    /* Panel Section */
    .panel{
      background: #FAFAFA 0% 0% no-repeat padding-box;
      border-top: 1px solid #E2E2E2;
      border-left: 1px solid #E2E2E2;
      border-right: 1px solid #E2E2E2;
      border-radius: 3px 3px 0px 0px;
      opacity: 1;
      color: #999999;
    }
    .panelHeading{
      color: #354957;
      font-weight: 600;
      font-size: 18px;
      line-height: 18px;
      padding: 15px 0;
    }
    .panelBoxShadow{
      box-shadow: 0px 3px 6px #00000029;
    }
    .panelHeaderButton{
      padding: 7px 0;
    }
    .panelInner{
      border-left: #DDDDDD solid 1px;
      border-right: #DDDDDD solid 1px;
      border-bottom: #DDDDDD solid 1px;
      border-radius: 0px 0px 3px 3px;
    }

    /* Custom Field Style */
    .bluePanelHeader{
      background: #334959 0% 0% no-repeat padding-box;
      border-radius: 3px 3px 0px 0px;
      opacity: 1;
    }
    .bluePanelHeading{
      color: #FFFFFF;
      font-size: 16px;
      line-height: 18px;
      padding: 10px 0;
    }
    .bluePanelHeaderButton{
      padding: 7px 0;
    }
    .vertAlignHide svg{ vertical-align: unset;}

    /* Create Company Styles */

    .addEntity input[type="text"]{
      color: #000000;
      height: 40px;
      line-height: 40px;
      background: #EFEFEF 0% 0% no-repeat padding-box;
      opacity: 1;
    }
    .dropSection{
      background: #FBFBFB 0% 0% no-repeat padding-box;
      border: 2px dashed #DCDCDC;
      border-radius: 4px;
      min-height: 150px;
      text-align: center;
      min-height: 200px;
      padding-top: 20px;
      color: #A9A9A9;
      opacity: 1;
      font-size: 14px;
    }
    .addEntityBoxBrd{
      border: #DDDDDD solid 1px;
    }

    .rowEqualHeight {
      display: flex;
      flex-wrap: wrap;
    }
    .rowEqualHeight > [class*='col-'] {
      display: flex;
      flex-direction: row;
    }
    .rowEqualHeight.row:after,
    .rowEqualHeight:before {
      display: flex;
    }

    /* Add/Create Company, contact, task ... Header Section */
    .sectionHeaderBox{
      background: #FFFFFF 0% 0% no-repeat padding-box;
      border-top: 1px solid #E2E2E2;
      border-left: 1px solid #E2E2E2;
      border-right: 1px solid #E2E2E2;
      color: #354957;
      font-weight: 700;
      font-size: 18px;
      line-height: 18px;
      padding: 12px;
    }
    .dzu-dropzone{
      border: 2px dashed #DCDCDC!important;
      border-radius: 4px!important;
      overflow: hidden!important;
      min-height: 150px !important;
      background-color: #FBFBFB;
    }
    .dzu-previewContainer{
      z-index: 0!important;
    }
    .addMore div{
      position: relative;
      right: 0px;
      top: 30px;
      float: right;
    }
    .addMore .bi-plus-circle-fill{
      color: #3F9D00;
      font-size: 14px;
      margin: 3px 0px;
    }
    .addMore .bi-dash-circle-fill{
      color: #D60000;
      font-size: 14px;
      margin: 3px;
    }
    .addMoreExtra{
      position: relative;
      top: -30px;
      right: -5px;
    }
    .inlinePopUpForm .dzu-dropzone{
      margin: 0 auto 5px;
      width: 95%;
    }
    .rdw-dropdown-selectedtext{
      color: #212529!important;
      text-decoration:none!important;
    }

    /* Add Task Estimated Time Minute field alignment issue */
    #TaskForm_estimatedMin{ margin-top: 8px;}

    /* Popup Generic : Export / Import popup Style */
    .modal-dialog .modal-content{
      border-radius: 0;
      background: #FFFFFF 0% 0% no-repeat padding-box;
      box-shadow: 0px 3px 6px #00000029;
      opacity: 1;
    }
    .modal-content .modal-body{
      padding: 20px 15px 0;
    }
    /*.modal-header{
       background-color: #334959;
      border-bottom: none!Important;
    }*/
    .modal-header .modal-title{
      color: #000000;
      font-size: 18px;
      line-height: 18px;
      width:100%;
    }
    .modalFooterSec{
      margin-top: 10px;
      padding-top: 5px;
    }
    .modalFooterSec .modal-footer{
      border-top: none;
      padding: 0px;
      justify-content: flex-start;
      width: 100%;
    }
    .modal-footer button{
      margin: 0px;
    }
    .modal-footer button:hover{
      margin: 0px;
    }
    .modal-body .form-checkbox-input {
      position: absolute;
      top: 9px;
    }
    .modal-body .form-checkbox-label{
      padding-left: 20px;
      padding-top: 6px;
      font-size: 13px;
      line-height: 16px;
      color: #454545;
    }
    /* @-moz-document url-prefix() {
      .modal-body .form-checkbox-label{
        position: relative;
        top: 2px;
      }
    } */
    .popUpLayoutForm .msgBrdGray{
      border:none;
      margin-top: -10px;
    }
    .popUpLayoutForm .form-row{
      border: 1px solid #efefef;
      padding: 10px 10px 0;
    }
    .popUpSubTitle{
      padding: 0 20px;
      margin-top: 20px;
    }

    .iconAlign-fa{
      position: relative;
      top: -6px;
    }
    .OppStageBox{
      background: #FFFFFF 0% 0% no-repeat padding-box;
      box-shadow: 0px 0px 10px #00000026;
      border-radius: 3px;
      opacity: 1;
    }
    .oppStageName{ padding: 10px 0;}
    .oppStageIcon{ padding: 10px 0;}

    /* Icons Styles*/
    .redIcon-square{
      background-color: #D60915;
      border-radius: 0px;
      padding: 5px 7px 8px;
    }
    .redIcon-radius{
      background-color: #D60915;
      border-radius: 3px;
      padding: 0px 5px 5px;
    }
    .greenPlusCricle{
      border-radius: 100%;
      border:#3F9D19 solid 2px;
      padding: 2px 4px 4px;
    }

    /* My Account section styes */
    .navBarChildMenu{
      position: relative;
      left: 10px;
      border: #5C6671 solid 3px;
    }
    .dashboard-menu{
      padding: 10px 10px 0 15px;
    }
    .dashboard-menu a{ text-decoration: none;}
    .dashboard-menu a:hover{ text-decoration: none;}
    .myAcc-btn{
      position: relative;
      top: 0;
      right: 20px;
    }
    .myAccLink .nav-item a{
      color: #454545;
      font-size: 16px;
      line-height: 22px;
      padding: 19px 20px;
    }
    .myAccLink .nav-link:hover, .myAccLink .nav-link:focus, .myAccLink .nav-link:active{
      background: #FF962C 0% 0% no-repeat padding-box !important;
      color: #ffffff;
    }
    #myAccLink .nav-link.active{
      background: #FF962C 0% 0% no-repeat padding-box !important;
    }
    #myAccLink .nav-item a:hover, #myAccLink .nav-item a:focus, #myAccLink .nav-item a:active{
      background: #FF962C 0% 0% no-repeat padding-box !important;
      color: #ffffff;
    }
    #myAccount-tabpane-myProfile .card, #myAccount-tabpane-acoountDetail .card, #myAccount-tabpane-changePassword .card{
      border:none;
      margin-left: -15px;
    }
    .accPage-head{
      color: #354957;
      font-weight: 700;
      font-size: 18px;
      line-height: 18px;
    }
    .accPlan-head{
      color: #354957;
      font-weight: 600;
      font-size: 16px;
      line-height: 16px;
      padding: 5px;
    }
    .accFeature-head{
      color: #354957;
      font-weight: 600;
      font-size: 14px;
      line-height: 16px;
      padding: 5px 5px 10px;
    }
    .accFeature-head span{
      font-weight: 200;
      padding-top: 3px;
      display: inline-block
    }
    .accPlanInnerBox{
      border-left: #CCCCCC solid 1px;
      border-right: #CCCCCC solid 1px;
      min-height: 200px;
    }
    .featureList{
      list-style: none;
      padding: 0px;
      padding: 5px 5px 10px;
      color: #000000;
      font-size: 14px;
      line-height: 22px;
    }
    .planBoxPadd{
      padding: 0 15px 0 0!important;
    }
    /* Admin Section Grid Styles */
    .configBox #tabList{
      margin-top: 0 20px;
    }

    /* Configuration Tab grid */
    .configBox {
      border-left: #EFEFEF solid 15px!important;
      border-right: #EFEFEF solid 15px!important;
    }

    .configBox #tabList {
      margin: 5px 20px 20px;
      border: #D7DBDE solid 1px;
      position: relative;
    }
    .configBox #tabList .nav-tabs{
      border-bottom: #D7DBDE solid 1px!important;
    }
    .configBox .brdBt3{
      border-bottom: none!important;
    }
    .configBox .tabButt{
      position: absolute;
      top: -62px;
      right: -3px;
    }

    /* Rediactor styles */
    .rdw-embedded-modal, .rdw-link-modal, .rdw-image-wrapper{
      height: auto!important;
    }
    .rdw-colorpicker-modal{ width: 200px!important;}
    /* Start Rediator element dropdown option from right to left */
    .rdw-popupStartRightType{
      left: unset!important;
      right: 0;
    }

    /* Editor overlap menu issue change */
    .rdw-editor-wrapper{
      position: inherit;
      z-index: 10;
    }
    .rdw-editor-main{
      height: auto!important;
      min-height: 200px;
      max-height: 200px; /* Changed for description editor height to match with uploaded file */
      position: relative;
      z-index: 0;
    }
    .rdw-option-wrapper{
      padding: 7px!important;
      margin: 0 6px!important;
    }

    .rdw-colorpicker-modal .rdw-option-wrapper{
      padding: 0px!important;
    }
    .rdw-colorpicker-modal-options{
      overflow:auto!important;
    }
    /* Added for Description wrap */
    .DraftEditor-editorContainer{
      word-break: break-all;
    }
    /* Jo Edit  HTML editor Custom Styles */
    .jodit-wysiwyg{
      height:300px !important;
      overflow: auto;
    }
    .jodit-status-bar-link{
      display:none;
    }
    .jodit-source{
      max-height: 300px!important;
      min-height: 300px !important;
      padding: 10px;
    }


    /* Popover Box Width Changes */
    .popover-body{ width: 155px;}

    /* Table Responsive Style */
    .table{
      /* table-layout: fixed; (This remove for table responsive for all device )*/
      width: 100%;
    }
    .responsiveTable {
      margin: 0 auto;
      overflow-x: auto;
      white-space: nowrap;
      width: 100%;
    }
    .responsiveTable .table{
      color: #000000;
      font-size: 14px;
      margin-bottom: 0px;
    }
    .responsiveTable .table th{
      font-weight: 600;
    }
    .responsiveTable > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th{
      border-left: #ccc solid 1px!important;
      border-right: #ccc solid 1px!important;
      position: relative;
    }

    .trashCol{ position: relative;}
    .trashCol:hover, .trashCol:focus, .trashCol:active{
      border: #DA8E34 solid 2px!important;
    }
    .delColumn{ display: none;}
    .colItem {
      border: #DDEBF5 solid 1px!important;
      padding: 10px;
    }
    .colItem:hover, .colItem:focus, .colItem:active{
      border: #DA8E34 solid 2px!important;
    }
    .trashCol:hover .delColumn {
      display: block;
    }
    .deleteCols{
      padding: 0px 3px 3px;
      background: #CCCCCC 0% 0% no-repeat padding-box;
      border-radius: 0px 0px 0px 3px;
      cursor: pointer;
      position:absolute;
      top: 0;
      right: 0;
    }
    .trashIcon{
      background: #D80606 0% 0% no-repeat padding-box;
      color: #ffffff;
      border: 1px solid #B70C0C;
      border-radius: 2px;
      opacity: 1;
      padding: 2px;
      width: 18px;
      height: 18px;
    }
    .colItem .deleteCols, .colItem .trashIcon{
      display: none;
    }

/* Media Queries */

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .nav-bar-logo{
    width: 30%;
  }
  .logo{
    height: 22px;
    width: auto;
  }
  .searchEntity input[type=text]{
    width: 100px;
  }
  .topCardMob{
    margin-bottom: 15px;
  }
  .mobCenter{
    text-align: center!important;
  }
  .mobLeft{
    text-align: left!important;
  }
  /*Remove Extra Padding*/
  .remPaddRight{ padding-right: 15px!important;}
  .MyAccMidBox{
    margin: 15px 10px 15px 9px;
  }
  .modal-dialog {
    min-width: 300px;
  }
  .toDoList{
    width: 100%!important;
  }
  .dontShow{ bottom: 2px!important;}
  .planBoxPadd{
    padding: 0 15px!important;
  }
  .planBoxMrgBot{
    margin-bottom : 15px;
  }
  .btn-padd{
    margin-bottom: 5px;
  }
  .settingDropDownSec .dropdown-menu {
    transform: translate(4px, 45px)!important;
  }
  /* .settingDropDownSec .caretSign{
    right: unset;
    left: 10px;
  } */
  .addMore div{
    top: 10px!important;
    right: 0px!important;
  }
  .mobW100{
    width: 100%!important;
  }
  .ui-navbar{
    height: 95px!important;
}
  .mobSubNav{
    position: absolute;
    right: 15px;
    top: 50px;
  }
  .mobSubNav .mr-3, .mobSubNav .mr-1{
    margin-right: 0px!important;
  }
  .leftOpenMenuPos {
    top: 0!important;
    right: 5px!important;
    z-index: 99;
  }
  .leftMenuDrawer{
    background: none!important;
  }
   .notifyWrapper{
    left: -105px!important;
  }
  .notifyWrapper .triangle{
    left: 275px!important;
  }
  .w-50{
    width: 100%!important;
  }
  .navLeftBx-BrdLR{
    min-height: auto!important;
  }

  /* Grid pagination*/
  .gridPageDisplayLabel{
    float: none!important;
  }
  .ui-pagination{
    display: grid;
    justify-content: center;
  }
  /* Modal Footer Button for mobile*/
  .modalFooterSec .btn-width-33-33{
    font-size: 12px!important;
    height: 48px;
  }
  .modalFooterSec a{
    width: 33.33%!important;
    margin: 0px!important;
  }
  .modalFooterSec a .btn-width-33-33{
    width: 100%!important;
  }
  .table-responsive{
    overflow-y: auto!important;
  }

  /* Detail page style for opp, task */
  #detailPageView .remPadLR{
    padding-left:0px!important ;
    padding-right:0px!important ;
  }
  #detailPageView .entityGridView{
    padding: 5px!important;
  }
  .dataCols, .dataAllCols{ padding: 5px;}
  .dataAllCols .form-control{
    width: 80px!important;
  }
  .bd-highlight{ background: #EFEFEF;}
  /* mob padding */
  .mobPadLt-0{ padding-left: 0px!important;}
  .mobPadRt-0{ padding-right: 0px!important;}

  /* mob padding */
  .mobMrgLt-0{ margin-left: 0px!important;}
  .mobMrgRt-0{ margin-right: 0px!important;}
  .mobMrgTp-0{ margin-top: 0px!important;}

  /*Hide Display for mobile*/
  .mobD-none{display: none;}
  .mobD-block{display: block!important;}

  /*Margin for mobile view only*/
  .mb10{ margin-bottom: 10px;}
  .mobTp15{ margin-top: 15px;}

  /* Lead mobile phone icon*/
  .addMore_donation_phoneTypes{
    margin-top: -15px;
    margin-right: -8px;
    position: relative!important;
  }
  .addMore_donation_phoneTypes svg, .addMore svg{
    font-size: 10px!important;
  }

  .exportMenuDropdown .caretSign{
    right: unset;
    left: 92px!important;
  }
  .configBox .tabButt{
    top: 0px!important;
  }

  /*Report resposive style*/
  .reportDateFilterBox .dateRangeWidth{
    width: 175px!important;
    height: 35px!important;
  }
  .reportDateFilterBox button{
    font-size: 12px!important;
    padding: 5px 5px !important;
    margin: 3px!important;
  }
  .btnSpace{ margin: 3px!important;}
  .vehSummarySec .mobRemBoxPad{
    padding-left: 0px!important;
    padding-right: 0px!important;
    margin-top: 10px;
  }
  .mrgPullLeft35{
    margin-left: 0px!important;
  }
  .OppStageBox .iconAlign-fa{
    position: absolute!important;
    top: 15px!important;
  }
  .mobBtnFont button{
    font-size: 12px!important;
  }
  .mobBtnWidthAuto{
    width: auto!important;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .nav-bar-logo{
    width: 30%;
  }
  .logo{
    height: 22px;
    width: auto;
  }
  .searchEntity input[type=text]{
    width: 125px;
  }
  /*Remove Extra Padding*/
  .remPaddRight{ padding-right: 15px!important;}
  .MyAccMidBox{
    margin: 15px 10px 15px 9px;
  }
  .modal-dialog {
    min-width: 450px;
  }
  .settingDropDownSec .dropdown-menu {
    transform: translate(-115px, 45px)!important;
  }
  .topCardMob{
    margin-bottom: 15px;
  }
  /* Do data View style */
  .noItemsViewContainer{
    width: 100%!important;
}
  /* Contact info vendor details*/
  .contactInfoSec .addressSearch{
    width: 90%;
  }
  .contInfoAddressSec .mt-minus42{
    margin-top: 4px!important;
  }
  .contInfoAddressSec .addressSearch{
      right: 0!important;
      position: relative!important;
      padding-bottom: 15px;
  }
  .app-content .searchBox input[type="text"]{
    width: 100%!important;
  }
  .searchIcon_addresses{
    right: 0px!important;
  }
  .mobDFlex{display: inline-flex;}
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .nav-bar-logo{
    width: 30%;
  }
  .logo{
    height: 30px;
    width: auto;
  }
  .searchEntity input[type=text]{
    width: 200px;
  }
  .remPadd .remPadLeft{
    padding-left: 5px;
  }
  .remPadd .remPadRight{
    padding-right: 5px;
  }
  .remPadd .remPadLeftNew{
    padding-left: 0px;
  }
  .remPadd .remPadRightNew{
    padding-right: 0px;
  }
  /*Remove Extra Padding*/
  .remPaddRight{ padding-right: 0px!important;}
  .MyAccMidBox{
    margin: 25px 20px 25px 5px;
  }
  .modal-dialog {
    min-width: 500px;
  }
  .settingDropDownSec .dropdown-menu {
    transform: translate(-134px, 45px)!important;
  }
  .topCardMob{
    margin-bottom: 15px;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .nav-bar-logo{
    width: 45%;
  }
  .logo{
    height: 30px;
    width: auto;
  }
  .searchEntity input[type=text]{
    width: 200px;
  }
  .remPadd .remPadLeft{
    padding-left: 5px;
  }
  .remPadd .remPadRight{
    padding-right: 5px;
  }
  .remPadd .remPadLeftNew{
    padding-left: 0px;
  }
  .remPadd .remPadRightNew{
    padding-right: 0px;
  }
  /*Remove Extra Padding*/
  .remPaddRight{ padding-right: 0px!important;}
  .MyAccMidBox{
    margin: 25px 20px 25px 5px;
  }
  .modal-dialog {
    min-width: 500px;
  }
  .settingDropDownSec .dropdown-menu {
    transform: translate(-115px, 45px)!important;
  }
  .topCardMob{
    margin-bottom: 0px;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .searchEntity input[type=text]{
    width: 300px;
  }
  .remPadd .remPadLeft{
    padding-left: 5px;
  }
  .remPadd .remPadRight{
    padding-right: 5px;
  }
  .remPadd .remPadLeftNew{
    padding-left: 0px;
  }
  .remPadd .remPadRightNew{
    padding-right: 0px;
  }
  /*Remove Extra Padding*/
  .remPaddRight{ padding-right: 0px!important;}
  .MyAccMidBox{
    margin: 25px 20px 25px 5px;
  }
  .modal-dialog {
    min-width: 750px;
  }
  .modal-preview {
    max-width: 90vw !important;
    min-width: 80vw !important;
    margin: 0;
  }
  .settingDropDownSec .dropdown-menu {
    transform: translate(-115px, 45px)!important;
  }
  .topCardMob{
    margin-bottom: 0px;
  }
}

@media (min-width: 992px){
  .modal-lg, .modal-xl {
    max-width: 85vw!important;
  }
  .modal .modal-fullwidth{
    width: 95%!important;
    max-width: 95%!important;
  }
  .modal .modal-fullscreen{
    width: 100%!important;
    max-width: 100%!important;
    height: 100vh;
  }
}

.pointer{ cursor: pointer; }

.tooltipClose{ margin-left: 10px; color:#fff; }



/* Global tooltips Styles*/
.globalTooltip .tooltip-inner{
  background-color: #2C81C1 !important;
  max-width: 250px!important;
}
.globalTooltip.bs-tooltip-bottom .arrow::before{
  border-bottom-color: #2C81C1!important ;
}
.globalTooltip.bs-tooltip-left .arrow::before{
  border-left-color: #2C81C1!important ;
}
.globalTooltip.bs-tooltip-right .arrow::before{
  border-right-color: #2C81C1!important ;
}
.globalTooltip.bs-tooltip-top .arrow::before{
  border-top-color: #2C81C1!important ;
}

.fileSize {
  position: absolute;
  bottom: 0;
}

.posRelative {
  position: relative;
}
.posIntial{
  position: initial!important;
}

.attachmentTitle{
  word-wrap: break-word;
}
.redIcon-square{
  background-color: #D60915;
  border-radius: 0px;
  padding: 5px 7px 8px;
}
.redIcon-radius{
  background-color: #D60915;
  border-radius: 2px;
  padding: 0px 5px 6px;
}
.greenPlusCricle{
  border-radius: 100%;
  border:#3F9D19 solid 2px;
  padding: 2px 4px 4px;
}
.breakAll{
  word-break: break-all;
}
.breakWord{
  overflow-wrap: break-word;
}
.greenText {
  color: #3F9D00;
}

/* .nav-link.active
{
  background: #FF962C 0% 0% no-repeat padding-box !important;
} */
.nav-pills .nav-link
{
  border-radius: 0px!important;
}
.custom-showmore {
  margin-bottom: 10px;
  color: blue;
  cursor: pointer;
  margin-left: 10px;
}

.selected-files {
  border: 1px solid green !important;
}

.documents {
  min-height: 100px;
  max-height: 300px;
  overflow-y: auto;
  width: 1000px;
  margin-bottom: 10px;
}

.file-upload.nav-link {
  color: black !important
}

.file-upload.nav-link.active {
  background: green !important;
  color: white !important
}

.Purple {
  color: Purple;
  font-size: 18px;
  font-weight: 600;
}

.Yellow {
  font-size: 18px;
  font-weight: 600;
  color: yellow;
}

.Red {
  font-size: 18px;
  font-weight: 600;
  color: red;
}

.Blue {
  font-size: 18px;
  font-weight: 600;
  color: blue;
}

.Green {
  font-size: 18px;
  font-weight: 600;
  color: green;
}

.Silver {
  font-size: 18px;
  font-weight: 600;
  color: #C0C0C0;
}

.Navy {
  font-size: 18px;
  font-weight: 600;
  color: #000080;
}

.rtf {
  z-index: 99 !important;
}
.preLine{
  white-space: pre-line;
}
.upperCase{
  text-transform: uppercase;
}

/* To Do List Style */
.toDoList .card-header{
	padding: 6px 20px!important;
  background-color: #253342!important;
  color: #ffffff;
	border-bottom: none;
	font-size: 16px;
  font-weight: 600;
  line-height: 27px;
}

.toDoList{
  position: fixed!important;
  bottom:0;
  right: 0;
  width: 60%;
  z-index: 9999;
  border:none;
}
.remToDoListPadd{
  padding: 0px;
  border:#f5f5f5 solid 1px;
}
.toDolistPadd{
  padding: 20px;
}
.brdToDoList{
  border:#f5f5f5 solid 1px;
}
.minimizeList{
  position: absolute;
  right: 15px;
  display: inline-block;
  color: #fff;
  font-weight: 200;
  font-size: 14px;
}
.minimizeList:hover{
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  cursor: pointer;
}
.listCheck{
  list-style: none;
  padding: 0;
  margin: 0;
}
.listCheck li{
  padding: 6px;
}
.inactive-TodoList{
  color: #666666;
  font-size: 16px;
  font-weight: 600;
}
.inactive-TodoList .FaCheck{
  color: #D3D3D3;
}
.active-TodoList{
  color: #3F9D00;
  font-size: 16px;
  font-weight: 600;
}
.active-TodoList .FaCheck{
  color: #3F9D00;
}
.dontShow{ padding: 45px 0 0 8px;}
.dontShow a{ color:#D3D3D3;}pos
.dontShow a:hover{ color:#666; text-decoration: none; opacity: 0.8;}
.blankDivToDo{ height: 40px;}

/* ----------- Error Styles ---------------------*/
.tab-content .errorBox{ padding: 0 10px;}
#entityFormSec .errorBox{ margin: 0; padding: 0;}

.errorSummary li::before{
  content:unset;
}
.errorSummary p{
  position: relative!important;
  top: unset!important;
  left: unset!important;
}
/* ------------------------------------------------*/
/* ----------- Pricing Page CSS -------------------*/
.pageBox{
  width: 100%;
  margin: 0 auto;
  padding: 40px 60px 150px;
}
.titleHeading{
  color: #000000;
  font-size: 26px;
  font-weight: 700;
  line-height: 49px;
  padding-bottom: 10px;
}
.textPara{
  color: #707070;
  font-size: 16px;
  line-height: 22px;
}
.plan-footer{
  position: fixed;
  bottom: 0;
  height: auto;
  width: 100%;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 10px #00000029;
  opacity: 1;
  padding: 10px 70px 30px;
}
.extraMrgLeft{
  margin-left: -20px!important;
}
.pageBox-footer{
  width: 100%;
  margin: 0 auto;
  padding: 5px 10px;
}
.plan-price{
  color: #454545;
  font-size: 40px;
  font-weight: 600;
}
.plan-price span{
  position: relative;
  top: -15px;
  font-size: 20px;
}
.addCartSec{
  background-color: #EEEEEE;
  padding: 0;
  width: 120px;
}
.incrementBox{
  width: 60px;
  border-left: #CCCCCC solid 1px;
  border-right: #CCCCCC solid 1px;
  border-top: none;
  border-bottom: none;
  background-color: #EEEEEE;
  text-align: center;
}
.btn-minus{
  border: none;
  width: 30px;
  height: 35px;
  text-align: center;
}
.btn-plus{
  border: none;
  width: 30px;
  height: 35px;
  text-align: center;
}
.verticle-top{ vertical-align: top;}




/* ------ Error Type CSS Style ----------*/
.error-type-401{
  background-repeat: no-repeat;
  background-position: 0 -135px;
  background-size: 200px 800px;
  display: block;
  margin: 50px auto 20px;
  height: 130px;
  width: 200px;
}
.error-type-404{
  background-repeat: no-repeat;
  background-position: 0 -275px;
  background-size: 200px 800px;
  display: block;
  margin: 50px auto 20px;
  height: 130px;
  width: 200px;
}
.error-type-500{
  background-repeat: no-repeat;
  background-position: 0 -413px;
  background-size: 200px 800px;
  display: block;
  margin: 50px auto 20px;
  height: 130px;
  width: 200px;
}
.error-type-503{
  background-repeat: no-repeat;
  background-position: 0 -550px;
  background-size: 200px 800px;
  display: block;
  margin: 50px auto 20px;
  height: 130px;
  width: 200px;
}

.error-type{
  margin: 30px;
}
.ErrorTypeMsg{
  color: #333;
  font-size: 22px;
  font-weight: 400;
}

/* Report Styles */
.helpInfo{
  position: relative;
  top:-5px;
}
.pageHead{
  color: #334959;
  font-size: 20px;
  line-height: 27px;
  font-weight: 600;
}
.dateSelect{
  background: #FFFFFF 0% 0% no-repeat padding-box;
  height: 42px;
  line-height: 40px;
  border:#fff solid 1px;
  color:#454545;
  font-size: 14px;
  padding: 0;
}
.reportBtnBox{
  background-color: #334959;
  border-radius: 4px;
  height: 37px;
  width: 40px;
  position: relative;
  color: #ffffff;
  top: 3px;
  border: none;
}
.IconAlignVert{
  position: relative;
  top:-2px;
}
.btnSpace{
  margin: 0 5px;
}
.reportSecBox{
  background: #FFFFFF 0% 0% no-repeat padding-box;
  /*border: 1px solid #E9E9E9;
  border-radius: 3px;*/
  opacity: 1;
  padding:10px;
}
.reportInnerBox{
  /*border: 1px solid #CFCFCF;
  border-radius: 3px;*/
  padding:10px;
}
.grapSec{
  background-color: #EFEFEF;
  height: 250px;
  text-align: center;
  display: block;
  padding: 145px 10px 10px;
  font-weight: 600;
  color: #000000;
}
.reportConfigBox{
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000034;
  border: 1px solid #E9E9E9;
  border-radius: 3px;
  opacity: 1;
  padding: 10px;
}
.reportCardSec{
  background: #334959 0% 0% no-repeat padding-box;
  opacity: 1;
  line-height: 30px;
  color: #ffffff;
  padding-left: 10px;
}
.configBoxSec{
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border-radius: 3px 3px 0px 0px;
  border:#cfcfcf solid 1px;
  opacity: 1;
}
.configDataHead{
  color: #354957;
  font-size: 14px;
  font-weight: 600;
  padding: 10px;
  position: relative;
}
.configDivider{
  border-right: #cfcfcf solid 1px;
}
.configRemove a{
  position: absolute;
  right: 20px;
  color: #D60000;
  font: 14px!important;
  text-decoration: none;
}
.configRemove a:hover{
  text-decoration: underline;
  color: #D60000;
  font: 14px!important;
}
.configAdd a{
  position: absolute;
  right: 20px;
  color: #659900;
  font: 14px!important;
  text-decoration: none;
}
.configAdd a:hover{
  text-decoration: underline;
  color: #659900;
  font: 14px!important;
}
.configDataBx{
  background: #F2F2F2 0% 0% no-repeat padding-box;
  border: 1px solid #CFCFCF;
  opacity: 1;
}
.dataSwap{
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 10px #00000026;
  border-radius: 3px;
  opacity: 1;
  padding: 6px;
  position: relative;
}
.dataSpaceLeft{
  padding: 5px 0 5px 15px;
}
.dataSpaceRight{
  padding: 5px 15px 5px 0;
}
.dataSwap .arrow{
  width: 20px;
  text-align: center;
}
.dataSwap .minus{
  position: absolute;
  right: 20px;
}
.ReportDateRangeFilter{
  position:absolute;
  z-index: 90;
  width: 97.8%;
}
.reportDateFilterBox{
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000034;
  border: 1px solid #E9E9E9;
  opacity: 1;
  padding:10px 15px;
}
.dateRangeWidth{
  width: 275px;
  background-color: #EFEFEF;
  padding: 0 12px;
}
.btn-padd{
  padding: 6px 8px!important;
}
.arrow-up {
  width: 0;
  height: 0;
  /* box-shadow: 0px 3px 6px #00000034; */
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #FFFFFF;
}
.arrow-align{
  position:relative;
  top: 1px;
  left: 65%;
}
#setting-nested-dropdown{
  background-color: transparent;
  border:none;
  padding: 0px;
  position: relative;
  top: -1px;
}
#setting-nested-dropdown::after{
  display: none!important;
}
.settingDropDownSec{ position: relative;}
.settingDropDownSec .caretSign{
  position: absolute;
  right: 10px;
}
.settingDropDownSec .caretSignDesign{
  color: #FFFFFF;
}
.settingDropDownSec .dropdown-menu {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 6px #00000029;
  border-radius: 3px;
  opacity: 1;
  border: none;
  padding: 0;
}
.setting-menu-item{
  color: #000000!important;
  padding: 8px 20px!important;
  font-size: 14px!important;
}

.filterBtnBox{
  width: 650px;
  height: auto;
  position: absolute;
  right: 70px;
  z-index: 99;
}
.filterBtnBox .arrow-align{
  right: -325px;
  left: unset;
}
.filterField{
  width: 100%;
  background-color: #EFEFEF;
}

/* OverFlow Style */
.overflow-x-auto{
  overflow-x: auto;
}
.selectedManageClm{
  width: auto!important;
  min-width: 100%;
}
/* Campaign Email Report Dashboard */
.reportCampBoxNew{
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #E9E9E9;
  border-radius: 3px;
  opacity: 1;
}
.adjustPadd{ padding-left: 5px!important; padding-right: 5px!important;}
.reportCampBox{
  width: 11.333%;
  float: left;
  margin: 15px 10px 10px 5px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #E9E9E9;
  border-radius: 3px;
  opacity: 1;
}
.campTitle{
  color: #454545;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  height: 45px;
  padding-top: 5px;
}
.campReportCount{
  color: #454545;
  font-size: 30px;
  font-weight: 600;
  line-height: 39px;
  padding-bottom: 5px;
  text-align: center;
}
.campGraphBox{
  /* width: 48.8%;
  float: left;
  margin: 10px 10px 10px 5px; */
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #E9E9E9;
  border-radius: 3px 3px 0px 0px;
  opacity: 1;
}
.campGrapBoxHead{
  background: #FAFAFA 0% 0% no-repeat padding-box;
  border-bottom: 1px solid #E2E2E2;
  opacity: 1;
  padding: 10px 20px;
}
.campGrapBoxHead a{
  color: #334959;
  font-size: 16px;
  text-decoration: underline;
}
.campGrapBoxHead a:hover{
  color: #334959;
  font-size: 16px;
  text-decoration: none;
}
.size-2em{
  height: 2em;
  width: 2em;
}

/* Multi-select value box styles */
.inputGray .css-1rhbuit-multiValue{
  border:#fff solid 2px!important;
  border-radius: 100px!important;
  box-shadow: 0px 3px 6px #00000029;
  background: #ffffff!important;
  position: relative;
  top: -1px;
}
.css-1rhbuit-multiValue div:first-child{
  background:#FFFFFF;
  color: #000000;
  border:none;
  margin: 3px;
}
.css-1rhbuit-multiValue div:nth-child(2){
  background:#FFFFFF;
  border:none;
  margin: 3px;
  color:#CCCCCC;
}
.css-1rhbuit-multiValue div:nth-child(2) svg{
  width: 18px!important;
  height: 18px!important;
}
.textareaHt{
  height: 120px!important;
}

/* Detail Page email and phone dropdown styles*/
.popover-body .selectInputField{
  border: #DDDDDD solid 1px;
}
.popover-body .selectInputField div:first-child{
  background: #fff;
  border: #fff solid 1px;
}
.popover-body .selectInputField div:nth-child(2){
  background: #FFFFFF;
  border: #FFFFFF solid 1px;
}
.popover-body .react-select__control{
  height: 35px;
}
.popover-body .react-select__value-container{
  height: 35px;
  line-height: 35px;
}
.popover-body .react-select__indicators{
  height: 35px;
  line-height: 35px;
}

/* Swap row styles */
.swapRow{
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 10px #00000026;
  border-radius: 3px;
  opacity: 1;
}
.leftBrdSec{
  border-left: #2C81C1 solid 10px;
  border-radius: 3px 0 0 3px;
}
.shiftLeft{
  position: relative;
  margin-left: -15px;
}
.shiftRight{
  position: relative;
  margin-right: -15px;
}

/* File accept format styling */
.inlinePopUpForm .accFormat{
  padding-left: 15px;
}
.formatTextItalic{
  font-style: italic;
}

/* form checkbox class styles */
.form-check-input{
  margin-top: 0.4rem!important;
}

.tdFilter{width: auto!important;min-width: 120px;}
.addMakes .tdFilter, .addModels .tdFilter{width: auto!important;min-width: 80px;}


#canvasDiv .dataCols, #canvasDiv .dataAllCols{
  height: auto!important;
}

/* System Setting Nav Styles */
.leftMenuHeight{
  min-height: 100vh;
}
.leftMenuDrawer{
    background: #F79126 0% 0% no-repeat padding-box;
    width: 40px;
    height: 40px;
    position: absolute;
    border-radius: 100px;
}
.leftOpenMenuPos{
    top: 15px;
    right: -16px;
    z-index: 99;
}
.leftHideMenuPos{
  top: 75px;
  left: -20px;
  z-index: 99;
}
.iconToHide{
    position: relative;
    top: 6px;
    left: 8px;
    font-size: 22px;
    color: #ffffff;
}
.iconToShow{
  position: relative;
  top: 6px;
  left: 8px;
  font-size: 22px;
  color: #ffffff;
}
.show{ display: inline-block;}
.hide{ display: none;}
.navBxMrgTp{
   margin-top: -15px;
}
.navBxMrgBt50Minus{
  margin-bottom: -50px;
}
.navLeftBx{
  margin: 0 -15px;
  height: 100%;
}
.navLeftBx-BrdRt{
  border-right: 1px solid #CFCFCF;
}
.navLeftBx-BrdLR{
  border-left: 1px solid #CFCFCF;
  border-right: 1px solid #CFCFCF;
  min-height: calc(100vh - 120px);
}
.menuPullLeft{ padding-left: 30px;}
.left-menu-head{
  background: transparent linear-gradient(271deg, #253342 0%, #253342 100%) 0% 0% no-repeat padding-box;
  padding: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
.leftMenu-List ul{ padding: 0;margin: 0;}
.leftMenu-List ul > li{ list-style: none; padding: 12px 10px; border-bottom: #CFCFCF solid 1px; font-size: 13px;}
.leftMenu-List ul > li:hover, .leftMenu-List ul > li:focus, .leftMenu-List ul > li:visited{ background-color: #25334219; color: #000000; cursor: pointer;}
.leftMenu-List ul .active{ background-color: #25334219; color: #454545; cursor: pointer; border-bottom: #CFCFCF solid 1px;}
.leftMenu-List ul >  li > a:hover, .leftMenu-List ul > li > a:focus, .leftMenu-List ul > li > a:visited{ background-color: #25334219; color: #000000; cursor: pointer;}
/* -------------- Sticky Footer Section --------------
  ----------------------------------------------------*/

  .stickyFooterMain{
    background-color: #253342;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 100;
    width: 100%;
    height: 40px;
    line-height: 40px;
    /* border-top: #E9E9E9 solid 10px; */
  }
  .stickyFooterMain svg{ width: auto;}


/* Added style for incremental section */
  .remEleBtn{
    background-color: #D60000;
    width: 24px;
    height: 24px;
    text-align: center;
    border-radius: 2px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    top: -3px;
    margin-right: 10px;
  }
  .remEleBtn svg{
    font-size: 15px;
    z-index: 999;
    opacity: 1;
    color: #fff;
  }
  .addEleBtn{
    background-color: #3F9D00;
    width: 24px;
    height: 24px;
    text-align: center;
    border-radius: 2px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    top: -3px;
  }
  .addEleBtn svg{
    font-size: 15px;
    z-index: 999;
    opacity: 1;
    color: #fff;
  }

  /* Date Range month, year, hr, min and sec field width overwrite */
  .daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect{
    width: 60px!important;
  }
  .daterangepicker select.monthselect,.daterangepicker select.yearselect{
    width: 50%!important;
  }
  .rtf--mb{
    width: 48px!important;
    height: 48px!important;
  }
  .entityLink{
      color: #4F96CB!important;
      text-decoration: none!important;
  }

  .linkEdit {
    color: #354957;
    text-decoration: none;
  }
  .linkEdit :hover{
    color: #354957;
    text-decoration: none;
  }

  /*Switcher CSS*/
.react-switch.disabled {
  opacity: 0.65;
  pointer-events: none;
}
.switcher-largetoggle .react-switch-bg{
   width: 105px!important;
 }
.switcher-largetoggle .react-switch-handle{
   transform: translateX(77px)!important;
 }
.switcher-largetoggle .checkedSwitcher {
  right: -20px!important;
  position: relative!important;
}
.switcher-largetoggle .uncheckedSwitcher{
  left: -60px!important;
  position: absolute!important;
}
.expandTr{
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #CCCCCC;
  opacity: 1;
}
.expandTr a{
  color:#3F9D19;
  font-size: 14px;
  text-decoration:none;
}
.expandTr a:hover{
  text-decoration:underline;
  color:#3F9D19;
}

.vehicleDrawerForm
{
  display: inline-block;
  width: 100%;
}
dl, ol, ul{
  margin-top: 5px;
  margin-bottom: 5px;
}
.tagHeight60{
  height: 60px!important;
}
.linkPopup a{
  color: #3F9D19;
  text-decoration: none;
}
.linkPopup a:hover {
  color: #3F9D19;
  text-decoration: none;
}

.inputGray .form-control-view {
  background: #EFEFEF;
  border-radius: 0px;
  border: #EFEFEF solid 1px;
  color: #000000;
  font-size: 14px;
  opacity: 1;
  height: auto;
  line-height: 42px;
  min-height: 42px;
  padding: 0px 10px;
}
.view-badge {
  background:#FFFFFF;
  border-radius:15px;
  padding:5px;
  margin-right: 8px;
}
.vehicleLeftMenu ul > li{
  padding: 0px!important;
}
.vehicleLeftLink{
  display: inline-block;
  padding: 10px 10px;
  width: 100%;
  text-decoration: none;
  color: #000000;
}
.vehicleLeftLink:hover{
  text-decoration: none;
}

/* Role dropdown height fix */
#UserForm_roleId{
  z-index: 10000;
}
/*Quick Search form equal padding around field*/
.form-group-equal{
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Switcher Text yes/No styles */
.switcher-text-yes {
  color: #ffffff;
  position: relative;
  top: 3px;
  left: 12px;
  font-size:14px;
}
.switcher-text-no {
  color: #000000;
  position: relative;
  top: 3px;
  left: 5px;
  font-size:14px;
}
/* Switcher Text active/in-active styles */
.switcher-text-active {
  color: #ffffff;
  position: relative;
  top: 3px;
  left: 15px;
  font-size: 14px;
}
.switcher-text-inactive {
  color: #000000;
  position: relative;
  top: 3px;
  left: -15px;
  width: 70px;
  font-size: 14px;
}

/*Create Vendor Contacts - Unable to select specific owner*/
#CrmContactForm_owner{
  z-index: 99;
}
/* Switcher Text   status-Can Email/Phone styles */
.switcher-text-can {
  color: #ffffff;
  position: relative;
  top: 3px;
  width:100px;
  left: 20px;
}

.switcher-text-cannot {
  color: #ffffff;
  position: relative;
  top: 3px;
  left: -55px;
  width: 130px;
}
/* Switcher Text Allow SMS styles */
.switcher-text-sms {
  color: #ffffff;
  position: relative;
  top: 3px;
  width:100px;
  left: 12px;
}
.switcher-text-smsnot {
  color: #ffffff;
  position: relative;
  top: 3px;
  left: 10px;
  width: 130px;
}
/* End */

.radioContainer{
  padding-right: 12%;
  display: inline-block;
}
.radioInputContainerClass {
  padding: 7px 0px;
}
.radioContainer input[type=radio]{
  position: relative;
  top: 2px;
  margin-right: 6px;
}
.underConstruction{
  background-color: #2C81C1;
  border-radius: 10px;
  padding: 6px 10px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
#tabelCust thead{
  background-color: #EFEFEF;
  color: #000000;
  font-size: 12px;
}
#tabelCust > thead > tr > th{
  border-left: #CCCCCC solid 1px!important;
  border-right: #CCCCCC solid 1px !important;
}
#tabelCust .oddRow{
  background-color: #F9F9F9;
}
#tabelCust .filterBox, #tabelCust .filterSelect{
  border: #ccc solid 1px;
  width: 100%;
  line-height: 30px;
  height: 30px;
  padding: 0 5px;
  color: #454545;
}
.navSelectBx select{
  border: #CFCFCF solid 1px;
  border-radius: 3px;
  line-height: 24px;
  height: 24px;
  padding: 0 5px;
}
.paginationBox{
  border: #2C81C129 solid 1px;
  padding: 2px 8px;
  color: #2C81C1;
  font-size: 12px;
}
.paginationText{
  font-size: 12px;
  padding: 2px 8px;
  color: #454545;
}
.paginationArrow{
  font-size: 14px;
  color:#2C81C1;
  padding: 2px 8px;
  position: relative;
  top:-2px;
}
.fileUploadPlaceHolderContainer {
  color: #A9A9A9;
  font-size: 12px;
  text-align: center;
}
.hideField {
  display: none;
}

/* Blue Section Box */
.blueSectionBrd{
  border: #253342 solid 2px;
  background-color: #EFEFEF;
}
.blueSectionHeader{
  background-color: #253342;
  padding: 5px;
}
.rwEditor-white{
  border:#ffffff solid 1px;
  background-color: #ffffff;
  width: 100%;
  height: 80px;
  padding: 10px;
}

.autoCompleteAddress_reset{
  position: absolute;
  top: -2px;
  right: 0px;
  padding: 1px 5px !important;
}
.autoCompleteAddress_pickup_reset{
  position: absolute;
  top: -2px;
  right: 0px;
  padding: 1px 5px !important;
}
.linkRed {
  color: #D60000;
  text-decoration: none;
}
.linkRed :hover{
  color: #D60000;
  text-decoration: none;
}
.autoCompleteAddress_reset{
  position: absolute;
  top: -2px;
  right: 0px;
  padding: 1px 5px !important;
}
.autoCompleteAddress_pickup_reset{
  position: absolute;
  top: -2px;
  right: 0px;
  padding: 1px 5px !important;
}
.linkRed {
  color: #D60000;
  text-decoration: none;
}
.linkRed :hover{
  color: #D60000;
  text-decoration: none;
}
/*Remove card body padding*/
.remCardBodyPadd .card-body{
  padding: 0px !important;
}

.brdSeprator li{
  border-bottom: #DBDBDB solid 1px;
}
.brdSeprator li:last-child{
  border-bottom:none;
}

.brdSeprator_vehicle li:not(:last-child){
  border-bottom:none;
}
.searchCustomer_loadContainer{
  width: 5%;
  display: flex;
  justify-content: center;
  align-items: center;}

.btnMoveTopLift{
  position: absolute;
  top: -46px;
  right: 10px;
}

/* Advance Search contact Info column mousehover background color change */
.colHighlights:hover{
  background-color: #D4E6CC;
}

.react-time-picker__wrapper{
  border: none !important;
  padding-top: 0px;
}
#StateDisclosureForm_statePicklistId{
  z-index: 99;
}

.readMore{
  position:absolute;
  right:0px;
  top:10px;
}

.escAssigned .readMore{
  right:6px!important;
}

.tabBoxMrg .card-header-tabs{
  margin:0px;
}

 #EscalationForm_assignedTo div:first-child,#EscalationForm_assignedTo div:nth-child(2) {
    font-size: 14px;
   text-transform: capitalize;
 }

/* Escalation Assignment Default Rules, Manage Escalation Assignment Rules and
Manage Escalation Issue Type bottom drawer dropdown field option overlapping issue */

#EscalationDefaultRuleEditForm_fromRole .react-select__menu, #EscalationDefaultRuleEditForm_toRole .react-select__menu, #EscalationRuleEditForm_fromOrg .react-select__menu, #EscalationRuleEditForm_fromLocation .react-select__menu,
#EscalationRuleEditForm_fromRole .react-select__menu, #EscalationRuleEditForm_toOrg .react-select__menu, #EscalationRuleEditForm_toLocation .react-select__menu, #EscalationRuleEditForm_toRole .react-select__menu,
#EscalationTypeEditForm_objectType .react-select__menu{
  position: relative;
  z-index: 10000;
  color: #ffffff;
	border-bottom: none;
	font-size: 16px;
  font-weight: 600;
  line-height: 27px;
}
#CrmDocumentConfigurationForm_type .react-select__menu,
#CrmDocumentConfigurationForm_picklistCatId .react-select__menu,
#type1152 .react-select__menu {
  position: relative;
  z-index: 10000;
	border-bottom: none;
  line-height: 27px;
}

.toDoList{
  position: fixed!important;
  bottom:0;
  right: 0;
  width: 60%;
  z-index: 9999;
  border:none;
}
.remToDoListPadd{
  padding: 0px;
  border:#f5f5f5 solid 1px;
}
.toDolistPadd{
  padding: 20px;
}
.brdToDoList{
  border:#f5f5f5 solid 1px;
}
.minimizeList{
  position: absolute;
  right: 15px;
  display: inline-block;
  color: #fff;
  font-weight: 200;
  font-size: 14px;
}
.minimizeList:hover{
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  cursor: pointer;
}
.listCheck{
  list-style: none;
  padding: 0;
  margin: 0;
}
.listCheck li{
  padding: 6px;
}
.inactive-TodoList{
  color: #000000;
  font-size: 16px;
  font-weight: 600;
}
.inactive-TodoList .FaCheck{
  color: #D3D3D3;
}
.active-TodoList{
  color: #3F9D00;
  font-size: 16px;
  font-weight: 600;
}
.active-TodoList .FaCheck{
  color: #3F9D00;
}
.dontShow{ padding: 45px 0 0 8px;}
.dontShow a{ color:#D3D3D3;}pos
.dontShow a:hover{ color:#666; text-decoration: none; opacity: 0.8;}
.blankDivToDo{ height: 40px;}

/* ----------- Error Styles ---------------------*/
.tab-content .errorBox{ padding: 0 10px;}
#entityFormSec .errorBox{ margin: 0; padding: 0;}

.errorSummary li::before{
  content:unset;
}
.errorSummary p{
  position: relative!important;
  top: unset!important;
  left: unset!important;
}
/* ------------------------------------------------*/
/* ----------- Pricing Page CSS -------------------*/
.pageBox{
  width: 100%;
  margin: 0 auto;
  padding: 40px 60px 150px;
}
.titleHeading{
  color: #000000;
  font-size: 26px;
  font-weight: 700;
  line-height: 49px;
  padding-bottom: 10px;
}
.textPara{
  color: #707070;
  font-size: 16px;
  line-height: 22px;
}
.plan-footer{
  position: fixed;
  bottom: 0;
  height: auto;
  width: 100%;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 10px #00000029;
  opacity: 1;
  padding: 10px 70px 30px;
}
.extraMrgLeft{
  margin-left: -20px!important;
}
.pageBox-footer{
  width: 100%;
  margin: 0 auto;
  padding: 5px 10px;
}
.plan-price{
  color: #454545;
  font-size: 40px;
  font-weight: 600;
}
.plan-price span{
  position: relative;
  top: -15px;
  font-size: 20px;
}
.addCartSec{
  background-color: #EEEEEE;
  padding: 0;
  width: 120px;
}
.incrementBox{
  width: 60px;
  border-left: #CCCCCC solid 1px;
  border-right: #CCCCCC solid 1px;
  border-top: none;
  border-bottom: none;
  background-color: #EEEEEE;
  text-align: center;
}
.btn-minus{
  border: none;
  width: 30px;
  height: 35px;
  text-align: center;
}
.btn-plus{
  border: none;
  width: 30px;
  height: 35px;
  text-align: center;
}
.verticle-top{ vertical-align: top;}




/* ------ Error Type CSS Style ----------*/
.error-type-401{
  background-repeat: no-repeat;
  background-position: 0 -135px;
  background-size: 200px 800px;
  display: block;
  margin: 50px auto 20px;
  height: 130px;
  width: 200px;
}
.error-type-404{
  background-repeat: no-repeat;
  background-position: 0 -275px;
  background-size: 200px 800px;
  display: block;
  margin: 50px auto 20px;
  height: 130px;
  width: 200px;
}
.error-type-500{
  background-repeat: no-repeat;
  background-position: 0 -413px;
  background-size: 200px 800px;
  display: block;
  margin: 50px auto 20px;
  height: 130px;
  width: 200px;
}
.error-type-503{
  background-repeat: no-repeat;
  background-position: 0 -550px;
  background-size: 200px 800px;
  display: block;
  margin: 50px auto 20px;
  height: 130px;
  width: 200px;
}

.error-type{
  margin: 30px;
}
.ErrorTypeMsg{
  color: #333;
  font-size: 22px;
  font-weight: 400;
}

/* Report Styles */
.helpInfo{
  position: relative;
  top:-5px;
}
.pageHead{
  color: #334959;
  font-size: 20px;
  line-height: 27px;
  font-weight: 600;
}
.dateSelect{
  background: #FFFFFF 0% 0% no-repeat padding-box;
  height: 42px;
  line-height: 40px;
  border:#fff solid 1px;
  color:#454545;
  font-size: 14px;
  padding: 0;
}
.reportBtnBox{
  background-color: #334959;
  border-radius: 4px;
  height: 37px;
  width: 40px;
  position: relative;
  color: #ffffff;
  top: 1px;
  border: none;
}
.IconAlignVert{
  position: relative;
  top:-2px;
}
.btnSpace{
  margin: 0 5px;
}
.reportSecBox{
  background: #FFFFFF 0% 0% no-repeat padding-box;
  /*border: 1px solid #E9E9E9;
  border-radius: 3px;*/
  opacity: 1;
  padding:10px;
}
.reportInnerBox{
  /*border: 1px solid #CFCFCF;
  border-radius: 3px;*/
  padding:10px;
}
.grapSec{
  background-color: #EFEFEF;
  height: 250px;
  text-align: center;
  display: block;
  padding: 145px 10px 10px;
  font-weight: 600;
  color: #000000;
}
.reportConfigBox{
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000034;
  border: 1px solid #E9E9E9;
  border-radius: 3px;
  opacity: 1;
  padding: 10px;
}
.reportCardSec{
  background: #334959 0% 0% no-repeat padding-box;
  opacity: 1;
  line-height: 30px;
  color: #ffffff;
  padding-left: 10px;
}
.configBoxSec{
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border-radius: 3px 3px 0px 0px;
  border:#cfcfcf solid 1px;
  opacity: 1;
}
.configDataHead{
  color: #354957;
  font-size: 14px;
  font-weight: 600;
  padding: 10px;
  position: relative;
}
.configDivider{
  border-right: #cfcfcf solid 1px;
}
.configRemove a{
  position: absolute;
  right: 20px;
  color: #D60000;
  font: 14px!important;
  text-decoration: none;
}
.configRemove a:hover{
  text-decoration: underline;
  color: #D60000;
  font: 14px!important;
}
.configAdd a{
  position: absolute;
  right: 20px;
  color: #659900;
  font: 14px!important;
  text-decoration: none;
}
.configAdd a:hover{
  text-decoration: underline;
  color: #659900;
  font: 14px!important;
}
.configDataBx{
  background: #F2F2F2 0% 0% no-repeat padding-box;
  border: 1px solid #CFCFCF;
  opacity: 1;
}
.dataSwap{
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 10px #00000026;
  border-radius: 3px;
  opacity: 1;
  padding: 6px;
  position: relative;
}
.dataSpaceLeft{
  padding: 5px 0 5px 15px;
}
.dataSpaceRight{
  padding: 5px 15px 5px 0;
}
.dataSwap .arrow{
  width: 20px;
  text-align: center;
}
.dataSwap .minus{
  position: absolute;
  right: 20px;
}
.ReportDateRangeFilter{
  position:absolute;
  z-index: 90;
  width: 97.8%;
}
.reportDateFilterBox{
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000034;
  border: 1px solid #E9E9E9;
  opacity: 1;
  padding:10px 15px;
}
.dateRangeWidth{
  width: 275px;
  background-color: #EFEFEF;
  padding: 0 12px;
}
.btn-padd{
  padding: 6px 8px!important;
}
.arrow-up {
  width: 0;
  height: 0;
  /* box-shadow: 0px 3px 6px #00000034; */
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #FFFFFF;
}
.arrow-align{
  position:relative;
  top: 1px;
  left: 65%;
}
#setting-nested-dropdown{
  background-color: transparent;
  border:none;
  padding: 0px;
  position: relative;
  top: -1px;
}
#setting-nested-dropdown::after{
  display: none!important;
}
.settingDropDownSec{ position: relative;}
.settingDropDownSec .caretSign{
  position: absolute;
  right: 10px;
}
.settingDropDownSec .caretSignDesign{
  color: #FFFFFF;
}
.settingDropDownSec .dropdown-menu {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 6px #00000029;
  border-radius: 3px;
  opacity: 1;
  border: none;
  padding: 0;
}
.setting-menu-item{
  color: #000000!important;
  padding: 8px 20px!important;
  font-size: 14px!important;
}
.setting-menu-item:active{
  text-decoration: none;
  background-color: #f8f9fa;
}


.filterBtnBox{
  width: 650px;
  height: auto;
  position: absolute;
  right: 70px;
  z-index: 99;
}
.filterBtnBox .arrow-align{
  right: -325px;
  left: unset;
}
.filterField{
  width: 100%;
  background-color: #EFEFEF;
}

/* OverFlow Style */
.overflow-x-auto{
  overflow-x: auto;
}
.selectedManageClm{
  width: auto!important;
  min-width: 100%;
}
/* Campaign Email Report Dashboard */
.reportCampBoxNew{
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #E9E9E9;
  border-radius: 3px;
  opacity: 1;
}
.adjustPadd{ padding-left: 5px!important; padding-right: 5px!important;}
.reportCampBox{
  width: 11.333%;
  float: left;
  margin: 15px 10px 10px 5px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #E9E9E9;
  border-radius: 3px;
  opacity: 1;
}
.campTitle{
  color: #454545;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  height: 45px;
  padding-top: 5px;
}
.campReportCount{
  color: #454545;
  font-size: 30px;
  font-weight: 600;
  line-height: 39px;
  padding-bottom: 5px;
  text-align: center;
}
.campGraphBox{
  /* width: 48.8%;
  float: left;
  margin: 10px 10px 10px 5px; */
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #E9E9E9;
  border-radius: 3px 3px 0px 0px;
  opacity: 1;
}
.campGrapBoxHead{
  background: #FAFAFA 0% 0% no-repeat padding-box;
  border-bottom: 1px solid #E2E2E2;
  opacity: 1;
  padding: 10px 20px;
}
.campGrapBoxHead a{
  color: #334959;
  font-size: 16px;
  text-decoration: underline;
}
.campGrapBoxHead a:hover{
  color: #334959;
  font-size: 16px;
  text-decoration: none;
}
.size-2em{
  height: 2em;
  width: 2em;
}

/* Multi-select value box styles */
.inputGray .css-1rhbuit-multiValue{
  border:#fff solid 2px!important;
  border-radius: 100px!important;
  box-shadow: 0px 3px 6px #00000029;
  background: #ffffff!important;
  position: relative;
  top: -1px;
}
.css-1rhbuit-multiValue div:first-child{
  background:#FFFFFF;
  color: #000000;
  border:none;
  margin: 3px;
}
.css-1rhbuit-multiValue div:nth-child(2){
  background:#FFFFFF;
  border:none;
  margin: 3px;
  color:#CCCCCC;
}
.css-1rhbuit-multiValue div:nth-child(2) svg{
  width: 18px!important;
  height: 18px!important;
}
.textareaHt{
  height: 120px!important;
}

/* Detail Page email and phone dropdown styles*/
.popover-body .selectInputField{
  border: #DDDDDD solid 1px;
}
.popover-body .selectInputField div:first-child{
  background: #fff;
  border: #fff solid 1px;
}
.popover-body .selectInputField div:nth-child(2){
  background: #FFFFFF;
  border: #FFFFFF solid 1px;
}
.popover-body .react-select__control{
  height: 35px;
}
.popover-body .react-select__value-container{
  height: 35px;
  line-height: 35px;
}
.popover-body .react-select__indicators{
  height: 35px;
  line-height: 35px;
}

/* Swap row styles */
.swapRow{
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 10px #00000026;
  border-radius: 3px;
  opacity: 1;
}
.leftBrdSec{
  border-left: #2C81C1 solid 10px;
  border-radius: 3px 0 0 3px;
}
.shiftLeft{
  position: relative;
  margin-left: -15px;
}
.shiftRight{
  position: relative;
  margin-right: -15px;
}

/* File accept format styling */
.inlinePopUpForm .accFormat{
  padding-left: 15px;
}
.formatTextItalic{
  font-style: italic;
}

/* form checkbox class styles */
.form-check-input{
  margin-top: 0.4rem!important;
}

/* .tdFilter{ width: auto!important; min-width: 120px;} */

#canvasDiv .dataCols, #canvasDiv .dataAllCols{
  height: auto!important;
}

/* System Setting Nav Styles */
.leftMenuHeight{
  min-height: 100vh;
}
.leftMenuDrawer{
    background: #F79126 0% 0% no-repeat padding-box;
    width: 40px;
    height: 40px;
    position: absolute;
    border-radius: 100px;
}
.leftOpenMenuPos{
    top: 15px;
    right: -16px;
    z-index: 99;
}
.leftHideMenuPos{
  top: 75px;
  left: -20px;
  z-index: 99;
}
.iconToHide{
    position: relative;
    top: 6px;
    left: 8px;
    font-size: 22px;
    color: #ffffff;
}
.iconToShow{
  position: relative;
  top: 6px;
  left: 8px;
  font-size: 22px;
  color: #ffffff;
}
.show{ display: inline-block;}
.hide{ display: none;}
.navBxMrgTp{
   margin-top: -15px;
}
.navBxMrgBt50Minus{
  margin-bottom: -50px;
}
.navLeftBx{
  margin: 0 -15px;
  height: 100%;
}
.navLeftBx-BrdRt{
  border-right: 1px solid #CFCFCF;
}

.left-menu-head{
    background: transparent linear-gradient(271deg, #253342 0%, #253342 100%) 0% 0% no-repeat padding-box;
    padding: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}
.leftMenu-List ul{ padding: 0;margin: 0;}
.leftMenu-List ul > li{ list-style: none; padding: 12px 10px; border-bottom: #CFCFCF solid 1px; font-size: 13px;}
.leftMenu-List ul > li:hover, .leftMenu-List ul > li:focus, .leftMenu-List ul > li:visited{ background-color: #25334219; color: #454545; cursor: pointer;}
.leftMenu-List ul .active{ background-color: #25334219; color: #454545; cursor: pointer; border-bottom: #CFCFCF solid 1px;}
.leftMenu-List ul >  li > a:hover, .leftMenu-List ul > li > a:focus, .leftMenu-List ul > li > a:visited{ background-color: #25334219; color: #000000; cursor: pointer;}
/* -------------- Sticky Footer Section --------------
  ----------------------------------------------------*/

  .stickyFooterMain{
    background-color: #253342;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 100;
    width: 100%;
    height: 40px;
    line-height: 40px;
  }
  .stickyFooterMain svg{ width: auto;}


/* Added style for incremental section */
  .remEleBtn{
    background-color: #D60000;
    width: 24px;
    height: 24px;
    text-align: center;
    border-radius: 2px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    top: -3px;
    margin-right: 10px;
  }
  .remEleBtn svg{
    font-size: 15px;
    z-index: 999;
    opacity: 1;
    color: #fff;
  }
  .addEleBtn{
    background-color: #3F9D00;
    width: 24px;
    height: 24px;
    text-align: center;
    border-radius: 2px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    top: -3px;
  }
  .addEleBtn svg{
    font-size: 15px;
    z-index: 999;
    opacity: 1;
    color: #fff;
  }

  /* Date Range month, year, hr, min and sec field width overwrite */
  .daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect{
    width: 60px!important;
  }
  .daterangepicker select.monthselect,.daterangepicker select.yearselect{
    width: 50%!important;
  }
  .rtf--mb{
    width: 48px!important;
    height: 48px!important;
  }
  .entityLink{
      color: #4F96CB!important;
      text-decoration: none!important;
  }

  .linkEdit {
    color: #354957;
    text-decoration: none;
  }
  .linkEdit :hover{
    color: #354957;
    text-decoration: none;
  }

  /*Switcher CSS*/
.switcher-largetoggle .react-switch-bg{
   width: 105px!important;
 }
.switcher-largetoggle .react-switch-handle{
   transform: translateX(77px)!important;
 }
.switcher-largetoggle .checkedSwitcher {
  right: -20px!important;
  position: relative!important;
}
.switcher-largetoggle .uncheckedSwitcher{
  left: -60px!important;
  position: absolute!important;
}
.expandTr{
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #CCCCCC;
  opacity: 1;
}
.expandTr a{
  color:#3F9D19;
  font-size: 14px;
  text-decoration:none;
}
.expandTr a:hover{
  text-decoration:underline;
  color:#3F9D19;
}

.vehicleDrawerForm
{
  display: inline-block;
  width: 100%;
}
dl, ol, ul{
  margin-top: 5px;
  margin-bottom: 5px;
}
.tagHeight60{
  height: 60px!important;
}
.linkPopup a{
  color: #3F9D19;
  text-decoration: none;
}
.linkPopup a:hover {
  color: #3F9D19;
  text-decoration: none;
}

.inputGray .form-control-view {
  background: #EFEFEF;
  border-radius: 0px;
  border: #EFEFEF solid 1px;
  color: #000000;
  font-size: 14px;
  opacity: 1;
  height: auto;
  line-height: 42px;
  min-height: 42px;
  padding: 0px 10px;
}
.view-badge {
  background:#FFFFFF;
  border-radius:15px;
  padding:5px;
  margin-right: 8px;
}
.vehicleLeftMenu ul > li{
  padding: 0px!important;
}
.vehicleLeftLink{
  display: inline-block;
  padding: 12px 10px;
  width: 100%;
  text-decoration: none;
  color: #000000;
}
.vehicleLeftLink:hover{
  text-decoration: none;
}

/* Role dropdown height fix */
#UserForm_roleId{
  z-index: 10000;
}
/*Quick Search form equal padding around field*/
.form-group-equal{
  margin-top: 10px;
  margin-bottom: 10px;
}


/*Create Vendor Contacts - Unable to select specific owner*/
#CrmContactForm_owner{
  z-index: 99;
}
/* Switcher Text   status-Can Email/Phone styles */
.switcher-text-can {
  color: #ffffff;
  position: relative;
  top: 3px;
  width:100px;
  left: 20px;
}

.switcher-text-cannot {
  color: #ffffff;
  position: relative;
  top: 3px;
  left: -55px;
  width: 130px;
}

.radioContainer{
  padding-right: 12%;
  display: inline-block;
}
.radioInputContainerClass {
  padding: 7px 0px;
}
.radioContainer input[type=radio]{
  position: relative;
  top: 2px;
  margin-right: 6px;
}
.underConstruction{
  background-color: #2C81C1;
  border-radius: 10px;
  padding: 6px 10px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
#tabelCust thead{
  background-color: #EFEFEF;
  color: #454545;
  font-size: 12px;
}
#tabelCust > thead > tr > th{
  border-left: #CCCCCC solid 1px!important;
  border-right: #CCCCCC solid 1px !important;
}
#tabelCust .oddRow{
  background-color: #F9F9F9;
}
#tabelCust .filterBox, #tabelCust .filterSelect{
  border: #ccc solid 1px;
  width: 100%;
  line-height: 30px;
  height: 30px;
  padding: 0 5px;
  color: #454545;
}
.navSelectBx select{
  border: #CFCFCF solid 1px;
  border-radius: 3px;
  line-height: 24px;
  height: 24px;
  padding: 0 5px;
}
.paginationBox{
  border: #2C81C129 solid 1px;
  padding: 2px 8px;
  color: #2C81C1;
  font-size: 12px;
}
.paginationText{
  font-size: 12px;
  padding: 2px 8px;
  color: #454545;
}
.paginationArrow{
  font-size: 14px;
  color:#2C81C1;
  padding: 2px 8px;
  position: relative;
  top:-2px;
}
.fileUploadPlaceHolderContainer {
  color: #A9A9A9;
  font-size: 12px;
  text-align: center;
}
.hideField {
  display: none;
}

/* Blue Section Box */
.blueSectionBrd{
  border: #253342 solid 2px;
  background-color: #EFEFEF;
}
.blueSectionHeader{
  background-color: #253342;
  padding: 5px;
}
.rwEditor-white{
  border:#ffffff solid 1px;
  background-color: #ffffff;
  width: 100%;
  height: 80px;
  padding: 10px;
}
.rwEditor-gray{
  border:#CCCCCC solid 1px;
  background-color: #f5f5f5;
  width: 100%;
  height: 80px;
  padding: 10px;
}
.autoCompleteAddress_reset{
  position: absolute;
  top: -2px;
  right: 0px;
  padding: 1px 5px !important;
}
.autoCompleteAddress_pickup_reset{
  position: absolute;
  top: -2px;
  right: 0px;
  padding: 1px 5px !important;
}
.linkRed {
  color: #D60000;
  text-decoration: none;
}
.linkRed :hover{
  color: #D60000;
  text-decoration: none;
}
.autoCompleteAddress_reset{
  position: absolute;
  top: -2px;
  right: 0px;
  padding: 1px 5px !important;
}
.autoCompleteAddress_pickup_reset{
  position: absolute;
  top: -2px;
  right: 0px;
  padding: 1px 5px !important;
}
.linkRed {
  color: #D60000;
  text-decoration: none;
}
.linkRed :hover{
  color: #D60000;
  text-decoration: none;
}
/*Remove card body padding*/
.remCardBodyPadd .card-body{
  padding: 0px !important;
}

.brdSeprator li{
  border-bottom: #DBDBDB solid 1px;
}
.brdSeprator li:last-child{
  border-bottom:none;
}

.brdSeprator_vehicle li:not(:last-child){
  border-bottom:none;
}
.searchCustomer_loadContainer{
  width: 5%;
  display: flex;
  justify-content: center;
  align-items: center;}

.btnMoveTopLift{
  position: absolute;
  top: -46px;
  right: 10px;
}

/* Advance Search contact Info column mousehover background color change */
.colHighlights:hover{
  background-color: #D4E6CC;
}
.react-time-picker__wrapper{
  border: none !important;
  margin: 0 -5px;
}
#StateDisclosureForm_statePicklistId{
  z-index: 99;
}

.readMore{
  position:absolute;
  right:0px;
  top:10px;
}

  .tabBoxMrg .card-header-tabs{
  margin:0px;
}

 #EscalationForm_assignedTo div:first-child,#EscalationForm_assignedTo div:nth-child(2) {
    font-size: 14px;
   text-transform: capitalize;
 }

/* Escalation Assignment Default Rules, Manage Escalation Assignment Rules and
Manage Escalation Issue Type bottom drawer dropdown field option overlapping issue */

#EscalationDefaultRuleEditForm_fromRole .react-select__menu, #EscalationDefaultRuleEditForm_toRole .react-select__menu, #EscalationRuleEditForm_fromOrg .react-select__menu, #EscalationRuleEditForm_fromLocation .react-select__menu,
#EscalationRuleEditForm_fromRole .react-select__menu, #EscalationRuleEditForm_toOrg .react-select__menu, #EscalationRuleEditForm_toLocation .react-select__menu, #EscalationRuleEditForm_toRole .react-select__menu, #EscalationTypeEditForm_objectType .react-select__menu{
  position: relative;
  z-index: 10000;
}


.PersonlizationBtn button, .PersonlizationBtn button:hover , .PersonlizationBtn button:not(:disabled):not(.disabled):active{
  background-color: transparent;
    border: none;
}

.PersonlizationBtn .dropDownActionMenu{
  max-height: 200px;
  overflow-y: auto;
  background-color: #4C4A49;
}

.editor-wrapper-container:fullscreen {
  background-color: #ffffff;
}
.editor-wrapper-container:-webkit-full-screen {
  background-color: #ffffff;
}
.editor-wrapper-container:-moz-full-screen {
  background-color: #ffffff;
}

.height60vh .rdw-editor-main {
  height: auto !important;
  max-height: 60vh;
  min-height: 200px;
  overflow-y: auto;
}

.full-screen-editor-main {
  height: auto !important;
  min-height: 80vh !important;
  max-height: 95vh !important;
  overflow-y: auto;
}

/* CCC Tab CSS */
#custActivityGrid .card-body, #dontionGridView .card-body{
  padding: 0px!important;
}
/* Input style*/
.inputWordWrap {
  background: #EFEFEF !important;
  border-radius: 0px !important;
  border: #EFEFEF solid 1px !important;
  color: #454545 !important;
  font-size: 14px !important;
  line-height: 20px !important;
  opacity: 1 !important;
  min-height: 42px !important;
  padding: 10px !important;
  height: auto !important;
  overflow: hidden;
}
.p_maxLine3{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Date text should bbe vertically align center */
.lineHeight26{ line-height: 26px!important;}

.esclViewPopup .card-header-tabs {
  margin: 0;
  border-bottom: 1px solid #dee2e6;
}

.escAssigned{
  max-height: 50vh;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Notification tooltips styles */
/* .notifyWrapper{
    position: absolute;
    top: 25px;
    z-index: 999;
    left: -109px;
}
.notifyWrapper .triangle {
  width: 0;
  height: 0;
  position: relative;
  left: 162px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #253342;
}
.notifyWrapper .triangle:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ffffff;
  position: absolute;
  top:3px;
  left: -10px;
}
.notifyContainer{
  width: 305px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 6px #00000034;
  border: 2px solid #253342;
  opacity: 1;
}
.notifyContainer ul {
  padding: 0px;
  list-style: none;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.notifyContainer li{
  padding: 5px 6px 6px;
}
.notifySaveAll{
    background: #253342;
    border-radius: 0;
    opacity: 1;
    color: #ffffff;
    width: 100%;
    border: none;
    padding: 5px;
    font-size: 14px;
    display: block;
    text-align: center;
    text-decoration: none;
}
.notifySaveAll:hover{
  opacity: 0.9;
  cursor: pointer;
    text-decoration: none;
    color:#ffffff;
} */

/* started Wrapper for the notification dropdown */
.notifyWrapper {
  position: absolute;
  top: 35px; /* Adjust for spacing from the button */
  left: 50%; /* Center horizontally to button */
  transform: translateX(-50%); /* Center adjust */
  z-index: 999;
}

/* Triangle pointing to the button */
.notifyWrapper .triangle {
  width: 0;
  height: 0;
  position: absolute;
  top: -10px; /* Align the triangle just above the dropdown */
  left: 50%; /* Center the triangle horizontally */
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #253342;
}

/* Inner white triangle for the border effect */
.notifyWrapper .triangle:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ffffff;
  position: absolute;
  top: 3px;
  left: -10px;
}

/* Styles for the dropdown container */
.notifyContainer {
  width: 305px;
  background: #FFFFFF;
  box-shadow: 0px 0px 6px #00000034;
  border: 2px solid #253342;
  opacity: 1;
}

/* List styling for notifications */
.notifyContainer ul {
  padding: 0px;
  list-style: none;
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.notifyContainer li {
  padding: 5px 6px 6px;
}

/* Style for the "View All" link */
.notifySaveAll {
  background: #253342;
  color: #ffffff;
  width: 100%;
  border: none;
  padding: 5px;
  font-size: 14px;
  display: block;
  text-align: center;
  text-decoration: none;
}

.notifySaveAll:hover {
  opacity: 0.9;
  cursor: pointer;
  text-decoration: none;
  color: #ffffff;
}

/* end notification new style */

.hover-effect-view-all{
  opacity: 1 !important;
}

.sms-unread-count:hover{
  opacity: .8 !important;
}

.notifyBrd{
  border-bottom: #efefef solid 1px;
}

.notfyBtn{
  border:none;
  background-color:transparent;
}

/* Style for page height 100% */
.pageHeight {
  height: 100%;
  min-height: calc(100vh - 130px);
}
.pageHeightVendor {
  height: 100%;
  min-height: calc(100vh - 115px);
}
/* Manage grid pages height
.fullPageHeight .card{
  height: 100%;
  min-height: calc(100vh - 130px);
}
.fullPageHeight .mt-2rem{
  margin-top: 0px!important;
}
 End */

.lineHeight26{ line-height: 26px!important;}

.fixedBottomAlign{
  position: absolute;
  bottom:0px;
}
.searchDesktopIcon{
  opacity: 0.10;
}
.btn-submit-program{
  position: relative;
  top: -7px;
  right: -5px;
  padding: 5px 14px;
}

.custIconStyle{
  display: inline-block; border: #fff solid 1px;padding: 1px;
}
/* Form Sspacing change styles*/
.pageTitlePadd {padding: 10px 10px 0 10px;}
.formSpacing { padding: 10px 10px 0 10px;}
.form-row .form-group { margin-bottom: 10px;}


/* Status change notification */
#StatusChangeNotificationForm_NFMFromEmail,#StatusChangeNotificationForm_NFMReplyToEmail,#StatusChangeNotificationForm_NFMFromPhoneNumber,
#StatusChangeNotificationForm_VendorFromEmail, #StatusChangeNotificationForm_VendorFromEmail, #StatusChangeNotificationForm_vendorFromPhoneNumber,
#StatusChangeNotificationForm_vendorFromPhoneNumber, #StatusChangeNotificationForm_vendorFromPhoneNumber, #StatusChangeNotificationForm_donarFromPhoneNumber{
  z-index: 99;
}
#StatusChangeNotificationForm_notificationsGroupsNFM{
  z-index: 9999;
}

/* Create Non-Profit Contacts TimeZone and Source field overlap*/
#CrmContactForm_timeZonePicklist, #CrmContactForm_sourcePicklist{ z-index: 999;}

/*Edit Donation Intake Option Drawer for Disposition*/
.drawerTabSec {
  margin-top: 0px;
  margin-left: 5px;
}
.drawerTabSec .card-header-tabs {
  margin: 0;
}
.drawerTabSec .tab-content{
  padding-bottom: 1px;
}

/* CallBack Grid Style change for Call In column*/
.callInStyle .badge-light{
    font-size: 14px!important;
    color: #000000!important;
    font-weight: normal!important;
    background-color: transparent!important;
}
.callInStyle .badge-danger{
  font-size: 14px!important;
  color: #D60000!important;
  font-weight: normal!important;
  background-color: transparent!important;
}

/* Create program From Email, Reply to email and BCC dropdown overlap issue*/
#ProgramForm_fromEmail, #ProgramForm_replyToEmail, #ProgramForm_bccEmail{
  z-index: 999;
}

/* In Grid cell button color */
.colorWhite {
  color : #fff !important;
}

/* DateInput component clear button */
.dateRangeClear{
  position: absolute;
  top: 10px;
  right: 10px;
}
/* Date Range Picker Grid Inline edit clear button */
.dateRangeInlineGridClear{
  position: absolute;
  top: 12px;
  right: 5px;
}

/* Disposition form popup */
.commDispositionForm .popUpLayoutForm .msgBrdGray {
  margin-top: 15px;
}

/* Edit Make and model popup */

.editMakeFormDrawer .react-select__menu, .editModelFormDrawer .react-select__menu{
	position: relative;
}
.vinWidth{ width: 165px;}


/* Multiselect Filter on Grid style */
.multiSelectGridFilter{
  min-width: 190px;
}
.multiSelectGridFilter .react-select__menu{
  max-height: 180px;
}
.multiSelectGridFilter .css-tlfecz-indicatorContainer{
  padding: 0px 10px!important;
}

.tdFilter .multiSelectGridFilter .css-yk16xz-control{
  min-height: 39px!important;
  border-radius: 0px!important;
}
/* Table Grid filter width auto */
.vehicleAssGrid .tdFilter{
  min-width: auto!important;
}

/* Responsive Table changes for mac to appear scrollbar if needed */
::-webkit-scrollbar {
  width: 15px;
  height: 15px;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
}
::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #C3C3C3;
  border: 2px solid #eee;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
}

/* My Account Pages Style */

.myAccountTab .card-body {
  height: 100%;
  min-height: calc(100vh - 120px);
  padding: 10px 10px 10px 10px;
  margin-left: -15px
}
.pageHtFill{
  height: 100%;
  min-height: calc(100vh - 120px);
}

/* Create Dashboard */
.createFilterForm{
  border-left: #E9E9E9 solid 10px;
}

/* System Override*/
.brdSepratorForm{
  border-right: #DBDBDB solid 2px;
  padding-right: 15px!important;
}
.paddLeftForm{
  padding-left: 15px!important;
}

a:not([href]):not([class]){
  cursor: pointer;
}

.imageGallary{
  list-style: none;
  padding: 0;
}
.imageGallary li{
  display: inline-block;
  margin: 5px;
  width: auto;
  height: auto;
  background: #FBFBFB 0% 0% no-repeat padding-box;
  border: 2px dashed #DCDCDC;
  border-radius: 4px;
  text-align: center;
  padding: 10px;
  position: relative;
  min-width: 100px;
}
.imageGallary li:active{
  border: 2px solid #3F9D19;
}
.imageGallary .boxAction:hover{
  border:none!important;
}
.imageGallary li:hover {
  border: 2px solid #3F9D19!important;
  cursor: pointer;
}

.jodit-toolbar-button_valign,.jodit-toolbar-button_file{
  display: none !important;
}
.imgModal{
  margin: 0 auto !important;
}
.imgModal .modal-content {
  /* background: #4E4E4E 0% 0% no-repeat padding-box !important;
  opacity: 0.9 !important; */
  background-color: rgba(78, 78, 78, 0.9);
}
.imgModal .modal-content .modal-body {
  padding: 15px !important;
  height: 99.2vh;
}
/* .imgModal .image-gallery-swipe{
  border: 1px solid #9D9D9D;
  padding: 10px;
  height: calc(100vh - 75px);
} */
.navSecArea{
  background-color: #ffffff !important;
  box-shadow: 0px 0px 6px #00000029;
  border-radius: 0px 3px 3px 0px;
  opacity: 1;
}
.imgModal .image-gallery-thumbnails {
    max-height: calc(100vh - 75px);
    overflow-y: auto;
  }
  .image-gallery-thumbnails::-webkit-scrollbar {
    width: 0 !important;
}

.tbl-layout-fix{
  table-layout: fixed;
  word-break: break-all;
}

/* Vendor Assignment Analysis Page Style for overlapping vendor name dropdown*/
.vendorAssAnalysis .tableGrid .tHead {
  position: relative;
  z-index: 0;
}

/* Added style for dropdown option mouseover color */
.react-select__option:hover{
  background-color: #daebff!important;
  color:#454545!important;
  cursor: pointer;
}
.react-select__option.react-select__option--is-selected {
  color: #ffffff;
}

/* Notification setting style for sms body */
.smsBody .text-right {
  height: 0 !important;
}
.smsBody .PersonlizationBtn{
  position: absolute;
  top: 0;
  right: 0;
  height: 0;
}

/* CCC screen add phone number popup style for phone type dropdown
.popUpLayoutForm #CustomerPhoneForm_phoneType .react-select__menu{
	position: relative;
}*/

/* dropdown option hide inside tabel grid header fix*/
.selectInputField .react-select__menu {
  z-index: 2;
}

/* Create custom Create Contact form Link Contact to Company dropdown cut edge*/
#CrmContactForm_companyPicklistId .css-26l3qy-menu{
  position: relative!important;
}

/* Authorized Emails, Manage Custom Entities Grid Action column alignment overwrite*/
.authorizeEmailGrid .actionColumn, .manageCustEntitiesGrid .actionColumn{
  text-align:left!important;
}

/* Opp custom entity stage and status */
.optyGridTab #detailPageView{
  border: none!important;
  padding: 0px 5px!important;
  position: relative;
}
.optyGridTab .brdBt3{
  border-bottom: none;
}
.optyGridTab #tabList{
  border:#E2E2E2 solid 1px;
}
.optyGridTab .tabButt{
  position: absolute;
  right: 10px;
  top: -12px;
}
.optyGridTab .tdFilter input,.optyGridTab .tdFilter select{
  border: #CCCCCC solid 1px!important;
  background:none!important;
  color: #000000!important;
}
.tooltipZindex{
  z-index: 9999 !important;
}

/*In system setting Custom entity page Oppty Configuration grid UI*/
.opptyConfigGridSec .tab-content{
  padding: 10px!important;
}
.opptyConfigGridSec{
  padding: 0 10px!important;
}
.opptyConfigGridSec .tabButt{
  right:18px!important;
}
/* Thank you page styles*/
#ManageTYLStaticTextForm_headerText .rdw-image-modal, #ManageTYLStaticTextForm_contentText .rdw-image-modal, #ManageTYLStaticTextForm_paragraphText .rdw-image-modal, #ManageTYLStaticTextForm_signatureClosingText .rdw-image-modal{
  left: -185px!important;
}
#ManageTYLStaticTextForm_headerText .rdw-emoji-modal, #ManageTYLStaticTextForm_contentText .rdw-emoji-modal, #ManageTYLStaticTextForm_paragraphText .rdw-emoji-modal, #ManageTYLStaticTextForm_signatureClosingText .rdw-emoji-modal{
  left: -140px!important;
}
#ManageTYLStaticTextForm_headerText .rdw-embedded-modal, #ManageTYLStaticTextForm_contentText .rdw-embedded-modal, #ManageTYLStaticTextForm_paragraphText .rdw-embedded-modal, #ManageTYLStaticTextForm_signatureClosingText .rdw-embedded-modal{
  left: -95px!important;
}
#ManageTYLStaticTextForm_headerText .rdw-colorpicker-modal, #ManageTYLStaticTextForm_contentText .rdw-colorpicker-modal, #ManageTYLStaticTextForm_paragraphText .rdw-colorpicker-modal, #ManageTYLStaticTextForm_signatureClosingText .rdw-colorpicker-modal{
  left: -160px!important;
}

@media only screen and (max-width: 1260px) {
  #ManageTYLStaticTextForm_headerText .rdw-image-modal,
  #ManageTYLStaticTextForm_contentText .rdw-image-modal,
  #ManageTYLStaticTextForm_signatureClosingText .rdw-image-modal,
  #ManageTYLStaticTextForm_paragraphText .rdw-image-modal,
  #ManageTYLStaticTextForm_signatureClosingText .rdw-image-modal{
    left: 0px!important;
  }
  .app-content-slide #ManageTYLStaticTextForm_headerText .rdw-image-modal,
  .app-content-slide #ManageTYLStaticTextForm_contentText .rdw-image-modal,
  .app-content-slide #ManageTYLStaticTextForm_signatureClosingText .rdw-image-modal,
  .app-content-slide #ManageTYLStaticTextForm_paragraphText .rdw-image-modal,
  .app-content-slide #ManageTYLStaticTextForm_signatureClosingText .rdw-image-modal{
    left: -70px!important;
  }
}

/* CadenceForm css style import */
.addMoreCadence div{top:0px !important;}

#CadenceForm_emailSubject_0 {
  padding-top: 10px;
  resize:none;
  width: calc(100% - 43px);
}

[for="CadenceForm_emailSubject_0"] + div > div:first-child{
  float: right;
  margin-top: 3px;
}
/* Personalization dropdown button on focus issue*/
.PersonlizationBtn .action button:focus{
	background-color: transparent!important;
	border:none!important;
}

#CadenceForm_smsSubject_0 {
  padding-top: 10px;
  resize:none;
  width: calc(100% - 43px);
}

[for="CadenceForm_smsSubject_0"] + div > div:first-child{
  float: right;
  margin-top: 3px;
}

#CadenceForm_smsBody_0 {
  padding-top: 10px;
  resize:none;
  width: calc(100% - 43px);
  height: 100px!important;
}

[for="CadenceForm_smsBody_0"] + div > div:first-child{
  float: right;
  margin-top: 3px;
}

/* Core table checkbox and action column width issue fixes
.selectedColumn, .tableGrid .actionClmn, .tableGrid .actionColumn{
  width: 0.5%!important;
}*/

/* Title claim managment screen extra space between grid and tab beacuse of action menu*/
.titleClaimTabSec .serviceDeskCardHeaderGrid {
  position: absolute;
  right: 0;
  top: 0;
}


.cra-tabs-details-view-buttons .show>.btn-primary.dropdown-toggle{
  background-color: #3F9D00 !important;
  border: #3F9D00 solid 1px !important;
}

.cra-tabs-details-view-buttons .dropdown-menu{
  transform: translate3d(-144px, 30.4px, 0px) !important;
}

.cra-tabs-details-view-buttons .dropdown-toggle{
  height: 24px;
  padding: 0 0.4rem;
  border-radius: 2px;
}

.cra-tabs-details-view-buttons{
  display: flex;
  align-items: center;
  gap: 5px;
  float: right;
  margin-top: -32px;
  margin-right: 5px;
}
.cra-tabs-details-view-buttons .tabButt{
  padding-right: 10px !important;
  margin-top: 0 !important;
}

.optyGridTab .tabButt{
    top:7px !important;
}
/* Dashboard page report section*/
.myTaxReport{
  margin: -10px -5px;
}
.myTaxReport .card-header{
  padding: 10px!important;
}
.cadenceLog .table-responsive{
  max-height: 100%!important;
}
.cadenceFollowUpLog .table-responsive{
  max-height: 100%!important;
}
#UseCadenceForm_cadenceId .react-select__menu {
  position: relative;
  z-index: 9999;
}

@media only screen and (min-width: 1281px) {
  /* Cadence rweditor */
  #CadenceForm_emailBody_0 .rdw-image-modal{
    left: -105px!important;
  }
  #CadenceForm_emailBody_0 .rdw-emoji-modal{
    left: -60px!important;
  }
}

@media only screen and (max-width: 1260px) {
  /* Cadence rweditor */
  #CadenceForm_emailBody_0 .rdw-image-modal{
    left: 0px!important;
  }
}

.rowSameHeight {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  flex-wrap: wrap;
}
.rowSameHeight > [class*='col-'] {
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
}
/* Commented code duw to prevent scroll bar on state doc page
.manageStateDoc .table-responsive{
  overflow-x: visible;
}*/

/* Cars Realestate Styles */
#customTab .tab-content{ margin: 5px; }
#customTab .nav-tabs{ padding-bottom: 1px!important;}
#customTab .nav-tabs a{ border: 1px solid #FFFFFF!important; color: #333333;border-radius: 0px!important; padding: 8px 10px!important;}
#customTab .nav-tabs .nav-item.show .nav-link, #customTab .nav-tabs .nav-link.active{
  color: #333333!important;
  background-color: #ffffff!important;
  border-radius: 0px!important;
  border-bottom: #3F9D00 solid 3px!important;
  border-left: #FFFFFF solid 1px !important;
  border-right: #FFFFFF solid 1px !important;
  border-top: #FFFFFF solid 1px !important;
}
#customTab .nav-tabs .nav-link:hover{
  border-left: #FFFFFF solid 1px !important;
  border-right: #FFFFFF solid 1px !important;
  border-top: #FFFFFF solid 1px !important;
  border-bottom: #3F9D00 solid 3px!important;
  background-color: #FFFFFF!important;
  border-radius: 0px!important;
  color: #333333!important;
}
/* #customTab .tab-content{
  padding: 5px;
} */
.tabBtnPosition{
  position: absolute;
  top: 11px;
  right: 22px;
}
.tabBtnPosition .btn-group-sm>.btn, .btn-small{
  padding: 2px 10px;
  line-height: 19px;
}
#customTab .svgBtn{
  position: relative;
  top: -1px;
  left: 4px;
  margin-right: 5px;
}
.greenCheckBox .form-check{
  padding-bottom: 10px;
}
.greenCheckBox input[type=checkbox]{
  transform: scale(1.2);
}
.greenCheckBox input[type=checkbox]:checked{
  accent-color: #3F9D19;
  border-radius: 2px;
  transform: scale(1.2);
}
/*End*/


/* Personalization dropdown button on focus issue*/
.PersonlizationBtn .action button:focus{
	background-color: transparent!important;
	border:none!important;
}

/* jo edit full screen issue */

.fade.modal-bottom.modal.show.jodit_fullsize-box_true {
  position: fixed !important;
    height: 100%;
    width: 100%;
}

.fade.modal-bottom.modal.show.jodit_fullsize-box_true .modal-dialog.jodit_fullsize-box_true{
  position: fixed !important;
  height: 100%;
  width: 100%;
  bottom: 0;
}

.image-propotional{
  object-fit: cover;
  object-position: center;
}


/* Edit cadence followup personalization field adjust */
#CadenceFollowUpForm_emailSubject{
  padding-top: 10px;
  resize:none;
  width: calc(100% - 43px);

}
[for="CadenceFollowUpForm_emailSubject"] + div > div:first-child{
  float: right;
  margin-top: 3px;
}
#CadenceFollowUpForm_smsSubject{
  padding-top: 10px;
  resize:none;
  width: calc(100% - 43px);
}
[for="CadenceFollowUpForm_smsSubject"] + div > div:first-child{
  float: right;
  margin-top: 3px;
}
#CadenceFollowUpForm_smsBody{
  padding-top: 10px;
  resize:none;
  width: calc(100% - 43px);
}
[for="CadenceFollowUpForm_smsBody"] + div > div:first-child{
  float: right;
  margin-top: 3px;
}

/* CCC screen extra space fixed*/
.communicationTab .serviceDeskCardHeaderGrid{
  position: absolute;
  width: 100%;
}
.communicationTab .gridJumpToInputCont{
  margin-right: 0px;
}
.communicationTab .gridPageBySizeSec, .cccEmailTab .gridPageBySizeSec{
  padding-top: 5px;
}
.contactDetailTab{
  margin: 10px 8px!important;
}
#dontionGridView .gridPageBySizeSec{
  padding-top: 5px;
}
.smsMessagesTab .card-body{
  padding: 5px 0px 0px!important;
}
.cccEmailTab .card-body{
  padding: 0px!important;
}


/* Drawer fixes for form which has last field is select*/
#CompanyPhoneNumberForm_phoneNumberType_0 .react-select__menu, #CompanyEmailAddressForm_emailAddressType_0 .react-select__menu, #LotLocationForm_col_12 .react-select__menu {
  position: relative;
  z-index: 9999;
}
/* Created My canned Email message dropdown option overlaped on editor*/
#CreateMyCannedEmailMessageForm_bcc .css-26l3qy-menu{
  z-index: 9999;
}

.strip-msg {
  box-shadow: 0px 1px 9px 2px rgb(185 184 184);
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.uploadedAttachment{
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
}

/* TodoList/QuickLinks hide when drawer open */
.modal-bottom .toDoList{
  display:none;
 }
 .modal-bottom .quickLinksBox{
  display:none;
 }

 /* Add Selection Options drawer style */
 /* #SelectionOptionForm_parentOption_0 .react-select__menu{
  position: relative;
} */

/* Custom Card Header box padding adjust */
.formHeaderGeneric .card-header{
  padding: 10px 10px 0 10px!important;
}
.customTabForCars .tab-content{
  margin: 10px !important;
}
.customTabForCars .card-body{
  padding: 0px!important;
}

/* Add more icon in next line right align style*/
.addMoreNextLine div{
  position: relative;
  right: 0px;
  top: 0;
  float: right;
}
.addMoreNextLine .bi-plus-circle-fill{
  color: #3F9D00;
  font-size: 14px;
  margin: 3px 0px;
}
.addMoreNextLine .bi-dash-circle-fill{
  color: #D60000;
  font-size: 14px;
  margin: 3px;
}

.addGroupModal .formSpacing{
padding: 10px 20px 0 20px;
}
.addGroupModal .modal-content{ overflow: visible!important;}
.addGroupModal .modal-body{ overflow:visible!important;}

.ContractPopup .card-body{
  padding:0px!important;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .OppStageBox .leftBrdSec .ml-2{
    margin-left: 1.4rem !important;
  }
}

#typeGroupSec{
padding-bottom: 12px;
}

/* Oppty Detail page status text style changed if left panel opened*/
.app-content-slide .Purple, .app-content-slide .Yellow, .app-content-slide .Red, .app-content-slide .Blue,
.app-content-slide .Green, .app-content-slide .Silver, .app-content-slide .Navy
{
  font-size: 16px;
  line-height: 18px;
}

/* Border seperator */
.brdSeperator{
  border-bottom: #E3E3E3 solid 1px;
  padding-bottom: 10px;
}
.brdSeperator:last-child{
  border-bottom: none!important;
  padding-bottom: 0px;
}


/* Create Lead form Style */
.createLeadForm .inputGray .form-control{
  height: 46px;
}
/* View lead form style */
.createLeadForm .inputWordWrap{
  min-height: 48px !important;
}

/* Activity grid description column alignment issue */
.activityGridSec p{
  margin-bottom: 0px;
}

/* Notes,Activity Description and File Upload same height alignment issue */
.fileDropdownSec>div {
  height:275px;
}
.fileDropdownSec .dzu-dropzone{
  min-height: 274px!important;
  max-height: 275px!important;
  overflow-y: auto!important;
}

/* OTG Create Lead form bottom spacing */
.createLeadForm .formSpacing {
  padding: 10px;
}

/*Richtextarea and File Upload*/
.richtextareaHeight .editor-class.rdw-editor-main {
  min-height: 150px;
}
.fileuploadHeight > div {
  height: 100%;
}
.fileuploadHeight .dzu-dropzone {
  height: 88%;
}

/* Confirmation modal body text alignment generic */
.confirmModalAlign .modal-content{
  padding: 0 5px;
}
.confirmModalAlign .modal-body{
  padding: 0px 10px 10px!important;
  min-height: auto!important;
}

/* Add selection options drawer body set max height */
.addSelectionModal .modal-body{
  max-height: calc(100vh - 175px);
  overflow-y: auto!important;
  overflow-x: hidden!important;
}
.firstParentOption .react-select__menu{
  position: relative;
}
.addSelectionModal .form-row .col-md-5:nth-child(3) .react-select__menu {
  position: relative;
}

/*.form-row .col-md-5:nth-child(3) .react-select__menu{
  position: fixed !important;
  top: -10px !important;
	width: 100%;
  max-width: 40%;
	z-index: 9999;
}*/

/*Activity drawer styles*/
.activity-iframe-container {
  width: 100%;
  height: calc(100vh - 250px); /* Initial height, adjust as needed */
  overflow: auto; /* Add scrollbars if content overflows */
  margin:0 -8px;
}
.activity-iframe-container iframe {
  width: 100%;
  height: 100%; /* Fill the container's height */
  border: none; /* Remove iframe border */
}
.activityDrawer .modal-body {
  padding: 0px 15px;
  min-height: calc(100vh - 115px)!important;
  overflow-x: auto;
  overflow-y: auto;
}
.activityDrawer .comm-email-attachment:hover .comm-email-attachment-actions {
  display: block;
}
.activityDrawer .boxActionDoc {
  z-index: 99;
}

/* Import Company Form  */
.xls-column{
  left: 10px;
  width: 80px;
  top: 5px;
  font-size: 11px;
}

.apply-value{
  left: -26px;
  width: 75px;
  top: 5px;
  font-size: 11px;
}
.overflowYhidden {
  overflow-y: hidden;
}

.copyRightTextClass{
    position: absolute;
    top: 4px;
    left: 0;
    width: 100%;
    font-size: 12px;
    font-weight: 500;
    color: white;
}
.EntityImportForm .react-switch{
  position: relative;
  margin-left: -3px;
  top: 5px;
}
.EntityImportForm sup{
  position: absolute;
  top: 18px;
  left: 92px;
  z-index:1;
}
.import-form-help-text {
  width: auto;
  max-width: 400px;
}
.import-form-help-text .tooltip-inner{
  width: 100% !important;
  max-width: 100% !important;
}
.inline-activity-desc svg {
  margin: 0 10px;
}
.inline-activity-desc p {
  display: inline;
}
.inline-activity-desc br{
  display:none;
}
/*New calendar was hidden behind table listing for less records*/
.show-full-datepicker {
  overflow-y: visible;
}


/* Oppty Configuration */
.opptyConfigSectionPage .card-header, .custFieldConfigPage .card-header{
  background: #ffffff 0% 0% no-repeat padding-box;
  opacity: 1;
  padding: 10px 10px 10px;
  border-bottom: none;
}
.opptyConfigSectionPage .viewBread, .opptyConfigSectionPage .viewBread a, .opptyConfigSectionPage .viewBread a:hover,
.custFieldConfigPage .viewBread, .custFieldConfigPage .viewBread a, .custFieldConfigPage .viewBread a:hover {
  color: #253342;
  font-size: 16px;
  font-weight: 600;
  line-height: 27px;
}
.opptyConfigSectionPage .cardHeaderDesc, .custFieldConfigPage .cardHeaderDesc{
  padding: 0px 10px 10px;
  font-size: 15px;
}
.opptyConfigSectionPage #tabList, .custFieldConfigPage #tabList{
  margin: 5px 10px 20px;
  border: #D7DBDE solid 1px;
  position: relative;
}

.opptyConfigSectionPage .tabButt, .custFieldConfigPage .tabButt{
  position: absolute;
  top: -70px;
  right: -5px;
}
/* Create/Edit option field Styles*/
.optionHead{
  color: #253342;
  font-size: 16px;
  font-weight: 600;
  line-height: 27px;
}
.createOptionFieldForm .card-body{
  padding-bottom: 0px!important;
}

@scope (.select-filter:has(input[type="hidden"][value]:not([value=""]))) {
    .select-filter-options__control .select-filter-options__value-container--has-value:has(.select-filter-options__single-value),
    .select-filter-options__control .select-filter-options__single-value,
    .select-filter-options__value-container--has-value ~
    .select-filter-options__indicators .select-filter-options__clear-indicator,
    .select-filter-options__value-container--has-value:has(.select-filter-options__single-value) ~
    .select-filter-options__indicators {
        background: transparent !important;
    }
    .select-filter-options__control {
          background: #cccccc12 !important;
    }
}

.select-filter{
  min-width: 150px;
  background:white;
  border: #CCCCCC solid 1px;
}


.select-filter div:nth-child(2),
.select-filter div:first-child {
  background:white;
  border:none;
}

div:has(> .select-filter-options__menu) {
  z-index: 9999;
}

.multi-select-switcher-tooltip {
  width: 300px;
}
.multi-select-switcher-tooltip .tooltip-inner{
  width: 100% !important;
  max-width: 100% !important;
}

.select-filter{
  min-width: 150px;
  background:white;
  border: #CCCCCC solid 1px;
}
.select-filter div:nth-child(2),
.select-filter div:first-child {
  background:white;
  border:none;
}

/* Oppty Detail page Slider */
.w3-light-grey, .w3-hover-light-grey:hover, .w3-light-gray, .w3-hover-light-gray:hover {
  color: #000 !important;
  background-color: #f1f1f1 !important;
  height:13px;
}
.w3-green, .w3-hover-green:hover {
  color: #fff !important;
  background-color: #4CAF50 !important;
}

/* Tooltip Wrapper*/
.toolTipsWrapper{
  display: block;
  width: 100%;
  max-width: 400px;
}
.toolTipsWrapper .popover-body{
  box-sizing: border-box;
  white-space: normal;
  width: max-content;
}
.toolTipsWrapper .popover{
  max-width: max-content;
}

/*contact dropdown search clipping results*/
#ExistingContactForm_contactEmail div:last-child {
  position: relative !important;
}

.entityCLogo{
  flex: 0 0 100%;
  max-width: 100%;
}

/* Popover styles override
.bs-popover-right{
  top:5px!important;
}
.popover.bs-popover-right .arrow {
  display:none!important;
  border-style:none!important;
}*/
.addNoCompanyExistSection {
  display: block;
}
.sectionHeaderGridPlusBtn {
  position: absolute;
    top: 6px;
    right: 10px;
}

.mrgTLR10{ margin: 10px 10px 0;}
.mrgLRB10{ margin: 0 10px 10px;}
/* New Dashboard Changes*/
.topCardAvtar{
  background-color: rgba(33, 193, 92, 0.2) !important;
  color: #3F9D00 !important;
  position: relative;
  height: 1.875rem;
  width: 1.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  font-weight: 500;
  flex: none;
}
.bg-success-add {
  background-color: rgba(33, 193, 92, 0.2) !important;
  color: #3F9D00 !important;
}
.bg-success-add:hover{
  cursor: pointer;
  opacity: 0.8;
}
.badgeAdd{
  display: inline-flex;
  align-items: center;
  gap: 0.275rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.75rem;
  line-height: 1.1rem;
  padding: 5px 12px;
  font-weight: 600;
  border-radius: 15px;
  margin-left: auto;
}
.topCardCount a{
  color: #212c40;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  padding-top: 10px;
}
.topCardCount a:hover{
  color: #212c40;
  font-size: 1.5rem;
  font-weight: 600;
  opacity: 0.8;
  text-decoration: none;
  padding-top: 10px;
}
.topCardSm-text{
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  margin-top: -10px;
}
.align-items-center {
  align-items: center !important;
}
.d-flex {
  display: flex !important;
}
.addNoCompanyExistSection {
  display: block;
}
.sectionHeaderGridPlusBtn {
  position: absolute;
    top: 6px;
    right: 10px;
}
.add-entity-button a {
  color: #3F9D00 !important;
  text-decoration: none;
}

.view-all-records a {
  color: #000000 !important;
  text-decoration: none;
}

.topCardPermissionLink a {
  pointer-events: none;
  text-decoration: none;
  cursor:no-drop;
}
.custEntityLabel {
  font-weight: normal;
}

.headingText{color:#000;font-size:22px;font-weight:600;padding:30px 20px 20px;margin:0;}
.orangeBtn{background-color:#fff;border-radius:3px;border:#333 solid 1px;padding:8px 10px;color:#333;font-size:14px;font-weight:600;cursor:pointer;margin:10px;}
.orangeBtn:hover{background-color:#f5f5f5;border:#ddd solid 1px;}
.pageText{color:#707070;font-size:18px;line-height:24px;}
.outerDiv{position:relative;height:60vh;}
.innerDiv{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);}
@media(min-width:1900px){
    .outerDiv{position:relative;height:65vh!important;
    }
}

.orangeBtn a {
  color: #333 !important;
  text-decoration: none;
}

.orangeBtnAlignment {
  padding-top: 12px;
}
.AddMasterPhoneForm .popUpLayoutForm {
	width: 100%;
	padding: 0 10px;
}

/*Tooltip change password*/
#tooltip-reset-password{
  white-space: nowrap;
}

/* Manage TYL Static text section logo
.staticTextSec .imageGallary li{
  height: 150px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 0;
}
.staticTextSec .imageGallary img{
  max-width: 100%;
  max-height: 100%;
  height: auto!important;
  width: auto!important;
}*/

/* Manage TYL Static text section logo */
.staticTextSec .entityCLogo{
  max-width: max-content!important;
}

/* Reassign Drawer spacing fixed*/
.ReassignOpptyForm .formSpacing, .ReassignCompanyForm .formSpacing,
.ReassignContactForm .formSpacing, .ReassignTaskForm .formSpacing{
  padding: 10px 10px 0;

}
div:has(> .filter-menu-portal-class) {
  z-index: 99999;
}

.CompanyDomainForm .errorSummary{
  white-space: pre-line;
}


.posIntial{
    position: initial!important;
   }

   .activity-view-container {
    height: calc(100vh - 250px); /* Initial height, adjust as needed */
    overflow: auto; /* Add scrollbars if content overflows */
  }


/*Action dropdown styleing issue on active */
.dropDownActionMenu .dropdown-item:active {
  background-color: #343434 !important;
}

.dashbaordLoader{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 200px;
  text-align: center;
  padding: 20px;
}

.dashbaordLoaderDiv{
  width: 150px;
  height: 150px;
  margin: 0 auto;
  text-align: center;
  margin-top: 200px;
}

  .mailbox-notify-wrapper .triangle{
    left: 84% !important;
  }

  span.mobSubNav .posRelative.dInBlock.fRight span:nth-child(2)~.notifyWrapper[style*="left: 18px;"] {
    left: 48px !important;
  }

  .company-domains-form label{
    display: none;
  }

  .company-domain-add-more div{
    top: 5px !important;
  }

/* Mass Mail Configuration Drawer styles */
#MassMailConfigFormAction{
	padding: 0 10px;
}
#MassMailConfigFormAction .jodit-wysiwyg{
	height: 250px!important;
}
#MassMailConfigFormAction .formSpacing{
	padding: 10px 0 0;
}
#MassMailConfigFormAction .jodit-react-container{
	margin-bottom: 10px;
}
/* End */


/* Action dropdown styleing issue on active */
.dropDownActionMenu .dropdown-item:active {
  background-color: #343434 !important;
}

/*Automation styles*/
.autoTaskForm .crmCardHeaderForm{
  padding: 10px 10px 0!important;
}
.automationFormPage .PersonlizationBtn{
  position: absolute;
  top: 0;
  right:15px;
}
.automationFormPage .incrementOption{
  margin-top: 42px;
}
.subjectPersonalization .text-right{
  height:auto!important;
}
.btn-Dblue-outline{
  display: inline-block;
  color: #253342;
  background-color: #ffffff;
  border: #253342 1px solid;
  font-size: 14px;
  font-weight: 400;
  border-radius: 2px;
  outline: none;
  box-shadow: none;
  opacity: 1;
  padding: .375rem .65rem;
  line-height: 1.5;
  cursor: pointer;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-Dblue-outline:hover, .btn-Dblue-outline:focus, .btn-Dblue-outline:active{
  background-color: #253342;
  color: #ffffff;
}
.personalisationIcon{
  background-color: #3F9D19;
  padding: 0px;
  border-radius: 2px;
  text-align: center;
  position: absolute;
  right: 5px;
  top: 0px;
  cursor: pointer;
}
.automationTabSec .card-body{
  padding: 0 10px !important;
  margin-top: -10px;
}
.automationTabSec .tabBox{
  border: #EFEFEF solid 1px;
  margin-top: 0px;
}
.automationTabSec #genericTab .tab-content {
  margin: 0px;
}
.automationTabSec #genericTab .tab-content .extraPad10x15{
  border: none!important;
  padding: 10px 5px 0px 10px !important;
}
.automationTabSec .richtextareaHeight{
  margin-bottom: 0px;
}
.automationFormPage .sectionHeaderWithoutBox{
  border: none;
  padding: 0;
  margin-top: -22px;
}
.automationFormPage .sectionHeaderWithoutBox span{
  position: relative;
  top:5px;
}
.automationFormPage .headerStatusClass{
  display: inline-flex;
  justify-content: flex-end;
  position: absolute;
  right: 0;
  top: -20px;
}
.automationFormPage .headerStatusClass label{
  position: relative;
  top: 3px;
  right: 6px;
}
.msgBrdGray:has(.headerStatusClass){
  border:none;
}
.automationBreadCumb{
  padding: 10px 25px 0px !important;
}

.conditionOperatorArea{
  border-top: #efefef solid 1px;
  border-bottom: #efefef solid 1px;
  padding: 10px 10px;
}
.condOperatorSelect{
  width: 24.5%;
}
.addMoreBtn{
  position: relative;
  top: 15px;
}
.autoTaskForm .taskNamePersonalization .text-right{
  height: auto!important;
}
.smsContentLabel label{
  color: #3C7BD1!important;
}
.smsContentLabel svg{
  color: #3C7BD1;
  position: relative;
  top: -4px;
  font-size: 20px;
}
.smsContentLabel .PersonlizationBtn {
  background-color: transparent;
  top: 33px;
  right: 5px
}
.reqDataValueTextarea label{
  display: none;
}
.reqDataValueTextarea textarea{
  position: relative;
  top: -8px;
  min-height: 80px;
}
.automationFormPage .jodit-placeholder{
  z-index: auto;
}
.automationEntityTypeImg{
  position: relative;
  top: -20px;
}
.automationFormPage #mainErrorDiv{
  margin-top: -20px;
  margin-bottom: 20px;
}

.automationFormPage .smsContentLabel .PersonlizationBtn svg{
  color: #3C7BD1;
  position: relative;
  top: 0px;
  right: -12px;
  font-size: 20px;
}
.automationFormPage .smsContentLabel .PersonlizationBtn {
  background-color: transparent;
  top: 20px;
  right: 5px
}
.msgBrdGray:has(.jsxFormStyleOverwrite){
  padding: 0px !important;
  margin: 0px !important;
  border-bottom: 1px solid #efefef !important;
  border-left: 1px solid #efefef !important;
  border-right: 1px solid #efefef !important;
  border-top: none !important;
}
.jsxFormStyleOverwrite .card-body{
  padding: 0px!important;
}
.jsxFormStyleOverwrite .sectionHeaderBox{
  border-left:none;
  border-right:none;
  border-bottom: 1px solid #efefef !important;
}
.jsxFormStyleOverwrite .msgBrdGray{
  border:none;
}
.jsxBtnSec{
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.jsxFormStyleOverwrite .reqDataValueTextarea label{
  display: block;
}
.jsxFormStyleOverwrite .reqDataValueTextarea .text-right{
  height: auto!important;
  padding-top: 10px;
}

.automationFormPage .jsxFormStyleOverwrite .table-responsive{
  max-height: 300px;
  padding: 0px;
}
.automationFormPage .reqDataValueJson .text-right{
  height: auto!important;
}
.automationFormPage .jsxFormStyleOverwrite .tableGrid .tableGridFilter .form-control{
  background: #fff;
  border: #CCCCCC solid 1px;
  height: 39px;
  border-radius: 0px;
  color: #000000;
  opacity: 1;
  font-size: 14px;
}
span.mappingIcon {
  position: absolute;
  top: 10px;
  right: -34px;
}
.dataValuePullLeft{
  padding-left: 50px!important;
}
.automationHeaderRightImg{
  position: absolute;
  right: 15px;
  top: -40px;
}
/*
.automationFormPage .jsxFormStyleOverwrite .PersonlizationBtn::after{
  content: "?";
    font-size: 12px;
    color: #666666;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: #D7D7D7 solid 1px;
    padding-left: 5px;
}

.automationFormPage .jsxFormStyleOverwrite .PersonlizationBtn {
  border: #D7D7D7 solid 1px;
  padding: 0;
  width: 60px;
  border-radius: 4px;
  top: -4px;
  right: 5px;
}*/
.jodit-toolbar-button__text{
  text-align: left!Important;
}

.pre_tag_grid{
  display: table-cell;
  vertical-align: middle;
  padding: 9px;
  line-height: 1.10;
  color: #333333;
  white-space: pre-wrap;
  word-wrap: break-word;
  min-height: 35px;
  max-height: 150px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 14px;
}


  .mapArrowPre{
    position: relative;
    padding-left: 20px!important;
  }
   .mapArrowPre::before {
    content: "?";
    position: absolute;
    left: -18px;
    top: -5px;
    /*transform: translateY(-30%);*/
    font-size: 38px;
    color: #958e8e;
  }
  /* CRM Lead styles */
  .manageLeadView {
    padding: 0 10px 10px;
  }
  .manageLeadView .tabBox{
    border: #EFEFEF solid 1px;
  }
  .leadActionButton{
    position: absolute;
    z-index: 99;
    right: 25px;
    margin-top: 1px;
  }
  .leadActionButton button{
    padding: .200rem .75rem!important;
    position: relative;
    top: 5px;
    right: 5px;
  }
  .leadActionButton  button span{
    font-size: 14px!important;
  }
  .leadCustomSuccessBtn{
    position: absolute;
    z-index: 99;
    right: 33px;
    margin-top: 7px !important;
    padding: 2px 6px;
  }
  .leadCustomSuccessBtn svg {
    position: relative;
    top: -2px;
  }
  .addMappingBtn{
    position: absolute;
    top: -71px;
    right: -11px;
    width: 110px;
  }
  .noRecFoundTableRow{
    border-top: 1px solid #E2E2E2;
  }

  .importHelpText ul{
    padding: 0;
    list-style: none;
}  .crmLeadEntityImportForm sup{
    position: absolute;
    top: unset;
    bottom: 32px;
    left: auto!important;
    z-index:1;
  }
  .importHelpText ul>li{
    font-size: 14px;
    line-height: 24px;
  }
  .importHelpText ul>li svg{
    margin-right: 10px;
  }
  .importLeadCustomFieldSec + .msgBrdGray.alertField.formSpacing.col-sm-12 sup{
    position: absolute;
    top: 15px;
    left: 102px!important;
    z-index:1;
  }
  .importHelpText ul{
    padding: 0;
    list-style: none;
  }
  .importHelpText ul>li{
    font-size: 14px;
    line-height: 24px;
  }
  .importHelpText ul>li svg{
    margin-right: 10px;
  }

  /*Custom Entity Field Redesign*/
  .customFieldGridSection{
    position: relative;
    z-index: 0;
  }

/*CRM Lead Activity Form*/
.crmLeadActivityFormSec{
  margin: 0 10px;
}

.crmLeadActivityFormSec .cannedUpload.docUpload {
  max-width: 100%;
  padding:22px 0;
}
.crmLeadActivityFormSec .cannedUpload .dzu-dropzone{
  min-height: 274px!important;
}

/* CRM Contact Lead Activity Form */
.crmOtgContactActivityFormSec .cannedUpload.docUpload {
  max-width: 100%;
  padding:22px 0;
}
.crmOtgContactActivityFormSec .cannedUpload .dzu-dropzone{
  min-height: 274px!important;
}

.accessFilterInput{
  background: transparent;
  border-radius: 2px;
  border: #EFEFEF solid 1px;
  color: #454545;
  line-height: 22px;
  opacity: 1;
  cursor: pointer;
  width: 130px;
}

.callContactDetailContainer{
  border: 2px #E7E9E9 solid;
  border-top: none;
}

.dark-blue-bg{
  background-color: #13305E!important;
}

.dark-blue{
  color: #13305E!important;
}

.dark-blue-border{
  border:1px solid #13305E!important;
}
/* .endCallDispo .modal-title */
.modal.modal-bottom .endCallDispo .modal-header div.modal-title{
  color:white!important;
}
.endCallDispo .modal-header{
  background-color:#13305E!important;
}
.dark-red-btn,.dark-red-btn:hover{
  background-color: #D60000;
  border: 1px #D60000 solid;
  color:white;
}

.colorInherit{
  color:inherit !important;
}
.btn-green-bordered {
  color: #3F9D00 !important;
  font-size: 14px !important;
  background-color: #FFFFFF !important;
  border: #3F9D00 1px solid !important;
  opacity: 1;
  padding: .375rem .65rem;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-green-bordered:hover, .btn-green-bordered:focus, .btn-green-bordered:active {
  color: #FFFFFF !important;
  background-color: #3F9D00 !important;
  opacity: 1;
}

.headerPhoneEmail {
    display: flex;
    gap: 50px; /* Adjust spacing between email & phone dropdowns */
    align-items: flex-start; /* Aligns items at the top */
    flex-wrap: wrap; /* Allows them to wrap on small screens */
}

.headerPhoneEmailDropMenu {
    display: inline-block;
    border-right-width: 15px;
    padding-right: 250px;
}

.headerPhoneEmailDropMenuArrow {
  padding-right: 0px;
}

.headingCommDrawer{
    padding-bottom: 1px;
}

.addNavCommunicationModal .modalArrowIcon{
  display: none;
}

.addNavCommunicationModal .modal-header{
  padding-bottom: 0px;
}

.addNavCommunicationModal .card-body{
  padding-bottom: 0px;
}

.addMappingBtn {
  position: absolute;
  right: 4px;
  top: -20px;
}

.donation-header-incomplete{
  background-color: #d60000 !important;
  opacity: 0.1;
}
.donation-header-inprogress{
  background-color: #f88b2c !important;
  opacity: 0.1;
}
.donation-header-complete{
  background-color: #3F9D19 !important;
  opacity: 0.1;
}
.donation-header-child{
  opacity: 1 !important;
}
.customEmailHeader{
  text-transform: none;
}
.btn-grey{
  background-color: #C7C7C7 !important;
  color: #000 !important;
  border: none !important;
  font-size: 14px !important;
  opacity: 1;
  padding: .375rem .65rem;
  font-weight: 400;
  cursor: pointer;
}

.crmDataValueTextarea .PersonlizationBtn{
  position: absolute;
  right:15px;
  top:-5px
}
.crmDataValueTextarea .text-right{
  height: 0px!important;
}
.info-box{
    background: #fefdf6;
    border: 1px solid #ead43e;
    padding:5px;
}
.coreUserForm .crmAdminCardHeaderForm{
  background-color: #fff !important;
  padding-top: 10px !important;
  padding-left: 7px !important;
  padding-right: 7px !important;
}
/*Callback At Month title style*/
.react-calendar__tile.react-calendar__year-view__months__month.callbackCalendarTile{
  padding: 1.5em 0.5em!important;
}

/*Automation CRM action style*/
.AutoCrmActionsForm .craSection .sectionHeaderBox {
  border-bottom: 1px solid #E2E2E2;
} 
/*[Manage Custom Entities] Need to increase the height of the grid*/
.table-responsive:has(> table.manageCustEntitiesGrid) {
  max-height: 100vh;
} /* Input Styles */
.inputGray .redCustInput{
  background: #f90909;
  border-radius: 0px;
  border: #EFEFEF solid 1px;
  color: #ffffff;
  font-size: 14px;
  line-height: 17px;
  opacity: 1;
  height: 42px;
  padding: .375rem .75rem;
  width:100%
}

.importErrorSec .card-body {
  padding: 0px !important;
}
.multiSelectInclude .selectInputField > div:first-child {
  max-height: 120px;
  overflow-y: auto;
}
/*Automation api synch form automation type*/
.FieldMappingForm .action button span{
  right: 10px;
}
.disabledFieldLabel {
  color: #354957 !important;
}

/*Set Defalt Call Back Drawer*/
.showDefaultCallbackQueueDrawer .card-body{
  padding: 0!important;
}

/*Change password screen tooltip arrow position set*/
#root:has(#ChangePasswordForm_password) ~ div.toolTipsWrapper.show .bs-popover-right > .arrow {
transform: rotate(90deg);
left: 20px!important;
top: -17px!important;
}
#root:has(#UserPasswordForm_password) ~ div.toolTipsWrapper.show .bs-popover-right > .arrow {
transform: rotate(90deg);
left: 20px!important;
top: -17px!important;
}
/* Custom Button Position for Deidentify Contact button - Fix Version: NAV Version 3 */
.custBtnPositionBottom {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

/* Custom Toggle For Admin DSR */
.customToggle .react-switch-bg[style*="width: 65px;"] {
    width: 88px !important;
}
.customToggle .react-switch-handle[style*="transform: translateX(38px);"] {
    transform: translateX(61px) !important;
}

.map-multiple-contact{
  height: auto;
  max-height: 50vh;
}

/* Tooltip Wrapper NAV*/
.toolTipsWrapperfe{
  display: block;
  width: 100%;
  max-width: 470px;
}
.toolTipsWrapperfe .popover-body{
  box-sizing: border-box;
  white-space: normal;
  width: max-content;
}
.toolTipsWrapperfe .popover{
  max-width: max-content;
}

/*Nonprofit detail Grouping drawer spacing */
.NavGroupingForm .formSpacing {
  padding: 10px 10px 0;
}

/* Extra margin top */
.mt-6,
.my-6 {
  margin-top: 4rem !important;
}

/*CRM lock drawer message*/
.crm-lock-drawer-message .modal-header .close{
  color:#000!important;
}
.InviteUserForm {
  padding: 0 5px!important;
}
.InviteUserForm .formSpacing {
  padding: 10px 5px 0 5px!important;
}
.InstanceUserRelateForm {
  margin: 0 15px!important;
}
.InstanceUserRelateForm .formSpacing {
  padding: 10px 5px 0 5px!important;
}

.dashboard-custom-action{
    position: absolute;
    top: -1px;
    right: 133px;
    max-width: 400px;
}
/* BIG Switch CSS */
@scope (.bigSwitch) {
  .react-switch-bg {
    width: 100px !important;
  }
  .react-switch-bg > div:first-child {
    color: #FFFFFF !important;
  }
  .react-switch-bg > div {
    width: 70px !important;
    top: 3px !important;
  }
  .react-switch-handle[style*="transform: translateX(38px);"] {
    transform: translateX(73px) !important;
  }
}
/* Input with loader styles */
.simple-input-wrapper {
  position: relative;
}

.simple-input-wrapper input {
  padding-right: 36px; /* space for loader */
}

.input-loader {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.simple-input-wrapper {
  position: relative;
  overflow: visible;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  box-sizing: border-box;

  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: #000;

  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

