@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600;700&display=swap");
.card {
  margin-bottom: 12px;
  border: none;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
}
.card .card-header {
  color: #3d405b;
  background-color: transparent;
  border-bottom: 1px solid rgb(240, 240, 240);
}
.card .card-header h4 {
  font-size: 1.2em;
  font-weight: 700;
}
.card .card-header.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card .card-header img {
  width: 20px;
  height: 20px;
}
.card .card-header * {
  margin-bottom: 0;
}
.card .card-footer {
  background-color: white !important;
}

.btn {
  border-radius: 6px;
  font-size: 0.9em;
}
.btn.btn-block {
  width: 100%;
}
.btn:focus {
  box-shadow: none !important;
}
.btn:active {
  box-shadow: none !important;
}
.btn.btn-rounded {
  border-radius: 250px;
}
.btn.btn-primary {
  background: #ed147d !important;
  border: 1px solid #ed147d !important;
}
.btn.btn-outline-primary {
  border: 1px solid #ed147d !important;
  color: #ed147d !important;
}
.btn.btn-outline-primary:hover {
  background-color: transparent !important;
}
.btn.btn-ghost {
  border: 1px solid white !important;
  color: white !important;
}

.form-group {
  margin-top: 7px;
  margin-bottom: 7px;
}
.form-group label {
  font-size: 0.8em;
}
.form-group .form-control {
  border: 1px solid #ced4da;
  border-radius: 6px;
  line-height: 1.8em;
}
.form-group .form-control:focus {
  box-shadow: none !important;
  border-bottom: 2px solid #ed147d;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
* {
  transition: all 0.4s linear;
}

.bold {
  font-weight: 700;
}

.thin {
  font-weight: 300;
  font-size: 0.9em;
}

.badge {
  background-color: #ed147d;
  margin-right: 6px;
  padding: 6px 12px;
}

.list-group {
  border: none;
  border-radius: 0;
  margin-top: 12px;
}
.list-group .list-group-item {
  border: none;
  border-bottom: 1px solid rgb(225, 225, 225);
  font-size: 0.9em;
}

.text-primary {
  color: #ed147d !important;
}

.bg-primary {
  background-color: #ed147d !important;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #ed147d !important;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff !important;
  background-color: #ed147d !important;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  background: white;
  width: 100%;
  height: 100vh;
  z-index: 11;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader img {
  max-width: 350px;
}

body {
  font-family: "Josefin Sans", sans-serif;
  background-color: #fbfbff;
}

img {
  cursor: pointer !important;
}

.full_screen {
  min-height: 70vh;
  background-color: #ed147d;
  background-image: url("/assets/img/main_bg.jpg");
  background-size: cover;
  background-position: center top;
  position: relative;
  background-repeat: no-repeat;
}

img {
  cursor: pointer;
}

#glass {
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background: rgba(255, 255, 255, 0.156);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
#glass .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#glass .name img {
  width: 24px;
  height: 24px;
  margin-left: 12px;
}

#me_top {
  height: 200px;
  background-color: white;
  background-image: url("/assets/img/main_bg.jpg");
  background-size: cover;
  background-position: center top;
  position: relative;
}
#me_top * {
  margin-bottom: 0;
  color: aliceblue !important;
}
#me_top #glass {
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background: rgba(255, 255, 255, 0.156);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
#me_top #glass .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#me_top #glass .name img {
  width: 24px;
  height: 24px;
  margin-left: 12px;
}

#me_nav {
  height: 70px;
  background-color: white;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
}
#me_nav .container {
  display: flex;
  height: 100%;
}
#me_nav .item {
  padding: 0px 42px;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none !important;
  color: #ed147d !important;
}
#me_nav .item img {
  width: 18px;
  height: 18px;
  position: relative;
  bottom: 2px;
  margin-right: 6px;
  opacity: 0;
}
#me_nav .item:hover span {
  color: #000 !important;
  transform: translateY(-2px);
}
#me_nav .item.active {
  border-bottom: 4px solid #ed147d;
}
#me_nav .item.active span {
  color: #000 !important;
}
#me_nav .item.active img {
  opacity: 1;
}

#me_small_nav {
  height: 70px;
  background-color: white;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#me_small_nav img {
  width: 40px;
  height: 40px;
}

#mobile_nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background-color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s linear;
  transform: translateX(100%);
}
#mobile_nav.open {
  transform: translateX(0);
}
#mobile_nav img {
  width: 50px !important;
  height: 50px !important;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#mobile_nav ul {
  list-style-type: none;
  padding-left: 0;
  text-align: center;
}
#mobile_nav ul a {
  display: block;
  padding: 10px 120px;
  margin-bottom: 20px;
  text-decoration: none;
  color: #ed147d;
}

