.instagram-feed-container {
  width: 100%;
  margin-bottom: 1rem;
}

.instagram-feed-container .instagram-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 15px;
}

.follow-cta-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.follow-cta-header .cta-username {
  align-self: center;
}

.instagram-feed .instagram-post, .instagram-post {
  background: white;
  border: 1px solid #DCE3E8;
  border-radius: var(--theme-border-radius);
}

.instagram-post .post-header {
  border-radius: var(--theme-border-radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
}

.instagram-post .post-content img {
  width: 100%;
  max-height: 100%;
}

.instagram-post .post-footer {
  word-wrap: break-word;
}

.instagram-post .post-content {
  position: relative;
  overflow: hidden;
}

.instagram-post .post-content .play-icon{
  position: absolute;
  top: 47%;
  left: 47%;
  color: white;
}

.alert.warning {
  background-color: #F1C40F26; 
  border-color:#F1C40F26;
  color:#454545; 
  padding:.75rem 1.25rem; 
  border:1px solid transparent;
  border-radius:0.25rem;
}

.alert h4, .alert p {
  color: inherit!important;
}

.alert h4 {
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.alert.warning hr {
  border-top-color: #ffe8a1;
}
.alert hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0,0,0,.1);
}

.alert p {
  margin-top: 0;
  margin-bottom: 1rem
}

.alert h1 {
  margin-bottom:10px!important
}

.instagram-no-account {
  display: flex;
  column-gap: 20px;
  color: var(--dca-black)!important;
}

.instagram-no-account .logo-container img {
  width: 62px;
  height: 62px;
}

/* POPOVER CSS BS  */
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 721px;
  padding: 1px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857143;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 14px;
  background-color: #ffffff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
  
.popover.top {
  margin-top: -10px;
}

.popover.right {
  margin-left: 10px;
}

.popover.bottom {
  margin-top: 10px;
}

.popover.left {
  margin-left: -10px;
}

.popover > .arrow {
  border-width: 11px;
}

.popover > .arrow,
.popover > .arrow::after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.popover > .arrow::after {
  content: '';
  border-width: 10px;
}

.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}

.popover.top > .arrow::after {
  bottom: 1px;
  margin-left: -10px;
  content: ' ';
  border-top-color: #ffffff;
  border-bottom-width: 0;
}

.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0;
}

.popover.right > .arrow::after {
  bottom: -10px;
  left: 1px;
  content: ' ';
  border-right-color: #ffffff;
  border-left-width: 0;
}

.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.popover.bottom > .arrow::after {
  top: 1px;
  margin-left: -10px;
  content: ' ';
  border-top-width: 0;
  border-bottom-color: #ffffff;
}

.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.popover.left > .arrow::after {
  right: 1px;
  bottom: -10px;
  content: ' ';
  border-right-width: 0;
  border-left-color: #ffffff;
}

.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

.popover-content {
  padding: 9px 14px;
}

.clearfix::before,
.clearfix::after {
  display: table;
  content: ' ';
}

.clearfix::after {
  clear: both;
}

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.instagram-label {
  font-weight: 700;
  margin-bottom: 20px !important;
}

.instagram-selected-image-container {
  position: relative;
  width: 200px;
  height: 200px;
}

.instagram-selected-image-container img {
  width: 200px;
  border-radius: 5px;
}

.clear-instagram-selected-image {
  position: absolute;
  right: 10px;
  top: 10px;
  border-radius: 50%;
  background-color: white;
  display: block;
  height: 21px;
  width: 21px;
  color: red !important;
}

.clear-instagram-selected-image i {
  margin-left: 5px;
}

.no-instagram-selected-image {
  width: 160px;
  height: 200px;
  border-radius: 5px;
  background-color: lightgray;
  color: white;
  margin-left: 20px;
  text-align: center;
  padding:0 20px 0 20px;
  display: table-cell;
  vertical-align: middle;
}

#instagram-browse-container .browse-btn-container {
  margin-bottom: 20px;
}

#instagram-images-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 10px;
}

#instagram-images-container .image {
  display: flex;
  width: 130px;
  height: 130px;
  border: 1px solid #DCE3E8;
  border-radius: 6px;
  position: relative;
}

#instagram-images-container .image .instagram-thumb {
  border-radius: 6px;;
}

#instagram-images-container .image .loading {
  position: absolute;
  left: 37%;
  top: 37%;
}

#load-more-posts {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
  width: 100%;
}

.instagram-post a.caption-link {
  padding: 0.75rem 1.25rem;
  display: inline-block;
}

.instagram-post a.caption-link:hover {
  text-decoration: none;
}

#instagram-images-container .image .play-icon {
  position: absolute;
  top: 37%;
  left: 37%;
  color: white;
  width: 30px;
  height: 30px;
}

.instagram-selected-image-container .play-icon {
  position: absolute;
  top: 42%;
  left: 42%;
  color: white;
  width: 30px;
  height: 30px;
}

#instagram-images-container .image .play-icon svg {
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 1));
}

.instagram-carousel {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  column-gap: 5px;
  width: 100%;
  bottom: 5%;
  justify-content: center;
}

.instagram-carousel .dot {
  background-color: white;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  opacity: .5;
}

.instagram-carousel .dot:first-child {
  opacity: 1;
}

.slick-slide .instagram-post {
  margin: 0 auto;
}

.instagram-post.navigation-item img {
  width: 100px;
  height: 100px;
}

.slider-wrapper__medium .instagram-post .post-content img {
  width: 300px;
  height: 300px;
}

.slider-wrapper__medium .instagram-post {
  width: 300px;
}

.slider-wrapper__medium .instagram-post .post-footer{
  max-height: 55px;
  overflow: hidden;
}

.slider-wrapper__small .instagram-post .post-content img {
  width: 200px;
  height: 200px;
}

.slider-wrapper__small .instagram-post {
  width: 200px;
}

.slider-wrapper__small .instagram-post .post-footer{
  max-height: 55px;
  overflow: hidden;
}