@import url("https://use.typekit.net/sqg7thj.css");
body {
  font-family: effra, sans-serif;
  font-weight: 400;
}

@-webkit-keyframes flickerAnimation {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.5;
  }
}

@keyframes flickerAnimation {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.5;
  }
}

.main-loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 80vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-loading .image-container {
  max-height: 100px;
  -webkit-animation: flickerAnimation 2s infinite;
          animation: flickerAnimation 2s infinite;
  -webkit-filter: grayscale(70%);
          filter: grayscale(70%);
}

.main-loading .image-container img {
  height: 100%;
  max-height: 120px;
}

#agent-home-page {
  min-height: 100%;
}

.pointer {
  cursor: pointer;
}

.custom-file-input ~ .custom-file-label::after {
  content: "" !important;
  border: 0 none !important;
}

.custom-file-input {
  width: 130px;
}

.custom-file-label {
  width: 110px;
  padding: 1rem;
  border: 1px solid #59D0E4;
  border-radius: 3px;
  text-align: center;
  cursor: pointer !important;
}

input.custom-file-input {
  cursor: pointer !important;
  width: 110px !important;
}

.transaction-modal {
  position: fixed;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(153, 153, 153, 0.3);
  top: 0;
  left: 0;
}

.transaction-modal .modal-container {
  border-radius: 12px;
  width: 100%;
  margin: auto;
  max-width: 500px;
  background-color: #fff;
  overflow: hidden;
}

.transaction-modal .modal-container .modal-container-header {
  background-color: #555195;
  color: #fff;
  text-align: center;
  position: relative;
}

.transaction-modal .modal-container .modal-container-body {
  max-height: 500px;
  overflow-y: auto;
}

#dashboard-builder-container {
  width: 100% !important;
  max-width: 100% !important;
}

.react-bootstrap-table-pagination-list-hidden {
  display: none;
}

