@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
:root {
  --main-color: rgb(36, 65, 121);
  --accent-color: #ff3c3c;
  --background: #f3f3f3; }

html, body {
  margin: 0;
  padding: 0;
  color: #4b4b4b;
  font-family: 'Roboto', sans-serif;
  background-color: var(--background); }

main {
  max-width: 800px;
  margin: auto;
  padding-top: 10px; }

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background-color: var(--main-color);
  height: 64px;	
  color: white; }
  header a {
    display: flex;
    background-color: var(--accent-color);
    border-radius: 0px;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    padding: 10px 20px; }
    header a span {
      padding-left: 8px; }
  header .right {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column; }
    header .right > span {
      display: block;
      padding-bottom: 6px; }

.tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #cecece;
  padding: 22px 0; }
  .tabs .selector {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 340px;
    width: 100%;
    background-color: var(--main-color);
    color: white; }
    .tabs .selector button {
      background-color: transparent;
      border: 1px solid #9b9b9b;
      border-radius: 0px;
      min-height: 36px;
      padding: 10px;
      width: 50%;
      max-width: 300px;
      margin: 0 6px;
      color: white;
      cursor: pointer;
      font-size: 13px; }
      .tabs .selector button.active {
        background-color: var(--accent-color);
        border: 1px solid var(--accent-color); }
      .tabs .selector button span {
        padding: 4px;
        border-radius: 0px;
        margin-left: 4px;
        background-color: var(--main-color); }

.welcome {
  padding: 20px; }
  .welcome h1 {
    font-size: 32px; }
  .welcome p {
    font-size: 14px; }

