/* @override https://northernlabels.co.uk/calculator/css/style.css */

/*
PIE
behavior: url(../pie/PIE.htc);
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

html {
  font-family: "MuseoSansCyrl","Arial","Helvetica",sans-serif;
  font-size: 16px;
}

body {
  background: #fff;
}

* {
  box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}

.clearfix {
  clear: both;
}

.container {
  max-width: 1000px;
  width:100%;
  position: relative;
  margin:0;
}

.calculator-wrap {
/*  display: table;*/
}

.calculator-data {
  display: table-cell;
  width: 49%;
	float: left;
}

.calculator-img {
  display: table-cell;
  width: 37%;
}

.calculator-img img {
  width: 430px;
	float: right;
}

.calculator-result {
  display: table-cell;
  width: 10%;
}
.calculator-result .result-block {
  position: relative;
  top: -60px;
  left: 10px;
}
.calculator-result p {
  display: inline-block;
  margin-left: 7px;
}

.vertical-top {
  vertical-align: top;
}

.vertical-middle {
  vertical-align: middle;
}

.parameter-line td {
  vertical-align: inherit;
  padding: 5px 0;
}
.parameter-line td:first-child {
  text-align: right;
}
.parameter-line input[type="text"] {
  margin: 0 5px 0 10px;
}
.parameter-line sub {
  display: inline-block;
  clear: both;
  font-size: 10px;
  color: #00b0f2;
  position: relative;
  top: -4px;
}

.submit-line td {
  padding: 20px 0 0 0;
  text-align: center;
}

.note {
  display: inline-block;
  max-width: 450px;
  margin-top: 80px;
  font-size: 11px;
  text-align: left;
}

input[type="text"] {
  font-size: 16px;
  color: #00b0f2;
  border: 1px solid #000;
  padding: 5px 7px;
  outline: none;
  position: relative;
  background: #fff;
  max-width: 75px;
  text-align: right;
  font-weight: bold;
}

input#result {
    cursor: default;
  border: 0;
  font-size: 28px;
  text-align: left;
  padding: 0;
}

.calculator-result p {
  margin-left: 4px;
}

input::-webkit-input-placeholder {
  color: #00b0f2 !important;
  opacity: 1;
  transition: all 0.3s ease;
}

input::-moz-placeholder {
  color: #00b0f2 !important;
  opacity: 1;
  transition: all 0.3s ease;
}

/* Firefox 19+ */
input:-moz-placeholder {
  color: #00b0f2 !important;
  opacity: 1;
  transition: all 0.3s ease;
}

/* Firefox 18- */
input:-ms-input-placeholder {
  color: #00b0f2 !important;
  opacity: 1;
  transition: all 0.3s ease;
}

input:focus::-webkit-input-placeholder {
  color: #00b0f2;
  opacity: 0;
  transition: all 0.3s ease;
}

input:focus::-moz-placeholder {
  color: #00b0f2;
  opacity: 0;
  transition: all 0.3s ease;
}

/* Firefox 19+ */
input:focus:-moz-placeholder {
  color: #00b0f2;
  opacity: 0;
  transition: all 0.3s ease;
}

/* Firefox 18- */
input:focus:-ms-input-placeholder {
  color: #00b0f2;
  opacity: 0;
  transition: all 0.3s ease;
}

input:active::-webkit-input-placeholder {
  transition: all 0.3s ease;
}

input:active::-moz-placeholder {
  transition: all 0.3s ease;
}

/* Firefox 19+ */
input:active:-moz-placeholder {
  transition: all 0.3s ease;
}

/* Firefox 18- */
input:active:-ms-input-placeholder {
  transition: all 0.3s ease;
}

input:hover::-webkit-input-placeholder {
  padding-right: 3px;
  color: #00b0f2;
  transition: all 0.3s ease;
}

input:hover::-moz-placeholder {
  padding-right: 3px;
  color: #00b0f2;
  transition: all 0.3s ease;
}

/* Firefox 19+ */
input:hover:-moz-placeholder {
  padding-right: 3px;
  color: #00b0f2;
  transition: all 0.3s ease;
}

/* Firefox 18- */
input:hover:-ms-input-placeholder {
  padding-right: 3px;
  color: #00b0f2;
  transition: all 0.3s ease;
}

input[type="color"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="text"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus {
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  outline: none;
  color: #00b0f2;
}

input[type="submit"] {
  font-size: 16px;
  border: 1px solid #000;
  color: #00b0f2;
  background: #ffffff;
  text-transform: uppercase;
  padding: 10px;
  display: inline-block;
  text-decoration: none;
  outline: none;
  behavior: url(../pie/PIE.htc);
  cursor: pointer;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
input[type="submit"]:hover {
  background: #00b0f2;
  border: 1px solid #00b0f2;
  color: #fff;
  outline: none;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}


@media screen and (max-width: 980px) {


.container {
  max-width: 755px;
}

body.page-id-31 iframe {
  height: 638px;
}

.calculator-data {
  width: 40%;
}

.calculator-img {
  width: 37%;
}

.calculator-result {
  width: 10%;
}

.calculator-img img {
width: 310px;
}


  }/*close 980---*/
  
  @media screen and (max-width: 680px) {
  
  .calculator-img {
    width: 50%;
  }
  .calculator-img img {
  width: 270px;
  }
  .calculator-data {
    display: table-cell;
    width: 59%;
  	float: left;
  }
  
  
   }/*close680---*/
  
  