:root {
  --background-color:#edeef7;
  --forefront-color: #ffffff;
  --hover-tab:#354655;
  --table: #f6f5fa;
  --table-hover: #e8e6f1;
  --white:black;

  --hotovo: #33d391;
  --kontrola : #339ecd;
  --dela-se:#fdbc64;
  --ceka-na-vyrizeni:#e8697d;
  --nevyrizeno: #797e93;

  --urgent: #c95c76;
  --high:#ff8358;
  --medium:#ffd533;
  --low: #b0dc51;
  --none:#797e93;
  --data:"data/icon/user-black.png";


  --addDashboard-color:#e8e6f1;
  --addDashboard-hover:#cdcbd5 ;
  --dashboard-hover:#cdcbd5 ;
  --dashboard-active:#e8e6f1;

  --silverlake-blue: #2172d3;
  --checkmark-color: white;
  --inactive-silverlake-blue: #0060b9;

  --popupSpace: #24294587;

  --main-font:  "Open Sans", sans-serif;
  --headline-font:  "Poppins", sans-serif;

  --red-hover: #a1465c;
  --green-hover: #27996a;

    --table-border: white;
    --tabs: black;
    --table-blocks: white;
    --table-color:black;
    --option-color:#cdcbd5 ;
      --onlyDark:none;
  --onlyLight:flex;

  --color1:#AB274F;
  --color2:#CE2029;
  --color3:#ED2839;

  --color4:#FF4F00;
  --color5:#FF7F50;
  --color6:#F1B42F;

  --color7:#FCF75E;
  --color8:#DFFF00;
  --color9:#E3FF00;

  --color10:#8DB600;
  --color11:#29AB87;
  --color12:#177245;

  --color13:#006D6F;
  --color14:#6495ED;
  --color15:#3AA8C1;

  --color16:#F56FA1;
  --color17:#CF71AF;
  --color18:#8E3A59;
}

[data-theme="dark"]{
	  --background-color:#292f4c;
  --forefront-color: #181b34;
  --hover-tab:#354655;
  --table: #30324e;
  --table-hover: #33354b;
  --white:#d5d8df;

  --hotovo: #33d391;
  --kontrola : #339ecd;
  --dela-se:#fdbc64;
  --ceka-na-vyrizeni:#e8697d;
  --nevyrizeno: #797e93;

  --urgent: #c95c76;
  --high:#ff8358;
  --medium:#ffd533;
  --low: #b0dc51;
  --none:#797e93;

  --addDashboard-color: #2172d3;
  --addDashboard-hover: #4b4e69 ;
  --dashboard-hover:#4b4e69;
  --dashboard-active:#133774;

  --silverlake-blue: #2172d3;
  --checkmark-color: #2172d3;
  --inactive-silverlake-blue: #0060b9;

  --popupSpace: #24294587;

  --main-font:  "Open Sans", sans-serif;
  --headline-font:  "Poppins", sans-serif;

  --red-hover: #a1465c;
  --green-hover: #27996a;

  --table-border: #4b4e69;
  --tabs : #ffffff7a;
  --table-blocks: #4b4e69;
  --table-color: flex;
  --option-color: #292f4c;

  --onlyDark:block;
  --onlyLight:none;
}

.onlyDark {
  display: var(--onlyDark) !important;
}

.onlyLight{
	display: var(--onlyLight) !important;
}

td[name="status"], td[name="priority"]{
	color: white;
}

th span{
	font-weight: bold !important;
}

a{
	text-decoration: none;
	color: var(--white);

}

tr{
	color: var(--table-color) !important;
}

body{
	margin: 0px;
	padding: 0px;
	background-color: var(--background-color);
	color: var(--white);
	font-family: var(--headline-font) !important;
}

h1{
	margin: 10px 0px 5px 0px;
}
p{
	margin: 0px;
}

button{
	 font-family: var(--headline-font) !important;
}
.bodyHeader{
	width: 100%;
    height: 45px;
    position: absolute;
    top: 0;
    left: 0;
    color: var(--white);
    font-family: var(--headline-font);
    display: inline-flex;
    align-items: center;

}

.bodyHeader div{
	margin: 0px 10px;
}

