/*
 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
*/

/*Подключаем иконки*/
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

/*Делаем мегаменю справа*/
#mega-menu-wrap-main-menu {
margin-left: auto;}
/*Скрываем в меню активация пользователя*/
.account-toggler {display: none !important; /*Добавили*/}
/*Скрываем в меню корзину*/
.cart-toggler {display: none !important; /*Добавили*/}
/*Отступы блока сверху и снизу, изменение цвета где находится меню*/
.navbar {/*--bs-navbar-padding-y: 0rem *//*0.5rem;*/;/*--bs-navbar-brand-padding-y: 0 *//*0.3125rem*/;}

/*Кнопка прижатая к верху. Шорткод главная страница - блоки категорий*/
.card-body {flex: 0 0 auto; /*1 1 auto*/}
/*Перенос количества товара на новую строку. Шорткод главная страница - блоки категорий*/
.count {display: block; /*Добавили*/
 margin: 10px; /*Добавили*/}

/*Блок шапки меню и бренда для мобильной версии по центру*/
.align-items-center {
    align-items: center !important;    
    margin: auto;
}
.navbar-brand {margin: auto;}

/*Стиь кнопки*/
.btnt {
	display: inline-block;	
	box-sizing: border-box;
	padding: 0 20px;
	outline: none;
	border: none;  
	border-radius: 6px;
	height: 38px;
	line-height: 18px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	color: #fff; /*#385898*/
	background-color: #302794;/*#e7f3ff*/
	cursor: pointer;
	user-select: none;
	appearance: none;
}
.btnt:focus-visible {
	box-shadow: 0 0 0 2px #666;
}
.btnt:hover {
	color: #fff; /*#385898*/
	background-color: #5d54d1ff; /*#DBE7F2*/	
}
.btnt:active {
	transform: scale(0.96);
}
.btnt:disabled {
	pointer-events: none;
	opacity: 0.65;
}
