@charset "UTF-8";
input[type='checkbox'],
input[type='radio'] {
  /* Tokens */
  --color-accent: #1791c5;
  --color-accent-inner: #fff;
  --color-bg: #fff;
  --color-border: var(--color-accent);
  --color-border-hover: var(--color-accent);
  --color-disabled: #F6F8FF;
  --color-disabled-inner: #E1E6F9;
  --ring-color: rgba(23,145,197,.5);
  --ring-size: 3px;
  /* outward spread */
  --tr: .28s;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 21px;
  height: 21px;
  margin: 0;
  padding: 0;
  position: relative;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  user-select: none;
  background: var(--b, var(--color-bg));
  border: 1px solid var(--bc, var(--color-border));
  border-radius: 4px;
  /* radios override */
  outline: none !important;
  transition: background var(--tr), border-color var(--tr), box-shadow var(--tr), transform var(--tr);
  box-shadow: 0 0 0 0 var(--ring-color);
  /* Hover (only when interactive & not already checked) */
  /* Focus ring */
  /* Checked state: fill + persistent ring */
  /* Disabled */
}

input[type='checkbox']::after,
input[type='radio']::after {
  /* internal indicator */
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: var(--o, 0);
  transition: opacity 0.25s var(--tr), transform 0.45s cubic-bezier(0.2, 0.85, 0.32, 1.2);
}

input[type='checkbox']:hover:not(:disabled):not(:checked),
input[type='radio']:hover:not(:disabled):not(:checked) {
  --bc: var(--color-border-hover);
}

input[type='checkbox']:focus-visible, input[type='checkbox']:focus,
input[type='radio']:focus-visible,
input[type='radio']:focus {
  box-shadow: 0 0 0 var(--ring-size) var(--ring-color);
}

input[type='checkbox']:checked,
input[type='radio']:checked {
  --b: var(--color-accent);
  --bc: var(--color-accent);
  --o: 1;
  box-shadow: 0 0 0 var(--ring-size) var(--ring-color);
  /* keep ring after focus loss */
}

input[type='checkbox']:disabled,
input[type='radio']:disabled {
  --b: var(--color-disabled);
  cursor: not-allowed;
  opacity: .85;
}

input[type='checkbox']:disabled:checked,
input[type='radio']:disabled:checked {
  --b: var(--color-disabled-inner);
}

input[type='checkbox']:disabled + label,
input[type='radio']:disabled + label {
  cursor: not-allowed;
  opacity: .6;
}

input[type='checkbox'] + label,
input[type='radio'] + label {
  font-size: 14px;
  line-height: 21px;
  margin-left: 4px;
  cursor: pointer;
  user-select: none;
  vertical-align: top;
}

/* Checkbox */
input[type='checkbox']:not(.switch) {
  border-radius: 7px;
}

input[type='checkbox']:not(.switch)::after {
  width: 5px;
  height: 9px;
  border: 2px solid var(--color-accent-inner);
  border-top: 0;
  border-left: 0;
  position: absolute;
  left: 7px;
  top: 4px;
  transform: rotate(var(--r, 20deg));
  opacity: var(--o, 0);
}

input[type='checkbox']:not(.switch):checked {
  --r: 43deg;
}

/* Switch (checkbox.switch) */
input[type='checkbox'].switch {
  width: 38px;
  border-radius: 11px;
  --switch-handle-size: 15px;
  --switch-pad: 2px;
}

input[type='checkbox'].switch::after {
  left: var(--switch-pad);
  top: var(--switch-pad);
  width: var(--switch-handle-size);
  height: var(--switch-handle-size);
  border-radius: 50%;
  background: var(--ab, var(--color-border));
  transform: translateX(var(--x, 0));
  opacity: 1;
  /* always visible */
  border: none;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.35, 1), background 0.25s;
}

input[type='checkbox'].switch:checked {
  --ab: var(--color-accent-inner);
  --x: 17px;
}

input[type='checkbox'].switch:disabled:not(:checked)::after {
  opacity: .6;
}

/* Radio */
input[type='radio'] {
  border-radius: 50%;
}

input[type='radio']::after {
  background: var(--color-accent-inner);
  border-radius: 50%;
  transform: scale(var(--s, 0.55));
  opacity: var(--o, 0);
}

input[type='radio']:checked {
  --s: .45;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  input[type='checkbox'],
  input[type='radio'] {
    transition: none;
  }
  input[type='checkbox']::after,
  input[type='radio']::after {
    transition: none;
  }
}

/* High contrast */
@media (forced-colors: active) {
  input[type='checkbox'],
  input[type='radio'] {
    --color-accent: Highlight;
    --color-accent-inner: HighlightText;
    --color-border: GrayText;
    --color-border-hover: Highlight;
    --color-bg: Canvas;
    --color-disabled: Canvas;
    --color-disabled-inner: GrayText;
    --ring-color: Highlight;
    forced-color-adjust: none;
  }
}

input[type='datetime-local'], input[type='date'], input[type='time'] {
  -webkit-appearance: none;
  background: #fff !important;
}

html {
  background: #f5f5f5 !important;
}

html.no-scroll {
  overflow: hidden;
}

body {
  font-family: 'sen', sans-serif;
  background: #f5f5f5 !important;
  /*
       &::-webkit-scrollbar {
        width: 15px;
    }

    &::-webkit-scrollbar-track {
        background: #333;
    }

    &::-webkit-scrollbar-thumb {
        background: #ddd;
    }*/
}

body.stick {
  /*  overflow:hidden;*/
}

.blur {
  -webkit-filter: blur(4px);
  -moz-filter: blur(4px);
  -ms-filter: blur(4px);
  -o-filter: blur(4px);
  filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.container {
  padding: 0 !important;
  margin-bottom: 150px;
}

.content {
  margin-top: 0px;
  text-align: center;
  background: #f5f5f5;
  overflow-x: hidden;
  flex-wrap: nowrap;
  text-align: left;
  margin-left: 300px;
  margin-top: 70px;
  margin-right: 20px;
  min-height: 100vh;
}

@media screen and (max-width: 990px) {
  .content {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.content.menuopen {
  overflow: hidden;
}

@media screen and (max-width: 990px) {
  .content {
    margin-top: 100px;
  }
}

.content a {
  color: #1a4c70;
}

.content .documentwrap {
  margin-top: 20px;
}

.content .box, .content .documentwrap {
  background: #fff;
  border-color: #e7e7e7 !important;
  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

@media screen and (max-width: 990px) {
  .content .box, .content .documentwrap {
    border-radius: 4px;
  }
}

.content .box img, .content .documentwrap img {
  max-width: 100%;
}

.content .box .p, .content .documentwrap .p {
  padding: 20px;
}

.content .box .wb-title, .content .documentwrap .wb-title {
  font-size: 20px;
  margin-bottom: 5px;
  color: #000;
}

.content .box a.wb, .content .documentwrap a.wb {
  color: #333333;
}

.content .box a.wb:hover, .content .box a.wb:focus, .content .box a.wb:active, .content .documentwrap a.wb:hover, .content .documentwrap a.wb:focus, .content .documentwrap a.wb:active {
  text-decoration: none;
}

.content .box .wb-ext, .content .documentwrap .wb-ext {
  transition: all 0.3s ease;
  max-height: 100%;
}

.content .box .wb-ext.closed, .content .documentwrap .wb-ext.closed {
  max-height: 140px;
  overflow: hidden;
  position: relative;
}

.content .box .wb-ext.closed::after, .content .documentwrap .wb-ext.closed::after {
  background: white;
  background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  height: 50px;
  content: ' ';
}

.content .box .wb-ext .wb-more, .content .documentwrap .wb-ext .wb-more {
  display: none;
  border-radius: 5px;
  background: #dce4e8;
  /*display: flex;*/
  padding: 8px 6px;
  text-align: center;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.content .box .wb-ext .wb-more i, .content .documentwrap .wb-ext .wb-more i {
  border-radius: 5px;
  height: 4px;
  width: 4px;
  display: inline-block;
  background: #999;
  margin-right: 5px;
}

.content .box .wb-time, .content .documentwrap .wb-time {
  font-weight: bold;
  color: #888;
  margin-bottom: 15px;
}

header {
  display: none;
}

.superleftmenu {
  margin-top: 20px !important;
}

@media screen and (max-width: 990px) {
  header {
    display: block !important;
  }
  .superleftmenu {
    display: none;
  }
  #sidebar {
    display: none;
  }
}

.back {
  top: 60px !important;
}

header.stick .add {
  top: 20px !important;
}

header.stick .btns {
  top: 20px !important;
}

#commentsHolder {
  top: 100px !important;
}

header {
  display: none;
  background: #fff;
  background-size: 95px;
  box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.1);
  padding-bottom: 80px;
  padding-top: 20px;
  user-select: none;
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
  height: 70px;
  padding-bottom: 80px;
  z-index: 4;
}

header a {
  text-decoration: none !important;
}

header.blur ul {
  -webkit-filter: blur(4px);
  -moz-filter: blur(4px);
  -ms-filter: blur(4px);
  -o-filter: blur(4px);
  filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

header.blur .super {
  -webkit-filter: blur(4px);
  -moz-filter: blur(4px);
  -ms-filter: blur(4px);
  -o-filter: blur(4px);
  filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

header.blur a.logo {
  -webkit-filter: blur(4px);
  -moz-filter: blur(4px);
  -ms-filter: blur(4px);
  -o-filter: blur(4px);
  filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

header.blur.menu .search-icon {
  -webkit-filter: blur(4px);
  -moz-filter: blur(4px);
  -ms-filter: blur(4px);
  -o-filter: blur(4px);
  filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

header.blur.menu .super {
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  -ms-filter: blur(0px);
  -o-filter: blur(0px);
  filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  z-index: 99999;
  position: relative;
}

header .add {
  position: absolute;
  top: 40px;
  left: 13px;
  background: #1a4c70;
  padding: 10px;
  border-radius: 50%;
  width: 41px;
  height: 41px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}

header .add a {
  color: #fff;
  font-size: 18px;
}

header a.logo {
  position: absolute;
  display: block;
  height: 40px;
  left: 60px;
  right: 60px;
  text-align: center;
  bottom: 10px;
}

header a.logo img {
  max-height: 100%;
}

header .hamburger {
  background: #1a4c70;
  position: absolute;
  top: 40px;
  right: 13px;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .hamburger div:not(.notification-icon) {
  width: 16px;
}

header .hamburger .notification-icon {
  display: none;
  justify-content: center;
  position: absolute;
  top: -7px;
  left: -7px;
  background: #f26e43;
  color: #fff;
  width: calc(41px / 2);
  height: calc(41px / 2);
  line-height: calc(41px / 2);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Sen',sans-serif !important;
}

header .hamburger .notification-icon.active {
  display: flex;
}

header .hamburger .notification-icon.pulse {
  animation: bellGlow 1.9s cubic-bezier(0.22, 1, 0.36, 1) 2;
  will-change: transform, box-shadow;
}

header .hamburger .notification-icon.pulse::before, header .hamburger .notification-icon.pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(242, 110, 67, 0.55);
  opacity: 0;
  transform: scale(0.6);
  animation: ringPulse 1.9s ease-out 2;
  pointer-events: none;
}

header .hamburger .notification-icon.pulse::after {
  inset: -10px;
  border-width: 1px;
  animation-delay: .6s;
}

header .hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 5px;
}

header .hamburger span:first-child {
  width: 85%;
  margin-left: auto;
}

header .hamburger span:last-child {
  width: 70%;
  margin-left: auto;
}

header .hamburger span + span {
  margin-top: 3px;
}

/* Keyframes – läggs globalt */
@keyframes bellGlow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(242, 110, 67, 0);
  }
  45% {
    transform: scale(1.08);
    box-shadow: 0 0 14px 0 rgba(242, 110, 67, 0.45);
  }
}

@keyframes ringPulse {
  0% {
    transform: scale(0.6);
    opacity: 0.85;
  }
  60% {
    opacity: 0.15;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* Tillgänglighet: respektera reducerad rörelse */
@media (prefers-reduced-motion: reduce) {
  .bellnav .notification-icon.pulse,
  .bellnav .notification-icon.pulse::before,
  .bellnav .notification-icon.pulse::after {
    animation: none !important;
  }
}

.transitem {
  position: fixed;
  z-index: 999999;
  top: 0px;
  display: block;
  left: 0;
  right: 100%;
  background: white;
  height: 5px;
}

.transitem.active {
  animation: transanim 2s 1 forwards ease-in-out;
}

@keyframes transanim {
  50% {
    right: 80%;
    background: rgba(255, 255, 255, 0.4);
  }
  100% {
    right: 0%;
    background: rgba(255, 255, 255, 0.9);
  }
}

.btnlogout {
  background: #c21010;
  border-radius: 0;
  display: block;
  color: #fff !important;
  font-weight: bold;
  font-size: 1.2em;
  padding: 15px 0;
  text-align: center;
  margin-top: 20px;
  text-decoration: none;
}

.btnlogout:hover {
  background: #a70a0a;
  color: #fff;
}

.die {
  display: none;
}

.die.active {
  display: block;
  opacity: 0;
  position: fixed;
  top: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f34141;
  z-index: 9999;
  animation: dodie 2s 1 forwards ease-in-out;
}

@keyframes dodie {
  1% {
    display: block;
    top: 100%;
  }
  50% {
    top: 80%;
  }
  100% {
    top: 0%;
    opacity: 1;
  }
}

.okUpg {
  position: fixed;
  z-index: 9999;
  background: #2d8609;
  left: 0;
  bottom: 0;
  color: #fff;
  font-size: 22px;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  animation: okout 1.4s 1 forwards ease-in-out;
  animation-delay: 2s;
}

@keyframes okout {
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

.btn, .btn-primary {
  background: #1a4c70 !important;
  border: 0 !important;
  padding: 10px 24px;
  outline: none !important;
  border-radius: 20px !important;
}

.btn:active, .btn:focus, .btn-primary:active, .btn-primary:focus {
  background: #1a4c70 !important;
  border: 0 !important;
  outline: none !important;
}

.btn-danger {
  background: #f8d7da !important;
  border: 0 !important;
  padding: 10px 24px;
  outline: none !important;
  color: #58151c !important;
  border-radius: 20px !important;
}

.btn-danger:active, .btn-danger:focus {
  background: #f8d7da !important;
  border: 0 !important;
  outline: none !important;
  color: #58151c !important;
}

.hr-btn {
  background: #308762 !important;
  border-color: #308762 !important;
  font-family: Sen;
  padding: 8px 20px;
  border-radius: 20px;
  color: #fff !important;
}

.hr-btn.hr-btn-clean {
  padding: .7em 1.2em;
  font-size: 16px;
}

.hr-btn:hover {
  background: #7CC67C !important;
  border-color: #7CC67C !important;
}

.hr-btn .fa-plus {
  margin-left: 10px;
}

.form-control {
  height: 44px;
  border-radius: 2px !important;
}

.filter {
  position: relative;
  margin-top: 10px;
}

.filter #query {
  width: 100%;
  padding: 20px;
  padding-left: 60px;
  font-size: 18px;
  border-radius: 0 !important;
  border: 0;
}

.filter #query:focus {
  outline: none;
}

.filter i {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
}

.btn-default, .btn-success {
  color: #fff !important;
}

.error {
  margin-bottom: 10px !important;
  padding-top: 5px;
  background: #f2dede !important;
  border-radius: 4px;
}

.imageholder td, .comment td {
  padding: 10px;
  margin-bottom: 10px;
}

.imageholder {
  border-top: 5px solid #fff !important;
}

#gohome {
  position: fixed;
  left: 25%;
  right: 25%;
  z-index: 9;
  top: 0;
  height: 80px;
}

html {
  box-sizing: border-box;
}

* {
  box-sizing: inherit;
}

*:before, *:after {
  box-sizing: inherit;
}

.hr_step {
  background: #1a4c70;
  color: #fff;
  padding: 12px 16px;
  float: none !important;
}

.qr-scanner {
  display: none;
}

@media screen and (max-width: 990px) {
  .qr-scanner {
    display: flex;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 80px;
    height: 80px;
    z-index: 9;
    justify-content: center;
    align-content: center;
    align-items: center;
    background: #1791C5;
    color: #fff;
    border-radius: 50%;
    font-size: 40px;
    text-decoration: none;
  }
  .qr-scanner:hover, .qr-scanner:focus {
    text-decoration: none;
  }
}

.env-form-searchbox-users {
  max-height: 300px;
  position: absolute;
  background: #fff;
  border: 1px solid #e7e7e7;
  z-index: 99;
  left: 10px;
  margin-top: -10px;
  right: 10px;
  overflow-y: auto;
  border-radius: 4px;
}

@media screen and (max-width: 990px) {
  .env-form-searchbox-users {
    max-height: 250px;
  }
}

.env-form-searchbox-users .env-form-searchbox-users-user {
  padding: 6px 10px;
}

.env-form-searchbox-users .env-form-searchbox-users-user:hover {
  background: #f1f1f1;
  cursor: pointer;
}

.env-form-searchbox-inputholder {
  position: relative;
}

.env-form-searchbox-inputholder .env-form-searchbox-selected {
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  padding: 5px 10px;
  background: #f1f1f1;
  display: none;
  margin: 2px;
  line-height: 14px !important;
  border-radius: 6px;
  font-size: 14px;
}

.env-form-searchbox-inputholder .env-form-searchbox-selected .env-form-searchbox-disconnect {
  display: block;
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 18px;
}

.env-form-searchbox-inputholder.hasvalue input {
  pointer-events: none;
  color: #fff;
}

.env-form-searchbox-inputholder.hasvalue input::placeholder {
  color: transparent;
}

.env-form-searchbox-inputholder.hasvalue .env-form-searchbox-selected {
  display: flex;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
}

.signature_actions {
  display: flex;
  margin-left: -5px;
}

.signature_actions div {
  font-size: 13px;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 20px;
  margin: 0 5px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .1s ease-in;
}

.signature_actions div i {
  font-size: 16px;
  padding-right: 5px;
}

.signature_actions div:hover {
  border-color: #e3e3e3;
  box-shadow: 1px 1px 4px 2px rgba(0, 0, 0, 0.05);
  background: #1a4c70;
  color: #fff;
}

.env-form-control-holder table tr td {
  display: flex;
}

.env-form-control-holder table tr td input {
  width: 21px !important;
  flex-shrink: 0;
  margin-right: 5px;
}

.env_divider {
  background: #f5f5f5;
  padding: .7em 1.5em;
  margin-left: -15px;
  line-height: 1.38;
  margin-right: -15px;
  font-weight: bold;
  font-size: 17px;
  border-radius: 4px;
  border: 1px solid #e3e3e3;
}

.hr-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  display: none;
  background: #fff;
  border: 1px solid #ececec;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.35;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.hr-table thead {
  background: linear-gradient(180deg, #fafafa, #f1f1f1);
}

.hr-table thead th:first-child {
  border-top-left-radius: 10px;
}

.hr-table thead th:last-child {
  border-top-right-radius: 10px;
}

.hr-table th {
  background: transparent;
  border-right: 1px solid #fff;
  padding: 12px 16px !important;
  vertical-align: middle;
  font-size: 11px !important;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #555;
  position: sticky;
  top: 0;
  z-index: 2;
  backdrop-filter: blur(3px);
}

.hr-table tbody tr {
  transition: background .18s ease, box-shadow .18s ease;
}

.hr-table tbody tr:nth-child(even) td {
  background: #fcfcfc;
}

.hr-table tbody tr:hover td {
  background: #f5f9ff;
}

.hr-table tbody tr.is-selected td {
  background: rgba(26, 76, 112, 0.12);
  box-shadow: inset 0 0 0 1px rgba(26, 76, 112, 0.35);
}

.hr-table td {
  position: relative;
  font-size: 14px;
  color: #111;
  padding: 10px 16px;
  border-bottom: 1px solid #f1f1f1;
  vertical-align: middle;
  background: #fff;
  transition: background .02s ease;
}

.hr-table td a {
  color: #111 !important;
  font-size: 15px;
}

.hr-table td i {
  color: #1a4c70 !important;
}

.hr-table tbody tr:last-child td {
  border-bottom: 0;
}

.hr-table th.header {
  cursor: pointer;
  padding-right: 36px !important;
  user-select: none;
  position: sticky;
  top: 0;
  background: linear-gradient(180deg, #fafafa, #f1f1f1);
}

.hr-table th.header::before, .hr-table th.header::after {
  font-family: FontAwesome;
  position: absolute;
  right: 14px;
  font-size: 14px;
  opacity: .25;
  transition: opacity 0.15s ease, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.hr-table th.header::before {
  content: "\f0d8";
  top: 6px;
}

.hr-table th.header::after {
  content: "\f0d7";
  bottom: 6px;
}

.hr-table th.header.headerSortUp {
  background: linear-gradient(180deg, #ededed, #e2e2e2);
}

.hr-table th.header.headerSortUp::before {
  opacity: .9;
}

.hr-table th.header.headerSortDown {
  background: linear-gradient(180deg, #ededed, #e2e2e2);
}

.hr-table th.header.headerSortDown::after {
  opacity: .9;
}

.hr-table th.header:hover::before, .hr-table th.header:hover::after {
  opacity: .6;
}

.hr-table.hr-table--compact th {
  padding: 8px 12px !important;
}

.hr-table.hr-table--compact td {
  padding: 6px 12px;
  font-size: 12px;
}

.hr-table.is-loading {
  position: relative;
  opacity: .7;
}

.hr-table.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(26, 76, 112, 0.08) 0, rgba(26, 76, 112, 0.08) 10px, transparent 10px, transparent 20px);
  animation: hrTableLoading 1.2s linear infinite;
}

@keyframes hrTableLoading {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200px 0;
  }
}

.hr-filter {
  margin-top: 1px;
  display: none;
  position: relative;
}

.hr-filter input {
  border: 0;
  background: #f5f5f5;
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 6px 45px;
}

.hr-filter input:focus, .hr-filter input:active {
  outline: none !important;
  background: #fbfbfb;
}

.hr-filter i {
  top: 10px;
  left: 18px;
  position: absolute;
}

.virtualmenu-holder {
  background: #fff;
  padding: 5px;
  margin-top: 10px;
}

.virtualmenu-holder select {
  box-sizing: border-box;
  width: 100%;
  padding: 4px;
  border: 0 !important;
}

@media screen and (min-width: 990px) {
  .hr-data {
    display: none;
  }
  .hr-table {
    display: table;
  }
  .hr-filter {
    display: block;
  }
  .virtualmenu-holder {
    display: none;
  }
}

table.hr-table tr td:nth-child(1) i {
  color: #1a4c70 !important;
}

.cke_dialog_ui_iframe {
  max-width: 100%;
}

#foldersearch {
  border: 0;
  outline: 0;
  display: block;
  padding: 12px 8px;
  width: 100%;
  border-radius: 0 !important;
}

#foldersearch:active, #foldersearch:focus {
  border-bottom: 1px solid #c7c7c7;
}

.hr_signedItem {
  padding: 10px;
  margin-top: 1px;
}

.hr_signedItem a {
  background: #f7b0b0;
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  color: #650520 !important;
  margin-top: 10px;
  border-radius: 4px;
}

.hr_signedItem a:hover {
  text-decoration: none !important;
}

.hr_signedItem.signed {
  background: #cff4fc;
  color: #055160;
}

.hr_signedItem.unsigned {
  background: #f8d7da;
}

.hr_signedItem .form-control {
  border-radius: 40px !important;
}

.emptyfolder {
  padding: 10px;
  text-align: center;
}

@media screen and (max-width: 990px) {
  .desktop {
    display: none;
    clear: both;
  }
}

.shouldSign, .hasSign {
  padding-left: 40px;
}

.shouldSign.hasSign, .hasSign.hasSign {
  color: #0cbd00;
  padding-top: 5px;
}

.shouldSign i, .hasSign i {
  position: static !important;
  width: auto !important;
  color: #0cbd00 !important;
  font-size: 1.0em !important;
}

.shouldSign.warning, .shouldSign.shouldSign, .hasSign.warning, .hasSign.shouldSign {
  color: #d80606 !important;
}

.signer {
  padding-left: 20px;
}

table.hr-table tr td .shouldSign {
  padding-left: 0 !important;
}

table.hr-table tr td .shouldSign i {
  position: static !important;
  width: auto !important;
  color: #0cbd00 !important;
  font-size: 1.0em !important;
}

table.hr-table tr td .signer {
  padding-left: 0px !important;
}

table.hr-table tr td .hasSign {
  color: #0cbd00 !important;
  padding-top: 5px;
  padding-left: 0 !important;
}

table.hr-table tr td .hasSign i {
  color: #0cbd00 !important;
}

table.hr-table tr td i {
  position: static !important;
  width: auto !important;
  color: #0cbd00 !important;
  font-size: 1.0em !important;
}

.documentwrap {
  background: #fff;
  border: #bdbdbd 1px solid;
  border-radius: 2px;
  margin-bottom: 20px;
}

.documentwrap h1, .documentwrap h2 {
  padding: 15px 20px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 30px;
  margin-left: 0 !important;
  font-size: 1.7em;
  font-weight: bold;
}

.documentwrap .document-subtitle {
  padding: 20px;
  margin-top: -10px;
  padding-top: 0;
  display: block;
}

.documentwrap ul {
  list-style: none;
  -webkit-padding-start: 0;
  margin: 0;
}

.documentwrap ul li.formcat {
  border-left: 5px solid #1a4c70;
  background: #fafafa;
}

.documentwrap ul li .item {
  position: relative;
  display: block;
  border-top: #eeeeee 1px solid;
  padding: 15px 20px;
}

.documentwrap ul li .item.active ul.list-group {
  display: block;
}

.documentwrap ul li .item ul.list-group {
  display: none;
  margin-top: 10px;
  padding-left: 40px;
}

.documentwrap ul li .item ul.list-group li.list-group-item {
  padding: 0;
}

.documentwrap ul li .item ul.list-group li.list-group-item a {
  display: block;
  color: #555;
  padding: 10px 15px;
  text-decoration: none;
}

.documentwrap ul li .item ul.list-group li.list-group-item a span {
  float: left;
  margin-right: 5px;
  color: #ffe554;
}

.documentwrap ul li .item ul.list-group li.list-group-item a:hover {
  color: #222;
  background: rgba(0, 0, 0, 0.05);
}

.documentwrap ul li .item span {
  display: block;
}

.documentwrap ul li .item .doctitle {
  font-size: 1.4em;
  font-weight: bold;
  color: #222;
  padding-left: 40px;
}

.documentwrap ul li .item .docdesc {
  font-size: 1em;
  font-weight: normal;
  color: #222;
  padding-left: 40px;
}

.documentwrap ul li .item .itemico, .documentwrap ul li .item i {
  width: 40px;
  font-size: 1.5em;
  position: absolute;
  top: 50%;
  margin-top: -.55em;
}

.documentwrap ul li .item .itemico.ico2, .documentwrap ul li .item i.ico2 {
  top: 40%;
}

.documentwrap ul li .item .itemico.ico2 img, .documentwrap ul li .item i.ico2 img {
  width: 28px;
  margin-left: -6px;
}

.documentwrap ul li .item:hover {
  text-decoration: none;
  background: #fefce5;
}

.documentwrap ul li.folder a .itemico {
  color: #e4ca4e;
}

.documentwrap ul li.folder a:hover .itemico {
  color: #ccb12e;
}

.documentwrap ul.userlistgroup li .item {
  padding: 22px 20px;
}

.documentwrap ul.userlistgroup li .item .docdesc {
  display: none;
}

.documentwrap .answer tr td {
  padding-left: 20px;
  border: 0;
  padding-bottom: 10px;
}

.documentwrap .answer tr td label {
  font-weight: normal;
  display: inline !important;
  padding-bottom: 10px;
}

.documentwrap .answer tr td input {
  margin-right: 5px;
}

.documentwrap .answerTop {
  padding-top: 10px;
  border-top: 1px solid #e3e3e3;
}

.breadcrumb {
  margin-bottom: 0;
  border-radius: 0 !important;
}

.doctextcontent {
  padding: 15px 20px;
}

.doctextcontent h1 {
  margin: 0 0 10px 0 !important;
  padding: 0;
  font-size: 1.7em;
  font-weight: bold;
  color: #061343;
}

.doctextcontent h2 {
  margin: 5px 0 5px 0;
  padding: 0;
  font-size: 1.3em;
  font-weight: bold;
}

.doctextcontent h3 {
  margin: 5px 0 5px 0;
  padding: 0;
  font-size: 1.2em;
  font-weight: bold !important;
}

.doctextcontent ul {
  list-style: disc;
  margin-left: 15px;
  margin-bottom: 15px;
}

.doctextcontent img {
  max-width: 100%;
}

.doctextcontent table {
  margin-bottom: 15px;
}

.doctextcontent table tr td, .doctextcontent table tr th {
  border-bottom: #ccc 0px solid;
}

ul.attachedfiles {
  list-style: none;
  margin-left: 0 !important;
  border-top: #ccc 1px solid;
}

ul.attachedfiles li {
  list-style: none;
  border-bottom: #ccc 1px solid;
  padding: 5px;
}

.documentdesc {
  padding: 0 10px;
}

.documentdesc label {
  display: block;
  margin-top: 10px;
}

@media only screen and (min-width: 1400px) {
  .templdoc h1 {
    padding: 15px 20px;
    font-size: 2.3em;
    font-weight: bold;
    margin: 20px 180px 20px;
  }
  .templdoc .breadcrumb {
    padding: 8px 180px;
    border-radius: 0 !important;
  }
  .templdoc .doctextcontent {
    font-size: 1.3em;
    line-height: 1.7em;
    padding: 50px 180px;
  }
  .templdoc .doctextcontent h2 {
    margin: 5px 0 5px 0;
    padding: 0;
    font-size: 1.3em;
    font-weight: bold;
  }
  .templdoc .doctextcontent p {
    margin-bottom: .85em;
  }
  .templdoc .doctextcontent ul {
    list-style: disc;
    margin-left: 20px;
  }
  .documentdesc {
    font-size: .9em;
    color: #333;
    padding: 20px;
    margin-bottom: 20px;
  }
  .documentdesc label {
    display: block;
    margin: 0;
    padding: 0;
    color: #808080;
    font-size: .9em;
    padding-top: 5px;
  }
  .userlist li .item {
    cursor: pointer;
  }
  .arealist {
    background: #ffe554;
  }
  .arealist li {
    background: #ffe554;
    font-weight: bold;
    color: #fff;
  }
  .arealist li .item {
    border-top: #07a151 1px solid !important;
  }
  .arealist li .item:hover {
    background: none !important;
  }
  .arealist li .item .list-group li {
    border: #07a151 1px solid !important;
    background: #006f35;
  }
  .arealist li .item .list-group li a {
    color: #fff !important;
  }
  .arealist li .item .list-group li .glyphicon {
    color: #fff !important;
  }
  .arealist li .doctitle {
    color: #fff !important;
  }
  .arealist li:hover {
    background: #004c9c !important;
  }
  .panel-group {
    margin-bottom: 0;
  }
  .panel-group .panel {
    border: none;
    border-bottom: #03458a 1px solid;
  }
  .panel-group .panel .panel-title {
    font-weight: bold;
    font-size: 1.4em;
  }
  .panel-group .panel .panel-title a {
    display: block;
    padding: 20px;
  }
  .panel-group .panel + .panel {
    margin-top: 0px;
  }
  .panel-heading {
    padding: 0;
  }
}

@media only screen and (max-width: 500px) {
  .answer tr td {
    padding-left: 0px !important;
  }
}

.search {
  box-sizing: border-box;
  position: relative;
}

.search i {
  position: absolute;
  color: #777;
  font-size: .8em;
  top: 24px;
  left: 26px;
}

.search #search {
  width: 16px;
  box-sizing: border-box;
  padding: 8px 16px;
  padding-right: 16px;
  padding-left: 36px;
  transition: all 0.3s ease;
  margin: 10px;
  border-radius: 100px;
  border: 1px solid #e3e3e3;
}

.search #search:focus {
  width: 240px;
  outline: none;
}

