@import url("zfonts.min.css");
@import url("zloader.min.css");
@import url("zbuttons.min.css");
@import url("zcards.min.css");
.w-90{
	width:90%;
}

.w-80{
	width:80%;
}

.display-5 {
	font-size:3rem;
}

.display-6 {
	font-size:2rem;
}

.text-orange{
	color: #EC6126;
}

.bg-orange{
	background-color: #EC6126;
}

/*============ Help Tip ============== */
.help-tip{
    position: absolute;
    top: 18px;
    right: 18px;
    text-align: center;
    background-color: #1E90FF;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 14px;
    line-height: 26px;
    cursor: default;
    z-index:1000;
}

.help-tip:before{
    content:'?';
    font-weight: bold;
    color:#fff;
}

.help-tip:hover p{
    display:block;
    transform-origin: 100% 0%;

    -webkit-animation: fadeIn 0.3s ease-in-out;
    animation: fadeIn 0.3s ease-in-out;

}

.help-tip p{    /* The tooltip */
    display: none;
    text-align: left;
    background-color: #1E2021;
    padding: 20px;
    width: 300px;
    position: absolute;
    border-radius: 3px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    right: -4px;
    color: #FFF;
    font-size: 13px;
    line-height: 1.4;
}

.help-tip p:before{ /* The pointer of the tooltip */
    position: absolute;
    content: '';
    width:0;
    height: 0;
    border:6px solid transparent;
    border-bottom-color:#1E2021;
    right:10px;
    top:-12px;
}

.help-tip p:after{ /* Prevents the tooltip from being hidden */
    width:100%;
    height:40px;
    content:'';
    position: absolute;
    top:-40px;
    left:0;
}

/* CSS animation */

@-webkit-keyframes fadeIn {
    0% { 
        opacity:0; 
        transform: scale(0.6);
    }

    100% {
        opacity:100%;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    0% { opacity:0; }
    100% { opacity:100%; }
}
/*============/Help Tip ============== */


/*=========== Social Media Sharing Buttons ==============*/
#share-buttons img {
	width: 35px;
	padding: 5px;
	border: 0;
	box-shadow: 0;
	display: inline;
}
/*===========/Social Media Sharing Buttons ==============*/

/*--------- Min-Width 992px --------------*/
@media (min-width: 992px) { 
	
	.z-shadow-md{
		box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
	}
	
	.z-opacity1-md{
		opacity:1 !important;
	}
	
	.centerInsideDiv-d {
	  margin: 0;
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  -ms-transform: translate(-50%, -50%);
	  transform: translate(-50%, -50%);
	}
		
}


/*--------- Max-Width 767.98px -----------*/
@media (max-width: 767.98px) { 
	
	
	.z-opacity1-md{
		opacity:0 !important;
	}
	
	.z-background-color-md{
		background-color: transparent !important;
	}
}


/* ------------- Neutralize -------------*/
.text-transform-void{
	text-transform: none !important;
}