/**
 * Webkul Software.
 *
 * @category  Webkul
 * @package   Webkul_SmartDeviceBasePromotions
 * @author    Webkul Software Private Limited
 * @copyright Webkul Software Private Limited (https://webkul.com)
 * @license   https://store.webkul.com/license.html
 */
.device-promo-modal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .device-promo-modal-content {
        background-color: #fff;
        margin: 10% auto;
        padding: 20px 30px;
        border: 1px solid #888;
        width: 60%;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        text-align: center;
        position: relative;
    }

    .device-promo-message {
        font-size: 18px;
        font-weight: 600;
        color: #222;
    }

    .device-promo-close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        position: absolute;
        right: 15px;
        top: 10px;
        cursor: pointer;
    }

    .device-promo-close:hover,
    .device-promo-close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }