/*
 Theme Name:   Bootscore Child
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/

/* 
All style editing is done via /assets/scss/_bootscore_custom.scss
*/


:root {
	--bs-primary: #000000; /* Black */
	--acre-black:#262E30;
	--acre-white:#F7F7F6;
	--acre-red:#9F033F;
	--acre-dark-red:#7A042E;
	--acre-grey:#2e3739;
}

/* Backgrounds */
.acre-black{background:var(--acre-black)!important;color:var(--acre-white);}
.acre-grey{background:var(--acre-grey)!important;color:var(--acre-white);}
.acre-white{background:var(--acre-white)!important;color:var(--acre-black);}

/* Container */
    .container {
max-width: 2000px; /* Remove the max-width restriction */
padding-left: 4vw;
padding-right: 4vw;
}

.container-fluid{
	padding-left: 0;
padding-right: 0;}


/*Nav Bar */

.navbar-brand{width:60px!important;}

/*Fonts */
body{font-family: "Public Sans", sans-serif;}

/* Buttons */

.btn-primary {
--bs-btn-color: var(--acre-white)!important;
--bs-btn-bg: var(--acre-red)!important;
--bs-btn-border-color: var(--acre-red)!important;
--bs-btn-hover-color: var(--acre-white)!important;
--bs-btn-hover-bg: var(--acre-dark-red)!important;
--bs-btn-hover-border-color: var(--acre-dark-red)!important;
--bs-btn-focus-shadow-rgb: 49, 132, 253;
--bs-btn-active-color: #fff;
--bs-btn-active-bg: #0a58ca;
--bs-btn-active-border-color: #0a53be;
--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
--bs-btn-disabled-color: #fff;
--bs-btn-disabled-bg: #0d6efd;
--bs-btn-disabled-border-color: #0d6efd;
}

.top-button{display:none}