/* ------------- Inherited helpers ------------- */

.font-bold {
    font-weight: 700;
}

.mt-1 {
    margin-top: .25rem;
}

.mt-10 {
    margin-top: var(--wp--preset--spacing--medium);
}

.pt-10 {
    padding-top: var(--wp--preset--spacing--medium);
}

.uppercase {
    text-transform: uppercase;
}

.text-gray-400{
    opacity: 1;
    color: rgb(163 163 163);
}

/* TODO: Remove? */

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
}

.transition{
    transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
}

.lazy:not(.initial) {
    transition: opacity .7s;
    opacity: 1 !important;
}

.lazy.error, .lazy.initial, .lazy.loaded {
    opacity: 1;
}

.rounded{
    border-radius: .25rem !important;
}

.rounded-full {
    border-radius: 9999px;
}

.object-cover {
    object-fit: cover;
}

.mb-2 {
    margin-bottom: .5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}


.rotate-180 {
    transform: rotate(180deg);
}

.transition-transform {
    transition: transform 0.3s ease;
}

.bg-gray-900 {
    background-color: rgb(23 23 23);
}

.bg-gray-800 {
    background-color: rgb(38 38 38);
}

.text-gray-500 {
    color: rgb(115 115 115);
}

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

.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.text-primary{
    color: var(--wp--preset--color--orange) !important;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.mr-2 {
    margin-right: .5rem;
}

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

.z-10{
    z-index:10;
}

.z-20{
    z-index:20;
}

.z-30{
    z-index:30;
}

.grayscale{
    filter: grayscale(100%);
}

.invert{
    filter: invert(100%);
}

.aspect-ratio-square{
    padding-bottom:100%;
}

.font-extrabold{
    font-weight: 800;
}

.font-light {
    font-weight: 300;
}

.leading-tight {
    line-height: 1.25;
}

.overlay-blur {
    filter: blur(30px);
    transform: scale(1.5);
}

.overlay-grayscale {
    filter: grayscale(1);
}

.overlay-dark::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    display: block;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 30;
}

.overlay-dotted::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    display: block;
    z-index: 30;
    background-color: rgba(0, 0, 0, 0.35);
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 2 2' style='enable-background:new 0 0 2 2;' xml:space='preserve'%3E%3Crect x='1' y='1' width='1' height='1'/%3E%3C/svg%3E%0A");
    background-size: 3px;
}

a.underline {
    text-decoration: underline;
}