.fullscreen-blackout {
    background-color: rgba(119, 119, 119, .8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 800;
    width: 100%;
    height: 100%;
    transition: height 0s .2s, opacity .2s 0s;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.blackout {
    opacity: .65;
    height: 100%;
    transition: height 0s 0s, opacity .2s 0s;
}

#inactivity-panel {
    opacity: 0;
    display: none;
    justify-content: space-between;
    position: absolute;
    width: 0px;
    height: 100vh;
    border-radius: 0px 15px 15px 0px;
    background-color: #FFF;
    z-index: 999;
    top: 0px;
    right: 0px;               
    -moz-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;                        
}

.active {
    opacity: 1 !important;
    display: flex !important;
    -moz-transition: all 1s ease-in-out !important;
    -webkit-transition: all 1s ease-in-out !important;
    -o-transition: all 1s ease-in-out !important;
    transition: all 1s ease-in-out !important;     
    width: 500px !important;
}

.inactivity-panel__text-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    margin-top: 100px;
    margin-left: 30px;
    height: 22vh;
}

.inactivity-panel__heading,
.inactivity-panel__countdown {
    font-size: 30px;
    font-weight: 700;
}

.inactivity-panel__text,
.inactivity-panel__link {
    font-size: 14px;
}

.inactivity-panel__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 209px;
    height: 50px;
    border-radius: 10px;
    text-decoration: none;
    background-color: #002B45;
    color: #FFF;
}

.inactivity-panel__close-panel {
    height: 20px;
    margin: 20px;
    border: none;
    background: none;
}

#inactivity-panel:hover{
    margin-left: 0px;
}