.modals-wrapper{
    margin:0px;
    padding: 0px;
    backdrop-filter: blur(8px);
}
.modals-wrapper{
    padding: 40px 10px;
}
.block_more_info{
    max-width: 800px;

    margin: 0px auto;
    background: #fff;
    font-family: Arial;
    padding: 20px 40px 40px 40px;
    border: 1px solid #DADADA;
    line-height: 20px;
}
.block_more_info h1{
    color: #3B6A7C;
    margin-bottom: 30px;
    text-align: center;
}
.s1{
    font-style: italic;
    text-align: center;
    margin: 40px 0 0 0;
    font-weight: bold;
}

.back-to-store{
    position: fixed;
    bottom: 50px;
    right: 2em;
    text-decoration: none;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    padding: 1em;
    cursor:pointer;
}
.modals-wrapper a.back-to-store:hover{text-decoration:none;color:white;background-color: rgba(0, 0, 0, 0.8);}
.modals-wrapper ol li{margin-bottom:7px;padding-left:5px;}
.modals-wrapper h2{margin-top:30px;margin-bottom:30px; line-height: 120%}
.t-and-c-text{font-weight:bold;font-style:italic;padding-left:43px;margin-bottom:30px;font-size:14px;}
.sub-h2-text{text-align:center;font-size:16px;}
@media screen and (max-width: 540px){
    .block_more_info{
        padding:0 10px;

    }
    .modals-wrapper{
        padding-bottom:40px;
        font-size: 14px;
    }
    .modals-wrapper h2{font-size: 18px;}
    .block_more_info h1{
        font-size: 20px;
    }
}
@media(max-width: 1190px){
    .back-to-store{
        bottom:4px;
        padding: 10px;
    }
}

.modals-wrapper h2 {
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}

.modals-wrapper h1 {
    display: block;
    font-size: 2em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    line-height: 1.2em;
}


body {
    position: relative;
}

.modals-wrapper {
    position: absolute;
    width: 100%;
    box-sizing: border-box;
    z-index: 401;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transform: translateY(-100px);
    overflow: hidden;
    max-height: 0;
    transition: opacity .3s;
}
.modals-wrapper.active {
    opacity: 1;
    min-height: 100%;
    max-height: 100%;
    transform: translateY(0);
}

.pr-modal {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    position: relative;
    padding: 0 20px 50px;
    display: none;
    opacity: 0;
    transition: .3s;
}
.pr-modal.active {
    display: block;
    opacity: 1;
}

.pr-modal::-webkit-scrollbar {
    width: 4px;
}

.pr-modal::-webkit-scrollbar-track {
    background: transparent;
}

.pr-modal::-webkit-scrollbar-thumb {
    background-color: #87acc7;
}

body.modal-active {
    display: block;
    max-height: 100vh;
    overflow: hidden;
}


.close-pr-modal {
    position: sticky;
    left: auto;
    margin-left: auto;
    transform: translatex(10px);
    top: 5px;
    background: rgba(255, 255, 255, 0.87);
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

@media(max-width: 800px) {
    .modals-wrapper{
        padding: 10px 10px;
    }
    .pr-modal {
        max-height: calc(100vh - 20px);
        overflow-y: auto;
        position: relative;
    }
}