html.noScrollbar,
body.noScrollbar {
    overflow: hidden !important;
}

.ddl__old_browser_popup,
.ddl__old_browser_popup * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.ddl__old_browser_popup {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    font-size: 16px;
    line-height: 20px;
    font-family: 'tesco_mr', Arial, Tahoma, Geneva, Helvetica, Verdana, Segoe Ui, sans-serif;
    text-align: center;
    overflow: auto;
}

.ddl__old_browser_popup.closed,
.ddl__old_browser_popup__switch:checked ~ .ddl__old_browser_popup {
    display: none;
}

.ddl__old_browser_popup .inner {
    display: block;
    width: 100%;
    max-width: 750px;
    padding: 20px 12px;
    background: #ffffff;
}

.ddl__old_browser_popup .popup_title {
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 32px;
}

.ddl__old_browser_popup .popup_text_1 .browser_type {
    font-weight: 700;
    font-style: italic;
}

.ddl__old_browser_popup .popup_text_2,
.ddl__old_browser_popup .popup_browsers_pretext {
    margin-bottom: 32px;
}

.ddl__old_browser_popup .popup_browsers_pretext {
    font-weight: 700;
}

.ddl__old_browser_popup .browsers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    width: 100%;
    max-width: 500px;
    padding: 0;
    margin: 0 auto 16px auto;
}

.ddl__old_browser_popup .browser {
    display: inline-block;
    width: 225px;
    margin-bottom: 16px;
    white-space: nowrap;
}

.ddl__old_browser_popup .browser a {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    text-decoration: none;
}

.ddl__old_browser_popup .browser a:hover {
    color: #00539f;
    text-decoration: underline;
}

.ddl__old_browser_popup .browser svg {
    width: 32px;
    height: 32px;
    flex-grow: 0;
    margin-right: 12px;
}

.ddl__old_browser_popup .browser.safari svg {
    width: 36px;
    height: 36px;
}

.ddl__old_browser_popup .browser span {
    display: block;
    width: calc(100% - 52px);
    text-align: left;
}

.ddl__old_browser_popup .close {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    background-color: #00539f;
    border: 0;
    padding: 12px 24px;
    min-width: 140px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ddl__old_browser_popup .close:hover {
    -webkit-box-shadow: 0 0 0 4px rgba(0, 83, 159, 0.4);
    -moz-box-shadow: 0 0 0 4px rgba(0, 83, 159, 0.4);
    box-shadow: 0 0 0 4px rgba(0, 83, 159, 0.4);
}

.ddl__old_browser_popup .close span {
    font-size: 16px;
    line-height: 20px;
    font-family: 'tesco_mr', Arial, Tahoma, Geneva, Helvetica, Verdana, Segoe Ui, sans-serif;
    color: #ffffff;
    text-decoration: none;
}

.ddl__old_browser_popup .close:hover span {
    text-decoration: underline;
}

@media (min-width: 756px) {
    .ddl__old_browser_popup {
        font-size: 20px;
        line-height: 24px;
    }
    
    .ddl__old_browser_popup .inner {
        padding: 40px 32px;
    }
    
    .ddl__old_browser_popup .popup_title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 48px;
    }
    
    .ddl__old_browser_popup .browsers {
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
    }
}