/* ==================
Z INDEX
====================*/
.zi1{z-index: 1;}
.zi3{z-index: 3;}
.zi5{z-index: 5;}

/* ==================
BOX SIZE
====================*/
.box_max{
	position: relative;
	width: 100%;
	height: 100%;
	max-height: 100%;
}

/* ==================
FLEX
====================*/
.flxR_cc{
	display: flex;
	flex-direction: row;	
	align-items: center;
	justify-content: center;
}
.flxR_ct{
	display: flex;
	flex-direction: row;	
	align-items: center;
	justify-content: center;
}

.flxC_cc{
	display: flex;
	flex-direction: column;	
	align-items: center;
	justify-content: center;
}
.flxC_ct{
	display: flex;
	flex-direction: column;	
	align-items: center;
}
/* ==================
BUTTONS
====================*/
.button{
	display: flex;
	flex-direction: row;	
	align-items: center;
	justify-content: center;	
}
.button span{
	height: 2.5rem;
	display: flex;
	flex-direction: row;	
	align-items: center;
	justify-content: center;	
	padding: 0 1em;
	border-radius: 10px;
	font-weight: 500;
	font-size: 1em;
	box-shadow: inset -3px -3px 6px 0px rgba(0,0,0,0.4);
	cursor: pointer;
}

/* ==================
CHEKCKBOX
====================*/
.checkbox{
	display: flex;
	align-items: center;
}
input[type=checkbox]{
	font-size: 1.3em;
    width: 1.4em;
    height: 1.4em;
	display: none;
}
label{
	position: relative;
	font-size: inherit;
	line-height: inherit;
}
label:before{
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
    content:'';
	margin: 0 10px 0 0;
    width: 1.4em;
    height: 1.4em;
	border: 1px solid #ddd;
	border-radius: 0.2em;
    background-color: #fff;
	color: #fff;
}
input[type=checkbox]:checked + label:before{
    content:'\2713';
    background-color: #3b88fd;
	color: #fff;
}
/* ==================
DOTS
====================*/
.dotter{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 8px 0 0 0;
}
.dots{
  display: block;
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  color: #fff;
  box-shadow: 9984px 0 0 0, 9999px 0 0 0, 10014px 0 0 0;
  animation: dots 1.5s infinite linear;
}
@keyframes dots{
0%{box-shadow: 9984px 0 0 0, 9999px 0 0 0, 10014px 0 0 0;}
16.667%{box-shadow: 9984px -10px 0 0, 9999px 0 0 0, 10014px 0 0 0;}
33.333%{box-shadow: 9984px 0 0 0, 9999px 0 0 0, 10014px 0 0 0;}
50%{box-shadow: 9984px 0 0 0, 9999px -10px 0 0, 10014px 0 0 0;}
66.667%{box-shadow: 9984px 0 0 0, 9999px 0 0 0, 10014px 0 0 0;}
83.333%{box-shadow: 9984px 0 0 0, 9999px 0 0 0, 10014px -10px 0 0;}
100%{box-shadow: 9984px 0 0 0, 9999px 0 0 0, 10014px 0 0 0;}
}
/* ==================
COVERS
====================*/
#cov_z,
#cov_m{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
}

.msg_bx{
	display: flex;	
	align-items: center;
	justify-content: space-between;
	flex-direction: column;	
	padding: 50px;
	min-width: 150px;
	min-height: 150px;
	max-width: 50%;
	border-radius: 10px;
	background: #fff;
	text-align: center;
}
#Com .msg_bx{
	border: 4px solid #114232;
	}
#Cer .msg_bx{
	border: 4px solid #990000;
	}

.msg_hd{
	width: 100%;
	padding: 8px 0;
	border-radius: 10px;
	text-align: center;
	}
#Cer .msg_hd{
	background: #990000;
	color: #fff;
	}

.msg{
	width: 100%;	
}
.msg_bt{
	width: 100px;
	height: 2.5rem;
	margin-top: 20px;
	color: #fff;
	border-radius: 10px;
	font-size: 1rem;
	box-shadow: inset -3px -3px 6px 0px rgba(0,0,0,0.4);
	cursor: pointer;
}
.msg_bt:hover,
.msg_bt:focus{
	box-shadow: 3px 3px 1px rgb(0,0,0,.75);
}
#Com .msg_bt{
	background: #114232;
}
#Cer .msg_bt{
	background: #990000;
}

/* ---------------------
FONT SIZE
--------------------- */
.fn1{font-size: 0.8em !important;;}

/* ---------------------
COLORS
--------------------- */
.colP1{
	background: purple;
	color:#fff;
}
.colG1{
	background: #306a00;
	color:#fff;
}
.colB1{
	background: #250451;
	color:#fff;
}


/* ==================
COOKIE
====================*/
.cook_box{
	width: 40vw;
	min-width: 250px;
	padding: 20px;
	background: #fff;
	border-radius: 10px;
	border: 1px solid #333;
}
.cook_head{
	font-size: 1.6rem;
	line-height: 2.2rem;
	font-weight:700;
	margin: 0 0 .3rem 0;
}
.cook_msg{
	margin: 0 0 .3rem 0;
}
.cook_box .button span{
	background-color: rgb(145,216,255);	
}
.ck_img{float:left;margin:0 10px 0 0}

