/*  Utilities */

/***************/
/* Grid */
.bs-columns-1 {--bs-columns:1;}
.bs-columns-2 {--bs-columns:2;}
.bs-columns-3 {--bs-columns:3;}
.bs-columns-4 {--bs-columns:4;}
.bs-columns-5 {--bs-columns:5;}
.bs-columns-6 {--bs-columns:6;}
.bs-columns-7 {--bs-columns:7;}
.bs-columns-8 {--bs-columns:8;}
.bs-columns-9 {--bs-columns:9;}
.bs-columns-10 {--bs-columns:10;}
.bs-columns-11{--bs-columns:11;}
.bs-columns-12 {--bs-columns:12;}
.grid {display:grid; grid-template-rows:auto /*repeat(var(--bs-rows, 1), 1fr)*/; grid-template-columns:repeat(var(--bs-columns, 12), 1fr); column-gap:var(--grid-col-gap, 25px); row-gap:var(--grid-row-gap, 50px);}
.g-col {width:auto;}
.g-col-1{grid-column:auto/span 1}
.g-col-2{grid-column:auto/span 2}
.g-col-3{grid-column:auto/span 3}
.g-col-4{grid-column:auto/span 4}
.g-col-5{grid-column:auto/span 5}
.g-col-6{grid-column:auto/span 6}
.g-col-7{grid-column:auto/span 7}
.g-col-8{grid-column:auto/span 8}
.g-col-9{grid-column:auto/span 9}
.g-col-10{grid-column:auto/span 10}
.g-col-11{grid-column:auto/span 11}
.g-col-12{grid-column:auto/span 12}
.g-start-1{grid-column-start:1}
.g-start-2{grid-column-start:2}
.g-start-3{grid-column-start:3}
.g-start-4{grid-column-start:4}
.g-start-5{grid-column-start:5}
.g-start-6{grid-column-start:6}
.g-start-7{grid-column-start:7}
.g-start-8{grid-column-start:8}
.g-start-9{grid-column-start:9}
.g-start-10{grid-column-start:10}
.g-start-11{grid-column-start:11}
@media (min-width: 992px){
	.bs-columns-lg-1 {--bs-columns:1;}
	.bs-columns-lg-2 {--bs-columns:2;}
	.bs-columns-lg-3 {--bs-columns:3;}
	.bs-columns-lg-4 {--bs-columns:4;}
	.bs-columns-lg-5 {--bs-columns:5;}
	.bs-columns-lg-6 {--bs-columns:6;}
	.bs-columns-lg-7 {--bs-columns:7;}
	.bs-columns-lg-8 {--bs-columns:8;}
	.bs-columns-lg-9 {--bs-columns:9;}
	.bs-columns-lg-10 {--bs-columns:10;}
	.bs-columns-lg-11{--bs-columns:11;}
	.bs-columns-lg-12 {--bs-columns:12;}
	.grid-dt, .grid-lg {display:grid; grid-template-rows:auto /*repeat(var(--bs-rows, 1), 1fr)*/; grid-template-columns:repeat(var(--bs-columns, 12), 1fr); column-gap:var(--grid-col-gap, 25px); row-gap:var(--grid-row-gap, 50px);}
	.g-col-lg-1{grid-column:auto/span 1}
	.g-col-lg-2{grid-column:auto/span 2}
	.g-col-lg-3{grid-column:auto/span 3}
	.g-col-lg-4{grid-column:auto/span 4}
	.g-col-lg-5{grid-column:auto/span 5}
	.g-col-lg-6{grid-column:auto/span 6}
	.g-col-lg-7{grid-column:auto/span 7}
	.g-col-lg-8{grid-column:auto/span 8}
	.g-col-lg-9{grid-column:auto/span 9}
	.g-col-lg-10{grid-column:auto/span 10}
	.g-col-lg-11{grid-column:auto/span 11}
	.g-col-lg-12{grid-column:auto/span 12}
	.g-start-lg-1{grid-column-start:1}
	.g-start-lg-2{grid-column-start:2} .g-end-lg-2 {grid-column-end:3}
	.g-start-lg-3{grid-column-start:3} .g-end-lg-3 {grid-column-end:4}
	.g-start-lg-4{grid-column-start:4}
	.g-start-lg-5{grid-column-start:5}
	.g-start-lg-6{grid-column-start:6}
	.g-start-lg-7{grid-column-start:7}
	.g-start-lg-8{grid-column-start:8}
	.g-start-lg-9{grid-column-start:9}
	.g-start-lg-10{grid-column-start:10}
	.g-start-lg-11{grid-column-start:11}
}


