﻿#mod_calc_a {
	max-width: 640px;
	margin: 20px auto;
}

.calcSectionFlex {
	position: relative;
	max-width: 600px;
	margin: 0 auto;
}

.text1 { text-align: center; margin-bottom: 25px; }

.calcSectionFlex2, .calcSectionFlex3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.calcSectionFlex2 .text2 {
	display: block;
	width: 100%;
	text-align: center;
	margin-bottom: 25px;
}

.calcSectionFlex2 .flexCol {
	position: relative;
	height: 50px;
	min-width: 55px;
	text-align: center;
}

/* input Radio */
.calcSectionFlex2 label {
	margin: 0px auto;
	padding: 0px;
	font-size: 14px;
	line-height: 16px;
	width: 25px;
	height: 25px;
}

.calcRadioInput {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.calcRadioInput input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.calcRadioInputMark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border: 1px #913030 solid;
  border-radius: 50%;
}

.calcRadioInput:hover input ~ .calcRadioInputMark {
  background-color: #913030;
}

.calcRadioInput input:checked ~ .calcRadioInputMark {
  background-color: #913030;
}

.calcRadioInputMark:after {
  content: "";
  position: absolute;
  display: none;
}

.calcRadioInput input:checked ~ .calcRadioInputMark:after {
  display: block;
}

.calcRadioInput .calcRadioInputMark:after {
  top: 8px;
  left: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
/* END: input Radio */

.calcSectionFlex3 .flexCol {
	margin-bottom: 25px;
	max-width: 211px;
}

.wrapValueA, .wrapValueB, .wrapValueC {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 10px;
}

.valueA, .valueB, .valueC {
	display: block;
	width: 150px;
	height: 32px;
	border-radius: 16px;
	line-height: 32px;
	text-align: center;
	font-size: 16px;
}
.currencyValA, .currencyValB, .currencyValC {
	display: block;
	width: 32px;
	height: 32px;
	border: 1px transparent solid;
	line-height: 32px;
	padding-left: 5px;
}
.valueA {
	border: 1px #ccc solid;
}
.valueB {
	background: #f14833;
	border: 1px #f14833 solid;
	color: #fff;
}

.valueC {
	background: #913030;
	border: 1px #913030 solid;
	color: #fff;
}
.flexCol .text3, .flexCol .text4, .flexCol .text5 {
	display: block;
	width: 152px;
/*	padding-right: 39px; */
	padding-left: 10px;
	text-align: center;
}

.startIndex, .endIndex {
	position: absolute;
	bottom: 0px;
	color: #999;
}

.endIndex {
	right: 0px;
}

/* UI Slider CSS */
.ui-widget.ui-widget-content {
	border: 1px solid #913030;
	background: #ffffff;
	color: #333333;
    font-family: Arial,sans-serif;
    font-size: 1.1em;
	height: .8em;
	position: relative;
	text-align: left;
	border-radius: 6px;
}

.ui-slider-range {
    top: 0;
    left: -2px;
    height: 100%;
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background: #913030;
	border-radius: 6px;
}

.ui-slider-handle {
    border-radius: 50%;
    cursor: pointer;
	border: 1px solid #913030;
	background: #913030;
	font-weight: bold;
	color: #004276;
	top: -7px;
	margin-left: -7px;
	position: absolute;
	z-index: 2;
	width: 24px;
	height: 24px;
	outline: none;
}

#calcArangeSlider {
	margin: 10px 0;
}

#calcArangeResult { text-align: center; }
/* END: UI Slider CSS */

.minRangePrice, .maxRangePrice {
	display: block;
	position: absolute;
	font-weight: 300;
	color: #913030;
	width: 24px;
	height: 24px;
	top: -5px;
}
.minRangePrice {
	left: -5px;
	background: url('money_1.png') 0 0 no-repeat;
}
.maxRangePrice {
	right: -15px;
	background: url('money_3.png') 0 0 no-repeat;
}

@media screen and (max-width: 330px) {
	.startIndex, .endIndex {
		bottom: 17px;
	}
	.text1 {
	    text-align: center;
	    margin-bottom: 25px;
	    margin-top: 25px;
	}
}