.documents-wrapper {
  padding: 10px 20px;
  display: none; }
  .documents-wrapper.active {
    display: block; }
  .documents-wrapper .center {
    text-align: center; }
    .documents-wrapper .center p {
      font-size: 18px; }
    .documents-wrapper .center #selector-sort {
      background-color: transparent;
      border: 0; }
      .documents-wrapper .center #selector-sort:focus {
        outline: none;
        box-shadow: none; }
  .documents-wrapper .right {
    text-align: right;
    margin-top: 20px;
    margin-bottom: 10px; }
    .documents-wrapper .right button {
      border: 0;
      background-color: transparent;
      cursor: pointer; }
  .documents-wrapper .card {
    background-color: white;
    border: 1px solid #cecece;
    border-radius: 0px;
    margin-bottom: 10px; }
    .documents-wrapper .card .card-body {
      padding: 20px 20px; }
    .documents-wrapper .card .download-btn {
      height: 50px;
      width: 50px;
      background-color: transparent;
      border: 0;
      padding: 0;
      cursor: pointer; }
      .documents-wrapper .card .download-btn img {
        height: 100%;
        width: 100%; }
    .documents-wrapper .card .arrow {
      height: 40px;
      width: 40px;
      background-image: url("./img/right_arrow.svg");
      background-position: center;
      background-size: 140%;
      cursor: pointer; }
    .documents-wrapper .card .download-pdf {
      height: 40px;
      width: 40px;
      background-image: url("./img/download.svg");
      background-position: center;
      background-size: 140%;
      margin-right: 10px;
      border: 0;
      background-color: transparent;
      cursor: pointer; }
  .documents-wrapper .flex {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .documents-wrapper .flex h2 {
      font-size: 18px;
      margin-bottom: 8px; }
    .documents-wrapper .flex p {
      font-size: 14px;
      margin: 0; }
  .documents-wrapper .draw {
    display: none; }
    .documents-wrapper .draw .flex {
      padding: 8px 0;
      border-bottom: 1px solid #7c7c7c; }
  .documents-wrapper .expand-list {
    margin-top: 10px; }
    .documents-wrapper .expand-list.expanded .draw {
      display: block; }
    .documents-wrapper .expand-list.expanded .arrow {
      transform: rotate(90deg); }
    .documents-wrapper .expand-list > .flex {
      border-bottom: 1px dotted #4b4b4b; }
    .documents-wrapper .expand-list p {
      font-size: 16px; }

button {
  background-color: var(--accent-color);
  color: white;
  height: 40px;
  min-width: 120px;
  border: none;
  font-size: 18px; }

input {
  min-height: 40px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #7c7c7c;
  padding: 10px;
  border-radius: 0; }
  input:focus {
    border: 1px solid var(--main-color);
    outline: 1px solid var(--main-color); }

input[type="date"], input[type="time"] {
  font-family: 'Roboto', sans-serif; }

input, textarea, select {
  min-height: 40px;
  width: 100%;
  box-sizing: border-box;
  border: 3px solid #7c7c7c;
  padding: 10px;
	resize: vertical;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  /* ADDED */
  border-radius: 8px; }

input:focus, textarea:focus, select:focus {
  border: 1px solid var(--main-color);
  outline: 3px solid var(--main-color); }

textarea {
  min-height: 40px;
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
  padding: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  margin-top: 6px; }

label {
  font-size: 13px;
  color: #4b4b4b; }

.register {
  padding: 20px; }
  .register button {
    height: 46px;
    padding: 0 50px;
    background-color: var(--main-color);
    float: right; }
  .register input {
    margin-top: 6px;
    margin-bottom: 20px;
    height: 46px; }

.card {
  background-color: white;
  border: 1px solid #cecece;
  border-radius: 0px;
  margin-bottom: 10px; }
  .card .card-body {
    padding: 20px 20px; }

.accent {
  color: var(--accent-color); }

.right-text {
  text-align: right; }

.radio-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap; }
  .radio-box .custom-radio {
    cursor: pointer;
    min-width: 300px;
    width: 50%;
    text-align: center;
    position: relative; }
    .radio-box .custom-radio input[type="radio"] {
      opacity: 0;
      width: auto;
      position: absolute; }
      .radio-box .custom-radio input[type="radio"]:checked + .radio-content {
        border: 5px solid var(--main-color);
        border-radius: 12px;
        -webkit-transition: ease-in 0.1s;
        -o-transition: ease-in 0.1s;
        transition: ease-in 0.1s; }
    .radio-box .custom-radio .radio-content {
      border: 5px solid #cecece;
      border-radius: 12px;
      position: relative;
      padding: 0px 15px;
      display: flex;
      align-items: center;
      background-color: white;
      margin: 5px; }
      .radio-box .custom-radio .radio-content img {
        border-radius: 6px;
        max-width: 100px;
        height: 65px; }
      .radio-box .custom-radio .radio-content p {
        margin: 0;
        font-size: 16px;
        display: inline-block;
        padding-left: 20px; }

select {
  min-height: 40px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #7c7c7c;
  padding: 10px;
  border-radius: 0; }
  select:focus {
    border: 1px solid var(--main-color);
    outline: 1px solid var(--main-color); }

.book {
  padding-bottom: 100px; }
  .book button {
    height: 46px;
    padding: 0 50px;
    background-color: var(--main-color);
    padding: 12px 20px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    margin: 0 auto;
    display: block;
    width: 180px;
    margin-top: 20px; }
    .book button[type=submit] {
      cursor: pointer; }
  .book input, .book select {
    margin-top: 6px;
    margin-bottom: 20px;
    height: 46px; }
  .book .cols {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap; }
    .book .cols label {
      padding: 6px;
      display: block;
      margin: 0;
      box-sizing: border-box; }
    .book .cols.c2 label {
      width: 50%;
      min-width: 300px; }
      @media only screen and (max-width: 600px) {
        .book .cols.c2 label {
          width: 100%; } }
    .book .cols.c3 label {
      width: 33.3%;
      min-width: 200px; }
      @media only screen and (max-width: 600px) {
        .book .cols.c3 label {
          width: 100%; } }
    .book .cols.c3.last-small {
      flex-wrap: nowrap; }
      @media only screen and (max-width: 600px) {
        .book .cols.c3.last-small {
          flex-wrap: wrap; } }
      .book .cols.c3.last-small label {
        width: 40%; }
        .book .cols.c3.last-small label:last-child {
          width: 20%; }
          @media only screen and (max-width: 600px) {
            .book .cols.c3.last-small label:last-child {
              width: 100%; } }
        @media only screen and (max-width: 600px) {
          .book .cols.c3.last-small label {
            width: 100%; } }

.book .cols.c1 label {
  width: 100%; }

@media only screen and (max-width: 600px) {
  .book .cols.c1 label {
    width: 100%; } }
.book .cols.c4 label {
  width: 25%;
  min-width: 150px; }

@media only screen and (max-width: 600px) {
  .book .cols.c4 label {
    width: 100%; } }

/*# sourceMappingURL=styles.css.map */
