
.popup {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    overflow: hidden;
    background: rgba(0,0,0,.2);
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #3f3d56;
}

.popup p {
    margin: 16px auto;
}

.popup__wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 100%;
    overflow-y: auto;
    padding: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.popup__content {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 48px 24px 24px;
    background: #fff;
    border-radius: 4px;
    margin: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.popup__close {
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    background: url(/images/close-icon.svg) no-repeat center center;
}

.popup--active {
    display: block;
}

@media screen and (min-width:768px) {
    .popup__content {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 400px;
        -ms-flex: 0 0 400px;
        flex: 0 0 400px;
    }
}
.button {
    outline: 0;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 13px 11px;
    margin: 0 0 2px 0;
    width: auto;
    height: auto;
    color: transparent;
    background-color: transparent;
    border-radius: 28px;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
    line-height: 14px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 1;
}
.button--normal {
    font-size: 16px;
    line-height: 1;
    padding: 11px 22px;
    margin: 0;
    margin-bottom: 0px;
}

.button--green {
    color: #fff !important;
    border-color: transparent !important;
    color: #fff;
    background-color: #00C71B;
}