@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bad+Script&family=Dancing+Script:wght@600&family=Nanum+Pen+Script&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    height: 100%;
	overflow-x: hidden;
}

html{
	box-sizing: border-box;
	/*padding: 15px !important;*/
	height: 100%;
}

html *{
	font-family: 'Poppins', sans-serif !important;
}

.flexRow{
	display: flex;
	flex-direction: row;
}

.flexCol{
	display: flex;
	flex-direction: column;
}

.contentarround{
	justify-content: space-around;
}

.contentbetween{
	justify-content: space-between;
}

.contentright{
	justify-content: right;
}

.contentcenter{
	justify-content: center;
}

.contentend{
	justify-content: flex-end;
}

.alignCenter{
	align-items: center;
}

.marginAutoV{
	margin: 0 auto;
}

.marginAutoH{
	margin: auto 0;
}

.noMargin{
	margin: 0 !important;
}

.noMarginLeft{
	margin-left: 0px;
}

.noPadding{
	padding: 0 !important;
}

.noPaddingLeft{
	padding-left: 0px;
}

.textCenter{
	text-align: center;
}

.textRight{
	text-align: right;
}

.textLeft{
	text-align: left;
}

.textBold{
	font-weight: bold !important;
}

.textBlack{
	color: black;
}

.uppercase{
	text-transform: uppercase;
}

.aCenter{
	display: block !important;
	margin-right: auto;
	margin-left: auto;
}

.hidden{
	display: none;
}

.relative{
	position: relative;
}

.absolute{
	position: absolute;
}

a{
    text-decoration: none;
}

.fullHeight{
	height: 100%;
}

.fullWidth{
	width: 100%;
}

.fullHeightScreen{
	height: 100vh;
}

.fullWidthScreen{
	width: 100vw;
}

.noUnderline{
    text-decoration: none;
}

.img_center{
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.btn-primary{
	background: #f5127c !important;
	border: #f5127c !important;
	color: #fff !important;
}

.btn-primary:not(:disabled):not(.disabled):active:focus{
	box-shadow: 0 0 0 .2rem #fc5130;
}

.inline{
	display: inline;
}

.block{
	display: block;
}

hr{
	border-top: 1px solid #f5127c !important;
}

.listDate{
	font-size: 0.8rem;
	line-height: 2;
}

.italic{
	font-style: italic;
}

.guest{
	background: rgba(255,0,0,.5);
}

/* -------------------vue notation-------------------- */

/*------------------------- notification -------------------------*/

#zonedenotification{
    font-size: 12px;
    position: fixed;
    top: 4px;
    line-height: 12px;
    padding: 0;
    z-index: 5000;
}

/* -------------------Post it-------------------- */

#postit{
	width: 90%;
	min-height: 300px;
	background: linear-gradient(yellow, orange);
	margin: 30px 5%;
	position: relative;
	padding: 15px 0;
}

#postit .script{
	font-family: 'Dancing Script', cursive !important;
	color: black;
}

.deleteNotice{
	margin-top: 10px;
}



#postit h3{
	margin: 0px 20px 15px 20px;
	font-size: 30px;
}

#postit p{
	font-size: 23px;
}

#postit .separateur{
	position: absolute;
	top: 15%;
	left: 50%;
	height: 80%;
	width: 1px;
	background: black;
	background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.2) 4%, rgba(0,0,0,.8) 5%, rgba(0,0,0,1) 6%, rgba(0,0,0,.8) 90%, rgba(0,0,0,.6) 95%, rgba(0,0,0,0.4) 97%, rgba(0,0,0,0) 98%);
}

#postit .pictoPostit{
	width: 33px;
	height: 33px;
	margin-top:2px
}

#postit .positive, #postit .negative{
	padding: 0 15px;
}