@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Black.woff2') format('woff2'),
        url('../fonts/Poppins-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
body {
	font:400 14px/1.4 'Poppins', sans-serif;
	font-weight:400;
	font-style:normal;
	color: #fff ;
	min-height: 100vh;
    background: #292929;
}
i.fa {
	font-family: FontAwesome;
	font-weight: 400;
}
a {
	color:#fff;
	text-decoration:none;
}
a:hover,.nav-tabs > li > a:hover {
  text-decoration: none;
}
a:hover,code:hover,.accordion h3:hover,.nav-tabs > li > a:hover  {
  -webkit-transition:all 0.5s ease;
   -moz-transition:all 0.5s ease;
    -o-transition:all 0.5s ease;
	 transition:all 0.5s ease; 
}
img {
	max-width: 100%;
    height: auto;
}
.container, .container-sm, .container-md, .container-lg, .container-xl {
	max-width: 840px;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
  }
.home_wraper {
	display: flex;
	align-items: start;
	justify-content: center;
	min-height: 100vh;
}
.home_wraper_inner {
	display: block;
	max-width: 610px;
	margin: auto;
    padding-top: 40px;
    padding-bottom: 40px;
}
.site_logo {
    display: block;
    text-align: center;
    margin-bottom: 20px;
}
.site_logo a {
    display: inline-block;
}
.site_logo.circle_logo a {
	height: 130px;
	width: 130px;
	border-radius: 50%;
	background: #000;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.site_title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
}
.site_description {
    margin-bottom: 15px;
    text-align: center;
}
.link_tree_links {
	display: block;
	padding-top: 20px;
}
.link_row {
	display: block;
	margin-bottom: 15px;
}
.link_row_inner {
	display: flex;
	min-height: 60px;
	background: #f8d242;
	border-radius: 6px;
	align-items: center;
	justify-content: center;
	position: relative;
    color: #171717;
    border: 1px solid #f8d242;
    transition: 0.3s;
}
.link_thumb {
	margin-right: auto;
	position: absolute;
	left: 4px;
	display: flex;
}
.link_thumb img {
	max-width: 48px;
	max-height: 48px;
	border-radius: 4px;
}
.link_thumb svg {
	max-width: 48px;
	max-height: 48px;
	border-radius: 4px;
}
.link_title {
    font-weight: 500;
    font-size: 15px;
}
.footer_credit {
	display: block;
	text-align: center;
	font-size: 12px;
	color: #6b6b6b;
	padding-top: 10px;
	padding-bottom: 20px;
    margin-top: -5vh;
}
.footer_hook a {
	display: block;
	outline: none;
	border: 0;
}
.footer_hook svg {
	width: 22px;
	fill: #fff;
}
.footer_hook img, .footer_hook svg {
	transition: 0.3s;
}
.footer_hook img:hover, .footer_hook svg:hover {
	transform: scale(1.2);
	fill: #f8d243;
}
.link_tree_social_icons {
	display: block;
}
.link_tree_social_icons ul {
	list-style: none;
	padding: 0;
	margin: auto;
	display: table;
	margin: 30px auto;
}
.link_tree_social_icons ul li {
	display: inline-block;
	margin: 0 10px;
}
.link_tree_social_icons ul li a {
	display: block;
	color: #fff;
	font-size: 18px;
	transition: 0.3s;
}
.link_tree_social_icons ul li a:hover{
	color: #f8d243;
	transform: scale(1.4);
} 
.blurred_bg {
	filter: blur(4px);
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: -1;
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	display: none;
	width: 100%;
	height: 100%;
	overflow: hidden;
	outline: 0;
}
.fade {
	transition: opacity 0.15s linear;
}
.fade:not(.show) {
	opacity: 0;
}
.modal.fade .modal-dialog {
	transition: -webkit-transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
	transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
	-webkit-transform: translate(0, -50px);
	transform: translate(0, -50px);
}
.modal-dialog {
	position: relative;
	width: auto;
	margin: 0.5rem;
	pointer-events: none;
}
@media (min-width: 576px){
.modal-dialog {
	max-width: 500px;
	margin: 1.75rem auto;
}
}
.modal.show .modal-dialog {
	-webkit-transform: none;
	transform: none;
}
.modal-content {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 0.3rem;
	outline: 0;
	pointer-events: auto;
}
.modal-header {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 1rem 1rem;
	border-bottom: 1px solid #dee2e6;
	border-top-left-radius: calc(0.3rem - 1px);
	border-top-right-radius: calc(0.3rem - 1px);
}
.close {
	float: right;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	opacity: .5;
}
button.close {
	padding: 0;
	background-color: transparent;
	border: 0;
}
.modal-body {
	position: relative;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1rem;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1040;
	width: 100vw;
	height: 100vh;
	background-color: #000;
}
.modal-backdrop.fade {
	opacity: 0;
}
.modal-backdrop.show {
	opacity: 0.5;
}
button:not(:disabled), [type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled) {
	cursor: pointer;
}
button, input {
	overflow: visible;
}
*, ::before, ::after {
	box-sizing: border-box;
}

/**Add to home poup mobile cass**/
.pwa_favicon {
	margin-bottom: 15px;
}
.pwa_favicon img {
	max-width: 50px;
}
.pwa_title {
	font-size: 20px;
	margin-bottom: 5px;
	font-family: 'Poppins';
    font-weight: 500;
}
.pwa_desc {
	margin-bottom: 5px;
}
.pwa_footer_info {
	width: 100%;
	text-align: center;
	border-top: 1px solid #ddd;
	margin-top: 15px;
	padding-top: 15px;
}
.pwa_footer_info img {
	max-width: 18px;
	margin-right: 5px;
	margin-left: 5px;
}
#pwa_popup .modal-body {
	text-align: center;
	padding: 15px;
	color: #000;
}
#pwa_popup .modal-header {
	padding: 0px;
}
#pwa_popup .modal-header .close {
	margin-top: 5px;
	padding-top: 4px;
	position: absolute;
	right: 10px;
	top: 0;
	color: #777;
	cursor: pointer;
	z-index: 999;
}
#pwa_popup.modal {
	top: auto;
	z-index: 999999;
	bottom: 0;
	height: auto;
}

