/* General */ 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('/images/background.webp');
  background-color: #D7F5FF;
  background-size: cover;
  min-height: 100%;
  color: #000;
}

body {
  margin: 0;
  padding: 0;
  font-family: Lato, Helvetica Neue, Helvetica, Arial, sans-serif;
  line-height: 1.2;
}

label {
  margin: 0 0 0.2em 0;
  letter-spacing: 0.04em;
  font-size: 1.2em;
  line-height: 1.3;
  color: #fff;
}

.label--dark {
  color: #4c657e;
}

p,
article {
  margin: 0 0 1em 0;
  font-size: 1em;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #fefefe;
}

p:last-child,
article:last-child {
  margin: 0;
}

form {
  margin: 0 0 1em 0;
}

a {
  font-size: 1em;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #6A211B;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5 {
  margin: 0 0 0.5em 0;
}

h1:empty, 
h2:empty, 
h3:empty, 
h4:empty, 
h5:empty {
  display: none;
}

input::first-line {
  border: none;
  font-size: 18px;
  font-family: Inter;
  font-weight: normal;
  line-height: 32px;  
  letter-spacing: 0.02em;	
  -webkit-text-fill-color: black;
  /*-webkit-box-shadow: 0 0 0px 1000px #fff inset;
  transition: background-color 5000s ease-in-out 0s;*/
  padding: 0 0.4em;
}

select,
option,
input,
textarea {
  border: none;
  font-size: 18px;
  font-family: Inter;
  font-weight: normal;
  line-height: 32px;  
  letter-spacing: 0.02em;	
  /*-webkit-text-fill-color: black;*/
  /*-webkit-box-shadow: 0 0 0px 1000px #fff inset;*/

  
  -webkit-box-shadow: 1px 1px 7px -2px #61666E;
  box-shadow: 1px 1px 7px -2px #61666E;

  /*transition: background-color 5000s ease-in-out 0s;*/
  padding: 0 0.4em;
  width: 100%;
}

input[type="range"] {
  -webkit-text-fill-color: black;
  /*-webkit-box-shadow: 0 0 0px 1000px #fff inset;*/
  -webkit-box-shadow: 1px 1px 1px -2px #61666E;
  box-shadow: 1px 1px 1px -2px #61666E;
}

select,
option {
  padding: 0.15em 0em 0.15em 0.1em;
}

select:disabled,
input:disabled,
textarea:disabled {
  /*-webkit-box-shadow: 0 0 0px 1000px #efefef inset;*/
  -webkit-box-shadow: 1px 1px 7px -2px #61666E;
  box-shadow: 1px 1px 7px -2px #61666E;
  background-color: #efefef;
}

select:disabled::first-line,
input:disabled::first-line,
textarea:disabled::first-line {
  -webkit-box-shadow: 0 0 0px 1000px #efefef inset;
  box-shadow: 0 0 0px 1000px #efefef;
  background-color: #efefef;
}

input[type=checkbox] {
  -webkit-box-shadow: unset;
  transition: unset;
  transform: scale(1.5);
}

input::placeholder,
textarea::placeholder {
  color: #ccc;
}

input.invalid:not(:placeholder-shown) {
  color: red;
}

button {
  display: inline-block;
  padding: 0 0.4em;
  font-size: 1.3em;
  line-height: 32px;
  letter-spacing: 0.04em;	
  color: #fff;
  background-color: #0078CE;
  border-radius: 0.2em;
  border: none;
  min-width: 125px;
  cursor: pointer;
  -webkit-box-shadow: 1px 1px 7px -2px #61666E;
  box-shadow: 1px 1px 7px -2px #61666E;
}

button:disabled {
  background-color: #B0BBC1;
  color: #fff;
  cursor: not-allowed;
}

button.secundary {
  background-color: #cedae1;
  color: #000;
  font-size: 1.1em;
}

button.pressed {
  animation: glowing 1500ms;
}

