.calc-wrapper {
    font-family: 'Arial', sans-serif;
}

.calc {
    width: 508px;
    /*height: 600px;*/
    min-height: 460px;
    border: 1px solid #AFADAE;
    border-radius: 5px;
    background-color: #F8F8F8;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.disabled {
    color: graytext;
    background: rgb(235, 235, 228);
}

label.title {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 18px;
    transform: scale(0.985);
}

.input-group {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    margin-top: 27px;
    width: 450px;
    align-items: center;
}

.input-group input[type="text"],
.input-group input[type="number"] {
    width: 100%;
    height: 41px;
    padding: 12px;
    margin-top: 13px;
    color: #969696;
    border: 1px solid #b5b5b6;
    border-radius: 3px;
    font-size: 16px;
}

.jcf-number {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 40px;
}

.jcf-number input {
    -moz-appearance: textfield;
}

.jcf-number input::-webkit-inner-spin-button,
.jcf-number input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.jcf-number input {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #777;
    padding: 3px 27px 3px 7px;
    margin: 0;
    height: 100%;
}

.jcf-number .jcf-btn-dec {
    position: absolute;
    background: #fff;
    border-radius: 4px 4px 0 0;
    width: 0;
    height: 0;
    top: 52%;
    left: 13px;
    text-align: center;
    cursor: pointer;
}

.jcf-number .jcf-btn-inc {
    position: absolute;
    background: #fff;
    border-radius: 4px 4px 0 0;
    width: 0;
    height: 0;
    top: 52%;
    right: 20px;
    text-align: center;
    cursor: pointer;
}

.jcf-number .jcf-btn-dec:hover,
.jcf-number .jcf-btn-inc:hover {
    background: #e6e6e6;
}

.jcf-number.jcf-disabled .jcf-btn-dec:hover,
.jcf-number.jcf-disabled .jcf-btn-inc:hover {
    background: #aaa;
}

.jcf-number input {
    border: 1px solid #fff;
    padding: 3px 19px 3px 7px;
    margin: 0;
    display: block;
    height: 100%;
    border-radius: 4px;
    background: rgba(255, 255, 255, .05);
    text-align: center;
    font-size: 15px;
    color: #fefefe;
    width: 51px;
}

select#city {
    width: 100%;
    height: 40px;
    padding: 9px;
    margin-top: 12px;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #b5b5b6;
    font-size: 16px;
    color: #969696;
}

.jcf-checkbox {
    vertical-align: top;
    display: inline-block;
    position: relative;
    cursor: default;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #b5b5b6;
    margin: 0 8px 0 0;
    height: 28px;
    width: 28px;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}

:root .jcf-checkbox span {
    margin: -4px 0 0 -5px;
}

.jcf-checkbox.jcf-checked span {
    display: block;
}

.jcf-checkbox span {
    position: absolute;
    height: 6px;
    width: 6px;
    top: 45%;
    left: 50%;
    margin: -7px 0 0 -6px;
    border: 1px solid #3D3D3D;
    border-width: 2px 2px 2px 2px;
    display: none;
    background-color: #3D3D3D;
}

.jcf-number {
    display: inline-block;
    vertical-align: top;
    position: relative;
    height: 40px;
    border-radius: 4px;
}

.jcf-number .jcf-btn-dec:before {
    content: "\u2329";
    display: inline-block;
    vertical-align: top;
    font-size: 0;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border: 4px solid #aaa;
    border-color: transparent transparent #000 transparent;
    width: 0;
    height: 0;
    /*top: 50%;*/
    /*left: 50%;*/
    margin: 8px 0 0 0;
    transform: rotate(-90deg);
}

.jcf-number .jcf-btn-inc:before {
    content: "\u2329";
    display: inline-block;
    vertical-align: top;
    /* width: 100%; */
    /* height: 3px; */
    font-size: 0;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border: 4px solid #aaa;
    border-color: transparent transparent #000 transparent;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    margin: 8px 0 0 0;
    transform: rotate(90deg);
}

.jcf-number input {
    border: 1px solid #fff;
    padding: 3px 19px 3px 7px;
    margin: 0;
    display: block;
    height: 100%;
    border-radius: 4px;
    background: rgba(255, 255, 255, .05);
    text-align: center;
    font-size: 15px;
    color: #fefefe;
    width: 51px;
}

#keff-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    margin-top: 29px;
    width: 450px;
    align-items: center;
}

