@charset "utf-8";
<style type="text/css">

@font-face {
    font-family: 'Comfortaa';
    src: local('Comfortaa'), url('./fonts/Comfortaa-Regular.ttf') format('truetype');
}


:root {
--btn_border_style: 1px solid white;
  --bg_width: 60px;
  --bg_height: 18px;
  
  --btn_width: 80px;
  --btn_height: 45px;
  
  --btn_font_size: 15px;
  --btn_border_radius: 2px;
  --btn_back_ground:black;
  
  --input_border_style:solid;
  --input_border_radius: 2px;
  
  
  --select_border_radius: 2px;
  
  --bodyColor:black;
  
  --app_green: black;
  --app_grey: grey;
  
  --bgColor: black;
  --txtColor: white;
  --borColor: rgba(0, 0, 0, 0);
  --sizeVar: 8px;
  --textPrimary: white;
  --textSecondary: blue;
  --borderColor: white;
  --menuBackgroundColor: black; /* Change the background color to green */
  --menuTextColor: white; /* Change the text color to white */
  --menuHoverColor: grey; /* Change the hover background color to a darker green */
}

body {
    font-family: Comfortaa, sans-serif;
    background: var(--bodyColor);
	
	color:white;
}


.flexDiv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  margin: 32px;
}
.selectWrapper {
  width: 100%;
  position: relative;
  opacity: 0;
  pointer-events: none;
  transition: opacity 100ms linear 0s;
  filter: drop-shadow(0 6px 26px rgba(0, 0, 0, 0.24));
  padding-top: calc(var(--sizeVar) / 2);
}
.multiSelect {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  border: 1px solid var(--borderColor);
  box-sizing: border-box;
  border-radius: calc(var(--sizeVar) / 2);
  position: absolute;
  width: auto;
  right: 0; /* Change this from left to right */
  overflow: hidden;
  background: var(--menuBackgroundColor);
  transition: transform 300ms ease-in-out 0s, clip-path 300ms ease-in-out 0s;
}

.multiSelect div {
  color: var(--menuTextColor);
  padding: 16px;
  width: auto;
  cursor: pointer;
  font-size: 25px;
}
.multiSelect div:hover {
  background-color: var(--menuHoverColor);
}
.bottomBorder {
  border-bottom: 1px solid var(--borderColor);
}
.topBorder {
  border-top: 1px solid var(--borderColor);
}
.iconDiv {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.noSpace {
  justify-content: flex-start;
  gap: 6px;
}
.titleDiv {
  pointer-events: none;
  font-weight: 700;
}
.justHover i {
  opacity: 0;
}
.justHover:hover i {
  opacity: 1;
}
.multiSelect .placeholder {
  color: var(--textSecondary);
  font-style: italic;
}
.multiSelect .narrow {
  padding-top: 10px;
  padding-bottom: 10px;
}
.multiSelect i {
  color: var(--textSecondary);
}
.multiSelect {
  transform: translateX(100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.multiSelect:nth-of-type(1) {
  transform: translateX(0);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.sec_btn {
  --bgColor: #869cff;
}



.menu-icon {
  display: inline-block;
  height: 2px;
  width: 24px;
  background-color: white;
  position: relative;
  margin: 0 4px; /* Add margin here */
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: white; /* White line color */
  position: absolute;
}

.menu-icon::before {
  top: -8px; /* Change from -6px to -8px */
}

.menu-icon::after {
  top: 8px; /* Change from 6px to 8px */
}

#name_of_event {
  width: 800px;
  min-height: 100px;
  height: auto;
   
  box-sizing: border-box; 
  
  
  display: block;
    margin-left: auto;
    margin-right: auto;
	font-size: 20pt;
}

.red-background {
  
  border: 4px solid red;
}

















.switch input[type="checkbox"] {
  display: none; /* Hide the default checkbox */
}

.switch-label {
  display: block;
  cursor: pointer;
  width: 60px;
  height: 30px;
  border-radius: 15px;
  background-color: white;
  position: relative;
  border: 1px solid grey; /* Add 1px frame */
  /*box-shadow: 0 0 10px -3px var(--led);*/
}

.switch-inner {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: grey; /* Set default color to white */
  position: absolute;
  top: 2px;
  transition: left 0.3s, background-color 0.3s; /* Add transition effect for left position and background color */
  /*box-shadow: 0 0 10px -3px green;*/
}

.switch input[type="checkbox"]:checked + .switch-label .switch-inner {
  left: 32px; /* Move the inner switch to the right when the checkbox is checked */
  background-color: var(--btn_back_ground);
}




.vl {
  border-left: 1px solid grey;
  height: 100%;
}
.v2 {
  border-top: 1px solid grey;
  width: 100%;
  
}
.v3 {
  border-bottom: 1px solid green;
  width: 100%;
  
}
#loading {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: block;
  opacity: 0.7;
  background-color: #fff;
  z-index: 99;
  text-align: center;
}

#loading-image {
  position: absolute;
  top: 40%;
  left: 42%;
  z-index: 50;
}


.form1{
	font-family: Comfortaa, sans-serif;
	width: 100%;
	padding: 0px;
	background: black;
	margin: 0px 0px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.22);
	-moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.22);
	-webkit-box-shadow:  0px 0px 15px rgba(0, 0, 0, 0.22);
	
}
input 
{
	
	border-radius: var(--input_border_radius);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	outline: none;
	display: block;
	width: 100%;
	border: 1px solid #ddd;
	background: transparent;
	margin-bottom: 10px;
	font-size: 20px;
	height: 25px;
	color:var(--txtColor);
}
.server_settings_input 
{

	text-align:center;
	padding: 20px;
	border-radius: var(--input_border_radius);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	outline: none;
	display: block;
	width: 400px;
	border: var(--input_border_style);
	border-bottom: 1px solid #ddd;
	background: transparent;
	margin-bottom: 10px;
	font-size: 25px;
	height: 60px;
}

