/*
=========================================
  Contents
=========================================
  
  1. Global
  2. Header
  3. Tabs
  4. Footer
  5. Buy

=========================================
1. Global
=========================================*/

body {
  -webkit-font-smoothing: antialiased;
  font-family: 'OpenSansRegular', sans-serif;
  color: #333333;
  font-size: 14px;
  margin: 0;
  padding: 0;
}
a {
  -webkit-transition: all ease-in-out 0.2s;
  -moz-transition: all ease-in-out 0.2s;
  -ms-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}

p , h1, h2, a, li, td, th {
  font-family: 'Raleway', sans-serif;
}

h4 {
  font-size: 24px;
}

table {
  width: 100%;
  border: 1px solid #000000;
}

td, th {
  padding: 5px 8px;
  border: 1px solid #bdbdbd;
}

.title {
  font-weight: bold;
  font-size: 16px;
}

.container {
  padding-top: 60px;
  padding-bottom: 60px;
}

.text-white {
  color: #ffffff;
}

.text-red {
  color: #d93726;
}

.text-gray {
  color: #474a50;
}

.text-regular {
  font-weight: 100;
}

.text-bold {
  font-weight: 600;
}

.text-center {
  text-align: center;
}

.dont-break-out {

  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;

  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;

  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;

}

.shadow {
   -moz-box-shadow:    inset 0 0 5px rgba(0, 0, 0, 0.37);
   -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.37);
   box-shadow:         inset 0 0 5px rgba(0, 0, 0, 0.37);
}

.grow:hover
{
        -webkit-transform: scale(1.3);
        -ms-transform: scale(1.3);
        transform: scale(1.3);
}

/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-in {
  opacity:0;  /* make things invisible upon start */
  -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

#return-to-top {
    z-index: 1000;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}

#return-to-top:hover i {
    color: #b12f22!important;
}

.callout {
  margin-top: 30px;
  text-align: -webkit-center;
  text-align: -moz-center;
}

.callout p {
  background-color: #e8e8e8;
  padding: 20px;
  border-radius: 10px;
  color: #333333;
  font-weight: bold;
}

.callout button {
  background-color: #d83625!important;
  padding: 12px;
  color: #fff;
  font-weight: bold;
  margin-left: 20px;
  border: 1px solid #d8695e;
}

#mynetwork {
  width: 600px;
  height: 600px;
  border: 1px solid lightgray;
}

@media (max-width: 767px) {
  .container {
    /*padding-left: 50px;
    padding-right: 50px;*/
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .callout {
    width: 100%;
    text-align: center;
    text-align: -webkit-center;
  }

  .callout button {
    display: block;
    margin-top: 20px;
    margin-left: 0px;
  }
}

@media (max-width: 400px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*  
=========================================
2. Header
=========================================*/
.header-wrap {
  background-image: url('../images/bg.jpg');
  background-size: cover;
  max-height: 730px;
  border-bottom: 3px solid #d83625;
}

.header {
  text-align: center;
}

.landing .header {
  text-align: left;
}

.landing .header-wrap {
  padding: 50px;
}

.landing .header p {
  border-left: 1px solid #fff;
  margin-left: 20px;
  padding-left: 10px;
  color: #8793a2;
}

#logo img {
  width: 200px!important;
  padding-bottom: 20px;
}

.banner-img {
  padding-top: 50px;
  max-width: 800px;
  width: 100%;
}

.header h1 {
  line-height: 45px;
}

#line-glow img {
  max-width: 440px;
  width: 100%;
  margin-top: -29px!important;
}

#arrow img {
  width: 30px;
  opacity: 0.5;
}

.carousel {
  position: inherit;
}

.carousel-inner {
  padding-bottom: 30px;
  text-align: -webkit-center;  
}

.carousel-indicators {
  /*position: relative;
  opacity: 0.2;*/
  display: none;
}

@media (max-width: 767px) {
  .header h1 {
    font-size: 25px;
    line-height: 30px;
  }
}

/*  
=========================================
3. Tabs
=========================================*/
.tabs-wrap {
}

#tabs a {
  font-size: 13px;
  font-weight: 600;
  color: #4f4f4f;
}

#tabs .active a {
  color: #ffffff;
  background-color: #d93726;
}

#tab7 ul {
  list-style: none;
  padding-left: 0px!important;
}

#tab7 img {
  max-width: 130px!important;
}

#tab8 ul {
  list-style: none;
  padding-left: 0px!important;
}

#tab5 .row {
  padding: 20px;
}

#tab5 .col-md-10 {
  margin-top: 20px;
}