input.hightlight {
  animation: glowing 1500ms;
}

progress {
  width: 100%;
}

hr {
  border: 1px solid #FFEAD2;
  border-radius: 1px;
}

@keyframes glowing {
  0% { background-color: #04AA6D; box-shadow: 0 0 3px #04AA6D; color: #fff; }
  50% { background-color: #048E57; box-shadow: 0 0 40px #048E57; color: #fff; }
  100% { background-color: #04AA6D; box-shadow: 0 0 3px #04AA6D; color: #fff; }
}

.hidden {
  display: none;
}

.nomargin {
  margin: 0;
}

.nopadding {
  padding: 0;
}

.fullwidth {
  width: 100%;
}

.center {
  text-align: center;
}

.pageinfo {
  display: none;
}

/* Cookie banner */
.cbanner-background {
  
}

.cbanner-background--selected {	
  display: block;
	position: fixed;	
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(169, 169, 169, .4);	
	z-index: 100000;
}

.cbanner {
    position: fixed;
    left: 2em;
    bottom: 2em;
    padding: 1.5em;
    background-color: #fff;
    border-radius: 1em;
    color: #333;
    z-index: 100000;
    -webkit-box-shadow: 3px 9px 27px -2px #61666E;
    box-shadow: 3px 9px 27px -2px #61666E;
    max-width: 450px;
}

.cbanner-background--selected .cbanner {
  left: 50%;
  top: 25%;
  bottom: unset;  
	transform: translate(-50%, -25%);
}

.cbanner-title {
    margin: 0;
    color: #000;
    font-weight: bold;
    font-size: 1.1em;
}

.cbanner-instructions {
    margin: 0.5em 0;
    letter-spacing: 0.04em;
    line-height: 1.3;
    font-weight: normal;
    color: #000;
}

#cbanner_acceptall,
#cbanner_save {
    margin: 0.5em 0; 
    padding: 0.3em;
    color: #fff;
    background-color: #20688F;
    border-radius: 5px;   
    font-size: 1em;     
    font-weight: bold;      
    flex-grow: 1;               
}

.cbanner_buttons_row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
    gap: 1em;
}

#cbanner_dismiss {
  display: none;
  margin: 0; 
  padding: 0.3em;
  color: #20688F;
  background-color: #fff;
  border-radius: 5px;   
  font-size: 1em;    
  border: 2px solid #fff;  
  flex-grow: 2;      
  font-weight: bold;    
  flex-basis: 100%;
}

#cbanner_dismiss:hover {
  border: 2px solid #20688F;
}

.cbanner-background--selected #cbanner_dismiss {
  display: block;
}

/*#cbanner_dismiss,
#cbanner_save {
    margin: 0; 
    padding: 0.3em;
    color: #20688F;
    background-color: #fff;
    border-radius: 5px;   
    font-size: 1em;    
    border: 2px solid #fff;  
    flex-grow: 1;      
    font-weight: bold;      
}*/

/*#cbanner_dismiss:hover,
#cbanner_save:hover {
    border: 2px solid #20688F;
}*/

.banner-option {
    font-weight: normal;
    line-height: 2em;
}

.cbanner-options {
    clear: both;
    margin: 1em 0;
    padding: 0;
    list-style: none;
    list-style-position: inside;            
}

.cbanner-option {
    margin: 0.8em 1em;
    padding: 0;
    line-height: 1;
}

.cbanner-switch {
    display: inline-flex;
    flex-direction: row;
    align-items: stretch;
    margin-right: 1em;
    padding: 2px;
    background-color: darkred;
    border-radius: 1em;
    color: #fff;         
    width: 2em;
    height: 1em;
    vertical-align: top;
    cursor: pointer;
}

.cbanner-switch-inner {
    display: inline-block;
    margin: 0;
    padding: 0;
    background-color: #fff;  
    border-radius: 1em;  
    width: 1em;            
}

