/* CSS Document */

body,html {
	font-family:Tahoma, Geneva, sans-serif;
	font-size:10pt;
	background-color:#525659;
	margin:0;
	min-height: 100%;
	height: 100%;
}

#wrapper{
	max-width: 1906px;
	margin: 0px auto;
	background-color: #fff;
	min-height: 100%;
}

#wrapper-dummy{
	background-color: #525659;
	min-height: 100%;
	height: 100%;
}

#maincontent h1{
	color: #6C7A83;
	font-size: 11pt;
}

.darkblue {
    border: 5px solid transparent !important;
    background-color: #04557f !important;
}
.darkblue:hover {
    background-color: #000 !important;
}

.btn {
    border: 5px solid transparent !important;
}
.border{
	border:1px solid #CECECE;
	word-break: break-all;
}
.header{
	font-size: 1.2em;
	background-color: #CECECE;
}

.fa_zoomed{
	font-size: 14pt;
}

.fa-exclamation{
	color: red;
}

.tlogo{
	width: 100%;
	max-width: 400px;
}
.logotop{
	width: 100%;
}
#grayout {
	position: fixed;
	left: 0px;
	top: 0px;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: 0.5;
	z-index: 200;
}
#tlogins input{
	max-width: 400px;
}
#responsible{
	display: none;
	position: relative;
	background-color: #fff;
	z-index: 310;
	/*left: 50%;*/
}
.av-link{
	margin-bottom: 20px;
	margin-right: 10px;
}
.btn{
	padding: 0.375rem 0.5rem;
}

@media (min-width: 1200px){
	.container, .container-lg, .container-md, .container-sm, .container-xl {
		max-width: 1840px;
	}
	#tlogins{
		padding-left: 35%;
		padding-top: 5%;
	}
}

@media (min-width: 1500px){
	.modal-dialog {
	    max-width: 1500px;
	}
}
@media (max-width: 900px){
	.blockmobile{
		margin-bottom: 2rem;
		border: 2px solid #000;
		background-color: #E7E7E7;
	}
	body,html {
		background-color:#fff;
	}
}

.importante{
	background-color: indianred !important;
}
.lightgrey{
	background-color: lightgrey !important;
}
.jobsback{
	background-color: darkorange !important;
}
.grey{
	color: #CECECE;
}
.black{
	color: #000;
}
 /* Hide the default checkbox */
.tvacation {
  visibility: hidden;
}
.clickable{
	cursor: pointer;
}
.day{
	height: 70px;
}


:root {
	--lw-countdown-timer-size: 2.5rem;
	--lw-countdown-timer-stroke-width: 1.5rem;
	--lw-countdown-timer-font-size: .85rem;
	--lw-countdown-timer-font-weight: 600;

}

/* Sets the containers height and width */
.base-timer {
  position: relative;
  height: var(--lw-countdown-timer-size);
  width: var(--lw-countdown-timer-size);
}

/* Removes SVG styling that would hide the time label */
.base-timer__circle {
  fill: none;
  stroke: none;
}

/* The SVG path that displays the timer's progress */
.base-timer__path-elapsed {
  stroke-width: var(--lw-countdown-timer-stroke-width);
  stroke: grey;
}

.base-timer__label {
  position: absolute;
  
  /* Size should match the parent container */
  width: var(--lw-countdown-timer-size);
  height: var(--lw-countdown-timer-size);
  
  /* Keep the label aligned to the top */
  top: 0;
  
  /* Create a flexible box that centers content vertically and horizontally */
  display: flex;
  align-items: center;
  justify-content: center;

  /* Sort of an arbitrary number; adjust to your liking */
  font-size: var(--lw-countdown-timer-font-size);
  font-weight: var(--lw-countdown-timer-font-weight);
}

.base-timer__path-remaining {
  /* Just as thick as the original ring */
  stroke-width: var(--lw-countdown-timer-stroke-width);

  /* Rounds the line endings to create a seamless circle */
  stroke-linecap: round;

  /* Makes sure the animation starts at the top of the circle */
  transform: rotate(90deg);
  transform-origin: center;

  /* One second aligns with the speed of the countdown timer */
  transition: 1s linear all;

  /* Allows the ring to change color when the color value updates */
  stroke: currentColor;

  color: rgb(65, 184, 131);
}

.base-timer__svg {
  /* Flips the svg and makes the animation to move left-to-right */
  transform: scaleX(-1);
}