/*
 PHP version 8.0~

 @license   Commercial
 @copyright Copyright (c) 2026 Ingo Koch
 @link      http://www.computer-freak24.de
 @version   v1.5 07.2026
 @author    Ingo Koch <koch.ingo@t-online.de>
 @lastEdit  05.07.2026
*//* 
    Created on : 05.07.2026, 05:53:59
    Author     : stixnroll
*/
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }

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

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

.justify-start { justify-content: flex-start !important; }
.justify-center { justify-content: center !important; }
.justify-end { justify-content: flex-end !important; }
.justify-between { justify-content: space-between !important; }

.gap-xs { gap: var(--bo-space-xs) !important; }
.gap-sm { gap: var(--bo-space-sm) !important; }
.gap-md { gap: var(--bo-space-md) !important; }
.gap-lg { gap: var(--bo-space-lg) !important; }
.gap-xl { gap: var(--bo-space-xl) !important; }

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