
.fokus_button {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 100000;
    background: #fff;
    border-radius: 10rem;
    border: .0625rem solid #ddd;
    color: #435a6b;
    padding: .5rem;
    width: 3rem;
    height: 3rem;
    outline: 0;
    -webkit-transition: all .2s;
    cursor: pointer;
    transition: all .2s;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.fokus_button:hover {
    background: #435a6b;
    color: #fff;
}
.fokus_wrapper {
    position: fixed;
    z-index: 100000;
    bottom: 2rem;
    left: 1rem;
    right: 1rem;
}
.fokus_modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100001;
    background-color: rgba(21,28,33,.9);
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 1rem;
    -webkit-transition: all .2s;
    transition: all .2s;
    padding: 1rem;
    display: none;
}
.fokus_modal_content {
    margin: 2rem auto 2rem;
    max-width: 44rem;
    background: #fff;
    padding: 1rem 2rem 2rem;
    border-radius: .1875rem;
    position: relative;
}
.fokus_modal_icon {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    margin-top: -1rem;
    margin-bottom: -2rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.fokus_modal_icon_inner {
    border-radius: 10rem;
    padding: 1rem;
    width: 4rem;
    height: 4rem;
    background-color: #fff;
    color: #435a6b;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.fokus_modal_close {
    border: 0;
    background: 0 0;
    color: #666;
    position: absolute;
    right: 0;
    top: 0;
    outline: 0;
    cursor: pointer;
    padding: 1rem;
    -webkit-transition: all .2s;
    transition: all .2s;
}
.inner_modal_content {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
#fokus_modal_iframe {
    min-width: 100%;
    border: none;
    height: 100%;
}