:root {
  /* Theme Colors (1 to 10) */
  --themeprimaryclr: #E2058F;
  --themesecondaryclr: #5D5D5D;
  --themethirdclr: #1BB174;
  --themefourthclr: #1C1C1C;
  --themefifthclr: #FF42B3;
  --themesixthclr: #554B4E;
  --themeseventhclr: #FF0099;
  --themeeighthclr: #6E6C6C;
  --themeninthclr: #212529BF;
  --themetenthclr: #F7CD73;
  --plainclr: #fff;
  --darkclr: #000;
  --lightbg: #fafafa;
  --bodyclr: #696969;
  --body-bgclr: #afb3ab;
  --headerclr: #fff;
  --headerbgclr: #defffc;
  --footerclr: #ffdada;
  --footerbgclr: #eebbbb;
  --headingclr: #000000;
  --li-clr: #dfd8d8;
  --lihover-clr: #474747;
  --anchorclr: #cdcdcd;
  --btnhover: #FF42B3;
  --anchor-hover-clr: #ffa1a1;
  --linkclr: #7cb5ff;
  --link-hover-clr: #3288f8;
  /* newly added colors */
  --link-hover-bg-clr: #f5f5f5;
  --link-bg-clr: #f0f0f0;
  --hoverclr: #000;
  --iconclr: #ff0000;
  --icon-hover-clr: #fff000;
  --tablehover: #cdcdcd;
  /* dark mode clrs */
  --dark-text-color: #c0aaaa;
  --dark-section-color: #2a2a2a;
  --dark-menu-bg-color: #3f404e;
  --dark-menu-icon-color: #404654;
  /* borderclrs */
  --main-border: #e0e0e0;
  --light-border: #51535f;
  --borderone: #cdcdcd;
  --bordertwo: #dcdc45;
  --border-three: #ff0000;
  /* section colors */
  --section-color: #fafafa;
  --section-color-two: #000000;
  --section-color-three: #9b9b9b;
  --section-color-four: #313131;
  --section-color-five: #f8bfbf;
  /* Named Colors */
  --greenclr: #1bb174;
  --orangecolor: #ff9900;
  --redclr: #ff2b2b;
  --yellowclr: #f7cd73;
  /* badges color */
  --badge-danger: #ff0000;
  --badge-warning: #ff9900;
  --badge-success: #1bb174;
  --badge-light: #eff0f6;
  --badge-dark: #343a40;
  --badge-semi-dark: #495057;
  --badge-semi-light: #f8f9fa;
  --badge-info: #17a2b8;
  --fbclr: #1877F2;
  --ytclr: #FF0000;
  --twclr: #1DA1F2;
  --igclr: #C13584;
  --lnclr: #0A66C2;
  --ghclr: #333333;
  --waclr: #25D366;
  --scclr: #FFFC00;
  --rdclr: #FF4500;
  --tiktokclr: #010101;
  --pinterestclr: #E60023;
  /* Overlay Colors */
  --overlayone: rgba(0, 0, 0, 0.3);
  --overlaytwo: rgba(0, 0, 0, 0.5);
  --overlaythree: rgba(0, 0, 0, 0.7);
  --overlayfour: rgba(255, 255, 255, 0.2);
  --overlayfive: rgba(226, 5, 143, 0.4);
  /* Gradient Backgrounds */
  --gradientone: linear-gradient(135deg, #E2058F, #FF42B3);
  --gradienttwo: linear-gradient(135deg, #1bb174, #43a700);
  --gradientthree: linear-gradient(135deg, #ff6600, #ff9900);
  --gradientfour: linear-gradient(135deg, #000000, #434343);
  --gradientfive: linear-gradient(135deg, #f7cd73, #ffcc00);
  --gradientsix: linear-gradient(135deg, #5d5d5d, #1c1c1c);
  /* Box Shadows */
  --shadowone: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadowtwo: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadowthree: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadowfour: 0 12px 24px rgba(0, 0, 0, 0.2);
  --shadowfive: 0 20px 40px rgba(0, 0, 0, 0.25);
  /* Font Families (1 to 6) */
  --primaryfont: "Lato", sans-serif;
  --secondaryfont: "Inter", sans-serif;
  --thirdfont: "Roboto", sans-serif;
  --fourthfont: "Montserrat", sans-serif;
  --fifthfont: "Open Sans", sans-serif;
  --sixthfont: "Poppins", sans-serif;
}

body {
  font-family: var(--primaryfont);
  background-color: var(--lightbg);
  color: var(--bodyclr);
}

.instrgram-feed {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 2rem 0;
}
.instrgram-feed .user-profile {
  background: linear-gradient(40deg, var(--orangecolor) 15%, var(--igclr) 50%, var(--themeprimaryclr) 85%);
  width: 48px;
  height: 48px;
  padding: 2px;
  -o-object-fit: cover;
     object-fit: cover;
}
.instrgram-feed .user-profile a {
  width: 100%;
  height: 100%;
  padding: 2px;
}
.instrgram-feed .user-profile img {
  width: 100%;
  height: 100%;
}
.instrgram-feed .feed-card {
  height: 275px;
}
@media (max-width: 400px) {
  .instrgram-feed .feed-card {
    height: 180px;
  }
}
.instrgram-feed .feed-card .insta-feed {
  height: 100%;
  width: 100%;
}
.instrgram-feed .feed-card .insta-feed img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.instrgram-feed .feed-card .feed-content {
  background-color: var(--themeninthclr);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s all;
}
.instrgram-feed .feed-card .feed-content .comment-box p {
  overflow: hidden;
  text-align: center;
  max-height: 84px;
  width: 100%;
  padding: 10px;
}
.instrgram-feed .feed-card:hover .feed-content {
  opacity: 1;
  visibility: visible;
  top: 0 !important;
}
.instrgram-feed .feed-card:hover .m-icon {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all;
}
.instrgram-feed .swiper-button-next,
.instrgram-feed .swiper-button-prev {
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: var(--plainclr);
  background: var(--overlayone);
  text-align: center;
  padding: 10px;
  border-radius: 50%;
}
.instrgram-feed .swiper-button-next::after,
.instrgram-feed .swiper-button-prev::after {
  font-size: 20px;
}
.instrgram-feed .swiper-button-next:hover,
.instrgram-feed .swiper-button-prev:hover {
  background: var(--darkclr);
}
.instrgram-feed .small-wedget-insta {
  width: 100%;
  max-width: 360px;
}
.instrgram-feed.dark {
  background: var(--dark-section-color);
  color: var(--plainclr);
}
.instrgram-feed.dark .text-dark {
  color: var(--plainclr) !important;
}
.instrgram-feed .post-slider {
  width: 100%;
  max-width: 700px;
}
.instrgram-feed .post-slider .feed-card {
  height: 450px;
}/*# sourceMappingURL=feedDesign4.css.map */