.lam-modal {
    position: fixed;
    //inset: 0;
    z-index: 99999;
    display: none;
    width: 100%;
    height: 300px;
    bottom: 0px;
}

.lam-modal--visible {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lam-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.lam-modal__box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    max-height: 85vh;
    overflow-y: auto;
    background: #fff;
    color: #111;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.lam-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: 0;
    background: transparent;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.lam-modal__title {
    margin: 0 0 16px;
}

.lam-modal__content {
    margin-bottom: 24px;
}

.lam-modal__content h1{
    color: #e55126;
    font-size: 20px;
    font-weight: bold;
}

.lam-modal__content h2{
    color: #000;
    font-size: 18px;
    font-weight: bold;
}

.lam-modal__content p{}


.lam-modal__actions {
    margin: 0;
}

.lam-modal__button {
    display: inline-block;
    padding: 12px 20px;
    background: #cc441f;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
}

.lam-modal__button:hover {
    color: #fff;
}