.cbanner-switch-enabled {
    background-color: green;
    justify-content: flex-end;
}

.cbanner-switch-disabled {
    background-color: gray;
    cursor: not-allowed;
}

.cbanner-link {
    color: darkgreen;
    text-decoration: none;
}

.cbanner-link:hover {
    text-decoration: underline;
}

/* Speech bubble */
.speech {
  display: none;
  font-size: 0.9em;
  background: rgb(255, 255, 255);
  padding: 0.5em;
  border-radius: 0.4em;
  border: 1px solid #000;
  max-width: 250px;
  color: #000;
  -webkit-box-shadow: 3px 9px 27px -2px #61666E;
  box-shadow: 3px 9px 27px -2px #61666E;
  z-index: 20000;
  user-select: none;
  transform: rotate(-3deg) translate(0, -10px);
}

.speech::after {
  display: block; width: 0; content: "";
  border: 15px solid transparent;
}
 
.speech--up::after {
  border-bottom-color: #666;
  border-top: 0;
}

.speech--down::after {
  border-top-color: #666;
  border-bottom: 0;
}

.speech--left::after {
  border-right-color: #666;
  border-left: 0;
}

.speech--right::after {
  border-left-color: #666;
  border-right: 0;
}

.speech.speech--animate {
  animation: speech-wiggle 2500ms infinite ease-in-out;
}

@keyframes speech-wiggle {
  0% { transform: rotate(-3deg); }
  50% { transform: rotate(6deg); }
  100% { transform: rotate(-3deg); }
}

.speech {
  position: absolute;
  margin: 0em;
}

.speech::after 
{ 
  position: absolute; 
}

.speech--up::after {
  top: -15px; left: calc(50% - 15px);
}

.speech--down::after {
  bottom: -15px; left: calc(50% - 15px);
}

.speech--left::after {
  left: -15px; top: calc(50% - 15px);
}

.speech--right::after {
  right: -15px; top: calc(50% - 15px);
}

/* Message box */
.meapp-messagebox-background {
	position: fixed;			
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(169, 169, 169, .4);
	z-index: 1000;
}

.meapp-messagebox {
	position: absolute;			
	left: 50%;
	top: 25%;
	transform: translate(-50%, -25%);
	margin: 0;
	padding: 1em;
	list-style: none;
	background-color: #fff;
	border: 1px solid gray;
	font-size: 1em;
	line-height: 1.2;
	font-weight: normal;
	-webkit-box-shadow: 3px 3px 7px -2px #61666E; 
	box-shadow: 3px 3px 7px -2px #61666E;
	border: 1px solid #999;
	border-radius: 5px;	
} 

.meapp-messagebox-title {
	margin: 0 0 0.5em 0;
  color: #000;
}

.meapp-messagebox-text {
	margin: 0 0 1em 0;
  color: #000;
}

.meapp-messagebox-footer {
	margin: 0 ;
}

.meapp-messagebox-buttons {	
	margin: 0;
	padding: 0;
	text-align: center;
	list-style: none;
}

.meapp-messagebox-button {	
  display: inline-block;
  padding: 0 0.4em;
  font-size: 1.3em;
  line-height: 32px;
  background-color: #cedae1;
  color: #000;
  letter-spacing: 0.04em;	
  border-radius: 0.2em;
  border: none;
  min-width: 125px;
  cursor: pointer;
}

.meapp-messagebox-button:disabled {
  background-color: #B0BBC1;
  color: #fff;
  cursor: not-allowed;
}

.meapp-messagebox-buttons li {
	display: inline;
	margin: 0 1em 0 0;
}

.meapp-messagebox-button--main {
  color: #fff;
  background-color: #0078CE;
}

.meapp-messagebox-buttons li:last-child {
	margin-right: 0;
}