.doc-hide {
  display: none;
}

.leftmenu {
  margin-bottom: 0;
  padding: 10px 0px;
}

.leftmenu ul {
  list-style: none;
  margin: 0;
  padding: 0px;
}

.leftmenu ul li {
  display: block;
}

.leftmenu ul li a {
  color: #434343;
  display: block;
  font-weight: 300;
  padding: 8px 8px 10px 20px;
  position: relative;
  margin-bottom: -1px;
  margin-right: 50px;
  transition: 0.3s ease;
  font-size: 16px;
  text-decoration: none !important;
  word-wrap: normal !important;
}

.leftmenu ul li a i {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  padding: 8px;
  margin-right: 15px;
  border-radius: 50%;
  background-color: #1a4c70;
  font-size: 14px;
  float: left;
  color: #fff;
  text-align: center;
  margin-top: -4px;
}

.leftmenu ul li a:hover {
  color: #1a4c70;
  text-decoration: none;
}

.leftmenu ul li a.r320active {
  color: #1a4c70;
  font-weight: bold;
  text-decoration: none;
}

.leftmenu ul li ul {
  display: none;
  margin: 0;
  box-shadow: none;
  padding: 0;
}

.leftmenu ul li ul li a {
  word-wrap: normal;
  font-size: 16px;
  border-left: 1px solid #eee;
  margin-left: 35px;
}

.leftmenu ul li ul li a:hover {
  color: #061343;
}

.leftmenu ul li ul li ul {
  display: none;
  margin-left: 35px;
  border-left: 1px solid #eee;
}

.leftmenu ul li ul li ul li a {
  margin-left: 35px !important;
}

.leftmenu ul li ul li ul li ul {
  display: none;
}

.leftmenu ul li ul li ul li ul li a {
  margin-left: 35px !important;
}

.leftmenu ul .li-haschild {
  background-image: url("/HR/g/arrow_down_dark.png");
  background-repeat: no-repeat;
  background-position: top 20px right 25px;
  background-size: 11px 7px;
}

.leftmenu ul .li-haschild.do_not_show {
  background-image: url("/HR/g/arrow_up_dark.png") !important;
  background-position: top 20px right 25px;
  background-size: 11px 7px;
}

.leftmenu ul .li-haschild.do_not_show > .r320haschild {
  font-weight: bold;
}

.leftmenu ul .li-haschild .ulsub .li-haschild {
  background-position: top 21px right 25px;
}

.leftmenu ul .li-haschild img {
  text-align: right;
}

.backbutton, .backbutton-rel {
  background: #fff;
  color: #000;
  padding: 14px 18px;
  font-size: 1.1em;
  font-weight: bold;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border: 1px solid #e7e7e7;
  border-top: 0;
  display: block;
  color: #000 !important;
}

.backbutton i, .backbutton-rel i {
  padding-right: 5px;
}

.backbutton:hover, .backbutton-rel:hover {
  text-decoration: none;
}

@media screen and (max-width: 990px) {
  .backbutton.sticky, .backbutton-rel.sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 100px;
    z-index: 1;
    box-shadow: 1px 1px 14px 1px rgba(0, 0, 0, 0.2);
  }
}

.review-buttons {
  background: #f1f1f1;
  margin-top: -20px;
  display: flex;
  cursor: pointer;
}

.review-buttons div {
  flex-grow: 1;
  text-align: center;
  font-size: 18px;
  padding: 16px;
  font-weight: bold;
}

.review-buttons div.active {
  background: #333;
  color: #fff;
}

.document-header {
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 40px;
  padding-bottom: 40px;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 590px) {
  .document-header .col-md-6 {
    justify-content: center !important;
  }
  .document-header .col-md-6 table {
    max-width: 100% !important;
  }
}

.document-header .doc-data {
  justify-content: flex-end !important;
}

.document-header .col-md-6 {
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  display: flex;
}

.document-header .col-md-6 img {
  max-width: 200px;
  max-height: 110px;
}

.document-header .col-md-6 table {
  margin-bottom: 0 !important;
  width: 100%;
  max-width: 500px;
}

.document-header .col-md-6 table tr {
  margin: 0 !important;
  padding: 0 !important;
}

.document-header .col-md-6 table tr td {
  font-size: 13px;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.3em !important;
}

@media screen and (min-width: 1190px) {
  .document-header .col-md-6 table tr td {
    font-size: 18px !important;
  }
}

.html-content h1 {
  padding-left: 0 !important;
}

.html-content figure {
  width: 100% !important;
  height: auto !important;
}

.html-content figure table {
  width: inherit;
}

@media screen and (max-width: 990px) {
  .html-content figure {
    overflow-x: auto;
  }
}

.html-content figure tr th {
  border: 1px solid #e3e3e3;
  background-color: #f2f2f2;
  padding: 4px;
}

.html-content figure tr td {
  border: 1px solid #e3e3e3;
  padding: 4px;
}

.document-footer {
  text-align: center;
  color: #5a5a5a;
}

.action_ejhanterad span, .action_nekad span, .action_ejhanterat span, .action_avpublicerad span {
  background: #f8d7da;
  color: #58151c;
  padding: 4px;
  border-radius: 4px;
  white-space: nowrap;
}

.action_pgende span, .action_aktiv span, .action_aktivt span, .action_underbehandling span, .action_startad span, .action_startat span, .action_fixad span, .action_startat span {
  background: #cfe2ff;
  color: #052c65;
  padding: 4px;
  border-radius: 4px;
  white-space: nowrap;
}

.action_klart span, .action_avslutad span, .action_avslutat span, .action_godknd span, .action_godknt span, .action_publicerad span {
  background: #d1e7dd;
  color: #0a3622;
  padding: 4px;
  border-radius: 4px;
  white-space: nowrap;
}

.action_vilande span {
  background: #fff3cd;
  padding: 4px;
  color: #664d03;
  border-radius: 4px;
  white-space: nowrap;
}

.action_skapat span, .action_skapad span, .action_arkiverad span {
  background: #fcfcfd;
  padding: 4px;
  color: #495057;
  border-radius: 4px;
  white-space: nowrap;
}

.conversation_chat .form-msgs {
  padding: 20px;
}

.conversation_chat .form-msgs .form-msg-head {
  width: 80%;
  margin-top: 10px;
  clear: both;
}

.conversation_chat .form-msgs .form-msg-head .form-msg {
  clear: both;
  background: #fff;
  padding: 6px;
  border-radius: 4px;
  font-size: 1em !important;
  display: inline-block;
}

.conversation_chat .form-msgs .form-msg-head.me {
  float: right;
}

.conversation_chat .form-msgs .form-msg-head.me .form-msg {
  float: right;
  background: #bed8eb;
  margin-bottom: 5px;
}

.conversation_chat .form-msgs .form-msg-head.me .form-msg b {
  font-size: 11px;
}

.conversation_chat .form-msgs .form-msg-head.me .author {
  text-align: right;
}

.conversation_chat .form-msgs .form-msg-head.me .date {
  text-align: right;
}

.conversation_chat .form-msgs .form-msg-head .author {
  clear: both;
}

.conversation_chat .form-msgs .form-msg-head .author a {
  font-size: .8em;
  color: #333 !important;
}

.conversation_chat .form-msgs .form-msg-head .date {
  font-size: .8em;
  color: #555 !important;
}

.form-iframe-editor, .form-right-editor {
  position: fixed;
  display: block;
  justify-content: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  transform: translateX(120%);
}

.form-iframe-editor.active, .form-right-editor.active {
  transform: translateX(0%);
}

.form-iframe-editor.active .form-iframe-editor-holder, .form-right-editor.active .form-iframe-editor-holder {
  transform: translateX(0%);
}

.form-iframe-editor.active .form-right-editor-holder, .form-right-editor.active .form-right-editor-holder {
  transform: translateX(0%);
}

.form-iframe-editor .form-iframe-editor-holder, .form-iframe-editor .form-right-editor-holder, .form-right-editor .form-iframe-editor-holder, .form-right-editor .form-right-editor-holder {
  padding-top: 50px;
  background: #fff;
  width: 1200px;
  max-width: 90%;
  position: fixed;
  right: 20px;
  top: 20px;
  bottom: 20px;
  transition: all .3s ease-in;
  transform: translateX(120%);
  border-radius: 12px !important;
}

.form-iframe-editor .form-iframe-editor-holder::-webkit-scrollbar, .form-iframe-editor .form-right-editor-holder::-webkit-scrollbar, .form-right-editor .form-iframe-editor-holder::-webkit-scrollbar, .form-right-editor .form-right-editor-holder::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.form-iframe-editor .form-iframe-editor-holder::-webkit-scrollbar-track, .form-iframe-editor .form-right-editor-holder::-webkit-scrollbar-track, .form-right-editor .form-iframe-editor-holder::-webkit-scrollbar-track, .form-right-editor .form-right-editor-holder::-webkit-scrollbar-track {
  background: #111;
}

.form-iframe-editor .form-iframe-editor-holder::-webkit-scrollbar-thumb, .form-iframe-editor .form-right-editor-holder::-webkit-scrollbar-thumb, .form-right-editor .form-iframe-editor-holder::-webkit-scrollbar-thumb, .form-right-editor .form-right-editor-holder::-webkit-scrollbar-thumb {
  background: #555;
}

.form-iframe-editor iframe, .form-right-editor iframe {
  width: 1200px;
  max-width: 100%;
  height: calc(100%);
  border: 0;
  border-radius: 12px !important;
}

.form-iframe-editor .close-iframe, .form-iframe-editor .close-right, .form-right-editor .close-iframe, .form-right-editor .close-right {
  position: absolute;
  right: 20px;
  top: 20px;
  background: #D1D1D1;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
  transition: all .1s ease-in;
}

.form-iframe-editor .close-iframe:hover, .form-iframe-editor .close-right:hover, .form-right-editor .close-iframe:hover, .form-right-editor .close-right:hover {
  background: #bbb;
}

.env-list-dropdown {
  display: flex;
  flex-direction: column;
  position: absolute;
  visibility: hidden;
  pointer-events: none;
  background: #fff;
  font-size: 14px;
  padding: 1em;
  max-width: 366px;
  width: 100%;
  border: 1px solid #DADADA;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.06);
  gap: 6px;
  z-index: 10;
  top: 80px;
  border-radius: 8px;
}

.env-list-dropdown > li {
  font-size: inherit;
}

.env-list-dropdown.active {
  visibility: visible;
  pointer-events: auto;
}

.env-list-dropdown li a {
  display: flex;
  align-items: center;
  color: #000;
  border: 1px solid #EDEDED;
  border-radius: 25px;
  padding: .9em 1.2em;
  transition: background .3s ease;
}

.env-list-dropdown li a i {
  color: #F3742D;
  margin-right: 1em;
}

.env-list-dropdown li a:hover {
  background: #ededed;
}

.folder-adminbar .env-adminbar {
  margin-top: 20px;
  margin-bottom: -25px;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  background: #02316d url(/admin/gfx/envodium_white.png);
  background-size: 50px;
  background-repeat: no-repeat;
  background-position: right 10px top 12px;
  border-color: #e7e7e7 !important;
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border: #bdbdbd 1px solid;
}

.folder-adminbar .env-adminbar ul li {
  list-style: none;
}

.folder-adminbar .env-adminbar ul li a {
  text-decoration: none !important;
}

.folder-adminbar .env-adminbar .env-folder-action {
  cursor: pointer;
  padding: 10px 16px;
  border: 1px solid #e3e3e3;
  border-radius: 20px;
  display: block;
  color: #333 !important;
  margin: 10px 8px;
  margin-right: 1px !important;
  background: #fff;
  transition: box-shadow .3s ease-in, transform .3s ease-in;
  box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.05);
}

.folder-adminbar .env-adminbar .env-folder-action i {
  padding-right: 5px;
}

.folder-adminbar .env-adminbar .env-folder-action:hover, .folder-adminbar .env-adminbar .env-folder-action:focus, .folder-adminbar .env-adminbar .env-folder-action:active {
  text-decoration: none !important;
  transform: translateY(-5px);
  box-shadow: 1px 6px 4px 1px rgba(0, 0, 0, 0.2);
  outline: none !important;
}

.folder-adminbar .env-adminbar .env-folder-action.unlock {
  background: #ffe554;
  color: #7f6c05 !important;
  border: 1px solid #f1d84a;
}

.folder-adminbar .env-adminbar .env-folder-action.lock {
  background: #ff5454;
  color: #490202 !important;
  border: 1px solid #ed4a4a;
}

.folder-adminbar .env-adminbar .env-folder-action.env-folder-archive {
  background: #ff5454;
  color: #fff !important;
  border: 1px solid #ed4a4a;
  margin-left: auto;
  margin-right: 70px !important;
}

.folder-adminbar .env-adminbar .env-create {
  background: #1791c5;
  color: #fff !important;
  border: 1px solid #168ec1;
}

#contacts {
  /* position: fixed;
    z-index: 1;
    background: $primaryColorDarker;
    top: 100px;
    left: 80px;
    right: 0;
    padding: 20px 0px;
    bottom: 0;
    overflow: auto;*/
}

@media screen and (max-width: 990px) {
  #contacts {
    left: 0;
    right: 0;
  }
}

#contacts.active {
  transform: translateX(0%) !important;
}

#contacts .groupHead {
  padding: 20px;
  background: #1a4c70;
  border-bottom: #1a4c70 1px solid;
  font-weight: bold;
  font-size: 22px;
  color: #fff;
}

#contacts .ppl {
  background: #fff;
}

#contacts .more-info {
  background: #fff;
  margin: 0 8px;
  padding: 8px;
  overflow: auto;
}

#contacts .pplrow .sign {
  background: red;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f1f1f1;
  font-weight: 700;
  color: #000;
  border-radius: 50%;
  font-size: 12px;
  border: 2px solid #fff;
}

#contacts .pplrow .sign img {
  border-radius: 50% !important;
}

@media screen and (max-width: 990px) {
  #contacts .pplrow .sign {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }
}

#contacts .pplrow .sign.green {
  border-color: #a1dda1;
}

#contacts .pplrow .sign.red {
  border-color: #fcb0b0;
}

#contacts .pplrow .sign.orange {
  border-color: #ffce74;
}

#contacts .pplrow .col-xs-1 {
  text-align: center;
  padding: 5px;
  padding-top: 11px;
  border-top: 1px solid #f1f1f1;
}

#contacts .pplrow .col-xs-11 {
  padding: 5px;
  padding-top: 0;
  padding-bottom: 0px;
  border-top: 1px solid #f1f1f1;
}

#contacts .pplrow .col-xs-11 .doctitle {
  font-weight: bold;
  font-size: 18px;
}

#contacts .pplrow .openSppl {
  padding-top: 16px;
  padding-bottom: 12px;
}

@media screen and (max-width: 990px) {
  #contacts .pplrow .openSppl {
    padding-top: 14px;
    padding-left: 10px;
  }
}

#contacts .pplrow .profileaction {
  background: red;
  list-style: none;
  padding-left: 0 !important;
  background: #F2F2F2;
  text-align: center;
  padding: 10px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

#contacts .pplrow .list-group {
  margin-right: 20px;
  margin-top: 10px;
}

#contacts .pplrow .list-group a {
  text-decoration: none;
  color: #111;
}

#contacts .pplrow .list-group .glyphicon {
  padding-right: 10px;
  color: #1a4c70 !important;
}

.notification-center {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
  transition: transform .3s ease-in-out;
  transform: translateX(100%);
}

@media screen and (max-width: 990px) {
  .notification-center {
    background-color: white;
    /* vit med genomskinlighet */
  }
}

@media screen and (min-width: 990px) {
  .notification-center {
    left: auto;
    width: 400px;
    top: 10px;
    bottom: 10px;
    box-shadow: 0px 0px 21px rgba(0, 0, 0, 0.2);
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    background-color: rgba(255, 255, 255, 0.8);
    /* vit med genomskinlighet */
    backdrop-filter: blur(10px);
    /* gör bakgrunden suddig */
    -webkit-backdrop-filter: blur(10px);
  }
}

.notification-center .notification-holder {
  padding-bottom: 0px;
}

.notification-center #notification-remove {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
}

.notification-center #notification-remove a.delete-btn {
  color: #e60808 !important;
  background: #fbc1c1;
  display: block;
  font-weight: bold;
  text-align: center;
  padding: 20px 0;
  padding-bottom: 25px;
  flex: 1;
}

.notification-center #notification-remove a.seen-btn {
  color: #1891c5 !important;
  background: #d1e9f3;
  display: block;
  font-weight: bold;
  text-align: center;
  padding: 20px 0;
  padding-bottom: 25px;
  flex: 1;
}

.notification-center #notification-remove.active {
  display: flex !important;
}

.notification-center.active {
  transform: translateX(0%);
}

.notification-center::-webkit-scrollbar {
  width: 4px;
}

.notification-center::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.notification-center::-webkit-scrollbar-thumb {
  background: #ccc;
}

.notification-center .notification-top {
  padding: 50px 25px;
  padding-bottom: 25px;
}

.notification-center .notification-top .notification-headline {
  font-size: 24px;
  font-weight: bold;
}

.notification-center .notification-top .flex-row {
  display: flex;
  align-items: center;
}

.notification-center .notification-top .flex-row .btn-close-notis {
  font-size: 28px;
  margin-left: auto;
  cursor: pointer;
}

.notification-center .notification {
  display: flex;
  align-items: center;
  padding: 10px 25px;
  background: #F9F9F9;
  border-bottom: 1px solid #fff;
  color: #000;
}

.notification-center .notification:hover {
  text-decoration: none;
}

.notification-center .notification.new {
  background: #e4ebf6;
  font-weight: bold;
}

.notification-center .notification .icon {
  background: #1a4c70;
  border-radius: 50px;
  width: 41px;
  height: 41px;
  display: flex;
  color: #fff;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin-right: 25px;
  flex-shrink: 0;
  flex-grow: 0;
}

.notification-center .notification .date {
  font-size: .9em;
  font-weight: normal;
}

:root {
  --active-images: '0';
  --active-videos: '0';
  --active-links: '0';
  --active-poll: '0';
  --lang-add-images: 'Lägg till bilder';
}

html {
  background: #D7D7D7;
}

img {
  max-width: 100%;
  height: auto;
}

.ptr--ptr {
  background: #3d3d3d;
}

.ptr--ptr .ptr--icon {
  max-width: 20px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transform: unset !important;
}

.ptr--ptr .ptr--text {
  visibility: hidden;
}

.custom-modal {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 0;
  left: -100%;
  bottom: 0;
  width: 100%;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.8);
  overflow: auto;
  transition: left .3s ease;
  font-family: 'Sen', sans-serif !important;
}

@media screen and (min-width: 991px) {
  .custom-modal {
    position: absolute;
    height: 85vh;
    width: 700px;
    top: calc(70px + 20px);
    bottom: 0;
    left: 300px;
    height: 85vh;
    background: #fff;
    width: 700px;
    transition: unset;
    z-index: -1;
  }
  .custom-modal::-webkit-scrollbar {
    width: 12px;
  }
  .custom-modal::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .custom-modal::-webkit-scrollbar-thumb {
    background: #ccc;
  }
}

.custom-modal .embed-container {
  width: 100%;
}

.custom-modal.modal-smaller {
  position: fixed;
  top: unset;
  bottom: 0;
  top: 100px;
  background: #d7d7d7;
}

.custom-modal.modal-smaller .button-back-top {
  width: 100%;
}

.custom-modal.modal-smaller .inner {
  box-shadow: unset !important;
}

@media screen and (min-width: 991px) {
  .custom-modal.modal-smaller .inner {
    border: none !important;
  }
}

.custom-modal.open {
  display: flex;
  left: 0;
}

@media screen and (min-width: 991px) {
  .custom-modal.open {
    left: 300px;
    z-index: 10000;
  }
}

.custom-modal #search-groups input, .custom-modal #search-group-hierarchies input, .custom-modal #search-excluded-group-hierarchies input, .custom-modal #search-individual-recipients input {
  width: 100%;
  padding: 12px 20px;
  font-size: 13px !important;
  border: none;
  outline: none;
  border-top: 1px solid #ececec;
}

.custom-modal #search-groups input.active, .custom-modal #search-group-hierarchies input.active, .custom-modal #search-excluded-group-hierarchies input.active, .custom-modal #search-individual-recipients input.active {
  background: #F3F3F3;
}

.custom-modal #search-groups #search-text-group-hierarchies, .custom-modal #search-groups #search-text-excluded-group-hierarchies, .custom-modal #search-groups #search-text-individual-recipients, .custom-modal #search-group-hierarchies #search-text-group-hierarchies, .custom-modal #search-group-hierarchies #search-text-excluded-group-hierarchies, .custom-modal #search-group-hierarchies #search-text-individual-recipients, .custom-modal #search-excluded-group-hierarchies #search-text-group-hierarchies, .custom-modal #search-excluded-group-hierarchies #search-text-excluded-group-hierarchies, .custom-modal #search-excluded-group-hierarchies #search-text-individual-recipients, .custom-modal #search-individual-recipients #search-text-group-hierarchies, .custom-modal #search-individual-recipients #search-text-excluded-group-hierarchies, .custom-modal #search-individual-recipients #search-text-individual-recipients {
  padding: 12px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.custom-modal #groups, .custom-modal #group-hierarchies, .custom-modal #excluded-group-hierarchies, .custom-modal #individual-recipients {
  overflow: auto;
  flex-grow: 1;
}

@media screen and (min-width: 991px) {
  .custom-modal #groups, .custom-modal #group-hierarchies, .custom-modal #excluded-group-hierarchies, .custom-modal #individual-recipients {
    flex-grow: 1;
  }
  .custom-modal #groups::-webkit-scrollbar, .custom-modal #group-hierarchies::-webkit-scrollbar, .custom-modal #excluded-group-hierarchies::-webkit-scrollbar, .custom-modal #individual-recipients::-webkit-scrollbar {
    width: 12px;
  }
  .custom-modal #groups::-webkit-scrollbar-track, .custom-modal #group-hierarchies::-webkit-scrollbar-track, .custom-modal #excluded-group-hierarchies::-webkit-scrollbar-track, .custom-modal #individual-recipients::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .custom-modal #groups::-webkit-scrollbar-thumb, .custom-modal #group-hierarchies::-webkit-scrollbar-thumb, .custom-modal #excluded-group-hierarchies::-webkit-scrollbar-thumb, .custom-modal #individual-recipients::-webkit-scrollbar-thumb {
    background: #ccc;
  }
}

.custom-modal .btn-close-modal:not(.button) {
  background: #fff;
  width: 35px;
  height: 35px;
  display: flex;
  background: #ececec;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: -50px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
  color: #2C2C2C;
}

.custom-modal .btn-close-modal:not(.button) i {
  margin-top: 2px;
}

.custom-modal.with-slider {
  align-items: unset;
}

.custom-modal.with-slider .inner {
  padding: 0;
  max-height: 80%;
  border-radius: 0;
  position: relative;
  display: unset;
  background: unset;
  border: none;
  box-shadow: none;
  overflow: unset;
  position: relative;
  width: 100%;
  height: auto;
}

.custom-modal.with-slider .swiper {
  height: 100%;
}

.custom-modal.with-slider .swiper .swiper-wrapper {
  align-items: center;
}

.custom-modal.with-slider .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f7f7f7;
}

.custom-modal.with-slider .swiper .swiper-wrapper .swiper-slide img {
  height: 100%;
  object-fit: contain;
  max-height: unset;
  position: relative;
}

.custom-modal:not(.custom-modal.img) .inner {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e7e7e7;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  overflow: auto;
  position: relative;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 991px) {
  .custom-modal:not(.custom-modal.img) .inner::-webkit-scrollbar {
    width: 12px;
  }
  .custom-modal:not(.custom-modal.img) .inner::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .custom-modal:not(.custom-modal.img) .inner::-webkit-scrollbar-thumb {
    background: #ccc;
  }
}

