.amb-popup {
    width: 100%;
    height: 100%;

    display: none;
    background-color: rgb(0,0,0,0.8);
    
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999999;
}
div.amb-popup__container {
    width: 90%;
    max-width: 720px;
    max-height: 90vh;
   
    overflow: hidden;
    background-color: #fff;
    display: flex;
    flex-direction: column;
   
    position: absolute;
    top: 50%;
    left: 50%;
   
    transform: translate(-50%, -50%);
}
.amb-popup__title {
    color: #c5ab63;
    font-weight: 200;
    font-size: 1.8rem;
    text-align: center;
    box-sizing: border-box;
    background-color: #2b3c4b;
    text-transform: uppercase;
    
    padding: 25px 55px 25px 20px;
}
.amb-popup__content {
    overflow: auto;
    box-sizing: border-box;
    
    padding: 0 0 20px;
}
.amb-popup__image {
    width: 100%;
    max-height: 500px;
    
    display: block;
    object-fit: cover;
    
    margin-bottom: 20px;
}
.amb-popup__text-content {
    width: 80%;

    color: #282828;
    text-align: center;
    
    margin: 25px auto 20px;
}
/*.amb-popup__text-content * {
    font-weight: 700;
}
.amb-popup__text-content p {
    line-height: 2;
}
.button.amb-popup__button {
    color: #fff;
    font-weight: 800;
    background-color: #1b1b1b;

    padding: 20px 15px;
}
.button.amb-popup__button:hover {
    color: #1b1b1b;
    background-color: #fff;
}*/
.amb-popup__close-cross {
    color: #fff;
    cursor: pointer;
    font-size: 45px;
    font-weight: 400;
    line-height: 31px;
    
    position: absolute;
    top: 20px;
    right: 20px;
}