.headerContent{
	height: calc(100vh - 45px);
	width: 240px;
	position: fixed;
	top: 45px;
	left: 0;
	background-color: var(--forefront-color);
	border-radius: 0px 10px 0px 0px;
	font-family: var(--headline-font);	
}

.bodyContent{
	position: fixed;
	top: 45px;
	left: 248px;
	width: calc(100% - 248px);
	height: calc(100vh - 65px);
	background-color: var(--forefront-color);
	border-radius: 10px 0px 0px 0px;
	font-family: var(--headline-font);
	padding: 10px 40px;
	overflow: auto;
}

.bodyContentHeader, .bodyContentTable, .bodyContentFooter{
	width: calc(100% - 40px);
}

.bodyContent .bodyContentHeader .description{
	color: var(--white);
}

.bodyContentHeader .header{
	display: flex;
	align-items: center;
}

.bodyContentHeader .header button{
	color: white;
	padding: 7px 16px;
	border-radius: 5px;
	margin-left: 10px;
	border: none;
	outline: none;
	background-color: var(--hotovo);
}

thead th{
	font-size: 12px;
}

.bodyContent .tabs{
	margin-top: 10px;
	    border-bottom: solid var(--tabs) 0.5px;
	    display: flex;
	    align-items: center;
}

.bodyContent .tabs div{
	padding: 0px 3px;
	border-right: solid #ffffff7a 2px;
	margin-bottom: 3px;
}

.bodyContent .tabs button.active{
	background-color: var(--background-color);
	border-radius: 5px;
}

.bodyContent .tabs button{
    border: none;
    background-color: transparent;
    color: var(--white);
    font-family: var(--headline-font);
    padding: 8px 18px;
    text-align: center;
}

.bodyContent .tabs button:hover{
	background-color: var(--hover-tab);
	border-radius: 5px;
}

.bodyContentTable{
	margin: 20px 0px;
}

.bodyContentTable .interactive{
	margin-bottom: 40px ;
}

.bodyContentTable .interactive button{
	padding: 10px 15px;
	color: var(--white);
	border-radius: 5px;
	background-color: var(--silverlake-blue);
	border: none;
	font-weight: bold;
}

.bodyContent .interactive button:hover{
	background-color: var(--inactive-silverlake-blue);
	border-radius: 5px;
}

.bodyContentTable table{
	border-spacing: 0;
	background-color: var(--table);
	border-radius: 5px;
	border:solid var(--table-border) 0.2px; ;
}

.bodyContentTable table span{
	padding: 3px;
	font-weight: normal;
	font-size: 12px;
}

table th:last-child{
    border-top-right-radius: 5px;
}
    
table tr:last-child td:last-child {
    border-bottom-right-radius: 5px;
}

table th:first-child{
    border-top-left-radius: 5px;
}
    
table tr:last-child td:first-child {
    border-bottom-left-radius: 5px;
}

td, th{
	border-left: solid var(--table-blocks) 0.1px;
	border-bottom: solid var(--table-blocks) 0.1px;
	margin: 0px;
	padding: 5px 18px;
	position: relative;
}


table tr:last-child td{
	border-bottom: none;
}

table.hide{
	display: none !important;
}

td[column="1"], th[column="1"]{
	background-color: var(--silverlake-blue);
	border: none;
	width: 5px;
}

td.addNewTask{
	background-color: var(--inactive-silverlake-blue);
}

td[name="description"]{
	max-width: 315px;
	min-width: 315px;
}

td[name="description"]{
	display: flex;

}

th.status, th.priority{
	width: 120px;
}
th.description{
	width: 300px;
}
th.name{
	width: 450px;
}
th.dueDate{
	width: 120px;
}

table tr:hover{
	background-color: var(--table-hover);
}
table .lastTr:hover .addNewTask{
	background-color: var(--silverlake-blue);
}

table input[type="text"]{
	    background-color: transparent;
    color: var(--white);
    outline: none;
    border: none;
}

th.checkbox{
	width: 0px;
}

table input[type="text"]:hover:not(:focus), [contenteditable]:hover:not(:focus){
  outline: 1px solid var(--white);
  border-radius: 5px;
}