.log-delete-modal {
  position: fixed;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(15, 40, 55, 0.2);
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.log-delete-modal .modal-container {
  border-radius: 12px;
  width: 100%;
  margin: auto;
  max-width: 600px;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  height: 390px !important;
  width: 600px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.log-delete-modal .modal-container .modal-container-body {
  max-height: 380px;
  max-width: 400px;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  margin-top: 34px;
  margin-bottom: 28px;
}

.log-delete-modal .modal-container .modal-container-body img {
  width: 164px;
}

.log-delete-modal .modal-container .delete-message {
  width: 60%;
  margin: auto;
  margin-block: 0px;
  font-size: 15px;
  text-align: center;
}

.log-delete-modal .modal-container .dark-green-span {
  color: #00594F;
}

.log-delete-modal .modal-container .modal-container-footer {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: auto;
  margin-top: 46px;
}

.log-delete-modal .modal-container .modal-container-footer .delete-btn {
  height: 40px;
  width: 40px;
  border-radius: 4px;
  border: 1px solid #FF7575;
  color: white;
  font-size: 15px;
  background-color: #FF7575;
  width: 150px;
  height: 40px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  font-weight: normal;
}

.log-delete-modal .modal-container .modal-container-footer .delete-btn:hover {
  background-color: #ff4242;
  border-color: #ff4242;
  color: white;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.log-delete-modal .modal-container .modal-container-footer .cancel-btn {
  height: 40px;
  width: 40px;
  border-radius: 4px;
  border: 1px solid #59D0E4;
  color: #59D0E4;
  font-size: 15px;
  background-color: white;
  width: 150px;
  height: 40px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  font-weight: normal;
}

.log-delete-modal .modal-container .modal-container-footer .cancel-btn:hover {
  background-color: #59D0E4;
  color: white;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.log-history-modal {
  position: fixed;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(15, 40, 55, 0.2);
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.log-history-modal .modal-container {
  border-radius: 12px;
  width: 100%;
  margin: auto;
  max-width: 700px;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}

.log-history-modal .modal-container .modal-container-header {
  background-color: #fff;
  color: #59D0E4;
  text-align: center;
  position: relative;
  padding-top: 50px;
  font-size: 18px;
  border-radius: 10px;
}

.log-history-modal .modal-container .modal-container-body {
  height: 100%;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
}

.log-history-modal .modal-container .modal-container-body .expand-cell-header {
  display: none !important;
}

.log-history-modal .modal-container .modal-container-body .fa-chevron-circle-up, .log-history-modal .modal-container .modal-container-body .fa-chevron-circle-down {
  color: #59D0E4;
  font-size: 16px;
}

.log-history-modal .modal-container .modal-container-footer {
  padding: 30px;
  position: absolute;
  bottom: 0px;
}

.log-history-modal .modal-container .modal-container-footer .log-btn {
  height: 40px;
  width: 40px;
  border-radius: 4px;
  border: 1px solid #59D0E4;
  color: #59D0E4;
  font-size: 15px;
  background-color: #fff;
  width: 150px;
  height: 40px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.log-history-modal .modal-container .modal-container-footer .log-btn:hover {
  background-color: #59D0E4;
  color: white;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.log-history-modal .reciver-badge {
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 12px;
  margin: 3px;
}

.log-history-modal .reciver-badge p {
  margin-bottom: 0px;
  color: #000000;
}

.log-history-modal .reciver-badge .fa {
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
}

.log-history-modal .reciver-badge.success {
  background: #D7F0EF;
}

.log-history-modal .reciver-badge.success .fa {
  color: #01AA84;
}

.log-history-modal .reciver-badge.danger {
  background-color: #FDE0E0;
}

.log-history-modal .reciver-badge.danger .fa {
  color: #FF7575;
}

/* CSS variables. */
:root {
  --PhoneInput-color--focus: #03b2cb;
  --PhoneInputInternationalIconPhone-opacity: 0.8;
  --PhoneInputInternationalIconGlobe-opacity: 0.65;
  --PhoneInputCountrySelect-marginRight: 0.35em;
  --PhoneInputCountrySelectArrow-width: 0.3em;
  --PhoneInputCountrySelectArrow-marginLeft: var(--PhoneInputCountrySelect-marginRight);
  --PhoneInputCountrySelectArrow-marginTop: calc(var(--PhoneInputCountrySelectArrow-height) / 2);
  --PhoneInputCountrySelectArrow-borderWidth: 1px;
  --PhoneInputCountrySelectArrow-opacity: 0.45;
  --PhoneInputCountrySelectArrow-color: inherit;
  --PhoneInputCountrySelectArrow-color--focus: var(--PhoneInput-color--focus);
  --PhoneInputCountrySelectArrow-transform: rotate(45deg);
  --PhoneInputCountryFlag-aspectRatio: 1.5;
  --PhoneInputCountryFlag-height: 1em;
  --PhoneInputCountryFlag-borderWidth: 1px;
  --PhoneInputCountryFlag-borderColor: rgba(0,0,0,0.5);
  --PhoneInputCountryFlag-borderColor--focus: var(--PhoneInput-color--focus);
  --PhoneInputCountryFlag-backgroundColor--loading: rgba(0,0,0,0.1);
}

.PhoneInput {
  /* This is done to stretch the contents of this component. */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.PhoneInputInput {
  /* The phone number input stretches to fill all empty space */
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  /* The phone number input should shrink
       to make room for the extension input */
  min-width: 0;
}

.PhoneInputCountryIcon {
  width: calc(1em * 1.5);
  width: calc(var(--PhoneInputCountryFlag-height) * var(--PhoneInputCountryFlag-aspectRatio));
  height: 1em;
  height: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--square {
  width: 1em;
  width: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--border {
  /* Removed `background-color` because when an `<img/>` was still loading
       it would show a dark gray rectangle. */
  /* For some reason the `<img/>` is not stretched to 100% width and height
       and sometime there can be seen white pixels of the background at top and bottom. */
  background-color: rgba(0, 0, 0, 0.1);
  background-color: var(--PhoneInputCountryFlag-backgroundColor--loading);
  /* Border is added via `box-shadow` because `border` interferes with `width`/`height`. */
  /* For some reason the `<img/>` is not stretched to 100% width and height
       and sometime there can be seen white pixels of the background at top and bottom,
       so an additional "inset" border is added. */
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor), inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor);
          box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor), inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor);
}

.PhoneInputCountryIconImg {
  /* Fixes weird vertical space above the flag icon. */
  /* https://gitlab.com/catamphetamine/react-phone-number-input/-/issues/7#note_348586559 */
  display: block;
  /* 3rd party <SVG/> flag icons won't stretch if they have `width` and `height`.
       Also, if an <SVG/> icon's aspect ratio was different, it wouldn't fit too. */
  width: 100%;
  height: 100%;
}

.PhoneInputInternationalIconPhone {
  opacity: 0.8;
  opacity: var(--PhoneInputInternationalIconPhone-opacity);
}

.PhoneInputInternationalIconGlobe {
  opacity: 0.65;
  opacity: var(--PhoneInputInternationalIconGlobe-opacity);
}

/* Styling native country `<select/>`. */
.PhoneInputCountry {
  position: relative;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0.35em;
  margin-right: var(--PhoneInputCountrySelect-marginRight);
}

.PhoneInputCountrySelect {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  border: 0;
  opacity: 0;
  cursor: pointer;
}

.PhoneInputCountrySelect[disabled] {
  cursor: default;
}

.PhoneInputCountrySelectArrow {
  display: block;
  content: '';
  width: 0.3em;
  width: var(--PhoneInputCountrySelectArrow-width);
  height: 0.3em;
  height: var(--PhoneInputCountrySelectArrow-width);
  margin-top: calc(var(--PhoneInputCountrySelectArrow-height) / 2);
  margin-top: var(--PhoneInputCountrySelectArrow-marginTop);
  margin-left: 0.35em;
  margin-left: var(--PhoneInputCountrySelectArrow-marginLeft);
  border-style: solid;
  border-color: inherit;
  border-color: var(--PhoneInputCountrySelectArrow-color);
  border-top-width: 0;
  border-bottom-width: 1px;
  border-bottom-width: var(--PhoneInputCountrySelectArrow-borderWidth);
  border-left-width: 0;
  border-right-width: 1px;
  border-right-width: var(--PhoneInputCountrySelectArrow-borderWidth);
  -webkit-transform: rotate(45deg);
  -webkit-transform: var(--PhoneInputCountrySelectArrow-transform);
  transform: rotate(45deg);
  transform: var(--PhoneInputCountrySelectArrow-transform);
  opacity: 0.45;
  opacity: var(--PhoneInputCountrySelectArrow-opacity);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon + .PhoneInputCountrySelectArrow {
  opacity: 1;
  color: #03b2cb;
  color: var(--PhoneInputCountrySelectArrow-color--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon--border {
  -webkit-box-shadow: 0 0 0 1px #03b2cb, inset 0 0 0 1px #03b2cb;
          box-shadow: 0 0 0 1px #03b2cb, inset 0 0 0 1px #03b2cb;
  -webkit-box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus), inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus);
          box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus), inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon .PhoneInputInternationalIconGlobe {
  opacity: 1;
  color: #03b2cb;
  color: var(--PhoneInputCountrySelectArrow-color--focus);
}

* {
  outline: none !important;
}

.select-list-container {
  font-size: 15px;
}

.select-list-container > div {
  background-color: #fff;
  border: 1px solid rgba(15, 40, 55, 0.33);
  border-radius: 4px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  font-size: 1.3rem;
  min-height: 4rem;
  -webkit-box-shadow: 0 0 0 transparent !important;
          box-shadow: 0 0 0 transparent !important;
}

.select-list-container > div:hover {
  border: 1px solid rgba(89, 208, 228, 0.6);
}

.select-list-container > div:active, .select-list-container > div:focus {
  border: 1px solid #59D0E4;
}

.select-list-container > div.error {
  border: 1px solid #b41932;
}

.select-list-container .css-1fhf3k1-control {
  background-color: #f2f2f2;
}

.text-box {
  background-color: #fff;
  border: 1px solid rgba(15, 40, 55, 0.33);
  border-radius: 4px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  font-size: 1.3rem;
  min-height: 4rem;
  padding: 1rem;
}

.text-box:hover {
  border: 1px solid rgba(89, 208, 228, 0.6);
}

.text-box:active, .text-box:focus {
  border: 1px solid #59D0E4;
}

.text-box.error {
  border: 1px solid #b41932;
}

.text-box::-webkit-input-placeholder {
  color: #ddd;
}

.text-box:-ms-input-placeholder {
  color: #ddd;
}

.text-box::-ms-input-placeholder {
  color: #ddd;
}

.text-box::placeholder {
  color: #ddd;
}

.text-box:disabled {
  background-color: #EEE;
}

.text-box:disabled::-webkit-input-placeholder {
  color: #AAA;
}

.text-box:disabled:-ms-input-placeholder {
  color: #AAA;
}

.text-box:disabled::-ms-input-placeholder {
  color: #AAA;
}

.text-box:disabled::placeholder {
  color: #AAA;
}

.phone-box {
  background-color: #fff;
  border: 1px solid rgba(15, 40, 55, 0.33);
  border-radius: 4px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  font-size: 1.3rem;
  min-height: 4rem;
  padding: 0rem 1rem;
}

.phone-box .PhoneInputInput {
  border: 0 none !important;
  padding: 8px;
}

.full-width {
  min-width: 100%;
}

label {
  font-weight: 400;
  font-size: 1.5rem;
  color: #59D0E4;
}

.primary-color-background {
    background-color: #59D0E4 !important;
}

.secondary-color-background {
    background-color: #555195 !important;
}
.service-btn {
  width: auto;
  display: inline-block;
  text-align: center;
  font-weight: lighter;
  text-decoration: none !important;
  text-transform: uppercase;
  background-color: #59D0E4;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #fff !important;
  line-height: 3.4rem !important;
  padding: 0rem 5rem;
  padding-top: 0.2rem;
  border: 0 none !important;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.service-btn:disabled {
  background-color: #76bbc7;
  color: #f2f2f2 !important;
  cursor: not-allowed;
}

.service-btn:not(:disabled):hover {
  background-color: #85dceb;
}

.service-btn:not(:disabled):focus {
  background-color: #43cae0;
}

.service-btn.accent {
  width: auto;
  display: inline-block;
  text-align: center;
  font-weight: lighter;
  text-decoration: none !important;
  text-transform: uppercase;
  background-color: #b41932;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #fff !important;
  line-height: 3.4rem !important;
  padding: 0rem 5rem;
  padding-top: 0.2rem;
  border: 0 none !important;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.service-btn.accent:disabled {
  background-color: #953847;
  color: #f2f2f2 !important;
  cursor: not-allowed;
}

.service-btn.accent:not(:disabled):hover {
  background-color: #e0203f;
}

.service-btn.accent:not(:disabled):focus {
  background-color: #9e162c;
}

.service-btn.brand-light {
  width: auto;
  display: inline-block;
  text-align: center;
  font-weight: lighter;
  text-decoration: none !important;
  text-transform: uppercase;
  background-color: #9be3ef;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #fff !important;
  line-height: 3.4rem !important;
  padding: 0rem 5rem;
  padding-top: 0.2rem;
  border: 0 none !important;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.service-btn.brand-light:disabled {
  background-color: #acd6dd;
  color: #f2f2f2 !important;
  cursor: not-allowed;
}

.service-btn.brand-light:not(:disabled):hover {
  background-color: #c7eff6;
}

.service-btn.brand-light:not(:disabled):focus {
  background-color: #85dceb;
}

.service-btn.secondary {
  width: auto;
  display: inline-block;
  text-align: center;
  font-weight: lighter;
  text-decoration: none !important;
  text-transform: uppercase;
  background-color: #555195;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #fff !important;
  line-height: 3.4rem !important;
  padding: 0rem 5rem;
  padding-top: 0.2rem;
  border: 0 none !important;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.service-btn.secondary:disabled {
  background-color: #737373;
  color: #f2f2f2 !important;
  cursor: not-allowed;
}

.service-btn.secondary:not(:disabled):hover {
  background-color: #6f6bae;
}

.service-btn.secondary:not(:disabled):focus {
  background-color: #4c4884;
}

.service-btn.secondary-dark {
  width: auto;
  display: inline-block;
  text-align: center;
  font-weight: lighter;
  text-decoration: none !important;
  text-transform: uppercase;
  background-color: #eb5a3c;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #fff !important;
  line-height: 3.4rem !important;
  padding: 0rem 5rem;
  padding-top: 0.2rem;
  border: 0 none !important;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.service-btn.secondary-dark:disabled {
  background-color: #cb6f5c;
  color: #f2f2f2 !important;
  cursor: not-allowed;
}

.service-btn.secondary-dark:not(:disabled):hover {
  background-color: #f0816a;
}

.service-btn.secondary-dark:not(:disabled):focus {
  background-color: #e94625;
}

.text-btn {
  width: auto;
  display: inline-block;
  text-align: center;
  font-weight: lighter;
  text-decoration: none !important;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #9be3ef !important;
  line-height: 3.4rem !important;
  padding: 0rem 5rem;
  padding-top: 0.2rem;
  border: 0 none !important;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.text-btn:disabled {
  background-color: rgba(0, 0, 0, 0);
  color: #85dceb !important;
  cursor: not-allowed;
}

.text-btn:not(:disabled):hover {
  background-color: rgba(26, 26, 26, 0);
}

.text-btn:not(:disabled):focus {
  background-color: rgba(0, 0, 0, 0);
}

.text-btn.accent {
  width: auto;
  display: inline-block;
  text-align: center;
  font-weight: lighter;
  text-decoration: none !important;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #b41932 !important;
  line-height: 3.4rem !important;
  padding: 0rem 5rem;
  padding-top: 0.2rem;
  border: 0 none !important;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.text-btn.accent:disabled {
  background-color: rgba(0, 0, 0, 0);
  color: #9e162c !important;
  cursor: not-allowed;
}

.text-btn.accent:not(:disabled):hover {
  background-color: rgba(26, 26, 26, 0);
}

.text-btn.accent:not(:disabled):focus {
  background-color: rgba(0, 0, 0, 0);
}

.text-btn.brand-light {
  width: auto;
  display: inline-block;
  text-align: center;
  font-weight: lighter;
  text-decoration: none !important;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #9be3ef !important;
  line-height: 3.4rem !important;
  padding: 0rem 5rem;
  padding-top: 0.2rem;
  border: 0 none !important;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.text-btn.brand-light:disabled {
  background-color: rgba(0, 0, 0, 0);
  color: #85dceb !important;
  cursor: not-allowed;
}

.text-btn.brand-light:not(:disabled):hover {
  background-color: rgba(26, 26, 26, 0);
}

.text-btn.brand-light:not(:disabled):focus {
  background-color: rgba(0, 0, 0, 0);
}

.text-btn.secondary {
  width: auto;
  display: inline-block;
  text-align: center;
  font-weight: lighter;
  text-decoration: none !important;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #555195 !important;
  line-height: 3.4rem !important;
  padding: 0rem 5rem;
  padding-top: 0.2rem;
  border: 0 none !important;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.text-btn.secondary:disabled {
  background-color: rgba(0, 0, 0, 0);
  color: #4c4884 !important;
  cursor: not-allowed;
}

.text-btn.secondary:not(:disabled):hover {
  background-color: rgba(26, 26, 26, 0);
}

.text-btn.secondary:not(:disabled):focus {
  background-color: rgba(0, 0, 0, 0);
}

.text-btn.secondary-dark {
  width: auto;
  display: inline-block;
  text-align: center;
  font-weight: lighter;
  text-decoration: none !important;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #eb5a3c !important;
  line-height: 3.4rem !important;
  padding: 0rem 5rem;
  padding-top: 0.2rem;
  border: 0 none !important;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.text-btn.secondary-dark:disabled {
  background-color: rgba(0, 0, 0, 0);
  color: #e94625 !important;
  cursor: not-allowed;
}

.text-btn.secondary-dark:not(:disabled):hover {
  background-color: rgba(26, 26, 26, 0);
}

.text-btn.secondary-dark:not(:disabled):focus {
  background-color: rgba(0, 0, 0, 0);
}

.bordered-btn {
  width: auto;
  display: inline-block;
  text-align: center;
  font-weight: lighter;
  text-decoration: none !important;
  text-transform: capitalize;
  background-color: transparent;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #9be3ef !important;
  line-height: 3.2rem !important;
  padding: 0rem 4rem;
  padding-top: 0.2rem;
  border: 1px solid #9be3ef;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.bordered-btn:disabled {
  background-color: #9be3ef;
  color: #eeeeee;
  cursor: not-allowed;
}

.bordered-btn:not(:disabled):hover {
  background-color: white;
}

.bordered-btn:not(:disabled):focus {
  border-color: #85dceb;
}

.bordered-btn.accent {
  width: auto;
  display: inline-block;
  text-align: center;
  font-weight: lighter;
  text-decoration: none !important;
  text-transform: capitalize;
  background-color: transparent;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #b41932 !important;
  line-height: 3.2rem !important;
  padding: 0rem 4rem;
  padding-top: 0.2rem;
  border: 1px solid #b41932;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.bordered-btn.accent:disabled {
  background-color: #b41932;
  color: #eeeeee;
  cursor: not-allowed;
}

.bordered-btn.accent:not(:disabled):hover {
  background-color: #f19dab;
}

.bordered-btn.accent:not(:disabled):focus {
  border-color: #9e162c;
}

.bordered-btn.brand-light {
  width: auto;
  display: inline-block;
  text-align: center;
  font-weight: lighter;
  text-decoration: none !important;
  text-transform: capitalize;
  background-color: transparent;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #9be3ef !important;
  line-height: 3.2rem !important;
  padding: 0rem 4rem;
  padding-top: 0.2rem;
  border: 1px solid #9be3ef;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.bordered-btn.brand-light:disabled {
  background-color: #9be3ef;
  color: #eeeeee;
  cursor: not-allowed;
}

.bordered-btn.brand-light:not(:disabled):hover {
  background-color: white;
}

.bordered-btn.brand-light:not(:disabled):focus {
  border-color: #85dceb;
}

.bordered-btn.secondary {
  width: auto;
  display: inline-block;
  text-align: center;
  font-weight: lighter;
  text-decoration: none !important;
  text-transform: capitalize;
  background-color: transparent;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #555195 !important;
  line-height: 3.2rem !important;
  padding: 0rem 4rem;
  padding-top: 0.2rem;
  border: 1px solid #555195;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.bordered-btn.secondary:disabled {
  background-color: #555195;
  color: #eeeeee;
  cursor: not-allowed;
}

.bordered-btn.secondary:not(:disabled):hover {
  background-color: #c9c7e1;
}

.bordered-btn.secondary:not(:disabled):focus {
  border-color: #4c4884;
}

.bordered-btn.secondary-dark {
  width: auto;
  display: inline-block;
  text-align: center;
  font-weight: lighter;
  text-decoration: none !important;
  text-transform: capitalize;
  background-color: transparent;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #eb5a3c !important;
  line-height: 3.2rem !important;
  padding: 0rem 4rem;
  padding-top: 0.2rem;
  border: 1px solid #eb5a3c;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.bordered-btn.secondary-dark:disabled {
  background-color: #eb5a3c;
  color: #eeeeee;
  cursor: not-allowed;
}

.bordered-btn.secondary-dark:not(:disabled):hover {
  background-color: #fdefec;
}

.bordered-btn.secondary-dark:not(:disabled):focus {
  border-color: #e94625;
}

.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 5px;
  padding-top: 3px;
  cursor: pointer;
  font-size: 13px;
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.control_indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #FFF;
  border: 2px solid #59D0E4;
}

.control:hover input ~ .control_indicator,
.control input:focus ~ .control_indicator {
  background: #FFF;
}

.control input:checked ~ .control_indicator {
  background: #FFFFFF;
}

.control:hover input:not([disabled]):checked ~ .control_indicator,
.control input:checked:focus ~ .control_indicator {
  background: #FFF;
}

.control input:disabled ~ .control_indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}

.control_indicator:after {
  -webkit-box-sizing: unset;
          box-sizing: unset;
  content: '';
  position: absolute;
  display: none;
}

.control input:checked ~ .control_indicator:after {
  display: block;
}

.control-radio .control_indicator {
  border-radius: 50%;
}

.control-radio .control_indicator:after {
  left: 3px;
  top: 3px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #b41932;
  -webkit-transition: background 250ms;
  transition: background 250ms;
}

.control-radio input:disabled ~ .control_indicator:after {
  background: #7b7b7b;
}

.control-radio .control_indicator::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 4.5rem;
  height: 4.5rem;
  margin-left: -1.3rem;
  margin-top: -1.3rem;
  background: #FFF;
  border-radius: 3rem;
  opacity: 0.6;
  z-index: 99999;
  -webkit-transform: scale(0);
          transform: scale(0);
}

@-webkit-keyframes s-ripple {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  20% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0.01;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes s-ripple {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  20% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0.01;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes s-ripple-dup {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  30% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes s-ripple-dup {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  30% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.control-radio input + .control_indicator::before {
  -webkit-animation: s-ripple 250ms ease-out;
          animation: s-ripple 250ms ease-out;
}

.control-radio input:checked + .control_indicator::before {
  -webkit-animation-name: s-ripple-dup;
          animation-name: s-ripple-dup;
}

.react-datepicker-popper {
  font-size: 14px;
}

.react-datepicker-popper .react-datepicker {
  font-size: 1.1rem;
  border: 0 none;
  -webkit-box-shadow: 1px 1px 4px rgba(51, 51, 51, 0.3);
          box-shadow: 1px 1px 4px rgba(51, 51, 51, 0.3);
  border-radius: 5px;
}

.react-datepicker-popper .react-datepicker .react-datepicker__day-name, .react-datepicker-popper .react-datepicker .react-datepicker__day, .react-datepicker-popper .react-datepicker .react-datepicker__time-name {
  width: 2.5rem;
  line-height: 2.5rem;
}

.react-datepicker-popper .react-datepicker .react-datepicker__header {
  background-color: #fff;
  border-bottom: 1px solid #EEE;
}

.react-datepicker-popper .react-datepicker input[type=text], .react-datepicker-popper .react-datepicker select {
  border: 1px solid #EEE;
  padding: 4px;
  border-radius: 4px;
}

.react-datepicker-popper .react-datepicker .react-datepicker__current-month {
  padding-bottom: 10px;
  font-size: 13px;
  color: #59D0E4;
}

.react-datepicker-popper .react-datepicker .react-datepicker__day--keyboard-selected, .react-datepicker-popper .react-datepicker .react-datepicker__month-text--keyboard-selected, .react-datepicker-popper .react-datepicker .react-datepicker__quarter-text--keyboard-selected {
  background-color: white;
  border-radius: 30px;
  border: 0 none !important;
  -webkit-transition: .2s ease;
  transition: .2s ease;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  color: #FFF !important;
}

.react-datepicker-popper .react-datepicker .react-datepicker__day--selected, .react-datepicker-popper .react-datepicker .react-datepicker__day--in-selecting-range, .react-datepicker-popper .react-datepicker .react-datepicker__day--in-range, .react-datepicker-popper .react-datepicker .react-datepicker__month-text--selected, .react-datepicker-popper .react-datepicker .react-datepicker__month-text--in-selecting-range, .react-datepicker-popper .react-datepicker .react-datepicker__month-text--in-range, .react-datepicker-popper .react-datepicker .react-datepicker__quarter-text--selected, .react-datepicker-popper .react-datepicker .react-datepicker__quarter-text--in-selecting-range, .react-datepicker-popper .react-datepicker .react-datepicker__quarter-text--in-range {
  background-color: #b41932;
  border-radius: 30px;
  border: 0 none !important;
  -webkit-transition: .2s ease;
  transition: .2s ease;
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  color: #FFF !important;
}

.react-datepicker-popper .react-datepicker .react-datepicker__day--keyboard-selected:hover, .react-datepicker-popper .react-datepicker .react-datepicker__month-text--keyboard-selected:hover, .react-datepicker-popper .react-datepicker .react-datepicker__quarter-text--keyboard-selected:hover {
  color: #FFF !important;
  background-color: #c11b36;
}

.react-datepicker-popper .react-datepicker .react-datepicker__day-name, .react-datepicker-popper .react-datepicker .react-datepicker__day, .react-datepicker-popper .react-datepicker .react-datepicker__time-name {
  color: white;
}

.react-tel-input .form-control {
  width: 100% !important;
  background-color: #fff;
  border: 1px solid rgba(15, 40, 55, 0.33) !important;
  border-radius: 4px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  font-size: 1.3rem;
  min-height: 4rem;
  padding: 1rem;
  -webkit-box-shadow: 0 0 0 transparent !important;
          box-shadow: 0 0 0 transparent !important;
}

.react-tel-input .form-control:hover {
  border: 1px solid rgba(89, 208, 228, 0.6);
}

.react-tel-input .form-control:active, .react-tel-input .form-control:focus {
  border: 1px solid #59D0E4 !important;
}

.react-tel-input .form-control.error {
  border: 1px solid #b41932 !important;
}

.react-tel-input .flag-dropdown {
  background-color: transparent !important;
  border-color: transparent !important;
}

.mobile-container {
  z-index: 999;
  position: relative;
}

.react-toast-notifications__container {
  text-align: center;
  width: 100%;
  bottom: 0;
  top: auto !important;
  min-height: 70px;
  padding: 20px !important;
  overflow: hidden !important;
}

.react-toast-notifications__container:not(:empty) {
  z-index: 9999999999999 !important;
}

.react-toast-notifications__container > div {
  min-height: 80px;
}

.react-toast-notifications__container .react-toast-notifications__toast {
  width: 500px;
  z-index: 9999999999999;
  margin: auto;
  -webkit-box-shadow: 0px 4px 10px rgba(15, 40, 55, 0.4) !important;
          box-shadow: 0px 4px 10px rgba(15, 40, 55, 0.4) !important;
}

@media (max-width: 991px) {
  .react-toast-notifications__container .react-toast-notifications__toast {
    max-width: 80vw;
  }
}

.react-toast-notifications__container .react-toast-notifications__toast__content {
  line-height: 55px;
  font-size: 13px;
}

.react-toast-notifications__container .react-toast-notifications__toast__icon-wrapper {
  width: 40px;
}

.react-toast-notifications__container .react-toast-notifications__toast__icon {
  height: 46px;
  width: 18px;
}

.main-page-wrapper {
  background-color: #f2f2f2 !important;
  min-height: 100vh;
}

.main-header {
  width: 100%;
  background-color: #fff;
}

.main-header .header-logo {
  display: block;
  text-align: end;
  max-height: 10rem;
}

.main-header .header-logo img {
  height: 100%;
  -o-object-position: left !important;
     object-position: left !important;
}

@media (max-width: 991px) {
  .main-header .logo-container {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .main-header .header-userinfo-container {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.main-header .header-menu {
  padding-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.main-header .change-lang {
  background-color: #fff;
  border-radius: 10px;
  color: #555195;
  border: 0 none;
  height: 38px;
  margin-inline: 20px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}

.main-header .change-lang:hover {
  background-color: #eee;
}

.main-header .change-lang i {
  margin: 0 4px;
  position: relative;
  top: 2px;
  color: #59D0E4;
}

.main-header .burger-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
}

.main-header .burger-menu #menu-btn {
  background-color: #59D0E4;
  width: 40px;
  height: 34px;
  border: 0 none;
  color: #fff;
  border-radius: 6px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.main-header .burger-menu #menu-btn:hover {
  background-color: #85dceb;
}

.main-header .burger-menu ul {
  display: none;
}

.main-header .burger-menu.active ul {
  min-width: 170px;
  display: block;
  position: absolute;
  background-color: #fff;
  border-radius: 12px;
  top: 45px;
  -webkit-margin-start: -129px;
          margin-inline-start: -129px;
  list-style: none;
  padding: 0;
  -webkit-box-shadow: 0px 0px 20px rgba(15, 40, 55, 0.1);
          box-shadow: 0px 0px 20px rgba(15, 40, 55, 0.1);
  text-align: end;
  z-index: 999;
}

.main-header .burger-menu.active ul a {
  color: #85dceb;
  display: block;
  line-height: 1.4;
  display: block;
  padding: 6px 20px;
  text-decoration: none !important;
}

.main-header .burger-menu.active ul a:hover {
  color: #555195;
  background-color: #eee;
  border-radius: 12px;
}

.main-header #navbar-container .custom-navbar .profile-search-inputs-wrapper {
  direction: ltr;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #0f283733;
  border-radius: 4px;
  width: 350px;
  padding-inline: 4px;
  margin: auto;
}

@media (max-width: 991px) {
  .main-header #navbar-container .custom-navbar .profile-search-inputs-wrapper {
    width: 300px;
  }
}

.main-header #navbar-container .custom-navbar .profile-search-inputs-wrapper .vertical-br {
  background-color: #cccccc;
  margin-bottom: 8px;
  margin-top: 8px;
  width: 1px;
  height: 24px;
}

.main-header #navbar-container .custom-navbar .profile-search-inputs-wrapper .text-box {
  border: none;
  width: 270px;
}

.main-header #navbar-container .custom-navbar .profile-search-inputs-wrapper .select-list-container {
  width: 140px;
}

.main-header #navbar-container .custom-navbar .profile-search-inputs-wrapper .select-list-container > div {
  border: none;
}

.main-header #navbar-container .custom-navbar .profile-search-inputs-wrapper .select-list-container > div .css-1okebmr-indicatorSeparator {
  display: none;
}

.main-header #navbar-container .custom-navbar .profile-search-inputs-wrapper .search-btn {
  background-color: #59D0E4;
  color: white;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-header #navbar-container .custom-navbar .profile-search-inputs-wrapper .search-btn:disabled {
  cursor: wait;
}

.main-header #navbar-container .custom-navbar .profile-search-inputs-wrapper .css-26l3qy-menu {
  border: 1px solid #0f283733 !important;
  z-index: 999999;
}

@media (max-width: 991px) {
  .main-header #navbar-container .custom-navbar .advanced-search-p-div {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
  }
}

.main-page-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-page-container .primary-text {
  color: #59D0E4;
}

@media (max-width: 991px) {
  .main-page-container {
    display: block;
    max-width: 100%;
  }
}

.main-page-container .view-search {
  display: none;
  position: absolute;
  background: #59D0E4;
  border: none;
  color: #fff;
  padding: 5px;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  right: 10px;
  top: 80px;
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
}

.main-page-container .view-search .fa-times {
  display: none;
}

.main-page-container .view-search.show {
  background: #555195;
}

.main-page-container .view-search.show .fa-times {
  display: block;
}

.main-page-container .view-search.show .fa-search {
  display: none;
}

@media (max-width: 991px) {
  .main-page-container .view-search {
    display: block;
  }
}

.main-page-container #main-page-sidebar {
  width: 350px;
  min-height: 80vh;
}

@media (max-width: 991px) {
  .main-page-container #main-page-sidebar {
    display: none;
  }
  .main-page-container #main-page-sidebar.show {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    position: fixed;
    left: 0;
    background-color: #fff;
    top: 126px;
    -webkit-box-shadow: 0 0 4px rgba(15, 40, 55, 0.3);
            box-shadow: 0 0 4px rgba(15, 40, 55, 0.3);
    z-index: 9999;
  }
}

.main-page-container .main-page-section {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-height: 80vh;
}

.main-page-container .homepage-container {
  padding: 20px;
  padding-top: 0px;
  max-width: 100%;
}

@media (max-width: 991px) {
  .main-page-container .homepage-container {
    padding: 5px;
    padding-top: 40px;
  }
}

.moc-card {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 20px rgba(15, 40, 55, 0.06);
          box-shadow: 0px 0px 20px rgba(15, 40, 55, 0.06);
  border-radius: 10px;
}

.moc-card .card-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
}

@media (max-width: 991px) {
  .moc-card .card-heading .title h3 {
    padding: 5px !important;
    font-size: 15px !important;
  }
}

.moc-card .card-heading .title {
  width: 62%;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .moc-card .card-heading .title {
    width: 68% !important;
    padding-top: 6px;
  }
}

.moc-card .card-heading .title h3 {
  padding: 10px;
  line-height: 1;
  font-size: 25px;
  color: #91b9b4;
}

.moc-card .card-heading .title .tickets-count {
  display: inline-block;
  width: 46px;
  height: 46px;
  background-color: #59D0E4;
  color: #fff;
  border-radius: 30px;
  padding-top: 14px;
  font-size: 12px;
  text-align: center;
  line-height: 1.8;
  margin-left: 20px;
  position: relative;
  top: -2px;
}

.moc-card .card-heading .title + div {
  text-align: end;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media (max-width: 991px) {
  .moc-card .card-heading .title + div {
    width: 100%;
    /*text-align: center;*/
    padding: 0 !important;
    margin: 0 !important;
  }
}

.moc-card .card-heading .side-content .bordered-btn,
.moc-card .card-heading .side-content .service-btn {
  line-height: 2.8rem;
}

.moc-card .remove-btn {
  background-color: #b41932;
  width: 40px;
  height: 40px;
  -webkit-box-shadow: 0 0 20px rgba(15, 40, 55, 0.06);
          box-shadow: 0 0 20px rgba(15, 40, 55, 0.06);
  border-radius: 10px;
  border: 0 none;
  color: #fff;
  padding-top: 4px;
  line-height: 3.4rem;
  text-align: center;
  display: inline-block;
}

.moc-card .cuser-new-request {
  width: 70%;
  margin: 0 auto;
}

.moc-card .cuser-new-request .radio-group.radio-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.moc-card .cuser-new-request .radio-group.radio-container .fb-radio {
  margin-left: 0px;
}

.moc-card .cuser-new-request .radio-group.radio-container .fb-radio label.control.control-radio {
  margin-right: 20px;
}

.moc-card .cuser-new-request .select2-container {
  height: 4rem;
  max-width: 75%;
}

@media (max-width: 767px) {
  .moc-card .cuser-new-request .select2-container {
    max-width: 100%;
  }
}

.moc-card .cuser-new-request .select2-container .select2-selection--single {
  height: 100% !important;
  padding: 6px;
}

.moc-card .cuser-new-request .error .select2-container .select2-selection--single {
  border: 1px solid #b41932 !important;
}

.moc-card .cuser-new-request label.error {
  color: #b41932;
  margin-top: 5px;
  -ms-flex-preferred-size: 100% !important;
      flex-basis: 100% !important;
}

.moc-card .cuser-new-request .radio label {
  margin-top: 0 !important;
  padding-left: 10px;
  margin-right: 25px;
}

.moc-card .cuser-new-request .radio label.error {
  display: block;
  padding-right: 0;
  margin-right: 0;
  margin-top: 10px !important;
}

.moc-card .cuser-new-request .radio .custom-radio .custom-control-label::before {
  width: 2rem;
  height: 2rem;
}

.moc-card .cuser-new-request .radio .custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  background-color: transparent;
  border-color: #59D0E4;
}

.moc-card .cuser-new-request .radio .custom-control-label::after {
  top: -0.29rem;
  left: -2rem;
  width: 3rem;
  height: 3rem;
}

.moc-card .cuser-new-request .radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='%23b41932'/></svg>");
}

.moc-card .cuser-new-request .radio .custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.moc-card .cuser-new-request .radio-group .custom-control {
  display: inline-block;
}

.moc-card .rtl .radio label {
  margin-right: 0;
}

@media (max-width: 991px) {
  .moc-card .card-content {
    width: 100%;
    overflow-x: auto;
  }
}

.moc-card .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-right: 12px;
  padding-left: 12px;
}

.moc-card .legendValue {
  position: relative;
}

.moc-card .c-line {
  position: absolute;
  height: 3px;
  width: 30px;
  top: 8px;
  left: 0;
}

.moc-card .c-line .after {
  position: absolute;
  width: 8px;
  height: 9px;
  border-radius: 50%;
  top: -3px;
  left: 11px;
}

.moc-card .custom-legend-lbl {
  margin-left: 35px;
}

.agent-grid {
  width: 100%;
}

.agent-grid table {
  width: 100%;
}

@media (max-width: 991px) {
  .agent-grid {
    max-width: 100%;
    overflow-y: auto;
  }
}

.agent-grid thead {
  background-color: rgba(242, 242, 242, 0.5);
  color: #59D0E4;
  font-size: 16px;
}

.agent-grid thead th {
  padding: 13px 15px;
}

@media (min-width: 992px) and (max-width: 1299px) {
  .agent-grid thead th {
    padding: 4px;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .agent-grid thead th {
    padding: 4px;
    font-size: 12px;
  }
}

.agent-grid tbody {
  color: #59D0E4;
  font-size: 16px;
}

@media (min-width: 992px) and (max-width: 1299px) {
  .agent-grid tbody {
    font-size: 14px;
  }
}

.agent-grid tbody td {
  padding: 13px 15px;
  white-space: nowrap;
}

@media (min-width: 992px) and (max-width: 1299px) {
  .agent-grid tbody td {
    padding: 4px;
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .agent-grid tbody td {
    padding: 3px;
    font-size: 11px;
  }
}

@media (min-width: 992px) and (max-width: 1299px) {
  .agent-grid tbody td .ticket-name {
    font-size: 12px;
    line-height: 1.2;
  }
  .agent-grid tbody td .ticket-name i {
    margin: 0 5px;
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 991px) {
  .agent-grid tbody td .ticket-name {
    font-size: 10px;
  }
  .agent-grid tbody td .ticket-name i {
    display: none !important;
  }
}

.agent-grid tbody td .ticket-name i {
  width: 33px;
  height: 33px;
  background: #fcfcfc;
  -webkit-box-shadow: 0px 3px 6px rgba(167, 161, 161, 0.22);
          box-shadow: 0px 3px 6px rgba(167, 161, 161, 0.22);
  border-radius: 10px;
  opacity: 1;
  line-height: 1;
  text-align: center;
  padding-top: 10px;
  color: #999999;
  margin: 0 8px;
}

.agent-grid tbody td .view-btn {
  display: block;
  width: 90px;
  border: #59D0E4 1px solid;
  color: #59D0E4;
  background-color: #fff;
  display: inline-block;
  border-radius: 4px;
  padding: 6px 12px;
  min-height: 28px;
  text-align: center;
  line-height: 1;
  font-size: 12px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  text-decoration: none !important;
  margin: 3px;
  cursor: pointer;
}

.agent-grid tbody td .view-btn i {
  position: relative;
  top: 1px;
  padding-left: 4px;
  padding-right: 4px;
}

.agent-grid tbody td .view-btn:hover {
  border: 1px solid #91b9b4;
  color: #91b9b4;
}

.agent-grid tbody td .lock-status {
  font-size: 13px;
}

.activate-account {
  background-color: #fff;
  max-width: calc(100% - 40px);
  margin: auto;
  margin-top: 20px;
  min-height: 85vh;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 20px rgba(15, 40, 55, 0.06);
          box-shadow: 0px 0px 20px rgba(15, 40, 55, 0.06);
}

.activate-account .ticket-viewer .ticket-header {
  background-color: #59D0E4;
}

.activate-account .ticket-viewer .ticket-header i {
  padding: 2.6rem 2rem;
}

.activate-account .ticket-viewer .ticket-header span.title {
  padding: 3.5rem 2rem;
}

.activate-account .ticket-viewer .main-content h2.name {
  color: #59D0E4;
}

.activate-account-form .activate-row {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.activate-account-form .activate-row .label-container {
  width: 14rem;
  font-weight: 500;
  line-height: 2;
  font-size: 1.7rem;
  color: #59D0E4;
}

.activate-account-form .activate-row .control {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.activate-account-form .activate-row .control .textarea {
  min-height: 90px;
  line-height: 1;
}

.back-link {
  clear: both;
}

@media (max-width: 991px) {
  .back-link {
    margin-top: 28px !important;
  }
}

.back-link a {
  color: #59D0E4;
  padding-top: 2px;
  text-decoration: none !important;
  font-weight: 500;
}

.back-link a span {
  position: relative;
  font-size: 14px;
  top: 2px;
}

.back-link a img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin: 0 6px;
}

.back-link a:hover img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.sidebar-search {
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.sidebar-search .goto-ticket {
  margin-top: 30px;
  padding: 15px;
  background-color: #fff;
  margin-bottom: 20px !important;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 20px rgba(15, 40, 55, 0.06);
          box-shadow: 0px 0px 20px rgba(15, 40, 55, 0.06);
  border-radius: 10px;
}

.sidebar-search .goto-ticket h5 {
  color: #cfcfcf;
  font-weight: 500;
  padding-bottom: 8px;
}

.sidebar-search .goto-ticket .goto-ticket-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sidebar-search .goto-ticket .goto-ticket-row .service-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 10px;
  margin-right: 10px;
}

.sidebar-search .goto-ticket .goto-ticket-row .service-btn.hide-btn {
  width: 0;
  margin-right: 0px;
  opacity: 0;
}

.sidebar-search .goto-ticket .goto-ticket-row .text-box {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-height: 40px;
}

.sidebar-search .title {
  text-transform: uppercase;
  color: #cfcfcf;
  font-weight: 500;
}

.sidebar-search .main-search-list {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 20px rgba(15, 40, 55, 0.06);
          box-shadow: 0px 0px 20px rgba(15, 40, 55, 0.06);
  border-radius: 10px;
}

.sidebar-search .main-search-list table {
  margin: auto;
  border: 0px none !important;
  border-radius: 10px;
  font-size: 15px;
  color: #59D0E4;
}

.sidebar-search .main-search-list table text th {
  border: 0px none;
  background-color: rgba(242, 242, 242, 0.5);
  padding: 13px;
  font-weight: 500;
  text-transform: capitalize;
}

.sidebar-search .main-search-list table text th:first-child {
  width: 70px;
}

.sidebar-search .main-search-list table td {
  font-weight: 400;
  font-size: 14px;
}

.sidebar-search .main-search-list table tbody tr {
  cursor: pointer;
}

.sidebar-search .profile-search-grid .row .col-md-6:first-child {
  display: none;
}

.sidebar-search .profile-search-grid .row .col-md-6:nth-child(2) {
  margin: auto;
  margin: 0;
  max-width: 100%;
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  top: 36px;
}

.sidebar-search .search-btns-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sidebar-search .search-btns-container .service-btn {
  min-width: 65%;
}

.sidebar-search .search-btns-container .add-btn {
  background-color: #fff;
  width: 40px;
  height: 40px;
  -webkit-box-shadow: 0px 0px 20px rgba(15, 40, 55, 0.06);
          box-shadow: 0px 0px 20px rgba(15, 40, 55, 0.06);
  border-radius: 10px;
  border: 0 none;
  color: #aaa;
  padding-top: 4px;
}

.sidebar-search .search-btns-container .remove-btn {
  background-color: #91b9b4;
  width: 40px;
  height: 40px;
  -webkit-box-shadow: 0px 0px 20px rgba(15, 40, 55, 0.06);
          box-shadow: 0px 0px 20px rgba(15, 40, 55, 0.06);
  border-radius: 10px;
  border: 0 none;
  color: #fff;
  padding-top: 4px;
}

.request-modal-container {
  position: absolute;
  height: 100%;
  background-color: #eeeeee;
  right: 0;
  top: 0px;
  padding-top: 10px;
  z-index: 99;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  width: 100%;
  border-radius: 10px;
}

.request-modal-container .next-previous-buttons {
  direction: ltr !important;
}

.request-modal-container .next-previous-buttons {
  direction: ltr !important;
}

.request-modal-container .modal-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: auto;
  max-width: 90%;
  margin-bottom: 8px;
}

.request-modal-container .modal-info .show-filters {
  height: 40px;
}

.request-modal-container .modal-info .show-filters span {
  display: inline-block;
  padding: 4px 20px;
  vertical-align: middle;
  margin: 2px 4px;
  color: white;
  background-color: #0f2837;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  font-size: 15px;
  border-radius: 20px;
}

.request-modal-container .next-previous-buttons button {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 0 none;
  color: #fff;
  font-size: 30px;
  margin: 4px;
}

.request-modal-container .fa-arrow-circle-right,
.request-modal-container .fa-arrow-circle-left {
  color: #0f2837;
}

.request-modal-container .main-request-page {
  margin: 0px;
  max-width: 100%;
}

.request-container {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.request-container .transaction-side {
  left: auto;
  right: 0;
  opacity: 0;
  border-radius: 10px 0 0 10px;
  -webkit-box-shadow: 0 0 10px #ccc;
          box-shadow: 0 0 10px #ccc;
}

.request-container.change-password-container {
  max-width: 600px;
  margin: auto;
}

.main-request-page {
  margin-right: 20px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .main-request-page {
    margin: 10px;
  }
}

.main-request-page .request-header {
  background-color: #59D0E4;
  color: #fff;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 991px) {
  .main-request-page .request-header {
    display: block;
    padding: 10px;
  }
}

.main-request-page .request-header .back {
  width: 40%;
  color: #fff;
  font-size: 15px;
  padding-top: 10px;
}

@media (max-width: 991px) {
  .main-request-page .request-header .back {
    text-align: center;
    width: 100%;
    display: block;
    margin-bottom: 12px;
  }
}

.main-request-page .request-header .back i {
  padding-right: 10px;
}

.main-request-page .request-header .title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: end;
  font-size: 25px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .main-request-page .request-header .title {
    text-align: center;
  }
}

.main-request-page .request-header .title button {
  background: transparent;
  border: 0 none;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 6px;
  padding-top: 4px;
  margin-left: 20px;
}

.main-request-page .assigned-info {
  margin-bottom: 50px;
  min-width: 420px;
  background-color: #eee;
  padding: 20px;
  border-radius: 10px;
  float: left;
}

.main-request-page .assigned-info h4 {
  color: #59D0E4;
  font-size: 18px;
  font-weight: 400;
  margin: 5px;
}

.main-request-page .assigned-info h4 span {
  color: #555195;
}

.main-request-page .request-body .data-row {
  font-size: 15px;
  line-height: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  padding-bottom: 10px;
  width: 100%;
}

@media (max-width: 991px) {
  .main-request-page .request-body .data-row {
    display: block;
    font-size: 13px;
  }
}

.main-request-page .request-body .data-row .data-label {
  min-width: 300px;
  padding: 0 30px;
  max-width: 300px;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .main-request-page .request-body .data-row .data-label {
    width: 100%;
    padding: 0 0px;
    min-width: 100%;
    margin-top: 15px;
  }
}

.main-request-page .request-body .data-row .data-value {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-weight: 500;
}

.main-request-page .request-body .data-row .name {
  font-size: 30px;
  margin: 15px 0;
  padding: 0 30px;
}

@media (max-width: 991px) {
  .main-request-page .request-body .data-row .name {
    font-size: 18px;
  }
}

.main-request-page .request-form .tiny-mce-edi .tox-tinymce {
  width: 100% !important;
}

.main-request-page .request-form .tox-tinymce {
  width: 100% !important;
  z-index: 0 !important;
}

.main-request-page .request-form .tox-notifications-container,
.main-request-page .request-form .tox .tox-notification--warn,
.main-request-page .request-form .tox .tox-notification--warning {
  display: none !important;
}

@media (max-width: 991px) {
  .main-request-page .request-form {
    width: 100%;
  }
}

.main-request-page .request-form .error-text {
  padding-right: 158px;
  padding-bottom: 6px;
  padding-top: 6px;
}

.main-request-page .request-form .text-muted {
  padding-right: 162px;
  padding-top: 10px;
  font-size: 10px;
  display: block;
}

.main-request-page .request-form .input-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-request-page .request-form .input-row .custom-file {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
  z-index: 0;
}

.main-request-page .request-form .input-row .custom-file .custom-file-label {
  width: 100% !important;
  min-height: 40px;
  background-color: #fff;
  border: 1px solid rgba(15, 40, 55, 0.33);
  border-radius: 4px;
}

.main-request-page .request-form .input-row .custom-file .custom-file-label::after {
  min-height: 38px;
  line-height: 36px;
  min-width: 100px;
  background-color: #eee;
}

@media (max-width: 991px) {
  .main-request-page .request-form .input-row {
    display: block;
  }
}

.main-request-page .request-form .input-row > label {
  min-width: 100px;
  padding-top: 8px;
}

@media (max-width: 991px) {
  .main-request-page .request-form .input-row > label {
    width: 100%;
  }
}

.main-request-page .request-form .input-row .select-list-container,
.main-request-page .request-form .input-row textarea,
.main-request-page .request-form .input-row .react-datepicker-wrapper {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
}

.accent-color {
  color: #b41932 !important;
}

.inboxes-container {
  position: relative;
}

.moc-card .profile-viewer {
  margin: 0 !important;
  -webkit-box-shadow: 0 0 20px rgba(15, 40, 55, 0.06);
          box-shadow: 0 0 20px rgba(15, 40, 55, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

.moc-card .profile-viewer .profile-header {
  margin: 0 !important;
}

.new-scheduale-container {
  background-color: transparent;
}

.new-scheduale-container .monthly-occures-hint {
  color: #0f2837;
  opacity: 0.5;
  font-size: 11px;
  -webkit-margin-start: 1rem;
          margin-inline-start: 1rem;
  font-weight: 500;
}

.new-scheduale-container .link-back:hover {
  text-decoration: none;
}

.new-scheduale-container .back-to-list {
  top: -3rem;
  position: relative;
  background-color: white;
  height: 30px;
  border: 1px solid #91b9b4;
  color: #125f8a;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  display: block;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}

.new-scheduale-container .back-to-list:hover {
  background-color: #125f8a;
  color: white;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.new-scheduale-container .new-schedualed-heading,
.new-scheduale-container .scheduale-report-container {
  background: #ffffff82;
  border: 1px solid #0f28370f;
  border-radius: 10px;
  -webkit-box-shadow: unset;
  box-shadow: unset;
}

.new-scheduale-container h2,
.new-scheduale-container h4 {
  color: #00594f;
}

.new-scheduale-container .additional-lbl {
  color: #00594f;
  font-weight: 500;
  margin: 0 1rem;
}

@media (max-width: 991px) {
  .new-scheduale-container .additional-lbl {
    margin: 1rem 0 1rem 1rem;
  }
}

.new-scheduale-container .schedule-title-input,
.new-scheduale-container .schedule-input-fields {
  min-width: 200px;
  width: 20vw;
  display: inline-block;
}

@media (max-width: 991px) {
  .new-scheduale-container .schedule-title-input,
  .new-scheduale-container .schedule-input-fields {
    display: block;
  }
}

.new-scheduale-container .scheduale-striped-row {
  background: #ffffff82;
}

.new-scheduale-container ::-webkit-input-placeholder {
  color: gray;
}

.new-scheduale-container :-ms-input-placeholder {
  color: gray;
}

.new-scheduale-container ::-ms-input-placeholder {
  color: gray;
}

.new-scheduale-container ::placeholder {
  color: gray;
}

.new-scheduale-container .border-start-style {
  -webkit-margin-start: 5rem;
          margin-inline-start: 5rem;
  -webkit-padding-start: 4rem;
          padding-inline-start: 4rem;
  -webkit-border-start: 1px solid #ddd;
          border-inline-start: 1px solid #ddd;
}

@media (max-width: 991px) {
  .new-scheduale-container .border-start-style {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
    -webkit-border-start: 0;
            border-inline-start: 0;
  }
}

.new-scheduale-container .border-start-style-time {
  -webkit-margin-start: 1.5rem;
          margin-inline-start: 1.5rem;
  -webkit-padding-start: 1.5rem;
          padding-inline-start: 1.5rem;
  -webkit-border-start: 1px solid #ddd;
          border-inline-start: 1px solid #ddd;
}

.new-scheduale-container .border-start-style-time:first-child {
  -webkit-border-start: 1px solid transparent;
          border-inline-start: 1px solid transparent;
  -webkit-margin-start: 0rem;
          margin-inline-start: 0rem;
  -webkit-padding-start: 0rem;
          padding-inline-start: 0rem;
}

@media (max-width: 991px) {
  .new-scheduale-container .border-start-style-time {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
    -webkit-border-start: 0;
            border-inline-start: 0;
  }
}

.new-scheduale-container .date-label {
  color: #00594f;
  -webkit-margin-start: 1rem;
          margin-inline-start: 1rem;
  -webkit-margin-end: 3rem;
          margin-inline-end: 3rem;
  font-weight: 600;
}

@media (max-width: 991px) {
  .new-scheduale-container .date-label {
    margin-top: 3rem;
    width: 25px;
  }
}

.new-scheduale-container .days-select {
  min-width: 130px;
}

.new-scheduale-container .time-dropdown-container {
  width: 125px;
}

.new-scheduale-container .time-button {
  width: 30px;
  height: 30px;
  color: #fff;
  -webkit-margin-start: 10px;
  margin-inline-start: 10px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
}

@media (max-width: 991px) {
  .new-scheduale-container .time-button {
    -webkit-margin-end: 10px;
            margin-inline-end: 10px;
  }
}

.new-scheduale-container .add-time {
  background-color: #01aa84;
}

.new-scheduale-container .add-time:disabled {
  background: #c8c8c8;
  cursor: not-allowed;
}

.new-scheduale-container .minus-time {
  background-color: #ff7575;
}

@media (max-width: 991px) {
  .new-scheduale-container .export-div {
    margin-top: 3rem;
  }
}

.new-scheduale-container .support-checkboxes {
  background: #ffffff;
  border: 1px solid #c6c7c8;
  border-radius: 10px;
  opacity: 1;
  width: 70px;
  height: 75px;
  display: block;
  text-align: center;
  padding: 1rem;
  z-index: 1;
}

.new-scheduale-container .support-checkboxes span {
  display: block;
  color: #00594f;
  font-weight: 600;
}

.new-scheduale-container .support-checkboxes .Checkbox {
  z-index: -1;
}

.new-scheduale-container .text-danger {
  width: 100%;
  position: absolute;
  bottom: -3rem;
  text-align: start;
  font-size: 12px;
  min-width: 150px;
}

.new-scheduale-container .text-danger.sch-title {
  position: unset;
}

.new-scheduale-container .review-schedule-modal {
  background: #00000070;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #000000;
  font-weight: 500;
}

.new-scheduale-container .transaction-modal.review-schedule-modal .modal-container {
  border-radius: 12px;
  width: 100%;
  margin: auto;
  max-width: 750px;
  background-color: #fff;
}

.new-scheduale-container .transaction-modal.review-schedule-modal .modal-container h2 {
  color: #00ab84;
}

.new-scheduale-container .transaction-modal.review-schedule-modal .modal-container .scheduale-report-container {
  border: transparent;
  overflow-y: auto;
  max-height: 425px;
  width: calc(100% + 3rem);
  background: #0f28370d;
  -webkit-margin-start: -1.5rem;
          margin-inline-start: -1.5rem;
  border-radius: 0;
}

.new-scheduale-container .transaction-modal.review-schedule-modal .modal-container .scheduale-report-container h4 {
  font-weight: 300;
  -webkit-padding-end: 0.5rem;
          padding-inline-end: 0.5rem;
}

.new-scheduale-container .transaction-modal.review-schedule-modal .modal-container .scheduale-report-container .scheduale-striped-row {
  background: #c6c7c833;
}

.new-scheduale-container .transaction-modal.review-schedule-modal .modal-container .icons-modal-style label {
  color: #00594f;
}

.new-scheduale-container .transaction-modal.review-schedule-modal .modal-container .icons-modal-style img {
  width: 15px;
}

.new-scheduale-container .transaction-modal.review-schedule-modal .badge-send-to {
  color: #000;
  background-color: #4cc1bf36;
  font-weight: 300;
  padding: 0.5em;
  margin: 3px;
}

.new-scheduale-container .last-update-report {
  margin: 0 1rem;
  font-size: 11px;
  color: #0f2837;
  opacity: 0.5;
}

.new-scheduale-container .last-update-date {
  font-size: 13px;
  color: #0f2837;
  opacity: 50%;
}

.new-scheduale-container .select-list-container.emp-trans > div:last-child {
  min-height: unset;
  border: none;
}

.report-container .service-btn {
  font-size: 13px;
}

.report-container .view-report {
  font-size: 1.6rem;
  color: #59D0E4 !important;
  border: 0 none;
  background-color: transparent;
  height: auto;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  padding: 0 12px;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  border-right: 2px solid #ddd;
  padding-top: 2px;
  padding-bottom: 1px;
}

.report-container .view-report i {
  margin-right: 5px;
}

@media (max-width: 991px) {
  .report-container .view-report {
    /* top: 20px;
            left: 10px;
            right: 10px;*/
    font-size: 1.4rem;
  }
}

.report-container .view-report:last-child {
  border-right: 0 none !important;
  border-left: 0 none !important;
}

.report-container .view-report:hover {
  color: #555195 !important;
}

.report-container .report-modal-main-container {
  background-color: rgba(68, 68, 68, 0.6);
  position: fixed;
  width: 100%;
  height: calc(100% - 80px);
  right: 0;
  bottom: 0;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 9999;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.report-container .report-modal-main-container .report-modal {
  margin: auto;
  background-color: #fff;
  width: 500px;
  border-radius: 12px;
  min-height: 400px;
  position: relative;
}

@media (max-width: 991px) {
  .report-container .report-modal-main-container .report-modal {
    max-width: 90%;
  }
}

.report-container .report-modal-main-container .report-modal .close-btn {
  right: 0;
  position: absolute;
  top: -28px;
  text-align: right;
  cursor: pointer;
}

.report-container .report-modal-main-container .report-modal .close-btn span {
  padding: 0 5px;
  color: #fff;
  position: relative;
  top: -5px;
}

.report-container .report-modal-main-container .report-modal .close-btn i {
  color: #b41932;
  font-size: 22px;
  background-color: #fff;
  border-radius: 20px;
}

@media (max-width: 991px) {
  .btns-container {
    display: block;
  }
  .btns-container .service-btn {
    margin: 0 !important;
    width: 100% !important;
    margin-bottom: 10px !important;
  }
}

@media (max-width: 991px) {
  .service-btn,
  .bordered-btn {
    padding: 0 1rem !important;
    margin: 2px !important;
    font-size: 12px;
    min-width: 100px;
  }
  .service-btn i,
  .bordered-btn i {
    display: none !important;
  }
}

.blue-btn {
  background: #1874AB;
  width: 150px;
  padding: 0px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.blue-btn:hover, .blue-btn:focus {
  background-color: #3f9fca !important;
}

.reuqest-comments {
  max-width: 700px;
  margin: 30px;
}

.reuqest-comments .comment-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.reuqest-comments .comment-row .made-by {
  width: 50%;
  color: #888;
}

.reuqest-comments .comment-row .date {
  color: #555195;
}

.reuqest-comments .comment-row i {
  padding: 0 5px;
}

.reuqest-comments .comment-row .description {
  margin-top: 6px;
  width: 100%;
  font-size: 14px;
  font-weight: bold;
  padding-top: 10px;
}

.reuqest-comments .comment-row:nth-child(even) {
  background-color: #f9f9f9;
}

.reuqest-comments .comment-row:nth-child(odd) {
  background-color: #fff;
}

.session-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 10000;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.7);
  /* Black w/ opacity */
  /* The Close Button */
}

.session-modal .session-modal-content {
  background-color: #fff;
  margin: auto;
  border-radius: 10px;
  width: 500px;
  overflow: hidden;
  border: 0 none;
  padding: 4px;
}

.session-modal .session-modal-header {
  font-size: 22px;
  color: #fff;
  background-color: #555195;
  padding: 20px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.session-modal .session-modal-text {
  font-size: 16px;
  color: #888;
  padding: 20px;
}

.session-modal .session-modal-btns {
  padding: 10px;
}

.session-modal .session-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.session-modal .session-close:hover,
.session-modal .session-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.close-window-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 5;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.7);
  /* Black w/ opacity */
  /* The Close Button */
}

.close-window-modal .modal-content {
  background-color: #fff;
  margin: auto;
  border-radius: 10px;
  width: 500px;
  overflow: hidden;
  border: 0 none;
  padding: 4px;
}

.close-window-modal .modal-header {
  font-size: 22px;
  color: #fff;
  background-color: #555195;
  padding: 20px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.close-window-modal .modal-text {
  font-size: 16px;
  color: #888;
  padding: 20px;
}

.close-window-modal .modal-btns {
  padding: 10px;
}

.close-window-modal .close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-window-modal .close:hover,
.close-window-modal .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.welcoming-modal {
  position: fixed;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: rgba(153, 153, 153, 0.3);
  top: 0;
  left: 0;
}

.welcoming-modal .modal-container {
  border-radius: 12px;
  width: 100%;
  margin: auto;
  max-width: 550px;
  background-color: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 20px #0f28371c;
          box-shadow: 0px 0px 20px #0f28371c;
  border: 1px solid #e9e9e9;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.welcoming-modal .modal-container .welcome-modal-container {
  width: 100%;
}

.welcoming-modal .modal-container .welcome-modal-container .modal-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.welcoming-modal .modal-container .welcome-modal-container .modal-body .left-side {
  width: 50%;
  margin: auto;
  text-align: start;
  padding-left: 50px;
  z-index: 9999;
  white-space: nowrap;
}

.welcoming-modal .modal-container .welcome-modal-container .modal-body .left-side .hi-agent {
  color: #9c9c9c;
}

.welcoming-modal .modal-container .welcome-modal-container .modal-body .left-side h2 {
  font-weight: 900;
  color: #13b184;
}

.welcoming-modal .modal-container .welcome-modal-container .modal-body .left-side h3 {
  font-weight: 900;
}

.welcoming-modal .modal-container .welcome-modal-container .modal-body .left-side .acknowledge-btn {
  border: none;
  border-radius: 4px;
  width: 180px;
  height: 40px;
  color: white;
  font-weight: 900;
  background-color: #555195;
}

.welcoming-modal .modal-container .welcome-modal-container .modal-body .right-side {
  width: 50%;
}

.welcoming-modal .modal-container .welcome-modal-container .modal-body .right-side .image-container {
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.welcoming-modal .modal-container .welcome-modal-container .modal-body .right-side .image-container img {
  width: 900px;
}

.profile-search-grid-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-margin-start: 108px;
          margin-inline-start: 108px;
  top: 55px;
  z-index: 100;
}

.profile-search-grid {
  border: 1px solid #0f28371c;
  border-radius: 4px;
  -webkit-box-shadow: 0px 8px 17px #0f283717;
          box-shadow: 0px 8px 17px #0f283717;
  width: 350px;
  margin: auto;
  background-color: white;
  margin-top: 10px;
}

.profile-search-grid .react-bootstrap-table thead {
  display: none;
}

.profile-search-grid .react-bootstrap-table td {
  padding: 8px;
}

.profile-search-grid .react-bootstrap-table td h4 {
  margin-bottom: 0px;
}

.profile-search-grid .react-bootstrap-table tr:hover {
  cursor: pointer;
}

.profile-search-grid .react-bootstrap-table tr:hover td {
  background-color: #eeeeee !important;
  cursor: pointer;
}

.profile-search-grid .react-bootstrap-table-pagination {
  margin-bottom: 0px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.profile-search-grid .react-bootstrap-table-pagination .pagination {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0px;
}

.profile-search-grid .react-bootstrap-table-pagination .col-md-6:nth-child(1) {
  display: none;
}

.loading-spinner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-block: 20px;
}

.close-search-results-btn {
  background-color: white;
  -webkit-box-shadow: 0px 8px 17px #0f283738;
          box-shadow: 0px 8px 17px #0f283738;
  border: none;
  border-radius: 100%;
  color: red;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 20px;
  width: 20px;
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
  z-index: 999999999;
}

.close-search-results-btn:hover {
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
  background-color: #59D0E4;
  color: white;
}

.request-details-container {
  position: absolute;
  height: 100%;
  z-index: 99;
  width: 100%;
  background-color: #f2f2f2;
}

.request-details-container .request-details-header {
  position: relative;
  z-index: 10;
}

.request-details-container .request-details-header .header-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-margin-start: 460px;
          margin-inline-start: 460px;
}

.request-details-container .request-details-header .header-items .card-filters {
  text-align: end;
}

.request-details-container .request-details-header .header-items .card-filters .back-btn {
  background-color: white;
  width: 74px;
  height: 30px;
  border: 1px solid #91b9b4;
  color: #125f8a;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.request-details-container .request-details-header .header-items .card-filters .back-btn:hover {
  background-color: #125f8a;
  color: white;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

.request-details-container .request-details-header .header-items .card-filters .card-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16px;
  direction: rtl;
}

.request-details-container .request-details-header .header-items .card-filters .card-navigation .next-prev-btn {
  width: 22px;
  height: 22px;
  border: 2px solid #125f8a;
  color: #125f8a;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: 6px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.request-details-container .request-details-header .header-items .card-filters .card-navigation .next-prev-btn:hover {
  background-color: #125f8a;
  color: white;
}

.request-details-container .request-details-header .header-items .card-filters .card-navigation .filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-margin-start: 50px;
          margin-inline-start: 50px;
}

.request-details-container .request-details-header .header-items .card-filters .card-navigation .filters .filter-item {
  height: 30px;
  background-color: #0f28371c;
  -webkit-box-shadow: 0px 0px 20px #0f28370f;
          box-shadow: 0px 0px 20px #0f28370f;
  border-radius: 33px;
  color: #000000;
  font-weight: 900;
  font-size: 14px;
  margin-inline: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  cursor: pointer;
  padding-inline: 23px;
}

.request-details-container .request-details-header .header-items .card-filters .card-navigation .filters .filter-item:hover {
  background-color: black;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  color: white;
}

.request-details-container .request-details-header .header-items .card-ids .card-number {
  color: #125f8a;
  font-size: 44px;
}

.request-details-container .request-details-header .header-items .card-ids .sla {
  color: #125f8a;
  font-size: 15px;
  margin-top: 12px;
}

.request-details-container .request-details-header .header-items .card-ids .date {
  color: #04ac7c;
  font-size: 15px;
}

.request-details-container .request-details-header .countdown > span {
  font-size: 15px;
}

.request-details-container .request-details-body .card-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  top: -125px;
}

.request-details-container .request-details-body .card-actions .ola-details-ticket .progress-ola, .request-details-container .request-details-body .card-actions .respond-details-ticket .progress-ola {
  width: 180px;
  height: 16px;
  border-radius: 4px;
}

.request-details-container .request-details-body .card-actions .ola-details-ticket .progress-bar, .request-details-container .request-details-body .card-actions .respond-details-ticket .progress-bar {
  border: 1px solid #707070;
}

.request-details-container .request-details-body .card-actions .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.request-details-container .request-details-body .card-actions .actions .card-action-btn {
  width: 67px;
  height: 53px;
  -webkit-box-shadow: 0px 0px 20px #0f28370f;
          box-shadow: 0px 0px 20px #0f28370f;
  border-radius: 10px 30px 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  margin-inline: 14px;
}

.request-details-container .request-details-body .card-actions .actions .card-action-btn img {
  width: 25px;
  height: 20px;
}

.request-details-container .request-details-body .card-actions .actions .reassign-btn {
  background: transparent linear-gradient(139deg, #ffaa00 0%, #e59901 100%) 0% 0% no-repeat padding-box;
}

.request-details-container .request-details-body .card-actions .actions .comment-btn {
  background: transparent linear-gradient(136deg, #2ab395 0%, #82e1d5 100%) 0% 0% no-repeat padding-box;
}

.request-details-container .request-details-body .card-actions .actions .edit-btn {
  background: transparent linear-gradient(136deg, #1874ab 0%, #125f8a 100%) 0% 0% no-repeat padding-box;
}

.request-details-container .request-details-body .card-actions .actions .reopen-btn {
  background: transparent linear-gradient(136deg, #ff7575 0%, #c91818 100%) 0% 0% no-repeat padding-box;
}

.request-details-container .request-details-body .card-actions .ola .ola-title h6 {
  font-size: 15px;
}

.request-details-container .request-details-body .card-actions .ola .ola-title .time {
  font-weight: 900;
}

.request-details-container .request-details-body .card-actions .assgined-to .label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.request-details-container .request-details-body .card-actions .assgined-to .label h6 {
  font-size: 15px;
}

.request-details-container .request-details-body .card-actions .assgined-to .label img {
  width: 25px;
  height: 20px;
  margin-inline: 4px;
  cursor: pointer;
}

.request-details-container .request-details-body .card-actions .assgined-to .label .fa {
  cursor: pointer;
}

.request-details-container .request-details-body .card-actions .assgined-to h4 {
  font-weight: 900;
  font-size: 19px;
}

.request-details-container .request-details-body .card-actions .ticket-card {
  width: 400px;
  height: 180px;
  -webkit-box-shadow: 0px 0px 20px #0f28370f;
          box-shadow: 0px 0px 20px #0f28370f;
  border-radius: 10px 80px 10px 10px;
  background: transparent linear-gradient(136deg, #59D0E4, white 150%) 0% 0% no-repeat padding-box;
  position: relative;
  bottom: 20px;
  z-index: 20;
}

.request-details-container .request-details-body .card-actions .ticket-card .card-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-bottom: 1px solid white;
  width: 330px;
  margin: auto;
  margin-top: 30px;
  padding-bottom: 16px;
}

.request-details-container .request-details-body .card-actions .ticket-card .card-user img {
  width: 50px;
  height: 50px;
  -webkit-margin-end: 6px;
          margin-inline-end: 6px;
  cursor: pointer;
}

.request-details-container .request-details-body .card-actions .ticket-card .card-user .user-info {
  color: white;
}

.request-details-container .request-details-body .card-actions .ticket-card .card-user .user-info h4 {
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.request-details-container .request-details-body .card-actions .ticket-card .card-user .user-info h5 {
  font-size: 15px;
  font-weight: 300;
}

.request-details-container .request-details-body .card-actions .ticket-card .card-footer {
  width: 370px;
  margin: auto;
  margin-top: 14px;
  background-color: transparent;
  border: none;
}

.request-details-container .request-details-body .card-actions .ticket-card .card-footer .footer-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
}

.request-details-container .request-details-body .card-actions .ticket-card .card-footer .footer-item .label {
  font-weight: 300;
  margin-inline: 2px;
}

.request-details-container .request-details-body .card-actions .ticket-card .card-footer .footer-item .value {
  font-weight: 900;
  margin-inline: 2px;
}

.request-details-container .request-details-body .card-body {
  position: relative;
  top: -70px;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}

.request-details-container .request-details-body .card-body ::-webkit-scrollbar {
  width: 8px;
}

.request-details-container .request-details-body .card-body ::-webkit-scrollbar-track {
  background-color: #d3e5ee;
  border-radius: 10px;
}

.request-details-container .request-details-body .card-body ::-webkit-scrollbar-thumb {
  background: #0e7cb9;
  border-radius: 10px;
}

.request-details-container .request-details-body .card-body ::-webkit-scrollbar-thumb:hover {
  background: #135e86;
}

.request-details-container .request-details-body .section-header {
  color: #125f8a;
  font-size: 25px;
  font-weight: 900;
  padding-bottom: 20px;
  border-bottom: 2px solid #d9d9d9;
  margin-bottom: 0px;
}

.request-details-container .request-details-body .ticket-attributes tr th {
  width: 20%;
  font-size: 15px;
  color: #0f2837;
  font-weight: 300;
  border: none;
}

.request-details-container .request-details-body .ticket-attributes tr td {
  width: 80%;
  color: #0f2837;
  font-weight: 900;
  border: none;
}

.request-details-container .request-details-body .ticket-attributes .section-header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 2px solid #d9d9d9;
}

.request-details-container .request-details-body .ticket-attributes .section-header-container .section-header {
  border-bottom: transparent;
}

.request-details-container .request-details-body .ticket-attributes .section-header-container .edit-details {
  color: #125f8a;
  border: 1px solid;
  vertical-align: middle;
  border: 1px solid #91b9b4;
  border-radius: 20px;
  padding: 0.5rem 2rem;
  cursor: pointer;
}

.request-details-container .request-details-body .ticket-attributes .section-header-container .edit-details .fa-edit {
  -webkit-padding-end: 10px;
          padding-inline-end: 10px;
}

.request-details-container .request-details-body .ticket-comments .comment-item {
  background-color: #f9f9f9;
  padding: 15px 15px 3px;
  margin-bottom: 5px;
}

.request-details-container .request-details-body .ticket-comments .comment-item .comment-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.request-details-container .request-details-body .ticket-comments .comment-item .comment-header .comment-writer {
  color: #04ac7c;
  font-size: 15px;
}

.request-details-container .request-details-body .ticket-comments .comment-item .comment-header .comment-date {
  color: #0f2837;
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
}

.request-details-container .request-details-body .ticket-comments .comment-item .comment-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-bottom: 8px;
}

.request-details-container .request-details-body .ticket-comments .comment-item .comment-body .far {
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
  margin-top: 6px;
}

.request-details-container .request-details-body .ticket-comments .comment-item .comment-body p {
  font-size: 15px;
  color: #0f2837;
  width: 100%;
}

.request-details-container .request-details-body .ticket-log-history .log-history-title {
  font-size: 25px;
  color: #ffaa00;
  font-weight: 900;
  padding-bottom: 20px;
  border-bottom: 2px solid #d9d9d9;
  margin: 0px;
}

.request-details-container .request-details-body .ticket-log-history .log-items-container {
  max-height: 400px;
  overflow-y: auto;
}

.request-details-container .request-details-body .ticket-log-history .log-items-container .log-item {
  padding: 15px;
}

.request-details-container .request-details-body .ticket-log-history .log-items-container .log-item:hover {
  background-color: #f4f4f4;
}

.request-details-container .request-details-body .ticket-log-history .log-items-container .log-item .log-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.request-details-container .request-details-body .ticket-log-history .log-items-container .log-item .log-header .log-writer {
  color: #04ac7c;
  font-size: 15px;
}

.request-details-container .request-details-body .ticket-log-history .log-items-container .log-item .log-header .log-date {
  color: #0f2837;
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
}

.request-details-container .request-details-body .ticket-log-history .log-items-container .striped-row {
  background-color: #f9f9f9;
}

.request-details-container .request-details-body .ticket-log-history .log-items-container .log-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
  font-size: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.request-details-container .request-details-body .ticket-log-history .log-items-container .log-body .log-icon {
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
  margin-top: 6px;
}

.request-details-container .request-details-body .ticket-log-history .log-items-container .log-body p {
  font-size: 15px;
  color: #0f2837;
  font-weight: 500;
}

.request-details-container .request-details-body .table-striped tbody tr:nth-of-type(odd) {
  background-color: #fff !important;
}

.request-details-container .request-details-body .table-striped tbody tr:nth-of-type(even) {
  background-color: #f8f8f8 !important;
}

.request-details-container .tox-statusbar,
.request-details-container .tox-notifications-container,
.request-details-container .tox-notification {
  display: none !important;
}

.request-details-container .tox .tox-tbtn svg {
  display: block;
  fill: #53636b;
}

.request-details-container .tox .tox-tbtn {
  width: 32px !important;
  height: 25px !important;
}

.request-details-container .tox .tox-split-button__chevron {
  width: 16px !important;
}

.request-details-container .show-comment {
  direction: initial;
  text-align: initial;
}

.react-datepicker-popper .react-datepicker .react-datepicker__day-name,
.react-datepicker-popper .react-datepicker .react-datepicker__day,
.react-datepicker-popper .react-datepicker .react-datepicker__time-name {
  color: black;
}

.sla-container-page-details .warning-msg {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 111;
  margin-top: -4rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  margin: 1.5rem;
  margin-top: -2rem;
  border: 1px dashed #FFCC00;
  background: #FFFBF1;
  border-radius: 10px;
  color: #000000;
}

.sla-container-page-details .warning-msg span {
  padding: 0 1.5rem;
  font-size: 26px;
  top: 0px;
  cursor: pointer;
}

.sla-container-page-details .warning-msg span img {
  width: 20px;
}

.sla-container-page-details .sla-section {
  margin: 2rem 1.5rem 0 !important;
}

.sla-container-page-details .sla-section .sla-title {
  text-align: start;
  letter-spacing: 0px;
  color: #125f8a;
  text-transform: capitalize;
}

.sla-container-page-details .sla-section .sla-title span {
  font-style: italic;
  font-size: 14px;
  font-weight: 300;
}

.sla-container-page-details .sla-section .responsive-open {
  margin-bottom: 0px;
  margin-top: 0px;
}

@media (max-width: 991px) {
  .sla-container-page-details .sla-section .responsive-open {
    margin-bottom: 40px;
    margin-top: 40px;
  }
}

.sla-container-page-details .sla-section .container-inputs-status {
  min-height: 100px;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.sla-container-page-details .date-time-input-container {
  position: relative;
  width: 185px;
  -webkit-margin-end: 8px;
          margin-inline-end: 8px;
  margin-bottom: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .sla-container-page-details .date-time-input-container {
    margin-top: 1rem;
    height: 40px;
  }
}

.sla-container-page-details .date-time-input-container .subfield-div {
  height: 35px;
  width: 100%;
  position: absolute;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sla-container-page-details .date-time-input-container .subfield-div .status-lbl {
  z-index: 12;
  width: calc(100% - 35px);
  height: 30px;
  background: #fff;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 3px;
  right: 1px;
  color: #cfcfcf;
  font-size: 12px;
  -webkit-padding-start: 10px;
          padding-inline-start: 10px;
}

.sla-container-page-details .date-time-input-container .subfield-div .show-lbl {
  top: -25px;
  background-color: transparent;
}

.sla-container-page-details .date-time-input-container .subfield-div .close {
  background: #9e9e9e 0% 0% no-repeat padding-box;
  -webkit-box-shadow: 0px 3px 6px #00000029;
          box-shadow: 0px 3px 6px #00000029;
  border: 1px solid #9e9e9e;
  border-radius: 4px;
  opacity: 1;
  color: #fff;
  width: 28px;
  height: 28px;
  font-size: 28px;
  line-height: 28px;
  text-align: center;
  font-weight: 100;
  text-shadow: none;
  position: absolute;
  left: 0;
  top: 0;
}

.sla-container-page-details .date-time-input-container .subfield-div .content-subfield {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sla-container-page-details .date-time-input-container .subfield-div .content-subfield .sub-field-input,
.sla-container-page-details .date-time-input-container .subfield-div .content-subfield button {
  border-radius: 4px;
  border: 1px solid #2ab395;
  text-align: center;
  line-height: 33px;
  position: relative;
  top: 1px;
  margin: 0 1px;
  width: 35px;
  height: 33px;
}

.sla-container-page-details .date-time-input-container .subfield-div .content-subfield button {
  background-color: #2ab395;
}

.sla-container-page-details .date-time-input-container .subfield-div .content-subfield button:disabled {
  cursor: not-allowed;
}

.sla-container-page-details .date-time-input-container .subfield-div .content-subfield button i {
  color: #fff;
}

.sla-container-page-details .date-time-input-container .subfield-div .content-subfield > div {
  max-width: 35px;
}

.sla-container-page-details .date-time-input-container .subfield-div .content-subfield .text-danger {
  font-size: 10px;
  font-weight: 500;
}

.sla-container-page-details .date-time-input-container .subfield-div-open {
  top: -35px;
  height: 120px;
}

.sla-container-page-details .date-time-input-container .subfield-div-open .status-lbl {
  background-color: transparent;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  width: calc(100% - 30px);
}

.sla-container-page-details .date-time-input-container .subfield-div-open .content-subfield {
  top: 80px;
}

.sla-container-page-details .date-time-input-container .textbox-div {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .sla-container-page-details .date-time-input-container .textbox-div {
    margin: 0.5rem 0;
  }
}

.sla-container-page-details .date-time-input-container .textbox-div input {
  width: 100%;
  height: 35px;
  -webkit-padding-start: 5px;
          padding-inline-start: 5px;
  border-radius: 4px;
  border: 1px solid #0f283733;
  font-weight: 500;
  font-size: 13px;
}

.sla-container-page-details .date-time-input-container .textbox-div input:disabled {
  background: #ddd;
  cursor: not-allowed;
}

.sla-container-page-details .date-time-input-container .textbox-div span {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 111;
  left: 0.25em;
  top: 0.25em;
  border-radius: 4px;
}

.sla-container-page-details .date-time-input-container .textbox-div .green-border {
  border: 1px solid #2ab395;
}

.sla-container-page-details .responsive-open {
  margin-bottom: 40px;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .sla-container-page-details .responsive-open {
    margin-top: 40px;
  }
}

.sla-container-page-details ::-webkit-input-placeholder {
  color: #cfcfcf;
  font-size: 13px;
}

.sla-container-page-details :-ms-input-placeholder {
  color: #cfcfcf;
  font-size: 13px;
}

.sla-container-page-details ::-ms-input-placeholder {
  color: #cfcfcf;
  font-size: 13px;
}

.sla-container-page-details ::placeholder {
  color: #cfcfcf;
  font-size: 13px;
}

.sla-container-page-details input::-webkit-outer-spin-button,
.sla-container-page-details input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.sla-container-page-details input[type="number"] {
  -moz-appearance: textfield;
}

.sla-container-page-details .sla-actions-wrapper {
  border: 1px solid #0f28371c;
  border-radius: 10px;
  margin: 3rem 1.5rem !important;
}

.sla-container-page-details .sla-actions-wrapper .react-bootstrap-table tbody tr:nth-child(even) td {
  background-color: #fff;
}

.sla-container-page-details .sla-actions-wrapper .react-bootstrap-table tbody tr:nth-child(odd) td {
  background-color: #f8f8f8;
}

.sla-container-page-details .ola-row-1 {
  position: relative;
}

.sla-container-page-details .dd-version > div {
  width: 125px;
  min-height: auto;
  z-index: 11;
  overflow-x: hidden;
}

.sla-container-page-details .publish-version {
  padding: 0 0.5rem !important;
  width: 90px;
  height: 35px;
}

.sla-container-page-details .ola-action .react-bootstrap-table thead th {
  border-radius: 0px !important;
  background-color: #f8f8f8 !important;
  background-color: #f8f8f8 !important;
}

.sla-container-page-details .ola-action .react-bootstrap-table tbody tr:nth-child(odd) td {
  background-color: #fff;
}

.sla-container-page-details .ola-action .react-bootstrap-table tbody tr:nth-child(even) td {
  background-color: #f8f8f8;
}

.sla-container-page-details .actions-section .add-action-btn-wrapper {
  position: absolute;
  top: 11px;
  left: 20px;
  z-index: 10;
}

.sla-container-page-details .actions-section .add-action-btn-wrapper .add-action-btn {
  background-color: #1874AB !important;
}

.sla-container-page-details .actions-section .actions-container {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sla-container-page-details .actions-section .actions-container .react-bootstrap-table-pagination ul {
  min-width: 25px !important;
  top: 20px;
}

.sla-container-page-details .actions-section .actions-container .react-bootstrap-table-pagination a {
  color: #1874ab !important;
  font-weight: 500;
}

.sla-container-page-details .actions-section .transaction-modal .modal-container {
  max-width: 750px;
}

.sla-container-page-details .actions-section .react-bootstrap-table thead th {
  background-color: #fff;
  padding-bottom: 1rem !important;
  font-size: 12px !important;
  padding: 12px;
  vertical-align: middle;
  height: 60px;
  border-radius: 10px;
  font-weight: 600;
}

.sla-container-page-details .actions-section .react-bootstrap-table tbody tr td:first-child {
  color: #04AC7C;
}

.sla-container-page-details .actions-section .action-container-modal {
  height: 300px;
  overflow-y: visible;
}

.sla-container-page-details .actions-section .schedule-reports-table-action {
  text-align: center;
}

.sla-container-page-details .actions-section .schedule-reports-table-action .fa {
  font-size: 16px;
}

.sla-container-page-details .actions-section .action-type-checkboxes {
  background: #ffffff;
  border: 1px solid #c6c7c8;
  border-radius: 10px;
  opacity: 1;
  width: 250px;
  height: 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: start;
  padding: 1rem;
  z-index: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 2rem;
}

.sla-container-page-details .actions-section .blue-span {
  color: #0F4D72;
  font-size: 15px;
}

.sla-container-page-details .actions-section .action-modal-chkbox {
  display: block;
  margin-bottom: 7px;
  z-index: -1;
}

.sla-container-page-details .actions-section .field-title {
  color: #01AA84;
  font-size: 13px;
}

.sla-container-page-details .actions-section .action-type-title {
  color: #00594F;
  font-size: 18px;
  font-weight: 500;
}

.sla-container-page-details .actions-section .actions-modal-buttons-container {
  border-top: 1px solid #0F28371C;
  padding-top: 1.5rem;
  margin: 3rem 2rem 2rem;
}

.sla-container-page-details .actions-section .before-after-div {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sla-container-page-details .actions-section .before-after-div span {
  margin: auto 0.5rem 0rem 2rem;
}

.sla-container-page-details .actions-section .before-after-div .Checkbox {
  top: 0;
}

.sla-container-page-details .actions-section .duration-div {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-margin-end: 1.5rem;
          margin-inline-end: 1.5rem;
}

.sla-container-page-details .actions-section .duration-div span {
  color: #01AA84;
  font-size: 13px;
  -webkit-margin-start: 1rem;
          margin-inline-start: 1rem;
}

.sla-container-page-details .actions-section .duration-div input {
  border: 1px solid #0F283733;
  border-radius: 4px;
  width: 50px;
  height: 35px;
}

.sla-container-page-details .actions-section .escalation-to-div {
  width: 100%;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}

.sla-container-page-details .actions-section .modal-container-footer .service-btn {
  -webkit-margin-start: 1.5rem !important;
          margin-inline-start: 1.5rem !important;
}

.sla-container-page-details .actions-section .select-list-container.escalation-danger > div {
  border-color: #dc3545 !important;
}

.sla-container-page-details .ola-steps {
  background: #ffffff80;
  border: 1px solid #0f28371c;
  border-radius: 10px;
  margin: 3rem 1.5rem !important;
}

.sla-container-page-details .ola-steps .ola-step-container {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sla-container-page-details .ola-steps .ola-title {
  margin: 0.65rem 0 1.5rem;
}

.sla-container-page-details .ola-steps .ola-title i {
  font-style: italic;
  font-size: 14px;
  font-weight: 300;
}

.sla-container-page-details .ola-steps .ola-title h4 {
  font-weight: 600;
  margin: 0;
  padding: 0 1.5rem;
}

.sla-container-page-details .ola-steps .respond-resolve-fields-container > div {
  width: 23%;
}

@media (max-width: 991px) {
  .sla-container-page-details .ola-steps .respond-resolve-fields-container > div {
    min-width: 195px;
    width: initial;
  }
}

.sla-container-page-details .ola-steps .respond-resolve-fields-container > div .date-time-input-container {
  width: 100%;
}

.sla-container-page-details .ola-steps .respond-resolve-fields-container > div .date-time-input-container .content-subfield > div {
  max-width: inherit;
  width: 24%;
}

.sla-container-page-details .ola-steps .respond-resolve-fields-container > div .date-time-input-container .content-subfield > div .sub-field-input {
  width: 100%;
}

.sla-container-page-details .ola-steps hr {
  margin: 2.5rem 0;
  width: calc(100% + 3rem);
  -webkit-margin-start: -1.5rem !important;
          margin-inline-start: -1.5rem !important;
}

.sla-container-page-details .ola-steps .ola-action-btn {
  text-align: end;
}

.sla-container-page-details .ola-steps .total-time-calc-component .elem-box {
  background: #fff;
}

.sla-container-page-details .ola-steps .total-time-calc-component .elem-box:hover {
  background: #0f28370a;
}

.sla-container-page-details .ola-steps .actions-section .actions-container {
  width: calc(100% + 3rem) !important;
  left: 1.5rem;
  position: relative;
}

.sla-container-page-details .total-time-calc-component {
  font-size: 18px;
}

.sla-container-page-details .total-time-calc-component .elem-box {
  background: #f2f2f2;
  -webkit-box-shadow: 0px 0px 20px #0f28370f;
          box-shadow: 0px 0px 20px #0f28370f;
  border-radius: 10px;
  opacity: 1;
  color: #125f8a;
  text-align: center;
  width: 40px;
  font-size: 7px;
  padding: 10px;
  height: 38px;
  margin: 0 0.5rem;
}

.sla-container-page-details .total-time-calc-component .elem-box:hover p {
  margin-top: -3px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.sla-container-page-details .total-time-calc-component .elem-box:hover span {
  opacity: 1;
  display: block;
}

.sla-container-page-details .total-time-calc-component .elem-box p {
  margin-top: 0;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
  min-width: 20px;
}

.sla-container-page-details .total-time-calc-component .elem-box span {
  opacity: 0;
  display: none;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.operational-time-modal {
  text-align: start;
}

.operational-time-modal .modal-container {
  max-width: 950px;
}

.operational-time-modal .operational-time-row {
  -webkit-margin-start: 1.5rem;
          margin-inline-start: 1.5rem;
}

.operational-time-modal .operational-time-row h4 {
  color: #00594F;
  margin: 3rem 7px;
}

.operational-time-modal .operational-time-row .day-checkbox {
  position: relative;
  display: inline-block;
  -webkit-margin-end: 3px;
          margin-inline-end: 3px;
  -webkit-margin-start: 7px;
          margin-inline-start: 7px;
}

.operational-time-modal .operational-time-row .day-checkbox input {
  position: absolute;
  opacity: 0;
  left: 0;
  z-index: -1;
}

.operational-time-modal .operational-time-row .day-checkbox label {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #00ab84;
  color: #fff;
  text-align: center;
  line-height: 32px;
  font-size: 11px;
  margin-bottom: 0;
  cursor: pointer;
}

.operational-time-modal .operational-time-row .day-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 1rem 0px;
}

.operational-time-modal .operational-time-row .day-item .text-danger {
  display: none;
}

.operational-time-modal .operational-time-row .day-item-off label {
  background: #C6C7C8;
}

.operational-time-modal .operational-time-row .day-item-off .MuiOutlinedInput-root {
  border: 1px solid #C6C7C8;
}

.operational-time-modal .operational-time-row .border-danger .MuiOutlinedInput-root {
  border: 1px solid #de3c3c;
}

.operational-time-modal .operational-time-row .border-danger .text-danger {
  display: block;
  font-size: 12px;
  position: absolute;
}

.operational-time-modal .operational-time-row .MuiOutlinedInput-root {
  height: 30px !important;
  padding: 5px !important;
  width: 70px !important;
  border: 1px solid #00ab84;
  border-radius: 4px;
  -webkit-margin-end: 3px;
          margin-inline-end: 3px;
  font-size: 12px;
}

.operational-time-modal .operational-time-row .MuiInputAdornment-root {
  margin-left: 0 !important;
}

.operational-time-modal .operational-time-row .custom-operational-date input {
  padding: 5px 0;
}

.operational-time-modal .operational-time-row .MuiIconButton-root.MuiIconButton-edgeEnd {
  width: 70px;
  position: absolute;
  left: 0;
  opacity: 0;
  border-radius: 0;
}

.operational-time-modal .holidays-breaks-row {
  -webkit-margin-start: 1.5rem;
          margin-inline-start: 1.5rem;
}

.operational-time-modal .holidays-breaks-row h6 {
  color: #00594F;
}

.operational-time-modal .holidays-breaks-row .date-picker-container {
  position: relative;
  display: inline-block;
  margin: 1rem;
}

.operational-time-modal .holidays-breaks-row .date-picker-container .dummy-btn {
  background: #01AA84 0% 0% no-repeat padding-box;
  border-radius: 33px;
  opacity: 1;
  border: transparent;
  height: 25px;
  line-height: 27px;
  width: 55px;
  display: inline-block;
  font-style: initial;
  color: #fff;
  font-size: 10px;
  /* z-index: 1; */
  position: absolute;
  text-align: center;
}

.operational-time-modal .holidays-breaks-row .date-picker-container .dummy-btn i {
  font-style: normal;
  border-radius: 50%;
  border: 1px solid;
  display: inline-block;
  font-size: 12px;
  width: 12px;
  height: 12px;
  line-height: 12px;
  position: relative;
  right: 3px;
}

.operational-time-modal .holidays-breaks-row .datepicker-animation-input {
  cursor: pointer;
  background: transparent;
  border: transparent;
  border-radius: 33px;
  opacity: 1;
  height: 25px;
  line-height: 25px;
  width: 55px;
  display: inline-block;
  font-style: initial;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
}

.operational-time-modal .holidays-breaks-row .animate-field {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 200px !important;
  background-color: #D3E5EE;
}

.operational-time-modal .holidays-breaks-row .animate-field .dummy-btn {
  opacity: 0;
}

.operational-time-modal .modal-container-footer {
  border-top: 1px solid #0F28371C;
  padding-top: 1.5rem;
  margin: 3rem 2rem 2rem;
}

.operational-time-modal .MuiOutlinedInput-notchedOutline {
  border-color: transparent !important;
}

.service-btn.cancel {
  color: #00594f !important;
  background: #fff;
  border: 1px solid #00ab84 !important;
}

.service-btn.cancel:hover, .service-btn.cancel:focus {
  background: #fff;
}

.rtl .sla-container-page-details ::-webkit-input-placeholder {
  font-size: 11px;
}

.rtl .sla-container-page-details :-ms-input-placeholder {
  font-size: 11px;
}

.rtl .sla-container-page-details ::-ms-input-placeholder {
  font-size: 11px;
}

.rtl .sla-container-page-details ::placeholder {
  font-size: 11px;
}

.customize-time-picker {
  width: 355px;
  height: 225px;
  z-index: 99991 !important;
  top: 11px !important;
  border: 1px solid #00ab84;
  border-radius: 4px;
  left: -140px !important;
}

.customize-time-picker .css-epd502 {
  width: 370px;
  height: 223px;
  -webkit-box-orient: inherit;
  -webkit-box-direction: inherit;
      -ms-flex-direction: inherit;
          flex-direction: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.customize-time-picker .css-epd502 .MuiOutlinedInput-input {
  border: 1px solid;
  border-radius: 4px;
}

.customize-time-picker .css-epd502 .Mui-focused .MuiOutlinedInput-input {
  border: 2px solid #00ab84;
  outline: 0 !important;
}

.customize-time-picker .css-epd502 .Mui-focused .MuiOutlinedInput-notchedOutline {
  border-color: transparent !important;
}

.customize-time-picker .css-1flhz3h {
  height: 20px;
  width: 20px;
  position: absolute;
  left: calc((100% - 20px) / 2);
}

.customize-time-picker .css-5l80dt {
  margin: 4px -5px auto;
}

.customize-time-picker .MuiClockPicker-arrowSwitcher {
  display: none !important;
}

.customize-time-picker .css-fhpqww {
  margin: 10px;
}

.customize-time-picker .PrivateTimePickerToolbar-penIconLandscape {
  display: none !important;
}

.customize-time-picker .css-eziifo {
  height: 200px;
  width: 200px;
}

.customize-time-picker .css-eziifo .css-118whkv, .customize-time-picker .css-eziifo .css-2ujp1m {
  top: -12px;
  left: calc(50% - 13px);
  border: 12px solid #1976d2;
}

.customize-time-picker .MuiGrid-root {
  direction: initial;
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.MuiTypography-root.MuiTypography-overline {
  font-size: 1.25rem;
  color: #008c7c;
}

.clear-btn-datepicker.react-datepicker__close-icon::after {
  background-color: transparent;
  border: 1px solid #FF0000;
  color: #FF0000;
  height: 11px;
  width: 11px;
  line-height: 11px;
  padding: 0px;
  font-size: 16px;
  display: block;
  font-weight: 500;
}

.show-counter-sla-ola {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.show-counter-sla-ola .countdown {
  padding: 0 0.25rem 0;
}

.show-counter-sla-ola .countdown.danger {
  color: #ff0000;
}

.show-counter-sla-ola .countdown > span {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
}

.progress-ola {
  background-color: #0F28371C;
  margin: 0.5rem 0;
  height: 13px;
}

.auth-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.auth-page[dir="rtl"] {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media (max-width: 991px) {
  .auth-page[dir="rtl"] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.auth-page .auth-bg {
  position: relative;
  background: url("../images/authBg.png") center center no-repeat;
  width: 50%;
  background-size: cover;
  min-height: 100vh;
}

@media (max-width: 991px) {
  .auth-page .auth-bg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.auth-page .auth-bg .change-language {
  border: 0 none;
  background-color: transparent;
  color: #FFF;
  padding: 20px;
  font-size: 16px;
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  -webkit-transition: .1s ease;
  transition: .1s ease;
}

@media (max-width: 991px) {
  .auth-page .auth-bg .change-language {
    position: relative;
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 5px;
    text-align: center;
  }
}

.auth-page .auth-bg .change-language:hover {
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
}

.auth-page .auth-bg .slogan {
  position: absolute;
  bottom: 20px;
  color: #fff;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 25px;
}

.auth-page .auth-bg .slogan p {
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .auth-page .auth-bg .slogan {
    position: relative;
    text-align: center;
    padding: 0;
    padding-top: 20px;
    bottom: 0;
    left: 0;
    -webkit-transform: translateX(0) !important;
            transform: translateX(0) !important;
    margin-top: 0;
    top: 0;
  }
}

@media (max-width: 991px) {
  .auth-page {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .auth-page .auth-bg {
    width: 100%;
    min-height: 15vh !important;
    max-height: 15vh !important;
  }
  .auth-page .splash-screen {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    min-height: 0;
    padding-top: 5vh;
  }
}

.splash-screen {
  padding-top: 10vh;
  padding-bottom: 10vh;
  width: 50%;
  position: relative;
}

.splash-screen.no-signup {
  padding-top: 22vh;
}

.splash-header .header-image {
  text-align: center;
}

.splash-header .header-image img {
  max-height: 11.5rem;
}

@media (max-width: 991px) {
  .splash-header .header-image img {
    max-height: 7rem;
  }
}

@media (max-width: 991px) {
  .splash-header .header-image {
    margin-bottom: 0 !important;
  }
}

.eservice-login-form {
  margin: auto;
  width: 100%;
  max-width: 40rem;
}

.eservice-login-form .form-label {
  display: block;
}

.eservice-login-form .login-form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.eservice-login-form .form-label-with-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 991px) {
  .eservice-login-form {
    max-width: 80%;
  }
}

.no-account {
  width: 40rem;
  margin: auto;
  position: relative;
  color: #59D0E4;
  text-align: center;
}

@media (max-width: 991px) {
  .no-account {
    max-width: 90%;
  }
}

.no-account .label-text {
  background-color: #ffffff;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

.no-account:after {
  left: 0;
  content: "";
  position: absolute;
  width: 100%;
  top: 50%;
  height: 1px;
  background-color: #59D0E4;
}

.signup-block {
  margin: auto;
  width: 100%;
  max-width: 30rem;
}

.account-type-container {
  color: #59D0E4;
  font-size: 1.5rem;
}

.account-type {
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  min-height: 11rem;
  border-radius: 4px;
  background-color: #555195;
  -webkit-transition: .2s ease;
  transition: .2s ease;
}

@media (max-width: 991px) {
  .account-type {
    margin-bottom: 20px;
  }
}

.account-type:hover {
  margin-top: -1rem;
}

.account-type.individual {
  background-color: #eb5a3c;
}

.account-type a {
  display: block;
  color: #ffffff;
  text-decoration: none !important;
  font-size: 1.5rem;
}

.reach-us {
  text-transform: initial !important;
}

.reach-us a {
  color: #59D0E4 !important;
}

.notfound-page {
  width: 400px;
  height: 400px;
  margin: auto;
  margin-top: calc(50vh - 200px);
  border-radius: 30px;
  -webkit-box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.16);
  color: #FFF;
  padding-top: 80px;
}

.notfound-page i {
  font-size: 150px;
  color: #b41932;
}

.notfound-page .notfound-content {
  padding-top: 60px;
}

.notfound-page .notfound-content h3 {
  color: #59D0E4;
  font-size: 30px;
}

.main-header {
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 20px rgba(15, 40, 55, 0.06);
          box-shadow: 0px 0px 20px rgba(15, 40, 55, 0.06);
}

.main-header .header-logo {
  display: block;
  text-align: end;
  height: 6rem;
}

.main-header .header-logo img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
  height: 100%;
}

@media (max-width: 991px) {
  .main-header .pt-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .main-header .column-order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .main-header .header-logo {
    text-align: center;
  }
  .main-header .header-logo img {
    -o-object-position: center !important;
       object-position: center !important;
  }
  .main-header .header-title {
    text-align: center;
  }
}

.wizard-container {
  min-height: 65vh;
  margin: auto;
  width: 100%;
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*.radio-container {
        label {
            margin-top: 0 !important;
            margin-right: 30px;
            padding-left: 10px;
        }

        .custom-radio .custom-control-label::before {
            width: 2rem;
            height: 2rem;
        }

        .custom-control-input:checked ~ .custom-control-label::before {
            color: #fff;
            background-color: transparent;
            border-color: $brandColor;
        }

        .custom-control-label::after {
            top: -0.29rem;
            left: -2rem;
            width: 3rem;
            height: 3rem;
        }

        .custom-control-input:checked ~ .custom-control-label::after {
            background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='%23b41932'/></svg>");
        }

        .custom-control-input:focus ~ .custom-control-label::before {
            box-shadow: none;
        }
    }*/
}

.wizard-container .form-block {
  text-align: start;
  max-width: 80%;
  margin: auto;
}

.wizard-container .form-block.date-container {
  position: relative;
  z-index: 9999;
}

.wizard-container .btn-container {
  text-align: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 100%;
}

@media (max-width: 991px) {
  .wizard-container .btn-container {
    max-width: 90%;
    margin: auto;
  }
  .wizard-container .btn-container .service-btn {
    padding: 0 3rem;
  }
}

.email-verify-btn {
  top: 33px;
  padding: 0 2rem !important;
  position: relative;
  background-color: transparent;
  border: 0 none;
  border-radius: 0;
  font-size: 2.5rem;
  color: #009800;
  float: right;
  position: absolute;
  right: -10px;
  -webkit-transition: .1s ease;
  transition: .1s ease;
}

.email-verify-btn:disabled {
  color: #999;
}

.email-verify-btn:not(:disabled):hover {
  color: #00b200;
}

.email-verify-btn span {
  padding: 5px;
  vertical-align: top;
  font-size: 13px;
  position: relative;
  top: 7px;
}

.otp-modal-container {
  background-color: rgba(68, 68, 68, 0.6);
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 11000;
}

.otp-modal-container .modal-box {
  padding: 20px;
  position: relative;
  width: 90%;
  max-width: 55rem;
  min-height: 45rem;
  top: 25vh;
  margin: auto;
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #59D0E4;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.otp-modal-container .modal-box .service-btn {
  padding: 0 25px;
}

.otp-modal-container .modal-box p {
  margin-bottom: 3rem;
}

.otp-modal-container .modal-box h3 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #9be3ef;
}

.otp-modal-container .modal-box .text-box {
  text-align: center;
}

.otp-modal-container .modal-box .change-phone {
  margin-top: 2rem;
}

.otp-modal-container .modal-box .change-phone span {
  color: #59D0E4;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  /*&:hover {
                    color: $secondaryColorLight;
                }*/
}

.otp-modal-container .modal-box .field-conainer {
  width: 60%;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 3rem;
  position: relative;
}

.otp-modal-container .modal-box .field-conainer .verify-btn {
  background-color: transparent;
  border: 0 none;
  border-radius: 0;
  font-size: 2.5rem;
  color: #009800;
  position: absolute;
  float: inline-end;
  top: 6px;
  right: -4px;
}

.wizard-steps {
  width: 100%;
  max-width: 60rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 5rem auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

@media (max-width: 991px) {
  .wizard-steps {
    max-width: 80%;
  }
}

.wizard-steps:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ccc;
  top: 18px;
  left: 0;
}

.wizard-steps .single-step {
  position: relative;
  text-align: center;
  width: 3.8rem;
  max-width: 3.8rem;
}

.wizard-steps .single-step span {
  position: relative;
  display: block;
  top: 10px;
  text-align: center;
  width: 240%;
  left: -70%;
  font-size: 12px;
}

.wizard-steps .single-step:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 40px;
  top: -6px;
  left: -6px;
  z-index: 1;
}

.wizard-steps .single-step i {
  background-color: #fff;
  position: relative;
  z-index: 2;
  text-align: center;
  width: 38px;
  height: 38px;
  color: #59D0E4;
  display: inline-block;
  padding-top: 8px;
  font-size: 16px;
  border-radius: 20px;
  border: #555195 2px solid;
  position: relative;
}

.wizard-steps .single-step.active i {
  background-color: #59D0E4;
  color: #fff;
  border: #59D0E4 2px solid;
}

.react-datepicker-wrapper {
  width: 100%;
}

.react-datepicker-wrapper .react-datepicker__tab-loop {
  position: relative;
  z-index: 9999;
}

.error-text {
  color: #eb5a3c;
  text-align: center;
  padding-top: 3px;
}

.password-container {
  position: relative;
}

.password-container .view-password {
  position: absolute;
  top: 40px;
  right: 10px;
  border: 0 none;
  background-color: transparent;
  color: #59D0E4;
}

@media (max-width: 991px) {
  .forget-password-container .service-btn {
    padding: 0 3rem;
  }
}

.file-uploader .button-wrapper {
  position: relative;
  width: 150px;
  text-align: center;
  margin: 10px 0;
}

.file-uploader .button-wrapper span.label {
  width: auto;
  display: inline-block;
  text-align: center;
  font-weight: lighter;
  text-decoration: none !important;
  text-transform: capitalize;
  background-color: transparent;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #59D0E4 !important;
  line-height: 3.2rem !important;
  padding: 0rem 4rem;
  padding-top: 0.2rem;
  border: 1px solid #59D0E4;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  width: 100%;
  cursor: pointer !important;
  z-index: 9 !important;
}

.file-uploader .button-wrapper span.label:disabled {
  background-color: #59D0E4;
  color: #eeeeee;
  cursor: not-allowed;
}

.file-uploader .button-wrapper span.label:not(:disabled):hover {
  background-color: white;
}

.file-uploader .button-wrapper span.label:not(:disabled):focus {
  border-color: #43cae0;
}

.file-uploader .button-wrapper .upload-btn {
  display: inline-block;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 50px;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer !important;
}

.file-uploader .image-container {
  width: 100px;
  display: inline-block;
  margin: 0px;
  height: 80px;
  border: 1px solid #EEE;
  border-radius: 5px;
  padding: 4px;
  text-align: center;
}

.file-uploader .image-container img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}

.file-uploader .image-container i {
  margin: auto;
  text-align: center;
  font-size: 70px;
  line-height: 1;
  color: #59D0E4;
}

.checkbox-container label.checkbox-label input[name='acceptTerms'] {
  margin-right: 5px;
}

.checkbox-container p {
  text-transform: initial;
}

.email-step label, .login-details-step label {
  text-transform: initial;
}

.homepage-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 80vh;
  padding: 20px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media (max-width: 991px) {
  .homepage-section {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 15px;
  }
}

.homepage-section .homepage-tickets {
  width: calc(100% - 420px);
  margin: 0 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media (max-width: 991px) {
  .homepage-section .homepage-tickets {
    width: 100% !important;
  }
}

.homepage-section .homepage-tickets .tickets-grid table tbody tr td:nth-child(3) {
  text-transform: uppercase;
}

.homepage-section .homepage-section-title {
  text-align: left;
  font: 15px;
  font-weight: 400;
  color: #cfcfcf;
  letter-spacing: 0px;
  padding-bottom: 10px;
}

.homepage-section .homepage-services {
  width: 420px;
  max-width: 420px;
}

@media (max-width: 991px) {
  .homepage-section .homepage-services {
    width: 100%;
    max-width: 100%;
  }
}

.homepage-section .homepage-services .homepage-section-title {
  margin-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.homepage-section .homepage-services .services-list {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media (max-width: 991px) {
  .homepage-section .homepage-services .services-list {
    width: 100%;
    max-width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 30px;
    overflow-x: auto;
    padding: 5px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.homepage-section .homepage-services .services-list .service-item {
  margin-bottom: 20px;
  background-color: #fff;
  color: #59D0E4;
  width: 190px;
  -webkit-box-shadow: 0px 3px 6px #a7a1a138;
          box-shadow: 0px 3px 6px #a7a1a138;
  border-radius: 10px;
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  position: relative;
  top: 0;
}

@media (max-width: 991px) {
  .homepage-section .homepage-services .services-list .service-item {
    width: 45%;
    margin-bottom: 15px;
    height: 50px;
    -webkit-box-shadow: 0px 2px 7px #a7a1a160;
            box-shadow: 0px 2px 7px #a7a1a160;
  }
}

.homepage-section .homepage-services .services-list .service-item:hover {
  color: #fff;
  top: -8px;
  -webkit-box-shadow: 0px 3px 3px #a7a1a138;
          box-shadow: 0px 3px 3px #a7a1a138;
}

.homepage-section .homepage-services .services-list .service-item:hover i {
  color: #fff !important;
}

.homepage-section .homepage-services .services-list .service-item i {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  vertical-align: middle;
  font-size: 30px;
  text-align: center;
  width: 40%;
}

@media (max-width: 991px) {
  .homepage-section .homepage-services .services-list .service-item i {
    width: 30%;
    font-size: 18px;
  }
}

.homepage-section .homepage-services .services-list .service-item h4 {
  padding-right: 10px;
  padding-left: 10px;
  padding-top: 5px;
  font-weight: 400;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .homepage-section .homepage-services .services-list .service-item h4 {
    font-size: 13px;
  }
}

.homepage-section .service-modal-container {
  background-color: rgba(68, 68, 68, 0.6);
  position: fixed;
  width: calc(100% - 440px);
  height: calc(100% - 95px);
  right: 0;
  bottom: 0;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 991px) {
  .homepage-section .service-modal-container {
    width: 100%;
    height: 100%;
  }
}

.homepage-section .service-modal-container .modal-box {
  position: relative;
  width: 100%;
  max-width: 55rem;
  min-height: 30rem;
  margin: auto;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  color: #59D0E4;
}

@media (max-width: 991px) {
  .homepage-section .service-modal-container .modal-box {
    width: 90%;
    min-height: auto;
  }
}

.homepage-section .service-modal-container .modal-box .title {
  background-color: #ebeaea;
  padding: 25px;
  font-size: 2.5rem;
  text-align: left;
  line-height: 1;
}

@media (max-width: 991px) {
  .homepage-section .service-modal-container .modal-box .title {
    font-size: 2rem;
  }
}

.homepage-section .service-modal-container .modal-box .title span {
  color: #59D0E4;
}

.homepage-section .service-modal-container .modal-box .title i {
  position: relative;
  top: -4px;
  float: right;
  font-size: 3.5rem;
}

@media (max-width: 991px) {
  .homepage-section .service-modal-container .modal-box .title i {
    font-size: 2.4rem;
  }
}

.homepage-section .service-modal-container .modal-box .body {
  padding: 3rem 4rem;
  text-align: start;
  line-height: 1.9;
  text-align: justify;
  font-size: 1.5rem;
}

.homepage-section .service-modal-container .modal-box .body p {
  text-transform: initial !important;
}

.homepage-section .service-modal-container .modal-box .body .service-btn {
  text-transform: uppercase;
  font-size: 1.5rem;
}

.header-userinfo {
  position: relative;
  max-height: 50px;
  max-width: 300px;
  display: inline-block;
  margin-inline: 10px;
}

@media (max-width: 991px) {
  .header-userinfo {
    width: 100%;
    text-align: center;
    max-width: 100% !important;
  }
}

.header-userinfo:hover .links-row {
  visibility: visible;
  -webkit-box-shadow: 0px 0px 6px #a7a1a160;
          box-shadow: 0px 0px 6px #a7a1a160;
  z-index: 999999;
}

.header-userinfo .username-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  line-height: 1;
  min-width: 250px;
}

@media (max-width: 991px) {
  .header-userinfo .username-row {
    text-align: center;
    width: auto;
    margin: auto;
    display: inline-block;
  }
  .header-userinfo .username-row .icon {
    display: inline-block;
  }
  .header-userinfo .username-row .user-name {
    width: auto;
    display: inline-block;
    vertical-align: top;
  }
}

.header-userinfo .username-row .icon {
  width: 50px;
  text-align: center;
  font-size: 2.7rem;
  color: #aaa;
}

.header-userinfo .username-row .user-name {
  color: #59D0E4;
  font-weight: 500;
  padding-top: 0.5rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 230px;
  font-size: 1.5rem;
}

.header-userinfo .username-row .user-name i {
  position: relative;
  top: 2px;
  padding-left: 10px;
}

.header-userinfo.customer-header .links-row {
  width: 390px;
}

.header-userinfo .links-row {
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  visibility: hidden;
  opacity: 1;
  background-color: #fff;
  position: absolute;
  border-radius: 4px;
  width: 100%;
  padding: 10px;
  z-index: 100;
}

.header-userinfo .links-row .view-profile {
  padding: 1rem 1rem;
  border-bottom: 1px solid #eee;
}

.header-userinfo .links-row .view-profile a {
  display: block;
  color: #59D0E4 !important;
}

.header-userinfo .links-row .logout {
  color: #b41932;
  cursor: pointer;
  display: block;
}

.header-userinfo .links-row .logout:hover {
  text-decoration: underline;
}

.header-userinfo .links-row .logout a {
  padding: 1rem 1rem;
  display: block;
  color: #b41932 !important;
  text-decoration: none;
}

.change-language-container {
  display: inline-block;
  padding: 0 10px;
  position: relative;
  top: -4px;
  cursor: pointer;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

@media (max-width: 991px) {
  .change-language-container {
    display: block;
    width: 100%;
    position: absolute;
    top: -70px;
    right: 0;
    padding: 20px;
    z-index: 99;
  }
}

.change-language-container:hover {
  color: #555195;
}

.change-language-container i {
  padding: 0 4px;
}

.history-side table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

.history-side table tbody td {
  padding: 0px !important;
}

.history-side table tbody td .history-row {
  background-color: transparent !important;
}

.eticket-grid .secondary-link {
  cursor: pointer;
  display: block;
  font-weight: bold;
  z-index: 1;
  color: #04ac7c;
  line-height: 30px;
}

.eticket-grid .secondary-link:hover {
  text-decoration: underline;
}

.eticket-grid .grid-filter-row th {
  background-color: #f8f8f8 !important;
  border: 0 none !important;
  padding: 4px;
  padding-bottom: 15px;
}

.eticket-grid ._loading_overlay_overlay {
  height: 100% !important;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.eticket-grid th {
  padding-bottom: 2px !important;
}

.eticket-grid th .select-list-container {
  margin-bottom: 10px;
  margin-left: 8px;
  margin-right: 8px;
  font-weight: 100;
}

.eticket-grid th .select-list-container > div {
  min-height: 0;
  border: 1px solid rgba(15, 40, 55, 0.18);
}

.eticket-grid th .select-list-container > div > div {
  padding: 0 4px;
  line-height: 14px;
}

.eticket-grid th .select-list-container .css-tlfecz-indicatorContainer,
.eticket-grid th .select-list-container .css-1gtu0rj-indicatorContainer {
  padding: 4px;
}

.eticket-grid th.sortable {
  cursor: pointer;
}

.eticket-grid th.sortable .dropdown .caret:after {
  color: #ccc;
  content: "\f160";
}

.eticket-grid th.sortable .caret {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  color: #1ea3b9 !important;
  font-size: 10px;
  padding-left: 2px;
  padding-right: 2px;
}

.eticket-grid th.sortable[aria-label~="desc"] .caret:after {
  color: #59D0E4 !important;
  content: "\f160";
}

.eticket-grid th.sortable[aria-label~="asc"] .caret:after {
  color: #59D0E4 !important;
  content: "\f161";
}

.eticket-grid table tr:hover td {
  background-color: #eeeeee !important;
  cursor: pointer;
}

.eticket-grid table tr td {
  font-size: 12px !important;
  padding: 12px;
  vertical-align: middle;
}

.eticket-grid table tr:nth-child(even) td {
  background-color: #f8f8f8;
}

.eticket-grid .sla-content {
  min-width: 130px;
  display: block;
}

.react-bootstrap-table {
  color: #59D0E4;
}

@media (max-width: 991px) {
  .react-bootstrap-table {
    max-width: 100%;
    overflow-y: auto;
  }
}

.react-bootstrap-table table {
  border: 0 none !important;
}

.react-bootstrap-table .flag-container {
  width: 30px;
  height: 30px;
  -webkit-box-shadow: 1px 1px 3px #ddd;
          box-shadow: 1px 1px 3px #ddd;
  border-radius: 20px;
  overflow: hidden;
  display: block;
}

.react-bootstrap-table .flag-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.react-bootstrap-table thead th {
  padding: 14px;
  border: 0 none;
  font-size: 1.4rem;
  font-weight: 500;
  background-color: #f8f8f8;
  vertical-align: top;
}

@media (max-width: 991px) {
  .react-bootstrap-table thead th {
    padding: 3px;
    font-size: 11px;
  }
}

.react-bootstrap-table tbody tr:nth-child(even) td {
  background-color: #f8f8f8;
}

.react-bootstrap-table tbody td {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  border: 0 none !important;
  border-bottom: 1px solid #f8f8f8 !important;
  padding: 14px;
  border: 0 none;
  font-size: 1.5rem;
  font-weight: 500;
}

@media (max-width: 991px) {
  .react-bootstrap-table tbody td {
    padding: 3px;
    font-size: 11px;
  }
}

.react-bootstrap-table tbody td .title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.react-bootstrap-table tbody td .title-container .icon {
  width: 32px;
  height: 32px;
  -webkit-box-shadow: 0px 3px 6px #a7a1a138;
          box-shadow: 0px 3px 6px #a7a1a138;
  padding-top: 8px;
  text-align: center;
  border-radius: 10px;
  line-height: 1;
}

.react-bootstrap-table tbody td .title-container .title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 1rem;
  padding-top: 5px;
}

.react-bootstrap-table tbody td .status-circle {
  color: #aaa;
  padding-top: 4px;
  line-height: 1;
}

.react-bootstrap-table tbody td .status-circle i {
  font-size: 24px;
}

.react-bootstrap-table tbody td .status-circle.approved {
  color: #7cc17c !important;
}

.react-bootstrap-table tbody td .status-circle.reviewed {
  color: #fff;
  background-color: #59D0E4;
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  text-align: center;
  padding-top: 6px;
}

.react-bootstrap-table tbody td .status-circle.reviewed i {
  font-size: 13px;
}

.react-bootstrap-table tbody td .status-circle.received {
  color: #555195;
}

.react-bootstrap-table tbody td .status-circle.rejected {
  color: #b41932;
}

.react-bootstrap-table tbody td .view-link {
  width: 100%;
  text-align: end;
}

.react-bootstrap-table tbody td .view-link a,
.react-bootstrap-table tbody td .view-link .view-btn {
  width: 8rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background-color: #fff;
  margin: 0 2px;
  border: #91b9b4 1px solid;
  font-size: 1.2rem;
  padding: 0.4rem;
  color: #91b9b4 !important;
  border-radius: 4px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  float: right;
  cursor: pointer;
}

@media (max-width: 991px) {
  .react-bootstrap-table tbody td .view-link a,
  .react-bootstrap-table tbody td .view-link .view-btn {
    width: auto;
  }
}

.react-bootstrap-table tbody td .view-link a i,
.react-bootstrap-table tbody td .view-link .view-btn i {
  padding: 0 0.4rem;
  font-size: 0.8rem;
}

@media (max-width: 991px) {
  .react-bootstrap-table tbody td .view-link a i,
  .react-bootstrap-table tbody td .view-link .view-btn i {
    display: none;
  }
}

.react-bootstrap-table tbody td .view-link a:hover,
.react-bootstrap-table tbody td .view-link .view-btn:hover {
  border: #59D0E4 1px solid;
  color: #59D0E4 !important;
}

.react-bootstrap-table tbody td .view-link button.transactions {
  width: 9.5rem;
}

.pagination {
  text-align: end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.pagination .page-item .page-link {
  border-color: #91b9b4 !important;
  color: #91b9b4 !important;
  padding-top: 3px;
  padding-bottom: 2px;
  padding-left: 6px;
  padding-right: 6px;
}

.pagination .page-item.active .page-link {
  background-color: #91b9b4 !important;
  color: #fff !important;
}

.react-bootstrap-table-pagination {
  margin: 10px;
}

textarea,
textarea.form-control {
  min-height: 160px;
}

.change-password-container {
  width: 100%;
  max-width: 600px;
  margin: auto;
  border-radius: 12px;
  overflow: auto;
}

.change-password-container .change-password-header {
  background-color: #555195;
  color: #fff;
}

.change-password-container .change-password-body {
  background-color: #fff;
}

.env-alert {
  position: fixed;
  z-index: 999009;
  width: 200px;
  right: 20px;
  bottom: 20px;
  padding: 10px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.2) !important;
          box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.2) !important;
  background-color: #000;
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  opacity: 0.7;
  line-height: 40px;
  font-size: 22px;
  -webkit-animation: 0.3s ease-out 0s 1 viewAlert;
          animation: 0.3s ease-out 0s 1 viewAlert;
}

.env-alert .close {
  font-size: 30px;
  color: #fff !important;
  text-shadow: 0 0 transparent !important;
  position: relative;
  top: -8px !important;
  opacity: 1 !important;
  right: -2px;
}

@-webkit-keyframes viewAlert {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0.8;
  }
}

@keyframes viewAlert {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0.8;
  }
}

.report-container {
  padding-top: 15px !important;
}

.advanced-search-container {
    padding: 0px 15px 0px 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 100;
}

.search-grid-table {
  display: block;
}

.search-grid-table .react-bootstrap-table {
  width: 90vw;
  overflow-x: auto;
}

.search-grid-table th {
  font-size: 12px !important;
}

.search-grid-table td {
  padding: 4px !important;
  font-size: 11px !important;
  line-height: 2.5;
  font-weight: 100 !important;
}

.search-grid-table tr:hover td {
  background-color: #eeeeee !important;
  cursor: pointer;
}

.search-results-panel {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 20px rgba(15, 40, 55, 0.06);
          box-shadow: 0px 0px 20px rgba(15, 40, 55, 0.06);
  border-radius: 0 0 10px 10px;
  padding: 20px;
  padding-bottom: 0;
  min-height: 140px;
}

.search-results-panel .search-panel-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #59D0E4;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 500;
  padding-bottom: 10px;
}

.search-results-panel .search-panel-header i {
  font-size: 18px;
  padding: 0 10px;
  position: relative;
  top: 2px;
}

.search-results-panel .search-panel-header em {
  font-size: 11px;
  font-weight: 100;
  padding-left: 15px;
  padding-right: 15px;
}

.search-results-panel .search-panel-header .close-btn {
  cursor: pointer;
  color: #ff0000;
}

.search-form-panel {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 20px rgba(15, 40, 55, 0.06);
          box-shadow: 0px 0px 20px rgba(15, 40, 55, 0.06);
  border-radius: 10px 10px 0 0;
  padding: 20px;
  padding-bottom: 0;
}

.search-form-panel label {
  color: #cfcfcf !important;
  font-size: 12px;
}

.search-form-panel .form-container {
  border-top: 1px solid #ddd;
}

.search-form-panel .search-panel-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #59D0E4;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 500;
  padding-bottom: 10px;
}

.search-form-panel .search-panel-header i {
  font-size: 18px;
  padding: 0 10px;
  position: relative;
  top: 2px;
}

.search-form-panel .search-panel-header .close-btn {
  cursor: pointer;
  color: #ff0000;
}

.advanced-search-toggle-btn {
  color: #59D0E4;
  background-color: #fff;
  border-radius: 4px;
  border: 0 none;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
  white-space: nowrap;
}

.advanced-search-toggle-btn:hover {
  color: #85dceb;
}

.assign-to-user-modal {
  position: fixed;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: rgba(153, 153, 153, 0.3);
  top: 0;
  left: 0;
}

.assign-to-user-modal .refresh-btn {
  position: absolute;
  left: 0;
  top: -20px;
  background-color: #555195;
  border-radius: 5px;
  color: #fff;
  border: 0 none;
  padding: 5px 15px;
}

.assign-to-user-modal .modal-container {
  border-radius: 12px;
  width: 100%;
  margin: auto;
  max-width: 886px;
  background-color: #fff;
  overflow: hidden;
  margin-bottom: 0;
  -webkit-box-shadow: 0px 0px 20px #0f28371c;
          box-shadow: 0px 0px 20px #0f28371c;
  border: 1px solid #e9e9e9;
  padding: 55px;
  padding-bottom: 10px;
  position: relative;
  background: url(../images/assign-img.png) no-repeat bottom right #fff;
}

.assign-to-user-modal .modal-container .tickets-grid-containers {
  max-height: 400px;
  overflow-y: auto !important;
  padding: 0 10px;
}

.assign-to-user-modal .modal-container .assign-image {
  content: "";
  margin-top: 40px;
  width: 100%;
  height: 220px;
}

.assign-to-user-modal .modal-container .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.assign-to-user-modal .modal-container .buttons .send {
  text-align: center;
  font-weight: lighter;
  text-decoration: none !important;
  text-transform: uppercase;
  background-color: #04ac7c;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #fff !important;
  line-height: 3.4rem !important;
  padding: 0rem 5rem;
  padding-top: 0rem;
  padding-top: 0.2rem;
  border: 2px solid #04ac7c !important;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  width: 49%;
}

.assign-to-user-modal .modal-container .buttons .send:hover {
  background-color: #03936a;
}

.assign-to-user-modal .modal-container .buttons .cancel {
  width: 49%;
  text-align: center;
  font-weight: lighter;
  text-decoration: none !important;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #04ac7c !important;
  line-height: 3.4rem !important;
  padding: 0rem 5rem;
  padding-top: 0rem;
  padding-top: 0.2rem;
  border: 2px solid #04ac7c !important;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.assign-to-user-modal .modal-container .buttons .cancel:hover {
  border-color: #03936a;
  color: #03936a;
}

.assign-to-user-modal .modal-container h1 {
  color: #ffaa00;
  font-size: 20px;
}

.assign-to-user-modal .modal-container .tickets-grid {
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #04ac7c;
  border-radius: 10px;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.assign-to-user-modal .modal-container .tickets-grid .tickets-tables table tr td {
  font-size: 13px;
  color: #0f2837;
  padding: 3px 8px;
}

.assign-to-user-modal .modal-container .tickets-grid .tickets-tables table tr td.number {
  color: #04ac7c;
}

.assign-to-user-modal .modal-container .tickets-grid .tickets-tables table tr:nth-child(odd) td {
  background-color: #f2f2f2;
}

.assign-to-user-modal .modal-container .tickets-grid .user-info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}

.assign-to-user-modal .modal-container .tickets-grid .user-info h3 {
  font-size: 13px;
  letter-spacing: 0px;
  color: #4c2c83;
  font-weight: bold;
}

.assign-to-user-modal .modal-container .tickets-grid .user-info h4 {
  color: #0f2837;
  font-weight: bold;
  font-size: 11px;
}

.assign-to-user-modal .modal-container .tickets-grid .user-info .tickets-tables {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.assign-to-user-modal .modal-container .tickets-grid .tickets-tables {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.assign-to-user-modal .modal-container .tickets-grid .tickets-tables table {
  width: 100%;
}

.grid-filter-row tr:first-child {
  background-color: #f8f8f8 !important;
}

.grid-filter-row tr:first-child:hover td {
  background-color: #f8f8f8 !important;
}

.schedule-reports-grid .expired-span {
  position: absolute;
  width: 50px;
  height: 30px;
  z-index: 11;
}

.schedule-reports-grid .schedule-reports-table-action .fa {
  font-size: 20px;
  margin-inline: 6px;
  padding: 8px;
  border-radius: 100px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.schedule-reports-grid .schedule-reports-table-action .fa:hover {
  background-color: rgba(128, 128, 128, 0.404);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.schedule-reports-grid .schedule-reports-table-action .fa-edit {
  color: #59D0E4;
}

.ticket-viewer {
  width: 100%;
}

.ticket-viewer .ticket-header {
  background-color: #b41932;
  color: #fff;
  font-size: 3.5rem;
}

.ticket-viewer .ticket-header i {
  padding: 4rem 1rem;
  font-size: 7rem;
}

@media (max-width: 991px) {
  .ticket-viewer .ticket-header i {
    padding: 2rem 1rem;
    font-size: 3rem;
  }
}

.ticket-viewer .ticket-header span.title {
  display: block;
  padding: 5rem 1rem;
}

@media (max-width: 991px) {
  .ticket-viewer .ticket-header span.title {
    padding: 2rem 1rem;
    font-size: 1.8rem;
  }
}

.ticket-viewer .back-link {
  font-size: 1.7rem;
  margin-top: 2rem;
  margin-left: 1rem;
  font-weight: 500;
}

.ticket-viewer .back-link a {
  text-decoration: none !important;
  color: #59D0E4;
}

.ticket-viewer .back-link a i {
  position: relative;
  top: -1px;
  font-size: 1.2rem;
  padding: 0 1rem;
}

.ticket-viewer .main-content {
  margin: auto;
  margin-top: 3rem;
  width: 100%;
  max-width: 550px;
}

@media (max-width: 991px) {
  .ticket-viewer .main-content {
    padding: 2rem;
  }
}

.ticket-viewer .main-content h2.name {
  font-size: 3.7rem;
  letter-spacing: 0px;
  color: #59D0E4;
  font-weight: 500;
}

@media (max-width: 991px) {
  .ticket-viewer .main-content h2.name {
    font-size: 2rem;
  }
}

.ticket-viewer .main-content .details {
  line-height: 2.5;
  font-size: 1.7rem;
  color: #59D0E4;
}

.ticket-viewer .main-content .details .single-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ticket-viewer .main-content .details .single-row .title {
  width: 25rem;
  font-weight: 500;
}

.ticket-viewer .main-content .details .single-row .value {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.ticket-viewer .main-content .attachments-link a {
  color: #59D0E4 !important;
  font-size: 1.5rem;
  font-weight: 500;
}

.ticket-viewer .main-content .bordered-title {
  text-align: center;
  position: relative;
  font-size: 1.6rem;
}

.ticket-viewer .main-content .bordered-title:after {
  content: "";
  display: block;
  position: absolute;
  height: 36px;
  height: 1px;
  width: 100%;
  top: 50%;
  background-color: #59D0E4;
}

.ticket-viewer .main-content .bordered-title span {
  background-color: #fff;
  position: relative;
  padding: 0 2rem;
  z-index: 99;
}

.request-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.request-status .single-step {
  width: 40%;
  text-align: center;
  position: relative;
}

.request-status .single-step .step-title {
  padding-top: 8px;
  color: #59D0E4;
  text-align: center;
  font-size: 1.2rem;
  width: 50px;
  line-height: 1.4;
}

.request-status .single-step .step-title i {
  display: block;
  position: relative;
  top: 3px;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.request-status .single-step .icon-container {
  border: 6px solid #fff;
  width: 50px;
  height: 50px;
  text-align: center;
  background-color: #7cc17c;
  color: #fff;
  border-radius: 30px;
  font-size: 20px;
  line-height: 1;
  position: relative;
  z-index: 4;
  padding-top: 0;
}

.request-status .single-step .icon-container i {
  padding-top: 10px;
}

.request-status .single-step .icon-container .border-container {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background-color: #fff;
}

.request-status .single-step .icon-container .border-container:empty {
  border: 1px solid #ccc;
}

.request-status .single-step .icon-container .border-container i {
  padding-top: 10px;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.request-status .single-step .icon-container .border-container i.approved {
  background-color: #7cc17c;
}

.request-status .single-step .icon-container .border-container i.rejected {
  background-color: #b41932;
}

.request-status .single-step .icon-container .border-container i.waiting {
  background-color: #ccc;
}

.request-status .single-step .icon-container.last {
  background-color: transparent;
  padding: 0;
}

.request-status .single-step:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #ccc;
  left: 0;
  top: 24px;
  z-index: 1;
}

.request-status .single-step:last-child {
  width: 20%;
}

.request-status .single-step:last-child:after {
  display: none;
}

.cuser-new-request .input-group.date.col-md-9 {
  padding-right: 0;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cuser-new-request .input-group.date.col-md-9 .form-control {
  width: initial;
}

.cuser-new-request .iti--allow-dropdown {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 !important;
}

.cuser-new-request .iti--allow-dropdown .phone-number-container {
  width: 100% !important;
  max-width: none !important;
}

.cuser-new-request .iti--allow-dropdown .phone-number-container::-webkit-input-placeholder {
  display: none !important;
  color: transparent !important;
  opacity: 0 !important;
}

.cuser-new-request .iti--allow-dropdown .phone-number-container:-ms-input-placeholder {
  display: none !important;
  color: transparent !important;
  opacity: 0 !important;
}

.cuser-new-request .iti--allow-dropdown .phone-number-container::-ms-input-placeholder {
  display: none !important;
  color: transparent !important;
  opacity: 0 !important;
}

.cuser-new-request .iti--allow-dropdown .phone-number-container::placeholder {
  display: none !important;
  color: transparent !important;
  opacity: 0 !important;
}

.cuser-new-request div[id^="datetimepicker"].input-group .input-group-text {
  padding: 0.375rem 1.75rem;
  font-size: 1.5rem;
}

.cuser-new-request .bootstrap-datetimepicker-widget.dropdown-menu {
  width: 250px !important;
  font-size: 14px;
}

.cuser-new-request p.error {
  color: #b41932;
  margin-top: 5px;
  font-size: 1.5rem;
}

@media (max-width: 991px) {
  .agent-grid table th,
  .react-bootstrap-table table th {
    min-width: 100px;
  }
  .agent-grid table th:before,
  .react-bootstrap-table table th:before {
    content: "";
    display: block;
    width: 120px;
  }
}

@media (max-width: 991px) {
  .react-bootstrap-table-pagination-list,
  .react-bootstrap-table-pagination {
    margin-top: 10px;
    text-align: left !important;
  }
}

@media (max-width: 991px) {
  .react-bootstrap-table-page-btns-ul {
    width: auto;
    margin: auto;
  }
}

.section-header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 2px solid #D9D9D9;
}

.section-header-container .section-header {
  border-bottom: transparent;
}

.section-header-container .edit-details {
  color: #125F8A;
  border: 1px solid;
  vertical-align: middle;
  border: 1px solid #91B9B4;
  border-radius: 20px;
  padding: 0.5rem 2rem;
  cursor: pointer;
}

.section-header-container .edit-details .fa-edit {
  -webkit-padding-end: 10px;
          padding-inline-end: 10px;
}

.profile-viewer {
  width: 100%;
}

.profile-viewer .profile-header {
  background-color: #59D0E4;
  color: #fff;
  font-size: 3.5rem;
  margin: 0;
}

.profile-viewer .profile-header i {
  padding: 4rem 1rem;
  font-size: 7rem;
}

.profile-viewer .profile-header span.title {
  display: block;
  padding: 5rem 1rem;
}

.profile-viewer .back-link {
  font-size: 1.7rem;
  margin-top: 2rem;
  margin-left: 1rem;
  font-weight: 500;
}

.profile-viewer .back-link a {
  text-decoration: none !important;
  color: #59D0E4;
}

.profile-viewer .back-link a i {
  position: relative;
  top: -1px;
  font-size: 1.2rem;
  padding: 0 1rem;
}

.profile-viewer .main-content {
  margin: auto;
  margin-top: 3rem;
  width: 100%;
  max-width: 550px;
}

.profile-viewer .main-content h2.name {
  font-size: 3.7rem;
  letter-spacing: 0px;
  color: #59D0E4;
  font-weight: 500;
}

.profile-viewer .main-content .details {
  line-height: 2.5;
  font-size: 1.7rem;
  color: #59D0E4;
}

.profile-viewer .main-content .details .single-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.profile-viewer .main-content .details .single-row .title {
  width: 26rem;
  font-weight: 500;
}

.profile-viewer .main-content .details .single-row .value {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.profile-viewer .main-content .attachments-link a {
  color: #59D0E4 !important;
  font-size: 1.5rem;
  font-weight: 500;
}

.profile-viewer .main-content .bordered-title {
  text-align: center;
  position: relative;
  font-size: 1.6rem;
}

.profile-viewer .main-content .bordered-title:after {
  content: "";
  display: block;
  position: absolute;
  height: 36px;
  height: 1px;
  width: 100%;
  top: 50%;
  background-color: #59D0E4;
}

.profile-viewer .main-content .bordered-title span {
  background-color: #fff;
  position: relative;
  padding: 0 2rem;
  z-index: 99;
}

.phone-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.phone-container .phone-label {
  width: 65%;
  font-weight: 500;
  color: #59D0E4;
  text-transform: initial;
}

.phone-container .phone-link {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.phone-container .phone-link i {
  padding-right: 10px;
  padding-left: 10px;
}

.profile-header {
  margin-right: 25px;
}

@media (max-width: 991px) {
  .profile-header {
    margin-right: 15px !important;
    margin-left: 15px !important;
  }
}

.profile-header .moc-card {
  padding: 10px 15px;
}

.profile-header .card-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 991px) {
  .profile-header .card-heading {
    display: block;
  }
  .profile-header .card-heading .main-title h3 {
    font-size: 16px !important;
  }
  .profile-header .card-heading .actions {
    margin-top: 25px;
  }
}

.profile-header .card-heading .main-title {
  color: #59D0E4;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.profile-header .card-heading .main-title h3 {
  font-size: 25px;
  line-height: 1;
  color: #b41932;
}

.profile-header .card-heading .main-title h3 i {
  color: #555195;
  position: relative;
  top: 2px;
  padding-right: 5px;
}

.profile-header .card-heading .main-title h3 span {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 13px;
  font-style: italic;
  color: #59D0E4;
  font-weight: 100;
}

.profile-header .card-heading .main-title h3 span.rejected {
  position: relative;
}

.profile-header .card-heading .main-title h3 span.rejected:after {
  position: absolute;
  left: -4px;
  top: 0;
  content: "/";
}

.profile-header .card-heading .main-title .actions {
  text-align: end;
  max-width: 150px;
}

.profile-header .card-heading .actions button,
.profile-header .card-heading .actions a {
  border-radius: 4px;
  width: 40px;
  height: 40px;
  margin: 0 4px;
  border: 0 none;
  padding-top: 2px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  display: inline-block;
  text-align: center;
  line-height: 28px;
  vertical-align: top;
}

.profile-header .card-heading .actions button:hover,
.profile-header .card-heading .actions a:hover {
  -webkit-box-shadow: 0px -2px 5px rgba(15, 40, 55, 0.2);
          box-shadow: 0px -2px 5px rgba(15, 40, 55, 0.2);
}

.profile-header .card-heading .actions button.add-btn,
.profile-header .card-heading .actions a.add-btn {
  background-color: #555195;
  color: #fff;
  padding-top: 7px;
}

.profile-header .card-heading .actions button.edit-btn,
.profile-header .card-heading .actions a.edit-btn {
  background-color: #59D0E4;
  color: #fff;
  line-height: 2.6;
}

.profile-header .card-heading .actions button.history-btn,
.profile-header .card-heading .actions a.history-btn {
  border: 1px solid #59D0E4;
  color: #59D0E4;
  background-color: #fff;
}

.profile-header .header-content {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-weight: 500;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 991px) {
  .profile-header .header-content {
    min-height: 90px;
  }
}

.profile-header .header-content i {
  color: #91b9b4;
  padding: 0 8px;
  font-size: 14px;
}

.profile-header .header-content .info-block {
  padding: 4px 10px;
  max-height: 22px;
  line-height: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  /*text-align: center;*/
}

.profile-header .header-content .info-block.email {
  text-transform: initial;
}

@media (max-width: 991px) {
  .profile-header .header-content .info-block {
    width: 50%;
  }
}

.profile-requests-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: 25px;
}

.profile-requests-container .profile-requests {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.profile-requests-container .profile-requests.open {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
}

.profile-requests-container .profile-requests:nth-child(1) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.profile-requests-container .profile-requests:nth-child(2) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

@media (max-width: 991px) {
  .profile-requests-container .profile-requests {
    width: 95% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

.profile-requests-container .react-bootstrap-table-pagination {
  margin: 10px;
}

.profile-requests-container .profile-sidebar {
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px rgba(15, 40, 55, 0.06);
          box-shadow: 0 0 20px rgba(15, 40, 55, 0.06);
  border-radius: 10px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 8px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-left: 10px;
  width: 20%;
}

@media (max-width: 991px) {
  .profile-requests-container .profile-sidebar {
    position: fixed !important;
    width: 100%;
    z-index: 999;
    bottom: 0;
    height: auto;
    -webkit-box-shadow: 0 0 10px #ccc;
            box-shadow: 0 0 10px #ccc;
    border-radius: 0 !important;
    padding: 20px;
    max-height: 40vh;
    overflow-y: auto;
  }
}

.profile-requests-container .profile-sidebar .history-title {
  padding: 10px;
  color: #59D0E4;
  font-weight: 500;
  border-bottom: 1px solid #f1f1f3;
}

.transaction-side {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 99;
  width: 100%;
  height: 100%;
}

.transaction-side .title {
  padding: 10px;
  color: #59D0E4;
  font-weight: 500;
  border-bottom: 1px solid #f1f1f3;
}

.transaction-side .title .close-text {
  cursor: pointer;
}

.transaction-side .close-btn {
  color: #555195;
  cursor: pointer;
}

.history-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 50px;
  font-size: 13px;
  border-radius: 4px;
  margin-bottom: 10px;
  border: 1px solid #eee;
}

.history-row:nth-child(odd) {
  background-color: #f9f9f9;
}

.history-row .ticket-number {
  width: 70px;
  color: #555195;
  text-align: start;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.history-row .ticket-details {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.history-row .ticket-details .ticket-title {
  width: 100%;
  color: rgba(89, 208, 228, 0.8);
  font-size: 15px;
  padding: 4px;
  text-align: start;
  cursor: pointer;
  font-weight: 500;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 12px;
}

.history-row .ticket-details .ticket-title .icon {
  display: inline-block;
  padding: 0 10px;
  font-size: 16px;
}

.history-row .ticket-details .ticket-title i {
  cursor: pointer;
}

.history-row .ticket-details .ticket-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
}

.history-row .ticket-details .ticket-content > span {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.history-row .ticket-details .ticket-content .actor {
  text-align: start;
  color: #0f2837;
}

.history-row .ticket-details .ticket-content .date {
  text-align: end;
  font-size: 12px;
  color: #91b9b4;
}

.history-row .ticket-details .ticket-comment {
  margin-top: 10px;
  text-align: start;
  padding: 10px;
  border-top: 1px solid #eee;
}

.show-comments .show-more {
  color: #555195;
  text-transform: initial;
}

.update-profile-container {
  margin-right: 30px;
}

@media (max-width: 991px) {
  .update-profile-container {
    margin-right: 15px;
    margin-left: 15px;
  }
}

.update-profile-container .card-content {
  margin: auto;
  max-width: 700px;
}

.update-profile-container .card-content .form-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 28px !important;
}

@media (max-width: 991px) {
  .update-profile-container .card-content .form-block {
    display: block;
    margin-bottom: 15px !important;
  }
}

.update-profile-container .card-content .form-block .input-container {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: auto;
}

.update-profile-container .card-content .form-block .input-container select {
  width: 100%;
}

.update-profile-container .card-content .form-block .input-container input {
  width: 100%;
}

.update-profile-container .card-content .form-block .form-label {
  width: 190px;
  font-size: 16px;
  padding-top: 10px;
  /*& + input, & + .radio-container, & + .select-container, & + .react-datepicker-wrapper {
                    flex-grow: 1;
                    width: auto;

                    select {
                        width: 100%;
                    }

                    input {
                        width: 100%;
                    }
                }*/
}

@media (max-width: 991px) {
  .update-profile-container .card-content .form-block .form-label {
    width: 100%;
  }
}

.update-profile-container .card-content .form-block.date-container {
  z-index: 99;
}

html {
  font-size: 62.5%;
}

html body {
  font-size: 1.4rem;
}

*:not(input):not(textarea):not(button):not(.default-case):not(select.default-case option) {
  text-transform: capitalize;
}

#renderer-wrap label {
  text-transform: none !important;
}

li.select2-results__option {
  text-transform: none !important;
}

select.default-case + span.select2-container span.select2-selection__rendered {
  text-transform: none !important;
}

.default-case {
  text-transform: none;
}

.rtl-layout {
  direction: rtl !important;
  text-align: right;
  overflow-x: hidden;
  /*.react-tel-input .selected-flag {
        padding: 0 10px 0px 8px;
    }

    .react-tel-input .form-control {
        padding-right: 48px;
    }

    .react-tel-input .selected-flag .arrow {
        left: -25px;
    }*/
  /*.new-request {*/
  /*}*/
}

.rtl-layout .view-report i {
  margin-right: 0;
  margin-left: 5px;
}

.rtl-layout .list-unstyled {
  padding-right: 0;
  padding-left: initial;
}

.rtl-layout .main-header .header-logo img {
  -o-object-position: left;
     object-position: left;
}

.rtl-layout .report-container .view-report {
  border-right: 0 none;
  border-left: 2px solid #ddd;
}

.rtl-layout .report-container .report-modal-main-container .report-modal .close-btn {
  right: auto;
  left: 0;
}

.rtl-layout .wizard-steps .single-step span {
  right: -70%;
  left: initial;
}

.rtl-layout .password-container .view-password {
  left: 10px;
  right: initial;
}

.rtl-layout .back-link a:hover img {
  -webkit-transform: rotate(90deg) !important;
          transform: rotate(90deg) !important;
}

.rtl-layout .fa-angle-right,
.rtl-layout .fa-chevron-left,
.rtl-layout .fa-chevron-right {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.rtl-layout .view-btn {
  float: left;
}

.rtl-layout .control {
  padding-right: 30px;
  padding-left: 0px;
}

.rtl-layout .control_indicator {
  left: auto;
  right: -10px;
}

.rtl-layout .react-tel-input {
  direction: ltr;
  text-align: left;
}

.rtl-layout .otp-modal-container .modal-box .field-conainer .verify-btn {
  float: left;
  top: 2px;
  left: -4px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  right: auto;
}

.rtl-layout .react-toast-notifications__container {
  direction: ltr;
}

.rtl-layout .homepage-section .homepage-section-title {
  text-align: right !important;
}

.rtl-layout .homepage-section .service-modal-container {
  left: 0;
  right: auto;
}

.rtl-layout .homepage-section .service-modal-container .modal-box .title {
  text-align: right;
}

.rtl-layout .homepage-section .service-modal-container .modal-box .title i {
  float: left;
}

.rtl-layout .profile-header .header-content .info-block:not(:last-child) {
  border-right: 0 none !important;
}

.rtl-layout .profile-header .card-heading .main-title h3 span:after {
  right: -4px;
  left: 0;
}

.rtl-layout .profile-requests-container,
.rtl-layout .profile-header {
  margin-left: 25px;
  margin-right: 0px;
}

.rtl-layout .profile-requests-container .profile-sidebar {
  /*        border-radius: 0 10px 10px 0;*/
  border-radius: 10px;
  margin-left: 0px;
  margin-right: 20px;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  width: 20%;
}

.rtl-layout .select2-container--default .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: initial;
}

@media (min-width: 576px) {
  .rtl-layout .offset-sm-2 {
    margin-right: 16.666667%;
    margin-left: initial;
  }
}

@media (min-width: 576px) {
  .rtl-layout .offset-sm-4 {
    margin-right: 33.333333%;
    margin-left: initial;
  }
}

.rtl-layout .custom-checkbox label.custom-control-label,
.rtl-layout .custom-checkbox label.error {
  padding-right: 20px;
  padding-left: initial;
}

.rtl-layout .custom-control-label::before,
.rtl-layout .custom-control-label::after {
  right: -1.5rem;
  left: initial;
}

.rtl-layout .radio label {
  margin-left: 30px;
  padding-right: 10px;
  margin-right: initial;
  padding-left: initial;
}

@media (min-width: 576px) {
  .rtl-layout .radio label {
    margin-left: 20px;
  }
}

.rtl-layout .file-names span.remove-file {
  margin-right: 10px;
  margin-left: 0;
}

.rtl-layout .radio .custom-control-label::after {
  right: -2rem;
  left: initial;
}

@media (min-width: 576px) {
  .rtl-layout .offset-sm-3 {
    margin-right: 25%;
    margin-left: initial;
  }
}

.rtl-layout .offset-3 {
  margin-right: 25%;
  margin-left: initial;
}

@media (min-width: 768px) {
  .rtl-layout .offset-md-3 {
    margin-right: 25%;
    margin-left: initial;
  }
}

@media (min-width: 768px) {
  .rtl-layout .offset-md-4 {
    margin-right: 33.333333%;
    margin-left: initial;
  }
}

.rtl-layout .input-group > .custom-select:not(:last-child),
.rtl-layout .input-group > .form-control:not(:last-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.rtl-layout .input-group > .input-group-append > .btn,
.rtl-layout .input-group > .input-group-append > .input-group-text,
.rtl-layout .input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.rtl-layout .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child),
.rtl-layout .input-group > .input-group-prepend:not(:first-child) > .btn,
.rtl-layout .input-group > .input-group-prepend:not(:first-child) > .input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

@media (min-width: 576px) {
  .rtl-layout .cuser-new-request .offset-sm-3 {
    margin-right: 23%;
  }
}

.rtl-layout .preview-data .preview .service-info h2 span.icon {
  right: -60px;
  left: initial;
}

.rtl-layout .float-right {
  float: left !important;
}

.rtl-layout .main-request-page {
  margin-left: 20px;
  margin-right: 0;
}

.rtl-layout .react-grid-layout {
  direction: ltr;
}

.rtl-layout .request-container .transaction-side {
  left: 0 !important;
  right: auto !important;
  border-radius: 0 10px 10px 0;
}

.rtl-layout .offset-md-2 {
  margin-left: 0;
  margin-right: 16.666667%;
}

.rtl-layout .offset-md-1 {
  margin-left: 0;
  margin-right: 8.333333%;
}

.rtl-layout .main-request-page .request-header .title button {
  margin-right: 20px;
  margin-left: 0px;
}

.rtl-layout .iti--allow-dropdown .iti__flag-container,
.rtl-layout .iti--separate-dial-code .iti__flag-container {
  /* right: 0;
        left: auto;*/
}

.rtl-layout .iti--separate-dial-code .iti__selected-dial-code {
  margin-right: 6px;
}

.rtl-layout .iti__country {
  text-align: right;
  direction: ltr;
}

.rtl-layout .iti__flag-box {
  float: right;
  margin: 0 5px;
  position: relative;
  top: 3px;
}

.rtl-layout .iti__dial-code {
  float: left;
}

.rtl-layout .cuser-new-request .iti--allow-dropdown .phone-number-container {
  padding-left: 95px !important;
  direction: ltr;
}

.rtl-layout .cuser-new-request .iti--allow-dropdown .phone-number-container::-webkit-input-placeholder {
  /* Edge */
  direction: rtl;
  text-align: right;
}

.rtl-layout .cuser-new-request .iti--allow-dropdown .phone-number-container:-ms-input-placeholder {
  /* Edge */
  direction: rtl;
  text-align: right;
}

.rtl-layout .cuser-new-request .iti--allow-dropdown .phone-number-container::-ms-input-placeholder {
  /* Edge */
  direction: rtl;
  text-align: right;
}

.rtl-layout .cuser-new-request .iti--allow-dropdown .phone-number-container::placeholder {
  /* Edge */
  direction: rtl;
  text-align: right;
}

.rtl-layout .cuser-new-request .iti--allow-dropdown .phone-number-container::-webkit-input-placeholder {
  /* Edge */
  direction: rtl;
  text-align: right;
}

.rtl-layout .cuser-new-request .iti--allow-dropdown .phone-number-container::-moz-placeholder {
  /* Edge */
  direction: rtl;
  text-align: right;
}

.rtl-layout::-webkit-input-placeholder {
  /* Edge */
  direction: rtl;
  text-align: right;
}

.rtl-layout::-moz-placeholder {
  /* Edge */
  direction: rtl;
  text-align: right;
}

.rtl-layout .ticket-card {
  border-radius: 80px 10px 10px 10px !important;
}

.rtl-layout .card-action-btn {
  border-radius: 30px 10px 10px 10px !important;
}

.rtl-layout .request-details-container .request-details-header .header-items .card-filters .card-navigation {
  direction: ltr !important;
}

.rtl-layout .MuiTypography-root.MuiTypography-overline {
  font-size: 1.75rem;
  font-weight: 500;
  font-family: 'effra';
  letter-spacing: 0px;
}

.phone-container .service-btn {
  direction: ltr;
}

.ltr {
  direction: ltr;
}

.profile-viewer .text-right {
  text-align: left !important;
}

.eservice-login-form .form-container .float-left {
  float: right !important;
}

.reach-us a {
  direction: ltr;
  display: inline-block;
}

.checkbox-container label.checkbox-label input[name="acceptTerms"] {
  margin-left: 5px;
  margin-right: 0;
}

.personal-info-step p.text-secondary strong {
  direction: ltr;
  display: inline-block;
}

.btns-container button:first-child {
  margin-left: 0.5rem !important;
  margin-right: 0 !important;
}

.assign-to-user-modal .modal-container {
  background-position: bottom left !important;
}

.main-request-page .assigned-info {
  float: right;
}

.page-item:first-child .page-link {
  border-radius: 0;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-radius: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.welcoming-modal .modal-container .welcome-modal-container .modal-body .left-side {
  padding-left: 0px;
  padding-right: 50px;
}

.welcoming-modal .modal-container .welcome-modal-container .modal-body .right-side .image-container {
  left: auto !important;
}

.request-modal-container {
  right: auto;
  left: 0;
}

.iti__selected-flag {
  height: 40px !important;
}

.loading {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 999;
  display: none;
}

.sk-chase {
  width: 40px;
  height: 40px;
  position: absolute;
  -webkit-animation: sk-chase 2.5s infinite linear both;
          animation: sk-chase 2.5s infinite linear both;
  left: 50%;
  top: 50%;
  z-index: 999;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: sk-chase-dot 2.0s infinite ease-in-out both;
          animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background-color: #555195;
  border-radius: 100%;
  -webkit-animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
          animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
  -webkit-animation-delay: -1.0s;
          animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3) {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
  -webkit-animation-delay: -1.0s;
          animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3):before {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}

@-webkit-keyframes sk-chase {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes sk-chase {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes sk-chase-dot {
  80%, 100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes sk-chase-dot {
  80%, 100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes sk-chase-dot-before {
  50% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
  }
  100%, 0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes sk-chase-dot-before {
  50% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
  }
  100%, 0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.toast {
  font-size: 1.5rem;
}

.buttons .field-btnAdd {
  margin-left: 10px;
  margin-right: 10px;
}

.auth-bg .change-language {
  color: #8d8686 !important;
}

.react-datepicker-popper .react-datepicker .react-datepicker__day {
  color: black !important;
}
.dropdown-toggle::after {
    content: none !important;
}
.custom-report-button-action {
    font-size: 1.4rem;
}
.search-tab {
    text-transform: none !important;
    min-height: inherit !important;
}
.text-green {
    color: #35763f !important;
}
.font-weight-500 {
    font-weight: 500;
}
.my-queries-loader {
    min-height: 0px !important;
}
.MuiTabPanel-root {
    padding: 24px 0px 24px 0px !important
}
/*# sourceMappingURL=alasila.main.css.map */