.shutdown-modal {
    display: none;
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.shutdown-content {
    background: #fff;
    color: #000 !important;
    max-width: 90%;
    border-radius: 4px;
    padding-left: 5%;
    padding-right: 7%;
    padding-bottom: 2%;
    padding-top: 3%;
    display: flex;
    gap: 6%;
    align-items: center;
    height: fit-content;
    transform: scale(0.9);
}

.shutdown-content-left {
    display: flex;
    width: auto;
    max-width: 35%;
    height: auto;
    object-fit: cover;
    justify-content: center;
}

.shutdown-content-right {
    width: 65%;
    flex: 1;
}

.shutdown-header {
    color: #000 !important;
    padding: 0;
}

.shutdown-text {
    color: #000 !important;
    padding: 0;
    margin-bottom: 0 !important;
}

.shutdown-link {
    color: #337ab7 !important;
    font-weight: normal !important;
    padding: 0;
}

.shutdown-list {
    color: #000 !important;
}

#shutdownLogo {
    position: fixed;
    height: 35px;
    top: 2.5rem;
    left: 2%;
}

#shutdownBtn {
    position: absolute;
    z-index: 9999 !important;
    color: black !important;
    top: 2%;
    right: 1%;
    font-size: 3rem;
    cursor: pointer;
    height: 36px;
    width: 36px;
}

#shutdownTitle {
    line-height: 1.5;
    font-size: 3rem;
    margin-top: 0;
}

@media (max-width: 1240px) {
    .shutdown-content {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }

    .shutdown-content-left {
        display: none;
    }

    .shutdown-content-right {
        width: 100%;
    }

    #shutdownLogo {
        position: relative;
        left: -0.5%;
        top: 0;
    }
}