@charset "utf-8";
.w90_desktop{
	width: 90%;
}
.w60{
	width: 60%;
}
.w40{
	width: 40%;
}
.w50{
	width: 50%;
}
.flex_desktop{
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */    flex-flow: row wrap;
    align-content: center;
    justify-content: center;
}
.flex.start_desktop{
	justify-content: flex-start;
}
.flex.end_desktop{
	justify-content: flex-end;
	align-content: flex-end;
}
.flex_start_desktop{
	justify-content: flex-start;
}
.space_between_desktop{
	justify-content: space-between;
}
.cols2_desktop{
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

