* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  line-height: normal;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  overflow: auto;
  width: 100%;
}

body {
  background-color: #1D1C3C;
  color: #ffffff;
  font-size: 14px;
  min-height: 100%;
  overflow: auto;
  overflow-y: hidden;
  position: relative;
  width: 100%;
}

img {
  margin-top: -3px;
  vertical-align: middle;
}

hr {
  border: none;
  border-top: 1px solid #dadada;
  float: left;
  width: 100%;
}

.user_message {
  background-color: rgba(55, 189, 142, 0.95);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
  border-radius: 1px;
  color: #111111;
  font-size: 14px;
  padding: 20px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  opacity: 1;
  z-index: 100;
  animation: arrow_move 1s ease;
  -webkit-animation: arrow_move 1s ease;
  -moz-animation: arrow_move 1s ease;
}

@-webkit-keyframes arrow_move {
  from {
    transform: translate(0, 0px);
  }
  65% {
    transform: translate(0, 15px);
  }
  to {
    transform: translate(0, 0px);
  }
}
@-moz-keyframes arrow_move {
  from {
    transform: translate(0, 0px);
  }
  65% {
    transform: translate(0, 15px);
  }
  to {
    transform: translate(0, 0px);
  }
}
.user_message .fa {
  font-size: 18px;
  margin-right: 10px;
}

.user_message.success {
  background-color: #36bd8e;
  color: #ffffff;
}

.user_message.info {
  background-color: #3798bd;
  color: #ffffff;
}

.user_message.warning {
  background-color: #fad539;
}

.user_message.error {
  background-color: #e63f3b;
  color: #ffffff;
}

/*****************/
.container {
  margin: 0 auto;
  overflow: visible;
  position: relative;
  width: 100%;
}
.container .background_wrapper {
  height: calc(100% + 400px);
  left: -200px;
  position: fixed;
  top: -200px;
  width: calc(100% + 400px);
  z-index: -1;
}
.container .background_wrapper .inner {
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  background-size: cover;
  height: 100%;
  width: 100%;
}
.container .background_wrapper .inner.overlay {
  opacity: 0;
  z-index: 1;
}
.container .content {
  cursor: default;
  display: table;
  margin: 0 auto;
  max-width: 800px;
  padding: 0 50px;
  width: 100%;
}
.container .content .inner {
  display: table-cell;
  text-align: center;
  position: relative;
  vertical-align: middle;
}
.container .content .inner .logo {
  display: inline-block;
  margin-bottom: 100px;
  max-width: 380px;
  width: calc(100% - 20px);
}
.container .content .inner .arrow_down {
  border: none;
  display: inline-block;
  position: absolute;
  bottom: 100px;
  left: calc(50% - 50px);
  width: 100px;
  -webkit-animation: arrow_move 2s ease infinite;
  -moz-animation: arrow_move 2s ease infinite;
}
.container .content .inner .arrow_down a {
  width: 100%;
}
.container .content .inner .text {
  text-align: justify;
}
.container .content .inner .text p {
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}
.container .content .inner .text p .slash {
  color: #CE2127;
  display: inline-block;
  font-size: 34px;
  font-weight: 500;
  padding: 0 10px;
  line-height: 40px;
  margin-bottom: -5px;
}
.container .content .inner .contact {
  margin: 50px 0 100px;
  text-align: left;
}
.container .content .inner .contact p {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}
.container .content .inner .disclaimer {
  text-align: left;
}
.container .content .inner .disclaimer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: lighter;
  line-height: 8px;
}

/*************/
.has_tooltip {
  position: relative;
}
.has_tooltip:hover .tooltip {
  display: block;
}
.has_tooltip .tooltip {
  background-color: rgba(255, 255, 255, 0.98);
  border-radius: 2px;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.25);
  color: #111111;
  cursor: auto;
  display: none;
  font-size: 12px;
  left: 0;
  padding: 10px;
  position: absolute;
  text-align: left;
  top: 0;
  z-index: 5;
  white-space: nowrap;
  -webkit-transform: translate(calc(-100% - 10px), calc(0px));
  -moz-transform: translate(calc(-100% - 10px), calc(0px));
  -ms-transform: translate(calc(-100% - 10px), calc(0px));
  -o-transform: translate(calc(-100% - 10px), calc(0px));
  transform: translate(calc(-100% - 10px), calc(0px));
}
.has_tooltip .tooltip:after {
  background-image: url(image_path("tooltip_triangle.svg"));
  background-repeat: no-repeat;
  background-position: center;
  content: '';
  height: 20px;
  right: -10px;
  position: absolute;
  top: 5px;
  width: 10px;
}
.has_tooltip .tooltip.td_tooltip {
  top: 0px;
  left: -10px;
}

/* MEDIA QUERIES FOR SMALLER SCREENS */
@media screen and (max-width: 420px) {
  .container .content {
    padding: 0 20px;
    padding-bottom: 50px;
  }
  .container .content .inner .text p {
    line-height: 30px;
  }
  .container .content .inner .disclaimer p {
    line-height: 18px;
  }
}
