$shade-10: #2c3e50 !default;
$shade-1: #d7dcdf !default;
$shade-0: #fff !default;
$teal: #1abc9c !default;
* {
  &,
  &:before, 
  &:after {
    box-sizing: border-box;
  }
}

body {
  font-family: sans-serif;
  padding: 0 0 0px 0px;
  
  @media (min-width: 600px) {
    padding: 0px;
  }
}

.range-slider {
  margin: 60px 0 0 0%;
}


$range-width: 100% !default;
$range-handle-color: $shade-10 !default;
$range-handle-color-hover: $teal !default;
$range-handle-size: 20px !default;

$range-track-color: $shade-1 !default;
$range-track-height: 10px !default;

$range-label-color: $shade-10 !default;
$range-label-width: 60px !default;

.range-slider {
  width: $range-width;
}

.range-slider__range {
  -webkit-appearance: none;
  width: calc(100% - (#{$range-label-width + 13px}));
  height: $range-track-height;
  border-radius: 5px;
  background: $range-track-color;
  outline: none;
  padding: 0;
  margin: 0;

  // Range Handle
  &::-webkit-slider-thumb {
    appearance: none;
    width: $range-handle-size;
    height: $range-handle-size;
    border-radius: 50%;
    background: $range-handle-color;
    cursor: pointer;
    transition: background .15s ease-in-out;

    &:hover {
      background: $range-handle-color-hover;
    }
  }

  &:active::-webkit-slider-thumb {
    background: $range-handle-color-hover;
  }

  &::-moz-range-thumb {
    width: $range-handle-size;
    height: $range-handle-size;
    border: 0;
    border-radius: 50%;
    background: $range-handle-color;
    cursor: pointer;
    transition: background .15s ease-in-out;

    &:hover {
      background: $range-handle-color-hover;
    }
  }

  &:active::-moz-range-thumb {
    background: $range-handle-color-hover;
  }
  

  &:focus {
    
    &::-webkit-slider-thumb {
      box-shadow: 0 0 0 3px $shade-0,
                  0 0 0 6px $teal;
    }
  }
}


// Range Label
.range-slider__value {
  display: inline-block;
  position: relative;
  width: $range-label-width;
  color: $shade-0;
  line-height: 20px;
  text-align: center;
  border-radius: 3px;
  background: $range-label-color;
  padding: 5px 10px;
  margin-left: 8px;

  &:after {
    position: absolute;
    top: 8px;
    left: -7px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-right: 7px solid $range-label-color;
    border-bottom: 7px solid transparent;
    content: '';
  }
}


// Firefox Overrides
::-moz-range-track {
    background: $range-track-color;
    border: 0;
}

input::-moz-focus-inner,
input::-moz-focus-outer { 
  border: 0; 
}
.calculator-container{ display: block; margin:0 -8px; }

.half-width .field-container {
    width: 50%;
    float: left;
    padding: 0 15px;
}

.full-width .field-container {
    width: 100%;
    float: left;
    padding: 0 15px;
}



/*--addtional-css*/
@import url('https://fonts.googleapis.com/css?family=Raleway:400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,600i,700,700i,800,800i');
@import url('https://fonts.googleapis.com/css?family=Lato:100,300i,400,400i,700,900');

*{
    box-sizing:border-box; -webkit-box-sizing:border-box;-moz-box-sizing:border-box;}
    
    .entry-content {
    width: 100% !important;
    margin-top:20px;
}
header.entry-header {
    width: 100% !important;
}
.field-container-inner .range-slider {
    margin-top: 20px;
}

.field-container-inner {
    background: #fff;
    border-radius: 3px;
   padding: 24px 30px 30px;
    margin-bottom: 40px;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    min-height: 120px;
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 0 2px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 0 2px rgba(0,0,0,0.2);
}


.field-container-inner label {
    font-family: 'Raleway', 'Arial', sans-serif;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #303030;
    display:block;
}
.field-container-inner .rangeslider--horizontal {
    height: 10px;
}
.field-container-inner .rangeslider {
    background: #eee;-webkit-box-shadow: inherit; -moz-box-shadow: inherit;
}

.field-container-inner .rangeslider__fill {
    background: #56B665;
    position: absolute;
    box-shadow: inherit; -webkit-box-shadow: inherit; -moz-box-shadow: inherit;
}

.field-container-inner .rangeslider__handle{width: 28px;
    height: 28px;border: 1px solid #EBEBEB;
    background-image:inherit !important;}
    
.field-container-inner .rangeslider__handle:after {
    width: 10px;
    height: 10px; background: #56B665;}
    
    
    .field-container-inner .range-slider {
    margin-top: 20px;
    float: left;
    width: 75%;position: relative;
}
.field-container-inner input.range-slide-input[type="text"] {
    float: right;
    width: 20%;
    font-size: 14px;
    height: auto;
    padding: 12px 12px;
    border: 1px solid #EBEBEB;
    font-family: 'Raleway', sans-serif;color:#303030;
}

.range-slider.dropdown-section select {
    height: 45px;
    padding: 10px 45px 10px 15px;
    min-height: inherit;
    max-height: inherit;
    border-radius: 0;font-family: 'Raleway', sans-serif;
    line-height: 24px;
    font-size: 14px;
    color: #303030;border:1px solid #EBEBEB;
    appearance:none;-webkit-appearance:none;-moz-appearance:none;
    background:url('../images/arrow-down.png') no-repeat;
    background-position:right center;
    background-position: 96% 54%;
    background-size: 18px;cursor: pointer;
    
}

.field-container-inner .range-slider-tooltip1 {
    color: #303030;
    background: #FFF;
    border: 2px solid #56B665;
    padding: 8px 3px 9px;
    text-align: center;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    position: absolute;
    min-width: 47px;top: 34px;left: 60%;font-size: 14px;
}


.field-container-inner .range-slider-tooltip1:after{
    content: "";
    border-color: #FFF transparent;
    border-style: solid;
    border-width: 0 7px 7px;
    margin-top: -5px;
    width: 1px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);-webkit-transform: translateX(-50%);-moz-transform: translateX(-50%);}
    
    
.field-container-inner .range-slider-tooltip1:before {
    content: "";
    border-color: #56B665 transparent;
    border-style: solid;
    border-width: 0 8px 8px;
    width: 1px;
    margin-left: auto;
    margin-right: auto;top: -10px;
    display: block;
   position: absolute;
    left: 50%;
    transform: translateX(-50%);-webkit-transform: translateX(-50%);-moz-transform: translateX(-50%);
}

.total-value-container h1 {
    color: #111;font-family: 'Lato', 'Arial', sans-serif;
    font-size: 24px;
    line-height: 36px;
    font-weight: 400;
    margin: 0;
}
.total-value-container span {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 42px;
    color: #56B665;
    padding: 10px 0 10px 0;line-height: 1;    width: 100%;
}
.site-content-contain {
    background-color: #f6f6f6;
}

.total-value-container {
    clear: both;
    text-align: center;
    padding: 0;
    margin-bottom: 30px;
}
form h2 {
    padding: 0 15px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    margin: 20px 0;
}

.mcalulator-wrapper.half-width {
    margin: 0 -15px;
}


form input[type="submit"] {
    background: #56B665;
    padding: 10px 37px 12px;
    line-height: 24px;
    font-family: 'Lato', sans-serif;
    border: 2px solid #56B665;
    cursor: pointer;
    color: #fff;
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: normal;
    margin: 8px 0;    width: auto;
    height: auto;
    border-radius: 0;
}
.range-slider.dropdown-section {
    width: 100% !important;
    float: left;
    clear: both;
}
    
form input[type="submit"]:hover, form input[type="submit"]:focus{background: #fff;color:#000;}


.message span {
    color: #f00;
        margin-left: 10px;
}
.output-wrap h2 {
    float: none;
    width: auto;
    margin: 0;
    padding: 0;
    text-align: center;font-size: 22px;font-family: 'Lato', sans-serif;
}

.output-wrap {
    width: 30.66%;
    float: none;
    clear: none;
    display: inline-block;
    padding: 24px 30px 30px;
    margin: 15px 15px 0 15px;
    float: left;
    background: #fff;height: 180px;
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 0 2px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 0 2px rgba(0,0,0,0.2);border-radius:3px;
}
form#contactForm {
    clear: both;
}
span.total-value {
    width: auto;
    float: none;
}
.total-value-container {
    float: left;
    width: 100%;
}
    
.field-container-inner {
    min-height: 165px !important;
}
.total-value-container {
    float: left;
    width: 100%;margin-top: 30px;
}
.load-reasult {
    width:100%;
    float:left;
    position:relative;
    text-align:center;
}
.load-reasult img {
    max-width: 150px;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.load-reasult {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9;
    margin: auto;
}

.total-value-container h3 {
    margin-bottom: 30px;
   font-family: 'Lato', sans-serif;
    font-weight: normal;
    font-size: 24px;
    font-weight: 400;
    line-height:36px;
}


.wrap {
    max-width: 1170px;
    padding-left: 15px;
    padding-right: 15px;
}

.mcalulator-wrapper .contact-form {
    
    padding-top: 20px;
    clear: both;padding-left: 15px;
    padding-right: 15px;
}
.mcalulator-wrapper .contact-form h3{color: #303030;
padding: 1em 0;font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height:1.1;clear: both;text-align: center;}
    
    
.left-contact-calcualtor label, .right-contact-calculator label {
    display: block;
    position: relative;
    margin-top: 8px;
    margin-bottom: -29px;
    margin-left: 16px;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    line-height: 21px;
    color: #999;
    letter-spacing: 2px;
    z-index: 2;
    text-transform:uppercase;
}
.right-contact-calculator, .left-contact-calcualtor {
    float: left;
    width: 50%;
}
.left-contact-calcualtor span.wpcf7-not-valid-tip{
    width: 145px;
    left: 15px;
    font-family: 'Raleway', sans-serif;
    position: absolute;
    top: -14px;
    background: #e9431c;
    margin-top: 0;
    color: #fff;
    padding: 2px 10px 2px 10px;
    letter-spacing: 0;
    text-transform: unset;
    font-size: 13px;
    display: block !important;
    font-weight: 500;
    z-index: 2; 
}
.captcharow .terms-text  span.wpcf7-not-valid-tip{
    width: 145px;
    left: 15px;
    font-family: 'Raleway', sans-serif;
    position: absolute;
    top: -30px;
    background: #e9431c;
    margin-top: 0;
    color: #fff;
    padding: 2px 10px 2px 10px;
    letter-spacing: 0;
    text-transform: unset;
    font-size: 13px;
    display: block;
    font-weight: 500;
    z-index: 2;
    line-height: 18px;
}
#calcResult div.wpcf7-validation-errors{
    display: none !important;
}

.contact-form input[type='text'], 
.contact-form input[type='email'], 
.contact-form input[type='number'], 
.contact-form textarea{
    width: 100%;
    height: auto;
    border: 1px solid #F6F6F6;
    background: #FFF;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 24px;
    padding: 12px 15px;
    color: #303030;
    margin: 0;padding-top: 37px;border-radius: 0;}
    
.contact-form textarea {
    height: 225px !important; 
}

.contact-form .input-row.btn {
    clear: both;
    margin-top: 30px;
    float: right;
    width: 100%;
    text-align: right;
}
.contact-form .input-row.btn input[type="submit"]{
    color: #FFF !important;
    font-family: 'Raleway', sans-serif !important;
    font-size: 14px !important;
    background: #56B665 !important;
    padding: 10px 37px 12px !important;
    text-align: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    line-height: 24px !important;
    border: 2px solid #56B665 !important;
    -webkit-border-radius: 50px !important;
    border-radius: 50px !important;font-weight: normal !important;
    letter-spacing: 1px !important;
}
    
.contact-form .input-row.btn input[type="submit"]:hover{background: #fff;color:#333;}

.calculator-submit {
    clear: both;
    width: 100%;
    display: inline-block;
    padding: 0 15px;
}

.captcharow {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin-top: 30px;
    margin-bottom: 9px;
}
.captcharow .terms-text {
    float: left;
    height: 70px;
    line-height: 70px;
    font-family: 'Raleway', sans-serif;
    color: #303030;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}


.captcharow .captcha-right {
    float: right;
}
.captcha-right  .g-recaptcha {
    float: left;
}
.captcha-right  .btn-submit-custom {
    float: right;
    margin-left: 50px;
}
.captcha-right .btn-submit-custom input[type="submit"]{
    color: #FFF;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    background: #56B665;
    padding: 10px 37px 12px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    line-height: 24px;
    border: 2px solid #56B665;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    font-weight: normal;
    letter-spacing: 1px;
}
.captcha-right .btn-submit-custom button {
    color: #FFF;
    font-family: 'Raleway', sans-serif !important;
    font-size: 14px;
    background: #56B665;
    padding: 15px 28px !important;
    text-align: center;
    text-decoration: none; 
    cursor: pointer;
    line-height: 18px;
    border: 2px solid #56B665;
    transition: 0.3s ease;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    height: auto;
    margin-top: 10px;
    font-weight: normal !important;
    letter-spacing: 1px;
    width: auto;
}
.captcha-right .rc-anchor-normal {
    height: 74px;
    max-width: 295px !important;
    width: 100% !important;
    margin: 0 auto;
} 

.captcha-right .btn-submit-custom button:hover{

    background: #fff;
    color:#333; 
    cursor: pointer;
    transition: 0.3s ease;

}

.captcha-right .btn-submit-custom input[type="submit"]:hover{background: #fff;color:#333;}
    
.captcharow .terms-text label {
    display: inline-block;
    font-weight: 400;
    cursor: pointer;margin-bottom: 0;font-size: 15px;
}
.modal-body .captcharow .terms-text label:after{
    content: 'L';
    transform: rotateY(180deg) rotateZ(-45deg);
    color: #fff;
    position: absolute;
    width: 100%;
    left: 0;  
    top: -27px !important; 
    font-weight: 700;
} 


.left-contact-calcualtor label.error {
    position: absolute;
    top: -24px;
    background: #e9431c;
    margin-top: 0;
    color: #fff;
    padding: 2px 10px 2px 10px;
    letter-spacing: 0; 
    text-transform: unset;
    font-size: 13px;
}
.right-contact-calculator label.error {
    position: absolute;
    top: -24px;
    background: #e9431c;
    margin-top: 0;
    color: #fff;
    padding: 2px 10px 2px 10px;
    letter-spacing: 0;
    text-transform: unset;
    font-size: 13px;left:0;
}


.input-row {
    position: relative;
}
.captcharow .terms-text {
    position: relative;
}

.captcharow .terms-text label.error {
    position: absolute;
    top:-4px;
    line-height: 18px;
    background: #e9431c;
    color: #fff;
    letter-spacing: 0;padding: 4px 10px 4px 10px;
    text-transform: unset;
    left: 0px;
    font-size: 13px;background: #e9431c;
}
div#msgblock span.error {
    background: #f00;
    padding: 6px 10px;
    color: #fff;
    width: 100%;
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
}
div#msgblock span.success {
    background: #6abc6d;
    padding: 6px 10px;
    color: #fff;
    width: 100%;
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
}

.field-container .tooltip {
    display: inline-block;
    border-bottom: none !important;
    cursor: help;
    color: #006080;
    background:inherit !important;
    color: #fff;
   width: 21px !important; 
    height: 21px !important; 
    line-height: 15px;
    padding: 0;
    margin-left: 5px;
    font-size: 12px;
    border-radius: 0;
    position:relative;
    top:0;
    opacity:1;
    z-index:9 !important;
}

.field-container-inner label{position: relative;}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}


.tooltip .tooltiptext {
    visibility: hidden;
    position: absolute;
    width: auto;min-width: 185px;
   background-color: darkgray;
    color: #fff;
    text-align: center;
   padding: 2px 5px;
    border-radius: 3px;
    z-index: 1;
    opacity: 0;
    transition: opacity .6s;
   left: 100%;
    top: -1px;
    text-align:left;
}
.field-container-inner .asRange .asRange-pointer .asRange-tip{    min-width: 60px;}

.output-wrap h2{
    position:relative;}
    
    .output-wrap .tooltip{
        position:static;
        vertical-align:middle;}
        
        .output-wrap .tooltip .tooltiptext{text-align: left;
    font-size: 13px;
    text-align: left;
    font-size: 13px;
    min-width:inherit;
    left: 60%;
    top: -13px;
    transform: translateX(-50%); -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%);}
    
    
    /*----modal-css-start----*/
    
    #calcResult .modal-dialog {
    width: 960px;
}
#calcResult .modal-body {
    padding: 15px 0;
}
.modal-body .output-wrap {
    width: 30.1%;padding: 24px 15px 20px;height: 165px;float: none;}
    
    #calcResult .modal-content{background-color: #f6f6f6;}
    