/* Address Book */
.meapp-addressbook {
	position: absolute;			
	left: 50%;
	top: 25%;
	transform: translate(-50%, -25%);
	margin: 0;
	padding: 1em;
	list-style: none;
	background-color: #fff;
	border: 1px solid gray;
	font-size: 1em;
	line-height: 1.2;
	font-weight: normal;
	-webkit-box-shadow: 3px 3px 7px -2px #61666E; 
	box-shadow: 3px 3px 7px -2px #61666E;
	border: 1px solid #999;
	border-radius: 5px;	
  width: 90%;
  max-width: 450px;
} 

.meapp-addressbook-list {
  overflow-y: auto;
  min-height: 50px;
  max-height: 300px;
  background-color: #fff;
  padding-right: 1em;
}

.meapp-addressbook-title {
	margin: 0 0 0.5em 0;
  font-size: 1.2em;
  color: #000;
}

.meapp-addressbook-text {
	margin: 0 0 1em 0;
  color: #000;
}

.meapp-addressbook-footer {
	margin: 0 ;
}

.meapp-addressbook-buttons {	
	margin: 0;
	padding: 0;
	text-align: center;
	list-style: none;
}

.meapp-addressbook-button {	
  display: inline-block;
  padding: 0 0.4em;
  font-size: 1.3em;
  line-height: 32px;
  background-color: #cedae1;
  color: #000;
  letter-spacing: 0.04em;	
  border-radius: 0.2em;
  border: none;
  min-width: 125px;
  cursor: pointer;
}

.meapp-addressbook-button:disabled {
  background-color: #B0BBC1;
  color: #fff;
  cursor: not-allowed;
}

.meapp-addressbook-buttons li {
	display: inline;
	margin: 0 1em 0 0;
}

.meapp-addressbook-button--main {
  color: #fff;
  background-color: #0078CE;
}

.meapp-addressbook-buttons li:last-child {
	margin-right: 0;
}

.meapp-addressbook-address {
  margin: 0 0 0.5em 0;
  padding: 1em;
  border: 1px solid lightgray;
  background-color: #fff;
  border-radius: 0.5em;
  align-items: center;
  cursor: pointer;
}

.meapp-addressbook-address:hover {
  background-color: beige;
}

.meapp-addressbook-address--selected {
  background-color: #FFEAD2;
}

.meapp-addressbook-address-name {
  margin: 0 0 0.1em 0;
  font-size: 1.2em;
  font-weight: normal;
  color: #000;
}

.meapp-addressbook-address-name:empty {
  display: block;
}

.meapp-addressbook-address-email {
  margin: 0 0 0.1em 0;
  font-size: 1em;
  font-weight: normal;
  color: navy;
}

.meapp-addressbook-address-note {
  margin: 0;
  font-size: 1em;
  font-weight: normal;
  color: gray;
}

.meapp-addressbook-address-none {
  color: #000;
}

/* Passkey */
.authenticate-container,
.receivers-container,
.link-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.authenticate,
.openaddressbook,
.copylink {
  display: block;
  margin: 0;
  padding: 0;
  width: 40px;
  font-size: 0px;
  height: 32px;
  background-image: url('/images/passkey.png');
  background-repeat: no-repeat;
  background-size: 32px;
  background-position: center;  
  flex-grow: 0;
  flex-shrink: 0;
  min-width: auto;  
  -webkit-box-shadow: 1px 1px 7px -2px #61666E;
  box-shadow: 1px 1px 7px -2px #61666E;
}

.copylink {
  background-image: url('/images/clipboard.png');
}

.openaddressbook {
  background-image: url('/images/addressbook.png');
}

/* Iseland */
.iseland {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin: 0 auto;
  padding: 1em;
  max-width: 1400px;
}

/* Rows */
.row-slogan {
  margin: 0 2em;
}

.row-menu {
  text-align: left;
}

.row-main {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1em;
}

/* Slogan */
.slogan {
  margin: 1em 0;
  text-align: center;
  font-size: 2em;
}

