html,
body {
  background: #fafafa;
  color: #444;
  font-weight: 400;
  font-family: Segoe UI Historic, Segoe UI, Helvetica, Arial, sans-serif;
}

.tinyInputStyle {
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

.buttonOutline {
  background: none;
  color: #222;
  border-width: 1px;
  border-style: solid;
  border-color: currentColor;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}

.buttonOutline:hover, .buttonOutline:focus {
  background-color: #fff;
}

.hidden {
  display: none;
}

.appTopBar {
  position: relative;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  z-index: 10;
}

.appTopBar .topBarContainer {
  padding: 15px 0;
  box-sizing: border-box;
  min-height: 60px;
}

.topBarDropDown {
  border: 1px solid #ddd;
  max-width: 85vw;
  width: 800px;
  padding: 16px 16px;
}

.accountDropDown {
  padding: 16px 16px;
  border: 1px solid #ddd;
}

.labelLight {
  border: 1px solid #1e87f0;
  background-color: #fff;
  color: #1e87f0;
  font-size: 12px;
  font-weight: 600;
}

.labelLight.red {
  border: 1px solid #e91e63;
  color: #e91e63;
}

.labelLight.yellow {
  border: 1px solid #ffc107;
  color: #ffc107;
}

.avatarImage {
  max-width: 100% !important;
  height: auto;
  border-radius: 50%;
}

.cursorPointer {
  cursor: pointer;
}

.lightTitle {
  font-weight: 300;
}

.customCover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.22);
}

.buttonOutlineBlue {
  background: #1e87f0;
  color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: currentColor;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}

.buttonOutlineBlue:hover, .buttonOutlineBlue:focus {
  background-color: #0e6ecd;
}


.buttonOutlineRed {
  background: #e91e63;
  color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: currentColor;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}

.buttonOutlineRed:hover, .buttonOutlineRed:focus {
  background-color: #b9164d;
  color: #fff;
}

table.tableLight thead {
  background-color: #fff;
}

table.tableLight thead tr th {
  color: #000;
  font-size: .7rem;
  font-weight: 700;
}

.lightDrop {
  padding: 16px 16px;
  border: 1px solid #ddd;
}

.uk-notification-message-danger {
  background-color: #f0506e;
  color: #fff;
}

.uk-notification-message-success {
  background-color: #32d296;
  color: #fff;
}

.uk-notification-message-warning {
  background-color: #faa05a;
  color: #000;
}

.dashBoardModules {
  margin: 0;
}

.loadingSpinner {
  position: fixed;
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  background: radial-gradient(rgba(97, 97, 97, 0.78), rgba(255, 255, 255, 0.5));
}

#resultTable tr:nth-of-type(odd) {
  background: #eeeeee !important;
}

.searchBar {
  background-color: #fff !important;
  border-radius: 4px;
}

.contactsListContainer {
  overflow-y: scroll;
  height: 1px;
  /*  @media (max-width: 958px) {
        width: calc(100vw - 35px)
    }
*/
  /* @media (min-width: 768px) {
        max-height: calc(100vh - 22vh);
    }

    @media (max-width: 767px) {
        max-height: calc(100vh - 33vh);
    }*/
}

.contactRow {
  height: 75px;
}

.dictionaryBar {
  width: 25px;
  padding-left: 10px;
}

.dictionaryBar .letter {
  cursor: pointer;
  user-select: none;
  font-size: 12px;
  text-align: center;
}

.dictionaryBar .letter:hover {
  background-color: #e4e4e4;
  border-radius: 8px;
}

/* -----------------------------
Switch */
.uk-switch {
  position: relative;
  display: inline-block;
  height: 34px;
  width: 60px;
}

/* Hide default HTML checkbox */
.uk-switch input {
  display: none;
}

/* Slider */
.uk-switch-slider {
  background-color: rgba(0, 0, 0, 0.22);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 500px;
  bottom: 0;
  cursor: pointer;
  transition-property: background-color;
  transition-duration: .2s;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.07);
}

/* Switch pointer */
.uk-switch-slider:before {
  content: '';
  background-color: #fff;
  position: absolute;
  width: 30px;
  height: 30px;
  left: 2px;
  bottom: 2px;
  border-radius: 50%;
  transition-property: transform, box-shadow;
  transition-duration: .2s;
}

/* Slider active color */
input:checked + .uk-switch-slider {
  background-color: #39f !important;
}

/* Pointer active animation */
input:checked + .uk-switch-slider:before {
  transform: translateX(26px);
}

/* Modifiers */
.uk-switch-slider.uk-switch-on-off {
  background-color: #f0506e;
}

input:checked + .uk-switch-slider.uk-switch-on-off {
  background-color: #32d296 !important;
}

/* Style Modifier */
.uk-switch-slider.uk-switch-big:before {
  transform: scale(1.2);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.22);
}

.uk-switch-slider.uk-switch-small:before {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.22);
}

input:checked + .uk-switch-slider.uk-switch-big:before {
  transform: translateX(26px) scale(1.2);
}

/* Inverse Modifier - affects only default */
.uk-light .uk-switch-slider:not(.uk-switch-on-off) {
  background-color: rgba(255, 255, 255, 0.22);
}

.uk-max-width-100 {
  max-width: 100%;
}

.uk-max-width-50 {
  max-width: 50%;
}

/* Fix z-index bug */
.uk-notification {
  z-index: 91004;
}