.modal-body .captcharow .terms-text label {
       padding-left: 0;
    font-size: 10px;
    position: absolute;
    bottom: -1px;
} 
.modal-body .captcharow span.wpcf7-list-item-label {
    margin-left: 25px;
}

.modal-body .total-value-container span {
    font-size: 36px;
}

 .mcalulator-wrapper .modal-body .contact-form h3 {
    margin-top: 0;color:#000;
}
.mcalulator-wrapper .modal-body .contact-form {
    padding-top: 0;
}
.modal-body .total-value-container {
    margin-top: 0;
}

#calcResult .modal-header h4.modal-title {
    padding-top: 0;
    display: inline-block;
    background: #56B665;
    color: #fff;
    padding: 6px 0px;
    font-size: 22px;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
}

.calculator-submit button[type="submit"]{
    background: #56B665;
    padding: 10px 37px 12px;
    line-height: 24px;
    font-family: 'Lato', sans-serif;
    border: 2px solid #56B665;
    cursor: pointer;
    color: #fff;
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: normal;
    margin: 8px 0;
    width: auto;
    height: auto;
    border-radius: 0;
    }
 .calculator-submit button[type="submit"]:hover, .calculator-submit button[type="submit"]:focus {
    background: #fff !important;
    color: #000 !important;
} 

