.popup {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: none;
}
.popup.is-active {
    display: block;
}
.popup__close {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 0;
}
.popup__content, .popup__table, .popup__content--addQuote, .popup__content--quote, .popup__small {
    position: fixed;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.popup__model {
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.popup__model .model {
    width: 100%;
    float: none;
    margin: 0;
    padding: 10px 0;
    z-index: 2;
}

.popup__model .model:before {
    content: '';
    width: 232px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #f0f2f7;
    z-index: -1;
}

.popup__model .label--model {
    width: 232px;
    background-color: #f0f2f7;
    padding-left: 20px;
}
.popup__model .js-select {
    margin-left: 6px;
}

.model {
    display: inline-block;
    width: 48%;
    padding: 27px 10px;
    float: right;
    margin-right: 50px;
}

.model__option {
    margin-bottom: 3px;
}

.model__graph {
    float: right;
}

.label--model {
    font-size: 12px;
    color: #000;
    font-size: 700;
    width: 120px;
    display: inline-block;
    letter-spacing: 0;
}

.label--model-result {
    margin: 20px 10px 0 20px;
    color: #575757;
    font-size: 12px;
}

.section__label--model {
    color: #535353;
}

.popup__header {
    background-color: #0079b7;
    height: 50px;
    line-height: 50px;
    padding: 0 24px;
    position: relative;
}

.popup__title {
    font-size: 20px;
    line-height: 50px;
    font-weight: 700;
    color: #fff;
}

.popup__title--big {
    font-size: 25px;
}

.popup__title--small {
    font-size: 12px;
    font-weight: 400;
}

.button--save {
    color: #0079b7;
    background-color: #fff;
    font-size: 11px;
    font-weight: 700;
    height: 28px;
    line-height: 28px;
    width: 87px;
    min-width: 87px;
    position: absolute;
    top: 11px;
    right: 24px;
}

.button--save:before {
    margin-right: 10px;
    width: 10px;
    height: 11px;
}

.fileinput {
    display: none;
}