@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap");

*,
*:before,
*:after {
  box-sizing: border-box;
}

/* Some basic CSS overrides */
body {
  line-height: 1.5;
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  color: #2d232e;
  background-color: #ebeaea;
  position: relative;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

/* End basic CSS override */

* {
  scrollbar-width: 0;
}

*::-webkit-scrollbar {
  background-color: transparent;
  width: 12px;
}

*::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background-color: #ddd;
  border: 4px solid #fff;
}

.modal {
  position: absolute;
  top: 2%;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(hwb(0 0% 100%), 0.25);
}

.modal-container {
  max-height: 90vh;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
  border-radius: 10px;

  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 1px -1px 20px 2px #8ac28a;
  @media (max-width: 600px) {
    width: 90%;
  }
}

.modal-container-header {
  padding: 16px 32px;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-container-title {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  font-weight: 700;
  font-size: 1.125;
  svg {
    width: 32px;
    height: 32px;
    color: #750550;
  }
}

.modal-container-body {
  padding: 14px 12px 36px;
  overflow-y: auto;
}

.rtf {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 700;
  }

  h1 {
    font-size: 1.5rem;
    line-height: 1.125;
  }

  h2 {
    font-size: 1.25rem;
    line-height: 1.25;
  }

  h3 {
    font-size: 1rem;
    line-height: 1.5;
  }

  & > * + * {
    margin-top: 1em;
  }

  & > * + :is(h1, h2, h3) {
    margin-top: 2em;
  }

  & > :is(h1, h2, h3) + * {
    margin-top: 0.75em;
  }

  ul,
  ol {
    margin-left: 20px;
    list-style-position: inside;
  }

  ol {
    list-style: numeric;
  }

  ul {
    list-style: disc;
  }
}