/**Shre Link Menu Css**/
.share_link_menu_wrapper {
    display: inline-block;
}
.share_link_menu_icon {
	color: #f8d243;
	position: absolute;
	right: 20px;
	top: 20px;
	font-size: 22px;
	cursor: pointer;
}
.share_link_menu_box {
	display: none;
	background: #1f1f1f;
	position: absolute;
	top: 55px;
	right: 20px;
	border-radius: 6px;
}
.share_link_menu_box ul {
	display: block;
	list-style: none;
	padding: 0;
	margin: auto;
}
.share_link_menu_box ul li{
    display: block;
}
.share_link_menu_box ul li a {
	display: block;
	color: #fff;
	font-size: 16px;
	transition: 0.3s;
	padding: 10px 10px;
	border-bottom: 1px solid #444;
	padding-right: 25px;
}
.share_link_menu_box ul li:last-child a {
    border-bottom: 0;
}
.share_link_menu_box ul li a:hover {
    background: #0000004f;
}
.share_link_menu_box ul li a i{
    color: #f8d243;
}
.share_link_menu_box ul li a span {
	display: inline-block;
	font-size: 14px;
	padding-left: 10px;
}
.admin_form_popup .modal-content {
	background-color: #292929;
	border: 1px solid #292929;
	box-shadow: 0px 0px 10px #000;
    border-radius: 5px;
    padding: 10px;
}
.admin_form_popup .modal-header {
	display: block;
	position: relative;
	padding: 15px 15px;
	border-bottom: 0px solid #000;
}
.admin_form_popup .modal-header .modal-title {
	margin-bottom: 0;
	line-height: 1.5;
	margin-top: 0;
	font-size: 16px;
	color: #fff !important;
    text-align: left;
    font-weight: 700;
}
.admin_form_popup .modal-header .close {
	font-weight: 400;
	color: #f8d242;
	text-shadow: 0 1px 0 #f8d242;
	opacity: 1;
	outline: none;
    margin: 0;
    position: absolute;
    right: 16px;
    padding: 0;
    top: 20px;
    font-size: 30px;
    line-height: .5;
}
.qr_code_popup_linkshare {
	margin-top: 0;
	background: #fff;
border-radius: 6px;
}
.qr_code_popup_linkshare img {
	border-radius: 6px;
border: 6px solid #f8d242;
padding: 20px;

}
.qr_code_popup_linkshare image {
    text-align: center;
}
.whatsapp_popup_linkshare {
    display: block;
}
.whatsapp_popup_linkshare a {
	display: block;
	text-align: center;
	font-size: 24px;
	color: #fff;
}
.whatsapp_popup_linkshare a i{
    color: #f8d242;
}
.centered-modal.show {
    display: flex !important;
}
.centered-modal .modal-dialog {
	margin: auto !important;
	width: 100%;
}

/************************************************/
/************************************************/
/************** Responsive Quries ***************/
/************************************************/
/************************************************/

@media only screen and (max-width: 480px) {
	.link_title {
		font-size: 14px;
		padding-left: 15px;
		padding-right: 15px;
	}

	.share_link_menu_icon {
        z-index: 1;
		font-size: 30px;
    }
    .share_link_menu_box {
        border-radius: 0px;
        width: 100%;
        height: 100vh;
        left: 0;
        right: 0;
        top: 0;
    }
    .share_link_menu_box ul {
        display: block;
        list-style: none;
        padding: 0;
        margin: auto;
        margin-left: 15px;
        margin-right: 15px;
        top: calc(50% - 130px);
        position: relative;
        text-align: center;
    }
    .share_link_menu_box ul li a {
        display: inline-block;
        padding-right: 10px;
        min-width: 230px;
    }
}

