@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

svg {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

label {
  display: block;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

::-moz-placeholder {
  color: inherit;
}

::placeholder {
  color: inherit;
}

textarea {
  display: block;
}

input,
textarea,
button,
select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
}

ul,
ol {
  list-style-type: none;
}

picture,
img {
  display: inline-block;
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 1.5px solid #333333;
  outline-offset: 0px;
}

html,
body {
  overflow-x: clip;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
@media (prefers-reduced-motion) {
  html {
    scroll-behavior: none;
  }
}

body {
  min-width: 320px;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --color-text-primary: #262626;
  --color-text-muted: #888888;
  --color-white: #ffffff;
  --color-neutral-50: #f6f6f6;
  --color-neutral-100: #e7e7e7;
  --color-neutral-200: #d1d1d1;
  --color-neutral-500: #6d6d6d;
  --color-neutral-600: #5d5d5d;
  --color-neutral-950: #262626;
  --color-orange: #eb4909;
  --color-green-500: #339310;
  --color-green-400: #60d236;
  --color-green-mid: #49b720;
  --color-blue-50: #f2faff;
  --color-alert-bg: #fbeee9;
  --color-alert-border: #f5dcd2;
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-neutral-100);
}
@media (min-width: 769px) {
  body {
    background-color: var(--color-neutral-100);
  }
}

/* ---------- Notice bar ---------- */
.notice-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  min-height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--color-green-500) 0%, var(--color-green-mid) 50%, var(--color-green-500) 100%);
  padding: 8px 16px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
}
@media (min-width: 769px) {
  .notice-bar {
    padding: 8px 32px;
    box-shadow: none;
  }
}
.notice-bar__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}
@media (min-width: 769px) {
  .notice-bar__container {
    max-width: 1020px;
  }
}
.notice-bar__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.notice-bar__text {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: var(--color-white);
  text-align: center;
}
@media (min-width: 769px) {
  .notice-bar__text {
    font-size: 16px;
  }
}
@media (min-width: 769px) {
  .notice-bar__break {
    display: none;
  }
}

/* ---------- Main call page section ---------- */
.cp-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 660px) {
  .cp-main {
    padding: 0 0 32px 0;
  }
}
@media (min-width: 769px) {
  .cp-main {
    padding: 32px 32px 48px;
  }
}
.cp-main__container {
  width: 100%;
  max-width: 672px;
}

