/**
 * Roundcube Webmail styles for the Elastic skin
 *
 * Copyright (c) The Roundcube Dev Team
 *
 * The contents are subject to the Creative Commons Attribution-ShareAlike
 * License. It is allowed to copy, distribute, transmit and to adapt the work
 * by keeping credits to the original authors in the README.md file.
 * See http://creativecommons.org/licenses/by-sa/3.0/ for details.
 */
.ui.alert > i.icon:before {
  font-size: 1.25em;display: block;float: left;margin: 0 0.25rem 0 0;width: 1.18em;height: 1em;font-family: 'Icons';font-style: normal;font-weight: 900;text-decoration: inherit;text-align: center;speak: none;font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;-webkit-font-smoothing: antialiased;
}
/*** Fonts ***/
@font-face {
  font-family: 'Icons';
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/fa-solid-900.woff2") format('woff2'), url("../fonts/fa-solid-900.woff") format('woff');
}
@font-face {
  font-family: 'Icons';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/fa-regular-400.woff2") format('woff2'), url("../fonts/fa-regular-400.woff") format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'), url('../fonts/roboto-v29-regular.woff2') format('woff2'), url('../fonts/roboto-v29-regular.woff') format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: local('Roboto Italic'), local('Roboto-Italic'), url('../fonts/roboto-v29-italic.woff2') format('woff2'), url('../fonts/roboto-v29-italic.woff') format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Bold'), local('Roboto-Bold'), url('../fonts/roboto-v29-regular-700.woff2') format('woff2'), url('../fonts/roboto-v29-regular-700.woff') format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  src: local('Roboto Bold Italic'), local('Roboto-BoldItalic'), url('../fonts/roboto-v29-italic-700.woff2') format('woff2'), url('../fonts/roboto-v29-italic-700.woff') format('woff');
}
/* Reset some Bootstrap style */
body,
button,
input,
optgroup,
select,
textarea,
.popover {
  font-family: Roboto, sans-serif;
}
button,
input,
select,
textarea {
  line-height: initial;
}
input {
  vertical-align: middle;
}
a {
  color: #00acff;
}
a:hover {
  color: #008acc;
}
a.disabled {
  pointer-events: none;
}
a.disabled:not(.btn) {
  opacity: 0.5;
}
/* Scrollbar styles */
html:not(.touch) ::-webkit-scrollbar {
  width: 6px;
}
html {
  scrollbar-color: #c1c1c1 #f1f1f1;
}
html:not(.touch) ::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}
html:not(.touch) ::-webkit-scrollbar-thumb {
  background-color: #c1c1c1;
}
:root {
  --order: 1.5;
}
.move-up {
  transform: translateY(50px);
  animation: move-up calc(calc(var(--order) * 200ms) + 100ms) ease 0s forwards;
}
@keyframes move-up {
  0% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
.move-down {
  transform: translateY(-50px);
  animation: move-down calc(calc(var(--order) * 200ms) + 100ms) ease 0s forwards;
}
@keyframes move-down {
  0% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0px);
  }
}
.bounce {
  animation: bounce calc(calc(var(--order) * 200ms) + 100ms) linear 0s infinite;
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(5px);
  }
  75% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}
.move-right {
  transform: translateX(-100px);
  animation: move-right calc(calc(var(--order) * 200ms) + 100ms) ease 0s forwards;
}
@keyframes move-right {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(0px);
  }
}
.move-left {
  transform: translateX(100px);
  animation: move-left calc(calc(var(--order) * 200ms) + 100ms) ease 0s forwards;
}
@keyframes move-left {
  0% {
    transform: translateX(100px);
  }
  100% {
    transform: translateX(0px);
  }
}
.animate {
  transition: all calc(calc(var(--order) * 200ms) + 100ms) ease 0s forwards;
}
@keyframes shrink-height {
  0% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}
