/* Gear Tooth Distortion Calculator - Style */

.submit.calculator { /* for all buttons */
	width:32%;
	margin-top:15px;
	padding-left:0;
	padding-right:0;
	text-align:center;
	min-width: 75px;
}

form.mid-pinch-form table tr th label {
    float: none;
    width: auto;
    padding-right: 0px;
}
form.mid-pinch-form table tr th {
    background-color: transparent; 
    border: none;
	border-width:0;
    text-align: right;
}

h2.aprgtd {
    margin: 20px 0 10px;
    padding-top: 10px;
   /* border-top: 1px solid #6EB43f; */
}

table.aprgtd-no-border{
    border: none !important;
	border-width:0;
    text-align: left;
	-webkit-box-shadow: 0px 0px 0px transparent;
}

table.aprgtd-no-border th, table.aprgtd-no-border td{
	text-align:right;
	border:none;
	border-width:0;
	background-color: transparent;
}

table.aprgtd-no-border th {
  text-transform: none;
  padding: 0 6px;
  border: transparent;
  width:50%;
}

table.aprgtd-no-border td {
    padding: 6px;
	border: none;
	/* border-width:0; */
}

table.aprgtd-no-border label {
    margin-bottom: 0px;
}

/*  Inputs & Outputs */

table.aprgtd-no-border.ins-outs th, table.aprgtd-no-border.ins-outs td{
	border:1px solid #6EB43f; /*#99c97c;*/
}

table.aprgtd-no-border.ins-outs th{
	text-align:right;
}

table.aprgtd-no-border.ins-outs td{
	text-align:right;
}

table.aprgtd-no-border.ins-outs caption {
    font-size: 16px;
    font-weight: 700;
    text-align:left;
	margin: 0px 0; 
    border-bottom: 1px solid #6EB43f;
    color: white;
    background-color: #666;
    padding-left: 6px;
}

table.aprgtd-no-border.ins-outs caption.guide  {
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    text-align: left;
    margin: 0px 0;
    border-bottom: 1px solid #6E6E6E;
    color: #fff;
    background-color: #666;
    padding-left: 6px;
}				   
table.aprgtd-no-border.ins-outs.center-pinch caption {
	text-align:center;
}
table.aprgtd-no-border.ins-outs.center-pinch th{
	text-align:right;
}
table.aprgtd-no-border.ins-outs.center-pinch td{
	text-align:left;
}

table.aprgtd-no-border.ins-outs tr.ref{
	background-color:#cccccc;
	font-style:italic;
}


.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color:  #6EB43F;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: .4s;
}

input:checked + .slider {
	background-color:  #6EB43F;
}

input:checked + .slider:before {
	transform: translateX(26px);
}

.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

.option-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.option-container span {
	padding: 0 10px;
	font-size: 18px;
}

.bold {
	font-weight: bold;
}

p.info {
	color: #3d698c;
    font-weight: 700;
	font-size: 16px;
	font-style: italic;
	margin-bottom:0px;
}
p.info + hr {
    margin: 10px 0px 10px 0px;
}

div a.aprgtd-btn {
	border-color: #0078AE;
    background-image: -ms-linear-gradient(top, #7FB8d8 0%, #0078AE 100%);
    background-image: -moz-linear-gradient(top, #7FB8d8 0%, #0078AE 100%);
    background-image: -o-linear-gradient(top, #7FB8d8 0%, #0078AE 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #3D698C), color-stop(1, #0078AE));
    background-image: -webkit-linear-gradient(top, #7FB8d8 0%, #0078AE 100%);
    background-image: linear-gradient(to bottom, #7FB8d8 0%, #0078AE 100%);
    padding: 5px;
    color: #ffffff !important;
    font-weight: bold;
    border-radius: 8px;
	display: inline-block;
    padding: 11px 24px 10px;
    text-decoration: none;
}

div a.aprgtd-btn:focus, div a.aprgtd-btn:hover {
	color: #fff !important;
	text-decoration:none;
	background-image: -ms-linear-gradient(bottom, #6EB43F 0%, #AAD28D 100%);
	background-image: -moz-linear-gradient(bottom, #6EB43F 0%, #AAD28D 100%);
	background-image: -o-linear-gradient(bottom, #6EB43F 0%, #AAD28D 100%);
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #6EB43F), color-stop(1, #AAD28D));
	background-image: -webkit-linear-gradient(bottom, #6EB43F 0%, #AAD28D 100%);
	background-image: linear-gradient(to top, #6EB43F 0%, #AAD28D 100%);
    border-color: #6EB43F;
}
/*
input[type="text"]{
    float: left;
}
*/

@media screen and (min-width<=585px) {
	input[type="text"]{
		float: right;
	}
}

/* Errors */

label.error {
    color: red;
}