/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------ 6.0/00 - 03-09-22 */
/* file     -> profil.css */
/* colors   -> #EE741D | rgba(238,116,29) | hsla(25,86%,53%) */
/* ------------------------------------------------------------------------------ */
/* link     -> https://codepen.io/Umio/pen/MBdVme */
/* info     -> tabs2week */
/* ------------------------------------------------------------------------------ */
/* ROOT and VARIBLES */
:root {
	--hover-bgr:hsla(210,100%,56%,1);
    
    /* cards */
    --card-front-col: rgba(0,0,0,.6); /* black, gray OR client-color */
    --card-front-bgr: #fff;
    --card-back-col: #fff;
    --card-back-bgr: #EE741D;
    --card-ibox-hgt: 14rem;         /* min-height of the card - depends of the text card-back - def 14rem */
    --card-body-bdr: 1px solid rgba(0,0,0,.05);     /* border - def 1px */
    /* grid-area */
    --grid-area-gap: 1rem;          /* gap between flipboxes - def 1rem | min .3rem - check used shadow */
    --grid-area-pad: 1rem;          /* padding - check card-border-radius - def 1rem | min .3rem */
    --grid-area-bgr: none;          /* background - def none */
    --grid-area-bdr: 0px solid rgba(0,0,0,.25);     /* border - def 0px  */
    --grid-area-rad: 0rem;          /* border-radius - def 0rem */
    /* counter - card-front */ 
    --count-color: red;            /* color of the counter - must be the same as card-back-background AND no transparent */
    --count-size: 2.4rem;             /* counter size - def 4rem */
    --count-pos-top:0;        /* counte rposition top - def 1rem */
    --count-pos-right: 0;        /* counter position right - def 1.2rem */
    --count-pos-bottom: 0;     /* counter position bottom - NOT IN USE */ 
    --count-pos-left: 96%;       /* counter position left - NOT IN USE */
    --count-width: 1px;             /* counter stroke - def 1px | max 3px */
    /* animation */
    --time-flip: 0.8s;              /* def 0.8s */
	}

/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------ 6.0/00 - 02-09-22 */
/* TABS2WEEK */
/* RESET COUNTER -> SEE design.css */

/*
@import url('https://fonts.googleapis.com/css?family=Raleway:400,600&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*/
/*
body {
  background: #f6ecea;
  display: flex; 
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  font-family: 'Raleway', sans-serif;
}
*/
.wrap {
  position: relative;
  width: 550px;
  height: 400px;
  overflow:hidden;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,.25);
  box-shadow: 4px 4px 4px 0px rgba(0,0,0,.15);
  /*counter-reset:Element; /* reset must be here */
}

label {
  display:block; /* do not touch oder of the display block/flex !!! */
  width: 142px;
  height: 14.2857%;
  padding-left: 4%;
  display:flex;
  align-items:center;
  /*text-transform: uppercase;*/
  font-weight:400;
  font-size: 1.2rem;
  background: #f3f3f3;
  color: #bfbfbf;
  cursor:pointer;
  }

label:hover {
  background: rgba(0,0,0,.08);
  color: rgba(238,116,29,.6);
}

input {
  display:none;
  }

/* if activated show span and week-number */
.act_week {
  position:absolute;
  bottom: -1rem;
  margin: 1.1rem 1.4rem;
  padding: .6rem 0;
  border: 1px solid red;
  border-width: 0 0 0 0;
  color: rgba(0,0,0,.4);
}

.cont_wrap {
  position:absolute;
  top:0;
  right:0;
  width:400px;
  height:100%;
  background: #fff;
  }
  
.cont_wrap2 {
  padding:2rem;
}
.cont_wrap3 {
  position:relative;
}
.content {
  position:absolute;
  text-align:left;
  opacity:0;
  transition:.3s;
  }

h6 {
  margin: 0 0 .4rem 0;
  padding: .6rem;
  letter-spacing: 2px;
  text-align:center;
  font-weight: 100;
  font-size: 1.6rem;
  color: inherit;
  /*border: 1px solid rgba(238,116,29,.5);
  border-width: 0 0 1px 0;*/
  }
p {
  padding: .4rem 0;
  line-height:1.2rem;
  font-size: 1rem;
  color:inherit;
  }
/* for the real office-times */
/* info -> https://sharkcoder.com/blocks/list */
ul {
  list-style: none;
  list-style-position:inside;
  /*list-style-type:circle;*/
  margin: .2rem 0;
  padding: .6rem 0;
  border: 1px solid rgba(238,116,29,.4);
  border-width: 1px 0;
  }
ul li {
  padding: .2rem; 0;
  }
ul li::before {
  content:'\25BA'; /* arrow right */
  padding: 0 .6rem;
  font-size: 1rem;
  color: var(--card-back-bgr);
  }

input:checked + label {
  background: #fff;
  color: #EE741D;
  box-shadow:inset 6px 0 0 0 rgba(238,116,29,1);
  transition:.5s;
  }

/* check in script weekday-id - do not touch !!! */
#i1:checked ~ .cont_wrap #mo,
#i2:checked ~ .cont_wrap #di,
#i3:checked ~ .cont_wrap #mi,
#i4:checked ~ .cont_wrap #do, 
#i5:checked ~ .cont_wrap #fr, 
#i6:checked ~ .cont_wrap #sa, 
#i7:checked ~ .cont_wrap #so 
  {opacity:1;}

/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------ 6.0/00 - 21-08-22 */
/* css-counter postion background */
/* https://stackoverflow.com/questions/43514987/css-increasing-number-as-background-images-for-css */	
.card-counter::before { 
	position:absolute;
    display:flex;
	  top:var(--count-pos-top,1.2rem);*/
  	right:var(--count-pos-right,-1.2rem);
  	bottom:var(--count-pos-bottom,0.6rem);
    left:var(--count-pos-left,1.2rem);
	justify-content:center;
    align-items:center;
    counter-increment:Element 1;
	content:counter(Element) '';
	font-size:var(--count-size,4rem); 
	font: 800 Arial;
	  -webkit-text-fill-color:transparent; /* works FF, Chrome and Edge */
	  -webkit-text-stroke:var(--count-width,1px);
	  -webkit-font-smoothing:antialiased;
	color:var(--count-color,#EE741D); /* must be the same color als card-back background */
    opacity:1;
	z-index:999;
	}
/* shadow */
/*
.shadow, .flex-item {
  box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.04), 0 2px 2px rgba(0, 0, 0, 0.04), 0 4px 4px rgba(0, 0, 0, 0.04), 0 8px 8px rgba(0, 0, 0, 0.04), 0 16px 16px rgba(0, 0, 0, 0.04);
}
*/	
/* ------------------------------------------------------------------------------ */
/* END */	
/* ------------------------------------------------------------------------------ */