.calculator__params {
    display: flex;
    flex-flow: row wrap;
}
.calculator__params__item {
    flex: 1;
    padding: 10px;
}
.calculator__params__item--users .calculator__params__inner {
    background-color: #050b30;
    box-sizing: border-box;
}

.calculator__params__inner {
    padding: 40px;
}
.calculator__params__item--users h3 {
    color: #2dcbf5;
    text-align: center;
    font-size: 36px;
    margin: 0 0 10px;
    line-height: 44px;
}
.calculator__spin {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: center;
}
.calculator__spin__btn {
    cursor: pointer;
    height: 30px;
    background-color: #fff;
    border-radius: 25px;
    position: relative;
    width: 42px;
}
.calculator__spin__btn--dec:before {
    content: "\f056";
}
.calculator__spin__btn--inc:before {
    content: "\f055";
}
.calculator__spin__btn:before {
    font-family: FontAwesome;
    font-size: 49px;
    color: #ff7900;
    transition: color .5s;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.calculator__spin__value {
    font-size: 150px;
    font-family: Open Sans,sans-serif;
    font-weight: 900;
    color: #2dcbf5;
    line-height: .8;
}
.calculator__params__item--lines .calculator__params__inner {
    background-color: #2dcbf5;
    box-sizing: border-box;
}
.calculator__params__item--lines h3 {
    color: #050b30;
    text-align: center;
    font-size: 36px;
    line-height: 44px;
    margin: 0 0 10px;
}
.has-tip {
    position: relative;
    display: inline-block;
    border-bottom: none;
    font-weight: 700;
    cursor: help;
}
.calculator__params__help img {
    width: 27px;
    height: 27px;
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
}
.calculator__spin__value#nb_chan {
    color: #050b30;
}
.calculator__params__item--price .calculator__params__inner {
    background-color: #ff7900;
    box-sizing: border-box;
}
.calculator__params__item--price h3 {
    color: #fff;
    text-align: center;
    font-size: 36px;
    margin: 0 0 10px;
    line-height: 44px;
}
.calculator__params__price-label--smaller.dark {
    color: #050b30;
    font-size: 28px;
    text-align: center;
    font-weight: 700;
    line-height: .9;
    margin: 0;
}
.calculator__params__price {
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
    color: #050b30;
    text-align: center;
}
.calculator__params__price-label--smaller {
    color: #fff;
    font-size: 28px;
    margin-top: 30px;
    text-align: center;
    font-weight: 700;
    line-height: .9;
}
.calculator__params__price--smaller {
    font-size: 60px;
    color: #fff;
    font-weight: 900;
    text-align: center;
}
.calculator__options {
    margin: 30px auto 20px;
    padding: 10px;
}
.title-h3_inner {
    color: #050b30;
}
.title-h3_inner {
    font-size: 24px;
    padding: 0;
    margin: 0 0 30px;
}
.calculator__options__list {
    margin-bottom: 20px;
}

.calculator__options__list, .w-full {
    width: 100%;
}
.calculator__options__item {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin-bottom: 20px;
}
.calculator__options__option {
    flex: 1;
    margin-right: 20px;
}
.calculator__options_select {
    width: 100%;
    height: 40px;
    line-height: 40px;
    box-sizing: border-box;
    padding: 0 15px;
    border: 1px solid #626262;
    color: #050b30;
    font-size: 18px;
    outline: none;
}
.calculator__options__qty {
    margin-right: 20px;
}
.calculator__options__qty .calculator__options_select {
    width: 315px;
}
.calculator__options__remove.fa-minus {
    color: #fff;
    padding: 0 15px;
}
.calculator__options__add {
    padding: 0 25px;
    text-transform: uppercase;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
}
.calculator__options__add, .calculator__options__remove {
    height: 40px;
    text-align: center;
    background-color: #ff7900;
    outline: none;
    border: 1px solid #fff;
    cursor: pointer;
}
[data-tooltip]:not([data-tooltip-persistent]):before {
    pointer-events: none;
}
[data-tooltip]:before {
    position: absolute;
    content: attr(data-tooltip);
    opacity: 0;
    transition: all .15s ease;
    padding: 15px;
    color: #050b30;
    border-radius: 4px;
    font-family: Open Sans,sans-serif;
    font-size: 1rem;
    line-height: normal;
    font-weight: 400;
    width: 200px;
    background: #fff;
    margin-top: 40px;
    margin-left: 5px;
    z-index: 2;
    -webkit-box-shadow: 0 0 40px 0 rgb(0 0 0 / 25%);
    box-shadow: 0 0 40px 0 rgb(0 0 0 / 25%);
}
[data-tooltip]:hover:before {
    opacity: 1;
}
#originals{
    display: none;
}

@media (max-width: 768px){
	.calculator__options__option, .calculator__options__qty {
		margin-right: 10px;
		width: 40%;
		float: left;
	}
	.calculator__options__qty .calculator__options_select {
    width: 100%;
}
}