.custom-modal:not(.custom-modal.img) .inner.grey {
  background: #d7d7d7;
}

.custom-modal:not(.custom-modal.img) .inner .modal-heading {
  font-weight: 700;
  font-size: 15px;
  padding: 20px 13px 40px 13px;
  margin: 0;
  background: #fff;
}

.custom-modal:not(.custom-modal.img) .inner .modal-title {
  font-size: 19px;
  font-weight: 700;
  margin: 50px 20px 18px 20px;
}

.custom-modal:not(.custom-modal.img) .inner #btn-back-one-level, .custom-modal:not(.custom-modal.img) .inner #excluded-btn-back-one-level, .custom-modal:not(.custom-modal.img) .inner #individual-recipients-btn-back-one-level {
  background: #DBDBDB;
  font-size: 14px;
  color: #000;
  font-weight: 700;
  padding: 17px 20px;
  cursor: pointer;
}

.custom-modal:not(.custom-modal.img) .inner #btn-back-one-level[data-level="0"], .custom-modal:not(.custom-modal.img) .inner #excluded-btn-back-one-level[data-level="0"], .custom-modal:not(.custom-modal.img) .inner #individual-recipients-btn-back-one-level[data-level="0"] {
  display: none;
}

.custom-modal:not(.custom-modal.img) .inner #btn-back-one-level[data-level="0"] + #group-breadcrumb, .custom-modal:not(.custom-modal.img) .inner #btn-back-one-level[data-level="0"] + #excluded-group-breadcrumb, .custom-modal:not(.custom-modal.img) .inner #btn-back-one-level[data-level="0"] + #individual-recipients-breadcrumb, .custom-modal:not(.custom-modal.img) .inner #excluded-btn-back-one-level[data-level="0"] + #group-breadcrumb, .custom-modal:not(.custom-modal.img) .inner #excluded-btn-back-one-level[data-level="0"] + #excluded-group-breadcrumb, .custom-modal:not(.custom-modal.img) .inner #excluded-btn-back-one-level[data-level="0"] + #individual-recipients-breadcrumb, .custom-modal:not(.custom-modal.img) .inner #individual-recipients-btn-back-one-level[data-level="0"] + #group-breadcrumb, .custom-modal:not(.custom-modal.img) .inner #individual-recipients-btn-back-one-level[data-level="0"] + #excluded-group-breadcrumb, .custom-modal:not(.custom-modal.img) .inner #individual-recipients-btn-back-one-level[data-level="0"] + #individual-recipients-breadcrumb {
  display: none;
}

.custom-modal:not(.custom-modal.img) .inner #btn-back-one-level span, .custom-modal:not(.custom-modal.img) .inner #excluded-btn-back-one-level span, .custom-modal:not(.custom-modal.img) .inner #individual-recipients-btn-back-one-level span {
  margin-left: 10px;
}

.custom-modal:not(.custom-modal.img) .inner #group-breadcrumb, .custom-modal:not(.custom-modal.img) .inner #excluded-group-breadcrumb, .custom-modal:not(.custom-modal.img) .inner #individual-recipients-breadcrumb {
  padding: 10px 20px;
  background: #F3F3F3;
  color: #555555;
  font-size: 13px;
}

.custom-modal:not(.custom-modal.img) .inner [class~='checkbox-wrapper']:last-of-type, .custom-modal:not(.custom-modal.img) .inner [class~='group-wrapper']:last-of-type {
  border-bottom: 1px solid #ECECEC;
}

.custom-modal:not(.custom-modal.img) .inner .group-wrapper {
  display: flex;
  border-top: 1px solid #ECECEC;
  justify-content: space-between;
}

.custom-modal:not(.custom-modal.img) .inner .group-wrapper.always-hidden {
  display: none !important;
}

.custom-modal:not(.custom-modal.img) .inner .group-wrapper p {
  margin-bottom: 0;
  padding: 17px 0 17px 20px;
}

.custom-modal:not(.custom-modal.img) .inner .group-wrapper .fa-chevron-right {
  padding: 17px 20px;
  display: inline-block;
  cursor: pointer;
  color: #000;
}

.custom-modal:not(.custom-modal.img) .inner .user-checkbox-wrapper {
  border-top: 1px solid #ECECEC;
}

.custom-modal:not(.custom-modal.img) .inner .user-checkbox-wrapper input[type='checkbox'] {
  display: none;
}

.custom-modal:not(.custom-modal.img) .inner .user-checkbox-wrapper input[type='checkbox']:checked + span:before {
  content: '\f00c';
  font-size: 14px;
  color: #2C2C2C;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 23px;
  display: block;
}

.custom-modal:not(.custom-modal.img) .inner .user-checkbox-wrapper label {
  position: relative;
  font-size: 13px;
  font-weight: 400;
  padding: 17px 20px;
  width: 100%;
  display: flex;
  align-items: center;
  line-height: 18px;
  cursor: pointer;
}

.custom-modal:not(.custom-modal.img) .inner .user-checkbox-wrapper label:before {
  content: " ";
  display: inline-block;
  position: relative;
  margin-right: 10px;
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  border: 1px solid #BDBDBD;
  background-color: #fff;
  border-radius: 4px;
}

.custom-modal:not(.custom-modal.img) .inner .user-checkbox-wrapper label p {
  display: flex;
  flex-direction: column;
}

.custom-modal:not(.custom-modal.img) .inner .user-checkbox-wrapper label p span:last-child {
  gap: 5px;
  font-size: 12px;
  color: #929292;
}

.custom-modal:not(.custom-modal.img) .inner .user-checkbox-wrapper label p span:last-child i {
  margin-right: 5px;
}

.custom-modal:not(.custom-modal.img) .inner .user-checkbox-wrapper label, .custom-modal:not(.custom-modal.img) .inner .user-checkbox-wrapper p {
  margin: 0;
}

.custom-modal:not(.custom-modal.img) .inner .checkbox-wrapper {
  border-top: 1px solid #ECECEC;
}

.custom-modal:not(.custom-modal.img) .inner .checkbox-wrapper.disabled label:before, .custom-modal:not(.custom-modal.img) .inner .checkbox-wrapper.input-disabled label:before {
  display: none;
}

.custom-modal:not(.custom-modal.img) .inner .checkbox-wrapper.has-children {
  display: flex;
}

.custom-modal:not(.custom-modal.img) .inner .checkbox-wrapper.has-children label {
  padding: 17px 0 17px 20px;
}

.custom-modal:not(.custom-modal.img) .inner .checkbox-wrapper.has-children .fa-chevron-right {
  padding: 17px 20px;
  display: inline-block;
  cursor: pointer;
  color: #000;
}

.custom-modal:not(.custom-modal.img) .inner .checkbox-wrapper .fa-chevron-right {
  display: none;
}

.custom-modal:not(.custom-modal.img) .inner .checkbox-wrapper label, .custom-modal:not(.custom-modal.img) .inner .checkbox-wrapper p {
  margin: 0;
}

.custom-modal:not(.custom-modal.img) .inner .checkbox-wrapper input[type='checkbox'] {
  display: none;
}

.custom-modal:not(.custom-modal.img) .inner .checkbox-wrapper input[type='checkbox']:checked + span:before {
  content: '\f00c';
  font-size: 14px;
  color: #2C2C2C;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 23px;
  display: block;
}

.custom-modal:not(.custom-modal.img) .inner .checkbox-wrapper label {
  position: relative;
  font-size: 13px;
  font-weight: 400;
  padding: 17px 20px;
  width: 100%;
  display: flex;
  align-items: center;
  line-height: 18px;
  cursor: pointer;
}

.custom-modal:not(.custom-modal.img) .inner .checkbox-wrapper label:before {
  content: " ";
  display: inline-block;
  position: relative;
  margin-right: 10px;
  width: 18px;
  height: 18px;
  border: 1px solid #BDBDBD;
  background-color: #fff;
  border-radius: 4px;
}

.custom-modal:not(.custom-modal.img) .inner .checkbox-wrapper label p {
  display: inline-block;
}

.custom-modal:not(.custom-modal.img) .inner .add-video-wrap, .custom-modal:not(.custom-modal.img) .inner .add-link-wrap, .custom-modal:not(.custom-modal.img) .inner .add-poll-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 17px 20px;
  border-top: 1px solid #ececec;
}

.custom-modal:not(.custom-modal.img) .inner .add-video-wrap .btn-add-video, .custom-modal:not(.custom-modal.img) .inner .add-video-wrap .btn-add-link, .custom-modal:not(.custom-modal.img) .inner .add-video-wrap .btn-add-answer, .custom-modal:not(.custom-modal.img) .inner .add-link-wrap .btn-add-video, .custom-modal:not(.custom-modal.img) .inner .add-link-wrap .btn-add-link, .custom-modal:not(.custom-modal.img) .inner .add-link-wrap .btn-add-answer, .custom-modal:not(.custom-modal.img) .inner .add-poll-wrap .btn-add-video, .custom-modal:not(.custom-modal.img) .inner .add-poll-wrap .btn-add-link, .custom-modal:not(.custom-modal.img) .inner .add-poll-wrap .btn-add-answer {
  position: relative;
  width: 100%;
  cursor: pointer;
  height: 45px;
  background-color: #6E6E6E;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border-radius: 15px;
}

.custom-modal:not(.custom-modal.img) .inner .add-poll-wrap {
  border-top: none;
  border-bottom: 1px solid #ececec;
}

.custom-modal:not(.custom-modal.img) .inner .add-poll-wrap .btn-add-answer {
  font-size: 13px;
}

.custom-modal:not(.custom-modal.img) .inner .video-list, .custom-modal:not(.custom-modal.img) .inner .link-list, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #f2f2f2;
  overflow: auto;
}

@media screen and (min-width: 991px) {
  .custom-modal:not(.custom-modal.img) .inner .video-list::-webkit-scrollbar, .custom-modal:not(.custom-modal.img) .inner .link-list::-webkit-scrollbar, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list::-webkit-scrollbar {
    width: 4px;
  }
  .custom-modal:not(.custom-modal.img) .inner .video-list::-webkit-scrollbar-track, .custom-modal:not(.custom-modal.img) .inner .link-list::-webkit-scrollbar-track, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .custom-modal:not(.custom-modal.img) .inner .video-list::-webkit-scrollbar-thumb, .custom-modal:not(.custom-modal.img) .inner .link-list::-webkit-scrollbar-thumb, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list::-webkit-scrollbar-thumb {
    background: #ccc;
  }
}

.custom-modal:not(.custom-modal.img) .inner .video-list .single-video-element, .custom-modal:not(.custom-modal.img) .inner .video-list .single-link-element, .custom-modal:not(.custom-modal.img) .inner .video-list .single-poll-answer-element, .custom-modal:not(.custom-modal.img) .inner .link-list .single-video-element, .custom-modal:not(.custom-modal.img) .inner .link-list .single-link-element, .custom-modal:not(.custom-modal.img) .inner .link-list .single-poll-answer-element, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-video-element, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-link-element, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-poll-answer-element {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 15px;
  border-bottom: 1px solid #ddd;
  padding: 10px 20px;
}

.custom-modal:not(.custom-modal.img) .inner .video-list .single-video-element .fa-times, .custom-modal:not(.custom-modal.img) .inner .video-list .single-link-element .fa-times, .custom-modal:not(.custom-modal.img) .inner .video-list .single-poll-answer-element .fa-times, .custom-modal:not(.custom-modal.img) .inner .link-list .single-video-element .fa-times, .custom-modal:not(.custom-modal.img) .inner .link-list .single-link-element .fa-times, .custom-modal:not(.custom-modal.img) .inner .link-list .single-poll-answer-element .fa-times, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-video-element .fa-times, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-link-element .fa-times, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-poll-answer-element .fa-times {
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  background: #cf4949;
  color: #fff;
  justify-content: center;
  width: 25px;
  height: 25px;
  line-height: 25px;
}

.custom-modal:not(.custom-modal.img) .inner .video-list .single-video-element .select, .custom-modal:not(.custom-modal.img) .inner .video-list .single-link-element .select, .custom-modal:not(.custom-modal.img) .inner .video-list .single-poll-answer-element .select, .custom-modal:not(.custom-modal.img) .inner .link-list .single-video-element .select, .custom-modal:not(.custom-modal.img) .inner .link-list .single-link-element .select, .custom-modal:not(.custom-modal.img) .inner .link-list .single-poll-answer-element .select, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-video-element .select, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-link-element .select, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-poll-answer-element .select {
  position: relative;
  margin-bottom: 7px;
}

.custom-modal:not(.custom-modal.img) .inner .video-list .single-video-element .select:after, .custom-modal:not(.custom-modal.img) .inner .video-list .single-link-element .select:after, .custom-modal:not(.custom-modal.img) .inner .video-list .single-poll-answer-element .select:after, .custom-modal:not(.custom-modal.img) .inner .link-list .single-video-element .select:after, .custom-modal:not(.custom-modal.img) .inner .link-list .single-link-element .select:after, .custom-modal:not(.custom-modal.img) .inner .link-list .single-poll-answer-element .select:after, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-video-element .select:after, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-link-element .select:after, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-poll-answer-element .select:after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 18px;
  top: calc(50% + 2px);
  color: #929292;
  transform: translateY(-50%);
  pointer-events: none;
}

.custom-modal:not(.custom-modal.img) .inner .video-list .single-video-element .select select, .custom-modal:not(.custom-modal.img) .inner .video-list .single-link-element .select select, .custom-modal:not(.custom-modal.img) .inner .video-list .single-poll-answer-element .select select, .custom-modal:not(.custom-modal.img) .inner .link-list .single-video-element .select select, .custom-modal:not(.custom-modal.img) .inner .link-list .single-link-element .select select, .custom-modal:not(.custom-modal.img) .inner .link-list .single-poll-answer-element .select select, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-video-element .select select, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-link-element .select select, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-poll-answer-element .select select {
  width: 100%;
  outline: none;
  padding: 8px 20px;
  border-radius: 22px;
  border-color: #d2d2d2;
  font-size: 13px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  cursor: pointer;
  color: #000;
}

.custom-modal:not(.custom-modal.img) .inner .video-list .single-video-element .select select option, .custom-modal:not(.custom-modal.img) .inner .video-list .single-link-element .select select option, .custom-modal:not(.custom-modal.img) .inner .video-list .single-poll-answer-element .select select option, .custom-modal:not(.custom-modal.img) .inner .link-list .single-video-element .select select option, .custom-modal:not(.custom-modal.img) .inner .link-list .single-link-element .select select option, .custom-modal:not(.custom-modal.img) .inner .link-list .single-poll-answer-element .select select option, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-video-element .select select option, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-link-element .select select option, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-poll-answer-element .select select option {
  color: #2C2C2C;
  background: #fff;
}

.custom-modal:not(.custom-modal.img) .inner .video-list .single-video-element input[type=text], .custom-modal:not(.custom-modal.img) .inner .video-list .single-link-element input[type=text], .custom-modal:not(.custom-modal.img) .inner .video-list .single-poll-answer-element input[type=text], .custom-modal:not(.custom-modal.img) .inner .link-list .single-video-element input[type=text], .custom-modal:not(.custom-modal.img) .inner .link-list .single-link-element input[type=text], .custom-modal:not(.custom-modal.img) .inner .link-list .single-poll-answer-element input[type=text], .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-video-element input[type=text], .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-link-element input[type=text], .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-poll-answer-element input[type=text] {
  outline: none;
  width: 100%;
  font-size: 13px !important;
  border: 1px solid #d2d2d2;
  border-radius: 22px;
  font-weight: 400;
  padding: 8px 20px;
  color: #000;
}

.custom-modal:not(.custom-modal.img) .inner .video-list .single-video-element input[type=text]::placeholder, .custom-modal:not(.custom-modal.img) .inner .video-list .single-link-element input[type=text]::placeholder, .custom-modal:not(.custom-modal.img) .inner .video-list .single-poll-answer-element input[type=text]::placeholder, .custom-modal:not(.custom-modal.img) .inner .link-list .single-video-element input[type=text]::placeholder, .custom-modal:not(.custom-modal.img) .inner .link-list .single-link-element input[type=text]::placeholder, .custom-modal:not(.custom-modal.img) .inner .link-list .single-poll-answer-element input[type=text]::placeholder, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-video-element input[type=text]::placeholder, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-link-element input[type=text]::placeholder, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-poll-answer-element input[type=text]::placeholder {
  color: #929292;
}

.custom-modal:not(.custom-modal.img) .inner .video-list .single-video-element input[type=text].invalid, .custom-modal:not(.custom-modal.img) .inner .video-list .single-link-element input[type=text].invalid, .custom-modal:not(.custom-modal.img) .inner .video-list .single-poll-answer-element input[type=text].invalid, .custom-modal:not(.custom-modal.img) .inner .link-list .single-video-element input[type=text].invalid, .custom-modal:not(.custom-modal.img) .inner .link-list .single-link-element input[type=text].invalid, .custom-modal:not(.custom-modal.img) .inner .link-list .single-poll-answer-element input[type=text].invalid, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-video-element input[type=text].invalid, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-link-element input[type=text].invalid, .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-poll-answer-element input[type=text].invalid {
  border: 1px solid #cf4949;
}

.custom-modal:not(.custom-modal.img) .inner .video-list .single-video-element input[type=text] + input[type=text], .custom-modal:not(.custom-modal.img) .inner .video-list .single-link-element input[type=text] + input[type=text], .custom-modal:not(.custom-modal.img) .inner .video-list .single-poll-answer-element input[type=text] + input[type=text], .custom-modal:not(.custom-modal.img) .inner .link-list .single-video-element input[type=text] + input[type=text], .custom-modal:not(.custom-modal.img) .inner .link-list .single-link-element input[type=text] + input[type=text], .custom-modal:not(.custom-modal.img) .inner .link-list .single-poll-answer-element input[type=text] + input[type=text], .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-video-element input[type=text] + input[type=text], .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-link-element input[type=text] + input[type=text], .custom-modal:not(.custom-modal.img) .inner .poll-answer-list .single-poll-answer-element input[type=text] + input[type=text] {
  margin-top: 7px;
}

.custom-modal:not(.custom-modal.img) .inner .poll-answer-list {
  height: auto;
}

.custom-modal:not(.custom-modal.img) .inner .poll-answer-list .poll__error-text:not(:empty) {
  order: 1;
  padding: 20px 25px;
}

.custom-modal:not(.custom-modal.img) .inner .file-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 17px 20px;
  border-top: 1px solid #ececec;
}

.custom-modal:not(.custom-modal.img) .inner .file-container label {
  position: relative;
  display: inline-block;
  cursor: pointer;
  height: 45px;
  margin: 0;
  width: 100%;
}

.custom-modal:not(.custom-modal.img) .inner .file-container label input[type=file] {
  opacity: 0;
}

.custom-modal:not(.custom-modal.img) .inner .file-container label .custom-file {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 5;
  height: 45px;
  background-color: #6E6E6E;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  user-select: none;
  font-size: 14px;
  border-radius: 15px;
}

.custom-modal:not(.custom-modal.img) .inner .file-container label .custom-file:after {
  content: var(--lang-add-images);
}

.custom-modal:not(.custom-modal.img) .inner .files-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-auto-rows: min-content;
  height: 100%;
  gap: 8px;
  background: #f2f2f2;
  padding: 10px 20px;
  overflow: auto;
}

@media screen and (min-width: 991px) {
  .custom-modal:not(.custom-modal.img) .inner .files-container::-webkit-scrollbar {
    width: 4px;
  }
  .custom-modal:not(.custom-modal.img) .inner .files-container::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .custom-modal:not(.custom-modal.img) .inner .files-container::-webkit-scrollbar-thumb {
    background: #ccc;
  }
}

.custom-modal:not(.custom-modal.img) .inner .files-container .item {
  display: flex;
  position: relative;
}

.custom-modal:not(.custom-modal.img) .inner .files-container .item:before {
  content: '';
  display: block;
  padding-bottom: 100%;
}

.custom-modal:not(.custom-modal.img) .inner .files-container .item img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.custom-modal:not(.custom-modal.img) .inner .files-container .item .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 5px;
  top: 5px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #faecec;
  font-size: 22px;
  color: #cf4949;
  z-index: 1;
}

.custom-modal:not(.custom-modal.img) .inner .bottom {
  margin-top: auto;
}

.custom-modal.img:not(.with-slider) .inner {
  padding: 0;
  max-height: 80%;
  border-radius: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: unset;
  border: none;
  box-shadow: none;
  overflow: unset;
  position: relative;
  width: 100%;
  height: auto;
}

.custom-modal.img:not(.with-slider) .inner img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

@media screen and (min-width: 991px) {
  .custom-modal.img, .custom-modal.with-slider {
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
  }
}

.page-home-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 700px) 1fr;
  gap: 20px;
}

@media screen and (max-width: 1200px) {
  .page-home-wrapper {
    gap: 0px;
  }
}

@media screen and (max-width: 1200px) {
  .page-home__second-wrapper {
    display: none;
  }
}

@media screen and (min-width: 991px) {
  .page-home__second-wrapper {
    height: 85vh;
    margin: 20px 0;
    overflow: auto;
  }
  .page-home__second-wrapper::-webkit-scrollbar {
    width: 12px;
  }
  .page-home__second-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .page-home__second-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
  }
}

.page-home {
  display: flex;
  flex-direction: column;
  font-family: 'Sen', sans-serif !important;
  color: #2C2C2C;
  background: #f5f5f5;
  width: 100%;
}

@media screen and (min-width: 991px) {
  .page-home {
    height: 85vh;
    margin: 20px 0;
    overflow: auto;
  }
  .page-home::-webkit-scrollbar {
    width: 12px;
  }
  .page-home::-webkit-scrollbar-track {
    background: #f5f5f5;
  }
  .page-home::-webkit-scrollbar-thumb {
    background: #ccc;
  }
}

.page-home #btn-create-post {
  padding: 20px 25px;
  background: #fff;
  font-weight: 700;
  font-size: 15px;
  transition: background .3s ease-in-out, margin-bottom .3s ease-in-out;
  margin-bottom: 7px;
  position: relative;
  cursor: pointer;
  border-bottom: 10px solid #d7d7d7;
}

@media screen and (min-width: 991px) {
  .page-home #btn-create-post {
    border-bottom: 0px solid #d7d7d7;
  }
}

.page-home #btn-create-post i {
  margin-right: 12px;
}

.page-home #btn-create-post.active {
  margin-bottom: 0;
  background: #D6D6D6;
}

@media screen and (min-width: 991px) {
  .page-home #btn-create-post.active .divider {
    height: 0;
    margin-bottom: 7px;
  }
}

.page-home #btn-create-post div {
  display: none;
}

.page-home #btn-create-post div.active {
  display: block;
}

.page-home #btn-create-post .divider {
  display: none;
  height: 7px;
  width: 100%;
  background: #f5f5f5;
  position: absolute;
  bottom: -7px;
  left: 0;
  transition: .3s ease-in-out;
}

@media screen and (min-width: 991px) {
  .page-home #btn-create-post .divider {
    display: block;
  }
}

.page-home .create-news-wrapper {
  background: #fff;
  height: 0;
  overflow: hidden;
  transition: height .3s ease-in-out;
}

@media screen and (min-width: 991px) {
  .page-home .create-news-wrapper.active {
    overflow: auto;
  }
  .page-home .create-news-wrapper.active::-webkit-scrollbar {
    width: 12px;
  }
  .page-home .create-news-wrapper.active::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .page-home .create-news-wrapper.active::-webkit-scrollbar-thumb {
    background: #ccc;
  }
}

.page-home .create-news-wrapper .input-wrapper {
  border-bottom: 1px solid #EAEAEA;
  padding: 20px 25px;
}

.page-home .create-news-wrapper .input-wrapper.is-editor {
  padding: 0 0 20px 0;
}

.page-home .create-news-wrapper .input-wrapper {
  padding: 17px 25px 28px 25px;
}

.page-home .create-news-wrapper .cke {
  border: none;
  box-shadow: unset;
}

.page-home .create-news-wrapper .cke .cke_top {
  padding: 20px 25px 10px 25px;
  border-bottom: none;
}

.page-home .create-news-wrapper .cke .cke_top .cke_button:hover {
  box-shadow: unset;
  background: inherit;
}

.page-home .create-news-wrapper .cke .cke_editable {
  padding: 0;
}

.page-home .create-news-wrapper .cke .cke_bottom {
  display: none;
}

.page-home .create-news-wrapper .cke .cke_toolgroup {
  margin: 0;
}

.page-home .create-news-wrapper .input-title {
  font-size: 13px;
  font-weight: 400;
}

.page-home .create-news-wrapper input[type=text], .page-home .create-news-wrapper textarea {
  outline: none;
  width: 100%;
  font-size: 13px !important;
  border: none;
  font-weight: 400;
  resize: none;
}

.page-home .create-news-wrapper input[type=text]::placeholder, .page-home .create-news-wrapper textarea::placeholder {
  color: #2C2C2C;
}

.page-home .create-news-wrapper input[type=datetime-local] {
  width: 100%;
  color: #929292;
  outline: none;
  padding: 13px 25px;
  border-radius: 22px;
  border: 1px solid #d2d2d2;
  font-size: 13px !important;
}

.page-home .create-news-wrapper .input-radio-wrapper {
  display: flex;
  gap: 10px;
}

.page-home .create-news-wrapper .input-radio-wrapper .input-radio {
  width: 100%;
}

.page-home .create-news-wrapper .input-radio-wrapper input {
  display: none;
}

.page-home .create-news-wrapper .input-radio-wrapper input:checked + label {
  background: #3D3D3D;
  color: #fff;
  border: none;
}

.page-home .create-news-wrapper .input-radio-wrapper label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #858585;
  border-radius: 22px;
  margin: 0;
  line-height: normal;
  font-size: 13px;
  padding: 15px;
  color: #838383;
}

.page-home .create-news-wrapper .input-radio-wrapper label i {
  font-size: 18px;
  margin-right: 9px;
}

.page-home .create-news-wrapper .select {
  position: relative;
}

.page-home .create-news-wrapper .select:after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 18px;
  top: calc(50% + 2px);
  color: #929292;
  transform: translateY(-50%);
  pointer-events: none;
}

.page-home .create-news-wrapper .select--dummy, .page-home .create-news-wrapper .select-groups, .page-home .create-news-wrapper .select-excluded-groups {
  border: 1px solid #d2d2d2;
}

.page-home .create-news-wrapper select, .page-home .create-news-wrapper .select--dummy, .page-home .create-news-wrapper .select-groups, .page-home .create-news-wrapper .select-excluded-groups {
  width: 100%;
  color: #929292;
  outline: none;
  padding: 13px 25px;
  border-radius: 22px;
  border-color: #d2d2d2;
  font-size: 13px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  cursor: pointer;
}

.page-home .create-news-wrapper select option, .page-home .create-news-wrapper .select--dummy option, .page-home .create-news-wrapper .select-groups option, .page-home .create-news-wrapper .select-excluded-groups option {
  color: #2C2C2C;
  background: #fff;
}

.page-home .create-news-wrapper .media-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12.5px;
}

.page-home .create-news-wrapper .media-row div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37.5px;
  height: 37.5px;
  background: #EAEAEA;
  border-radius: 50%;
  font-size: 17.5px;
  cursor: pointer;
  margin: 0;
  position: relative;
}

.page-home .create-news-wrapper .media-row .active:after {
  display: flex;
  justify-content: center;
  position: absolute;
  top: -5px;
  right: -5px;
  width: calc(37.5px / 2);
  height: calc(37.5px / 2);
  line-height: calc(37.5px / 2);
  background: red;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.page-home .create-news-wrapper .media-row #btn-add-img.active:after {
  content: var(--active-images);
}

.page-home .create-news-wrapper .media-row #btn-add-video.active:after {
  content: var(--active-videos);
}

.page-home .create-news-wrapper .media-row #btn-add-link.active:after {
  content: var(--active-links);
}

.page-home .create-news-wrapper .media-row #btn-add-poll.active:after {
  content: var(--active-poll);
}

