body {
  position: relative;
  margin: 0px;
  font-family: Poppins;
  width: 100vw;
  height: 100vh;
  background: #005267;
}
body.list {
  background: #F2F2F7;
}

h1 {
  color: #00A5CB;
  font-size: 36px;
  font-weight: 700;
  line-height: 140%;
  margin: 0px;
}

h2 {
  color: #00A5CB;
  font-size: 28px;
  font-weight: 600;
  line-height: 100%;
  margin: 0px;
}

h5 {
  color: #8C8C8C;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.12px;
  margin: 0px 0px 12px 0px;
}

ul {
  padding: 0px;
  margin: 24px 0px;
  list-style-type: none;
}
ul li {
  position: relative;
  padding-top: 12px;
  margin-bottom: 12px;
}
ul li a {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(50, 53, 54, 0.2);
  padding-bottom: 12px;
}
ul li a span {
  width: 90%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #005366;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}
ul li a i {
  color: #005366;
  text-align: right;
  font-size: 20px;
  line-height: 28px !important;
}
ul li:last-child {
  border: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
ul li:hover {
  background: #007D99;
}
ul li:hover span, ul li:hover i {
  color: #FFBA3A;
}

.header {
  position: fixed;
  height: 110px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  z-index: 999;
}
.header img {
  height: 52px;
  width: 100%;
}
.header.toolbar {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.header.toolbar .toolbar_left {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translate(0, -50%);
}
.header.toolbar h1 {
  width: 100%;
  text-align: center;
  width: 70%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.footer {
  position: fixed;
  bottom: 0px;
  height: 69px;
  background: #000;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.footer img {
  height: 33px;
  width: auto;
}

.cards_container .card {
  width: 319px;
  border-radius: 20px;
  background: #FFFFFF;
  color: #005366;
  padding: 50px 0px;
}
.cards_container .card h2 {
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding: 0px 50px;
}
.cards_container .card li {
  padding-right: 50px;
  padding-left: 50px;
}

.line {
  position: absolute;
  top: 87px;
  width: 100%;
  height: 6px;
  background: #FFBA3A;
}

.line.big {
  height: 16px;
  margin-top: 20px;
}

.wrapper_page {
  max-width: 1440px;
  display: block;
  margin: 0 auto;
  padding: 140px 30px 99px 30px;
}

.wrapper_cag {
  position: relative;
  padding: 150px 0px 0px;
  height: 100vh;
  min-height: 600px;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 163px;
  background: #FFFFFF;
  padding: 70px 70px 20px 70px;
  border-radius: 20px;
  overflow: auto;
}

input {
  min-width: 332px;
  width: 100%;
  height: 68px;
  border-radius: 100px;
  padding: 20px 10px 20px 10px;
  border: 1px solid #8C8C8C;
  background: #F2F2F7;
  margin-bottom: 41px;
  color: #005366;
  font-size: 25px;
  font-weight: 600;
}

input[type=text] {
  text-align: center;
}

textarea:focus, input:focus {
  outline: none;
}

.btn {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 132px;
  height: 48px;
  background: #FFBA3A;
  border-radius: 50px;
  padding: 0px 20px;
  color: #004959;
  text-align: center;
  line-height: 48px;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.btn.circle {
  width: 48px;
  min-width: 48px;
  max-width: 48px;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  border: 100%;
  padding: 0px;
  margin: 0px;
}
.btn.circle i {
  line-height: 50px;
}

.btn[disabled]:after {
  display: none;
}

.btn:after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 4em;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s;
  box-shadow: 0 0 10px 40px #FFBA3A;
}

.btn:active:after {
  box-shadow: 0 0 0 0 #FFBA3A;
  position: absolute;
  border-radius: 4em;
  left: 0;
  top: 0;
  opacity: 1;
  transition: 0s;
}

.btn:active {
  top: 1px;
}

a {
  text-decoration: none;
}

.logo {
  max-width: 421px;
  width: 100%;
  margin: auto;
  display: block;
  margin-bottom: 76px;
}

.success_msg {
  color: #005366;
  margin-top: 10px;
  padding: 0px 16px 0px 16px;
  opacity: 0;
  width: 100%;
  text-align: center;
}

.success_msg.show {
  animation: fadeIn 1s;
  animation-fill-mode: forwards;
}

.success_msg.hide {
  animation: fadeOut 1s;
  animation-fill-mode: forwards;
}

#grid .card {
  margin: 0 0 30px;
}

#grid .grid-sizer, #grid .card {
  width: calc(100% - 2rem);
}

#grid .gutter-sizer {
  width: 2rem;
}

.disabled {
  background: grey !important;
  color: white;
  opacity: 0.7;
  cursor: not-allowed;
}

@media (min-width: 810px) {
  #grid .grid-sizer, #grid .card {
    width: calc(50% - 2rem);
  }
}
@media (min-width: 1560px) {
  #grid .grid-sizer, #grid .card {
    width: calc(33.33% - 2rem);
  }
}
@media (max-width: 810px) {
  .container {
    width: 80%;
  }
}
@media (max-width: 512px) {
  .container {
    padding: 40px 30px 20px 30px;
  }

  .wrapper input, .wrapper a {
    min-width: 100%;
    width: 100%;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
*, *::after, *::before {
  box-sizing: border-box;
}

/*# sourceMappingURL=style.css.map */

/*# sourceMappingURL=style.css.map */