#calcResult .modal-header {
    padding: 7px 15px;
    background: #56B665;
}
#calcResult .modal-header .close {
    margin-top: 0;
    position: absolute;
    top: 15px;
    right: 11px;
    background: inherit;
    opacity: 1;
    color: #fff;
    font-weight: 500;
    width: 25px;
    height: 25px;
    border-radius: 30px;
    padding: 0;
   line-height: 15px;
    vertical-align: top;
}

#calcResult .modal-header .close:hover{
    opacity:0.7;}

.field-container .tooltip img {
    margin-bottom: 0;
}

.mcalulator-wrapper .modal-body .contact-form h3 {
margin-top: 0;
color: #000;
max-width: 760px;
margin: 0 auto;
margin-bottom: 20px;
line-height: 25px;
}
.captcharow iframe { min-height: 78px;
   border: none;
}
.field-container-inner .range-slider.custom-textbox {
width: 100% !important;
}
.modal-body #total-value-container span {
    display: inline-block;
    width: auto;
    font-size: 24px;
    color: #333;
}
h3#outputMessage {
    text-align: left;
}
#outputMessage ul {
    margin: 0px;
    list-style: none;
}
#outputMessage ul li::before {
    content: "-";
    display: inline-block;
    margin-right: 5px;
}
@media screen and (max-width:1200px){
    
    .total-value-container span {
    font-size: 40px;
}
    
    
    }
    
    