.page-home .create-news-wrapper #number-of-recievers {
  padding: 17px 25px;
  margin: 0;
  font-weight: bold;
}

.page-home .create-news-wrapper .button-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 10px;
  color: #000;
  background: #fff;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.page-home .create-news-wrapper .button-bottom.button-create {
  background: #b7b7b7;
  color: #fff;
}

.page-home .create-news-wrapper .button-bottom.button-create.active {
  background: #308762;
}

.page-home .create-news-wrapper .button-bottom.button-create .loader {
  display: none;
}

.page-home .create-news-wrapper .button-bottom.button-create.loading .loader {
  display: inline-block;
}

.page-home .create-news-wrapper .button-bottom.button-create.loading .text {
  display: none;
}

.page-home .create-news-wrapper .button-bottom.button-preview {
  background: #3A8DD5;
  padding: 15px 10px;
  color: #fff;
}

.page-home .news-wrapper {
  display: none;
  flex-direction: column;
  gap: 7px;
}

.page-home .news-wrapper.active {
  display: flex;
}

.page-home .news-wrapper .btn--load-more {
  margin: 0 auto;
  width: 100%;
  margin-top: 30px;
  color: #fff;
  border-radius: 0 !important;
  padding: 1.5em 1em;
}

.page-home .swiper .swiper-slide img {
  object-fit: cover;
  object-position: center;
  max-height: 220px;
  width: 100%;
  cursor: pointer;
}

.single-news-author {
  font-size: 11px;
  background: #F2F2F2;
  padding: 8px 13px;
  margin: 0;
  position: relative;
  margin-top: -15px;
  bottom: -7px;
}

@media screen and (min-width: 991px) {
  .single-news-author {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border: #e7e7e7 1px solid !important;
    border-bottom: 0 !important;
    margin-top: -5px;
  }
}

.single-news {
  background: #fff;
  padding-top: 20px;
  border-bottom: 10px solid #d7d7d7;
  position: relative;
}

.single-news:last-child {
  border-bottom: 0 !important;
}

@media screen and (min-width: 991px) {
  .single-news {
    border-bottom: 10px solid #f7f7f7;
    border: #e7e7e7 1px solid !important;
    border-top: 0 !important;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
  }
}

.single-news--pinned {
  background: #fffce9;
}

.single-news.not-published {
  background: #ffe6e6;
}

.single-news.not-published .single-news-btn-wrap, .single-news.not-published .social-wrap, .single-news.not-published .single-news-preamble {
  display: none;
}

.single-news > *:not(.single-news-btn-wrap):not(.single-news-edit):not(.button-round) {
  padding: 0 13px;
}

.single-news p {
  margin: 0;
}

.single-news .single-news-pinned {
  display: inline-block;
  margin-left: 13px;
  margin-bottom: 13px;
  color: #fff;
  background: #ff7c2c;
  width: fit-content;
  border-radius: 5px;
  padding: 4px 15px !important;
  font-size: 12px;
}

.single-news .single-news-pinned i {
  transform: rotate(45deg);
  margin-right: 5px;
  font-size: 0.8em;
}

.single-news .single-news-read, .single-news .single-news-not-published {
  display: inline-block;
  width: fit-content;
  text-align: center;
  margin: 0 13px 6px;
  padding: 4px 15px !important;
  background-color: #1791c5;
  color: #fff;
  border-radius: 5px;
  font-size: 12px;
}

.single-news .single-news-btn-options {
  position: absolute;
  right: 8px;
  top: 0;
  color: #BCBCBC;
  padding: 5px;
  font-size: 20px;
  cursor: pointer;
}

.single-news .single-news-options-inner {
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  height: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  transition: height .3s ease-in-out;
  font-size: 15px;
  z-index: 2;
}

.single-news .single-news-options-inner .option {
  margin-top: 20px;
  cursor: pointer;
}

.single-news .single-news-options-inner .option + .option {
  margin-top: 10px;
}

.single-news .single-news-options-inner :last-child {
  margin-bottom: 20px;
}

.single-news .single-news-options-inner .single-news-options-close {
  display: inline-block;
  position: absolute;
  right: 14px;
  top: 10px;
  font-size: 17px;
}

.single-news .single-news-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 5px;
  padding-right: 50px !important;
  cursor: pointer;
}

.single-news .btn-show-poll {
  font-weight: 400;
}

.single-news .single-news-poll-title {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 1.17;
  color: #898989;
  margin-bottom: 8px;
}

.single-news .single-news-poll-title i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1791C5;
  color: #fff;
  font-size: 11px;
  margin-right: 10px;
  height: 25px;
  width: 25px;
  border-radius: 50%;
}

.single-news .single-news-poll-title.ended i {
  background: #B9B9B9;
}

.single-news .poll__wrapper .poll__question {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: .7em;
}

.single-news .poll__wrapper .poll__answer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.single-news .poll__wrapper .poll__single-answer-wrapper {
  position: relative;
}

.single-news .poll__wrapper .poll__single-answer-wrapper input[type=radio], .single-news .poll__wrapper .poll__single-answer-wrapper input[type=checkbox] {
  display: none;
}

.single-news .poll__wrapper .poll__single-answer-wrapper input:checked + label {
  background: #d1e9f3;
  border: 1px solid #1791C5;
  font-weight: bold;
}

.single-news .poll__wrapper .poll__single-answer-wrapper label, .single-news .poll__wrapper .poll__single-answer-wrapper .poll__answer {
  display: block;
  font-size: 13px;
  line-height: 1.38;
  font-weight: 400;
  padding: 13px 50px 13px 25px;
  width: 100%;
  border: 1px solid #A8A8A8;
  border-radius: 28px;
  background: #fff;
  background-repeat: no-repeat;
  margin: 0;
  transition: background .3s ease, border .3s ease;
}

.single-news .poll__wrapper .poll__single-answer-wrapper .poll__answer.poll__answer-active {
  background-image: linear-gradient(90deg, #d1e9f3 0%, #d1e9f3 100%);
  background-repeat: no-repeat;
  border: 1px solid #1791C5;
  font-weight: bold;
}

.single-news .poll__wrapper .poll__single-answer-wrapper .poll__answer.poll__answer-active--grey {
  background-image: linear-gradient(90deg, #f0f0f0 0%, #f0f0f0 100%);
  background-repeat: no-repeat;
  border: 1px solid #AFAFAF;
}

.single-news .poll__wrapper .poll__single-answer-wrapper .poll__percentage {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
}

.single-news .poll__wrapper .poll__error-text {
  font-size: 13px;
  font-weight: 700;
  color: #cf4949;
  margin-bottom: 10px;
}

.single-news .poll__wrapper .poll__vote-thanks {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.21;
  color: #1791C5;
}

.single-news .poll__wrapper .poll__vote-err {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.21;
  color: #cf4949;
}

.single-news .poll__wrapper .poll__info-text {
  font-size: 13px;
  line-height: 1.23;
  color: #808080;
  margin: 10px 0;
}

.single-news .poll__wrapper .poll__visibility-info {
  font-size: 13px;
  line-height: 1.23;
  color: #000;
  margin: 10px 0;
  font-weight: bold;
}

.single-news .poll__wrapper .poll__visibility-info:before {
  content: '\f06a';
  font-family: "Font Awesome 6 Pro";
  margin-right: .5em;
  color: #000;
}

.single-news .btn-show-poll {
  margin: 0 13px 14px;
}

.single-news .single-news-created {
  display: inline-block;
  font-size: 11px;
  color: #727272;
  margin-bottom: 10px;
}

.single-news .single-news-to {
  display: inline-block;
  font-size: 11px;
  position: relative;
}

.single-news .single-news-to:hover .single-news-to-full {
  visibility: visible;
}

.single-news .single-news-to .single-news-to-full {
  background: #8f8f8f;
  color: #fff;
  padding: 5px;
  border-radius: 10px;
  position: absolute;
  left: 90%;
  top: -5px;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
}

.single-news .single-news-to .single-news-to-full:empty {
  display: none;
}

.single-news .single-news-preamble, .single-news .single-news-content, .single-news .single-news-links:not(:empty) {
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 14px;
}

.single-news .single-news-preamble a {
  color: #308762;
  text-decoration: none;
}

.single-news .single-news-read-more {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #308762;
  margin-top: 1em;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.38;
}

.single-news .single-news-read-more i {
  font-size: .7em;
  margin-top: 1px;
}

.single-news .single-news-content.is-html p, .single-news .single-news-content.is-html a, .single-news .single-news-content.is-html li {
  font-size: 13px;
  line-height: 18px;
}

.single-news .single-news-content.is-html p, .single-news .single-news-content.is-html a {
  margin-bottom: .5em;
}

.single-news .single-news-content.is-html a {
  color: #308762;
  text-decoration: none;
  font-weight: bold;
}

.single-news .single-news-links {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.single-news .single-news-links a {
  color: #308762;
  text-decoration: none;
  font-weight: bold;
}

.single-news .single-news-links a i {
  margin-right: 7px;
}

.single-news .image-wrap {
  margin-bottom: 12px;
  /*max-height: 220px;*/
  max-height: 600px;
}

.single-news .image-wrap.is-video {
  position: relative;
}

.single-news .image-wrap img {
  object-fit: cover;
  object-position: center;
  max-height: 600px;
  width: 100%;
  cursor: pointer;
}

.single-news .social-wrap {
  display: flex;
  gap: 15px;
  color: #444444;
  margin-bottom: 20px;
}

.single-news .social-wrap.alternative {
  margin-bottom: 0;
  padding: 11px 13px !important;
}

.single-news .social-wrap div {
  display: flex;
  align-items: center;
}

.single-news .social-wrap i {
  display: inline-flex;
  justify-content: center;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background: #D5D5D5;
  border-radius: 50%;
  font-size: 9px;
  margin-right: 6px;
  color: #434343;
}

.single-news .single-news-btn-wrap {
  display: flex;
  background: #e3e3e3;
}

@media screen and (min-width: 991px) {
  .single-news .single-news-btn-wrap {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
  }
}

.single-news .single-news-btn-wrap div {
  text-align: center;
  width: 100%;
  padding: 15px;
  color: #000;
  font-size: 14px;
  cursor: pointer;
}

@media screen and (min-width: 991px) {
  .single-news .single-news-btn-wrap div {
    border-bottom-right-radius: 4px;
  }
}

.single-news .single-news-btn-wrap div i {
  font-size: 15px;
  margin-right: 9px;
}

.single-news .single-news-btn-wrap .single-news-btn-like {
  transition: background .3s ease, color .3s ease;
  border-right: 1px solid #DDDDDD;
}

@media screen and (min-width: 991px) {
  .single-news .single-news-btn-wrap .single-news-btn-like {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 0px;
  }
}

.single-news .single-news-btn-wrap .single-news-btn-like.active {
  background: #1a4c70;
  color: #fff;
}

single-news, preview-news, single-statistics {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 9;
  bottom: 0;
  top: 100px;
  transition: transform .3s ease-in-out;
  transform: translateX(-100%);
  background: #d7d7d7;
}

@media screen and (min-width: 991px) {
  single-news, preview-news, single-statistics {
    top: calc(70px + 20px);
    bottom: 0;
    left: 300px;
    height: 85vh;
    background: #fff;
    width: 700px;
    transition: unset;
    transform: translateX(0);
    z-index: -1;
  }
}

single-news.active, preview-news.active, single-statistics.active {
  transform: translateX(0);
}

@media screen and (min-width: 991px) {
  single-news.active, preview-news.active, single-statistics.active {
    z-index: 9;
  }
}

#comment-input-wrap {
  display: flex;
  align-items: flex-end;
  position: fixed;
  gap: 10px;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  width: 100%;
  background: #F2F2F2;
  padding: 10px 13px;
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.15);
  transition: transform .3s ease-in-out;
  z-index: 1;
}

@media screen and (min-width: 991px) {
  #comment-input-wrap {
    transition: unset;
  }
}

#comment-input-wrap.active {
  transform: translateX(0);
}

#comment-input-wrap textarea {
  background: #fff;
  border-radius: 30px;
  border: none;
  width: 100%;
  outline: none;
  padding: .7em 1.3em;
  font-size: 13px;
  resize: none;
  height: 39px;
}

#single-news-container {
  overflow: auto;
  background: #fff;
}

@media screen and (min-width: 991px) {
  #single-news-container::-webkit-scrollbar {
    width: 12px;
  }
  #single-news-container::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  #single-news-container::-webkit-scrollbar-thumb {
    background: #ccc;
  }
}

#single-news-container .button-back-top {
  padding: 0;
}

#single-news-container .button-back-top div {
  padding: 20px 25px;
}

#single-news-container .single-news-author {
  margin-top: 0;
  bottom: 0;
}

#single-news-container .comment-wrap {
  border-top: 1px solid #EAEAEA;
  padding: 12px 13px 30px 13px;
}

#single-news-container .comment-wrap .single-comment {
  display: grid;
  grid-template-columns: 50px 1fr 40px;
  position: relative;
  overflow-x: hidden;
}

#single-news-container .comment-wrap .single-comment.hide-content > *:not(.single-comment-edit) {
  visibility: hidden;
}

#single-news-container .comment-wrap .single-comment .single-comment-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: red;
  border-radius: 50%;
  font-weight: 700;
  background-color: #F2F2F2;
  margin-top: calc(18px + 4px);
}

#single-news-container .comment-wrap .single-comment .single-comment-signature img {
  border-radius: 50%;
}

#single-news-container .comment-wrap .single-comment .single-comment-created {
  margin-top: calc(18px + 4px);
  color: #747474;
  font-size: 12px;
  text-align: right;
  position: relative;
}

#single-news-container .comment-wrap .single-comment .single-comment-created:hover .full-date {
  visibility: visible;
}

#single-news-container .comment-wrap .single-comment .single-comment-created .full-date {
  background: #8f8f8f;
  color: #fff;
  padding: 5px;
  border-radius: 10px;
  position: absolute;
  width: max-content;
  right: 90%;
  top: -5px;
  visibility: hidden;
  pointer-events: none;
  transition: .3s;
}

#single-news-container .comment-wrap .single-comment .single-comment-name {
  font-size: 12px;
  line-height: 18px;
  color: #747474;
  margin-bottom: 4px;
}

#single-news-container .comment-wrap .single-comment .single-comment-content {
  background: #F2F2F2;
  border-radius: 20px;
  font-size: 13px;
  line-height: 18px;
  padding: 10px 15px;
  width: fit-content;
  white-space: pre-wrap;
  word-break: break-word;
}

#single-news-container .comment-wrap .single-comment-edit {
  background: #f2f2f2;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(calc(100% + 13px));
  transition: transform .3s ease;
  pointer-events: none;
  padding: 10px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
}

#single-news-container .comment-wrap .single-comment-edit.active {
  transform: translateX(0);
  pointer-events: auto;
}

#single-news-container .comment-wrap .single-comment-edit .edit-wrap p {
  display: none;
}

#single-news-container .comment-wrap .single-comment-edit .edit-wrap .icon-wrap {
  display: none;
}

#single-news-container .comment-wrap .single-comment-edit .edit-wrap .icon-wrap i {
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  background: #cf4949;
  color: #faecec;
  justify-content: center;
}

#single-news-container .comment-wrap .single-comment-edit .edit-wrap .icon-wrap i:first-child {
  margin-right: 10px;
  background: #308762;
  color: #fff;
  font-size: 13px;
}

#single-news-container .comment-wrap .single-comment-edit .edit-wrap .active {
  display: flex;
}

#single-news-container .comment-wrap .single-comment-edit .close-edit-comment {
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2c2c2c;
  color: #fff;
}

#single-news-container .comment-wrap .single-comment + .single-comment {
  margin-top: 14px;
}

#single-stats-container {
  overflow: auto;
  background: #fff;
}

@media screen and (min-width: 991px) {
  #single-stats-container::-webkit-scrollbar {
    width: 12px;
  }
  #single-stats-container::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  #single-stats-container::-webkit-scrollbar-thumb {
    background: #ccc;
  }
}

#single-stats-container .loading {
  display: flex;
  font-size: 40px;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #fff;
}

#single-stats-container .single-stats {
  padding-top: 20px;
}

#single-stats-container #news-title {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 20px;
  font-weight: 700;
  font-size: 15px;
  padding: 0 13px;
}

#single-stats-container #news-title a {
  margin-left: auto;
}

#single-stats-container .stat + .stat {
  border-top: unset;
}

#single-stats-container .stat {
  padding: 10px 13px;
  border-bottom: 1px solid #eaeaea;
  border-top: 1px solid #eaeaea;
  transition: background .3s ease;
}

#single-stats-container .stat.active {
  background: #f9f9f9;
}

#single-stats-container .stat.active .heading {
  font-weight: 700;
}

#single-stats-container .stat.active .heading:after {
  transform: rotate(90deg);
}

#single-stats-container .stat .heading {
  font-size: 15px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

#single-stats-container .stat .heading:after {
  content: '\f054';
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  right: 0;
  top: 0;
  transition: transform .3s ease;
}

#single-stats-container .stat i:not(.fa-times), #single-stats-container .stat i:not(.fa-spinner) {
  display: inline-flex;
  justify-content: center;
  width: 22px;
  height: 22px;
  line-height: 22px;
  background: #d5d5d5;
  border-radius: 50%;
  font-size: 11px;
  color: #434343;
  margin-right: 10px;
}

#single-stats-container .stat .accordion {
  height: 0;
  overflow: hidden;
  transition: height .3s ease-in-out;
}

#single-stats-container .stat .accordion .inner {
  display: flex;
  flex-direction: column;
  padding: 8px;
  margin-top: 8px;
}

#single-stats-container .stat .accordion .inner .loader {
  align-self: center;
  width: 25px;
  height: 25px;
  border: 2px solid #000;
  border-bottom-color: transparent;
  margin-left: 0;
}

#single-stats-container .stat .accordion .inner .stat-detailed-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 5px;
}

#single-stats-container .stat .accordion .inner .stat-detailed-top p {
  font-size: 13px;
  margin: 0;
}

#single-stats-container .stat .accordion .inner .stat-detailed-top .stat-detailed-username {
  font-weight: 700;
}

#single-stats-container .stat .accordion .inner .stat-detailed-content {
  background: #f2f2f2;
  border-radius: 20px;
  width: fit-content;
  padding: 10px 15px;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 13px;
}

#single-stats-container .stat .accordion .inner .stat-detailed-answer {
  font-size: 13px;
}

#single-stats-container .stat .accordion .inner .btn-send-reminder {
  font-size: 13px;
  font-weight: 700;
  padding: .8em 2em 0.6em;
  text-align: center;
  background: #ffda70;
  margin-bottom: 1em;
  border-radius: 10px;
  cursor: pointer;
}

#single-stats-container .stat .accordion .inner .btn-send-reminder .fa-spinner {
  display: none;
  color: #000;
}

#single-stats-container .stat .accordion .inner .btn-send-reminder.success {
  background: #308762;
  color: #fff;
}

#single-stats-container .stat .accordion .inner .stat-detailed + .stat-detailed {
  margin-top: 10px;
}

#single-stats-container .stat .accordion .inner .stat-detailed {
  position: relative;
  overflow-x: hidden;
}

#single-stats-container .stat .accordion .inner .stat-detailed.hide-content > *:not(.single-comment-edit) {
  visibility: hidden;
}

#single-stats-container .stat .accordion .inner .stat-detailed .single-comment-edit {
  background: #f2f2f2;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(calc(100% + 13px));
  transition: transform .3s ease;
  pointer-events: none;
  padding: 10px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
}

#single-stats-container .stat .accordion .inner .stat-detailed .single-comment-edit.active {
  transform: translateX(0);
  pointer-events: auto;
}

#single-stats-container .stat .accordion .inner .stat-detailed .single-comment-edit .edit-wrap p {
  display: none;
  margin: 0;
}

#single-stats-container .stat .accordion .inner .stat-detailed .single-comment-edit .edit-wrap .icon-wrap {
  display: none;
}

#single-stats-container .stat .accordion .inner .stat-detailed .single-comment-edit .edit-wrap .icon-wrap i {
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  background: #cf4949;
  color: #faecec;
  justify-content: center;
}

#single-stats-container .stat .accordion .inner .stat-detailed .single-comment-edit .edit-wrap .icon-wrap i:first-child {
  margin-right: 10px;
  background: #308762;
  color: #fff;
  font-size: 13px;
}

#single-stats-container .stat .accordion .inner .stat-detailed .single-comment-edit .edit-wrap .active {
  display: flex;
}

#single-stats-container .stat .accordion .inner .stat-detailed .single-comment-edit .close-edit-comment {
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2c2c2c;
  color: #fff;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 10px;
  color: #000;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Sen', sans-serif !important;
  cursor: pointer;
}

.button.button-white {
  background: #fff;
}

.button.button-grey {
  background: #ebebeb;
}

.button.button-green {
  background: #308762;
  color: #fff;
}

.button.button-red {
  background: #faecec;
  color: #cf4949;
}

.button-round {
  display: inline-block;
  padding: .7em 1.3em;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  border-radius: 18px;
  cursor: pointer;
}

.button-round.green {
  color: #fff;
  background: #308762;
}

.button-round.blue {
  color: #fff;
  background: #1791C5;
}

.button-back-top {
  background: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 20px 25px;
  border-bottom: 7px solid #d7d7d7;
  cursor: pointer;
}

@media screen and (min-width: 991px) {
  .button-back-top {
    border-bottom: 7px solid #f5f5f5;
  }
}

.button-back-top i {
  margin-right: 16px;
}

.skeleton-loading {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.skeleton-loading .skeleton {
  background-color: #DDDBDD;
  position: relative;
}

.skeleton-loading .skeleton::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
  animation: shimmer 2s infinite;
  content: '';
}

.skeleton-loading .skeleton-top {
  width: 100%;
  height: 62px;
  margin-bottom: 5px;
}

.skeleton-loading .skeleton-news {
  background: #fff;
  padding-top: 20px;
}

.skeleton-loading .skeleton-news .skeleton-heading {
  height: 21.5px;
  margin: 0 13px 10px 13px;
  width: 80%;
}

.skeleton-loading .skeleton-news .skeleton-date {
  width: 30%;
  height: 15.5px;
  margin: 0 13px 10px 13px;
}

.skeleton-loading .skeleton-news .skeleton-preamble {
  height: 55px;
  margin: 0 13px 14px 13px;
}

.skeleton-loading .skeleton-news .skeleton-img {
  height: 220px;
  margin: 0 13px 14px 13px;
}

.skeleton-loading .skeleton-news .skeleton-like {
  display: flex;
  gap: 10px;
  width: 100%;
  padding: 0 13px 20px 13px;
}

.skeleton-loading .skeleton-news .skeleton-like div {
  height: 20px;
  width: 100%;
}

.skeleton-loading .skeleton-news .skeleton-box {
  width: 100%;
  display: flex;
  height: 50px;
}

.skeleton-loading .skeleton-news .skeleton-box div {
  width: 100%;
  padding: 10px;
}

.skeleton-loading .skeleton-news .skeleton-box div:first-child {
  border-right: 1px solid #c7c7c7;
}

#error-box-news {
  padding: 25px 10px;
  font-weight: 700;
  font-size: 15px;
  background: #faecec;
  color: #cf4949;
  display: none;
}

#error-box-news.active {
  display: block;
}

.pre-wrap {
  white-space: pre-wrap;
}

[data-visible='false'] {
  display: none !important;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe, .embed-container object, .embed-container embed, .embed-container .iframe-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.is-video:after {
  content: '\f144';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 50px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #343434;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  pointer-events: none;
}

.modal-poll .poll-container > :first-child {
  border-top: 1px solid #EAEAEA;
}

.modal-poll .input-wrapper {
  border-bottom: 1px solid #EAEAEA;
  padding: 20px 25px;
}

.modal-poll .input-wrapper.is-editor {
  padding: 0 0 20px 0;
}

.modal-poll .input-wrapper {
  padding: 17px 25px 28px 25px;
}

.modal-poll .poll__error-text {
  font-size: 13px;
  font-weight: 700;
  color: #CF4949;
  margin: 0;
}

.modal-poll .poll__error-text:not(:empty) {
  padding: 20px 0 0;
}

.modal-poll .input-title {
  font-size: 13px;
  font-weight: 400;
}

.modal-poll input[type=text], .modal-poll textarea {
  outline: none;
  width: 100%;
  font-size: 13px !important;
  border: none;
  font-weight: 400;
  resize: none;
}

.modal-poll input[type=text]::placeholder, .modal-poll textarea::placeholder {
  color: #2C2C2C;
}

.modal-poll input[type=datetime-local] {
  width: 100%;
  color: #929292;
  outline: none;
  padding: 13px 25px;
  border-radius: 22px;
  border: 1px solid #d2d2d2;
  font-size: 13px !important;
}

.modal-poll .input-radio-wrapper {
  display: flex;
  gap: 10px;
}

.modal-poll .input-radio-wrapper .input-radio {
  width: 100%;
}

.modal-poll .input-radio-wrapper input {
  display: none;
}

.modal-poll .input-radio-wrapper input:checked + label {
  background: #3D3D3D;
  color: #fff;
  border: none;
}

.modal-poll .input-radio-wrapper label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #858585;
  border-radius: 22px;
  margin: 0;
  line-height: normal;
  font-size: 13px;
  padding: 15px;
  color: #838383;
}

.modal-poll .input-radio-wrapper label i {
  font-size: 18px;
  margin-right: 9px;
}

.modal-poll .poll__create {
  background: #b7b7b7;
  color: #fff;
}

.modal-poll .poll__create.active {
  background: #308762;
}

.modal-ai .below-title {
  display: block;
  font-size: .8em;
  margin-top: 4px;
  font-weight: normal;
  color: #7a7a7a;
}

.modal-ai .modal-ai__info-text {
  padding: 0 20px;
}

.modal-ai .modal-ai__example-btn {
  font-weight: bold;
  color: #308762;
  cursor: pointer;
}

.modal-ai .modal-ai__button-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
}

.modal-ai .modal-ai__cmd-btn {
  display: inline-block;
  padding: .7em 1.3em;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  border-radius: 18px;
  cursor: pointer;
  color: #fff;
  background: #1791C5;
}

.modal-ai textarea {
  padding: 20px;
  outline: 0;
  width: 100%;
  font-size: 13px !important;
  border: 0;
  font-weight: 400;
  resize: none;
  border-bottom: 1px solid #eaeaea;
  border-top: 1px solid #eaeaea;
}

.modal-ai__example .modal-ai__info-text {
  padding: 0 20px;
  margin-bottom: 2em;
}

.modal-ai__example .modal-ai__example-wrapper {
  display: flex;
  flex-direction: column;
}

.modal-ai__example .modal-ai__example-wrapper .modal-ai__single-example {
  font-weight: bold;
  color: #308762;
  cursor: pointer;
  padding-right: 20px;
}

.modal-ai__example .modal-ai__example-wrapper li + li {
  margin-top: 1em;
}

.loader {
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  margin-left: 10px;
}

.no-scroll {
  overflow: hidden !important;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

#single-news-container .single-news {
  border-bottom: 0 !important;
}

.select-feed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 10px;
}

.select-feed__btn {
  padding: 1em;
  font-size: 14px;
  text-align: center;
  background: #fff;
  color: #818181;
  cursor: pointer;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
  transition: background .3s ease, color .3s ease;
}

.select-feed__btn--active {
  background: #1791C5;
  color: #fff;
}

.mt-auto {
  margin-top: auto;
}

.modal-individual-recipients .loading {
  font-size: 45px;
  margin: 0 auto;
  margin-top: 50px;
}

.social-wall-info {
  padding: 20px 25px;
  background-color: #ebf5ff;
  border-bottom: 1px solid #eaeaea;
}

.social-wall-info__heading {
  font-weight: bold;
  font-size: 15px;
}

.social-wall-info p {
  color: #1e42ab;
  margin-bottom: 0;
}

.social-wall-info p + p {
  margin-top: 10px;
}

