/*************************************************************************/
/**************************** APPS POPUP *********************************/
/*************************************************************************/
#apps-popup {
    position: fixed;
    bottom: 20vh;
    left: 0;
    width: 170px;
    background: #f2f2f2;
    color: #fff;
    padding: 10px;
    text-align: right;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transform: translateX(-180px);
  	transition: transform ease-out 200ms;
}

#apps-popup-anchor{
	padding: 10px 15px;
    font-weight: bold;
    color: #333;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    position: absolute;
    left: 170px;
    top: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    box-shadow: 8px 2px 10px rgba(0, 0, 0, 0.5);
}

.btn-app-popup {
    padding: 10px 15px;
    font-weight: bold;
    color: #333;
    border: none;
    width: 100%;
    cursor: pointer;
    font-size: 15px;
    text-align: right;
    font-weight: bold;
    border-radius: 4px;
}

#apps-popup-anchor:hover, .btn-app-popup:hover{
	color: #fff;
    background: #000;
    transition: 0.3s ease-in-out;
}

.btn-app-popup a{
    color: #333;
}

.btn-app-popup:hover a{
    color: #fff;
}


/*************************************************************************/
/************************ LINE ACCESS POPUPS *****************************/
/*************************************************************************/
#line-access-popup {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #f2f2f2;
    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;
}

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

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

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

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

#line-access-popup .line-single-btn {
    display: flex;
    margin: 10px 10px;
}

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

#access-popup .line-link-btn {
    padding: 5px 10px;
    color: #333;
    border: none;
    width: 100%;
    cursor: pointer;
    font-size: 12px;
    font-weight: normal;
}

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

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

@media screen and (min-width: 768px) {
    #line-access-popup {
        display: none;
    }
}


/*************************************************************************/
/***************************** ACCESS POPUPS *****************************/
/*************************************************************************/
#access-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 320px;
    background: #f2f2f2;
    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;
}

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

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

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

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

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

#access-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;
}

#access-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;
}

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

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

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

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