/* Menu */
.menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5em;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item {
  display: inline-block;
  margin: 0;
  padding: 0.5em;          
  background-color: #F7941F;
  filter: drop-shadow(0 0 0.75rem lightgray);
  border-radius: 0.3em;
}

.menu-item:first-child {
  margin-left: 0;
}

.menu-item.selected {
  background-color: #0078CE;
}

.menu-item a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1.0em;
  line-height: 1.2;
  padding: 0.2em 0.4em;
  letter-spacing: 0.2em;
}

.menu-item .fa-right-from-bracket {
  padding: 3px 5px;
  background-color: #FFEAD2;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
}

.menu-item .fa-close {
  padding: 3px 5px;
  background-color: #FFEAD2;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
}

/* Main */
.panel {
  flex-basis: 33%;
}

.panel--dark {
  padding: 1em;
  background-color: #F7941F;
  color: #333;
  border-radius: 0.5em;
  flex-grow: 1;
  flex-shrink: 1;
}

/*.panel--dark h2 {
  color: #fff;
}*/

.panel--dark h4 {
  color: #4B587C;
}

.panel--light {
  padding: 1em;
  background-color: #FFEAD2;
  color: #000;
  border-radius: 0.5em;
  flex-grow: 1;
  flex-shrink: 1;
}

.panel--middle {
  width: 650px;
  flex-basis: unset;
  flex-grow: 0;
  flex-shrink: 0;
}

.panel--middle-wide {
  width: 800px;
  flex-basis: unset;
  flex-grow: 0;
  flex-shrink: 0;
}

.panel--three {
  flex-basis: 33%;
}

.panel--columns {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 1em;
  background-color: unset;
}

.panel--light a,
.panel--light article,
.panel--light p {
  color: #333;
}

.panel--light label {
  display: block;
  color: #333;
  font-weight: normal;
  font-size: 1em;
  margin-bottom: 0.2em;
}

/* Cart */
.cart {
  margin-bottom: 2em;
  border-collapse: collapse;
  width: 100%;          
}

.cart tr {
  background-color: #fff;
  color: #000;
}

.cart tbody tr {          
  border-top: 1px dashed lightgray;
  border-bottom: 1px dashed lightgray;
}

.cart tbody tr:first-child {          
  border-top: none;
}

.cart tbody tr:last-child {          
  border-bottom: 1px solid lightgray;
}

/* Order */
.order-product {
  padding: 0.4em;
  border-bottom: 1px dashed lightgray;
}

.order-progress,
.order-completed,
.order-id,
.order-date,
.order-subtotal {
  padding: 0.4em;
  border-bottom: 1px dashed lightgray; 
  text-align: right; 
}

.order-vatproduct {
  padding: 0 0.4em;
}

.order-vat {
  padding: 0.4em;
  text-align: right;        
}

.order-creditproduct {
  padding: 0.4em;
}

.order-credit {
  padding: 0.4em;
  text-align: right; 
}

.order-grandproduct {
  padding: 0.4em;
}

.order-grandtotal {
  padding: 0.4em;
  font-weight: bold;  
  text-align: right;        
}

/* Elements */
.ele-section {
  margin-bottom: 1.5em;
}

.ele-section-title {
  color: #4B587C;
  font-size: 1.4em;
  margin: 0 0 0.1em 0;
}

.ele-title {
  display: inline-block;
  font-size: 1.2em;
  margin: 0 0 0.8em 0;
  color: #333;
  background-color: #FFEAD2;
  padding: 0.2em 0.4em;
  border-radius: 5px;
}

#codefail {
  display: none;
  margin: 0;
  padding: 8px;
  background-color: darkred;
  color: #fff;
  -webkit-box-shadow: 1px 1px 7px -2px #61666E;
  box-shadow: 1px 1px 7px -2px #61666E;
}

#codecheck {
  display: none;
  margin: 0;
  padding: 8px;
  background-color: green;
  color: #fff;
  -webkit-box-shadow: 1px 1px 7px -2px #61666E;
  box-shadow: 1px 1px 7px -2px #61666E;
}

