@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
body,
html {
    font-family: "Inter", sans-serif;
}

#box {
    position: relative;
    width: 440px;
    display: none;
}

img {
    width: 100%;
}

.battery {
    position: absolute;
    top: 25.2px;
    left: 368.8px;

    width: 28px;
    height: 14px;

    background: #a8a8a8;
    border-radius: 3px;
    overflow: hidden;
}

.level {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #000;
    border-radius: 3px;
    transition: .25s;
}

.percent {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 800;
    color: #e5eee6;
    z-index: 2;
}

.battery-tip {
    position: absolute;
    left: 397.8px;
    top: 29.9px;

    width: 1.8px;
    height: 4.5px;

    background: #a8a8a8;

    border-radius: 0 999px 999px 0;
}

.time {
    position: absolute;
    top: 19px;
    left: 49px;
    font-weight: 900;
    font-size: 18px;
    width: 70px;
    background: white;
    font-family: "Roboto", sans-serif;
}

.subject {
    position: absolute;
    top: 124px;
    left: 220px;
    font-weight: 600;
    font-size: 22px;
    font-family: "Lato", sans-serif;
    background: white;
    width: 185px;
    color: #202124
}

.body {
    position: absolute;
    top: 485px;
    left: 55px;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Times New Roman', Times, serif;
    background: white;
    color: #474e60;
    width: 350px;
}

.receivedTime {
    position: absolute;
    top: 219px;
    left: 127px;
    font-size: 12px;
    font-weight: bold;
    background: white;
    color: #939699;
    width: 100px;
    padding: 0 1px
}

.btn {
    position: absolute;
    top: 0;
    left: 100px;
    cursor: pointer;
    background: crimson;
    color: white;
    border: none;
    padding: 10px;
    display: none;
}

.bat_inp {
    position: absolute;
    top: 50px;
    left: 265px;
    width: 50px;
    outline: none;
    display: none;
}

.bat_label {
    position: absolute;
    top: 50px;
    left: 120px;
    font-size: 14px;
    font-weight: bold;
    color: crimson;
    display: none;
}