.social-wall-info div {
  margin-top: 10px;
}

.mainmenu {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 10;
  right: -100%;
  transition: right .3s ease-in-out, background .3s ease-in-out .3s;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  font-family: 'Sen', sans-serif !important;
}

.mainmenu.active {
  right: 0;
  background: rgba(0, 0, 0, 0.3);
}

.mainmenu.active .holder {
  right: 0;
}

.mainmenu.fade-out-holder {
  transition: right 0s ease-in-out .3s, background .3s ease-in-out .3s;
}

.mainmenu.fade-out-holder .holder {
  transition: right .3s ease-in-out;
  right: -100%;
}

.mainmenu .holder {
  height: 100%;
  width: 88%;
  position: relative;
  right: 0;
  background: #fff;
  box-shadow: -4px 0px 12px rgba(0, 0, 0, 0.25);
  background-image: url("data:image/svg+xml,%3Csvg width='328' height='150' viewBox='0 0 328 150' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M328 122.504C291.264 151.768 161 82.78 0 150L1.31134e-05 -0.000153264L328 -0.000124589L328 122.504Z' fill='black' fill-opacity='0.03'/%3E%3Cpath d='M328 137.134C291.264 169.894 132 77.9376 3.30341e-07 140.646L1.26261e-05 -0.000196521L328 -0.000167847L328 137.134Z' fill='black' fill-opacity='0.05'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  padding-bottom: 40px;
  overflow-y: auto;
}

.mainmenu .holder .menu-top {
  padding: 50px 25px;
}

.mainmenu .holder .menu-top .flex-row {
  display: flex;
  align-items: center;
}

.mainmenu .holder .menu-top .user {
  display: flex;
}

.mainmenu .holder .menu-top .user .signature {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f00;
  border-radius: 50%;
  font-weight: 700;
  background-color: #fff;
  color: #000;
  margin-top: 0px;
  margin-right: 10px;
}

.mainmenu .holder .menu-top .user:hover {
  text-decoration: none;
}

.mainmenu .holder .menu-top .user img {
  border-radius: 4px;
  /*     filter: grayscale(100%);*/
  /*margin-right: 10px;*/
}

.mainmenu .holder .menu-top .user p {
  margin: 0;
}

.mainmenu .holder .menu-top .user .user-name {
  font-size: 14px;
  font-weight: 700;
  color: #040404;
}

.mainmenu .holder .menu-top .user .user-settings {
  margin-top: 4px;
  font-size: 13px;
  color: #565656;
}

.mainmenu .holder .menu-top .user .user-settings i {
  margin-right: 5px;
}

.mainmenu .holder .menu-top .btn-close-menu {
  font-size: 28px;
  margin-left: auto;
}

.mainmenu .holder .menu-top .btn-notifications {
  display: inline-block;
  margin-top: 25px;
  background: #bbbbbb;
  border-radius: 18px;
  font-size: 14px;
  padding: 8px 18px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  pointer-events: auto;
}

.mainmenu .holder .menu-top .btn-notifications.active {
  background: #f26e43;
  color: #fff;
  pointer-events: auto;
}

.mainmenu .holder ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mainmenu .holder ul .item {
  position: relative;
}

.mainmenu .holder ul .item span {
  position: absolute;
  cursor: pointer;
  right: 5px;
  top: 0px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 60px;
  z-index: 1;
}

.mainmenu .holder ul .item span i {
  font-size: 1.2em;
}

.mainmenu .holder ul .item a {
  display: flex;
  font-weight: 400;
  color: #000;
  padding: 17px 39px;
  font-size: 18px;
  border-left: 3px solid #fff;
}

.mainmenu .holder ul .item a .ico {
  margin-right: 20px;
}

.mainmenu .holder ul .item a.active {
  border-left: 3px solid #1a4c70;
  border-radius: 0px 3px 3px 0px;
  background: rgba(0, 0, 0, 0.02);
}

.mainmenu .holder ul .item a:hover {
  background: rgba(0, 0, 0, 0.02);
}

.mainmenu .holder ul .item a:hover, .mainmenu .holder ul .item a:active {
  text-decoration: none;
}

.mainmenu .holder ul .item ul {
  display: none;
  border-left: 1px solid #e3e3e3;
  padding-left: 30px;
  margin-left: 50px;
  margin-bottom: 5px;
}

.mainmenu .holder ul .item ul.active {
  display: block;
}

.mainmenu .holder ul .item ul a {
  font-size: 17px !important;
  border-left: 0 !important;
  padding: 8px 0px !important;
}

.mainmenu .holder ul .item ul a.active {
  border-left: 0 !important;
  background: none !important;
  color: #1a4c70;
}

.mainmenu .holder ul .item ul a:hover {
  background: none !important;
}

.mainmenu .holder ul .item ul a:hover, .mainmenu .holder ul .item ul a:active {
  text-decoration: none;
}

.headernav {
  background: #fff;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  overflow: auto;
  padding-left: 30px;
  z-index: 9;
  box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.25);
  /* Ny layouthöger: select + profil + signatur */
  /* Ny stil för huvudgrupps-väljaren */
}

.headernav .searchbar {
  position: fixed;
  left: 280px;
  width: 300px;
}

.headernav .searchbar svg {
  position: absolute;
  width: 14px;
  top: 9px;
  left: 10px;
  color: #555;
}

.headernav .searchbar input {
  padding: 6px 16px;
  padding-left: 35px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.1);
  border: none;
  width: 300px;
  transition: all .3s ease-in;
}

.headernav .searchbar input::placeholder {
  color: #555;
}

.headernav .searchbar input:focus, .headernav .searchbar input:active {
  outline: 0;
  background: #fff;
  width: 700px;
}

.headernav .barcontent {
  height: 70px;
  display: flex;
  align-items: center;
  /* Keyframes – läggs globalt */
  /* Tillgänglighet: respektera reducerad rörelse */
}

.headernav .barcontent img {
  max-height: 70px;
  display: block;
}

.headernav .barcontent .bellnav {
  height: 40px;
  width: 40px;
  display: flex;
  background: #1a4c70;
  color: #fff;
  margin-right: 10px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.headernav .barcontent .bellnav .notification-icon {
  display: none;
  justify-content: center;
  position: absolute;
  top: -7px;
  left: -7px;
  background: #f26e43;
  color: #fff;
  width: 20.5px;
  height: 20.5px;
  line-height: 20.5px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.headernav .barcontent .bellnav .notification-icon.active {
  display: flex;
}

.headernav .barcontent .bellnav .notification-icon.pulse {
  animation: bellGlow 1.9s cubic-bezier(0.22, 1, 0.36, 1) 2;
  will-change: transform, box-shadow;
}

.headernav .barcontent .bellnav .notification-icon.pulse::before, .headernav .barcontent .bellnav .notification-icon.pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(242, 110, 67, 0.55);
  opacity: 0;
  transform: scale(0.6);
  animation: ringPulse 1.9s ease-out 2;
  pointer-events: none;
}

.headernav .barcontent .bellnav .notification-icon.pulse::after {
  inset: -10px;
  border-width: 1px;
  animation-delay: .6s;
}

@keyframes bellGlow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(242, 110, 67, 0);
  }
  45% {
    transform: scale(1.08);
    box-shadow: 0 0 14px 0 rgba(242, 110, 67, 0.45);
  }
}

@keyframes ringPulse {
  0% {
    transform: scale(0.6);
    opacity: 0.85;
  }
  60% {
    opacity: 0.15;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .headernav .barcontent .bellnav .notification-icon.pulse,
  .headernav .barcontent .bellnav .notification-icon.pulse::before,
  .headernav .barcontent .bellnav .notification-icon.pulse::after {
    animation: none !important;
  }
}

.headernav .barcontent .seamless {
  height: 40px;
  width: 40px;
  display: flex;
  background: #fff url("/admin/env6/env-icon.png") no-repeat center center;
  background-size: 20px;
  color: #ff6a00;
  margin-right: 10px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  margin-right: 20px;
  box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.15);
}

.headernav .barcontent .seamless:hover {
  text-decoration: none;
}

.headernav .barcontent .user {
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

.headernav .barcontent .user .signature {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f4f4f4;
  border-radius: 50%;
  font-weight: 700;
  color: #000;
  margin-top: 0px;
  margin: 0 10px;
}

.headernav .barcontent .user:hover {
  text-decoration: none;
}

.headernav .barcontent .user img {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  margin-right: 10px;
  margin-left: 10px;
}

.headernav .barcontent .user p {
  margin: 0;
}

.headernav .barcontent .user .user-name {
  font-size: 12px;
  font-weight: 600;
  color: #000;
}

.headernav .barcontent .user .user-settings {
  margin-top: 4px;
  font-size: 10px;
  color: #bbb;
}

.headernav .barcontent .user .user-settings i {
  margin-right: 5px;
}

.headernav .menu-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  /* Signaturen utanför länken */
  /* Själva användarlänken vertikal text */
}

.headernav .menu-right .maingroup-selector {
  margin-right: 12px;
}

.headernav .menu-right > .signature {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f4f4f4;
  border-radius: 50%;
  font-weight: 700;
  color: #000;
  margin: 0 4px;
}

.headernav .menu-right a.user {
  position: relative;
  display: block;
  /* låter oss absolut-positionera signaturen */
  padding: 6px 52px 6px 0;
  /* plats för signaturen till höger */
  text-decoration: none;
  line-height: 1.1;
  /* Inner wrapper (det anonyma div:et) får kolumnlayout */
}

.headernav .menu-right a.user .user-name {
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 2px;
}

.headernav .menu-right a.user .user-settings {
  font-size: 10px;
  margin: 0;
}

.headernav .menu-right a.user:hover .user-name {
  text-decoration: underline;
}

.headernav .menu-right a.user > div {
  display: flex;
  flex-direction: column;
}

.headernav .menu-right a.user .signature {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  border-radius: 50%;
  font-weight: 700;
  color: #000;
}

.headernav .maingroup-selector {
  position: relative;
  margin-left: 24px;
  display: flex;
  align-items: center;
  height: 40px;
  /* Pil-ikon */
}

.headernav .maingroup-selector select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.1);
  color: #555;
  border: 0;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 38px 8px 14px;
  line-height: 1.2;
  cursor: pointer;
  max-width: 240px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}

.headernav .maingroup-selector select:focus, .headernav .maingroup-selector select:active {
  outline: 0;
  background: #fff;
  color: #222;
  box-shadow: 0 2px white, 0 2px 8px -2px rgba(0, 0, 0, 0.25);
}

.headernav .maingroup-selector select:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.headernav .maingroup-selector::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 8px;
  margin-top: -5px;
  pointer-events: none;
  border-left: 2px solid #555;
  border-bottom: 2px solid #555;
  transform: rotate(-45deg);
  transition: border-color .25s ease, transform .25s ease;
}

.headernav .maingroup-selector:focus-within::after {
  border-color: #363636;
  transform: rotate(-45deg) translateY(2px);
}

@media screen and (max-width: 990px) {
  .headernav {
    display: none;
  }
}

#searchresults {
  /* Holder overlay: subtle glass */
  position: fixed;
  inset: 70px 0 0 0;
  /* top offset for header */
  background: rgba(30, 30, 30, 0.4);
  /* less glass, darker and lighter alpha */
  backdrop-filter: blur(6px) saturate(120%);
  /* reduced blur */
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  z-index: 999;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
  display: block;
  /* remain in flow; hidden via opacity */
  /* Scrollbar styling */
}

#searchresults.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#searchresults::-webkit-scrollbar {
  width: 10px;
}

#searchresults::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
}

#searchresults::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 5px;
}

#searchresults::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

#searchresults #searchresult-content {
  /* Opaque content for readability */
  max-width: 760px;
  margin-left: 280px;
  /* keep left alignment */
  margin-top: 24px;
  margin-bottom: 60px;
  background: rgba(255, 255, 255, 0.8);
  padding: 24px 28px 30px;
  border-radius: 10px;
  border: 1px solid #ececec;
  box-shadow: 0 6px 24px -6px rgba(0, 0, 0, 0.25);
  position: relative;
  min-height: 120px;
  overflow: hidden;
}

#searchresults #searchresult-content .results-header {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 12px;
}

#searchresults #searchresult-content .empty-state {
  text-align: center;
  padding: 30px 10px;
  color: #666;
  font-size: .9rem;
}

#searchresults #searchresult-content a {
  display: block;
  padding: 12px 14px 18px;
  background: #fff;
  /* solid white item */
  border: 1px solid #e3e3e3;
  border-bottom: 0;
  text-decoration: none;
  transition: box-shadow .18s ease, border-color .18s ease, background .18s ease;
  /*&:hover {
                background: #fff;
                border-color: #d2d2d2;
                box-shadow: 0 4px 14px -4px rgba(0,0,0,.22);
            }*/
  /*  &:focus {
                outline: 2px solid lighten($headerBgColor, 25%);
                outline-offset: 2px;
                box-shadow: 0 0 0 4px rgba(0,0,0,.1);
            }*/
}

#searchresults #searchresult-content a .title {
  color: #111;
  font-size: 1.05em;
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#searchresults #searchresult-content a .preamble {
  color: #555;
  font-size: .83em;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1100px) {
  #searchresults #searchresult-content {
    max-width: 640px;
  }
}

@media (max-width: 880px) {
  #searchresults #searchresult-content {
    max-width: 96%;
    margin-left: 20px;
    margin-right: 20px;
    padding: 18px 18px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #searchresults {
    transition: none;
  }
  #searchresults #searchresult-content a {
    transition: none;
  }
}

#sidebar {
  background: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='328' height='150' viewBox='0 0 328 150' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M328 122.504C291.264 151.768 161 82.78 0 150L1.31134e-05 -0.000153264L328 -0.000124589L328 122.504Z' fill='black' fill-opacity='0.03'/%3E%3Cpath d='M328 137.134C291.264 169.894 132 77.9376 3.30341e-07 140.646L1.26261e-05 -0.000196521L328 -0.000167847L328 137.134Z' fill='black' fill-opacity='0.05'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: 0 -100px;
  width: 280px;
  position: fixed;
  top: 70px;
  left: 0;
  bottom: 0;
  z-index: 9;
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

#sidebar::-webkit-scrollbar {
  width: 10px;
}

#sidebar::-webkit-scrollbar-track {
  background: #f7f7f7;
}

#sidebar::-webkit-scrollbar-thumb {
  background: #d6d6d6;
}

#sidebar nav {
  padding-top: 40px;
}

#sidebar nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#sidebar nav ul .item {
  position: relative;
}

#sidebar nav ul .item span {
  position: absolute;
  cursor: pointer;
  right: 15px;
  top: 18px;
}

#sidebar nav ul .item span i {
  font-size: 1.1em;
}

#sidebar nav ul .item a {
  display: flex;
  font-weight: 400;
  color: #000;
  padding: 8px 25px;
  font-size: 17px;
  align-items: center;
  border-left: 3px solid #fff;
  transition: color .4s ease;
}

#sidebar nav ul .item a.active, #sidebar nav ul .item a:focus {
  color: #1a4c70 !important;
  font-weight: bold;
  text-decoration: none !important;
}

#sidebar nav ul .item a.active .ico, #sidebar nav ul .item a:focus .ico {
  background: #1a4c70;
  color: #fff;
  font-weight: 400 !important;
}

#sidebar nav ul .item a:hover {
  /* background: rgba(0, 0, 0, 0.02);
                    border-left: 3px solid $primaryColorLight;*/
  color: #1a4c70;
}

#sidebar nav ul .item a .ico {
  flex-grow: 0;
  flex-shrink: 0;
  margin-right: 20px;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  /* i {
                        font-weight: normal !important;
                    }*/
}

#sidebar nav ul .item a:hover, #sidebar nav ul .item a:active {
  text-decoration: none;
}

#sidebar nav ul ul {
  display: none;
  border-left: 1px solid #e3e3e3;
  padding-left: 10px;
  margin-left: 45px;
}

#sidebar nav ul ul.active {
  display: block;
}

#sidebar nav ul ul a {
  font-size: 15px !important;
}

/*@import "forms.scss";*/
.print-doc {
  position: absolute;
  right: 55px;
  top: 40px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #000 !important;
  font-size: 20px;
}

.print-doc:hover {
  text-decoration: none;
}

@media screen and (max-width: 990px) {
  .print-doc {
    display: none;
  }
}

.sharebox-modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9;
}

.sharebox-modal.active {
  display: block;
}

.sharebox {
  font-size: 13px !important;
  background: #fff;
  position: fixed;
  top: 110px;
  width: 500px;
  border-radius: 4px;
  right: 20px;
  z-index: 10;
  display: none;
  padding: 40px 40px;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
  display: flex;
  transition: all .3s ease-in-out;
}

.sharebox input, .sharebox input, .sharebox input, .sharebox input, .sharebox input, .sharebox input, .sharebox input {
  font-size: 13px !important;
}

.sharebox b {
  font-size: 19px !important;
  font-weight: bold;
}

.sharebox .env-form-searchbox {
  width: 100%;
}

.sharebox .share-done {
  margin-top: 20px;
  text-align: center;
}