/* Page: Send */
.internalad {
  margin: 0;
  padding: 0;
  width: 256px;
  display: inline-block;
}

/* Carousel */
.carousel {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-position: inside;
}

.carousel-page {
  display: none;
}

.carousel-page--selected {
  display: block;
}

.carousel-page-options {
  display: none;
}

.carousel-back {
  padding: 0.2em;
  background-color: white;
  color: black;
  border-radius: 0.2em;
  font-size: 1.3em;
  width: 1.5em;
  text-align: center;
  cursor: pointer;
}

.carousel-options {
  margin-left: 0.5em;
  padding: 0.2em;
  background-color: white;
  color: black;
  border-radius: 0.2em;
  font-size: 1.3em;
  width: 1.5em;
  text-align: center;
  cursor: pointer;
}

.carousel-toolbar {
  float: right;
}

.carousel-button {
  width: 100%;
}

/* File group */
#tus-files {
  display: none;
}

.instructions {
    position: absolute;
    left: 3em;
    top: 0;
    bottom: 0;
    right: 3em;
    z-index: 0;
    cursor: pointer;
    text-align: center;
  }

  .instructions .title {    
    position: relative;      
    top: 50%;
    color: #ccc;
    font-size: 1em;
    transform: translate(0, -50%);
    margin: 0;
  }

  .drop {
    position: relative;
    min-height: 250px;
    background-color: #fff;
    border: none;
    font-size: 18px;
    font-family: Inter;
    font-weight: normal;
    line-height: 32px;  
    letter-spacing: 0.02em;	
    /*-webkit-text-fill-color: black;*/
    /*-webkit-box-shadow: 0 0 0px 1000px #fff inset;*/
    transition: background-color 5000s ease-in-out 0s;

    -webkit-box-shadow: 1px 1px 7px -2px #61666E;
    box-shadow: 1px 1px 7px -2px #61666E;

    padding: 0 0.4em;
    clear: both;
  }

  .filelist {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .file {
    position: relative;
    padding: 0.5em;
    border-bottom: 1px dashed gray;
    color: navy;
    font-size: 1em;
    line-height: 1.2;
    display: flex;
    flex-direction: row;    
    background-color: white;  
    z-index: 1;    
  }

  .file .filename {
    word-break: break-word;
  }

  .filedelete {
      margin-right: 1em;
      font-weight: bold;
      color: red;
      font-size: 1em;
      cursor: pointer;
  }

  .filedownload {
      margin-right: 1em;
      font-weight: bold;
      color: green;
      font-size: 1em;
      cursor: pointer;
  }

  #filereset {
      color: green;
      cursor: pointer;
  }

  #filereset:hover {
      text-decoration: underline;
  }

  .filedownload.disabled {
      color: red;
      cursor: not-allowed;
  }

.filename {
  font-weight: bold;
  color: #5A637F;
  font-size: 1em;
  flex-grow: 1;
}

.filesuccess {
  font-size: 0.8em;
  color: darkgreen;
}

.fileerror {
  font-size: 0.8em;
  color: red;
}

.filesize {
  font-weight: bold;
  color: #5A637F;
  font-size: 1em;      
  white-space: nowrap;    
}

/* Passkey list */
.meapp-passkeys {
  margin: 0 0 1em 0;
  padding: 0;
  list-style: none;
  list-style-position: inside;
  display: flex;
  flex-direction: row;
  gap: 0.5em;
}

.meapp-passkey {
  padding: 0.5em;
  border-radius: 0.4em;
  background-color: #fff;
  border: 1px solid #666;
}

.meapp-passkey-remove {
  color: red;
  cursor: pointer;
  font-size: 0.8em;
  visibility: hidden;
}

.meapp-passkey-name {
  margin: 0 0 0.2em 0;
  font-size: 1.2em;
  color: #333;
  white-space: nowrap;
} 