.masked 
{
	 -webkit-text-security: disc; /* For Chrome, Safari, etc. */
	text-security: disc; /* For Firefox */
	text-align:center;
	padding: 20px;
	border-radius: var(--input_border_radius);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	outline: none;
	display: block;
	width: 400px;
	border: none;
	border-bottom: 1px solid #ddd;
	background: transparent;
	margin-bottom: 10px;
	font-size: 25px;
	height: 60px;
}
select 
{
	
	border-radius: var(--select_border_radius);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	outline: none;
	display: block;
	width: 100%;
	border: 1px solid #ddd;
	background: transparent;
	margin-bottom: 10px;
	font-size: 20px;
	height: 25px;
	color:var(--txtColor);
}

.checkbox-cell{
	padding: 10px;
	border-radius: 20px;


}





  



.normal_btn {
    height: var(--btn_height);
    width: var(--btn_width);
    border-radius: var(--btn_border_radius);
    background-color: black;
    border: var(--btn_border_style);
    color: white;
    font-size: var(--btn_font_size);
    cursor: pointer;

    /* Zarovnání textu na střed */
    display: flex;
    justify-content: center;  /* horizontálně */
    align-items: center;      /* vertikálně */

    padding: 0;               /* zruš padding, flex se o to postará */
    text-decoration: none;
}
.business_case_btn {
    height: var(--btn_height);
    width: 100px;
    border-radius: var(--btn_border_radius);
    background-color: black;
    border: var(--btn_border_style);
    color: white;
    font-size: var(--btn_font_size);
    cursor: pointer;

    /* Zarovnání textu na střed */
    display: flex;
    justify-content: center;  /* horizontálně */
    align-items: center;      /* vertikálně */

    padding: 0;               /* zruš padding, flex se o to postará */
    text-decoration: none;
}


.branches_btn {
	height:var(--btn_height);
	border-radius: var(--btn_border_radius);
	background: url(../symbols/branches.png);
	background-size: var(--bg_width) var(--bg_height);
	background-repeat: no-repeat;
	background-position: center;
	background-color: black; /* Green */
	border: var(--btn_border_style);
	color: white;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: var(--btn_font_size);
	width:var(--btn_width);
	cursor:pointer;
}
.settings_btn {
	height:var(--btn_height);
	border-radius: var(--btn_border_radius);
	background: url(../symbols/settings.png);
	background-size: var(--bg_width) var(--bg_height);
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--btn_back_ground);
	border:var(--btn_border_style);
	color: white;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: var(--btn_font_size);
	width:var(--btn_width);
	cursor:pointer;
}
.statistics_btn {
	height:var(--btn_height);
	border-radius: var(--btn_border_radius);
	background: url(../symbols/statistics.png);
	background-size: var(--bg_width) var(--bg_height);
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--btn_back_ground);
	border: var(--btn_border_style);
	color: white;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: var(--btn_font_size);
	width:var(--btn_width);
	cursor:pointer;
}

