@import url("/static/css/base.css");

* {
    margin: 0;
    padding: 0;
}

#defibContainer {
    height: 100vh;
    background-image: url("/static/img/lifepak.jpg");
    background-size: auto 100%; /*width height*/
    background-repeat: no-repeat;
    background-position: center;
}

#btnOnOff, #btnEnergyUp, #btnEnergyDown, #btnCharge, #btnShock, #btnFullscreen, #btnDumpCharge, #onOffCircle {
    position: absolute;
    /* border: 1px solid red; */
}

#btnOnOff {
    right: calc(50vw - 50vh);
    top: 19.5%;
    width: 17vh;
    height: 5%;
}

#btnEnergyUp {
    right: calc(50vw - 48vh);
    top: 24.5%;
    width: 7vh;
    height: 5%;
}

#btnEnergyDown {
    right: calc(50vw - 41vh);
    top: 24.5%;
    width: 7vh;
    height: 5%;
}

#btnCharge {
    right: calc(50vw - 50vh);
    top: 29.5%;
    width: 17vh;
    height: 5%;
}

#btnShock {
    right: calc(50vw - 50vh);
    top: 34.5%;
    width: 17vh;
    height: 8%;
}

#btnDumpCharge {
    right: calc(50vw - 7vh);
    top: 75%;
    width: 20vh;
    height: 17%;
}

#btnFullscreen {
    right: 1rem;
    top: 1rem;
}

#onOffCircle {
    border-radius: 50%;
    right: calc(50vw - 37.4vh);
    top: 21.2%;
    width: 1.5vh;
    height: 1.5%;
    background-color: black;
    opacity: 50%;
}

/* icons */
icon {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'ultrasound-training' !important;
    /* speak: never; */
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


icon::before {
    font-size: 2rem;
    color: black;
    content: "\e905";
}