@media screen and (max-width:991px){

.output-wrap {
    width: 45.66%;padding: 24px 15px 30px;
}

#calcResult .modal-dialog {
    width: 95%;
}
.modal-body .output-wrap {
    width: 45%;
}
.modal-body .captcharow .terms-text {
    position: relative;
    width: 100%;
}
.captcharow .captcha-right {
    float: none;
}

}

@media screen and (max-width:767px){
.modal-body .captcharow .terms-text label:after {
   
    top: 0px !important;
}

        .field-container, .half-width .field-container {
    width: 100%;
}

.site-content .wrap {
    padding-left: 15px;
    padding-right: 15px;
}
span.total-value {
    width: 100%;
}
.output-wrap h2 {
    width: 100%;
}

.output-wrap {
    width: 100%;
    margin-left: 0;margin-right: 0;
}
.total-value-container {
    padding-left: 15px;
    padding-right: 15px;
}
.field-container-inner {
    padding: 24px 15px 30px;margin-bottom: 30px;
}
.right-contact-calculator, .left-contact-calcualtor {
    float: left;
    width: 100%;
}
.captcharow .terms-text {
    float: left;
    margin-top: 0;
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
    height: auto;
    line-height: 18px;
}
.captcharow .terms-text label.error {
    top: -20px;
    
}

.captcharow .captcha-right {
    float: right;
    width: 100%;
    text-align: center;
}
.captcha-right .g-recaptcha {
    float: none;
    width: 100%;
    max-width: 300px;
    margin: 0;
}
.captcha-right .btn-submit-custom {
    float: none;
    margin-left: 0;
    padding-top: 20px;
}
.calculator-submit {
    text-align: center;
}
.total-value-container h3 {
    margin-bottom: 0;
    margin-top: 20px;
}
.total-value-container span{    font-weight: 400;}

.output-wrap{
height:auto;min-height:120px;}

.modal-body .output-wrap {
    width: 100%;
}
#calcResult .modal-dialog {
    margin-left: auto;
    margin-right: auto;
}
.modal-body .captcharow .terms-text {
    padding-top: 10px;
}
.captcharow .terms-text {
    padding-top: 10px;
}

