/* ALIGNEMENTS */
@media (min-width: 750px) {
   .alignfull {
       margin-left: calc(50% - 50vw) !important;
       margin-right: calc(50% - 50vw) !important;
       width: auto;
       max-width: 1000%;
       margin: 0 auto !important;
       position: initial !important;
   }

   .alignwide {
       /* margin-left: calc(25% - 25vw) !important;
       margin-right: calc(25% - 25vw) !important; */
       width: auto;
       max-width: 1000%;
   }
}

/* COLORS */
.has-primary-color {
   color: var(--theme-primary);
}
.has-primary-background-color {
   background-color: var(--theme-primary) !important;
}
.has-secondary-color {
   color: var(--theme-secondary);
}
.has-secondary-background-color {
   background-color: var(--theme-secondary) !important;
}
.has-tertiary-color {
   color: var(--theme-tertiary);
}
.has-tertiary-background-color {
   background-color: var(--theme-tertiary) !important;
}
.has-white-color {
   color: var(--theme-white);
}
.has-white-background-color {
   background-color: var(--theme-white) !important;
}
.has-gray-color {
   color: var(--theme-gray);
}
.has-gray-background-color {
   background-color: var(--theme-gray) !important;
}
.has-black-color {
   color: var(--theme-black);
}
.has-black-background-color {
   background-color: var(--theme-black) !important;
}





