﻿.locker-content-container {
    margin: 25px 25px 0 25px;
    display: flex;
}

.locker-title-and-child-container {
    display: flex;
    flex-direction: column;
    margin: auto;
    max-width: 600px;
    min-width: 400px;
    width: 100%;
}

.locker-title {
    text-align: center;
    font-size: 36px;
    color: var(--page-accent-color);
    border-top: 5px solid var(--page-accent-color);
    font-style: italic;
    font-weight: bolder;
    margin-bottom: 10px;
    display: block;
    width: 100%;
}

.details-grid-container {
    display: grid;
    grid-template-columns: auto 1fr;
}

    .details-grid-container span {
        font-size: 1rem;
    }

        .details-grid-container span:nth-child(even) {
            padding-bottom: 20px;
        }

        .details-grid-container span:nth-child(odd) {
            color: var(--page-accent-color);
            font-weight: bolder;
            padding-right: 20px;
        }

        .details-grid-container.no-collapse span:nth-child(even) {
            display: flex;
            justify-content: end;
        }

.allow-new-line {
    white-space: pre-line
}

.locker-subheading {
    margin: 15px auto 15px auto;
    font-size: 24px;
}

.top-border {
    border-top: 1px solid white;
    padding-top: 20px;
}

@media (max-width: 576px) {
    .details-grid-container:not(.no-collapse) {
        grid-template-columns: 1fr;
    }

    .locker-title-and-child-container {
        width: 100%;
        min-width: 0px;
    }

    .locker-title {
        font-size: 24px;
    }

    .details-grid-container span {
        font-size: 0.75rem;
    }

        .details-grid-container span:nth-child(even) {
            padding-bottom: 15px;
        }

    .locker-subheading {
        margin: 10px auto 10px auto;
        font-size: 16px;
    }

    .top-border {
        padding-top: 15px;
    }
}

#AcceptUIContainer {
    text-align: center !important;
    left: 0 !important;
    right: 0 !important;
    margin: auto !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 90% !important;
    max-width: 750px !important;
    border-radius: 20px !important;
}
