@font-face {
  font-family: "DIN Condensed Bold";
  src: url("/static/fonts/DINCondensedBold.ttf") format("TrueType");
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1400px) {
  .container {
    width: 1200px;
  }
}

html,
body {
  width: 100%;
  height: 100%;
  background: #f2f2f2;
}

* {
  -webkit-font-smoothing: antialised !important;
}

html,
body,
p,
.text {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: lighter;
}

a {
  cursor: pointer;
  text-decoration: none;
}

a:active,
a:focus {
  text-decoration: none;
}

button,
a.button {
  cursor: pointer;
  border: 0;
  border-radius: 4px;
  background-color: transparent;
  outline: 0;
  text-decoration: none;
}

button,
a.button {
  display: inline-block;
  font-family: "DIN Condensed Bold";
  padding: 12px 30px;
  text-transform: uppercase;
  transition: all 0.2s linear;
}

button.default,
a.button.default {
  background-color: white;
  -webkit-box-shadow: 0 4px 0 #ececec;
  box-shadow: 0 4px 0 #ececec;
}

button.default:hover,
a.button.default:hover {
  color: white;
  background-color: #333333;
  -webkit-box-shadow: 0 4px 0 #202020;
  box-shadow: 0 4px 0 #202020;
}

button.primary,
a.button.primary {
  color: white;
  background-color: #e74642;
  -webkit-box-shadow: 0 4px 0 #c14444;
  box-shadow: 0 4px 0 #c14444;
}

button.primary:hover,
a.button.primary:hover {
  background-color: #c14444;
}

button:focus,
a.button:focus {
  outline: 0;
}

button:disabled,
a.button:disabled {
  background-color: #dddddd;
  pointer-events: none;
}

input {
  height: 44px;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-box-shadow: 0 -4px 0 #cccccc;
  -webkit-box-shadow: 0 -4px 0 #cccccc;
  box-shadow: 0 -4px 0 #cccccc;
  border-radius: 4px;
  font-weight: 400 !important;
  color: #333333;
  padding: 0 20px 0 20px;
  appearance: none;
}
input :-webkit-input-placeholder {
  color: #333333;
}
input :-moz-placeholder {
  color: #333333;
}
input ::-moz-placeholder {
  color: #333333;
}
input :-ms-input-placeholder {
  color: #333333;
}
input ::placeholder {
  color: #333333;
}
input:focus {
  outline: 0;
}
input.with-error {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: 0 -4px 0 #c14444;
  box-shadow: 0 -4px 0 #c14444;
  border: 1px solid #b42c2a;
}

.error-wrapper {
	background-color: #dd052b;
	width: 100%;
	padding: 1em 2em 1.25em;
	color: #FFF;
	border-radius: 5px;
	text-align: center;
	font-size: 0.85em;
  max-width: 350px;
  margin-bottom: 20px;
	box-shadow: 0px 5px rgba(#bb0224, 1);
}

.error-wrapper .error-msg::before {
	white-space: pre-wrap;
	font-weight: 900;
	color: #ffcd47;
}

.font-din {
  font-family: "DIN Condensed Bold";
}

.text-xxs {
  font-size: 12px;
}

.text-xs {
  font-size: 14px;
}

.text-s {
  font-size: 18px;
}

.text-sm {
  font-size: 22px;
  line-height: 27.5px;
}

.text-md {
  font-size: 32px;
  line-height: 40px;
}

.text-lg {
  font-size: 50px;
  line-height: 62.4px;
}

#main-wrapper {
  background-image: url(/static/images/bg.jpg);
}

.overflow-hidden {
  overflow: hidden;
}

.dark-background {
  background-color: #333333;
}

.yellow-background {
  background-color: #ffcd47;
}

.text-red {
  color: #e74642;
}

.text-yellow {
  color: #ffcd47;
}

.text-light-grey {
  color: #c2c2c2;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.no-margin {
  margin: 0;
}

.center-content {
  display: flex;
  justify-content: center;
}

.hide {
  display: none;
}

.top-0 {
  margin-top: 0px;
}

.top-10 {
  margin-top: 10px;
}

.bottom-10 {
  margin-bottom: 10px;
}

.top-20 {
  margin-top: 20px;
}

.bottom-20 {
  margin-bottom: 20px;
}

.top-30 {
  margin-top: 30px;
}

.bottom-30 {
  margin-bottom: 30px;
}

.top-40 {
  margin-top: 40px;
}

.bottom-40 {
  margin-bottom: 40px;
}

.top-50 {
  margin-top: 50px;
}

.bottom-50 {
  margin-bottom: 50px;
}

.top-60 {
  margin-top: 60px;
}

.bottom-60 {
  margin-bottom: 60px;
}

.top-70 {
  margin-top: 70px;
}

.bottom-70 {
  margin-bottom: 70px;
}

.top-80 {
  margin-top: 80px;
}

.bottom-80 {
  margin-bottom: 80px;
}

.top-90 {
  margin-top: 90px;
}

.bottom-90 {
  margin-bottom: 90px;
}

.top-100 {
  margin-top: 100px;
}

.bottom-100 {
  margin-bottom: 100px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DIN Condensed Bold", sans-serif;
  font-size: 50px;
  margin-top: 30px;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .section-title {
    font-size: 30px;
    margin: 10px auto 0 auto;
  }
}

.red-line {
  border-top: 1px dashed #e74642;
  margin-left: 20px;
  margin-right: 20px;
  flex: 1;
}

.circle-container {
  width: 100%;
  position: relative;
  padding-bottom: 100%;
  background-color: white;
  overflow: hidden;
  border-radius: 50%;
}

.circle-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}

.circle-content i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
}

@media (min-width: 768px) {
  .flex-vertical-center-sm {
    display: flex;
    align-items: center;
  }
}

.display-title {
  font-size: 24px;
  font-weight: bold;
  width: 100%;
  padding: 10px;
  background-color: #ffcd47;
  color: black;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 480px) {
  .display-title {
    font-size: 18px;
    padding: 5px;
  }
}

.text-bold {
  font-weight: 700;
}

.spinner-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.material-container {
  position: relative;
  display: block;
  margin-bottom: 15px;
  background-color: white;
  border-radius: 4px;
  -webkit-box-shadow: 0 12px 0 0 #dddddd;
  box-shadow: 0 12px 0 0 #dddddd;
  overflow: hidden;
}

i.small-spinner {
  position: absolute;
  display: inline-block;
  margin-left: 10px;
  top: 30%;
}

.btn-sm.social-account-btn.facebook {
  -webkit-box-shadow: 0 4px 0 #29487d;
  box-shadow: 0 4px 0 #29487d;
  background-color: #3c5898;
}

.btn-sm.social-account-btn.google {
  -webkit-box-shadow: 0 4px 0 #ce442b;
  box-shadow: 0 4px 0 #ce442b;
  background-color: #e45339;
}

.social-account-icon.facebook::before {
  /* content: "\f082"; */
  content: "\f39e";
}

.social-account-icon.google::before {
  /* content: "\f0d4"; */
  content: "\f082";
  /* content: "\f1a0"; */
}