.card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: var(--color-white);
  overflow: hidden;
}
@media (min-width: 660px) {
  .card {
    border-radius: 16px;
  }
}
@media (min-width: 769px) {
  .card {
    border: 1px solid var(--color-neutral-100);
    box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.1);
  }
}
.card__heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 24px;
  border-bottom: 1px solid var(--color-neutral-50);
}
@media (min-width: 769px) {
  .card__heading {
    padding: 16px 32px;
  }
}
.card__reservation {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-neutral-100);
}
@media (min-width: 769px) {
  .card__reservation {
    padding: 16px 0;
  }
}
.card__reservation-title {
  width: 100%;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-text-primary);
}
@media (min-width: 769px) {
  .card__reservation-title {
    font-size: 24px;
  }
}
.card__reservation-number {
  width: 100%;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: var(--color-text-muted);
}
@media (min-width: 769px) {
  .card__reservation-number {
    font-size: 18px;
  }
}
.card__timer-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px 0;
}
.card__timer-label p {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-text-muted);
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .card__timer-label p {
    font-size: 14px;
  }
}
.card__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
  background-color: var(--color-white);
  border: 1px solid var(--color-orange);
  border-radius: 32px;
  padding: 4px 8px;
}
@media (min-width: 769px) {
  .card__timer {
    padding: 4px 16px;
  }
}
.card__timer-value {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
  color: var(--color-orange);
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .card__timer-value {
    font-size: 40px;
  }
}
.card__timer-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}
.card__timer-expired {
  display: none;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
  color: var(--color-orange);
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .card__timer-expired {
    font-size: 24px;
  }
}
.card__timer.is-expired .card__timer-value {
  display: none;
}
.card__timer.is-expired .card__timer-expired {
  display: block;
}
.card__title {
  width: 100%;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-text-primary);
}
@media (min-width: 769px) {
  .card__title {
    font-size: 24px;
  }
}
.card__price {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.card__price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.card__discount-tag {
  position: relative;
  flex-shrink: 0;
  width: 62px;
  height: 26px;
  background-color: var(--color-orange);
  border-radius: 4px;
}
.card__discount-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: var(--color-white);
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .card__discount-value {
    font-size: 20px;
  }
}
.card__discount-arrow {
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%) rotate(-90deg);
  width: 11px;
  height: 7px;
}
.card__amount {
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.1;
  color: var(--color-green-500);
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .card__amount {
    font-size: 56px;
  }
}
.card__old-price {
  width: 100%;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: var(--color-text-muted);
}
.card__old-price del {
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.card__cta-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 8px 24px;
}
@media (min-width: 769px) {
  .card__cta-section {
    padding: 16px 32px;
  }
}
.card__text-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__cta-text {
  flex: 1 0 0;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-primary);
}
@media (min-width: 769px) {
  .card__cta-text {
    font-size: 18px;
  }
}
@media (min-width: 769px) {
  .card__cta-text-break {
    display: none;
  }
}
.card__cta {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-neutral-100);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.1);
}
@media (min-width: 660px) {
  .card__cta {
    flex-wrap: nowrap;
  }
}
.card__cta-button {
  position: relative;
  display: flex;
  flex: 1 1 100%;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 200px;
  padding: 16px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--color-green-500) 0%, var(--color-green-400) 100%);
}
.card__cta-button::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.15);
  pointer-events: none;
  transition: left 0.5s ease;
}
.card__cta-button:hover::after {
  left: 0;
}
.card__cta-button:hover .card__cta-button-phone {
  transform: scale(1.2);
}
@media (min-width: 660px) {
  .card__cta-button {
    flex: 1 0 0;
  }
}
@media (min-width: 769px) {
  .card__cta-button {
    gap: 16px;
    padding: 24px;
  }
}
.card__cta-button-circle {
  width: 40px;
  height: 40px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: #58ac39;
}
@media (min-width: 769px) {
  .card__cta-button-circle {
    width: 60px;
    height: 60px;
  }
}
.card__cta-button-phone {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}
@media (min-width: 769px) {
  .card__cta-button-phone {
    width: 32px;
    height: 32px;
  }
}
.card__cta-button-text, .card__cta-button-text--phone {
  position: relative;
  z-index: 1;
  flex: 1 0 0;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
  color: var(--color-white);
  text-align: left;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}
@media (min-width: 769px) {
  .card__cta-button-text, .card__cta-button-text--phone {
    font-size: 24px;
  }
}
.card__cta-button-text--phone {
  font-size: 24px;
}
@media (min-width: 769px) {
  .card__cta-button-text--phone {
    font-size: 30px;
  }
}
.card__cta-button-arrow {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.card__cta-button-shine {
  position: absolute;
  top: 50%;
  left: -454px;
  transform: translateY(-50%);
  width: 424px;
  height: 126px;
  background-color: rgba(255, 255, 255, 0.15);
  pointer-events: none;
}
.card__safe-call {
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 200px;
  max-width: 400px;
  overflow: hidden;
  background-color: var(--color-white);
  padding: 8px 16px;
}
@media (min-width: 660px) {
  .card__safe-call {
    flex: 1 0 0;
  }
}
@media (min-width: 769px) {
  .card__safe-call {
    max-width: 200px;
    padding: 16px 24px;
  }
}
.card__safe-call-row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  padding: 4px 0;
}
.card__safe-call-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.card__safe-call-text {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}
.card__safe-call-title {
  width: 100%;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-text-primary);
}
@media (min-width: 769px) {
  .card__safe-call-title {
    font-size: 14px;
  }
}
.card__safe-call-desc {
  width: 100%;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 10px;
  line-height: 1.2;
  color: var(--color-text-muted);
}
@media (min-width: 769px) {
  .card__safe-call-desc {
    font-size: 12px;
  }
}
.card__cc-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: center;
  color: var(--color-text-primary);
}
.card__cc-info p {
  width: 100%;
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 769px) {
  .card__cc-info p {
    font-size: 18px;
  }
}
.card__cc-info p:first-child {
  font-family: var(--font-primary);
  font-weight: 700;
}
.card__cc-info p:last-child {
  font-family: var(--font-primary);
  font-weight: 400;
}
@media (min-width: 769px) {
  .card__cc-info-break {
    display: none;
  }
}
.card__alert-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
@media (min-width: 769px) {
  .card__alert-wrap {
    padding: 32px;
  }
}
.card__alert {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-alert-bg);
  border: 1px solid var(--color-alert-border);
  border-radius: 16px;
  padding: 16px;
}
@media (min-width: 769px) {
  .card__alert {
    padding: 24px;
  }
}
.card__alert-heading {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.card__alert-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.card__alert-label {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: var(--color-text-primary);
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .card__alert-label {
    font-size: 20px;
  }
}
.card__alert-text {
  width: 100%;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-primary);
  text-align: center;
}
@media (min-width: 769px) {
  .card__alert-text {
    font-size: 18px;
  }
}
.card__alert-text b {
  font-weight: 700;
}