.meapp-passkey:hover .meapp-passkey-remove {
  visibility: visible;
}

.meapp-passkey-added {
  margin: 0;
  font-size: 0.8em;
  color: gray;
} 

/* Address Book */
.information {
  float: right;
  font-size: 1.5em;
  color: #0075FF !important;
  padding: 0.1em;
}

.row-producthunt {
  text-align: center;
}

#iubenda_policy {
  background-color: #fff;
  color: #000;
  border-radius: 1em;
}

#iubenda_policy p {
  color: #000;
}

.legallinks {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1em;
  text-align: center;
  list-style: none;
  list-style-position: none;
  justify-content: center;
} 

.legallinks li {
  margin: 0.3em 0;
  display: inline-block;
}

.legallinks a {
  border: 1px solid #666;
  padding: 0.4em 0.8em;
  border-radius: 1em;
  background-color: #fff;
  font-size: 1em;
  font-weight: normal;
  color: #4B587C;
  text-decoration: none;
}

.legallinks a:hover {
  background-color: beige;
}

.mimeexpress {
  margin: 0.5em 0;
  font-family: impact;
  font-style: italic;
  font-size: 2.2em;
  font-weight: normal;
  letter-spacing: 0.05em;
  color: #4B587C;
}

/* Authenticate Box */
.meapp-authenticatebox {
  padding: 1.5em;
  max-width: 450px;
  min-width: 350px;
  border-radius: 1em;
}

.meapp-authenticate-title {
  margin: 0 0 0.5em 0;
  letter-spacing: 0.04em;
  font-size: 1.2em;
  color: #000;
}

.meapp-authenticate-info {
  margin: 0 0 1em 0;
  letter-spacing: 0.04em;
  font-weight: normal;
  font-size: 1em;
  color: #666;
  line-height: 1.4;
}

.meapp-authenticate-info--small {
  margin: 0 0 0.7m 0;
  font-size: 0.7em;
}

.meapp-authenticate-buttons {
  list-style: none;
  list-style-position: inside;
  margin: 0 0 1em 0;
  padding: 0;
  min-width: 350px;
}

.meapp-authenticate-button {
  margin: 0.5em 0;
  background-color: #F2F2F4;
  color: #4B587C;
  width: 100%;
  /*border: 1px solid #333;*/
  border-radius: 0.01em;
}

.meapp-authenticate-button--selected {
  background-color: #4B587C;
  color: #fff;
}

.meapp-authenticate-button:hover {
  background-color: beige;
  color: #000;
}

/* Mobile */
@media only screen and (max-width: 1200px) {

  .menu {
    justify-content: center;
  }

  .menu-item {
    text-align: center;
    flex-grow: 1;
  }

  .row-main {
    flex-wrap: wrap;
    flex-basis: 100%;
    flex-grow: 0;
    flex-shrink: 0;
  }

  .panel--middle {
    width: 100%;
  }

  .panel--middle-wide {
    width: 100%;
  }

  .panel--columns {
    flex-grow: 1;
    flex-shrink: 1;
  }

  p,
  article {
    word-break: break-word;
  }

  .filegroups th,
  .filegroups td {
    word-break: break-word !important;
    width: unset !important;
  }

  .ele-section-title {
    word-break: break-word !important;
  }
}

