/*************************************************************************/
/************************ DOWNLOAD APP POPUP *****************************/
/*************************************************************************/
#app-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    background: #f7f4fd;
    color: #fff;
    padding: 20px 5px;
    text-align: center;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border-radius: 8px;
}

#app-popup-closer{
	color: #000;
	right: 30px;
	font-size: 12px;
	cursor: pointer;
  	font-weight: 700;
  	position: absolute;
}

#app-popup-closer:hover{
	color: #008ef7;
}

#app-popup-icon{
	color: #000;
	font-size: 30px;
}

#app-popup p {
	color: #000;
	font-size: 16px;
	font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
}

#app-popup .single-btn {
    display: flex;
    margin: 20px 20px;
}

#app-popup .single-btn a {
    background: #fff;
    color: #333;
    border: none;
    width: 50%;
    font-size: 12px;
    padding: 8px 20px;
    cursor: pointer;
    font-weight: bold;
    margin: 5px;
    border-radius: 4px;
}

#app-popup .large-btn {
    padding: 15px 30px;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    background: #008ef7;
    border-radius: 4px;
    margin-bottom: 30px;
}

#app-popup .link-btn {
    padding: 15px 30px;
    color: #333;
    border: none;
    width: 100%;
    cursor: pointer;
    font-size: 12px;
    font-weight: normal;
}

#app-popup a:hover {
    color: #fff;
    background: #000;
    transition: 0.3s ease-in-out;
}

#app-popup .link-btn:hover {
    color: #333;
    background: none;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    #app-popup {
        display: none;
    }
}