/* --------------------------------------------|
|                                              |
| NO PREFIXES!!!                               |
|                                              |
|-------------------------------------------- */

/* --------------------------------------------|
| Debug                                        |
|-------------------------------------------- */

pre {
	white-space: pre-wrap;
}

/* --------------------------------------------|
| Default fill for SVG files                   |
|-------------------------------------------- */

svg {
	fill: currentColor;
}

/* --------------------------------------------|
| Clear floats                                 |
|-------------------------------------------- */

.clear:after {
	content: "";
	display: table;
	clear: both;
}

/* --------------------------------------------|
| Hide elements                                |
|-------------------------------------------- */

.is-hidden {
	display: none;
}

/* --------------------------------------------|
| Align elements horizontally                  |
|-------------------------------------------- */

.center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.right {
	text-align: right;
}

.fl-right {
	float: right;
}

/* --------------------------------------------|
| Align elements vertically                    |
|-------------------------------------------- */

.vcenter {
	display: flex;
	align-items: center;
}

/* --------------------------------------------|
| Shadow                                       |
|-------------------------------------------- */

.shadow {
	box-shadow: 5px 5px 5px 0 var(--color-shadow);
}

/* --------------------------------------------|
| Colors                                       |
|-------------------------------------------- */

.c-primary {
    color:var(--color-primary) !important;
}


/* --------------------------------------------|
| Cursor                                       |
|-------------------------------------------- */

.pointer {
	cursor: pointer;
}

/* --------------------------------------------|
| White Space                                  |
|-------------------------------------------- */

.nowrap {
	white-space: nowrap;
}

/* --------------------------------------------|
| Rotate                                       |
|-------------------------------------------- */

.rotate-45 {
	transform: rotate(45deg);
}

.rotate-270 {
	transform: rotate(270deg);
}

/* --------------------------------------------|
| Font sizes                                   |
|-------------------------------------------- */

.fz-20 {
	font-size: 20px;
}

.fz-18 {
	font-size: 18px;
}
.fz-16 {
	font-size: 16px;
}

.fz-14 {
	font-size: 14px;
}

.fz-12 {
	font-size: 12px;
}

/* --------------------------------------------|
|                                              |
| Images                                       |
|                                              |
|-------------------------------------------- */

img.responsive {
	max-width: 100%;
	height: auto;
	display: inline-block;
}

.img--circled {
    border-radius: 50%;
    overflow: hidden;
}

figure img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* --------------------------------------------|
|                                              |
| Generic display type classes                 |
|                                              |
|-------------------------------------------- */

.display-block {
	display: block;
}

.display-in-block {
	display: inline-block;
}

/* --------------------------------------------|
| Table                                        |
|-------------------------------------------- */

.table {
	display: table;
	table-layout: fixed;
	width: 100%;
	border-collapse: collapse;
}

.tr {
	display: table-row;
}

.cell,
.td,
.th {
	display: table-cell;
	vertical-align: top;
	height: 100%;
}

/* --------------------------------------------|
|                                              |
| Generic positioning classes                  |
|                                              |
|-------------------------------------------- */

.fixed {
	position: fixed;
}

.absolute {
	position: absolute;
}

.relative {
	position: relative;
}

.sticky {
	position: -webkit-sticky;
	position: sticky;
	top: 60px;
    z-index: 2;
}

/* --------------------------------------------|
|                                              |
| Generic dimension classes                    |
|                                              |
|-------------------------------------------- */

.w-100perc {
	width: 100%;
}

.w-auto {
	width: auto;
}

.mh-50 {
	min-height: 50px;
}

/* --------------------------------------------|
|                                              |
| Generic padding classes                      |
|                                              |
|-------------------------------------------- */

.p-10 {
	padding: 10px;
}

.p-20 {
	padding: 20px;
}

.p-30 {
	padding: 30px;
}

.p-40 {
	padding: 40px;
}

.p-50 {
	padding: 50px;
}

.p-60 {
	padding: 60px;
}

/*              */
/* Padding top  */
/*              */