.calculator_btn{
	height:var(--btn_height);
	border-radius: var(--btn_border_radius);
	background: url(../symbols/calculator.png);
	background-size: var(--bg_width) var(--bg_height);
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--btn_back_ground);
	border: var(--btn_border_style);
	color: white;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: var(--btn_font_size);
	width:var(--btn_width);
	cursor:pointer;
}
.ares_btn{
	height:var(--btn_height);
	border-radius: var(--btn_border_radius);
	background: url(../symbols/ares.png);
	background-size: var(--bg_width) var(--bg_height);
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--btn_back_ground);
	border:var(--btn_border_style);
	color: white;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: var(--btn_font_size);
	width:var(--btn_width);
	cursor:pointer;
}
.users_btn{
	height:var(--btn_height);
	border-radius: var(--btn_border_radius);
	background: url(../symbols/users.png);
	background-size: var(--bg_width) var(--bg_height);
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--btn_back_ground);
	border: var(--btn_border_style);
	color: white;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: var(--btn_font_size);
	width:var(--btn_width);
	cursor:pointer;
}
.tecnical_support_btn{
	height:var(--btn_height);
	border-radius: var(--btn_border_radius);
	background: url(../symbols/technical_support.png);
	background-size: var(--bg_width) var(--bg_height);
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--btn_back_ground);
	border: var(--btn_border_style);
	color: white;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: var(--btn_font_size);
	width:var(--btn_width);
	cursor:pointer;
}

.membership_btn{
	height:var(--btn_height);
	border-radius: var(--btn_border_radius);
	background: url(../symbols/membership.png);
	background-size: var(--bg_width) var(--bg_height);
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--btn_back_ground);
	border: var(--btn_border_style);
	color: white;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: var(--btn_font_size);
	width:var(--btn_width);
	cursor:pointer;
}
.lieve_btn_left{
	height:var(--btn_height);
	border-radius: var(--btn_border_radius);
	background: url(../symbols/lieve_left.png);
	background-size: var(--bg_width) var(--bg_height);
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--btn_back_ground);
	border: var(--btn_border_style);
	color: white;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: var(--btn_font_size);
	width:var(--btn_width);
	cursor:pointer;
}
.confirm_btn{
	height:var(--btn_height);
	border-radius: var(--btn_border_radius);
	background: url(../symbols/confirm.png);
	background-size: var(--bg_width) var(--bg_height);
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--btn_back_ground);
	border: var(--btn_border_style);
	color: white;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: var(--btn_font_size);
	width:var(--btn_width);
	cursor:pointer;
}
.agree_terms_btn{
	height:var(--btn_height);
	border-radius: var(--btn_border_radius);


	background-color: var(--btn_back_ground);
	border: var(--btn_border_style);
	color: white;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	
	font-size: 20px;
	width:150px;
	cursor:pointer;
}
.agree_terms_btn:disabled {
  color: grey; /* Change text color to grey when disabled */
}
.not_agree_btn{
	height:var(--btn_height);
	border-radius: var(--btn_border_radius);


	background-color: var(--btn_back_ground);
	border:var(--btn_border_style);
	color: red;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	
	font-size: 20px;
	width:150px;
	cursor:pointer;
}