.modal-container-footer {
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid #ddd;
  gap: 12px;
  position: relative;
  &:after {
    content: "";
    display: block;
    position: absolute;
    top: -51px;
    left: 24px;
    right: 24px;
    height: 50px;
    flex-shrink: 0;
    background-image: linear-gradient(to top, rgba(#fff, 0.75), transparent);
    pointer-events: none;
  }
}

.button {
  padding: 12px 20px;
  border-radius: 8px;
  background-color: transparent;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  transition: 0.15s ease;

  &.is-ghost {
    &:hover,
    &:focus {
      background-color: #dfdad7;
    }
  }

  &.is-primary {
    background-color: #750550;
    color: #fff;
    &:hover,
    &:focus {
      background-color: #4a0433;
    }
  }
}

.icon-button {
  padding: 0;
  border: 0;
  background-color: transparent;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.15s ease;
  svg {
    width: 24px;
    height: 24px;
  }

  &:hover,
  &:focus {
    background-color: #f0edeb;
  }
}

* {
  font-family: "Montserrat", sans-serif;
}
p a {
  text-decoration: none;
}

li {
  margin-right: 10px;
  list-style: none;
}
.btn-0 {
  background: #ffffff;
  border: #15d798 solid 3px;
  border-radius: 10px;
  padding: 10px;
  margin: 2px;
  color: #3a405a;
  display: inline-block;
  font: normal bold 18px/1 "Open Sans", sans-serif;

  text-align: center;
}
.btn-1 {
  background: #15d798;
  border: none;
  border-radius: 10px;
  padding: 10px;
  color: #ffffff;
  margin: 2px;
  display: inline-block;
  font: normal bold 18px/1 "Open Sans", sans-serif;
  text-align: center;
}

.btn-2 {
  background: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 10px;
  color: #15d798;
  margin: 2px;
  display: inline-block;
  font: normal bold 18px/1 "Open Sans", sans-serif;
  text-align: center;
}

.btn-3 {
  background: rgb(91, 48, 131);
  border: none;
  border-radius: 10px;
  padding: 5px;
  width: 4rem;
  margin: 2px;
  display: inline-block;
  font: normal bold 22px/1 "Open Sans", sans-serif;
  text-align: center;
}
.btn-5 {
  background: rgba(0, 0, 0, 0.781);
  border: none;
  border-radius: 10px;
  margin: 2px;
  padding: 5px;
  width: 4rem;
  display: inline-block;
  font: normal bold 22px/1 "Open Sans", sans-serif;
  text-align: center;
}
.btn-4 {
  background: #819595;
  border: none;
  border-radius: 10px;
  margin: 2px;
  padding: 5px;

  display: inline-block;
  font: normal bold 22px/1 "Open Sans", sans-serif;
  text-align: center;
}
.btn-3:hover {
  background: #15d798;
}
.btn-4:hover {
  background: #15d798;
}

.hero {
  background-image: url(./bg1.jpg);
  background-size: cover;
  min-height: 90dvh;

  color: rgb(255, 255, 255);
}

.hero-text {
  text-align: center;

  padding: 4% 10% 0.5% 10%;
}
.form-in {
  max-width: 360px;
  margin: auto;
  padding: 2rem;
  border-radius: 10px;
  font-weight: 600;
  background-color: #ffffff;
  box-shadow: #ebebeb 1px 2px 4px 5px;
}
.form-inp {
  border: none;
  background-color: whitesmoke;
  padding: 1rem;
  width: 100%;
  border-radius: 10px;
  color: #3a405a;
}

.form-inp-2 {
  border: none;
  background-color: #4df5c0;
  padding: 1rem;

  width: 100%;
  border-radius: 10px;
}

.form-w {
  margin-top: 2rem;

  width: 100%;
  text-align: center;
}

.col {
  border-radius: 10px;
  margin: 1rem 0;
}
.i-info-1 {
  background-color: #15d798;
  color: white;
  height: 40dvh;
}

.i-info-2 {
  background-image: url(./bg1.jpg);
  background-size: cover;
  color: white;
  border-radius: 10px;
  height: 40dvh;
}
.u-info-1 {
  background-color: #15d798;
  color: white;
  height: 86dvh;
  border-radius: 10px;
}

.u-info-2 {
  background-color: whitesmoke;
  background-size: cover;
  color: white;
  border-radius: 10px;
  height: 86dvh;
  padding: 1rem;
}

.h-1 {
  text-align: center;
  font-weight: 600;
  font-size: 3rem;
  padding: 0 10%;
}

.user-tab {
  color: #ffffff;
  background-color: #23eeae;
  padding: 1rem;
  font-weight: 600;
  font-size: 1.5rem;
  border-radius: 10px;
  margin: 1rem 1rem;
}

.user-tab1 {
  color: rgb(91, 48, 131);
  background-color: #23eeae;
  padding: 1rem;
  font-weight: 600;
  font-size: 1.5rem;
  border-radius: 10px;
  margin: 0rem 1rem;
}
.user-tab1 a {
  color: rgb(91, 48, 131);
}

.u-i-card {
  background-color: white;
  border-radius: 10px;
  border: none;
  color: #819595;
}
.u-i-card-2 {
  background-color: #ffffff;
  border-radius: 10px;
  border: none;
  border-top: none;
  color: #ebebeb;
}
.u-i-card-2:hover {
  background: #c7bbbb;
}
.h-1 {
  color: rgba(91, 48, 131, 0);
}

.form-inp-file input {
  background-color: #3a405a;
}

@media only screen and (max-width: 500) {
}

.card-2 {
  box-shadow: 1px 1px 10px 4px rgba(226, 226, 226, 0.822);
  background-color: #ffffff;
  width: fit-content;
  color: black;
  padding: 1rem;
  border-radius: 10px;
}

.noti {
  background-color: rgba(0, 0, 255, 0.664);
  border-radius: 10px;
  right: 1rem;
  color: white;
  bottom: 30px;
  display: block;
  position: fixed;
  font-weight: 900;
  padding: 1rem 2rem;
  padding-top: 20px;
  z-index: 1;
  visibility: hidden;
  animation: fadein 2s , fadeout 2s 8s;
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0.8;
    visibility: visible;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadeout {
  from {
    display: flex;
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0.8;
    overflow: hidden;
  }
}
