html {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent
}

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

* {
    margin: 0;
    outline: transparent;
    padding: 0;
    font: inherit
}

details>summary,
li,
ol,
ul {
    list-style: none
}

html:focus-within {
    scroll-behavior: smooth
}

body,
html {
    height: 100%;
    scroll-behavior: smooth
}

body {
    line-height: 1.5;
    text-rendering: optimizeSpeed
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto
}

canvas,
img,
object,
picture,
svg,
video {
    display: block;
    height: auto;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    overflow-wrap: break-word
}

a {
    text-decoration: none;
    color: inherit
}

@media (prefers-reduced-motion:reduce) {
    html:focus-within {
        scroll-behavior: auto
    }

    *,
    ::after,
    ::before {
        -webkit-transition-duration: 0s !important;
        -o-transition-duration: 0s !important;
        transition-duration: 0s !important;
        -webkit-animation-duration: 0s !important;
        animation-duration: 0s !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important
    }
}

section {
    display: block
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    border: 0
}

select::-ms-expand {
    display: none
}

address {
    font-style: normal
}

details summary::-webkit-details-marker {
    display: none
}

button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-color: transparent;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: transparent;
    cursor: pointer
}

button:disabled {
    cursor: default
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 0;
    background-color: transparent
}

input::-webkit-search-cancel-button,
input::-webkit-search-decoration,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
    display: none
}

input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0
}

input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
    display: none
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}


input.button, input.default, button.button {
	background: #B50E1B;
	padding: 5px 10px;
	color: #fff;
	line-height: 150%;
	text-transform: uppercase;
	font-size: 20px;
	cursor: pointer;
	border: none !important;
	/* text-shadow: 0 1px 1px #fff; */
	font-weight: 400;
}

input.button:hover, input.default:hover, button.button:hover {
	box-shadow: 0px 5px 5px #8C0B14 inset;
}

input.inputbox {
    background: #ffffff;
    padding: 5px 10px;
    border-radius: 3px;
    border: 1px solid #000;
    transition: all 0.3s ease 0s;
    box-shadow: 0 0 1px #000;
}
input.inputbox:focus {
    box-shadow: 0 0 5px #fff;
}

.custom-checkbox__field+.custom-checkbox__content a, .custom-checkbox__field:checked+.custom-checkbox__content{color:red !important}