@keyframes expand-width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.fade-on {
  animation: fade-on calc(calc(var(--order) * 200ms) + 100ms) ease 0s forwards;
}
@keyframes fade-on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.scale-up {
  animation: scale-up calc(calc(var(--order) * 200ms) + 100ms) ease 0s forwards;
}
@keyframes scale-up {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/**
 * Roundcube Webmail styles for the Elastic skin
 *
 * Copyright (c) The Roundcube Dev Team
 *
 * The contents are subject to the Creative Commons Attribution-ShareAlike
 * License. It is allowed to copy, distribute, transmit and to adapt the work
 * by keeping credits to the original authors in the README.md file.
 * See http://creativecommons.org/licenses/by-sa/3.0/ for details.
 */
/*** UI Messages ***/
.ui.alert {
  margin: 0;
  margin-bottom: 0.2rem;
  opacity: 0.95;
  width: 100%;
  padding: 0.75em;
  color: #2c363a;
  border: 1px solid transparent;
  background-color: rgba(55, 190, 255, 0.05);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .ui.alert {
    border: 0;
  }
}
.ui.alert span {
  margin: auto 0;
}
.ui.alert > i.icon {
  line-height: 1;
  color: #4d5f66;
  margin: auto 0;
}
.ui.alert > i.icon:before {
  content: "\f05a";
  margin-right: 0.6rem;
}
.ui.alert .btn {
  margin-left: 0.5rem;
}
.ui.alert.loading {
  color: #6b7275;
}
.ui.alert.loading > i.icon:before {
  content: "\f1ce";
  -webkit-animation: spinner-border 1.5s infinite linear;
  animation: spinner-border 1.5s infinite linear;
  width: 1em;
}
.ui.alert.alert-success > i.icon:before {
  content: "\f058";
  color: #41b849;
}
.ui.alert.alert-warning > i.icon:before {
  content: "\f071";
  color: #ffd452;
}
.ui.alert.alert-danger > i.icon:before {
  content: "\f06a";
  color: #ff5552;
}
.ui.alert.vcardattachment > i.icon:before {
  content: "\f2bb";
}
.ui.alert.enigmaattachment > i.icon:before {
  content: "\f084";
}
.ui.alert.signed > i.icon:before,
.ui.alert.encrypted > i.icon:before {
  content: "\f023";
}
.ui.alert.chat > i.icon:before {
  content: "\f075";
}
.ui.alert .boxbuttons {
  white-space: nowrap;
}
.ui.alert .boxbuttons .btn {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}
@media screen and (max-width: 480px) {
  .ui.alert .boxbuttons {
    display: flex;
    flex-direction: column;
  }
  .ui.alert .boxbuttons .btn {
    max-width: 160px;
  }
  .ui.alert .boxbuttons .btn:not(:first-child) {
    margin-top: 0.25rem;
  }
}
.ui.alert.aligned-buttons {
  display: flex;
}
.ui.alert.aligned-buttons span {
  flex: 1;
}
.ui.alert a:not(.btn) {
  color: #37beff;
  font-weight: normal;
}
.ui.alert h3 {
  font-weight: bold;
  font-size: 1.2rem;
}
.ui.alert p {
  margin: 1rem 0;
}
.ui.alert.boxerror,
.ui.alert.boxconfirmation,
.ui.alert.boxinformation,
.ui.alert.boxwarning {
  padding: 0.5em;
  border-radius: 0;
}
.ui.alert.boxerror i.icon,
.ui.alert.boxconfirmation i.icon,
.ui.alert.boxinformation i.icon,
.ui.alert.boxwarning i.icon {
  font-size: 1.5em !important;
}
.ui.alert.boxerror {
  background-color: rgba(255, 85, 82, 0.2);
}
.ui.alert.boxinformation {
  background-color: rgba(55, 190, 255, 0.2);
}
.ui.alert.boxconfirmation {
  background-color: rgba(65, 184, 73, 0.2);
}
.ui.alert.boxwarning {
  background-color: rgba(255, 212, 82, 0.2);
}
.ui.alert + table {
  margin-top: 1em;
}
#messagestack {
  position: absolute;
  bottom: 0.5em;
  right: 0.7em;
  z-index: 105;
  width: 320px;
  height: auto;
  max-height: 85%;
}
@media screen and (max-width: 480px) {
  #messagestack {
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
  }
}
#messagestack div {
  background-color: #2c363a;
  color: #fff;
}
@media screen and (max-width: 480px) {
  #messagestack div {
    margin: 0;
    border-radius: 0;
    min-height: 4.2rem;
  }
}
#messagestack div.voice {
  position: absolute;
  top: -1000px;
}
#messagestack div i.icon {
  font-size: 1.5em !important;
}
#messagestack div > i.icon:before {
  color: #fff;
}
#messagestack div:last-child {
  margin-bottom: 0;
}
#messagestack .loading {
  background-color: #6b7275;
}
#messagestack .alert-info.information {
  background-color: #37beff;
}
#messagestack .alert-success {
  background-color: #41b849;
}
#messagestack .alert-warning {
  background-color: #ffd452;
  color: #2c363a;
}
#messagestack .alert-warning > i.icon:before {
  color: #2c363a;
}
#messagestack .alert-danger {
  background-color: #ff5552;
}
#messagestack a {
  color: inherit !important;
  text-decoration: underline;
  cursor: pointer;
}
.auth-container {
  overflow-y: auto;
  color: #f1f1f1;
}
.auth-container a {
  text-decoration: none;
}
.auth-container .carousel-item {
  background-size: cover;
  background-repeat: no-repeat;
}
.auth-container .slider-content {
  left: 15%;
  min-width: 40%;
  max-width: 40%;
}
@media screen and (max-width: 1200px) {
  .auth-container .slider-content {
    left: 5%;
  }
  .auth-container .slider-content .bottom-slide {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .auth-container .slider-content .bottom-slide .slider-statistic {
    justify-content: start !important;
    padding-left: 25px;
    border: none                ;
  }
  .auth-container .slider-content .bottom-slide .slider-statistic .stat-content {
    margin-left: 20px;
  }
  .auth-container .slider-content .bottom-slide .stat-icon {
    width: 20px;
  }
  .auth-container .slider-content .bottom-slide > div {
    margin-top: 10px;
    width: 100%;
  }
}
.auth-container .content-container.login-container {
  right: 10%;
}
@media screen and (max-width: 1200px) {
  .auth-container .content-container.login-container {
    right: 2%;
  }
}
@media screen and (max-width: 768px) {
  .auth-container .content-container.login-container {
    right: unset;
    margin: 0 auto;
  }
}
.auth-container .content-container.login-container .saved-username {
  margin-bottom: 20px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}
.auth-container .content-container.login-container .saved-username span {
  font-weight: 600;
}
.auth-container .content-container.login-container .saved-username:hover {
  background: rgba(255, 255, 255, 0.2);
}
.auth-container .content-container.login-container .saved-username .greeting-display {
  font-size: 10px;
}
.auth-container .content-container .slide-left {
  padding: 0 40px 0 50px;
  color: #fff;
}
.auth-container .content-container .slide-left .slider-title {
  font-size: 40px;
  font-family: 'Open Sans', 'Quicksand', sans-serif;
  text-shadow: 0 0 10px rgba(51, 51, 51, 0.58);
  line-height: 1.05;
}
@media screen and (max-width: 1200px) {
  .auth-container .content-container .slide-left .slider-title {
    font-size: 30px;
  }
}
.auth-container .content-container .slide-left .slider-description {
  line-height: 1.6;
}
.auth-container .content-container .slide-left .text-color-secondary {
  color: #EBC518 !important;
}
.auth-container .content-container .inner-container {
  background: rgba(var(--bs-white), 0.5);
  backdrop-filter: blur(20px);
}
@include dark-mode {
  background: rgba(var(--primary-color-rgb), 0.5);
  color: whitesmoke;
}
.auth-container .bg-shadow {
  background: linear-gradient(1deg, rgba(0, 0, 0, 0.51), transparent);
}
.auth-container .open-sans-800 {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings: "wdth" 800;
}
.auth-container .open-sans {
  font-family: "Open Sans", sans-serif !important;
  font-optical-sizing: auto;
  font-style: normal;
}
.auth-container .copyright {
  font-size: 12px;
}
.auth-container .form-floating > label {
  color: whitesmoke;
  border: var(--bs-border-width) solid transparent;
  transform-origin: 0 0;
}
.auth-container .btn-outline-secondary:hover {
  border-color: #ffd452;
  background-color: #ffd452;
  color: #1a2a32 !important;
}
.auth-container .bottom-slide .slider-statistic {
  border-right: 1px solid #EBC518;
  color: whitesmoke;
}
.auth-container .bottom-slide .slider-statistic .stat-title {
  font-size: medium;
  font-style: italic;
}
.auth-container .content_button .button-scattered {
  transition: all 0.35s ease-in-out;
  display: flex;
  justify-content: flex-start;
}
.auth-container .content_button .button-scattered .text {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  font-weight: 500;
  font-size: 0.875rem;
  color: #1a2a32;
}
.auth-container .content_button .button-scattered .text::before {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #EBC518;
  transition: all 0.75s cubic-bezier(0.25, 0.1, 0.1, 1);
  content: '';
}
.auth-container .content_button .button-scattered .text span {
  position: relative;
  z-index: 3;
}
.auth-container .content_button .button-scattered .arrow {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EBC518;
  z-index: 3;
}
.auth-container .content_button .button-scattered .arrow i {
  color: #1a2a32 !important;
  font-size: inherit !important;
  transform: rotate(314deg);
  transition: all 0.35s ease-in-out;
}
.auth-container .content_button .button-scattered:hover .text::before {
  width: calc(100% + 50px);
  height: 100%;
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #EBC518;
  transition: all 0.75s cubic-bezier(0.25, 0.1, 0.1, 1);
  content: '';
}
.auth-container .content_button .button-scattered:hover .arrow {
  color: #1a2a32;
  background: #EBC518;
  transition: all 0.35s ease-in-out;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.auth-container .content_button .button-scattered:hover .arrow i {
  transform: rotate(0deg);
}
.auth-container .carousel-control-next,
.auth-container .carousel-control-prev {
  top: unset;
  bottom: unset;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .auth-container .carousel-control-next,
  .auth-container .carousel-control-prev {
    display: none;
  }
}
#login-form .form-control {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: white;
}
#login-form .btn-password-toggle {
  left: 92%;
}
.px-6 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}
@media screen and (max-width: 480px) {
  .px-6 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
.blinking-cursor::after {
  content: '|';
  animation: blink 1s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
[data-type-effect]::after {
  content: '|';
  animation: blink 1s infinite;
}
/**
 * Roundcube webmail styles for the Elastic skin
 *
 * Copyright (c) The Roundcube Dev Team
 *
 * The contents are subject to the Creative Commons Attribution-ShareAlike
 * License. It is allowed to copy, distribute, transmit and to adapt the work
 * by keeping credits to the original authors in the README.md file.
 * See http://creativecommons.org/licenses/by-sa/3.0/ for details.
 */
html.dark-mode {
  scrollbar-color: #79650a #4d6066;
}
html.dark-mode:not(.touch) ::-webkit-scrollbar-track {
  background-color: #4d6066;
}
html.dark-mode:not(.touch) ::-webkit-scrollbar-thumb {
  background-color: #79650a;
}
html.dark-mode body {
  color: #c5d1d3;
  background: #1a2a32;
  background: linear-gradient(161deg, #1a2a32 0%, rgba(26, 42, 50, 0.79) 32%, #d9af59 100%);
}
html.dark-mode #logo {
  opacity: 0.8;
}
html.dark-mode #layout-list,
html.dark-mode #layout-content,
html.dark-mode #layout-sidebar,
html.dark-mode #layout > div > .header,
html.dark-mode #layout > div > .footer,
html.dark-mode .popup .listbox .footer,
html.dark-mode .menu.pagenav.pagenav-list,
html.dark-mode .menu.pagenav.pagenav-list + .navlist,
html.dark-mode .menu.pagenav.pagenav-list.expanded + .navlist {
  background-color: rgba(26, 42, 50, 0.4) !important;
  border-color: #4d6066;
}
html.dark-mode #layout > div > .footer {
  font-weight: normal;
}
html.dark-mode #layout > div > .header,
html.dark-mode #layout > div > .footer {
  color: unset;
}
html.dark-mode #layout > div > .header a.button,
html.dark-mode #layout > div > .footer a.button {
  color: #c5d1d3;
}
@media screen and (min-width: 481px) {
  html.dark-mode #taskmenu a {
    color: #fff;
  }
  html.dark-mode #taskmenu a.selected {
    color: #fff;
    background: #45555c;
  }
  html.dark-mode #taskmenu a.selected:hover {
    color: #fff;
    background: #45555c;
  }
  html.dark-mode #taskmenu a:hover {
    color: #fff;
    background: #45555c;
  }
}
html.dark-mode #layout-menu {
  background: unset;
  border-right: 1px solid #4d6066;
}
html.dark-mode #layout-menu #taskmenu {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
  background: rgba(26, 42, 50, 0.4);
  backdrop-filter: blur(20px);
}
html.dark-mode #layout-menu .popover-header,
html.dark-mode #layout-menu .special-buttons {
  background: transparent !important;
}
@media screen and (max-width: 480px) {
  html.dark-mode #layout-menu {
    border-left: 0;
  }
  html.dark-mode #layout-menu .popover-header {
    border-bottom: 1px solid #4d6066;
  }
}
html.dark-mode #layout-menu .special-buttons a:not(:focus) {
  background: #1a2a32;
}
html.dark-mode.layout-phone #layout-menu {
  background: #161b1d;
}
html.dark-mode .searchbar {
  background-color: transparent;
  border-color: #4d6066;
}
html.dark-mode .searchbar form:before,
html.dark-mode .searchbar a,
html.dark-mode .searchbar input {
  color: unset;
}
html.dark-mode .searchbar a.selected {
  color: #41b849;
}
html.dark-mode #messagestack div {
  color: #c5d1d3;
}
html.dark-mode #messagestack div i.icon:before {
  color: #c5d1d3;
}
html.dark-mode .ui.alert.boxinformation,
html.dark-mode #messagestack .alert-info {
  background-color: #217299;
}
html.dark-mode .ui.alert.boxerror,
html.dark-mode #messagestack .alert-danger {
  background-color: #993331;
}
html.dark-mode .ui.alert.boxwarning,
html.dark-mode #messagestack .alert-warning {
  background-color: #997f31;
}
html.dark-mode .ui.alert.boxconfirmation,
html.dark-mode #messagestack .alert-success {
  background-color: #276e2c;
}
html.dark-mode #messagestack .loading {
  background-color: #2b4654;
}
html.dark-mode .ui.alert.boxinformation,
html.dark-mode .ui.alert.boxerror,
html.dark-mode .ui.alert.boxwarning,
html.dark-mode .ui.alert.boxconfirmation {
  color: #c5d1d3;
}
html.dark-mode .ui.alert.boxinformation i.icon:before,
html.dark-mode .ui.alert.boxerror i.icon:before,
html.dark-mode .ui.alert.boxwarning i.icon:before,
html.dark-mode .ui.alert.boxconfirmation i.icon:before {
  color: #c5d1d3;
}
html.dark-mode .ui.alert a:not(.btn) {
  color: #c5d1d3;
  text-decoration: underline;
}
html.dark-mode .iframe-loader {
  background-color: rgba(26, 42, 50, 0.9);
}
html.dark-mode .iframe-loader .spinner-border {
  color: #7d989c;
  border-color: currentColor #425457 currentColor currentColor;
}
html.dark-mode #taskmenu a,
html.dark-mode .menu.toolbar a {
  color: #c5d1d3;
}
html.dark-mode #taskmenu a.selected,
html.dark-mode .menu.toolbar a.selected {
  background-color: #374549;
}
html.dark-mode pre,
html.dark-mode .popover .menu li a[aria-haspopup]::after,
html.dark-mode .menu.pagenav .pagenav-text,
html.dark-mode .menu.pagenav a {
  color: unset;
}
html.dark-mode #taskmenu .action-buttons a {
  color: #37beff;
}
@media screen and (max-width: 480px) {
  html.dark-mode #taskmenu a {
    border-color: #2c373a !important;
  }
  html.dark-mode #taskmenu a.selected {
    background: transparent;
  }
}
@media screen and (min-width: 481px) and (max-width: 1024px) {
  html.dark-mode #taskmenu a {
    width: 41px;
  }
}
@media screen and (min-width: 1025px) {
  html.dark-mode #taskmenu a {
    width: 77px;
  }
}
html.dark-mode.layout-small .popover,
html.dark-mode.layout-phone .popover {
  border-left: 1px solid #4d6066;
}
html.dark-mode.layout-small .popover .menu .dropbutton a.dropdown,
html.dark-mode.layout-phone .popover .menu .dropbutton a.dropdown {
  background: transparent;
}
html.dark-mode.layout-small .popover:not(.select-menu) .listing li:last-child,
html.dark-mode.layout-phone .popover:not(.select-menu) .listing li:last-child {
  border-color: #2c373a;
}
html.dark-mode.layout-small .popover-header,
html.dark-mode.layout-phone .popover-header {
  background: #161b1d;
  border-bottom: 1px solid #4d6066;
  color: unset;
}
html.dark-mode.layout-small .popover-overlay,
html.dark-mode.layout-phone .popover-overlay {
  background: rgba(0, 0, 0, 0.7);
}
html.dark-mode #taskmenu a:hover,
html.dark-mode .popupmenu .listing li > a:not(.disabled):hover,
html.dark-mode .header a.button.icon:not(.disabled):focus,
html.dark-mode .header a.button.icon:not(.disabled):hover,
html.dark-mode .menu.toolbar .dropbutton:not(.disabled):hover,
html.dark-mode .menu a:not(.disabled):focus,
html.dark-mode .menu a:not(.disabled):hover {
  background-color: #374549;
}
html.dark-mode .menu.toolbar a.selected {
  color: #41b849;
  background: transparent;
}
html.dark-mode .menu.toolbar .dropbutton a.dropdown:hover {
  background-color: #425358;
}
html.dark-mode .proplist li.with-sublist > a.dropdown,
html.dark-mode .listing tbody td,
html.dark-mode .listing tbody td a,
html.dark-mode .listing li a {
  color: #c5d1d3;
}
html.dark-mode .listing li ul,
html.dark-mode .listing tbody td,
html.dark-mode .listing li {
  border-color: #2c373a;
}
html.dark-mode .listing li.selected,
html.dark-mode .listing li.selected > a,
html.dark-mode .listing li.selected > div > a,
html.dark-mode .listing tr.selected td {
  color: #37beff;
  background-color: #374549;
}
html.dark-mode .listing li.selected ul {
  background-color: #1a2a32;
}
html.dark-mode .listing li.selected ul div.treetoggle {
  color: #c5d1d3;
}
html.dark-mode .listing li.disabled,
html.dark-mode .listing tr.disabled td {
  color: #637e82;
}
html.dark-mode .listing li.droptarget > a,
html.dark-mode .listing tr.droptarget > td {
  background-color: #4d4d00;
}
html.dark-mode .messagelist {
  color: #c5d1d3;
}
html.dark-mode .messagelist .unread {
  background-color: rgba(26, 42, 50, 0.5);
}
html.dark-mode .messagelist tr:not(.flagged):not(.deleted) td.subject span.size,
html.dark-mode .messagelist tr:not(.flagged):not(.deleted) td.subject span.date,
html.dark-mode .messagelist tr:not(.flagged):not(.deleted) td.subject span.fromto {
  color: #8ba3a7;
}
html.dark-mode .messagelist tr:not(.flagged):not(.deleted) td.subject span.msgicon.status {
  color: #c5d1d3;
}
html.dark-mode .messagelist tr:not(.flagged):not(.deleted) td.subject span.msgicon.status.unread::before {
  color: #b88a00;
}
html.dark-mode .messagelist tr:not(.flagged):not(.deleted) span.flag {
  color: #c5d1d3;
}
html.dark-mode .messagelist tr:not(.flagged):not(.deleted).selected td.subject a,
html.dark-mode .messagelist tr:not(.flagged):not(.deleted).selected td.subject span.msgicon.status {
  color: #37beff;
}
html.dark-mode .messagelist tr.flagged:not(.deleted) td,
html.dark-mode .messagelist tr.flagged:not(.deleted) span.attachment span {
  color: #ff5552;
}
html.dark-mode .messagelist tr.deleted td span.flag,
html.dark-mode .messagelist tr.deleted td span.attachment span,
html.dark-mode .messagelist tr.deleted td.subject span.msgicon.status,
html.dark-mode .messagelist tr.deleted td.subject span.msgicon.status.unread:before,
html.dark-mode .messagelist tr.deleted td.subject span.subject a,
html.dark-mode .messagelist tr.deleted td.subject span.date,
html.dark-mode .messagelist tr.deleted td.subject span.fromto {
  color: #637e82;
}
html.dark-mode .messagelist span.attachment span {
  color: #8ba3a7;
}
html.dark-mode .folderlist li.mailbox .unreadcount {
  background-color: #4d6066;
  color: #e2e8e9;
  font-weight: normal;
}
html.dark-mode .attachmentslist {
  background-color: #374549;
  border: 0;
}
html.dark-mode .attachmentslist a {
  color: #c5d1d3;
}
html.dark-mode .attachmentslist li .attachment-name {
  color: #c5d1d3;
}
html.dark-mode .attachmentslist li .attachment-size {
  color: #8ba3a7;
}
html.dark-mode .btn {
  color: #c5d1d3;
}
html.dark-mode .btn:focus,
html.dark-mode .btn:hover {
  color: #e2e8e9;
}
html.dark-mode .btn:disabled {
  opacity: 0.5 !important;
}
html.dark-mode .btn-primary {
  background-color: #006a9d;
  color: #e2e8e9;
}
html.dark-mode .btn-primary:hover:not(:disabled) {
  background-color: #007bb7;
}
html.dark-mode .btn-secondary {
  background-color: #4d6066;
  color: #e2e8e9;
}
html.dark-mode .btn-secondary:hover:not(:disabled) {
  background-color: #586e75;
}
html.dark-mode .btn-danger {
  background-color: #993331;
  color: #e2e8e9;
}
html.dark-mode .btn-danger:hover:not(:disabled) {
  background-color: #ac3937;
}
html.dark-mode .floating-action-buttons a.button {
  box-shadow: none;
  background: #006a9d;
}
html.dark-mode .custom-file-label,
html.dark-mode .form-control {
  background-color: rgba(26, 42, 50, 0.5);
  color: #c5d1d3;
}
html.dark-mode .custom-file-label:not(.is-invalid),
html.dark-mode .form-control:not(.is-invalid) {
  border-color: #7c949c;
}
html.dark-mode .custom-file-label:focus,
html.dark-mode .form-control:focus {
  background-color: rgba(26, 42, 50, 0.5);
}
html.dark-mode .custom-file-label:focus:not(.is-invalid),
html.dark-mode .form-control:focus:not(.is-invalid) {
  color: #e2e7e9 !important;
  border-color: #37beff;
}
html.dark-mode .custom-file-label::after {
  color: #c5d1d3;
  background-color: #374549;
}
html.dark-mode .custom-select {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23c5d1d3' viewBox='0 0 4 5'%3e%3cpath d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center / 8px 10px;
}
html.dark-mode .custom-switch .custom-control-label::before {
  background-color: #4d6066;
}
html.dark-mode .custom-switch .custom-control-label::after {
  background-color: #c5d1d3;
}
html.dark-mode .custom-switch .custom-control-input:disabled ~ .custom-control-label {
  opacity: 0.4;
}
html.dark-mode .custom-switch .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #006a9d;
}
html.dark-mode .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #c5d1d3;
}
html.dark-mode input:disabled,
html.dark-mode select:disabled {
  opacity: 0.5;
}
html.dark-mode .multi-input:not(.is-invalid) > .content {
  border-color: #7c949c;
}
html.dark-mode .multi-input:not(.is-invalid) > .content.focused {
  border-color: #37beff;
}
html.dark-mode .input-group-text {
  color: #c5d1d3;
  background-color: #374549;
  border-color: #7c949c;
}
html.dark-mode .input-group a:focus {
  border-color: #37beff;
  box-shadow: 0 0 0 0.2rem rgba(55, 190, 255, 0.25);
  z-index: 1;
}
html.dark-mode .form-control-plaintext {
  color: unset;
}
html.dark-mode .recipient-input.focus {
  color: #e2e7e9;
  background-color: #233843;
  border-color: #37beff;
}
html.dark-mode .recipient-input a.button.icon,
html.dark-mode .recipient-input input {
  color: #c5d1d3;
}
html.dark-mode .recipient-input .recipient {
  background-color: #374549;
  border-color: #7c949c;
}
html.dark-mode .file-upload {
  border-color: #4d6066;
}
html.dark-mode .file-upload:after {
  mix-blend-mode: soft-light;
}
html.dark-mode .file-upload.droptarget.active {
  border-color: #c5d1d3;
}
html.dark-mode .file-upload.droptarget.hover {
  border-color: #c5d1d3;
  background-color: #374549;
}
html.dark-mode .file-upload .attachmentslist {
  background: transparent;
}
html.dark-mode .image-upload {
  background-color: #374549;
}
html.dark-mode .image-upload a.button {
  background-color: rgba(26, 42, 50, 0.25);
}
html.dark-mode .formcontent.raweditor .CodeMirror {
  color: #c5d1d3;
  background-color: #1a2a32;
  border-color: #7c949c;
}
html.dark-mode .formcontent.raweditor .CodeMirror-focused {
  background-color: #233843;
  border-color: #37beff;
}
html.dark-mode .CodeMirror-selected,
html.dark-mode .CodeMirror-line::selection,
html.dark-mode .CodeMirror-line > span::selection,
html.dark-mode .CodeMirror-line > span > span::selection {
  background: #374549;
}
html.dark-mode .CodeMirror-gutters {
  background-color: #212a2c;
  border: 0;
}
html.dark-mode .CodeMirror-activeline-background {
  background: #374549;
}
html.dark-mode .skinselection .skinthumbnail {
  border-color: #7c949c;
  background: transparent;
}
html.dark-mode .html-editor .editor-toolbar {
  background-color: #374549;
  border-color: #7c949c;
}
html.dark-mode .html-editor .editor-toolbar .mce-i-html {
  color: unset;
}
html.dark-mode .html-editor .editor-toolbar .mce-i-html:hover,
html.dark-mode .html-editor .editor-toolbar .mce-i-html:focus {
  background-color: #586e75;
  border-color: transparent;
}
html.dark-mode .tox.tox-tinymce {
  border-color: #7c949c;
}
html.dark-mode .tox .tox-toolbar {
  background-color: #374549;
  border-color: #7c949c;
}
html.dark-mode .tox .tox-toolbar-overlord > div {
  background: url("data:image/svg+xml,%3Csvg height='33px' viewBox='0 0 40 33px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='32px' width='100' height='1' fill='%237c949c'/%3E%3C/svg%3E") #374549;
}
html.dark-mode .tox .tox-pop.tox-pop--top:before,
html.dark-mode .tox .tox-pop.tox-pop--top:after {
  border-bottom-color: #8b9fa7;
}
html.dark-mode .tox .tox-pop__dialog {
  box-shadow: none;
  border-color: #8b9fa7;
}
html.dark-mode .tox .tox-tbtn,
html.dark-mode .tox .tox-split-button,
html.dark-mode .tox .tox-swatches__picker-btn {
  color: #c5d1d3;
}
html.dark-mode .tox .tox-tbtn svg,
html.dark-mode .tox .tox-split-button svg,
html.dark-mode .tox .tox-swatches__picker-btn svg {
  fill: #c5d1d3 !important;
}
html.dark-mode .tox .tox-tbtn:hover,
html.dark-mode .tox .tox-split-button:hover,
html.dark-mode .tox .tox-swatches__picker-btn:hover,
html.dark-mode .tox .tox-tbtn:focus,
html.dark-mode .tox .tox-split-button:focus,
html.dark-mode .tox .tox-swatches__picker-btn:focus {
  color: #c5d1d3;
  background: #586e75;
  box-shadow: none;
}
html.dark-mode .tox .tox-tbtn--enabled {
  background: #586e75;
}
html.dark-mode .tox .tox-button--naked:focus:not(:disabled),
html.dark-mode .tox .tox-button--naked.tox-button--icon:hover:not(:disabled) {
  color: #d4ddde;
  background-color: #586e75;
  border-color: transparent;
}
html.dark-mode .tox .tox-button--naked:disabled {
  background: transparent;
  border: transparent;
}
html.dark-mode .tox .tox-dialog__header .tox-button--naked:hover {
  background: transparent !important;
}
html.dark-mode .tox .tox-selectfield select {
  background: transparent;
  color: #c5d1d3;
}
html.dark-mode .tox .tox-selectfield svg {
  fill: #c5d1d3;
}
html.dark-mode .tox .tox-color-input span::before {
  background-color: #c5d1d3;
}
html.dark-mode .tox .tox-toolbar__group:not(:last-of-type) {
  border-color: #7c949c;
}
html.dark-mode .tox .tox-dialog,
html.dark-mode .tox .tox-dialog__header,
html.dark-mode .tox .tox-dialog__body,
html.dark-mode .tox .tox-dialog__footer,
html.dark-mode .tox .tox-dialog__title {
  color: #c5d1d3;
  border-color: #4d6066;
  background-color: #1a2a32;
}
html.dark-mode .tox .tox-textfield,
html.dark-mode .tox .tox-color-input > input,
html.dark-mode .tox .tox-label,
html.dark-mode .tox .tox-dialog__body-nav-item,
html.dark-mode .tox .tox-button--naked,
html.dark-mode .tox .tox-dialog__header .tox-button,
html.dark-mode .tox .tox-insert-table-picker__label {
  color: #c5d1d3;
}
html.dark-mode .tox .tox-dialog__footer .tox-button {
  background-color: #006a9d;
  color: #e2e8e9;
}
html.dark-mode .tox .tox-dialog__footer .tox-button:disabled {
  opacity: 0.5;
}
@media screen and (max-width: 480px) {
  html.dark-mode .tox .tox-dialog__footer .tox-button {
    color: #c5d1d3 !important;
  }
}
html.dark-mode .tox .tox-dialog__footer .tox-button:focus:not(:disabled) {
  background-color: #006a9d;
}
html.dark-mode .tox .tox-dialog__footer .tox-button:hover:not(:disabled) {
  background-color: #007bb7;
}
html.dark-mode .tox .tox-dialog__footer .tox-button.tox-button--secondary {
  background-color: #4d6066;
  color: #e2e8e9;
}
html.dark-mode .tox .tox-dialog__footer .tox-button.tox-button--secondary:focus:not(:disabled) {
  background-color: #4d6066;
}
html.dark-mode .tox .tox-dialog__footer .tox-button.tox-button--secondary:hover:not(:disabled) {
  background-color: #586e75;
}
html.dark-mode .tox .tox-dialog__body-nav-item--active {
  color: #37beff;
}
html.dark-mode .tox .tox-dialog-wrap__backdrop {
  background-color: rgba(0, 0, 0, 0.7);
}
html.dark-mode .tox .tox-menu {
  background-color: #161b1d;
  border-color: #8b9fa7;
  box-shadow: none;
}
html.dark-mode .tox .tox-collection__item-caret svg {
  fill: #c5d1d3;
}
html.dark-mode .tox .tox-collection__item {
  color: #c5d1d3;
}
html.dark-mode .tox .tox-collection__item:not(:last-child) {
  border-bottom: 1px solid #2c373a;
}
html.dark-mode .tox .tox-collection--grid .tox-collection__item {
  border: 0;
}
html.dark-mode .tox .tox-collection__item--active,
html.dark-mode .tox .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
  color: #c5d1d3;
  background-color: #374549;
}
html.dark-mode .tox .tox-collection__item--enabled {
  color: #37beff;
  background-color: #374549;
}
html.dark-mode .message-part,
html.dark-mode .message-htmlpart {
  border-color: #4d6066;
}
html.dark-mode .message-part blockquote,
html.dark-mode .message-htmlpart blockquote {
  border-color: #6acfff;
}
html.dark-mode .message-part blockquote span.blockquote-link,
html.dark-mode .message-htmlpart blockquote span.blockquote-link {
  color: currentColor;
  border-color: currentColor;
}
html.dark-mode .message-part blockquote blockquote,
html.dark-mode .message-htmlpart blockquote blockquote {
  border-color: #64c86b;
}
html.dark-mode .message-part blockquote blockquote blockquote,
html.dark-mode .message-htmlpart blockquote blockquote blockquote {
  border-color: #ff8785;
}
html.dark-mode .message-part span.sig {
  color: #8ba3a7;
}
html.dark-mode .message-htmlpart {
  padding: 15px;
  margin-top: 0.5rem;
  background: rgba(26, 42, 50, 0.5);
}
html.dark-mode #message-header .header-headers .header-title {
  color: #c5d1d3;
  font-weight: normal;
}
html.dark-mode .message-partheaders {
  background-color: #374549;
  border: 0;
}
html.dark-mode .message-partheaders table.headers-table {
  color: #c5d1d3;
}
html.dark-mode .message-partheaders table.headers-table * {
  font-weight: normal;
}
html.dark-mode p.image-attachment {
  border-color: #4d6066;
  background-color: #374549;
}
html.dark-mode p.image-attachment span {
  color: #8ba3a7;
}
html.dark-mode fieldset.image-attachment legend {
  color: #8ba3a7;
  border-color: #4d6066;
}
html.dark-mode #messagepartframe {
  background: #fff;
}
html.dark-mode .ui-widget {
  border-color: #4d6066;
}
html.dark-mode .ui-widget-overlay {
  background-color: rgba(0, 0, 0, 0.7);
}
html.dark-mode .ui-widget-header,
html.dark-mode .ui-widget-content {
  background-color: rgba(26, 42, 50, 0.5);
}
html.dark-mode .ui-dialog .ui-dialog-titlebar {
  border-color: #4d6066;
}
html.dark-mode .ui-dialog .ui-dialog-title,
html.dark-mode .ui-dialog .ui-dialog-titlebar-close {
  color: #c5d1d3;
  background: transparent;
}
html.dark-mode .ui-dialog .ui-dialog-buttonpane {
  border-color: #4d6066;
}
html.dark-mode .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset a.btn-link {
  color: #c5d1d3;
}
html.dark-mode .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset a.btn-link:focus {
  background: transparent;
}
@media screen and (max-width: 480px) {
  html.dark-mode .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset button.btn-primary:not(.btn-danger),
  html.dark-mode .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset button.btn-secondary {
    color: #c5d1d3;
  }
}
html.dark-mode .ui-datepicker .ui-datepicker-header {
  border-color: #4d6066;
}
html.dark-mode .ui-datepicker th {
  color: #8ba3a7;
  font-size: 80%;
  font-weight: normal;
}
html.dark-mode .ui-datepicker .ui-datepicker-prev,
html.dark-mode .ui-datepicker .ui-datepicker-next,
html.dark-mode .ui-datepicker .ui-state-default,
html.dark-mode .ui-datepicker.ui-widget-content .ui-state-default {
  color: #c5d1d3;
}
html.dark-mode .ui-datepicker .ui-state-highlight,
html.dark-mode .ui-datepicker.ui-widget-content .ui-state-highlight {
  color: #37beff;
  background-color: #374549;
}
html.dark-mode .ui-datepicker .ui-datepicker-days-cell-over a {
  background-color: #4d6066;
}
html.dark-mode .ui-menu {
  background-color: #161b1d;
  border-color: #8b9fa7;
  box-shadow: none;
}
html.dark-mode .ui-menu .ui-menu-item {
  border-bottom: 1px solid #2c373a;
}
html.dark-mode .ui-menu .ui-state-active {
  background-color: #374549 !important;
}
html.dark-mode .minicolors-panel {
  box-shadow: none;
  border-color: #4d6066;
  background: #161b1d;
}
html.dark-mode ::placeholder,
html.dark-mode ::-webkit-input-placeholder,
html.dark-mode .listing-info,
html.dark-mode .listing span.secondary,
html.dark-mode .file-upload .hint,
html.dark-mode .contactlist span.email,
html.dark-mode #login-footer,
html.dark-mode #contacthead.readonly .source.row,
html.dark-mode .formcontent .hint {
  font-weight: normal;
  color: #8ba3a7;
}
html.dark-mode .popover {
  background-color: rgba(22, 27, 29, 0.9);
  box-shadow: none;
  border: none;
}
html.dark-mode .popover .menu li.separator {
  background-color: transparent;
  color: #8ba3a7;
}
html.dark-mode .popover .menu ul + li.separator {
  border-top: 1px solid #2c373a;
}
html.dark-mode .popover-body {
  color: #c5d1d3;
}
html.dark-mode .bs-popover-auto[x-placement^="right"] > .arrow::after,
html.dark-mode .bs-popover-right > .arrow::after {
  border-right-color: #8b9fa7;
}
html.dark-mode .bs-popover-auto[x-placement^="left"] > .arrow::after,
html.dark-mode .bs-popover-left > .arrow::after {
  border-left-color: #8b9fa7;
}
html.dark-mode .bs-popover-auto[x-placement^="top"] > .arrow::after,
html.dark-mode .bs-popover-top > .arrow::after {
  border-top-color: #8b9fa7;
}
html.dark-mode .bs-popover-auto[x-placement^="bottom"] > .arrow::after,
html.dark-mode .bs-popover-bottom > .arrow::after {
  border-bottom-color: #8b9fa7;
}
html.dark-mode .nav-tabs {
  border-color: #4d6066;
}
html.dark-mode .nav-tabs .nav-link {
  color: #c5d1d3;
  border-color: transparent;
  border-bottom-color: #4d6066;
}
html.dark-mode .nav-tabs .nav-link:hover {
  background: #1a2a32;
  border-color: #4d6066;
  color: #c5d1d3;
}
html.dark-mode .nav-tabs .nav-link.active {
  background: #1a2a32;
  border-color: #4d6066;
  border-bottom-color: transparent;
  color: #fff;
}
html.dark-mode .table {
  color: #c5d1d3;
}
html.dark-mode .table td,
html.dark-mode .table th,
html.dark-mode .table thead th {
  border-color: #4d6066;
}
html.dark-mode .table-widget {
  border-color: #4d6066;
}
html.dark-mode .table-widget > .footer {
  border-color: #4d6066;
}
html.dark-mode .table-widget table.options-table tr:last-child td {
  border-color: #4d6066;
}
html.dark-mode .table-widget table.options-table tr.selected td {
  background-color: #374549;
  color: #c5d1d3;
}
html.dark-mode #rcmdraglayer {
  background-color: #161b1d;
  border: 1px solid #8b9fa7;
  box-shadow: none;
  color: #c5d1d3;
}
html.dark-mode .quota-widget {
  color: unset;
}
html.dark-mode .quota-widget .bar {
  border-color: #4d6066;
  background-color: #4d6066;
}
html.dark-mode .quota-info .root {
  color: #8ba3a7;
  background-color: transparent;
}
html.dark-mode img.contactphoto,
html.dark-mode #contactpic {
  background-color: #374549 !important;
}
html.dark-mode .pgpkeyimport div.key.revoked,
html.dark-mode .pgpkeyimport div.key.disabled {
  color: #637e82;
}
html.dark-mode .pgpkeyimport li.uid::before {
  opacity: 1;
}
html.dark-mode .v1disclaimer_text span {
  color: wheat !important;
}
html.dark-mode ul.treelist li div.treetoggle {
  width: 1.5em;
  background-color: transparent;
}
html.dark-mode ul.treelist li.selected {
  color: inherit;
  background-color: rgba(26, 42, 50, 0.4);
}
html.dark-mode ul.treelist li.selected > div > a,
html.dark-mode ul.treelist li.selected > a {
  color: white;
  background-color: rgba(26, 42, 50, 0.4);
}
html.dark-mode ul.treelist li:hover {
  color: #2c363a;
  background-color: #374549;
}
html.dark-mode #ega-layout-notification {
  background-color: rgba(26, 42, 50, 0.4) !important;
}
/*# sourceMappingURL=auth.css.map */