html,
body {
	font-family: 'Work Sans' !important;
}

.charros-checkout,
.charros-cart {
	/*padding: 1rem;*/
	background: #ffffff;
}

.custom-radio {
	display: flex;
	flex-direction: row;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 16px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: pointer;

	&:hover {
		border-color: #D53B10 !important;
	}
}

/* Hide the browser's default radio button */
.custom-radio input {
	opacity: 0;
	cursor: pointer;
}

/* Create a custom radio button */
.checkmk {
	position: absolute;
	top: 12px;
	left: 15px;
	height: 25px;
	width: 25px;
	background-color: transparent;
	border: solid 1px #6B605F;
	border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.custom-radio:hover input~.checkmk {
	background-color: #D53B10;
	border-color: #D53B10;
}

/* When the radio button is checked, add a blue background */
.custom-radio input:checked~.checkmk {
	background-color: #D53B10;
	border-color: #D53B10;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmk:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the indicator (dot/circle) when checked */
.custom-radio input:checked~.checkmk:after {
	display: block;
}

/* Style the indicator (dot/circle) */
.custom-radio .checkmk:after {
	top: 6px;
	left: 6px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: white;
}

@font-face {
	font-family: Brothers OT;
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	src: url(../fonts/BrothersOT-Regular.otf) format("opentype")
}

@font-face {
	font-family: 'Work Sans';
	font-style: normal;
	font-display: swap;
	src: url(../fonts/WorkSans-VariableFont_wght.ttf) format("truetype-variations");
}

h1,
h2,
h3,
h4,
h5,
h6 {
	text-transform: uppercase;
	font-family: Brothers OT;
}

.normal-case {
	text-transform: capitalize
}

.no-text-transform {
	text-transform: none;
}

h1 {
	font-size: 48px;
}

h3 {
	font-size: 32px;
}

* {
	transition: all 0.3s ease-in-out;
}

a {
	color: #D53B10;
	text-decoration: none;
}
a:hover {
	color: #AA2F0D;
	text-decoration: underline;
}
a:active {
	color: #000000;
	text-decoration: underline;
}
a:visited {
	color: #D53B10;
	text-decoration: underline;
}