* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.d-flex {
    display: flex !important;
    align-items: center;
}

.d-inline-flex {
    display: inline-flex !important;
}

.d-none {
    display: none !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    flex-direction: column-reverse !important;
}

.flex-grow-0 {
    flex-grow: 0 !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    flex-shrink: 1 !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.justify-content-evenly {
    justify-content: space-evenly !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.align-content-start {
    align-content: flex-start !important;
}

.align-content-end {
    align-content: flex-end !important;
}

.align-content-center {
    align-content: center !important;
}

.align-content-between {
    align-content: space-between !important;
}

.align-content-around {
    align-content: space-around !important;
}

.align-content-stretch {
    align-content: stretch !important;
}

.align-self-auto {
    align-self: auto !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-center {
    align-self: center !important;
}

.align-self-baseline {
    align-self: baseline !important;
}

.align-self-stretch {
    align-self: stretch !important;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.white-space-nowrap,
.white-space-nowrap>button>span {
    white-space: nowrap !important;
}

.float-right {
    float: right !important;
}

.float-left {
    float: left !important;
}

.float-clear {
    clear: both !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.position-unset {
    position: unset !important;
}

.position-relative {
    position: relative !important;
}

.position-fixed {
    position: fixed !important;
}

.position-sticky {
    position: sticky !important;
}

.position-static {
    position: static !important;
}

.position-absolute {
    position: absolute !important;
}

.active {
    display: block !important;
}

.m-auto {
    margin: auto !important;
}

.mt-auto {
    margin-top: auto !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.ml-auto {
    margin-left: auto !important;
}

.mr-auto {
    margin-right: auto !important;
}


.m-0 {
    margin: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.w-auto {
    width: auto !important;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-70 {
    width: 70% !important;
}

.w-75 {
    width: 75% !important;
}

.w-80 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.line-height-0 {
    line-height: 0;
}

.cursor-pointer {
    cursor: pointer;
}

.filter-color-white {
    filter: brightness(0) invert(1);
}

@media(max-width:767px) {
    .hidden-on-mobile {
        display: none !important
    }

    .m-w-45 {
        min-width: 45% !important;
    }

    .m-w-50 {
        min-width: 50% !important;
    }

    .m-w-90 {
        min-width: 90% !important;
    }

    .m-w-100,
    .m-w-100 .wp-block-button {
        min-width: 100% !important;
    }

    .m-child-w-100>* {
        max-width: 100%;
    }

    .m-w-auto {
        width: auto;
        flex-basis: auto;
    }

    .m-grid-col-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }

    .m-grid-col-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .m-flex-wrap {
        flex-wrap: wrap !important;
    }

    .m-row-reverse {
        flex-direction: row-reverse;
    }

    .m-col-reverse {
        flex-direction: column-reverse;
    }

    .m-gap-xl {
        gap: var(--wp--preset--spacing--x-large);
    }

    .m-gap-3xl {
        gap: var(--wp--preset--spacing--xxx-large);
    }

    .m-text-align-center {
        text-align: center;
    }

    .m-text-align-left {
        text-align: left;
    }

    .m-img-middled {
        text-align: center;
    }
	
	.m-pl-0 { padding-left: 0 !important; }
	.m-pr-0 { padding-right: 0 !important; }
	.m-pt-0 { padding-top: 0 !important; }
	.m-pb-0 { padding-bottom: 0 !important; }

	.m-ml-0 { margin-left: 0 !important; }
	.m-mr-0 { margin-right: 0 !important; }
	.m-mt-0 { margin-top: 0 !important; }
	.m-mb-0 { margin-bottom: 0 !important; }
	
	/* Border Radius - All sides */
	.m-br-0  { border-radius: 0 !important; }
	.m-br-4  { border-radius: 4px !important; }
	.m-br-8  { border-radius: 8px !important; }
	.m-br-12 { border-radius: 12px !important; }
	.m-br-16 { border-radius: 16px !important; }
	.m-br-20 { border-radius: 20px !important; }

	/* Border Radius - Individual corners */
	.m-br-tl-0 { border-top-left-radius: 0px !important; }
	.m-br-tr-0 { border-top-right-radius:0px !important; }
	.m-br-bl-0 { border-bottom-left-radius: 0px !important; }
	.m-br-br-0 { border-bottom-right-radius: 0px !important; }
	
	.m-br-tl-12 { border-top-left-radius: 12px !important; }
	.m-br-tr-12 { border-top-right-radius:12px !important; }
	.m-br-bl-12 { border-bottom-left-radius: 12px !important; }
	.m-br-br-12 { border-bottom-right-radius: 12px !important; }

    .m-order-0 {
        order: 0;
    }

    .m-order-1 {
        order: 1;
    }

    .m-order-2 {
        order: 2;
    }

    .m-order-3 {
        order: 3;
    }

    .m-order-4 {
        order: 4;
    }

    .m-overflow-x-scroll {
        overflow-x: scroll !important;
    }
}

@media(min-width:768px) and (max-width:1024px) {
    .hidden-on-tablet {
        display: none !important
    }
}

@media(min-width:1025px) {
    .hidden-on-desktop {
        display: none !important
    }
}