h3 {
  font-family: Poppins, sans-serif;
  margin: 0px;
}

h3 {
  font-size: 16px;
}

a,
a:hover {
  text-decoration: none;
  color: #337ab7;
}

a {
  -webkit-transition: all 0.2s linear 0s;
  -moz-transition: all 0.2s linear 0s;
  -ms-transition: all 0.2s linear 0s;
  -o-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}

img {
  max-width: 100%;
}
body {
  font-size: 14px;
}
body,
html {
  margin: 0;
  padding: 0;
}

body {
  background-color: #fff;
  padding: 0 !important;
  margin: 0 !important;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #333333;
}
h3 {
  color: #000;
}
a,
a:hover {
  text-decoration: none;
}
.border {
  border-color: #e5e9ec !important;
}
p:last-child {
  margin-bottom: 0;
}
p:last-child {
  margin-bottom: 0;
}
.box-shadow {
  background-color: white;

  -webkit-box-shadow: 0px 9px 11px 5px rgba(10, 126, 255, 0.29);
  box-shadow: 0px 9px 11px 5px rgba(10, 126, 255, 0.29);
}
/* box */

.app-button {
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.app-button:active {
  background-color: #d6dbdf;
}

/* HOME_PAGE */
.banner-img {
  background-color: #b8fcfc;
  background-image: url(https://i.ibb.co/Y3kxK7G/bg1.png);
  width: 100%;
  min-height: 130px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.banner-img:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: linear-gradient(
    to right,
    rgba(90, 100, 232, 0.9),
    rgba(84, 96, 234, 0.9)
  );
  width: 100%;
  height: 100%;
}

/* custom ads  */
strong {
  font-weight: 600;
}

.notification {
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px;
  background-color: #f0f2f5;
  border-radius: 16px;
  position: fixed;
  bottom: 10px;
  left: 10px;
  animation: noti 9s ease-in-out;
}

.notification-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notification-title {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.notification-close {
  cursor: pointer;
  width: 20px;
  height: 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f2f5;
  font-size: 14px;
}

.notification-container {
  display: flex;
  align-items: center; /* Combine styles */
  justify-content: center;
}

.notification-media {
  position: relative;
}

.notification-user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  -o-object-fit: cover;
  object-fit: cover;
}

.notification-content {
  width: calc(100% - 60px);
  padding-left: 20px;
  line-height: 1.2;
}

@keyframes noti {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  5% {
    transform: translateY(0);
    opacity: 1;
  }
  95% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}
