body.rhododendron-body-with-popup {
    overflow: hidden;
}

.rhododendron-popup {
    position: fixed;
    top: 5vh;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    max-width: 660px;
    max-height: 356px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial;
    background-color: #fff;
    -webkit-box-shadow: 0 0 28px rgba(0, 0, 0, 0.15), 0 5px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 28px rgba(0, 0, 0, 0.15), 0 5px 20px rgba(0, 0, 0, 0.1);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 99999999999;
}

.rhododendron-popup *,
.rhododendron-popup *::before,
.rhododendron-popup *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.rhododendron-popup * {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    color: #000;
    vertical-align: baseline;
    line-height: 1;
}

.rhododendron-popup__title {
    font-size: 26px;
    font-weight: bold;
    font-family: Arial;
    text-align: center;
    margin-bottom: 20px;
}

.rhododendron-popup__content {
    position: relative;
    width: 100%;
    max-height: 210px;
    margin-bottom: 20px;
    padding: 15px;
    font-size: 13px;
    line-height: 1.5;
    border: 1px solid #aaa;
    overflow-y: scroll;
}

.rhododendron-popup__content b {
    font-weight: bold;
}

.rhododendron-popup__content i {
    font-style: italic;
}

.rhododendron-popup__content a {
    color: #0e3e49;
    text-decoration: underline;
    -webkit-transition: .1s all ease-in-out;
    -o-transition: .1s all ease-in-out;
    transition: .1s all ease-in-out;
}

.rhododendron-popup__content a:hover {
    color: #d21e05;
}

.rhododendron-popup__content p {
    font-weight: normal;
    margin-bottom: 10px;
    line-height: 1.5;
}

.rhododendron-popup__content p:last-child {
    margin-bottom: 0;
}

.rhododendron-popup__buttons-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.rhododendron-popup__button {
    /* reset styles */
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
    text-decoration: none;

    /* styles */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: .75em 1.5em;
    font-family: Arial;
    -webkit-transition: .1s all ease-in-out;
    -o-transition: .1s all ease-in-out;
    transition: .1s all ease-in-out;
}

.rhododendron-popup__button:first-child {
    margin-right: 20px;
}

.rhododendron-popup__button--agree {
    font-weight: bold;
    color: #fff;
    background-color: #d21e05;
}

.rhododendron-popup__button--agree:hover {
    background-color: #eb1e05;
}

.rhododendron-popup__button--advanced {
    font-weight: normal;
    color: #d21e05;
    background-color: #fff;
    border: 1px solid #d21e05;
    text-align: center;
}

.rhododendron-popup__button--advanced:hover {
    background-color: #d3d3d3;
}

.rhododendron-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .5);
    z-index: 9999999999;
}

@media screen and (max-width: 660px) {
    .rhododendron-popup__button {
        width: 50%;
    }
}

@media screen and (max-height: 356px) {
    .rhododendron-popup {
        top: 0;
    }
}
