/*
Theme Name: CBRAPress
Description: tbd
Author: CBRA
Author URI: https://github.com/mkpxn
Version: 1.0
Text Domain: cbrapress
*/

/* CONTENTS */
/*
 * 1. General Styles
 * 2. Scrollbar
 * 3. Search result page
 */

/* GENERAL STYLES */

:root {
	--width-content: 1140px;
	--gutter-mobile: 1rem;
	--radius-border-small: 10px;

	--transition-link-hover: color ease 0.3s;
	--transition-button-hover: color ease 0.3s, background-color ease 0.3s,
		border-color ease 0.3s;
}

body {
	font-family: var(--typography-body-font);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

::-moz-selection,
::selection {
	color: var(--color-secondary-content);
	background-color: var(--color-secondary);
}

* {
	margin: 0;
}

html,
body {
	min-height: 100%;
}
body {
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

input,
button,
textarea,
select,
address {
	font: inherit;
}

/* SCROLLBAR */
body {
	overflow: overlay;
}

::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: transparent;
}

::-webkit-scrollbar {
	width: 6px;
	background-color: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
	background-color: #efefef;
}

/* REMOVE RECAPTCHA BADGE */
.grecaptcha-badge {
	display: none;
}
