body {
    background-color: #fff !important;
}

.shutdown-modal {
    position: relative;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    overflow: auto;
}

.shutdown-content {
    background: #fff;
    color: #000 !important;
    padding-bottom: 2%;
    padding-top: 7%;
    display: flex;
    gap: 6%;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.shutdown-content-left {
    display: flex;
    width: auto;
    max-width: 50%;
    height: 35rem;
    object-fit: cover;
    justify-content: center;
}

.shutdown-content-right {
    max-width: 50%;
    flex: 1;
}

.shutdown-header {
    color: #000 !important;
    padding: 0;
}

.shutdown-text {
    color: #000 !important;
    padding: 0;
    margin-bottom: 0 !important;
    padding-right: 10%;
}

.shutdown-link {
    color: #337ab7 !important;
    font-weight: normal !important;
    padding: 0;
}

.shutdown-list {
    color: #000 !important;
    padding-right: 5%;
}

#shutdownLogo {
    position: fixed;
    height: 45px;
    top: 2.5rem;
    left: 2%;
}

#shutdownTitle {
    line-height: 1.5;
    font-size: 3rem;
    margin-top: 0;
    padding-right: 5%;
    font-weight: 400 !important;
}

@media (max-width: 1240px) {
    .shutdown-content {
        flex-direction: column;
        overflow: visible;
        padding-top: 3%;
    }

    .shutdown-content-left {
        display: none;
    }

    .shutdown-content-right {
        width: 100%;
        max-width: 100%;
        padding-left: 5%;
    }

    #shutdownLogo {
        position: relative;
        left: -0.5%;
        top: 0;
    }

    #shutdownTitle {
        padding-top: 3%;
    }
}