@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Geologica:wght@100..900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  outline: none;
  padding: 0;
  margin: 0;
}

ul {
  padding: 0;
}

ul li, ol li {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

p, ul, ol {
  margin: 0;
}

.tbs_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  overflow: hidden;
}
.tbs_background {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.tbs_background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(6px);
}
.tbs_main {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 30px;
}
.tbs_inner {
  max-width: 540px;
  width: 100%;
  height: auto;
  background-color: #493e3d;
  border-radius: 50px;
  padding: 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.tbs_inner .tbs_title {
  font-size: 32px;
  line-height: 36px;
}
.tbs_inner .tbs_subtitle {
  font-size: 24px;
  line-height: 32px;
  margin-top: 20px;
}
.tbs_inner .tbs_buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  width: 90%;
}
.tbs_inner .tbs_button {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  font-size: 24px;
  line-height: 32px;
  color: black;
  border-radius: 50px;
}
.tbs_inner .tbs_button-skip {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .tbs_inner {
    padding: 15px;
  }
  .tbs_inner .tbs_buttons {
    gap: 10px;
    margin-top: 30px;
    width: 100%;
  }
  .tbs_inner .tbs_button {
    font-size: 18px;
    line-height: 24px;
  }
}

/*# sourceMappingURL=two-buttons-preview.css.map */