#keff-wrapper input {
    width: 100%;
    height: 41px;
    padding: 12px;
    margin-top: 13px;
    color: #969696;
    border: 1px solid #b5b5b6;
    border-radius: 3px;
    font-size: 16px;
}

#keff {
    text-align: center

}

#calc {
    width: 100%;
    height: 40px;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #FFD300 0%, #F0A400 100%);
    border: 1px solid #A4811C;
    border-radius: 5px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 22px;
}

/*.checkbox-wrapper {*/
/*margin: 24px 30px;*/
/*}*/

.set-location {
    margin-left: 30px;
    margin-top: 20px;
    display:none;
}

.set-location label {
    line-height: 30px;
}

.add-params {
    margin-left: 30px;
    margin-top: 10px;
}

.add-params label {
    line-height: 30px;
}

.jcf-select {
    display: block;
    position: relative;
    border: 1px solid #B5B5B6;
    /* margin: 0 0 30px; */
    margin-top: 10px;
    text-align: left;
    width: 100%;
    border-radius: 3px;
    height: 40px;
    background: rgba(255, 255, 255, .05);
    cursor: default;
    display:none;
}

.jcf-select .jcf-select-text {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    font-size: 16px;
    color: #969696;
    line-height: 40px;
    font-weight: 500;
    margin: 0 35px 0 14px;

}

.jcf-unselectable {
    display:none;    
}
.jcf-select .jcf-select-opener {
    position: absolute;
    text-align: center;
    width: 43px;
    bottom: 0;
    right: 0;
    top: 0;
}

.jcf-select:before {
    content: "";
    position: absolute;
    top: 18px;
    right: 18px;
    border-style: solid;
    border-width: 6px 5px;
    border-color: #000 transparent transparent;
}

.canvas-wrapper,
.summary-wrapper {
    font-family: 'Arial', sans-serif;
}

.canvas-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 70%;
}

.canvas-wrapper-chart {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 85%;
    font-family: 'Arial', sans-serif;
}

.summary-wrapper {
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.print-button {
    flex: 1 0 50%;
    text-align: center;
}

#print {
    width: 150px;
    height: 40px;
    cursor: pointer;
    margin-top: 10px;
}

.summary-chart {
    margin-top: 50px;
    height: 300px;
    padding-bottom: 40px;
    width: 50%;
}

.left-axis-title {
    transform: translateX(25%) rotate(-90deg);
}

.right-axis-title {
    transform: translateX(-25%) rotate(90deg);
    margin-right: 50px;
}

.jcf-checkbox {
    vertical-align: top;
    display: inline-block;
    position: relative;
    cursor: default;
    background: #fff;
    border-radius: 2px;
    border: 1px solid #b5b5b6;
    margin: 0 12px 0 0;
    height: 26px;
    width: 26px;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}

:root .jcf-checkbox span {
    margin: -4px 0 0 -5px;
}

.jcf-checkbox.jcf-checked span {
    display: block;
}

.jcf-checkbox span {
    position: absolute;
    height: 6px;
    width: 6px;
    top: 45%;
    left: 50%;
    margin: -7px 0 0 -6px;
    border: 1px solid #3D3D3D;
    border-width: 2px 2px 2px 2px;
    display: none;
    background-color: #3D3D3D;
}

.latid {
    display:none !important;
}
.lonid {
    display:none !important;
}

#legend {
    margin-top: 108px;
}

#legend ul li {
    list-style-type: none;
    padding: 5px;
}

#legend ul li p {
    margin: 5px;
    vertical-align: top;
    display: inline-block;
}

.hint {
    margin: 15px auto 5px;
    text-align: center;
    font-family: 'Arial';
}

#data {
    background: url('../img/220-on.png') 97% 0 repeat-x;
    background-size: 22%;
}

#modal {
    position: absolute;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 14px;
    padding: 8px;
    z-index: 999;
}

#content {
    border-radius: 8px;
    background: #fff;
    padding: 20px;
}

#close {
    position: absolute;
    background: url('../img/sprite.png') 0 0 no-repeat;
    width: 32px;
    height: 35px;
    display: block;
    text-indent: -9999px;
    top: -10px;
    right: -10px;
}

.jcf-unselectable
{
display:none !important;
}

#city-styler
{
	width:100%;
}

.jq-selectbox__select
{
background:white;
}

#additional-params-styler
{
background:white;
}