.field-container-inner .range-slider {
    width: 68%;
}
.h1, h1 {
    font-size: 26px;
}
        
        }
        
        
        
        @media screen and (max-width:479px){
            
        .field-container-inner input.range-slide-input[type="text"] {
    font-size: 13px;
    height: auto;
    padding: 10px 8px;
    border: 1px solid #EBEBEB;}
    

}

@media screen and (max-width:400px){
    
    .tooltip .tooltiptext {min-width: 152px;}

    .field-container-inner input.range-slide-input[type="text"]{width: 21%;padding-left:2px; padding-right:2px;}
    .field-container-inner {
    padding: 24px 10px 30px;
}
    
}

@media screen and (max-width:365px){
    
    .modal-body .captcha-right .g-recaptcha {
    margin: 0 -14px;
    width: 298px;
    overflow: hidden;
}
    
}


@media only screen and (min-width:991px){

#calcResult .modal-header {
   padding: 7px 15px;
   background: #56B665;
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   width: 100%;
    z-index:99;
}

#calcResult .modal-body {
   padding-top: 60px;
}

#calcResult .modal-content {
   background-color: #f6f6f6;
   max-height: 600px;
   overflow-y: scroll; 
}
 
#calcResult .modal-content {
   max-height: 600px;
   overflow-y: scroll;
}

} 