/*libs*/

@import "./fonts/fonts.css";

/*styles*/

html, body {
    min-height: 100%;
}
html {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
}

* {
	box-sizing: border-box;
	outline: none;
}

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

h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	padding: 0;
}

ul, ol {
	margin: 0;
	padding: 0;
}

button {
	outline: none;
	border: none;
}

img {
	border: none;
}

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

select {
	appearance: none;
}

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

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

html {
	touch-action: manipulation;
}

body {
	position: relative;
	margin: 0 auto;
	padding: 0;
	font-family: "Gotham Pro";
	font-weight: 400;
	font-size: 14px;
	line-height: 1.4;
	color: #000;
	background-color: #fff;
	overflow-x: hidden;
}

input, textarea {
	font-family: inherit;
	font-size: 16px;
	line-height: 25px;
	color: #222;
	outline: none;
	border-radius: 0;
	border: none;
	background-color: rgba(0, 0, 0, 0);
	width: 100%;
	transition: border-color .2s linear;
	padding: 0;
}

textarea::-webkit-input-placeholder {
	color: #c4c4c4;
}


button {
	cursor: pointer;
}

input[type="button"], input[type="reset"], input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

.btn-form {
	font-size: 18px;
	color: #fff;
	font-weight: bold;
	width: 100%!important;
	text-align: center;
	height: 55px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: 200ms linear all;
	border: 2px solid #fff;
	background: #656C6F;
}

.btn-form:hover {
	background: #fff;
	border-color: #fff;
	color: #656C6F;
}

.menu__badge {
	display: inline-flex;
	width: 20px;
	height: 20px;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	background-color: #e20932;
	border-radius: 50%;
	margin-left: 5px;
	justify-content: center;
	align-items: center;
        line-height: 19px;
}
.help-block{
    font-weight: bold;
    color: #e20932;
}

.has-error input{
    border-color: #e20932;
}
.has-success input{
    border-color: #228b22;
}

p a, label a, li a, p a:hover, label a:hover, li a:hover, p a:visited, label a:visited, li a:visited {
    color: #E20932;
}
p a:hover, label a:hover, li a: hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px){
    .arcticmodal-container_i2{
        padding: 0;
    }
}