#search_row .col-md-3 {
  padding-bottom: 1em;
}

#footer span {
  margin: 0 !important;
  color: #ed147d !important;
}
#footer a {
  display: block;
  padding: 6px;
  text-decoration: none;
  color: #ed147d !important;
}
#footer a:hover {
  text-decoration: none;
  color: #ed147d !important;
}

.feed_card {
  cursor: pointer;
  height: 100%;
  margin-bottom: 1em;
}
.feed_card .card-body {
  text-align: center;
  padding-bottom: 0;
}
.feed_card .card-body .about {
  font-size: 0.9em;
  font-weight: 300;
}
.feed_card .card-body * {
  margin-bottom: 0;
}

.image {
  width: 120px;
  height: 120px;
  border-radius: 125px;
  border: 4px solid rgba(237, 20, 125, 0.2117647059);
  display: block;
  margin: 20px auto;
  overflow: hidden;
}
.image img {
  width: 100%;
  height: auto;
}

#profile_pic {
  width: 60%;
  max-width: 160px;
  border-radius: 125px;
  border: 4px solid rgba(237, 20, 125, 0.2117647059);
  display: block;
  margin: 20px auto;
}

.like {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  padding-top: 12px;
  border-bottom: 1px solid rgb(237, 237, 237);
  cursor: pointer;
}
.like .details {
  margin-left: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.like .details .name {
  display: flex;
}
.like .details .name .user_name {
  font-weight: 600;
  color: #3d405b;
}
.like .details .name img {
  width: 18px;
  height: 18px;
  margin-left: 6px;
  position: relative;
}
.like .user_img {
  width: 52px;
  height: 52px;
  border-radius: 250px;
}
.like .actions img {
  width: 30px;
  margin-left: 24px;
}

.liker_details {
  font-weight: 300;
}
.liker_details img {
  width: 150px;
  border-radius: 250px;
  margin-bottom: 18px;
}

.back_btn {
  width: 30px;
}

.message {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  padding-top: 12px;
  border-bottom: 1px solid rgb(237, 237, 237);
  cursor: pointer;
  padding-left: 12px;
  padding-right: 12px;
}
.message.active {
  border-left: 4px solid #ed147d;
  background-color: rgba(237, 20, 125, 0.1254901961);
}
.message .details {
  margin-left: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.message .details .name {
  display: flex;
}
.message .details .name .user_name {
  font-weight: 600;
  color: #3d405b;
}
.message .details .name img {
  width: 18px !important;
  height: 18px !important;
  margin-left: 6px;
  position: relative;
}
.message .user_img {
  width: 52px !important;
  height: 52px !important;
  border-radius: 250px;
}
.message .actions img {
  width: 30px;
  margin-left: 24px;
}

.single_message {
  display: flex;
  margin-top: 6px;
  cursor: pointer;
}
.single_message .thin {
  margin: auto 12px;
  font-size: 0.8em;
  display: none;
}
.single_message:hover .thin {
  display: block;
}
.single_message.with_sent {
  justify-content: end;
}
.single_message .sent {
  background-color: #ed147d;
  padding: 8px;
  max-width: 50%;
  border-radius: 8px;
}
.single_message .sent span {
  color: aliceblue;
  font-size: 0.9em;
}
.single_message .received {
  background-color: rgba(165, 213, 255, 0.35);
  padding: 8px;
  max-width: 50%;
  border-radius: 8px;
}
.single_message .received span {
  color: black;
  font-size: 0.9em;
}

#profile_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 5000;
  background-color: white;
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.5s linear;
  padding-bottom: 1em;
}
#profile_popup.active {
  transform: translateY(0);
  opacity: 1;
}
#profile_popup #close_profile {
  width: 45px;
  height: 45px;
  display: block;
  margin: 24px auto;
}

#gallery img {
  border-radius: 12px;
}

#thread {
  position: sticky;
  top: 20px;
}
#thread .card-body {
  height: 60vh;
  max-height: 60vh;
  overflow-y: scroll;
}
#thread .col-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
#thread #send_icon {
  width: 50px;
  height: 50px;
}

/* under 768 px */
@media screen and (max-width: 768px) {
  #me_nav,
  #links {
    display: none !important;
  }
}
/* above 768 px */
@media screen and (min-width: 769px) {
  #me_small_nav,
  #links_mobile {
    display: none !important;
  }
}/*# sourceMappingURL=main.css.map */