#instagramSlider {
    width: 100%;
    max-width: 100%;
}

.post {
    background-position: center;
    background-size: cover;
    cursor: pointer;
}

.post:hover .overlay {
    opacity: 1;
}

.overlay {
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.overlay-background {
    background-color: #000;
    opacity: 0.5;
    position: absolute;
    width: 100%;
    height: 100%;
}

.overlay-text {
    color: #fff;
    position: relative;
    z-index: 10;
    width: 80%;
    text-align: center;
    margin: 0 auto;
}

#popup-overlay {
    z-index: 200;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#popup-container {
    position: relative;
    width: 640px;
    height: 640px;
    background-color: white;
    border: none;
    overflow: hidden;
}

#popup-backdrop {
    position: fixed;
	z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

@media screen and (max-width: 580px) {
  
	#popup-overlay{
		width:80%;
		height:400px;
	}
	
	#popup-container{
		width:100%;
		height:450px;
	}
}

/* Slick Theme */
.slick-arrow {
    color: #fff !important;
    z-index: 1;
}

.slick-arrow::before {
    font-size: 40px !important;
    opacity: 1 !important;
}

.slick-prev {
    left: 25px !important;
}

.slick-next {
    right: 40px !important;
}
