.details-modal {
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    left: 50%;
    max-width: 800px;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.details-modal .details-modal-close {
    align-items: center;
    color: #111827;
    display: flex;
    height: 40px;
    justify-content: center;
    pointer-events: none;
    position: absolute;
    right: -13px;
    top: -16px;
    width: 40px;
    background: #fff;
    border-radius: 100%;
}

.details-modal .details-modal-close svg {
    display: block;
    height: 11px;
}

.details-modal .details-modal-title {
    color: #111827;
    padding: 0;
    pointer-events: all;
    position: relative;
    width: calc(100% - 4.5em);
}

.details-modal .details-modal-title h1 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: normal;
    display: none;
}

.details-modal .details-modal-content {
    border-top: none;
    padding: 0;
    pointer-events: all;
    overflow: auto;
}

.details-modal-overlay {
    transition: opacity 0.2s ease-out;
    pointer-events: none;
    background: #000;
    position: fixed;
    opacity: 0;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
}

details[open] {height: 100vh;position: fixed;width: 100%;z-index: 300;}

details[open] .details-modal-overlay {
    pointer-events: all;
    opacity: 0.8;
}

details summary {
    list-style: none;
}

details summary:focus {
    outline: none;
}

details summary::-webkit-details-marker {
    display: none;
}
.pop-up-link {
    left: 50%;
    position: absolute;
    top: 52%;
    transform: translate(-50%, -50%);
    background: transparent;
    z-index: 99999999;
    display: flex;
    width: 85%;
    justify-content: space-between;
}

.link {
    height: 200px;
    width: 100%;
    =: 100%;
    position: relative;
}

.link a {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}