.startBtn,
.finishBtn,
.clearBtn,
.stopBtn {
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	font-size: 25px;
	/* height: 10%; */

	/* Disables doubleclick text selection */
	-webkit-user-select: none;
	/* webkit (safari, chrome) browsers */
	-moz-user-select: none;
	/* mozilla browsers */
	-khtml-user-select: none;
	/* webkit (konqueror) browsers */
	-ms-user-select: none;
	/* IE10+ */
}

.startBtn,
.finishBtn {
	width: 50%;
	padding: 10px;
	border-radius: 5px;
	transition: background-color 0.05s;
	box-shadow: 0px 4px 5px #000000;
}

.startBtn {
	background-color: #4976CE;
}

.finishBtn {
	background-color: grey;
}

.startBtn:active {
	background-color: rgb(139, 178, 255);
}

.finishBtn:active {
	background-color: rgb(206, 206, 206);
}

/* .clearBtnCover {
	
    width: 45px;
    height: 45px;
    overflow: hidden;
    position: absolute;
    transform: rotate(45deg);
    background-color: red;
} */

.clearBtn {
		/* position: absolute;
		left: 15px;
		bottom: 15px;
		z-index: 2;
		background-color: blue;
		transform: rotate(-45deg);
		font-size: 1.2rem; */
	position: absolute;
	right: 5px;
	bottom: 5px;
	width: 30px;
	height: 30px;
}
.circle {
	position: absolute;
	padding: 10px;
	/* display: flex;
	align-items: center;
	justify-content: center;  */
	bottom: 0;
	right: 0;
}
.cross {
	position: absolute;
	height: 25px;
	width: 25px;
	bottom: 5px;
	right: 5px;
	z-index: 2;
}
.cross > circle {
	fill: #A83333;
}
.cross > path {
	fill: white;
}

/* div {
	border: 1px solid black;
	padding: 0;
	margin: 0;
} */

html, body {
	height: 100%;
	padding: 0;
	margin: 0;
	background-color: #303030;
	color: white;
	font-family: Arial, Helvetica, sans-serif;
}
body {
	height: 99%;
}

hr {
    border: 0.5px solid darkgrey;
}

.app {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-around;
	align-items: stretch;
	height: 100%;
	
	font-size: 25px;
}

.stopwatch {
	padding-top: 10px;
	width: 41%; /* 45 se nevejde */
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.time, .breakTime {
	width: 100%;
	/* width: 50%; */
    padding: 10px;
}
.lapsDiv {
	margin-top: 10px;
	flex-grow: 1;
	position: relative;
	height: 200px;
	background-color: white;
	border-radius: 5px;
	width: 100%;
	color: #303030;
	margin-bottom: 20px;
	box-shadow: 0px 4px 5px #000000;
}

.lapsListDiv {
	overflow-y: scroll;
	height: 100%;
}

.laps {
	position: relative;
}


ul {
	text-align: center;
	list-style-type: none;
	margin-top: 10px;
	padding-left: 25px;
	padding-right: 25px;
}


.lapsListDiv::-webkit-scrollbar {
    width: 10px;
}
 
/* .lapsDiv::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
} */
 
.lapsListDiv::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  /* outline: 1px solid slategrey; */
  border: 3px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  -webkit-border-radius: 7px;
}

.stopBtn {
	visibility: hidden;
}