/* Mobile */
@media only screen and (max-width: 600px) {

  .cbanner,
  .cbanner-background--selected .cbanner {
    left: 0.5em;
    right: 0.5em;
    bottom: 0.5em;
    transform: unset;
  }

  .cbanner-background--selected .cbanner {    
    bottom: unset;
  }

  .cbanner-option {
    margin-left: 0.5em;
  }

  .cbanner_buttons_row {
    gap: 0.5em;
  }

  #cbanner_dismiss,
  #cbanner_save {
    min-width: unset;
  }

  .meapp-messagebox {		
    left: 1em;
    right: 1em;
    top: 50%;
    transform: translate(0, -50%);
  }
  
  .mobile-hidden {
    display: none;
  }

  .row-slogan h1 {
    margin: 0 auto;
    background-image: url('/melogo.png');
    font-size: 0;
    width: 128px;
    height: 128px;
    background-size: contain;
  }

  .row-main {
    flex-direction: column;
  }  

  .panel:empty {
    display: none;
  }

  .meapp-authenticatebox {
    min-width: unset;
  }

  .meapp-authenticate-buttons {
    min-width: unset;
  }
  
  .meapp-authenticate-button {
    min-width: unset;
  }

  #isslivechat {
    display: none !important;
  }
}

/* Group */
.group-container {
  margin: 0 0 0.5em 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.5em;
}

.group-container .group {
  margin: 0;
}

.group-container .group-item {
  flex-grow: 1;
  flex-shrink: 1;
}

.group-container .group-toolbar {
  cursor: pointer;
}


.group-container .group-toolbar:hover {
  background-color: beige;
}

.group-container .group-toolbar-column {
  align-self: center;
}

.group-container .group-delete {
  text-align: center;
}

.group-container .group-delete-icon {
  color: red;
}

.group {
  margin: 0 0 0.5em 0;
  border: 1px solid #eee;
  /*-webkit-box-shadow: 3px 3px 14px -2px #61666E;
  box-shadow: 3px 3px 14px -2px #61666E;*/
  -webkit-box-shadow: 1px 1px 7px -2px #61666E;
  box-shadow: 1px 1px 7px -2px #61666E;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: #fff;
  gap: 0.5em;
  align-items: stretch;
  align-content: stretch;
}

.group[url],
.group[link] {
  cursor: pointer;
}

.group[url]:hover,
.group[link]:hover {
  background-color: beige;
}

.group-column {
  font-size: 0.9em;
  font-family: sans-serif;
  letter-spacing: 0.02em;
  padding: 0.4em;
  /*border: 1px solid red;*/
  flex-grow: 1;
}

.group-column1 {  
  flex-basis: 125px;
  flex-grow: 0;
  align-self: center;
}

.group-column2 {  
  flex-basis: 0px;
  align-self: center;
}

.group-column3 {
  flex-basis: 125px;
  flex-grow: 0;
}

.group-email-list {
  list-style: none;
  list-style-position: inside;
}

.group-date,
.group-days-left,
.group-name {
  margin: 0;
  padding: 0;
  color: #000;
}

.group-date,
.group-days-left {
  text-align: right;
}

.group-name {
  margin-bottom: 0.5em;
  font-weight: bold;
  font-size: 1em;
  color: #4B587C;
}

.group-email-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.5em;
}

.group-icon {
  align-self: center;
  /*border: 1px solid red;*/
  font-size: 0.8em;
  color: orange;
}

.group-icon.fa-download {
  color: darkgreen;
}

.group-email {
  /*border: 1px solid red;*/
  margin: 0;
  padding: 0;
  word-break: break-all;
  flex-grow: 1;
}

.group-file-count,
.group-file-size {
  margin: 0;
  padding: 0;
  color: #000;
}

.group-file-count,
.group-file-size {
  text-align: right;
}

.group-icon.fa-check {
  color: darkgreen;
}

.group-none {
  text-align: center;
  color: #000;
}

.group-error {
  color: red;
}

@media only screen and (max-width: 1200px) {
  
  .group { 
    gap: 0em;
  }

  .group-column1 {
    order: 1;
    flex-grow: 1;
    flex-basis: unset;
  }

  .group-column2 {
    order: 3;
    flex-grow: 2;    
    flex-basis: 100%;
  }

  .group-column3 {
    order: 2;
    flex-grow: 1;
    flex-basis: unset;
  }

  .group-date,
  .group-days-left {
    text-align: left;
  }
}

@media only screen and (max-width: 600px) {
  
}

/* */