.fa {
  padding-right: 10px;
}

.tab-content ul {
  padding-left: 20px!important; 
}

.tab-content a {
  background-color: #ffffff!important;
  color: #333333!important;
  font-size: 14px!important;
}

.tab-pane {
  padding-top: 40px;
}

.nav-tabs, .nav-pills {
  text-align:center;
}

.nav-tabs > li, .nav-pills > li {
  float:none;
  display:inline-block;
  *display:inline; /* ie7 fix */
  zoom:1; /* hasLayout ie7 trigger */
}

.panel-default>.panel-heading {
  color: #ffffff;
  background-color: #e4e4e4;
  border-color: #ddd;
}

.panel-title a {
  color: #525252!important;
  background-color: #e4e4e4!important;
}

.section-img {
  text-align: center;
}

.section-img2 {
  text-align: center!important;
}

.section-img img {
  max-width: 100%!important;
}

.section-img2 img {
  max-width: 100%!important;
}

.section-icon {
  padding-right: 10px;
}

.table-title {
  background-color: #d93726;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
}

#graphpadtips ul {
  list-style: none;
  padding-left: 0px!important;
}

.coloredrow {
  background-color: #f3f3f3;
  padding-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .nav-tabs>li {
    width: 100%;
    border-bottom: 1px solid #dedede;
  }
}

@media (max-width: 991px) {
  .section-img {
    text-align: center;
    padding-bottom: 20px;
  }
  .section-img img {
    max-width: 200px!important;
  }
}

@media (max-width: 540px) {
  table {
    font-size: 11px;
  }
}

/*  
=========================================
EKG
=========================================*/

#logo-ekg img {
  width: 250px!important;
  padding-bottom: 90px;
}

#features-graph {
  background-color: #efefef;
}

#features-graph #mynetwork canvas {
  background-color: #fff;
}

#features .row {
  margin-top: 20px;
  margin-bottom: 40px;
}

#features h3 {
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: bold;
  color: #34668a;
  line-height: 32px;
}

#features img {
  width: 100%;
}

/*  
=========================================
4. Footer
=========================================*/
.footer {
  background-color: #121418;
  border-top: 3px solid #d83625;
}

#footer .container {
  padding-top: 30px!important;
  padding-bottom: 20px!important;
}

.links {
  text-align: left;
}

.links span {
  padding-right: 15px;
}

.links img {
  padding-right: 10px;
  width: 40px;
}

.links a {
  text-decoration: none;
}

.links a:hover {
  color: #c0392b;
}

.copyright {
  font-size: 14px;
  text-align: right;
}

.copyright span {
  padding-left: 5px;
  padding-right: 5px;
  color: #d93726;
}

.copyright span:hover {
  color: #ffffff;
}

#footer li {
  display: inline;
  padding-right: 10px;
}

#footer ul {
  padding-left: 0px;
}

@media (max-width: 991px) {
  .copyright {
    width: 100%;
    text-align: center!important;
  }
  .links {
    width: 100%;
    text-align: center!important;
    padding-bottom: 20px;
  }
}

@media (max-width: 460px) {
  .links img {
    display: none;
  }
  .links span {
    padding-right: 10px;
    padding-left: 10px;
    text-decoration: underline;
  }
}

/*=========================================
5. Buy
=========================================*/

.buy-form {
  background: #efefef;
  padding: 20px;
  margin-top: 20px;
  border-radius: 8px;
}

form p {
  margin-bottom: 20px;
}

#buy .cta {
  padding: 15px;
  color: #fff;
  background: #d83625;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
}

.factnexus-details {
  padding: 30px;
  margin-top: 20px;
}

.factnexus-details img {
  width: 200px;
  padding-bottom: 15px;
}

.factnexus-details i {
  vertical-align: top;
  padding-top: 10px;
  color: #d83625;
  font-size: 18px;
  font-weight: 500;
}

.fact-info {
  display: inline-block;
  padding-top: 10px;
}

.detail {
  border-bottom: 1px dashed #ababab;
}

#buy select {
  display: block;
  width: 100%;
  padding: 7px;
}

#buy form button {
  margin-top: 10px;
  background: #d83625;
  color: #fff;
}

#buy form button:hover , #buy form button:active , #buy form button:visited {
  background: #af1e0e;
}

@media(max-width: 370px) {
    .g-recaptcha {
        transform: scale(0.90);
        -webkit-transform: scale(0.90);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}

@media(max-width: 340px) {
    .g-recaptcha {
        transform: scale(0.80);
        -webkit-transform: scale(0.80);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}