#inactive {
    display: none;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.5 !important;
    color: #333;
}

#inactive-hands-overlay {
    position: fixed!important;
    width: 100%!important;
    height: 100%!important;
    top: 0!important;
    left: 0!important;
    right: 0!important;
    bottom: 0!important;
    background-color: rgb(0 0 0 / 10%)!important;
    z-index: 1001!important;
    margin: 0!important;
    margin: 0!important
}

#inactive-hands-dialog {
    position: absolute!important;
    top: 50%!important;
    left: 50%!important;
    transform: translate(-50%, -50%)!important;
    z-index: 1002!important;
    background-color: #fff!important;
    border-radius: 8px!important;
    margin: 0!important;
    min-width: 410px!important;
    border: 0px solid red;
    line-height: 1.5!important;
    color: #333;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
}

#inactive-hands-dialog-title {
    color: #fff!important;
    text-align: center!important;
    background-color: #97144d!important;
    margin-bottom: 20px;
    padding: 5px 10px!important;
    text-align: center!important;
    line-height: 1.2!important;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-size: 14px;
    font-family: lato;
    font-weight: bold;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

#inactive-hands-message-container p {
    padding: 0!important;
    margin: 15px!important;
    text-align: center!important;
    line-height: 1.2!important;
    color: #540024;
    font-weight: 700;
    font-size: 14px
}

#inactive-hands hr {
    padding: 0 !important;
    margin: 0 0 4px 0 !important;
    border: 1px solid silver !important;
    border-bottom: none !important;
    color: #333;
    line-height: 1.2 !important;
    height: 1px !important;
}

#inactive-hands-button-container {
    display: flex;
    justify-content: space-around;
    text-align: center!important;
    margin: 10px 0px 20px 0px!important;
    padding: 0!important;
    color: #333;
    line-height: 1.5 !important;
}

#inactive-hands-button-container button {
    width: 40%!important;
    border-radius: 4px!important;
    padding: 8px 0 6px!important;
    font-size: 14px;
    margin: 5px 25px!important;
    line-height: 1.2!important;
    color: #333;
    text-transform: uppercase;
    box-shadow: rgba(0, 0, 0, 0.45) 2px 2px 5px;
}

#inactive-hands-stay-logged-in-button {
    background-color: #97144d !important;
    color: #fff !important;
    border: 1px #97144d !important;
}

#inactive-hands-logout-button {
    background-color: #585c5f !important;
    color: #fff !important;
    border: 1px #585c5f !important;
}

#inactive-hands-time-remaining-label {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

#inactive-hands-time-remaining {
    color: red;
    font-size: 30px;
}
.wrapper {
    padding: 100px 50px;
    text-align: center;
}

#sessionModal .modal-header {
    background-color: #ff3648;
    padding: 0.5rem;
}

#sessionModal h5 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

#sessionModal .btn-close {
    opacity: 1;
    margin: 0rem 0rem 0rem auto;
}

#sessionModal p {
    font-weight: 500;
}

#sessionModal .modal-footer {
    justify-content: center;
    border-top: 0px solid #dee2e6;
}

#sessionModal .btn-primary {
    background-color: #00c851;
    border-color: #00be4c;
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
}

#sessionModal .btn-secondary {
    background-color: #585c5f;
    border-color: #555c61;
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
}

#sessionModal .modal-content {
    border: 0px solid rgba(0, 0, 0, .2);
    box-shadow: rgb(0 0 0 / 50%) 0px 5px 15px;
}

.base-timer {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto;
}

.base-timer__svg {
    transform: scaleX(-1);
}

.base-timer__circle {
    fill: none;
    stroke: none;
}

.base-timer__path-elapsed {
    stroke-width: 5px;
    stroke: grey;
}

.base-timer__path-remaining {
    stroke-width: 5px;
    stroke-linecap: round;
    transform: rotate(90deg);
    transform-origin: center;
    transition: 1s linear all;
    fill-rule: nonzero;
    stroke: currentColor;
}

.base-timer__path-remaining.green {
    color: rgb(65, 184, 131);
}

.base-timer__path-remaining.orange {
    color: orange;
}

.base-timer__path-remaining.red {
    color: rgb(151 20 77);
}

.base-timer__label {
    position: absolute;
    width: 110px;
    height: 110px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
}