/* فایل: /assets/css/account/notify-user.css */

.vwalt-notification-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
    margin-top: 20px;
}

.vwalt-notification-title {
    margin: 0 10px 0 0;
    display: flex;
    align-items: center;
}

.vwalt-notification-title-p,
.vwalt-no-notifications {
    margin: 10px 0;
    font-weight: 400;
    font-size: 16px;
    background: #ffffff;
    color: #000;
    border-left: 3px solid #2a64f6;
    border-top: 3px solid #2a64f6;
    padding: 25px 10px;
    border-radius: 8px;
}

.vwalt-notification-title-p-icon {
    color: #2a64f6;
    font-weight: bold;
    font-size: 18px;
    margin: 0 10px;
}

.vwalt-notification-box {
    padding: 15px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.vwalt-notification-box p {
    margin: 0;
}

.vwalt-notification-box small {
    display: block;
    margin-top: 10px;
    color: #666;
}

.vwalt-notification-box.unread {
    background-color: #f0f8ff;
    border-left: 4px solid #2a64f6;
}

.vwalt-notification-box.unread small {
    color: #000;
}

.vwalt-notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 10px;
}

.vwalt-notification-toggle-form {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 5px 10px;
    box-shadow: none;
}

.vwalt-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.vwalt-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.vwalt-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 20px;
}

.vwalt-slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .vwalt-slider {
    background-color: #2a64f6;
}

input:checked + .vwalt-slider:before {
    transform: translateX(18px);
}

.vwalt-toggle-text {
    margin: 10px;
    font-size: 14px;
}

.vwalt-save-button-link {
    padding: 5px 10px;
    background-color: #0066ff;
    border: none;
    border-radius: 7px;
    color: white;
    font-weight: 400;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.vwalt-save-button-link:hover {
    background-color: #005ce3;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
}

.vwalt-notification-count {
    position: absolute;
    left: 25px;
    top: 25.2em;
    transform: translateY(-50%);
    background-color: #0073e6;
    color: #fff;
    padding: 2px 10px;
    width: 5px;
    height: 20px;
    border-radius: 7px;
    font-weight: bold;
    font-size: 13px;
    box-shadow: 0 0 0 2px #fff;
}


@media (max-width: 1024px) {
.vwalt-notification-count {
    top: 17em;
   }   
}
