/*
@import url("https://fonts.google.com/specimen/Lato?query=lato");
*/
@font-face {
  font-family: "Lato";
  src: local("Lato"), url("/css/fonts/Lato-Regular.ttf");
  font-weight: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "Lato";
  src: local("Lato"), url("/css/fonts/Lato-Bold.ttf");
  font-weight: 700;
  font-stretch: normal;
}

body {
  font-family: "Lato", sans-serif;
}

#content {
  display: flex;
  flex: 1;
}

.page-content {
  background: url(/images/content-bg-hd.webp),
    linear-gradient(
      180deg,
      rgba(106, 167, 201, 1) 0%,
      rgba(228, 199, 206, 1) 50%,
      rgb(226 184 125) 100%
    );
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 100% 20%;
  padding: 24px 16px;
  width: 100%;
  display: flex;
  align-items: center;
}

@media (min-width: 1920px) {
  .page-content {
    background: url(/images/content-bg.webp),
      linear-gradient(
        180deg,
        rgba(106, 167, 201, 1) 0%,
        rgba(228, 199, 206, 1) 50%,
        rgb(226 184 125) 100%
      );
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100% 20%;
  }
}

.page-content .wrapper {
  max-width: 630px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main-content {
  background-color: #ffffff;
  border-radius: 16px;
  position: relative;
  border: 1px solid #d2d2d2;
}

.main-content .alert-msg {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  margin: auto;
  display: flex;
  justify-content: center;
}

.main-content .alert-msg .text {
  background-color: #f8f9f9;
  border-radius: 4px;
  padding: 12px 16px;
}

.main-content .alert-msg .text .info-icon {
  width: 28px;
  vertical-align: middle;
  margin-right: 8px;
}

.main-content .content {
  padding: 84px 64px 64px;
}

.main-content .content .info {
  margin-top: 32px;
  max-width: 394px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.main-content .content .info h2 {
  margin-bottom: 0px;
  font-weight: 600;
}

.main-content .content .actions {
  margin-top: 42px;
}

.main-content .content .actions {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.main-content .content .actions .cta-button {
  display: inline-block;
  padding: 16px 32px;
  background-color: #40b1e5;
  border: solid 1px #40b1e5;
  color: #212529;
  text-decoration: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
}

.main-content .content .actions .cta-button img {
  width: 18px;
  vertical-align: middle;
}

.main-content .content .actions .cta-button:hover {
  opacity: 0.9;
}

.main-content .content .actions .alternative-link .tag {
  position: relative;
  display: inline-flex;
  gap: 8px;
  line-height: 36px;
  padding-left: 6px;
  padding-right: 6px;
  background-color: #f8f9f9;
  border: solid 1px #f8f9f9;
  border-radius: 4px;
  cursor: pointer;
}

.main-content .content .actions .alternative-link .tag:hover {
  border-color: #d2d2d2;
}

.main-content .content .actions .alternative-link .tag .tooltip {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #212529;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.main-content .content .actions .alternative-link .tag:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.main-content .content .actions .alternative-link .tag::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: #212529 transparent transparent transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.main-content .content .actions .alternative-link .tag:hover::before {
  visibility: visible;
  opacity: 1;
}

.additional-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 24px;
  border-radius: 16px;
  backdrop-filter: blur(24px);
  border: 1px solid #d2d2d2;
}

.additional-option .text {
  font-size: 20px;
  font-weight: 600;
  margin-right: 12px;
}

.additional-option .cta {
  color: #212529;
  display: block;
  background-color: #ffffff;
  height: 54px;
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: solid 1px #ffffff;
  transition: all 0.3s ease;
}

.additional-option .cta:hover {
  border-color: #40b1e5;
  color: #40b1e5;
}

.additional-option .cta:active {
  border-color: #212529;
}

@media (max-width: 576px) {
  .page-content {
    padding: 24px 16px;
  }
  .main-content .alert-msg {
    left: 12px;
    right: 12px;
  }
  .main-content .alert-msg .text {
    padding: 4px 6px;
    font-size: 12px;
  }

  .main-content .alert-msg .text .info-icon {
    width: 20px;
    margin-right: 2px;
  }

  .main-content .content {
    padding: 80px 24px 42px;
  }

  .main-content .content .info {
    margin: 0;
  }

  .main-content .content .info h2 {
    font-size: 20px;
  }

  .main-content .content .actions {
    margin-top: 32px;
  }

  .main-content .content .actions .cta-button {
    font-size: 14px;
  }

  .additional-option {
    padding: 20px 24px;
  }

  .additional-option .text {
    font-size: 14px;
  }
  .additional-option .cta {
    height: 48px;
    min-width: 62px;
  }
}