table .container {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Hide the browser's default checkbox */
table .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
table .checkmark {
  height: 5px;
  width: 5px;
  background-color: none;
  border: solid var(--white) 0.1px;
  opacity: 0.4;
}

table .checkmark:hover{
	border: solid var(--white)0.1px;
	opacity: 0.7;
}

/* On mouse-over, add a grey background color */
table .container:hover input ~ .checkmark {
  background-color: transparent;
}

/* When the checkbox is checked, add a blue background */
table .container input:checked ~ .checkmark {
  background-color: var(--checkmark-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
table .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

table .container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
table .container .checkmark:after {
  position: relative;
  top: -3px;
  width: 3px;
  height: 8px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(35deg);
  -ms-transform: rotate(35deg);
  transform: rotate(35deg);
}

label.status, label.priority{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 12px;
    text-align: center;
}

label.status .statusSelect, label.priority .prioritySelect{
	display: grid;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 100%;
	background-color: var(--silverlake-blue);
}

label.status .statusOption, label.priority .priorityOption{
    height: 20px;
    display: none;
    background-color: var(--option-color);
    position: relative;
    z-index: 2;
    width: 150px;
    left: calc(-1*((150px - 100%)/2));
    top: 0;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(255,255,255,0.7);
    -moz-box-shadow: 0px 0px 2px 0px rgba(255,255,255,0.7);
    box-shadow: 0px 0px 2px 0px rgba(255,255,255,0.7);
}

label.status .statusOption div, label.priority .priorityOption div{
    padding: 5px;
    width: 80%;
    height: 18px;
    margin: 5px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.hotovo{background-color: var(--hotovo) !important;}
div.kontrola{background-color: var(--kontrola) !important;}
div.dela-se{background-color: var(--dela-se) !important;}
div.ceka-na-vyrizeni{background-color: var(--ceka-na-vyrizeni) !important;}
div.nevyrizeno{background-color: var(--nevyrizeno) !important;}

div.urgent{background-color: var(--urgent) !important;}
div.high{background-color: var(--high) !important;}
div.medium{background-color: var(--medium) !important;}
div.low{background-color: var(--low) !important;}
div.none{background-color: var(--none) !important;}



label.status .statusOption.active, label.priority .priorityOption.active{
	display: table !important;
}

.usersTable{
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 12px;
    text-align: center;
}

.userImg{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--white);
	height: 100%;
}

.usersSelect{
	display:none;
	background-color: var(--background-color);
    position: relative;
    z-index: 2;
    width: 150px;
    left: calc(-1*((150px - 100%)/2));
    top: 0;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(255,255,255,0.7);
    -moz-box-shadow: 0px 0px 2px 0px rgba(255,255,255,0.7);
    box-shadow: 0px 0px 2px 0px rgba(255,255,255,0.7);
}

.usersSelect div{
	padding: 5px;
    width: calc(100% - 10px);
    height: 18px;
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usersSelect.active{
	display: table !important;
}

.usersSelect div:hover{
	background-color: var(--dashboard-hover);
}

.usersSelect div.active{
	background-color: var(--dashboard-hover);
}

input[type="date"]{
	    border: none;
    background-color: transparent;
    color: var(--white);
}

.headerContent .headerContainer, .headerContent .dashboardContainer{
	padding: 10px 20px;
	width: calc(100% - 40px);
}

.headerContainer div{
	width: 100%;
	height: 100%;
	margin: 0px;
}

.headerContent .headerContainer span, .headerContent .dashboardContainer span{
	padding: 7px 15px;
	font-size: 12px;
	font-family: var(--headline-font);
	display: block;
	margin: 0px;
}

.headerContent .headerContainer span:hover, .headerContent .dashboardContainer span:hover{
	background-color: var(--dashboard-hover);
	border-radius: 5px;
}

hr{
	margin: 0px;
}

.headerContent .headerContainer span.active, .headerContent .dashboardContainer span.active{
background-color: var(--dashboard-active);
	border-radius: 5px;
}

.addDashboard{
	border-radius: 7px;
	background-color: var(--addDashboard-color);
	border:none;
	padding: 4px 5px;
	color: var(--white);
	display: flex;
}

.searchContainer{
	width: calc(100% - 40px);
	margin-bottom: 10px;
	position: relative;
}

.searchContainer input{
	width: 147px;
	background-color: transparent;
	border: 0.2px rgba(255, 255, 255, 0.5) solid;
	border-radius: 5px;
	padding: 5px;
}

.searchContainer button:hover{
	background-color: var(--addDashboard-hover);
}

.searchContainer button{
	margin-left: 10px;
}

.addDashboardSelect, .tableOptions{
	    position: absolute;
    z-index: 2;
    background-color: var(--background-color);
    -webkit-box-shadow: 0px 0px 2px 0px rgba(255,255,255,0.7);
    -moz-box-shadow: 0px 0px 2px 0px rgba(255,255,255,0.7);
    box-shadow: 0px 0px 2px 0px rgba(255,255,255,0.7);
    border-radius: 3px;
    padding: 5px;
    width: 188px;
    top: 0;
    display: none;
}

.addDashboardSelect.active, .tableOptions.active{
	display: table;
}

.addDashboardSelect span, .tableOptions span{
	margin-top: 5px;
}

.center{
	display: flex;
	align-items: center;
	margin-left: 2px;
}


.popupSpace{
	position: fixed;
	width: 100%;
	height: 100vh;
	background-color: var(--popupSpace);
	z-index: 10;
	display: none;
	align-items: center;
	justify-content: center;
}

.popupSpace.active{
	display: flex !important;
}

.dashboardPopup, .folderPopup, .dashboardFolderPopup, .popup{
	display: none;
	width: 400px;
	height: 130px;
	padding: 10px 35px;
	align-items: center;
	justify-content: center;
	background-color: var(--forefront-color);
	border-radius: 7px;
	font-family: var(--headline-font);
/*	-webkit-box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.75);
box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.75);*/
}

.dashboardPopup input, .folderPopup input, .dashboardFolderPopup input, .popup input{
	width: 300px;
	border: 0.2px solid var(--white);
	background-color: transparent;
	border-radius: 4px;
	color: var(--white);
	padding: 5px;
}




.dashboardPopup button:hover, .folderPopup button:hover, .dashboardFolderPopup button:hover{
	background-color: #29a170;
	
}

.dashboardPopup button, .folderPopup button, .dashboardFolderPopup button{
	background-color: var(--hotovo);
	border: none;
	color: white;
	border-radius: 3px;
	padding: 4px 5px;
	margin-left: 10px;
}

.dashboardPopup.active , .folderPopup.active , .dashboardFolderPopup.active, .popup.active{
	display: flex !important;
}

.dashboardPopup h2, .folderPopup h2, .dashboardFolderPopup h2, .popup h2{
	margin: 0px 0px 10px 0px;
}

.cloneContent{
	display: none !important;
}

.footer{
	margin-top: 20px;
}

.footer .addNewGroup{
	border: none;
	color: var(--white);
	font-family: var(--headline-font);
	border-radius: 4px;
	padding: 7px 15px;
	background-color: var(--hotovo);
}

.addNewGroup:hover{
	background-color: var(--green-hover);
}

.hideButton.show{
  -webkit-transform: rotate(45deg) !important;
  -ms-transform: rotate(45deg) !important;
  transform: rotate(45deg) !important;
}

.hideButton{
	margin-left: 10px;
	position: relative;
  width: 8px;
  height: 8px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    color: var(--white);
}

.bodyHeader div{
    margin: 0px 10px;
    width: 50%;
    float: left;
}


.dashboardContainer span{
	cursor: pointer;
}

.folderContainer{
	display: none;
}

.folderContainer.active{
	display: block !important;
}

.folderContainer span{
	margin-left: 20px !important;
}

.hideFolder.show{
  -webkit-transform: rotate(45deg) !important;
  -ms-transform: rotate(45deg) !important;
  transform: rotate(45deg) !important;
}

.hideFolder{
	margin-left: 10px;
	position: relative;
  width: 3px;
  height: 3px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.folder{
	    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.rightClickFolder{
	display: none;
	position: absolute;
	padding: 10px;
	font-size: 11px;
}
.rightClickTable{
	display: none;
	position: fixed;
	padding: 10px;
	font-size: 11px;
}

.rightClickFolder.active, .rightClickTable.active{
	display: table !important;
}

.rightClickFolder .addDashboardSelect, .rightClickTable .tableOptions{
	position: relative !important;
	top: 0 !important;
}

.rightClickFolder .addDashboardSelect span, .rightClickTable .tableOptions span{
	margin-top: 0px;
	display: table;
	width: calc(100% - 12px);
	padding: 6px;
}

.rightClickFolder .addDashboardSelect span:hover, .rightClickTable .tableOptions span:hover{
	background-color: var(--dashboard-hover);
	border-radius: 5px;
}

.rightClickFolderHeader, .selectedTableHeader{
	margin: 7px 0px 5px 5px;

}

.footer .addNewGroup{
	color: white !important;
	cursor: pointer;
}

.statusSelect, .prioritySelect, .statusOption div, .priorityOption div,.userImg{
	transition: 0.1s ease-in;
	cursor: pointer;
}
.statusSelect:hover, .prioritySelect:hover,.statusOption div:hover, .priorityOption div:hover, .userImg:hover{
	transform: scale(0.95);
}

td input[type="date"]:hover,td input[name="description"]:hover{
	    outline: 1px solid var(--white);
    border-radius: 5px;
}

.search{
	cursor: pointer;
	color:var(--white) !important;
}

.checkedTasks{
	display: none;
	width: 600px;
	position: fixed;
	left: calc(((100% - 0px)/2) - 300px);
	bottom: 45px;
	height: 30px;
	padding: 7px;
	background-color: var(--option-color);
	-webkit-box-shadow: 0px 0px 2px 1px rgba(255,255,255,0.5);
	-moz-box-shadow: 0px 0px 2px 1px rgba(255,255,255,0.5);
	box-shadow: 0px 0px 2px 1px rgba(255,255,255,0.5);
	border-radius: 7px;
	justify-content: space-between;
}

.checkedTasks button{
	border-radius: 4px;
	border:none;
	color: white;
	margin: 0px 7px;
	padding: 4px 13px;
	background-color: var(--urgent);
}

.checkedTasks button:hover{
	background-color: var(--red-hover);
}

.checkedTasks.active{
	display: flex !important;
}

.checkedTasks .informative h3{
	margin: 0px;
	margin-left: 10px;
	padding: 0px;
	color: var(--white);
}

.popup button{
	border-radius: 4px;
	border:none;
	color: white;
	margin: 0px 7px;
	padding: 4px 13px;
}

.popup button.no{
	background-color: var(--urgent);
}

.popup button.yes{
	background-color: var(--hotovo);
}

.popup button.no:hover{
	background-color: var(--red-hover);
}

.popup button.yes:hover{
	background-color: var(--green-hover);
}


.finishedTask th[column="1"], .finishedTask td[column="1"]{
	background-color: var(--hotovo) !important;
}

input[name='description'], input[name="name"]{
	width: 100%;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--headline-font);
    height: 100%;
    font-size: 12px;
    padding: 4px 0px;
}

.addNewTaskTr input[type="text"]{
	width: 100%;
}

.spanDescription, .spanName{
	position: absolute;
    width: calc(100% - 21px);
    min-height: calc(100% - 6px);
    display: none;
    left: 0;
    top: 0;
    background-color: var(--dashboard-hover);
    padding: 10px !important;
    border: 1px solid var(--table-border);
    border-radius: 3px;
    z-index: 5;
    outline: none;
}

.spanDescription.active, .spanName.active{
	display: block !important;
}



button{
	cursor: pointer;
}

.deleteTablePopup{
	background-color: var(--background-color);
}

.loginContainer{
	font-family: var(--headline-font);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	border-radius: 10px;
	background-color: transparent;
	position: relative;
	z-index: 10;
}

.loginBackgroundImage{
	background-image: url("../image/dotted.jpg");
  opacity: 0.15;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.loginContent{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 375px;
	border-radius: 10px;
}

.loginImg{
	background-color: #292f4c;
	border-radius: 10px 0px 0px 10px;
	color: white;

}

.loginForm{
	background-color: white;
	border-radius: 0px 10px 10px 0px;
}

.loginForm, .loginImg{
	padding: 15px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 400px;
}

.loginFooter{
	position: fixed;
    bottom: 32px;
    margin: 0px auto;
    text-align: center;
    width: 100%;
    font-size: 12px;
}

.loginForm input{
	border-radius: 20px;
	padding: 10px;
	background-color: var(--addDashboard-color);
	border: none;
	outline: none;
}

.loginForm form{
	margin: 10px 0px;
}

.loginConfirm button{
	border:none;
	outline: none;
	color: white;
	padding: 10px 25px;
	background-color: #489ae1;
	margin-top: 10px;
	border-radius: 6px;
}

.loginConfirm button:hover{
	background-color: #0073ea;
}

.sort{
	cursor: pointer;
    border: none;
    background-color: var(--silverlake-blue);
    padding: 5px 10px;
    border-radius: 7px;
    color: white;
    margin-left: 15px;
}

.sort:hover{
	background-color: var(--inactive-silverlake-blue);
}

.sort.stop{
	background-color: var(--ceka-na-vyrizeni) !important;
}

.sort.stop:hover{
	background-color: var(--urgent) !important;
}

.sortableTablesContainer.active{
	width: 1500px;
	    border: 1px black dashed;
    padding-bottom: 40px;
}

.groupContainer table{
	width: 1500px
}

th.dashboard,th.group{
	width: 120px;
}

.spanName, .spanDescription{
	white-space: pre-line;
}

.changeTableColorPopup{
	position: relative;
	height: 380px !important;
}

.closePopup{
	background-image: url(../icon/close.png);
	background-repeat: no-repeat;
	position: absolute;
	top: 10px;
	right: 10px;
	width: 16px;
	height: 16px;
	opacity: 0.3;
	cursor: pointer;
}

.changeColorContainer{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.currColor{
	width: 350px;
	height: 40px;
	border-radius: 10px;
}

.colorSelect{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	width: 350px;
	margin-top: 20px;
}

.colorSelect div{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 25px 0px;
}

/* Customize the label (the container) */
.colorSelect .container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.colorSelect .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.colorSelect .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.colorSelect .container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.colorSelect .container input:checked ~ .checkmark {
  border:2px solid #454545;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.colorSelect .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.changeTableColorPopup .yes{
	margin-top: 25px;	
}

.headerContainer span{
	cursor: pointer;
}

.createRepeatableTasks.active{
	display: flex !important;
	flex-direction: column !important;
	justify-content: space-around;

}

.createRepeatableTasks{
	padding: 5px;
	width: 830px;
	height: 575px;
}

.createRepeatableTasks .chooseType{
	background-color: var(--background-color);
    padding: 30px;
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 15px;
}

.createRepeatableTasks .chooseType .type{
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	width: 100%;
}

.createRepeatableTasks .chooseType .type div{
    border: none;
    border-radius: 7px;
    color: white;
    width: 100px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.createRepeatableTasks .chooseType .type .daily{
	background-color: var(--color6);
	cursor: pointer;
}
.createRepeatableTasks .chooseType .type .weekly{
	background-color: var(--color10);cursor: pointer;
}
.createRepeatableTasks .chooseType .type .monthly{
	background-color: var(--color14);cursor: pointer;
}

.createRepeatableTasks .chooseType .type .daily:hover{outline:2px solid black;color: black;}
.createRepeatableTasks .chooseType .type .weekly:hover{outline:2px solid black;color: black;}
.createRepeatableTasks .chooseType .type .monthly:hover{outline:2px solid black;color: black;}

.createRepeatableTasks .chooseType .type .daily.active{outline:2px solid black;color: black;}
.createRepeatableTasks .chooseType .type .weekly.active{outline:2px solid black;color: black;}
.createRepeatableTasks .chooseType .type .monthly.active{outline:2px solid black;color: black;}


.createRepeatableTasks .chooseType .timestamp{
	margin-top: 20px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.createRepeatableTasks .chooseType .timestamp .daily{
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
}

.createRepeatableTasks .chooseType .timestamp .daily div{
    display: flex;
    align-items: center;
    justify-content: center;
}


.createRepeatableTasks .chooseType .timestamp .daily input{
	width: 75px;
}

.createRepeatableTasks .chooseType .timestamp .daily,.createRepeatableTasks .chooseType .timestamp .weekly,.createRepeatableTasks .chooseType .timestamp .monthly{
	display: none;
	min-height: 175px;
}

.createRepeatableTasks .chooseType .timestamp .daily,.createRepeatableTasks .chooseType .timestamp .weekly,.createRepeatableTasks .chooseType .timestamp .monthly{
	display: none;
	min-height: 175px;
}

.createRepeatableTasks .chooseType .timestamp div.active{
	display: flex !important;
}

.createRepeatableTasks .chooseType .timestamp .weekly.active{
	display: flex !important;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
}

.createRepeatableTasks .chooseType .timestamp .selectedDays{
	width: calc(100% - 40px);
    height: 20px;
    border-bottom: 1px solid black;
    display: flex;
    margin: 10px 0px;
    padding: 0px 10px;
}

.createRepeatableTasks .chooseType .timestamp .selectedDays div{
	margin-right: 10px;
}


.createRepeatableTasks .chooseType .timestamp .selectDay{
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	padding: 5px 0px;
}

.createRepeatableTasks .chooseType .timestamp .selectDay div{
	display: table !important;
	padding: 3px 20px;
	border-radius: 8px;
	background-color: var(--addDashboard-hover);
	color: white;
	border: none;
	outline: none;
	cursor: pointer;
	margin: 0px 5px;
}

.createRepeatableTasks .chooseType .timestamp .selectDay div:hover{
background-color: var(--none);
}

.createRepeatableTasks .chooseType .timestamp .selectDay div.active{
background-color: var(--none);
}

.createRepeatableTasks .chooseType .timestamp .monthly.active{
	display: flex !important;
	justify-content: space-between;
	flex-direction: column;
	width: 250px;
}

.createRepeatableTasks .chooseType .timestamp .monthly .weekContainer{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.createRepeatableTasks .chooseType .timestamp .monthly .weekContainer div{
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--dashboard-hover);
	border-radius: 7px;
	width: 30px;
	height: 30px;
	font-size: 12px;
	cursor: pointer;
	color: white;
}

.createRepeatableTasks .chooseType .timestamp .monthly .weekContainer div:hover{
	background-color: var(--none);
}

.createRepeatableTasks .chooseType .timestamp .monthly .weekContainer div.active{
	background-color: var(--none);
}

.createRepeatableTasks .chooseType .timestamp .monthly .weekContainer input{
	width: 10px;
}

.createRepeatableTasks .taskPriority{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	justify-content: center;
}

.createRepeatableTasks .taskPriority .type{
	display: flex;
    align-items: center;
    width: 70%;
    margin-top: 5px;
    justify-content: space-between;
}

.createRepeatableTasks .taskPriority .type div{
    color: white;
    border-radius: 5px;
    width: 110px;
    text-align: center;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.createRepeatableTasks .taskName input{
	    width: calc(100% - 50px);
    margin-left: 20px;
    border:none;

    background-color: var(--background-color);
    border-radius: 8px;
    outline: none;
}

.createRepeatableTasks .taskName{
	    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.createRepeatableTasks .submit{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70%;
}

.createRepeatableTasks .submit button{
	background-color: var(--hotovo);
	border:none;
	outline: none;
	color: white;
	padding: 5px 15px;
	border-radius: 8px;
}

.createRepeatableTasks .submit button:hover{
	filter:brightness(1.1);
}

.specificTime{
	background-color: white !important;
}

.specificTime[disabled]{
	background-color: transparent !important;
}

.weeklyTimes{
	background-color: white !important;
}

.weeklyTimes[disabled]{
	background-color: transparent !important;
}

.createRepeatableTasks .timestamp .daily input[type="radio"]{
	width: 13px;
	margin: 0px 10px;
}


.createRepeatableTasks .taskPriority .type div:hover{outline:2px solid black;color: black;}


.createRepeatableTasks .taskPriority .type div.active{outline:2px solid black;color: black;}

table.Denní td[name="description"],table.Týdenní td[name="description"],table.Mesíční td[name="description"]{
	min-width: 350px !important;
	max-width: none;
}

.createRepeatableTasks .weeklyTime{
	display: flex;
	align-items: center;
	justify-content: center;
}

.createRepeatableTasks .weeklyTime input{
	width: auto;

}