.pt-10 {
	padding-top: 10px;
}

.pt-20 {
	padding-top: 20px;
}

.pt-30 {
	padding-top: 30px;
}

.pt-40 {
	padding-top: 40px;
}

.pt-50 {
	padding-top: 50px;
}

.pt-60 {
	padding-top: 60px;
}

.pt-70 {
	padding-top: 70px;
}

.pt-80 {
	padding-top: 80px;
}

/*               */
/* Padding right */
/*               */

.pr-10 {
	padding-right: 10px;
}

.pr-20 {
	padding-right: 20px;
}

.pr-30 {
	padding-right: 30px;
}

.pr-40 {
	padding-right: 40px;
}

.pr-50 {
	padding-right: 50px;
}

/*                */
/* Padding bottom */
/*                */

.pb-0,
.section__inner.pb-0 {
	padding-bottom: 0;
}

.pb-10 {
	padding-bottom: 10px;
}

.pb-20 {
	padding-bottom: 20px;
}

.pb-30 {
	padding-bottom: 30px;
}

.pb-40 {
	padding-bottom: 40px;
}

.pb-50 {
	padding-bottom: 50px;
}

.pb-60 {
	padding-bottom: 60px;
}

.pb-70 {
	padding-bottom: 70px;
}

.pb-80 {
	padding-bottom: 80px;
}

/*              */
/* Padding left */
/*              */

.pl-10 {
	padding-left: 10px;
}

.pl-20 {
	padding-left: 20px;
}

.pl-30 {
	padding-left: 30px;
}

.pl-40 {
	padding-left: 40px;
}

.pl-50 {
	padding-left: 50px;
}

/* --------------------------------------------|
|                                              |
| Generic border classes                       |
|                                              |
|-------------------------------------------- */

.b-light {
	border-color: var(--color-light);
}

.b-1 {
	border-style: solid;
	border-width: 1px;
}

/* --------------------------------------------|
|                                              |
| Generic margin classes                       |
|                                              |
|-------------------------------------------- */

.ml-5 {
	margin-left: 5px;
}

.ml-6 {
	margin-left: 6px;
}

.ml-10 {
	margin-left: 10px;
}

.ml-20 {
	margin-left: 20px;
}

.ml-30 {
	margin-left: 30px;
}

.mr-10 {
	margin-right: 10px;
}

.mb-10 {
	margin-right: 10px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-30 {
	margin-bottom: 30px;
}

/* --------------------------------------------|
|                                              |
| Generic flexbox classes                      |
|                                              |
|-------------------------------------------- */

.flex {
	display: flex;
	flex-wrap: wrap;
}

.flex--col {
	flex-direction: column;
}

.flex--inline {
	display: inline-flex;
}

/* --------------------------------------------|
| Vertical align                               |
|-------------------------------------------- */

.flex--vcenter {
	align-items: center;
}

.flex--vspace {
	align-content: space-between;
}

.flex--vstretch {
	align-items: stretch;
}

/* --------------------------------------------|
| Horizontal align                             |
|-------------------------------------------- */

.flex--space {
	justify-content: space-between;
}

.flex--end {
	justify-content: flex-end;
}

.flex--center {
	justify-content: center;
}

/* --------------------------------------------|
| Wrap                                         |
|-------------------------------------------- */

.flex--nowrap {
	flex-wrap: nowrap;
}

/* --------------------------------------------|
| Gap                                          |
|-------------------------------------------- */

.flex--gap-small {
	gap: 10px;
}

.flex--gap {
	gap: 20px;
}

.flex--gap-wide {
	gap: 40px;
}

/* --------------------------------------------|
| Circle                                       |
|-------------------------------------------- */

.circle {
	aspect-ratio: 1/1;
	border-radius: 50%;
	overflow: hidden;
}

.circle > * {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

/* --------------------------------------------|
| Misc.                                        |
|-------------------------------------------- */

button:disabled,
.button:disabled {
	opacity: 0.5;
	cursor: not-allowed !important;
	pointer-events: none !important;
}
