/* Session Modal Styles */
.modal-content {
    border: 0 none;
    border-radius: 10px;
}

.modal-header {
    background-color: #0A3B5A;
    border-bottom: 0 none;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.modal-body {
    padding-bottom: 0;
}

@media (min-width: 1366px) {
    .modal-dialog {
        max-width: 37.5%;
    }
}

.modal-footer {
    border-top: none;
    padding-top: 0;
    padding-bottom: 3rem;
    justify-content: center;
}

/* Timer-related classes */
.timer-semi-container,
.timer-semi-circle {
    position: absolute;
    overflow: hidden;
    width: 40px;
    height: 80px;
}

.timer-container {
    width: 80px;
    height: 80px;
    -webkit-transform: translate(-50%, -50%);
    margin: auto;
    margin-top: 50px;
    margin-right: calc(-80px + 50%);
}

.timer-semi-container.right {
    left: 40px;
}

.timer-semi-container.left .timer-semi-circle {
    left: 40px;
}

.timer-semi-circle {
    -webkit-transform-origin: 0;
}

.timer-semi-circle::after {
    content: "";
    position: absolute;
    left: -40px;
    width: 80px;
    height: 80px;
    border: 10px solid #aaa;
    border-radius: 50%;
    -webkit-transition: border-color 0.2s linear;
}

.timer-semi-circle.highlighted::after {
    border-color: #f5c141;
}

.timer-semi-circle.highlighted.alert::after {
    border-color: #e74c3c;
}

.timer-semi-circle.mirrored {
    -webkit-transform: rotate(180deg);
}

.toast-header > .btn-close {
    padding-right: 20px;
}
