@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
h1 {
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  text-align: center;
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.25rem;
  }
}

h2 {
  color: #002244;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}

h3 {
  color: #5a7184;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

h4,
h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.875rem;
}
@media (max-width: 480px) {
  h5 {
    font-size: 0.75rem;
  }
}

p {
  font-family: "Poppins", sans-serif;
  color: #333333;
  font-size: 1rem;
}
@media (max-width: 480px) {
  p {
    font-size: 0.875rem;
  }
}
p.lg-txt {
  font-size: 1.25rem;
  font-weight: 600;
}
@media (max-width: 992px) {
  p.lg-txt {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  p.lg-txt {
    font-size: 0.875rem;
  }
}
p.sm-txt {
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  p.sm-txt {
    font-size: 0.75rem;
  }
}
p.xs-txt {
  font-weight: 300;
  font-size: 0.75rem;
}
p.content-txt {
  color: #666666;
}

a {
  color: #800080;
}
a:hover {
  color: #ffa500;
}

/* Floating Icon Styles */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.floating-button {
  height: 80px;
  width: 80px;
  position: fixed;
  bottom: 50px;
  border-radius: 100px;
  background-color: #1e90ff;
  box-shadow: rgba(30, 144, 255, 0.3) 0px 19px 38px, rgba(30, 144, 255, 0.22) 0px 15px 12px;
  right: 50px;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  animation: fadeIn 1s ease-in-out forwards;
  opacity: 0;
  transition: 0.2s ease;
}
.floating-button:hover {
  height: 82px;
  width: 82px;
  transition: 0.2s ease-in-out;
  box-shadow: rgba(30, 144, 255, 0.5) 0px 19px 38px, rgba(30, 144, 255, 0.32) 0px 15px 12px;
}
.floating-button i {
  font-size: 2.25rem;
  color: #ffffff;
}

@media (max-width: 992px) {
  .floating-button {
    height: 50px;
    width: 50px;
    bottom: 30px;
    box-shadow: rgba(30, 144, 255, 0.3) 0px 10px 30px, rgba(30, 144, 255, 0.22) 0px 10px 7px;
    right: 30px;
  }
  .floating-button:hover {
    height: 52px;
    width: 52px;
    box-shadow: rgba(30, 144, 255, 0.3) 0px 10px 30px, rgba(30, 144, 255, 0.22) 0px 10px 7px;
  }
  .floating-button i {
    font-size: 1.25rem;
  }
}
@media (max-width: 480px) {
  .floating-button {
    height: 40px;
    width: 40px;
  }
  .floating-button:hover {
    height: 40px;
    width: 40px;
  }
  .floating-button i {
    font-size: 1rem;
  }
}
.floating-modal {
  height: auto;
  width: 400px;
  border-radius: 20px;
  background-color: #ece5dd;
  background-image: url("../images/floating-button/bg.jpg");
  background-blend-mode: lighten;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  position: fixed;
  border: 1px solid #075e54;
  bottom: 150px;
  right: 50px;
  animation: fadeIn 0.5s ease-in-out forwards;
  opacity: 0;
  transition: 0.2s ease;
  z-index: 99999;
}
.floating-modal__content .form-modal__header {
  height: auto;
  color: #ece5dd;
}
.floating-modal__content .form-modal__header:hover {
  color: #25d366;
}
.floating-modal__content .form-modal__header i {
  margin: 0 15px 0 0;
}
.floating-modal__content .form-modal__header.back-button {
  cursor: pointer;
}
.floating-modal__content .form-modal__body .form-group {
  display: flex;
  flex-direction: column;
}
.floating-modal__content .form-modal__body button {
  background-color: #1e90ff;
  height: 35px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  margin: 30px auto 10px;
}
.floating-modal__content .form-modal__body button:hover {
  background-color: #ffa500;
  transition: 0.5s;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.25);
}
.floating-modal__header {
  background-color: #075e54;
  height: 100px;
  width: 100%;
  border-radius: 20px 20px 0 0;
  padding: 10px 15px;
}
.floating-modal__body {
  padding: 5px 15px;
  max-height: 250px;
  overflow-y: auto;
}
.floating-modal__title {
  margin: 0;
  color: #ece5dd;
}
.floating-modal__subtitle {
  color: #ece5dd;
  margin: 5px 0;
}
.floating-modal__list {
  list-style-type: none;
  margin: 0;
  padding: 0 15px;
}
.floating-modal__list-item {
  height: auto;
  width: 100%;
  background-color: #ece5dd;
  padding: 5px 10px;
  margin: 15px 0;
  border-radius: 0 10px 10px 0;
  border-left: 3px solid #25d366;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  transition: 0.5s ease-out;
}
.floating-modal__list-item.notice-error {
  border-left: 3px solid #ece5dd;
  background-color: #ece5dd;
  border-radius: 3px;
  text-align: center;
  padding: 15px;
}
.floating-modal__list-item.notice-error p {
  margin: 0;
}
.floating-modal__list-item a {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-direction: row;
  cursor: pointer;
}
.floating-modal__list-item:hover {
  background-color: #dcf8c6;
  border-left: 3px solid #128c7e;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 24px;
  transition: 0.1s ease-in;
}
.floating-modal__list-item:hover .icon {
  background-color: #ece5dd;
}
.floating-modal__list-item .icon {
  border-radius: 100px;
  background-color: #dcf8c6;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 15px 0 0;
  color: #333333;
}
.floating-modal__list-item .description p {
  margin: 0;
}

@media (max-width: 992px) {
  .floating-modal {
    bottom: 100px;
    right: 20px;
  }
}
@media (max-width: 768px) {
  .floating-modal {
    max-width: 100%;
    width: 95%;
    margin: 0 auto;
    right: 10px;
  }
  .floating-modal__header {
    height: 80px;
    padding: 10px;
  }
  .floating-modal__body {
    max-height: 350px;
  }
  .floating-modal__list {
    padding: 0 5px;
  }
  .floating-modal__list-item {
    padding: 5px;
  }
  .floating-modal__list-item .icon {
    width: 25px;
    height: 25px;
    margin: 0 10px 0 0;
  }
  .floating-modal__list-item .icon i {
    font-size: 0.75rem;
  }
}
@media (max-width: 480px) {
  .floating-modal {
    bottom: 80px;
  }
}

/*# sourceMappingURL=floating-icon.css.map */
