@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,900");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; */
  }

body {
  font-size: 62.5%;
  font-family: 'Open Sans', sans-serif;
  background: url("../assets/bg-body.png"); }
  @media only screen and (max-width: 769px) {
    body {
      font-size: 55%; } }
  @media only screen and (max-width: 412px) {
    body {
      font-size: 50%; } }

a {
  text-decoration: none; }

h1 {
  text-transform: uppercase;
  font-size: 1.4rem;
  border-left: 3px solid #175883;
  color: #175883;
  padding-left: 5px;
  font-weight: 900; }

::-webkit-input-placeholder {
  color: #cccccc;
  font-size: 0.7rem;
  font-style: italic; }

:-ms-input-placeholder {
  color: #cccccc;
  font-size: 0.7rem;
  font-style: italic; }

::-ms-input-placeholder {
  color: #cccccc;
  font-size: 0.7rem;
  font-style: italic; }

::placeholder {
  color: #cccccc;
  font-size: 0.7rem;
  font-style: italic; }

input[type="text"], input[type="number"], input[type="password"], input[type="email"], select {
  width: 100%;
  height: 28px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid #175883;
  background-color: #f4f4f4;
  padding-left: 5px;
  -moz-appearance: textfield;
  outline: none; }
  @media only screen and (max-width: 769px) {
    input[type="text"], input[type="number"], input[type="password"], input[type="email"], select {
      height: 30px; } }
  input[type="text"] ~ label, input[type="number"] ~ label, input[type="password"] ~ label, input[type="email"] ~ label, select ~ label {
    display: inline-block;
    color: #175883;
    padding-top: 5px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    width: 100%;
    font-size: 0.7rem; }
  input[type="text"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="email"]:focus, select:focus {
    background-color: #ffffff;
    border-bottom-color: #2383c4; }
    input[type="text"]:focus + label, input[type="number"]:focus + label, input[type="password"]:focus + label, input[type="email"]:focus + label, select:focus + label {
      color: #2383c4; }

input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

.disabled {
  opacity: 0.2 !important; }

.checkbox, .radio {
  width: 18px;
  height: 18px;
  position: relative;
  background-color: #175883; }
  @media only screen and (max-width: 769px) {
    .checkbox, .radio {
      width: 16px;
      height: 16px; } }
  .checkbox input[type="checkbox"], .checkbox input[type="radio"], .radio input[type="checkbox"], .radio input[type="radio"] {
    width: 5px;
    height: 5px; }
  .checkbox label, .radio label {
    width: 14px;
    height: 14px;
    position: absolute;
    top: 2px;
    left: 2px;
    cursor: pointer;
    background-color: #cecece; }
    @media only screen and (max-width: 769px) {
      .checkbox label, .radio label {
        width: 12px;
        height: 12px; } }
    .checkbox label:after, .radio label:after {
      content: '';
      width: 10px;
      height: 10px;
      position: absolute;
      top: 2px;
      left: 2px;
      opacity: 0; }
  .checkbox input[type="checkbox"]:checked + label, .checkbox input[type="radio"]:checked + label, .radio input[type="checkbox"]:checked + label, .radio input[type="radio"]:checked + label {
    background-color: #2ecc71;
    opacity: 1; }

.radio {
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .radio label {
    border-radius: 50px; }
    .radio label:after {
      border-radius: 50px; }

input[type="submit"] {
  color: #ffffff;
  cursor: pointer;
  padding: 8px 20px;
  background-color: #2ecc71;
  border: 1px solid #2ecc71;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 0.7rem; }
  @media only screen and (max-width: 769px) {
    input[type="submit"] {
      font-size: 0.6rem;
      padding: 8px 18px; } }
  input[type="submit"]:hover {
    background-color: #25a25a; }
  input[type="submit"]:active {
    background-color: #1b7943; }

.container {
  width: 70%;
  margin: 0 auto;
  background-color: #ffffff;
  position: relative;
  top: 40px; }
  @media only screen and (max-width: 1280px) {
    .container {
      width: 100%; } }

.alert {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px; }
  .alert i {
    position: absolute;
    right: 5px;
    top: 2px;
    cursor: pointer; }
  .alert p {
    text-align: center; }

.loader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background-color: rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center; }
  .loader img {
    width: 60px;
    height: 60px; }
  .loader p {
    text-align: center;
    font-size: 1.9rem;
    color: #2383c4;
    font-weight: bold;
    font-style: italic; }

.error {
  border: 2px solid #bf0000;
  background-color: #ff5959;
  color: #8c0000; }
  .error p {
    padding: 5px 0;
    color: #8c0000; }

.success {
  border: 2px solid #2ecc71;
  background-color: #a8ebc4;
  color: #25a25a; }
  .success p {
    padding: 5px 0;
    color: #25a25a; }

table {
  width: 100%; }
  @media only screen and (max-width: 769px) {
    table tbody, table th, table td, table tr {
      display: block; } }
  table thead {
    border-bottom: 3px solid #175883;
    color: #175883; }
    @media only screen and (max-width: 769px) {
      table thead {
        display: none; } }
    @media only screen and (max-width: 769px) {
      table thead tr {
        position: absolute;
        top: -9999em;
        left: -9999em; } }
    table thead tr th {
      font-size: 0.9rem;
      padding-bottom: 5px;
      font-weight: bold; }
  @media only screen and (max-width: 769px) {
    table tbody tr {
      margin-top: 10px;
      border: 1px solid #175883; } }
  table tbody tr td {
    font-size: 0.7rem;
    color: #2383c4;
    text-align: center;
    vertical-align: top; }
    @media only screen and (max-width: 769px) {
      table tbody tr td {
        width: 100%;
        position: relative;
        padding: 30%;
        text-align: right;
        min-height: 40px;
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end; } }
    table tbody tr td input[type="text"], table tbody tr td input[type="number"] {
      width: 45%;
      margin-right: 3px; }
      @media only screen and (max-width: 769px) {
        table tbody tr td input[type="text"], table tbody tr td input[type="number"] {
          width: 30%; } }
    @media only screen and (max-width: 769px) {
      table tbody tr td:before {
        position: absolute;
        left: 0;
        width: 20%;
        line-height: 40px;
        padding-right: 10px;
        white-space: nowrap;
        content: attr(data-field);
        text-transform: capitalize;
        text-align: center;
        display: inline-block;
        height: 100%;
        font-weight: normal;
        background-color: #175883;
        color: #ffffff; } }
  table tbody tr:nth-child(even) {
    background-color: #FEFEE2; }
  table tbody tr:nth-child(odd) {
    background-color: #FBFCFA; }

.top-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 40px;
  padding: 0 2%;
  position: fixed;
  background-color: #ffffff;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #175883; }
  .top-header .top-left-header {
    width: 10%; }
    .top-header .top-left-header input[type="checkbox"] {
      display: none; }
      .top-header .top-left-header input[type="checkbox"]:checked + label {
        border-color: transparent; }
        .top-header .top-left-header input[type="checkbox"]:checked + label:before, .top-header .top-left-header input[type="checkbox"]:checked + label:after {
          -webkit-transition: all 0.5s;
          transition: all 0.5s; }
        .top-header .top-left-header input[type="checkbox"]:checked + label:before {
          top: 18px;
          -webkit-transform: rotate(45deg);
                  transform: rotate(45deg); }
        .top-header .top-left-header input[type="checkbox"]:checked + label:after {
          -webkit-transform: rotate(-45deg);
                  transform: rotate(-45deg); }
    .top-header .top-left-header label {
      border-bottom: 2px solid #2383c4;
      width: 30px;
      height: 30px;
      display: block;
      position: relative;
      top: 0;
      left: 0;
      cursor: pointer; }
      .top-header .top-left-header label:before, .top-header .top-left-header label:after {
        content: '';
        width: 30px;
        height: 2px;
        background-color: #2383c4;
        position: relative;
        display: block; }
      .top-header .top-left-header label:before {
        top: 8px; }
      .top-header .top-left-header label:after {
        top: 16px; }
  .top-header .top-right-header {
    text-align: right;
    width: 10%; }
    .top-header .top-right-header a {
      display: inline-block;
      margin-top: 7px;
      color: #2383c4; }
      .top-header .top-right-header a:after {
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        font-family: "Font Awesome 5 Free";
        content: "\f52a";
        font-weight: 900;
        font-size: 1.5rem; }
      .top-header .top-right-header a:hover {
        color: #1b6699; }
      .top-header .top-right-header a:hover:after {
        content: "\f52b"; }
      .top-header .top-right-header a:active {
        color: #14496d; }

header {
  width: 100%; }
  header .logo {
    width: 100%;
    background-color: #175883;
    padding: 10px 2%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
    header .logo a {
      width: 100px;
      height: 100px;
      background-color: #ffffff;
      display: inline-block;
      text-align: center; }
      @media only screen and (max-width: 412px) {
        header .logo a {
          width: 50px;
          height: 50px; } }
      header .logo a img {
        max-width: 100%;
        height: auto; }
    header .logo h1 {
      color: #ffffff;
      display: inline-block;
      border-left: none;
      font-size: 2.5rem;
      letter-spacing: 2px;
      margin-left: 5px;
      font-weight: 900; }
      @media only screen and (max-width: 412px) {
        header .logo h1 {
          font-size: 1.6rem; } }

nav {
  position: fixed;
  width: 15%;
  left: -100%;
  top: 40px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-top: 1px solid #730000;
  border-right: 1px solid #730000;
  z-index: 1000; }
  @media only screen and (max-width: 1280px) {
    nav {
      width: 100%; } }
  nav ul {
    margin: 0;
    padding: 0;
    background-color: #bf0000; }
    nav ul li {
      margin: 0;
      border-bottom: 1px solid #ffffff; }
      nav ul li:hover ul {
        max-height: 28em; }
      nav ul li:hover a i {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
      nav ul li a {
        text-transform: uppercase;
        color: #ffffff;
        display: block;
        font-size: 0.9rem;
        padding: 15px 10px;
        position: relative; }
        nav ul li a i {
          position: absolute;
          right: 10px;
          top: center;
          -webkit-transition: all 0.5s;
          transition: all 0.5s; }
        nav ul li a[href="#"] {
          cursor: default;
          text-decoration: none; }
        nav ul li a:not([href="#"]):hover {
          text-decoration: underline;
          font-weight: bold; }
      nav ul li:last-child {
        border-bottom: none; }
    nav ul ul {
      max-height: 0;
      overflow: hidden;
      -webkit-transition: 1.5s;
      transition: 1.5s; }
      nav ul ul li {
        margin: 0;
        border-bottom: 1px dotted #bf0000;
        background-color: #ffffff; }
        nav ul ul li a {
          color: #bf0000;
          -webkit-transition: background-color 200ms ease;
          transition: background-color 200ms ease; }
      nav ul ul:last-child {
        border-bottom: none; }

main {
  width: 100%; }
  main p {
    text-align: center;
    width: 96%;
    margin: 5px 2%;
    color: #175883;
    font-style: italic;
    font-size: 0.7rem;
    text-align: right; }
    @media only screen and (max-width: 769px) {
      main p {
        text-align: center; } }
  main section {
    background-color: #ffffff;
    width: 96%;
    margin: 20px 2%; }
    main section h1 {
      margin-bottom: 10px; }
    main section form {
      width: 100%; }
      main section form .container-input {
        position: relative;
        margin: 20px 0; }
      main section form .container-checkbox, main section form .container-radio {
        margin: 20px 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        main section form .container-checkbox span, main section form .container-radio span {
          margin: 0 10px;
          color: #175883;
          -webkit-transition: all 0.5s;
          transition: all 0.5s; }
      main section form .container-select .select {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start; }
        @media only screen and (max-width: 412px) {
          main section form .container-select .select {
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between; } }
        main section form .container-select .select select {
          width: 15%; }
          @media only screen and (max-width: 769px) {
            main section form .container-select .select select {
              width: 45%; } }
        main section form .container-select .select span {
          width: 2%;
          font-weight: bold;
          font-style: italic;
          display: inline-block;
          text-align: center;
          font-size: 0.7rem; }
        main section form .container-select .select label {
          width: 100%; }
    main section ul {
      margin-bottom: 20px; }
      main section ul li {
        margin-bottom: 10px;
        font-size: 0.9rem;
        color: #2383c4; }
        main section ul li:not(:first-child) {
          font-weight: bold; }
        main section ul li i {
          margin-right: 10px; }
        main section ul li a {
          color: #2383c4; }
          main section ul li a:hover {
            color: #1b6699; }
          main section ul li a:active {
            color: #14496d; }

footer {
  background-color: #1b6699;
  padding: 10px 0; }
  footer p {
    color: #ffffff;
    font-size: 0.7rem;
    text-align: center;
    font-style: italic;
    letter-spacing: 2px; }