.back_btn{
	height:var(--btn_height);
	border-radius: var(--btn_border_radius);
	background: url(../symbols/back.png);
	background-size: var(--bg_width) var(--bg_height);
	background-repeat: no-repeat;
	background-position: center;
	background-color:var(--btn_back_ground);
	border: var(--btn_border_style);
	color: white;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: var(--btn_font_size);
	width:var(--btn_width);
	cursor:pointer;
}
.delete_btn{
	height:var(--btn_height);
	border-radius: var(--btn_border_radius);
	background: url(../symbols/delete.png);
	background-size: var(--bg_width) var(--bg_height);
	background-repeat: no-repeat;
	background-position: center;
	background-color:var(--btn_back_ground);
	border: var(--btn_border_style);
	color: white;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: var(--btn_font_size);
	width:var(--btn_width);
	cursor:pointer;
}
.hideCustomerBtn{
	height:var(--btn_height);
	border-radius: var(--btn_border_radius);
	background: url(../symbols/x.png);
	background-size: var(--bg_width) var(--bg_height);
	background-repeat: no-repeat;
	background-position: center;
	background-color:var(--btn_back_ground);
	border: var(--btn_border_style);
	color: white;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: var(--btn_font_size);
	width:var(--btn_width);
	cursor:pointer;
}
.add_btn{
	height:var(--btn_height);
	border-radius: var(--btn_border_radius);
	background: url(../symbols/add.png);
	background-size: var(--bg_width) var(--bg_height);
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--btn_back_ground);
	border:var(--btn_border_style);
	color: white;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: var(--btn_font_size);
	width:var(--btn_width);
	cursor:pointer;
}
.add_person_btn{
	height:var(--btn_height);
	border-radius: var(--btn_border_radius);
	background: url(../symbols/add_person.png);
	background-size: var(--bg_width) var(--bg_height);
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--btn_back_ground);
	border:var(--btn_border_style);
	color: white;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: var(--btn_font_size);
	width:var(--btn_width);
	cursor:pointer;
}
.edit_btn{
	height:var(--btn_height);
	border-radius: var(--btn_border_radius);
	background: url(../symbols/edit.png);
	background-size: var(--bg_width) var(--bg_height);
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--btn_back_ground);
	border:var(--btn_border_style);
	color: white;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: var(--btn_font_size);
	width:var(--btn_width);
	cursor:pointer;
}
.email_btn{
	height:var(--btn_height);
	border-radius: var(--btn_border_radius);
	background: url(../symbols/email.png);
	background-size: var(--bg_width) var(--bg_height);
	background-repeat: no-repeat;
	background-position: center;
	background-color:var(--btn_back_ground);
	border:var(--btn_border_style);
	color: white;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: var(--btn_font_size);
	width:var(--btn_width);
	cursor:pointer;
}
.print_btn{
	height:var(--btn_height);
	border-radius: var(--btn_border_radius);
	background: url(../symbols/print.png);
	background-size: var(--bg_width) var(--bg_height);
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--btn_back_ground);
	border: var(--btn_border_style);
	color: white;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: var(--btn_font_size);
	width:var(--btn_width);
	cursor:pointer;
}
.customers_btn {
    height: var(--btn_height);
    border-radius: var(--btn_border_radius);
    background-size: var(--bg_width) var(--bg_height);
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--btn_back_ground);
    border:var(--btn_border_style);
    color: white;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: flex; /* Use flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    font-size: var(--btn_font_size);
    width: var(--btn_width);
    cursor: pointer;
}

.customer_map {
	height:var(--btn_height);
	border-radius: var(--btn_border_radius);
	/*background: url(../symbols/customer_map.png);*/
	background-size: var(--bg_width) var(--bg_height);
	background-repeat: no-repeat;
	/*background-position: center;*/
	background-color:  var(--btn_back_ground);
	border:var(--btn_border_style);
	color: white;
	/*padding: 20px;*/
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: var(--btn_font_size);
	width:160px;
	cursor:pointer;
}
.info_table {
	border: 1px solid white;
	border-radius: var(--btn_border_radius);
	display: inline-block;
}

.login_btn{
	 height: var(--btn_height);
    border-radius: var(--btn_border_radius);
    background-size: var(--bg_width) var(--bg_height);
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--btn_back_ground);
    border:var(--btn_border_style);
    color: white;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: flex; /* Use flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    font-size: var(--btn_font_size);
    width: 200px;
    cursor: pointer;
}
.register_btn{
	
	 height: var(--btn_height);
    border-radius: var(--btn_border_radius);
    background-size: var(--bg_width) var(--bg_height);
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--btn_back_ground);
    border:var(--btn_border_style);
    color: white;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: flex; /* Use flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    font-size: var(--btn_font_size);
    width: 200px;
    cursor: pointer;
}
.submitbtn {
	 height: var(--btn_height);
    border-radius: var(--btn_border_radius);
    background-size: var(--bg_width) var(--bg_height);
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--btn_back_ground);
    border:var(--btn_border_style);
    color: white;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: flex; /* Use flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    font-size: var(--btn_font_size);
    width: var(--btn_width);
    cursor: pointer;
}
.set_default_btn {
	 height: var(--btn_height);
    border-radius: var(--btn_border_radius);
    background-size: var(--bg_width) var(--bg_height);
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--btn_back_ground);
    border:var(--btn_border_style);
    color: white;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: flex; /* Use flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    font-size: var(--btn_font_size);
    width: var(--btn_width);
    cursor: pointer;
}


.fileToUpload > input {
	visibility:hidden;
	width:0;
	height:0;

  
  
}

.container {
  height: 200px;
  position: relative;
  
}

.fileToUpload {
   margin: 0;
  position: absolute;
  top: 60%;
  left: 37%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  
  
}




#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: transparent;
  display: flex;
  justify-content: center; /* horizontálně na střed */
  align-items: center;     /* vertikálně na střed */
  z-index: 9999;
  pointer-events: none;    /* neblokuje kliky */
}

#loading img {
  width: 64px;
  height: auto;
  display: block;
  margin: 0 auto;
}