@media screen and (min-width: 990px) {
  .sharebox {
    transform: translateX(150%);
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 990px) {
  .sharebox {
    width: calc(100% - 4px);
    background: #fff;
    top: auto;
    bottom: 1px;
    padding: 60px 20px;
    padding-bottom: 40px;
    right: 2px;
    border-radius: 30px 30px 30px 30px;
    z-index: 10;
    margin-top: 0px;
    transform: translateY(150%);
  }
  .sharebox .env-form-searchbox-users {
    bottom: 170px;
  }
}

.sharebox.active {
  transform: translateY(0%) translateX(0);
}

.sharebox .form-control {
  border-radius: 20px;
  padding-left: 20px;
  text-align: center;
}

.sharebox .env-form-searchbox {
  margin-top: 20px;
}

.sharebox .env-form-searchbox-selected {
  border-radius: 20px;
}

.sharebox .share-btn {
  border-radius: 20px;
  background: #308762;
  display: block;
  color: #fff;
  padding: 12px 26px;
  margin-top: 10px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.sharebox .sharebox-close {
  position: absolute;
  right: 20px;
  font-size: 18px !important;
  top: 30px;
  background: #D1D1D1;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
  transition: all .1s ease-in;
}

@media screen and (max-width: 990px) {
  .sharebox .sharebox-close {
    top: 40px;
  }
}

.sharebox .sharebox-close:hover {
  background: #bbb;
}

.share-item-command {
  position: absolute;
  right: 25px;
  top: 40px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.share-item-command i {
  font-size: 20px;
  padding-left: 10px;
}

@media screen and (max-width: 990px) {
  .share-item-command {
    top: 40px;
  }
  .share-item-command span {
    display: none;
  }
}

.hr-elear-testlist-info {
  background: #fff;
  margin-top: 10px;
  padding: 21px;
}

.hr-elear-testlist-info p {
  margin-bottom: 0 !important;
  padding-bottom: 10px;
}

.hr-elear-testlist-info b {
  font-size: 19px;
}

.hr-elear-testlist-info span {
  color: #6A6A6A;
  font-size: 12px !important;
}

.hr-elear-testlist-info .hr-elear-testlist-extra-info {
  color: #000;
}

.hr-elear-testlist-start, .hr-elear-testlist-renew, .hr-elear-testlist-tryagain, .hr-elear-correct {
  background: #308762;
  font-size: 14px;
  text-align: center;
  color: #fff !important;
  display: block;
  font-weight: bold;
  padding: 18px 0;
}

.hr-elear-testlist-start.hr-elear-correct, .hr-elear-testlist-renew.hr-elear-correct, .hr-elear-testlist-tryagain.hr-elear-correct, .hr-elear-correct.hr-elear-correct {
  margin-left: -20px;
  margin-right: -20px;
}

.hr-elear-testlist-start:hover, .hr-elear-testlist-renew:hover, .hr-elear-testlist-tryagain:hover, .hr-elear-correct:hover {
  text-decoration: none;
}

.hr-elear-testlist-start.hr-elear-testlist-renew, .hr-elear-testlist-renew.hr-elear-testlist-renew, .hr-elear-testlist-tryagain.hr-elear-testlist-renew, .hr-elear-correct.hr-elear-testlist-renew {
  background: #a0cbb9;
  color: #000 !important;
}

.hr-elear-testlist-start.hr-elear-testlist-tryagain, .hr-elear-testlist-renew.hr-elear-testlist-tryagain, .hr-elear-testlist-tryagain.hr-elear-testlist-tryagain, .hr-elear-correct.hr-elear-testlist-tryagain {
  background: #873030;
  color: #fff !important;
}

.hr-elearning-test-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #F3B95B;
  color: #fff;
  height: 100px;
  z-index: 2;
  padding: 20px;
  display: flex;
  flex-flow: column;
  align-content: center;
  justify-content: center;
  font-size: 14px;
}

@media screen and (min-width: 990px) {
  .hr-elearning-test-footer {
    z-index: 11;
  }
}

.hr-elearning-test-footer .hr-elearning-test-footer-time {
  font-size: 20px;
  font-weight: bold;
}

.hr-elearning-test-footer .hr-elearning-test-footer-showmenu, .hr-elearning-test-footer .hr-elearning-test-footer-hidemenu {
  position: absolute;
  right: 25px;
  top: 25px;
}

.hr-elearning-test-footer .hr-elearning-test-footer-showmenu i, .hr-elearning-test-footer .hr-elearning-test-footer-hidemenu i {
  font-size: 25px;
}

.hr-elearn-header {
  font-size: 19px;
  font-weight: bold;
  background: #fff;
  left: 0;
  right: 0;
  padding: 15px 20px;
  top: 100px;
  position: fixed;
  z-index: 1;
}

@media screen and (min-width: 990px) {
  .hr-elearn-header {
    position: unset;
    margin-top: 20px;
  }
}

.hr-elearn-subheader {
  border-top: 1px solid #ECECEC;
  top: 156px;
  font-size: 15px;
  font-weight: bold;
  background: #fff;
  left: 0;
  z-index: 1;
  right: 0;
  text-align: center;
  padding: 11px 20px;
  position: fixed;
  box-shadow: 0px 9px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
}

@media screen and (min-width: 990px) {
  .hr-elearn-subheader {
    position: unset;
  }
}

.hr-elearn-subheader span {
  color: #959595;
  font-size: 12px;
  display: block;
  font-weight: normal;
}

.hr-elearn-subheader .hr-elearning-header-btn-left, .hr-elearn-subheader .hr-elearning-header-btn-right, .hr-elearn-subheader .hr-elearning-header-btn-sum {
  color: #000 !important;
}

.hr-elearn-contentpage {
  margin-top: 110px;
  padding: 20px;
  margin-bottom: 150px;
  background: #fff;
  padding-bottom: 150px;
  font-size: 14px !important;
  color: #000;
}

@media screen and (min-width: 990px) {
  .hr-elearn-contentpage {
    margin-top: 5px !important;
  }
}

.hr-elearn-contentpage .hr-elearn-status {
  font-size: 16px;
}

.hr-elearn-contentpage .hr-elearn-status b {
  font-size: 22px;
  display: block;
  margin-bottom: 5px;
  color: #308762;
}

.hr-elearn-contentpage .hr-elearn-status.hr-elearn-contentpage-fail b {
  color: #CF4949;
}

.hr-elearn-contentpage .hr-elearn-question-information {
  font-size: 16px;
  padding: 10px 0;
}

@media screen and (max-width: 990px) {
  .hr-elearn-contentpage .hr-elearn-question-information iframe {
    max-width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    margin-top: -40px;
    height: 250px;
  }
}

@media screen and (min-width: 990px) {
  .hr-elearn-contentpage .hr-elearn-question-information iframe {
    width: 100%;
  }
}

.hr-elearn-contentpage .hr-elearn-question {
  font-size: 16px;
  font-weight: bold;
  padding: 10px 0;
  padding-top: 0;
}

.hr-elearn-contentpage .hr-elear-question-selector {
  position: relative;
  padding: 10px;
}

.hr-elearn-contentpage .hr-elear-question-selector .alphabet {
  position: absolute;
  font-size: 12px;
  height: 20px;
  width: 20px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  background: #51A9CE;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.11);
  color: #fff;
  top: calc(50% - 10px);
  left: -0px;
  border-radius: 50%;
}

.hr-elearn-contentpage .hr-elear-question-selector a {
  border: 2px solid #1791C5;
  border-radius: 7px;
  color: #000 !important;
  padding: 12px 16px;
  display: block;
}

.hr-elearn-contentpage .hr-elear-question-selector a:hover, .hr-elearn-contentpage .hr-elear-question-selector a:focus, .hr-elearn-contentpage .hr-elear-question-selector a:active {
  text-decoration: none;
  background: #1791C5;
  color: #fff !important;
}

.hr-elearn-contentpage .hr-elear-question-selector a.e-learn-selectedAnswer {
  background: #1791C5 !important;
  color: #fff !important;
}

.hr-elearning-backtoedu {
  background: #F0F0F0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 80px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  color: #000 !important;
}

@media screen and (min-width: 990px) {
  .hr-elearning-backtoedu {
    z-index: 11;
  }
}

.hr-elearning-result.question {
  color: #747474;
  padding-top: 15px;
}

.hr-elearning-result.question-q {
  color: #000;
}

.hr-elearning-result.answerbox {
  display: flex;
}

.hr-elearning-result.answerbox .elearn-result-answer {
  padding: 4px;
  padding-left: 0;
}

.hr-elearning-result.answerbox .elearn-icon {
  padding: 4px 8px;
  padding-left: 0;
}

.hr-elearning-result.answerbox .elearn-icon .ico_ok {
  color: #61CA5F;
  font-size: 15px;
}

.hr-elearning-result.answerbox .elearn-icon .ico_fail {
  color: #CF4949;
  font-size: 15px;
}

.elearn-result-correctanswer {
  padding-left: 22px;
}

.elearn-result-correctanswer span {
  display: block;
  color: #CF4949;
}

.hr-elearning-popup-menu {
  background: #fff;
  color: #000;
  position: fixed;
  padding: 40px;
  bottom: 100px;
  left: 0;
  right: 0;
  transition: all .3s ease-in-out;
  transform: translateY(200%);
  z-index: 1;
  flex-flow: column;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
  border-radius: 30px 30px 0px 0px;
  text-align: center;
}

@media screen and (min-width: 990px) {
  .hr-elearning-popup-menu {
    z-index: 10;
  }
}

.hr-elearning-popup-menu .hr-elearning-popup-btn {
  padding: 12px 25px;
  background: #fff;
  border-radius: 20px;
  color: #929292 !important;
  border: 1px solid #D2D2D2;
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
}

.hr-elearning-popup-menu .hr-elearning-popup-btn.hr-elearning-popup-abort {
  border-color: #CF4949;
  background: #CF4949;
  color: #fff !important;
}

.hr-elearning-popup-menu b {
  font-size: 23px;
  display: block;
  margin-bottom: 20px;
}

.hr-elearning-popup-menu.active {
  transform: translateY(0%);
}

.hr-elearning-sum-link {
  display: block;
  padding: 18px;
  border-bottom: 5px solid #cdcdcd;
  margin-left: -20px;
  margin-right: -20px;
}

.hr-elearning-sum-link:hover {
  text-decoration: none !important;
}

.hr-elearning-sum-link .hr-elearning-sum-qnumber {
  color: #747474;
  font-size: 14px !important;
  font-weight: bold;
  padding-bottom: 5px;
}

.hr-elearning-sum-link .hr-elearning-sum-question {
  color: #000;
  font-size: 14px !important;
}

.hr-elearning-sum-link .hr-elearning-sum-answer {
  display: flex;
}

.hr-elearning-sum-link .hr-elearning-sum-answer {
  margin-top: 5px;
}

.hr-elearning-sum-link .hr-elearning-sum-answer .sum-border {
  border-left: 2px solid #1791C5;
  margin-left: 4px;
  padding-right: 5px;
}

.hr-elearning-sum-link .hr-elearning-sum-answer .sum-border.sum-border-missing {
  border-color: #CF4949;
  padding-right: 0;
}

.hr-elearning-sum-link .hr-elearning-sum-answer .sum-alphabet {
  color: #000;
  padding-right: 5px;
}

.hr-elearning-sum-link .hr-elearning-sum-answer .sum-answer {
  color: #000;
}

.dateheader {
  border-top: 1px solid #ECECEC;
  top: 156px;
  font-size: 15px;
  font-weight: bold;
  background: #fff;
  left: 0;
  z-index: 1;
  right: 0;
  text-align: center;
  padding: 11px 20px;
  position: fixed;
  top: 100px;
  box-shadow: 0px 9px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

@media screen and (min-width: 990px) {
  .dateheader {
    position: unset;
    border-bottom: 1px solid #e3e3e3;
  }
}

.dateheader span {
  color: #959595;
  font-size: 12px;
  display: block;
  font-weight: normal;
}

.dateheader a {
  color: #000 !important;
  font-size: 14px;
}

.dateheader a i {
  font-size: 18px;
}

.dateholder {
  background: #fff;
  padding-top: 60px;
}

@media screen and (min-width: 990px) {
  .dateholder {
    padding-top: 0px;
  }
}

.dateholder-header {
  padding: 8px;
  border-bottom: 1px solid #e3e3e3;
  text-transform: uppercase;
}

.dateholder-header.saturday, .dateholder-header.sunday {
  background: #fdd1d1;
}

.date-holder-content {
  background: #f1f1f1;
  padding: 12px 25px;
}

.case-menu-holder .case-menu {
  background: #f1f1f1;
  margin-top: 10px;
  display: flex;
  height: 50px;
  margin-bottom: 0 !important;
  align-content: center;
  align-items: center;
  list-style: none;
  flex-grow: 1;
  flex-shrink: 0;
}

.case-menu-holder .case-menu a {
  font-size: 14px;
  color: #000;
  display: inline-flex;
  flex: 1;
  flex-grow: 1;
  flex-shrink: 0;
  height: 100%;
  width: 100%;
  align-content: center;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  white-space: nowrap;
  text-align: center;
}

.case-menu-holder .case-menu a i {
  padding-right: 10px;
}

.case-menu-holder .case-menu a:hover, .case-menu-holder .case-menu a.active {
  background: #aaa;
  text-decoration: none;
}

.caselist {
  width: 100%;
}

.caselist th {
  background: #f1f1f1;
  border-right: 1px solid #fff;
  padding-bottom: 10px !important;
  vertical-align: bottom;
  font-size: 11px;
  font-weight: bold;
  color: #7b8185;
  border-bottom: #f3f3f3 1px solid;
  text-align: left;
  padding: 20px 10px 2px 10px;
}

.caselist tbody tr td {
  font-size: 13px;
  color: #777;
  padding: 8px 10px;
  border-bottom: #f3f3f3 1px solid;
}

.caselist tbody tr td .m {
  display: none;
}

.caselist tbody tr:hover {
  background-color: #fffddc;
}

.caselist th.header {
  background: #f1f1f1;
  position: relative;
  padding-left: 20px !important;
  padding-right: 30px;
  border-right: 1px solid #fff;
  padding-top: 10px;
}

.caselist th.header::before {
  content: "\f0d8";
  /* this is your text. You can also use UTF-8 character codes as I do here */
  font-family: FontAwesome;
  right: 10px;
  position: absolute;
  font-size: 16px;
  bottom: 9px;
}

.caselist th.header.headerSortDown {
  background: #ddd;
}

.caselist th.header.headerSortDown::before {
  content: "\f0d7";
  /* this is your text. You can also use UTF-8 character codes as I do here */
  font-family: FontAwesome;
  right: 10px;
  position: absolute;
  font-size: 16px;
  bottom: 10px;
}

.caselist th.header.headerSortUp {
  background: #ddd;
}

.caselist li a:hover {
  text-decoration: none;
}

.caselist li .doctitle {
  font-size: 1.1em !important;
}

.caselist li .docdesc {
  font-size: .9em !important;
}

@media screen and (max-width: 990px) {
  .caselist tr {
    width: 100%;
    position: relative;
    padding: 16px 0 !important;
    display: block;
    border-bottom: 1px solid #eee;
  }
  .caselist tr th {
    display: none;
  }
  .caselist tr td {
    cursor: pointer;
    padding: 1px !important;
    padding-left: 40px !important;
    font-size: 12px !important;
    color: #000 !important;
    display: block;
    border: 0 !important;
  }
  .caselist tr td .case {
    font-size: 15px !important;
    font-weight: bold !important;
    color: #000 !important;
  }
  .caselist tr td .m {
    display: inline-block !important;
    padding-right: 5px;
  }
  .caselist tr .icon {
    position: absolute;
    left: -25px;
    top: 45%;
    font-size: 18px !important;
  }
}

.form-log {
  background: #e3e3e3;
  overflow-y: auto;
}

.form-log .writelog {
  color: #fff !important;
  display: block;
  margin-top: 4px !important;
}

.form-log::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.form-log::-webkit-scrollbar-track {
  background: #111;
}

.form-log::-webkit-scrollbar-thumb {
  background: #555;
}

.form-log .form-write {
  background: #ededed;
  padding: 20px;
}

.form-log .form-write a {
  margin-top: -10px !important;
}

.form-log .form-msgs {
  max-width: 700px;
  margin: auto;
  padding: 20px;
}

.form-log .form-msgs .form-msg-head {
  width: 80%;
  margin-top: 10px;
}

.form-log .form-msgs .form-msg-head .form-msg {
  clear: both;
  background: #fff;
  padding: 6px;
  border-radius: 4px;
  font-size: 1em !important;
  max-width: 400px;
}

.form-log .form-msgs .form-msg-head.me {
  max-width: 400px;
  clear: both;
  float: right;
}

.form-log .form-msgs .form-msg-head.me .form-msg {
  background: #bed8eb;
}

.form-log .form-msgs .form-msg-head.me .form-msg b {
  font-size: 11px;
}

.form-log .form-msgs .form-msg-head.me .author {
  text-align: right;
}

.form-log .form-msgs .form-msg-head.me .date {
  text-align: right;
}

.form-log .form-msgs .form-msg-head .author {
  clear: both;
}

.form-log .form-msgs .form-msg-head .author a {
  font-size: .8em;
  color: #333 !important;
}

.form-log .form-msgs .form-msg-head .date {
  font-size: .8em;
  color: #555 !important;
}

.cm-menu-holder li {
  display: inline-block;
  padding: 5px;
}

.cm-menu-holder li input, .cm-menu-holder li select {
  border-radius: 24px !important;
  font-size: 14px !important;
}

.cm-menu-holder li input.cm-search, .cm-menu-holder li select.cm-search {
  padding-left: 25px;
}

.field_status, .field_Status {
  background: #fde3c8;
  padding: 10px 16px;
  border-radius: 4px !important;
  margin-bottom: 15px;
}

.field_status select, .field_Status select {
  /*   border-radius: 22px !important;*/
}

.profile-card {
  border-top: 1px solid #e3e3e3;
  margin-top: 10px;
  display: flex;
  background: #fff;
  padding: 20px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.profile-card .profile-img-holder {
  margin-right: 15px;
}

.profile-card .profile-img-holder .profile-img {
  border-radius: 8px;
  width: 94px;
  height: 94px;
  background: #e3e3e3;
  font-size: 14px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.profile-card .profile-img-holder .profile-img img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.profile-card .profile-info {
  display: flex;
  flex-flow: column;
  line-height: 20px;
  align-content: center;
  justify-content: center;
}

.profile-card .profile-info .profile-name {
  color: #000;
  font-weight: bold;
  font-size: 16px;
}

.profile-card .profile-info .profile-company {
  font-size: 13px;
}

.profile-card .profile-info .profile-title {
  color: #777;
  font-size: 13px;
}

.profile-card .profile-info .profile-activity {
  font-size: 13px;
}

.profile-card .profile-info .profile-activity i.green {
  color: #5FB441;
}

.profile-card .profile-info .profile-activity i.red {
  color: #fcb0b0;
}

.profile-card .profile-info .profile-activity i.orange {
  color: #ffce74;
}

.profile-lg-btn {
  background: #F3A742;
  color: #fff !important;
  display: block;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding: 16px 0;
}

.profile-lg-btn.profile-lg-btn-settings {
  background: #ECECEC;
  color: #202020 !important;
}

.profile-lg-btn:hover {
  text-decoration: none;
}

.profile-more {
  border-top: 1px solid #eee;
  padding: 20px;
  background: #fff;
  font-size: 13px;
  line-height: 28px;
}

.profile-more i {
  color: #1a4c70;
  font-size: 18px;
  margin-right: 5px;
}

.profile-more a {
  color: #000 !important;
}

.profile-sub-menu {
  display: flex;
}

.profile-sub-menu a {
  background: #fff;
  padding: 10px;
  display: inline-flex;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  text-align: center;
  justify-content: center;
}

.profile-sub-menu a:hover {
  text-decoration: none;
}

.profile-sub-menu a.active {
  background: #1a4c70;
  color: #fff !important;
}

@font-face {
  font-family: "Sodertalje Icons";
  src: url("/HR/modules/forum/font/sodertalje.ttf") format("truetype"), url("/HR/modules/forum/font/sodertalje.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  font-family: "Sodertalje Icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-heart:before {
  content: "\e900";
}

.content .forum-container {
  max-width: 700px;
  margin: 0;
  overflow: auto;
}

.content .forum-container .forum-box {
  border-color: #e7e7e7 !important;
  box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

@media screen and (min-width: 991px) {
  .content .forum-container {
    height: 80vh;
    margin: 20px 0 0;
    position: relative;
  }
}

.content .forum-container::-webkit-scrollbar {
  width: 4px;
}

.content .forum-container::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.content .forum-container::-webkit-scrollbar-thumb {
  background: #ccc;
}

.content .forum-container a {
  text-decoration: none;
}

.content .forum-container .btn-create-forum-post {
  display: block;
  padding: 20px 25px;
  background: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 7px;
  position: relative;
  cursor: pointer;
  color: #000;
}

.content .forum-container .btn-create-forum-post i {
  margin-right: 12px;
}

.content .forum-container .btn-create-forum-post:hover, .content .forum-container .btn-create-forum-post:active {
  text-decoration: none;
}

.content .forum-container .forum-top-row {
  background: #fff;
  padding: 16px 13px;
}

.content .forum-container .forum-top-row h2 {
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 15px;
}

.content .forum-container .forum-top-row h3 {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 12px;
}

.content .forum-container .forum-top-row .forum-category-row {
  display: flex;
  gap: 7px;
  margin-top: 1.5rem;
  overflow-x: auto;
  margin-bottom: calc(26px - 9px);
  padding-bottom: 9px;
}

.content .forum-container .forum-top-row .forum-category-row a {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  border-radius: 24px;
  padding: 7px 11px;
  white-space: nowrap;
  border: 2px solid #54A4A4;
  color: #000;
  text-decoration: none;
  transition: color .3s ease, background .3s ease;
}

.content .forum-container .forum-top-row .forum-category-row a.active, .content .forum-container .forum-top-row .forum-category-row a:hover {
  color: #fff;
  background: #54A4A4;
}

.content .forum-container .forum-top-row .btn-forum-my-saved-threads {
  font-size: 15px;
  line-height: 1.2;
  color: #000;
  text-decoration: none;
}

.content .forum-container .forum-top-row .btn-forum-my-saved-threads.active .fa-solid.fa-bookmark {
  display: inline-block;
  color: #1a4c70;
}

.content .forum-container .forum-top-row .btn-forum-my-saved-threads.active .fa-regular.fa-bookmark {
  display: none;
}

.content .forum-container .forum-top-row .btn-forum-my-saved-threads i {
  color: #54A4A4;
  margin-right: 8px;
  font-size: 17px;
}

.content .forum-container .forum-top-row .btn-forum-my-saved-threads .fa-solid.fa-bookmark {
  display: none;
}

.content .forum-container .forum-thread-holder {
  padding: 18px 13px;
  background: #fff;
  position: relative;
}

.content .forum-container .forum-thread-holder .thread-is-archived-text {
  display: none;
}

.content .forum-container .forum-thread-holder.archived {
  background: #f2f2f2;
}

.content .forum-container .forum-thread-holder.archived .thread-is-archived-text {
  font-size: 16px;
  margin-bottom: .4em;
  font-weight: bold;
  display: block;
}

.content .forum-container .forum-thread-holder.archived + .forum-thread-actions {
  display: none;
}

.content .forum-container .forum-thread-holder.archived + .forum-thread-actions + .forum-thread-comments + #thread-comment {
  display: none;
}

.content .forum-container .forum-thread-holder .forum-thread-btn-options {
  padding: 5px;
  position: absolute;
  right: 8px;
  top: 0;
  color: #bcbcbc;
  padding: 5px;
  font-size: 20px;
  cursor: pointer;
}

.content .forum-container .forum-thread-holder .forum-thread-options-inner {
  background: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  height: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: height .3s ease-in-out;
  font-size: 15px;
  z-index: 2;
  padding: 0 13px;
}

.content .forum-container .forum-thread-holder .forum-thread-options-inner .option {
  display: block;
  color: #000;
  margin-top: 20px;
  cursor: pointer;
  font-size: 15px;
  text-decoration: none;
}

.content .forum-container .forum-thread-holder .forum-thread-options-inner .option .share-item-command {
  position: static;
  display: block;
}

.content .forum-container .forum-thread-holder .forum-thread-options-inner .option .share-item-command i {
  padding: 0;
}

.content .forum-container .forum-thread-holder .forum-thread-options-inner .option i:not(.fa-xmark) {
  margin-right: 10px;
  font-size: 15px;
  width: 16px;
  color: #A49A9A;
}

.content .forum-container .forum-thread-holder .forum-thread-options-inner .option + .option {
  margin-top: 10px;
}

.content .forum-container .forum-thread-holder .forum-thread-options-inner .option:last-child {
  margin-bottom: 20px;
}

.content .forum-container .forum-thread-holder .forum-thread-options-inner .forum-thread-options-close {
  display: inline-block;
  position: absolute;
  right: 14px;
  top: 10px;
  font-size: 17px;
  color: #BCBCBC;
}

.content .forum-container .forum-thread-holder .forum-thread-authorholder {
  display: flex;
  gap: 12px;
}

.content .forum-container .forum-thread-holder .forum-thread-authorholder .forum-thread-author-sign {
  height: 37px;
  width: 37px;
  background: #C4C4C4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: #C4C4C4;
  color: #fff;
  font-size: 12px;
  overflow: hidden;
}

.content .forum-container .forum-thread-holder .forum-thread-authorholder .forum-thread-author-info-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content .forum-container .forum-thread-holder .forum-thread-authorholder .forum-thread-author-info-wrap .forum-thread-author-name {
  font-size: 13px;
  font-weight: 700;
  color: #54A4A4;
  margin: 0;
  line-height: 1.2;
}

.content .forum-container .forum-thread-holder .forum-thread-authorholder .forum-thread-author-info-wrap .forum-thread-author-company {
  font-size: 12px;
  line-height: 1.2;
  color: #6a6a6a;
  margin: 0;
}

.content .forum-container .forum-thread-actions {
  display: flex;
  background: #f2f2f2;
}

.content .forum-container .forum-thread-actions .forum-thread-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px;
  color: #000;
  font-size: 14px;
  cursor: pointer;
}

.content .forum-container .forum-thread-actions .forum-thread-button i {
  font-size: 15px;
  margin-right: 9px;
}

.content .forum-container .forum-thread-actions .forum-thread-button.postlike {
  transition: background .3s ease,color .3s ease;
  border-right: 1px solid #ddd;
}

.content .forum-container .forum-thread-actions .forum-thread-button.active {
  background: #1a4c70;
  color: #fff;
}

.forum-threadlist {
  display: flex;
  flex-direction: column;
  margin-top: 4px;
  background: #fff;
}

.forum-threadlist div.forum-thread-item:last-of-type {
  margin-bottom: 50px;
}

.forum-threadlist .forum-thread-item {
  padding: 19px 13px 24px;
  border-bottom: 1px solid #eee;
}

.forum-threadlist .forum-thread-item .thread-is-archived-text {
  display: none;
}

.forum-threadlist .forum-thread-item.archived {
  background: #f9f9f9;
}

.forum-threadlist .forum-thread-item.archived .thread-is-archived-text {
  font-size: 16px;
  margin-bottom: .4em;
  font-weight: bold;
  display: block;
}

.forum-threadlist .forum-thread-item p {
  margin: 0;
}

.forum-threadlist .forum-thread-item .item-top {
  display: flex;
  justify-content: space-between;
}

.forum-threadlist .forum-thread-item .forum-thread:focus, .forum-threadlist .forum-thread-item .forum-thread:active {
  outline: none !important;
  text-decoration: none;
}

.forum-threadlist .forum-thread-item .forum-thread:hover {
  text-decoration: none;
}

.forum-threadlist .forum-thread-item .forum-thread .forum-thread-signatures {
  display: flex;
  gap: 6px;
  align-items: center;
}

.forum-threadlist .forum-thread-item .forum-thread .forum-thread-signatures .forum-thread-signatureitem {
  height: 27px;
  width: 27px;
  background: #C4C4C4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  overflow: hidden;
  color: #fff;
  font-size: 10px;
}

.forum-threadlist .forum-thread-item .forum-thread .forum-thread-signatures .forum-thread-more {
  font-size: 13px;
  color: #000;
}

.forum-threadlist .forum-thread-item .forum-thread .forum-thread-signatures .forum-show-forum {
  display: flex;
  align-items: center;
  font-size: 13px;
  margin-left: auto;
  color: #1a4c70;
}

.forum-threadlist .forum-thread-item .forum-thread .forum-thread-signatures .forum-show-forum i {
  margin-left: 5px;
}

.forum-btn-bookmark .forum-book-mark-true {
  display: none;
}

.forum-btn-bookmark.active .forum-book-mark-true {
  display: inline-block;
}

.forum-btn-bookmark.active .forum-book-mark-false {
  display: none;
}

.forum-btn-bookmark i {
  font-size: 19px;
}

.forum-btn-bookmark .forum-book-mark-false i {
  color: #A49A9A;
}

.forum-btn-bookmark .forum-book-mark-true i {
  color: #1a4c70 !important;
}

.forum-thread-category {
  font-size: 13px;
  line-height: 1.2;
  color: #E53D73;
  margin-bottom: .5em;
}

.forum-thread-subject {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.48;
  color: #000;
  margin-bottom: 5px;
}

.forum-thread-short-textcontent, .forum-thread-content {
  font-size: 13px;
  color: #000;
  line-height: 1.55;
  margin-bottom: 8px;
}

.forum-thread-info {
  display: flex;
  gap: 15px;
  color: #444444;
}

.forum-thread-info .forum-thread-info-num {
  display: flex;
  align-items: center;
  gap: 6px;
}

.forum-thread-info i {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #D5D5D5;
  font-size: 9px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

.divider-forum {
  width: calc(100% + 26px);
  border-top: 1px solid #E7E7E7;
  margin: 15px 0;
  margin-left: -13px;
}

.forum-thread-comments {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #E5E5E5;
  padding: 17px 13px 30px;
}

.forum-thread-comments .forum-thread-comment-wrap {
  display: grid;
  grid-template-columns: 33px 1fr;
  grid-template-areas: "img content";
  gap: 23px;
  position: relative;
}

.forum-thread-comments .forum-thread-comment-wrap .forum-thread-comment-menu {
  position: fixed;
  inset: 0 0 0 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  display: flex;
  visibility: hidden;
  pointer-events: none;
}

.forum-thread-comments .forum-thread-comment-wrap .forum-thread-comment-menu.active {
  visibility: visible;
  pointer-events: auto;
}

.forum-thread-comments .forum-thread-comment-wrap .forum-thread-comment-menu.active .inner {
  transform: translateY(0);
}

.forum-thread-comments .forum-thread-comment-wrap .forum-thread-comment-menu .inner {
  margin-top: auto;
  background: #fff;
  padding: 20px 13px 40px;
  transform: translateY(100%);
  transition: .3s ease;
}

.forum-thread-comments .forum-thread-comment-wrap .forum-thread-comment-menu .inner .option {
  display: block;
  color: #000;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
}

.forum-thread-comments .forum-thread-comment-wrap .forum-thread-comment-menu .inner .option i {
  margin-right: 10px;
  font-size: 16px;
  width: 16px;
  color: #a49a9a;
}

.forum-thread-comments .forum-thread-comment-wrap .forum-thread-comment-menu .inner .option + .option {
  margin-top: 15px;
}

.forum-thread-comments .forum-thread-comment-wrap .forum-thread-comment-menu .inner .forum-edit-comment-wrapper {
  margin-top: 15px;
}

.forum-thread-comments .forum-thread-comment-wrap .forum-thread-comment-menu .inner .forum-edit-comment-text-wrap {
  display: none;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px;
}

.forum-thread-comments .forum-thread-comment-wrap .forum-thread-comment-menu .inner .forum-edit-comment-text-wrap.active {
  display: flex;
}

.forum-thread-comments .forum-thread-comment-wrap .forum-thread-comment-menu .inner .forum-edit-comment-text-wrap textarea {
  background: #f2f2f2;
  border-radius: 0px !important;
  border: none;
  width: 100%;
  outline: none !important;
  padding: 10px;
  font-size: 16px !important;
  resize: none;
  box-shadow: none;
}

.forum-thread-comments .forum-thread-comment-wrap .forum-thread-comment-menu .inner .forum-edit-comment-text-wrap .button-round {
  background: #1a4c70;
  color: #fff;
}

.forum-thread-comments .forum-thread-comment-wrap .forum-thread-comment-user {
  grid-area: img;
}

.forum-thread-comments .forum-thread-comment-wrap .forum-thread-comment-content {
  grid-area: content;
}

.forum-thread-comments .forum-thread-comment-wrap p {
  margin: 0;
}

.forum-thread-comments .forum-thread-comment-wrap.me .forum-thread-comment {
  background: #1a4c70;
  color: #fff;
}

.forum-thread-comments .forum-thread-comment-wrap.me .forum-thread-comment:after {
  border-right: 18px solid #1a4c70;
}

.forum-thread-comments .forum-thread-comment-wrap .forum-thread-comment {
  background: #fff;
  margin-top: 4px;
  padding: 11px 16px;
  border-radius: 10px;
  position: relative;
  font-size: 13px;
  line-height: 1.38;
  color: #000;
  max-width: fit-content;
}

.forum-thread-comments .forum-thread-comment-wrap .forum-thread-comment .pre-wrap-container {
  white-space: pre-wrap;
  word-break: break-word;
}

.forum-thread-comments .forum-thread-comment-wrap .forum-thread-comment:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  right: calc(100% + -8px);
  top: 9px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 18px solid #fff;
}

.forum-thread-comments .forum-thread-comment-wrap .forum-thread-author-sign {
  height: 33px;
  width: 33px;
  background: #C4C4C4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: #C4C4C4;
  color: #fff;
  font-size: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  top: 22px;
  position: relative;
}

.forum-thread-comments .forum-thread-comment-wrap .forum-thread-comment-top {
  display: flex;
  justify-content: space-between;
}

.forum-thread-comments .forum-thread-comment-wrap .forum-thread-comment-top p {
  font-size: 12px;
  line-height: 1.5;
  color: #747474;
  margin: 0;
}

.forum-thread-comments .forum-thread-comment-wrap .forum-thread-comment-top .forum-thread-comment-created-wrap {
  position: relative;
}

.forum-thread-comments .forum-thread-comment-wrap .forum-thread-comment-top .forum-thread-comment-created-wrap:hover .forum-thread-comment-created-full {
  visibility: visible;
}

.forum-thread-comments .forum-thread-comment-wrap .forum-thread-comment-top .forum-thread-comment-created-full {
  background: #8f8f8f;
  color: #fff;
  padding: 1px 5px;
  border-radius: 10px;
  position: absolute;
  width: max-content;
  right: calc(100% + 5px);
  top: -2px;
  visibility: hidden;
  pointer-events: none;
  transition: visibility .3s;
}

#thread-comment {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: #f2f2f2;
  padding: 10px 13px;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

#thread-comment textarea {
  background: #fff;
  border-radius: 10px !important;
  border: none;
  width: 100%;
  outline: none !important;
  padding: 10px;
  font-size: 16px !important;
  resize: none;
  box-shadow: none;
}

#thread-comment .button-round {
  background: #1a4c70;
  color: #fff;
}

.forum-create-holder {
  background: #fff;
}

.forum-create-holder .input-wrapper {
  border-bottom: 1px solid #eaeaea;
  padding: 20px 25px;
}

.forum-create-holder .input-wrapper p {
  font-size: 13px;
  margin-bottom: 1em;
}

.forum-create-holder .input-wrapper .select {
  position: relative;
}

.forum-create-holder .input-wrapper .select:after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  position: absolute;
  right: 18px;
  top: calc(50% + 2px);
  color: #929292;
  transform: translateY(-50%);
  pointer-events: none;
}

.forum-create-holder .input-wrapper .select select {
  width: 100%;
  color: #929292;
  outline: none;
  padding: 13px 25px;
  border-radius: 22px;
  border-color: #d2d2d2;
  font-size: 13px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  cursor: pointer;
}

.forum-create-holder .input-wrapper .select select option {
  color: #000;
}

.forum-create-holder .input-wrapper textarea, .forum-create-holder .input-wrapper input[type=text] {
  outline: none;
  width: 100%;
  font-size: 16px !important;
  line-height: 1.38;
  border: none;
  font-weight: 400;
  resize: none;
}

.forum-create-holder .input-wrapper textarea::placeholder, .forum-create-holder .input-wrapper input[type=text]::placeholder {
  color: #000;
}

.button-bottom-forum {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 10px;
  color: #000;
  background: #fff;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.button-bottom-forum.button-success {
  background: #308762;
  color: #fff;
}

.button-bottom-forum.button-create {
  background: #b7b7b7;
  color: #fff;
}

.button-bottom-forum.button-create.active {
  background: #1a4c70;
}

.button-bottom-forum.button-delete {
  background: #cf4949;
  color: #fff;
}

#error-box-forum {
  padding: 25px 10px;
  font-weight: 700;
  font-size: 15px;
  background: #faecec;
  color: #cf4949;
  display: none;
}

#error-box-forum.active {
  display: block;
}

.forum-thread-date-created {
  font-size: 11px;
  color: #727272;
  margin-bottom: 10px;
}

.modal-forum {
  position: fixed;
  inset: 0 0 0 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  display: flex;
  visibility: hidden;
  pointer-events: none;
}

.modal-forum.active {
  visibility: visible;
  pointer-events: auto;
}

.modal-forum.active .inner {
  transform: translateY(0);
}

.modal-forum .inner {
  margin-top: auto;
  background: #fff;
  padding: 30px 0 0;
  transform: translateY(100%);
  transition: .3s ease;
}

.modal-forum .inner .modal-title {
  font-size: 18px;
  font-weight: bold;
  padding: 0 13px 30px;
}

/******************
 *** Tidrapport ***
 *******************/
.time-report-container {
  display: flex;
  flex-direction: column;
  font-family: "Sen",sans-serif !important;
  color: #2c2c2c;
  background: #f7f7f7;
  max-width: 700px;
}

@media screen and (min-width: 991px) {
  .time-report-container {
    height: 80vh;
    margin: 20px 0;
    overflow: auto;
  }
}

.time-report-container .current-week-container {
  display: none;
}

.time-report-container .current-week-container[data-active="True"] {
  display: block;
}

.time-report-container .week-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid #ECECEC;
}

.time-report-container .week-container i {
  cursor: pointer;
  padding: 12px 20px;
}

.time-report-container .week-container .fa-chevron-left {
  visibility: hidden;
  pointer-events: none;
}

.time-report-container .week-container .fa-chevron-left.previous-week {
  visibility: visible;
  pointer-events: auto;
}

.time-report-container .week-container .fa-chevron-right {
  visibility: hidden;
  pointer-events: none;
}

