/* THIS FILE CONTAINS OUR MANUAL EXTENSIONS TO BOOTSTRAP */
/* THIS SHOULD ONLY BE USED TO EXTEND BOOTSTRAP (4) - NOT OTHER CSS */
/* INITIALLY THIS IS FOR ADMIN ONLY, BUT SHOULD BE ADDED TO THE FRONT END WITH BOOTSTRAP */

/* INDEX
 * 	LAYOUT / GRID
 * 	BUTTONS
 * 	TEXT
*/


/* LAYOUT / GRID START */
/* 2 larger sizes ( do ot have resposive classes to go with ) */
@media (min-width: 1400px) {
    .container {max-width: 1290px;}
}

@media (min-width: 1600px) {
    .container {max-width: 1530px;}
}
/* LAYOUT / GRID END */

/* BUTTONS START */
/* btn-xs START : extra small button - we need one smaller than bootstraps small button (btn-sm) - this is a clone of btn-sm rules  but smaller */
.btn-xs, .btn-group-xs > .btn {
	padding: 0.125rem 0.1875rem; /* gives min 24x24 for A11Y */
	font-size: 0.75rem;
	line-height: 1.5;
	border-radius: 0.2rem;
}
.btn-xs + .dropdown-toggle-split
, .btn-group-xs > .btn + .dropdown-toggle-split {
	padding-right: 0.1875rem;
	padding-left: 0.1875rem;
}
/* btn-xs END */
/* BUTTONS END */

/* INPUTS START */
.input-group > .input-group-prepend > .custom-select {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	background-color: #e9ecef;
}

.custom-control.custom-switch.custom-switch-lg {
	zoom: 2.5;
}
/* INPUTS END */