/*******/
/* Gap */
.gap-0 {gap:0 !important;}
.gap-5 {gap:5px !important;}
.gap-10 {gap:10px !important;}
.gap-15 {gap:15px !important;}
.gap-20 {gap:20px !important;}
.gap-25 {gap:25px !important;}
.gap-35 {gap:35px !important;}
.gap-50 {gap:50px !important;}
.gap-100 {gap:100px !important;}
/* Row Gap */
.row-gap-0 {row-gap:0 !important;}
.row-gap-5 {row-gap:5px !important;}
.row-gap-10 {row-gap:10px !important;}
.row-gap-15 {row-gap:15px !important;}
.row-gap-20 {row-gap:20px !important;}
.row-gap-25 {row-gap:25px !important;}
.row-gap-35 {row-gap:35px !important;}
.row-gap-50 {row-gap:50px !important;}
.row-gap-100 {row-gap:100px !important;}
/*Column Gap */
.col-gap-0 {column-gap:0 !important;}
.col-gap-5 {column-gap:5px !important;}
.col-gap-10 {column-gap:10px !important;}
.col-gap-15 {column-gap:15px !important;}
.col-gap-20 {column-gap:20px !important;}
.col-gap-25 {column-gap:25px !important;}
.col-gap-35 {column-gap:35px !important;}
.col-gap-50 {column-gap:50px !important;}
.col-gap-100 {column-gap:100px !important;}
@media (max-width:991px) {
	/* Gap */
	.gap-mb-0 {gap:0 !important;}
	.gap-mb-5 {gap:5px !important;}
	.gap-mb-10 {gap:10px !important;}
	.gap-mb-15 {gap:15px !important;}
	.gap-mb-20 {gap:20px !important;}
	.gap-mb-25 {gap:25px !important;}
	.gap-mb-35 {gap:35px !important;}
	.gap-mb-50 {gap:50px !important;}
	.gap-mb-100 {gap:100px !important;}
	/* Row Gap */
	.row-gap-mb-0 {row-gap:0 !important;}
	.row-gap-mb-5 {row-gap:5px !important;}
	.row-gap-mb-10 {row-gap:10px !important;}
	.row-gap-mb-15 {row-gap:15px !important;}
	.row-gap-mb-20 {row-gap:20px !important;}
	.row-gap-mb-25 {row-gap:25px !important;}
	.row-gap-mb-35 {row-gap:35px !important;}
	.row-gap-mb-50 {row-gap:50px !important;}
	.row-gap-mb-100 {row-gap:100px !important;}
	/*Column Gap */
	.col-gap-mb-0 {column-gap:0 !important;}
	.col-gap-mb-5 {column-gap:5px !important;}
	.col-gap-mb-10 {column-gap:10px !important;}
	.col-gap-mb-15 {column-gap:15px !important;}
	.col-gap-mb-20 {column-gap:20px !important;}
	.col-gap-mb-25 {column-gap:25px !important;}
	.col-gap-mb-35 {column-gap:35px !important;}
	.col-gap-mb-50 {column-gap:50px !important;}
	.col-gap-mb-100 {column-gap:100px !important;}
}
@media (min-width:992px) {
	/* Gap */
	.gap-dt-0 {gap:0 !important;}
	.gap-dt-5 {gap:5px !important;}
	.gap-dt-10 {gap:10px !important;}
	.gap-dt-15 {gap:15px !important;}
	.gap-dt-20 {gap:20px !important;}
	.gap-dt-25 {gap:25px !important;}
	.gap-dt-35 {gap:35px !important;}
	.gap-dt-50 {gap:50px !important;}
	.gap-dt-100 {gap:100px !important;}
	/* Row Gap */
	.row-gap-dt-0 {row-gap:0 !important;}
	.row-gap-dt-5 {row-gap:5px !important;}
	.row-gap-dt-10 {row-gap:10px !important;}
	.row-gap-dt-15 {row-gap:15px !important;}
	.row-gap-dt-20 {row-gap:20px !important;}
	.row-gap-dt-25 {row-gap:25px !important;}
	.row-gap-dt-35 {row-gap:35px !important;}
	.row-gap-dt-50 {row-gap:50px !important;}
	.row-gap-dt-100 {row-gap:100px !important;}
	/*Column Gap */
	.col-gap-dt-0 {column-gap:0 !important;}
	.col-gap-dt-5 {column-gap:5px !important;}
	.col-gap-dt-10 {column-gap:10px !important;}
	.col-gap-dt-15 {column-gap:15px !important;}
	.col-gap-dt-20 {column-gap:20px !important;}
	.col-gap-dt-25 {column-gap:25px !important;}
	.col-gap-dt-35 {column-gap:35px !important;}
	.col-gap-dt-50 {column-gap:50px !important;}
	.col-gap-dt-100 {column-gap:100px !important;}
}


/***********/
/* Flexbox */

/* Justify Content */
.justify-center {justify-content: center;}
.justify-content-left {justify-content: left}
.justify-right {justify-content: right;}
.justify-start {justify-content: start;}
.justify-end {justify-content: end;}
.justify-between {justify-content: space-between;}
.justify-around {justify-content: space-around;}
.justify-evenly {justify-content: space-evenly;}
@media (max-width:991px) {
	.justify-center-mb {justify-content: center;}
	.justify-content-left-mb {justify-content: left}
	.justify-right-mb {justify-content: right;}
	.justify-start-mb {justify-content: start;}
	.justify-end-mb {justify-content: end;}
	.justify-between-mb {justify-content: space-between;}
	.justify-around-mb {justify-content: space-around;}
	.justify-evenly-mb {justify-content: space-evenly;}
}
@media (min-width:992px) {
	.justify-center-dt {justify-content: center;}
	.justify-content-left-dt {justify-content: left}
	.justify-right-dt {justify-content: right;}
	.justify-start-dt {justify-content: start;}
	.justify-end-dt {justify-content: end;}
	.justify-between-dt {justify-content: space-between;}
	.justify-around-dt {justify-content: space-around;}
	.justify-evenly-dt {justify-content: space-evenly;}
}