/*
Theme Name: Findme
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
footer .social-icons {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
footer .social-icons img {
	display: block;
	height: 20px;
	width: auto;
}
.social-icons.contact-icons {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.social-icons.contact-icons img {
	display: block;
	height: 24px;
	width: auto;
}

.button.mf-button.mf-button-play {
	    min-width: unset;
    padding: 0;
    width: 55px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.button.mf-button.mf-button-play span {
	display: none;
}
.button.mf-button.mf-button-play i {
	margin: 0;
}

.mf-popup {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.7);
	z-index: 100000;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.mf-popup.active { display: flex; }

.mf-popup-content {
	position: relative;
	background: #000;
	border-radius: 10px;
	max-width: 900px;
	width: 100%;
	padding: 0;
}

.mf-popup-close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 28px;
	color: #fff;
	cursor: pointer;
	z-index: 2;
}

.mf-popup-video-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 ratio */
	height: 0;
}

.mf-popup-video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
  border-radius: 10px;
}

@media (max-width: 849px) {
	footer .social-icons {
		justify-content: center;
	}
}