.time-report-container .week-container .fa-chevron-right.next-week {
  visibility: visible;
  pointer-events: auto;
}

.time-report-container .week-container .mid {
  text-align: center;
}

.time-report-container .week-container .mid > * {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.time-report-container .week-container .mid strong {
  font-size: 15px;
}

.time-report-container .week-container .mid p {
  font-size: 12px;
  font-weight: 400;
  color: #959595;
  margin-bottom: 0;
}

.time-report-container .days-container {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.time-report-container .days-container a:hover {
  text-decoration: none;
}

.time-report-container .day-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.time-report-container .day-container p {
  margin-bottom: 0;
  color: #fff;
  line-height: 1.32;
}

.time-report-container .day-container .current-day {
  text-transform: capitalize;
}

.time-report-container .day-container .reported-time {
  font-size: 12px;
}

.time-report-container .day-container i {
  color: #fff;
}

.time-report-container .day-container.green {
  background: #52AD70;
}

.time-report-container .day-container.yellow {
  background: #b36c01;
}

.time-report-container .day-container.red {
  background: #CF4949;
}

.time-report-container .day-container.grey {
  background: #f0f0f0;
}

.time-report-container .day-container.grey p {
  color: #000;
}

.time-report-container .day-container.grey i {
  color: #BBBBBB;
}

.time-report-container .add-time-container {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #F3F3F3;
}

.time-report-container .add-time-container strong, .time-report-container .add-time-container i {
  font-size: 15px;
}

.time-report-container .add-time-container i {
  position: relative;
  top: 1px;
  margin-right: 12px;
}

.time-report-container .add-time-container.active {
  background: #D6D6D6;
}

.time-report-container .report-time-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.time-report-container .report-time-container p {
  margin-bottom: 0;
}

.time-report-container .custom-dropdown {
  position: relative;
  width: 100%;
}

.time-report-container .custom-dropdown .select {
  position: relative;
  display: flex;
  flex-direction: column;
}

.time-report-container .custom-dropdown .select.active .select__trigger {
  background: #F9F9F9;
}

.time-report-container .custom-dropdown .select.active .select__trigger .arrow:before {
  left: -3px;
  transform: rotate(45deg);
}

.time-report-container .custom-dropdown .select.active .select__trigger .arrow:after {
  left: 3px;
  transform: rotate(-45deg);
}

.time-report-container .custom-dropdown .select .select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  border: 1px solid #EDEDED;
  background: #fff;
  border-radius: 20px;
  transition: background .3s ease;
}

.time-report-container .custom-dropdown .select .select__trigger .arrow {
  position: relative;
  height: 10px;
  width: 10px;
}

.time-report-container .custom-dropdown .select .select__trigger .arrow:before, .time-report-container .custom-dropdown .select .select__trigger .arrow:after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 1.5px;
  height: 100%;
  transition: .3s;
}

.time-report-container .custom-dropdown .select .select__trigger .arrow:before {
  left: -3px;
  transform: rotate(-45deg);
  background-color: #A5A5A5;
}

.time-report-container .custom-dropdown .select .select__trigger .arrow:after {
  left: 3px;
  transform: rotate(45deg);
  background-color: #A5A5A5;
}

.time-report-container .custom-dropdown .select .custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  height: 0;
  overflow-y: hidden;
  border-inline: 1px solid #EDEDED;
  border-top: none;
  border-radius: 20px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.08);
  background: #fff;
  transition: height .3s;
  z-index: 1;
}

.time-report-container .custom-dropdown .select .custom-options .custom-option {
  position: relative;
  display: block;
  padding: 15px 2px;
  font-size: 13px;
  color: #3b3b3b;
  cursor: pointer;
  transition: all .2s ease;
}

.time-report-container .custom-dropdown .select .custom-options .custom-option:hover {
  background: #fafafa;
}

.time-report-container #reported-time-container {
  display: flex;
  gap: 10px;
  align-items: center;
}

.time-report-container #reported-time-container #btn-minus-time, .time-report-container #reported-time-container #btn-plus-time {
  cursor: pointer;
}

.time-report-container #reported-time-container #btn-minus-time.active i, .time-report-container #reported-time-container #btn-minus-time:hover i, .time-report-container #reported-time-container #btn-plus-time.active i, .time-report-container #reported-time-container #btn-plus-time:hover i {
  background: #1c8940;
}

.time-report-container #reported-time-container i {
  display: flex;
  width: 40px;
  height: 40px;
  background: #52AD70;
  color: #fff;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 13px;
}

.time-report-container #reported-time-container #reported-time {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #929292;
  border-radius: 22px;
  background: #FFFFFF;
  border: 1px solid #D2D2D2;
  width: 60px;
  height: 43px;
  user-select: none;
}

.time-report-container .no-select {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.project-overview-create {
  background: #fff;
  color: #000;
  padding: 14px 18px;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: -10px;
  display: block;
  color: #000 !important;
  border: 10px solid #d6d6d6;
  border-left: 0;
  border-right: 0;
}

.project-overview .project-header .day-header {
  padding: 10px 20px;
  background: #42a970;
  font-size: 18px;
  color: #fff;
  text-transform: capitalize;
}

.project-overview .project-header .week-header {
  padding: 10px 20px;
  background: #2d744d;
  font-size: 18px;
  color: #fff;
  text-align: center;
}

.project-overview-container {
  display: grid;
  grid-template-columns: 1fr 20px;
  padding: 15px 25px 15px 20px;
  border-bottom: 1px solid #e3e3e3;
}

.project-overview-container.isattest {
  background: #d2fbd2;
}

.project-overview-container.isattest i {
  color: green !important;
}

.project-overview-container p {
  margin-bottom: 0;
}

.project-overview-container strong {
  font-size: 15px;
}

.project-overview-container .project-comment {
  font-size: 12px;
  color: #6A6A6A;
  margin-bottom: 10px;
}

.project-overview-container i {
  margin-top: 10px;
  font-size: 1.2em;
}

.project-overview-infobox {
  padding: 10px 20px;
  font-size: 15px;
  font-weight: bold;
}

.timereport-delete-item {
  background: #c50202;
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: bold;
  border-top: 10px solid #e3e3e3;
  border-bottom: 10px solid #e3e3e3;
  color: #ffe7e1 !important;
}

.env-form-control-holder.doctextcontent {
  font-size: 18px;
}

@media screen and (max-width: 1024px) {
  .env-form-control-holder.doctextcontent {
    font-size: 16px;
  }
}

.env-form-control-holder .field {
  margin-bottom: 20px;
}

.env-form-control-holder .field a {
  font-size: 15px;
}

.env-form-control-holder .field canvas {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.env-form-control-holder .field label {
  font-size: 16px;
  margin-bottom: .3em;
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  .env-form-control-holder .field label {
    font-size: 16px;
  }
}

.env-form-control-holder .field select.form-control {
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%) !important;
  background-position: calc(100% - 25px) 50%, calc(100% - 20px) 50% !important;
  background-size: 5px 5px, 5px 5px !important;
  background-repeat: no-repeat !important;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 3em;
}

.env-form-control-holder .field select.form-control:-moz-focusring {
  color: transparent !important;
  text-shadow: 0 0 0 #000 !important;
}

.env-form-control-holder .field .form-control {
  border: 1px solid #D2D2D2;
  border-radius: 22px !important;
  box-shadow: unset;
  height: unset;
  font-size: 16px !important;
  line-height: 1.38;
  padding: .7em 1.5em;
  margin-bottom: 0 !important;
}

.env-form-control-holder .field .form-control[disabled] {
  background: #F7F7F7;
  color: #929292;
  border: 1px solid #f1f1f1 !important;
}

.env-form-control-holder .field table tbody tr td input[type=radio] {
  width: 25px !important;
  height: 25px;
}

.env-form-control-holder .field table tbody tr td input[type=radio]:after {
  width: 23px;
  height: 23px;
}

.env-form-control-holder .field table tbody tr td input[type=checkbox] {
  width: 25px !important;
  height: 25px;
}

.env-form-control-holder .field table tbody tr td input[type=checkbox]:focus {
  box-shadow: none;
}

.env-form-control-holder .field table tbody tr td input[type=checkbox]:after {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(var(--r, 20deg));
}

.env-form-control-holder .field table tbody tr td label {
  line-height: 25px;
}

.env-form-control-holder .field table.slider tbody tr td input {
  width: 60px !important;
  height: 30px;
  border-radius: 34px;
  margin-right: 10px;
}

.env-form-control-holder .field table.slider tbody tr td input:checked + .slider:before {
  transform: translate(calc(60px - 8px - 23px), -50%);
}

.env-form-control-holder .field table.slider tbody tr td .slider:before {
  top: 50%;
  transform: translate(0, -50%);
  bottom: auto;
  transition: transform .3s ease;
  height: 23px;
  width: 23px;
}

.env-form-control-holder .field table.slider tbody tr td .slider, .env-form-control-holder .field table.slider tbody tr td label {
  position: absolute;
  width: 60px !important;
  height: 30px;
  margin: 0;
  border: none;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 34px;
}

.env-form-control-holder .field table.slider tbody tr td b {
  padding: 0;
}

.env-form-control-holder .field .env-form-searchbox-inputholder.hasvalue .env-form-searchbox-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  inset: 0;
  font-size: 16px !important;
  line-height: 1.38 !important;
  padding: .7em 0 .7em 1.5em;
  border-radius: 22px !important;
  margin: 1px;
  background: #F7F7F7;
}

.env-form-control-holder .field .env-form-searchbox-inputholder.hasvalue .env-form-searchbox-selected .env-form-searchbox-username {
  font-size: inherit;
}

.env-form-control-holder .field .env-form-searchbox-inputholder.hasvalue .env-form-searchbox-selected .env-form-searchbox-disconnect {
  display: flex;
  position: static;
  cursor: pointer;
  font-size: 18px;
  padding: 0 1.5em;
}

.env-form-control-holder .field .env-form-searchbox-users {
  border: 1px solid #D2D2D2;
  border-radius: 22px;
  font-size: 16px;
  margin-top: 0;
  line-height: 1.38 !important;
}

@media screen and (max-width: 1024px) {
  .env-form-control-holder .field .env-form-searchbox-users {
    left: 7px;
    right: 7px;
  }
}

.env-form-control-holder .field .env-form-searchbox-users div:first-of-type {
  padding-top: .7em;
}

@media screen and (max-width: 1024px) {
  .env-form-control-holder .field .env-form-searchbox-users div:first-of-type {
    padding-top: 1em;
  }
}

.env-form-control-holder .field .env-form-searchbox-users div:last-of-type {
  padding-bottom: .7em;
}

@media screen and (max-width: 1024px) {
  .env-form-control-holder .field .env-form-searchbox-users div:last-of-type {
    padding-bottom: 1em;
  }
}

.env-form-control-holder .field .env-form-searchbox-users .env-form-searchbox-users-user {
  padding: 5px 10px;
  font-size: inherit;
  line-height: inherit;
  padding: .7em 1.5em;
}

.env-form-control-holder .field .env-form-searchbox-users .env-form-searchbox-users-user:hover {
  background: #F7F7F7;
}

.env-form-control-holder .field .div_fuHolder:after {
  color: #000;
}

.rbl_survey {
  position: relative;
}

.rbl_survey table {
  display: flex !important;
  flex-flow: row !important;
}

.rbl_survey table tbody {
  display: flex !important;
  flex-flow: row !important;
  width: 100%;
  justify-content: space-between;
  align-content: center;
  align-items: stretch;
  padding: 0 20px;
}

@media screen and (min-width: 900px) {
  .rbl_survey table tbody {
    padding: 0 40px !important;
  }
}

.rbl_survey table tbody tr td {
  display: flex;
  flex-flow: column;
}

.rbl_survey .div_emotions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.rbl_survey .div_emotions .emotion_sad {
  left: -5px;
  bottom: 30px;
  position: absolute;
}

@media screen and (min-width: 900px) {
  .rbl_survey .div_emotions .emotion_sad {
    font-size: 1.4em;
    bottom: 25px;
  }
}

.rbl_survey .div_emotions .emotion_great {
  right: -5px;
  bottom: 30px;
  position: absolute;
}

@media screen and (min-width: 900px) {
  .rbl_survey .div_emotions .emotion_great {
    font-size: 1.4em;
    bottom: 25px;
  }
}

body {
  background: #fff;
}

.transPA-container {
  display: flex;
  flex-direction: column;
  font-family: "Sen",sans-serif !important;
  color: #2c2c2c;
  background: #d7d7d7;
  max-width: 700px;
  padding-bottom: 50px;
}

.transPA-container .side-window {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: #D7D7D7;
  top: 0;
  right: 0;
  z-index: 9;
  transition: transform 0.3s ease;
  transform: translateX(100%);
}

.transPA-container .side-window.open {
  transform: translateX(0);
}

.transPA-container .side-window .side-window-view {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 0;
  z-index: 9;
  background: #D7D7D7;
}

.transPA-container .side-window .side-window-header {
  background: #F5F5F5;
  padding: 80px 20px 20px 20px;
  position: relative;
}

.transPA-container .side-window .side-window-header .side-window-header-content__status-icons i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  margin: 10px 0;
}

.transPA-container .side-window .side-window-header__status--submitted {
  background: #e0f2fe;
}

.transPA-container .side-window .side-window-header__status--submitted .side-window-header-content__status-icons i {
  background: #0ea5e9;
}

.transPA-container .side-window .side-window-header__status--approved {
  background: #dcfce7;
}

.transPA-container .side-window .side-window-header__status--approved .side-window-header-content__status-icons i {
  background: #059669;
}

.transPA-container .side-window .side-window-header .side-window-header-content {
  font-size: 18px;
}

.transPA-container .side-window .side-window-header .side-window-header-content h4 {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 24px;
  font-weight: bold;
}

.transPA-container .side-window .side-window-header .side-window-close {
  position: absolute;
  top: 80px;
  right: 20px;
}

.transPA-container .side-window .side-window-header .side-window-close i {
  font-size: 20px;
  color: #000;
}

.transPA-container .side-window .side-window-list-no-link {
  list-style: none;
  padding: 0;
  margin: 0;
}

.transPA-container .side-window .side-window-list-no-link li {
  display: block;
  padding: 25px 20px;
  padding-right: 40px;
  display: flex;
  align-items: center;
  position: relative;
  color: #000;
  border-bottom: 1px solid #ECECEC;
  font-size: 18px;
  transition: 0.3s ease;
  text-decoration: none !important;
  background: #fff;
}

.transPA-container .side-window .side-window-list-no-link li:active {
  background: #E86734;
  color: #fff;
}

.transPA-container .side-window .side-window-list-no-link li i {
  position: absolute;
  right: 20px;
}

.transPA-container .side-window .side-window-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.transPA-container .side-window .side-window-list li:first-child {
  border-top: 1px solid #ECECEC;
}

.transPA-container .side-window .side-window-list li a {
  display: block;
  padding: 25px 20px;
  padding-right: 40px;
  display: flex;
  align-items: center;
  position: relative;
  color: #000;
  border-bottom: 1px solid #ECECEC;
  font-size: 18px;
  transition: 0.3s ease;
  text-decoration: none !important;
  background: #fff;
}

.transPA-container .side-window .side-window-list li a:active {
  background: #E86734;
  color: #fff;
}

.transPA-container .side-window .side-window-list li a i {
  position: absolute;
  right: 20px;
}

.transPA-container .side-window .side-window-content {
  height: calc(100vh - 128px);
  overflow: auto;
  display: flex;
  flex-direction: column;
}

.transPA-container .side-window .side-window-form {
  background: #fff;
}

.transPA-container .side-window .side-window-form .side-window-form-row {
  padding: 20px;
  border-bottom: 1px solid #EAEAEA;
  overflow: hidden;
  transition: 0.3s ease;
}

.transPA-container .side-window .side-window-form .side-window-form-row.orange {
  background: #E86734;
  color: #fff;
}

.transPA-container .side-window .side-window-form .side-window-form-row label {
  display: block;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

.transPA-container .side-window .side-window-form .side-window-form-row .field-text {
  margin-right: 10px;
}

.transPA-container .side-window .side-window-form .side-window-form-row textarea {
  border: none;
  width: 100%;
  min-height: 100px;
}

.transPA-container .side-window .side-window-form .side-window-form-row textarea:focus-visible {
  outline: 0;
}

.transPA-container .side-window .side-window-form .side-window-form-row input[type="time"], .transPA-container .side-window .side-window-form .side-window-form-row input[type="number"] {
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid #D2D2D2;
  max-width: 140px;
  width: 100%;
}

.transPA-container .side-window .side-window-form .side-window-form-row input[type="date"] {
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid #D2D2D2;
  width: 100%;
}

.transPA-container .side-window .side-window-form .side-window-form-row input[type="number"] {
  text-align: center;
}

.transPA-container .side-window .side-window-form .side-window-form-row input[type="checkbox"]:focus {
  box-shadow: none !important;
}

.transPA-container .side-window .side-window-form .side-window-form-row input:disabled {
  background-color: #e7e7e7 !important;
}

.transPA-container .side-window .side-window-form .side-window-form-row select {
  border-radius: 30px !important;
  border: 1px solid #D2D2D2;
  padding: 12px;
}

.transPA-container .side-window .side-window-form .side-window-form-row select.full {
  width: 100%;
  display: block;
}

.transPA-container .side-window .side-window-form .side-window-form-row .btn.full {
  display: block;
}

.transPA-container .side-window .side-window-form .side-window-form-row .form-group-container {
  transition: max-height 0.5s ease-in;
  overflow: hidden;
}

.transPA-container .side-window .side-window-form .side-window-form-row .form-group-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.transPA-container .side-window .side-window-form .side-window-form-row .form-group-wrap:last-child {
  margin-bottom: 0px;
}

.transPA-container .side-window .side-window-form .side-window-form-row .form-group-wrap.block {
  display: block;
}

.transPA-container .side-window .side-window-form .side-window-form-row .form-group-wrap .form-group {
  display: flex;
  flex-direction: column;
  column-gap: 30px;
  width: 100%;
}

.transPA-container .side-window .side-window-form .side-window-form-row .form-group-wrap .form-group.delete-break-item {
  width: auto;
  align-items: center;
  justify-content: end;
}

.transPA-container .side-window .side-window-form .side-window-form-row .form-group-wrap .form-group.delete-break-item .env-button {
  padding: 0.9em 1.4em;
}

.transPA-container .side-window .side-window-form .side-window-form-row .form-group-wrap .form-group__flex-wrap {
  flex-wrap: wrap;
}

.transPA-container .side-window .side-window-form .side-window-form-row .form-group-wrap .form-group__flex-wrap .field-text {
  display: block;
  margin-bottom: 5px;
}

.transPA-container .side-window .side-window-form .side-window-form-row .form-group-wrap .form-group__flex-wrap input {
  width: 100%;
}

.transPA-container .side-window .side-window-form .side-window-form-row .form-group-wrap .form-group:first-child {
  /*margin-right: 15px;*/
}

.transPA-container .btn-calc {
  font-size: 32px;
  color: #52AD70;
}

.transPA-container .transPA .page-title {
  padding: 20px;
  border-bottom: 1px solid #ECECEC;
}

.transPA-container .transPA h1 {
  margin: 0;
  padding: 0px;
}

.transPA-container .week-container {
  padding: 20px;
  border-bottom: 1px solid #ECECEC;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.transPA-container .week-container .arrow {
  background: #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  width: 20px;
}

.transPA-container .week-container .arrow i {
  color: #fff;
}

.transPA-container .week-container .mid {
  text-align: center;
}

.transPA-container .week-container .mid strong {
  font-size: 15px;
}

.transPA-container .week-container .mid p {
  color: #959595;
  margin: 0;
}

.transPA-container .days-container {
  background: #fff;
}

.transPA-container .days-container .day-item {
  background: #f1f5f9;
  margin-bottom: 3px;
  border-bottom: 1px solid #eee;
}

.transPA-container .days-container .day-item .timeStamp-button {
  background: #10b981;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.transPA-container .days-container .day-item .timeStamp-button i {
  color: #fff !important;
  margin-right: 10px;
  font-size: 16px;
}

.transPA-container .days-container .day-item .timeStamp-button--stop {
  background: #e35c5c !important;
  color: #fff;
}

.transPA-container .days-container .day-item .day-item-header {
  padding: 20px 20px 0px;
  background: #fff;
}

.transPA-container .days-container .day-item.day-item-no-shift {
  /* padding: 30px 20px;
                display: flex;*/
}

.transPA-container .days-container .day-item .day-item-shift-wrap {
  display: flex;
  padding: 20px 20px;
  border-bottom: 1px solid #d9e0e7;
  background: #fff;
}

.transPA-container .days-container .day-item .day-item-shift-wrap.day-item-submitted {
  /*background: #e0f2fe !important;*/
}

.transPA-container .days-container .day-item .day-item-shift-wrap.day-item-submitted i {
  color: #7dd3fc;
  background: #0ea5e9;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.transPA-container .days-container .day-item .day-item-shift-wrap.day-item-approved {
  /*background: #dcfce7 !important;*/
}

.transPA-container .days-container .day-item .day-item-shift-wrap.day-item-approved i {
  color: #86efac;
  background: #059669;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.transPA-container .days-container .day-item .day-item-shift-wrap:last-child {
  border-bottom: none;
}

.transPA-container .days-container .day-item .day-item-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.transPA-container .days-container .day-item .day-name b {
  font-size: 18px;
}

.transPA-container .days-container .day-item .day-item__status--submitted {
  /*color: #0ea5e9;*/
}

.transPA-container .days-container .day-item .day-item__status--approved {
  color: #059669;
}

.transPA-container .days-container .day-item.day-item-no-shift i {
  /*color: #1d743a;*/
}

.transPA-container .days-container .day-item.day-item-no-shift .day-name {
  /*color: #db6767;*/
}

.transPA-container .days-container .day-item:last-child {
  margin-bottom: 0;
}

.transPA-container .days-container .day-item .day-item-left {
  color: #000;
  flex-direction: column;
  flex: 1;
  font-size: 14px;
}

.transPA-container .days-container .day-item .day-item-left div {
  margin-bottom: 3px;
}

.transPA-container .days-container .day-item .day-item-left .day-name {
  font-size: 15px;
}

.transPA-container .days-container .day-item .day-item-left .day-name i {
  margin-left: 10px;
}

.transPA-container .days-container .day-item .day-item-right a {
  display: block;
}

.transPA-container .days-container .day-item .day-item-right a i {
  color: #000;
  font-size: 24px;
}

.transPA-container .summary {
  background: #fff;
  padding: 20px;
  flex-grow: 1;
}

.transPA-container .summary h4 {
  font-weight: bold;
}

.transPA-container .summary .sum-row-alt {
  margin-bottom: 10px;
}

.transPA-container .summary .sum-row-alt .sum-row-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f5f5f5;
  font-size: 18px;
  padding: 5px 0;
}

.transPA-container .summary .sum-row {
  display: flex;
  margin-bottom: 10px;
  justify-content: space-between;
  font-size: 20px;
}

.transPA-container .summary .sum-row .sum-item-row {
  flex: 1;
}

.transPA-container .summary .sum-row .sum-title {
  flex: 1;
  font-weight: bold;
}

.transPA-container .summary .sum-row .sum-value {
  text-align: right;
  font-size: 18px;
}

.transPA-container .orange-text {
  color: #E86734;
}

.transPA-container .red-text {
  color: #AF2112;
}

.transPA-container .timeStamp-button-wrapper {
  position: fixed;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.transPA-container .timeStamp-button-wrapper .timeStamp-button {
  border-radius: 20px;
  background: #10b981;
  padding: 14px 30px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.transPA-container .timeStamp-button-wrapper .timeStamp-button--text {
  font-size: 24px;
  color: #fff;
}

.transPA-container .timeStamp-button-wrapper .timeStamp-button i {
  font-size: 24px;
  margin-right: 10px;
  color: #fff;
}

.confirmation-window-wrap {
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.confirmation-window-wrap .confirmation-window {
  background: #fff;
  padding: 60px 25px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  transform: translateY(100%);
  transition: 0.3s ease;
}

.confirmation-window-wrap .confirmation-window.open {
  transform: translateY(0);
}

.confirmation-window-wrap .confirmation-window .confirmation-window-header h3 {
  font-weight: bold;
  margin: 0 0 30px 0;
}

.confirmation-window-wrap .confirmation-window .confirmation-window-content .env-button {
  margin-bottom: 15px;
}

.env-button {
  display: inline-block;
  padding: 1em 2em;
  font-size: 14px;
  font-weight: 400;
  border-radius: 25px;
  transition: background .3s ease, color .3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}

.env-button.env-button__orange {
  background: #F3742D;
  color: #fff;
}

.env-button.env-button__orange:hover {
  background: #FF8862;
}

.env-button.env-button__white {
  background: #fff;
  border: 1px solid transparent;
  color: #000;
}

.env-button.env-button__white:hover {
  background: #f5f5f5;
  color: #000;
}

.env-button.env-button__darkgrey {
  background: #6E6E6E;
  border: transparent;
  color: #fff;
}

.env-button.env-button__darkgrey:hover {
  background: #5a5252;
  color: #fff;
}

.env-button.env-button__grey {
  background: #f1f1f1;
  border: transparent;
  color: #000;
}

.env-button.env-button__green {
  background: #308762;
  border: transparent;
  color: #fff;
}

.env-button.env-button__green:hover {
  background: #196847;
  color: #fff;
}

.env-button.env-button__red {
  background: #CF4949;
  border: transparent;
  color: #fff;
}

.env-button.env-button__red:hover {
  background: #a82a2a;
  color: #fff;
}

.env-button.env-button__full {
  display: block !important;
  width: 100%;
}

.env-button.env-button__no-radius {
  border-radius: 0;
}

.env-button.env-button__large {
  padding: 1.6em 2.2em;
}

.env-button.env-button__small {
  padding: 0.7em 1.3em;
  /*font-size: 12px;*/
}

.work-break-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}

.work-break-item:last-child {
  border-bottom: none;
  margin-bottom: 0px;
}

#worktasks .work-task {
  background: #F2F2F2;
  padding: 20px;
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
}

#worktasks .work-task .work-task-open i {
  transition: 0.3s ease;
  color: #6E6E6E;
  font-size: 18px;
}

#worktasks .work-task .work-task-open.open i {
  transform: rotate(90deg);
}

#worktasks .work-task span {
  display: block;
}

.closed {
  height: auto !important;
  max-height: 0 !important;
  padding: 0 !important;
  overflow: hidden;
}

.toast-container {
  position: fixed;
  width: 100%;
  z-index: 11;
  top: 30px;
  padding: 10px;
  transition: 0.3s ease;
}

.toast-container .toast-container-close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #fff;
  font-size: 2rem;
}

.toast-container.open {
  animation-name: notificationDown;
  animation-duration: 0.3s;
}

.toast-container.close {
  animation-name: notificationDown;
  animation-duration: 0.3s;
}

.toast-container .toast {
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  color: #000;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.toast-container .toast--error {
  background: #f87171;
  color: #fff;
}

.toast-container .toast--success {
  background: #16a34a;
  color: #fff;
}

#summary-container {
  background: #E86734;
  color: #fff;
}

#summary-container .sum-title {
  font-size: 16px;
  font-weight: normal;
}

#summary-container .sum-value {
  font-size: 16px;
  font-weight: normal;
}

@keyframes notificationDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes notificationUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}

/*@media print {

    #sidebar {
        display: none;
    }

    .superleftmenu, .headernav, .sharebox, .sharebox-modal, .print-doc, .share-item-command, .breadcrumb, .backbutton {
        display: none;
    }
    tfoot {
        visibility: hidden;
    }

    .document-header{
    margin: 0px 2px 0px 7px;
        position: fixed;
        top: 0;
    }

    div#footer_content {
        font-weight: bold;
    }
}
*/
.bankidwrap {
  text-align: center;
  padding: 40px;
}

.bankidwrap img {
  display: block;
  margin: 10px auto;
  max-width: 100%;
}

