
.banner-content > img {
    max-width: 100%;
}
#banner {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: calc(100% - 20px);
    max-width: 550px;
    height: fit-content;
    max-height: calc(100vh - 20px);
    background-color: #fff;
    border: 10px solid white;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    font-family: inherit;
}
.banner-content {
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    max-height: calc(100vh - 40px);
    overflow: auto;
    letter-spacing: 0.86;
}
#banner a.button-link {
    display: flex;
    align-items: stretch;
    width: fit-content;
    gap: 2px;
    margin-top: 20px;

}
#banner a.button-link .text{
    font-weight: bold;
    background-color: #AA9F8E;
    color: #545859;
    padding: 19.4px;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 20px;
    letter-spacing: 1.56px;
    text-transform: uppercase;
    line-height: 1;
    font-family: "Lora";
    font-weight: 700;
}
#banner a.button-link img{
    width: 15px;
    height: auto;
    margin-top:1px;
}
#banner a.button-link .image{
    transition: all 0.2s;
    padding: 2px 12px;
    aspect-ratio: 1;
    background-color: #AA9F8E;
    display: flex;
  align-items: center;
  width: auto;
}

#banner-head{
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: stretch;
    gap: 2px;
}
#banner-title {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #545859;
    font-weight: bold;
    letter-spacing: 3px;
    background-color: white;
    padding: 0 15px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}
#banner-close {
    border: none;
    padding: 0 11px;
    aspect-ratio: 1;
    background-color: white;
    color: #545859;
    cursor: pointer;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}
#banner-close img{
    width: 11px;
    height: auto;
}
.banner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
#banner .textcontent{
    padding: 20px 40px;
    text-align: left;
    letter-spacing: 0.86px;
}
#banner .textcontent h2{
    margin-bottom: 10px;
    /* font-size: 21px; */
    line-height: 1.2;
    font-family: inherit;
    font-weight: 400;
    letter-spacing: normal;
}

@media (max-width: 768px){
    #banner .textcontent{
        padding: 20px 20px;
    }
}

@media (max-width: 400px){
    #banner .textcontent {
        padding: 10px 10px;
    }
    #banner-title{
        padding: 0 10px;
        font-size: 1rem;
    }
}