[data-operator]::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 15px;
    vertical-align: middle;
    background-image: url(/themes/comewander2022/css/../img/icons/icon-operator-link.png);
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 4px;
    margin-right: 2px;
}

.modal {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    background-color: black;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: 50s;
    overflow: auto;
    transition: opacity 50ms ease-in;
}
.bp-modal {
    flex-direction: column;
    position: relative;
    width: 340px;
    max-width: calc(100vw - 5rem);
    margin: auto;
    padding: 50px 30px 25px 25px;
    background-color: var(--ohto-red);
    color: #fff;
}
.bp-modal a {
    position: relative;
    margin-bottom: 1.5rem;
    padding-left: 40px;
    font-family: var(--ohto-sans);
    font-size: 16px;
    color: #fff;
}
.bp-modal__links {
    width: fit-content;
    margin: auto;
}
.bp-modal__links a[data-operator-website]::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 4px;
    left: 4px;
    background-image: url(/themes/comewander2022/css/../img/icons/icon-external-link-white.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.bp-modal__links a[data-operator-added='false']::before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    top: 0;
    left: 0;
    background-image: url(/themes/comewander2022/css/../img/icons/icon-backpack-empty-white.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.bp-modal__links a[data-operator-added='true']::before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    top: 2px;
    left: 0;
    background-image: url(/themes/comewander2022/css/../img/icons/icon-backpack-full-white.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.bp-modal__links a[data-operator-added='true'] {
    text-decoration: none !important;
}

.modal-open { overflow: hidden; }
.is-hidden { display: none; }
.is-visuallyHidden { opacity: 0; }

.close {
    position: absolute;
    top: 12px;
    right: 12px;
    color: #fff;
    font-size: 36px;
}
.close:hover, .close:focus {
    opacity: 0.8;
    text-decoration: none;
    cursor: pointer;
}