.bankidwrap a {
  color: #111 !important;
  font-size: 24px;
}

.bankidwrap a:hover {
  text-decoration: none;
}

/* ==== Envodium Admin Menu – glass + fast pop, 4-per-row grid ==== */
.envadminmenu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  /* aktiveras när .open sätts */
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

.envadminmenu.open {
  pointer-events: auto;
}

/* Overlay – 10–18% rekommenderas. Här 14% för tydligare separation */
.envadminmenu .envadminmenu_modal_bg {
  position: absolute;
  inset: 0;
  background: #000;
  /* undvik rgba-flash; animera endast opacity */
  opacity: 0;
  transition: opacity 240ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
  z-index: 0;
}

.envadminmenu.open .envadminmenu_modal_bg {
  opacity: 0.14;
}

/* Panel – glasigare + djupare skugga */
.envadminmenu .envadminmenu_content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  /* plats för 4x200 + 3*16 + padding */
  margin: auto;
  margin-top: 96px;
  padding: 100px 24px 120px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.26);
  /* tätare glas */
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  /* Grid: exakt 4 per rad på stora skärmar */
  display: grid;
  grid-template-columns: repeat(4, 200px);
  gap: 16px;
  justify-content: center;
  /* Pop-övergång (endast transform/opacity) */
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
  -webkit-transform: translateY(12px) scale(0.985) translateZ(0);
  backface-visibility: hidden;
}

.envadminmenu .modal-header {
  position: absolute;
  top: 20px;
  border-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  width: 100%;
}

.envadminmenu .info {
  position: absolute;
  bottom: 40px;
  text-align: center;
  width: 100%;
  padding: 0px 100px;
}

.envadminmenu.open .envadminmenu_content {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Glas bara om stöds – minskar blink i vissa miljöer */
@supports (backdrop-filter: blur(20px)) or (-webkit-backdrop-filter: blur(20px)) {
  .envadminmenu .envadminmenu_content {
    -webkit-backdrop-filter: saturate(140%) blur(20px);
    backdrop-filter: saturate(140%) blur(20px);
  }
}

/* Responsiva kolumnbryt – undvik horisontell scroll på smalare skärmar */
@media (max-width: 950px) {
  .envadminmenu .envadminmenu_content {
    grid-template-columns: repeat(3, 200px);
  }
}

@media (max-width: 720px) {
  .envadminmenu .envadminmenu_content {
    grid-template-columns: repeat(2, 200px);
  }
}

@media (max-width: 480px) {
  .envadminmenu .envadminmenu_content {
    grid-template-columns: repeat(1, 200px);
  }
}

@media (max-width: 980px) {
  .envadminmenu .envadminmenu_content {
    max-width: calc(100% - 32px);
  }
}

/* Close-knapp – subtil röd glass */
.envadminmenu .envadminmenuClose {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 59, 48, 0.16);
  color: #b02028;
  cursor: pointer;
  user-select: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.envadminmenu .envadminmenuClose:hover {
  background: rgba(255, 59, 48, 0.36);
  border-color: rgba(255, 59, 48, 0.5);
  transform: scale(1.04);
}

/* Kort – 200x200, tätare glas + tydligare skugga */
.envadminmenu .envadminmenu_content > a {
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #1f2937;
  /* mörkare text */
  background: rgba(255, 255, 255, 0.7);
  /* var 0.32 */
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1), opacity 200ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.15s ease, background 0.15s ease;
  /* Staggered in */
  transform: translateY(8px) scale(0.985);
  opacity: 0;
  will-change: transform, opacity;
}

.envadminmenu.open .envadminmenu_content > a {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Grundstil + snabba hover-transitions (ingen delay här) */
.envadminmenu .envadminmenu_content > a {
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #1f2937;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  /* snabba transitions för hover */
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1), opacity 200ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.15s ease, background 0.15s ease;
  /* startläge för entré */
  transform: translateY(8px) scale(0.985);
  opacity: 0;
  will-change: transform, opacity;
}

/* Staggerad IN-ANIMATION (påverkar inte hover) */
.envadminmenu.open .envadminmenu_content > a {
  animation: menuItemIn 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--d, 0ms);
}

.envadminmenu.open .envadminmenu_content > a:nth-of-type(1) {
  --d: 40ms;
}

.envadminmenu.open .envadminmenu_content > a:nth-of-type(2) {
  --d: 80ms;
}

.envadminmenu.open .envadminmenu_content > a:nth-of-type(3) {
  --d: 120ms;
}

.envadminmenu.open .envadminmenu_content > a:nth-of-type(4) {
  --d: 160ms;
}

.envadminmenu.open .envadminmenu_content > a:nth-of-type(5) {
  --d: 200ms;
}

.envadminmenu.open .envadminmenu_content > a:nth-of-type(6) {
  --d: 240ms;
}

.envadminmenu.open .envadminmenu_content > a:nth-of-type(7) {
  --d: 280ms;
}

.envadminmenu.open .envadminmenu_content > a:nth-of-type(8) {
  --d: 320ms;
}

.envadminmenu.open .envadminmenu_content > a:nth-of-type(9) {
  --d: 360ms;
}

.envadminmenu.open .envadminmenu_content > a:nth-of-type(10) {
  --d: 400ms;
}

.envadminmenu.open .envadminmenu_content > a:nth-of-type(11) {
  --d: 440ms;
}

.envadminmenu.open .envadminmenu_content > a:nth-of-type(12) {
  --d: 480ms;
}

.envadminmenu.open .envadminmenu_content > a:nth-of-type(13) {
  --d: 520ms;
}

.envadminmenu.open .envadminmenu_content > a:nth-of-type(14) {
  --d: 560ms;
}

.envadminmenu.open .envadminmenu_content > a:nth-of-type(15) {
  --d: 600ms;
}

.envadminmenu.open .envadminmenu_content > a:nth-of-type(16) {
  --d: 640ms;
}

.envadminmenu.open .envadminmenu_content > a:nth-of-type(17) {
  --d: 680ms;
}

.envadminmenu.open .envadminmenu_content > a:nth-of-type(18) {
  --d: 720ms;
}

.envadminmenu.open .envadminmenu_content > a:nth-of-type(19) {
  --d: 760ms;
}

.envadminmenu.open .envadminmenu_content > a:nth-of-type(20) {
  --d: 800ms;
}

@keyframes menuItemIn {
  from {
    transform: translateY(8px) scale(0.985);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Hover: omedelbar respons */
.envadminmenu .envadminmenu_content > a:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  background: #fff;
}

.envadminmenu .envadminmenu_content > a:hover {
  transition-delay: 0ms;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  background: #fff;
}

.envadminmenu .envadminmenu_content > a:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.35);
  outline-offset: 3px;
}

/* Ikon + text */
.envadminmenu .envadminmenu_content > a i {
  font-size: 42px;
  opacity: 0.85;
  color: #4b5563;
}

.envadminmenu .envadminmenu_content > a span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .envadminmenu * {
    transition: none !important;
    transform: none !important;
  }
}

.openEnvAdmin {
  background: #e0e0e0;
  height: 40px;
  border-radius: 20px;
  align-items: center;
  padding: 0px 30px;
  vertical-align: middle;
  margin-right: 10px;
  color: #161616;
  font-size: 15px;
  font-weight: 500;
  justify-content: center;
  transition: background .3s ease;
}

.openEnvAdmin:hover {
  background: #fff;
  cursor: pointer;
}

.openEnvAdmin p {
  vertical-align: middle;
}

/* Container only handles layout + pointer-events, no opacity here */
.enviframe_overlay {
  position: fixed;
  inset: 0;
  z-index: 10002;
  /* over the menu (9999) */
  pointer-events: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Backdrop that fades in */
.enviframe_bg {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  transition: opacity 240ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
  z-index: 0;
}

.enviframe_overlay.open {
  pointer-events: auto;
}

.enviframe_overlay.open .enviframe_bg {
  opacity: 0.14;
}

/* same as menu */
/* Modal stays fully opaque and animates like your menu */
.enviframe_modal {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
  -webkit-transform: translateY(12px) scale(0.985) translateZ(0);
  backface-visibility: hidden;
}

.enviframe_modal.framesmall {
  width: 1100px;
  /* adjust as needed */
  max-width: calc(100% - 60px);
  left: 50%;
  right: auto;
  bottom: auto;
  /* allow height to shrink to content */
  height: 700px;
  top: 60px;
  /* a bit lower than full modal */
  transform: translate(-50%, 12px) scale(0.985);
  /* include X centering */
  -webkit-transform: translate(-50%, 12px) scale(0.985) translateZ(0);
}

.enviframe_overlay.open .enviframe_modal.framesmall {
  transform: translate(-50%, 0) scale(1);
  -webkit-transform: translate(-50%, 0) scale(1) translateZ(0);
}

@media (max-width: 768px) {
  .enviframe_modal {
    left: 0;
    right: 0;
    bottom: 0;
    top: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.enviframe_overlay.open .enviframe_modal {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@supports (backdrop-filter: blur(20px)) or (-webkit-backdrop-filter: blur(20px)) {
  .enviframe_modal {
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    backdrop-filter: saturate(140%) blur(10px);
  }
}

.enviframe_bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.enviframe_title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #1f2937;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.enviframe_close {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(255, 59, 48, 0.16);
  color: #b02028;
  cursor: pointer;
  user-select: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.enviframe_close:hover {
  background: rgba(255, 59, 48, 0.36);
  border-color: rgba(255, 59, 48, 0.5);
  transform: scale(1.04);
}

.enviframe_modal iframe {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

@media (max-width: 480px) {
  /* .enviframe_modal {
        top: 12px;
        right: 12px;
        bottom: 12px;
        left: 12px;
    }*/
}

@media (prefers-reduced-motion: reduce) {
  .enviframe_bg, .enviframe_modal, .enviframe_close {
    transition: none !important;
    transform: none !important;
  }
}

.enviframe_actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.enviframe_maximize {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.16);
  /* blåaktig glass */
  color: #3730a3;
  cursor: pointer;
  user-select: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.enviframe_maximize:hover {
  background: rgba(99, 102, 241, 0.36);
  border-color: rgba(99, 102, 241, 0.5);
  transform: scale(1.04);
}

.envadminmenu .version {
  color: #8D8D8D;
  font-size: 13px;
  width: 58px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: all .2s ease;
  padding: 14px;
  position: absolute;
  right: 20px;
  bottom: 0px;
  width: 160px;
}

.envadminmenu .version::after {
  position: absolute;
  bottom: 5px;
  left: 0px;
  width: 0%;
  height: 2px;
  background: #1791c5;
  content: '';
  transition: all .2s ease;
}

.envadminmenu .version:hover {
  text-decoration: none;
}

.envadminmenu .version:hover::after {
  width: 100%;
}

/*STANDARD MODULES*/
.main_emotions {
  display: flex;
  background: rgba(20, 132, 180, 0.9);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-flow: column;
  text-align: center;
  transition: all .4s ease;
  transform: translateX(1200%);
  color: #fff;
}

.main_emotions.showing {
  transform: translateX(0%);
}

.main_emotions .emo_ico {
  font-size: 78px;
  margin: 0px 0px;
  transition: all 1.3s ease;
}

.main_emotions .emo_ico.selectedEmotion {
  transform: scale(1.5);
  z-index: 9999;
  position: absolute;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.main_emotions b {
  font-size: 30px;
}

.main_emotions span {
  display: block;
  padding-bottom: 40px;
}

.main_emotions .row .col-xs-6 {
  margin-top: -20px !important;
}

.main_emotions .noans {
  margin: 20px 0;
  background: #fff;
  color: #333;
  font-size: 1.1em;
  padding: 14px 40px;
  display: inline-block;
  border-radius: 40px;
}

#searchbox {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  z-index: 99;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

#searchbox.active {
  transform: translateX(0%);
}

#searchbox #searchheader {
  background: #1a4c70;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  padding-bottom: 20px;
  font-size: 1.3em;
}

#searchbox #searchheader .searchback {
  position: absolute;
  left: 0px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: .9em;
}

#searchbox #searchheader .searchback i {
  padding-right: 5px;
}

#searchbox #search_result {
  background: #fff;
  padding: 10px;
  margin: 10px;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.16);
  display: none;
}

#searchbox #search_result a {
  display: block;
  margin: 10px 0;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 10px;
}

#searchbox #search_result a:hover {
  text-decoration: none;
}

#searchbox #search_result a .title {
  color: #111;
  font-size: 1.2em;
  font-weight: bold;
}

#searchbox #search_result a .preamble {
  color: #444;
}

#searchbox #search_query {
  border-radius: 0 !important;
}

#pdfjs_holder {
  background: white;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 11;
  transition: transform 0.3s ease;
  transform: translateY(100%);
  overflow: auto;
}

#pdfjs_holder::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

#pdfjs_holder::-webkit-scrollbar-track {
  background: #f1f1f1;
}

#pdfjs_holder::-webkit-scrollbar-thumb {
  background: #ccc;
}

#pdfjs_holder.active {
  transform: translateY(0%) !important;
}

#pdfjs_holder #pdfjs_menu {
  padding: 60px 20px;
  padding-bottom: 20px;
  background: #000;
  box-shadow: 1px 1px 8px 4px rgba(255, 255, 255, 0.15);
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
}

#pdfjs_holder #pdfjs_menu .closepdf {
  display: inline-block;
}

#pdfjs_holder #pdfjs_menu i {
  transform: rotate(-90deg) translateX(5px);
  padding-right: 10px;
}

#pdfjs_holder #pdfjs_menu .ext {
  border: 1px solid #fff;
  position: fixed;
  right: 20px;
  color: #fff;
  border-radius: 8px;
  padding: 4px;
  z-index: 9999;
}

#pdfjs_holder #pdfjs {
  padding: 20px;
}

.loading-inner {
  display: flex;
  position: absolute;
  z-index: 1;
  top: 0;
  background: #000;
  color: #fff;
  align-content: center;
  align-items: center;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  font-weight: bold;
  font-size: 30px;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 1px 1px 70px 23px rgba(123, 123, 123, 0.1);
}

canvas {
  box-shadow: 1px 1px 6px 1px #e3e3e3;
  margin: 20px 0px;
}

@media screen and (min-width: 1024px) {
  #pdfjs_holder {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(150%);
  }
  #pdfjs_holder #pdfjs_menu {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-top: 100px;
    margin-left: 200px;
    margin-right: 200px;
    padding-top: 20px;
    text-align: right;
  }
  #pdfjs_holder #pdfjs_container {
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: center;
    background: #fff;
    margin: 0 200px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  #pdfjs_holder #pdfjs_container img {
    max-height: calc(100vh - 300px);
  }
}

#onboarding {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99999;
  font-family: "Sen", sans-serif;
  background-color: #fff;
  background-image: url(/HR/modules/onboarding/g/squiggly.png);
  background-repeat: repeat-x;
  transition: background-position .3s ease-in;
  overflow-y: auto;
}

#onboarding .list-group-item {
  border: 0 !important;
  border-bottom: 1px solid #d7d7d7 !important;
}

#onboarding .form-error {
  background: #ffd7d7;
}

#onboarding .onboarding-holder {
  width: 100%;
  max-width: 500px;
  margin: auto;
}

.ob_step {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: .3s ease-in;
  transform: translateX(110%);
  overflow-x: auto;
}

.ob_step.active {
  transform: translateX(0%);
}

.ob_step.step_done {
  transform: translateX(-110%);
}

.ob_step .inner {
  flex-grow: 1;
  padding: 50px 50px 100px 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.ob_step .inner .img-wrap {
  position: relative;
  background-image: url(/HR/modules/onboarding/g/ellipse-f.png), url(/HR/modules/onboarding/g/ellipse-b.png);
  background-size: cover, contain;
  background-position: center, center 33%;
  background-repeat: no-repeat;
  max-width: 90%;
}

.ob_step .inner .img-wrap img {
  max-width: 100%;
  max-height: 500px;
  height: auto;
}

.ob_step .inner h2 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 1em;
}

.ob_step .inner .text {
  line-height: 21px;
}

.ob_step .inner .ob_row {
  width: 100%;
}

.ob_step .inner .ob_row input {
  height: unset;
  background: #fff;
  font-size: 12px !important;
  text-align: center;
  padding: 12px;
  border-radius: 7px;
  box-shadow: unset;
  border: 1px solid #D4D4D4;
  text-transform: uppercase;
  color: #000;
}

.ob_step .inner .ob_row input.not-valid {
  border-color: #E80B0B;
}

.ob_step .inner .ob_row + .ob_row {
  margin-top: 10px;
}

.ob_step footer {
  background: #1791C5;
  text-align: center;
  padding: 30px;
}

.ob_step footer p, .ob_step footer a {
  color: #fff;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
}

.ob_step footer p .arrow, .ob_step footer a .arrow {
  font-size: 1.2em;
  margin-left: 5px;
}

.ob_step .btn-update {
  display: block;
  background: #1791C5;
  text-align: center;
  padding: 30px;
  display: block;
  color: #fff;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
}

.ob_step .btn-update .arrow {
  font-size: 1.2em;
  margin-left: 5px;
}

@keyframes arrowAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.arrowDown {
  animation-name: arrowAnimation;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  font-size: 40px;
}

.violation-report {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #fff;
  z-index: 9999;
  padding-top: 40px;
  padding-bottom: 95px;
  font-family: 'Cera Pro', sans-serif;
  overflow-y: scroll;
}

.violation-report p {
  margin-bottom: 4px;
  font-weight: 300;
  line-height: 1.69;
}

.violation-report h1 {
  font-size: 19px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 22px;
}

.violation-report .single-report {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 30px 30px 30px;
  font-size: 13px;
  border-top: 1px solid #CF4949;
}

.violation-report .single-report.report-not-approved {
  background: #FFF6F6;
}

.violation-report .single-report.report-approved {
  background: #fff;
}

.violation-report .single-report .tag {
  background: #CF4949;
  color: #fff;
  display: inline-block;
  margin-left: auto;
  font-size: 10px;
  padding: 6px 7px;
  border-radius: 0px 0px 3px 3px;
}

.violation-report .single-report .commented-and-approved {
  font-size: 15px;
  color: #308762;
  font-weight: 700;
}

.violation-report .single-report .commented-and-approved i {
  width: 26px;
  height: 26px;
  background: #308762;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.violation-report .single-report .datetime, .violation-report .single-report strong {
  font-weight: 700;
}

.violation-report .single-report .size {
  margin-bottom: 17px;
}

.violation-report .single-report .comment {
  background: none;
}

.violation-report .hidden-wrapper {
  height: 0;
  overflow: hidden;
  width: 100%;
  transition: height .3s;
}

.violation-report .textarea-wrapper {
  width: 100%;
  margin-bottom: 17px;
}

.violation-report .textarea-wrapper textarea {
  resize: none;
  width: 100%;
  border: 1px solid #B1B1B1;
  border-radius: 5px;
  outline: none;
  padding: 10px;
}

.violation-report .button-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.violation-report .button {
  display: inline-block;
  transition: color .3s ease-in-out, border .3s ease-in-out, background .3s ease-in-out;
  cursor: pointer;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  padding: .8em 1.5em;
  color: #fff;
}

.violation-report .button.button-black {
  background: #333333;
}

.violation-report .button.button-grey {
  background: #818181;
}

.violation-report .button.button-green {
  background: #308762;
}

.violation-report .bottom {
  background: #333333;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 2;
  height: 95px;
  display: flex;
  padding: 0 35px;
  transition: .3s ease;
}

.violation-report .bottom.valid {
  background: #308762;
}

.violation-report .bottom p {
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: auto;
  font-size: 14px;
  line-height: 1.3;
}

.violation-report .bottom .proceed-text {
  display: flex;
  align-items: center;
}

.violation-report .bottom .proceed-text svg {
  margin-left: 10px;
}

.idha {
  position: fixed;
  z-index: 999;
  top: 0;
  bottom: 0;
  left: 0;
  background: red;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-flow: column;
  color: #23325d;
  background: #f0f4fa;
}

.idha ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.idha ul li {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.idha ul li span {
  background: #1e4ca2;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.idha a.sign {
  display: block !important;
  color: #fff !important;
  background: #de5050 !important;
  padding: 16px 24px !important;
  margin-top: 50px;
  border-radius: 8px;
  font-weight: bold;
}

.idha .Logo_wrapper__czqgz {
  fill: #1e4ca2;
  margin-bottom: 50px;
}

.idha .idha_footer {
  background: #333333;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 2;
  height: 95px;
  display: flex;
  padding: 0 35px;
  transition: .3s ease;
}

.idha .idha_footer.valid {
  background: #1e4ca2;
}

.idha .idha_footer p {
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: auto;
  font-size: 14px;
  line-height: 1.3;
}

.idha .idha_footer .proceed-text {
  display: flex;
  align-items: center;
}

.idha .idha_footer .proceed-text svg {
  margin-left: 10px;
}

.ot-top h2 {
  padding-left: 30px;
  font-weight: bold;
}

.ot-content {
  background: #fff;
  margin-top: -10px;
}

.ot-menu {
  overflow: hidden;
  margin-left: -15px;
}

.ot-menu li {
  display: inline-flex;
  background: blue;
  margin-right: 5px;
  position: relative;
  height: 40px;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 10px 20px;
  margin-right: 10px;
}

.ot-menu li::before {
  position: absolute;
  content: ' ';
  background: blue;
  top: -10px;
  left: -10px;
  bottom: -10px;
  width: 20px;
  transform: rotate(30deg);
}

.ot-menu li::after {
  position: absolute;
  content: ' ';
  background: blue;
  top: -10px;
  right: -10px;
  bottom: -10px;
  width: 20px;
  transform: rotate(30deg);
}

.ot-menu li a {
  font-size: 15px;
}

.ot-menu li a:hover {
  text-decoration: none;
}

.ot-menu li a.active {
  font-weight: bold;
}

.ot-menu li a i {
  padding-right: 5px;
}

.ot-menu .white {
  background: #fff;
}

.ot-menu .white::before, .ot-menu .white::after {
  background: #fff;
}

.ot-menu .white a {
  color: #000 !important;
}

.ot-menu .blue {
  background: #0072ff;
}

.ot-menu .blue::before, .ot-menu .blue::after {
  background: #0072ff;
}

.ot-menu .blue a {
  color: #fff !important;
}

.ot-menu .toplist {
  background: #ffc800;
}

.ot-menu .toplist::before, .ot-menu .toplist::after {
  background: #ffc800;
}

.ot-menu .toplist a {
  color: #896c01 !important;
}

.ot-menu .stats {
  background: #2dc700;
}

.ot-menu .stats::before, .ot-menu .stats::after {
  background: #2dc700;
}

.ot-menu .stats a {
  color: #145502 !important;
}

.ot-actionholder {
  background: #050049;
  display: flex;
  padding: 10px 0;
  padding-top: 14px;
  margin-bottom: -1px;
  align-content: center;
  align-items: center;
}

.ot-actionholder input, .ot-actionholder select {
  background: #040035 !important;
  color: #f1f1f1 !important;
  border: 0 !important;
}

.ot-actionholder .ot-nav-left {
  padding-left: 0 !important;
  margin-left: 10px !important;
}

.ot-actionholder .ot-nav-left li {
  display: inline-block;
}

.ot-actionholder .ot-nav-right {
  margin-left: auto;
  margin-right: 10px;
}

.ot-actionholder .ot-nav-right li {
  display: inline-block;
}

.ot-actionholder .btn {
  color: #fff !important;
  background: #005f7d !important;
}

.ot-actionholder .btn-danger {
  color: #fff !important;
  background: #b10000 !important;
}

.ot-actionholder .ot-filter input {
  background: #040035;
  border: 0 !important;
  border-radius: 20px !important;
  width: 80px;
  color: #f1f1f1;
  transition: width .3s ease;
}

.ot-actionholder .ot-filter input::placeholder {
  color: #f1f1f1;
}

.ot-actionholder .ot-filter input:focus {
  width: 180px;
}

.ot-table {
  position: relative;
  border-collapse: collapse;
}

.ot-table thead > tr:first-child > th {
  background-color: rgba(240, 240, 240, 0.8) !important;
  z-index: 1;
  position: sticky;
  top: 0;
}

.ot-table tr th {
  padding: 5px;
  background: #f1f1f1;
}

.ot-table tr td {
  padding: 5px;
}

.ot-list-tabs {
  clear: both;
  /*padding: 40px 40px 20px 40px;*/
  display: flex;
  align-items: center;
}

.ot-list-tabs .env-list-info {
  margin-right: 30px;
  font-weight: bold;
}

.ot-list-tabs .env-list-tabs-wrap .env-tab {
  display: inline-block;
  padding: 8px 16px;
  margin-right: 10px;
  cursor: pointer;
  color: #000;
  background: #eee;
  border-radius: 10px;
  transition: color, background 0.3s ease;
}

.ot-list-tabs .env-list-tabs-wrap .env-tab.active {
  border-bottom: 2px solid #002937;
  font-weight: bold;
  background: #005f7d;
  color: #fff;
}

.ot-list-tabs .env-list-tabs-wrap .env-tab:hover {
  background: #005f7d;
  color: #fff;
  text-decoration: none !important;
}

.colors li {
  list-style: none;
}

.chart_ot {
  background: #fff;
}

#ot_month_selector {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e3e3e3;
}

#ot_month_selector .ot_month_sel {
  display: inline-block;
  background: #e3e3e3;
  padding: 8px 16px;
  cursor: pointer;
}

#ot_month_selector .ot_month_sel.active {
  background: #0072ff;
  color: #fff;
}

.lock-header {
  height: 100% !important;
  overflow-y: auto;
  max-height: calc(100vh - 400px);
  width: 100%;
  padding: 0;
}

.lock-header thead > tr:first-child > th {
  background-color: rgba(240, 240, 240, 0.9);
  z-index: 1;
  position: sticky;
  top: 0;
}

.lock-header > table {
  border-collapse: collapse;
  width: 100%;
}

.lock-header tfoot td {
  background-color: #f0f0f0;
  z-index: 99;
  position: sticky;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .lock-header {
    overflow: unset;
    max-height: auto;
  }
  .lock-header table,
  .lock-header thead,
  .lock-header tbody,
  .lock-header th,
  .lock-header td,
  .lock-header tr {
    display: block;
  }
  .lock-header thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .lock-header tr {
    border: 1px solid #ccc;
  }
  .lock-header td {
    /* Behave like a "row" */
    border: none;
    position: relative;
    padding-left: 50%;
    text-align: left;
    padding-top: 15px;
    width: 100% !important;
  }
  .lock-header td:before {
    /* Now like a table header */
    /*position: absolute;*/
    /* Top/left values mimic padding */
    /*top: -10px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;*/
    /* Label the data */
    /*content: 'hello';*/
  }
  .colors {
    display: none !important;
  }
  .env-list-info {
    display: none !important;
  }
  .ot-actionholder {
    display: block !important;
  }
  .ot-nav-right {
    padding-left: 20px !important;
  }
  .ot-menu {
    padding-left: 40px !important;
  }
  .ot-menu li {
    padding: 10px 20px !important;
    margin: 0 !important;
    text-align: center;
    width: 170px;
    margin-bottom: 10px !important;
    border-radius: 20px;
  }
  .ot-menu li::before {
    display: none !important;
  }
  .ot-menu li::after {
    display: none !important;
  }
}

/*END*/
.create-ata {
  padding: 20px 25px;
  display: block;
  background: #fff;
  font-weight: 700;
  font-size: 15px;
  color: #000 !important;
  background: #fff;
  transition: background .3s ease-in-out, margin-bottom .3s ease-in-out;
  margin-bottom: 7px;
}

.create-ata i {
  margin-right: 12px;
}

.create-ata.active {
  margin-bottom: 0;
  background: #D6D6D6;
}

.create-ata div {
  display: none;
}

.create-ata div.active {
  display: block;
}

.glyphicon {
  color: #000;
}

.leftmenu ul li a i {
  background: #000 !important;
}

.headernav .barcontent img {
  max-height: 52px;
}