.phone-button--open {
  display: none;
}

/* ---------- Footer ---------- */
.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-neutral-950);
  padding: 32px 16px;
}
@media (min-width: 769px) {
  .footer {
    padding: 48px 24px;
  }
}
.footer__container {
  width: 100%;
  max-width: 1110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 769px) {
  .footer__container {
    gap: 24px;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: auto;
  flex-shrink: 0;
}
.footer__logo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__safe-payment {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__safe-payment img {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.footer__safe-payment p {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-neutral-200);
  white-space: nowrap;
}
@media (min-width: 769px) {
  .footer__safe-payment p {
    font-size: 14px;
  }
}
.footer__copyright {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer__links {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 24px 16px;
  margin: 0;
}
@media (min-width: 769px) {
  .footer__links {
    gap: 24px;
  }
}
.footer__links a {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-neutral-200);
  white-space: nowrap;
}
.footer__copyright > p {
  width: 100%;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-neutral-200);
  text-align: center;
}
@media (min-width: 769px) {
  .footer__copyright > p {
    font-size: 14px;
  }
}
.footer__text {
  width: 100%;
  max-width: 1110px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 11px;
  line-height: 1.5;
  color: var(--color-neutral-200);
  text-align: center;
  margin-top: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #111111;
  color: white;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner .cookie-banner-content {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cookie-banner .cookie-banner-text {
  flex: 1;
  font-size: 13px;
  line-height: 20px;
}
.cookie-banner .cookie-banner-text p {
  margin: 0;
  color: white;
}
.cookie-banner .cookie-banner-text a {
  color: #85ccb1;
  text-decoration: underline;
}
.cookie-banner .cookie-banner-text a:hover {
  color: #85a9b3;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-buttons {
    justify-content: flex-end;
    flex-shrink: 0;
  }
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.cookie-btn-accept {
  background-color: #19ae30;
  color: white;
}
.cookie-btn-accept:hover {
  background-color: #158026;
}
.cookie-btn-essential {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-essential:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.cookie-btn-settings {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.cookie-modal-overlay.show {
  opacity: 1;
}

.cookie-modal {
  background-color: white;
  color: #333;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-family: "Roboto", sans-serif;
}
.cookie-modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-header h2 {
  margin: 0;
  font-size: 20px;
  color: #2e3641;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.cookie-modal-close:hover {
  color: #333;
}
.cookie-modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}
.cookie-modal-body p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}
.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
}
.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.cookie-category-title {
  font-weight: 700;
  font-size: 16px;
  color: #2e3641;
}
.cookie-category-desc {
  font-size: 13px;
  line-height: 18px;
  color: #777;
  margin: 0;
}

/* Switch Styles */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: #19ae30;
}
.cookie-switch input:focus + .cookie-slider {
  box-shadow: 0 0 1px #19ae30;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-switch input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.disclaimer {
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}/*# sourceMappingURL=style.css.map */