/* APK LIST CONTAINER */
.mrad_apk_list {
    max-width: 750px;
    margin: 30px auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.mrad_apk_list .apk_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.mrad_apk_list .apk_item:hover {
    background: #f5f5ff;
}

.mrad_apk_list .apk_info {
    flex: 1 1 70%;
    min-width: 200px;
}

.mrad_apk_list .apk_info p {
    margin: 3px 0;
    line-height: 1.4;
}

.mrad_apk_list .apk_info .version {
    font-weight: bold;
    font-size: 15px;
    color: #222;
}

.mrad_apk_list .apk_info .size,
.mrad_apk_list .apk_info .date {
    color: #333;
    font-size: 12px;
}

.mrad_apk_list .apk_dl {
    flex: 1 1 25%;
    text-align: right;
    min-width: 150px;
}

.mrad_apk_list .apk_dl a {
    background: #ffffff;
    color: #0033bb;
    padding: 4px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 3px solid #0033bb;
    border-radius: 2px;
    display: inline-block;
}

.mrad_apk_list .apk_dl a:hover {
    background: #0033bb;
    color: #ffffff;
}

/* POPUP MODAL */
.mrad_popup {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
}

.mrad_popup .popup_box {
    background: #fff;
    max-width: 400px;
    margin: 200px auto;
    padding: 25px;
    border-radius: 2px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.mrad_popup .close_btn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 18px;
    color: #999;
    background: none;
    border: none;
    cursor: pointer;
}

.mrad_popup .text {
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

@media (max-width: 480px) {
    .mrad_apk_list .apk_item { flex-direction: column; align-items: flex-start; }
    .mrad_apk_list .apk_dl { text-align: left; margin-top: 8px; }
    .mrad_popup .popup_box { margin: 150px 15px; width: auto; }
}