// Reset fonts for relevant elements
input,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

small {
  font-size: 11px;
}

.nowrap {
  display: inline-block;
  white-space: nowrap;
}


.vki-hesaplama {
  padding: 20px;
  text-align:center;
  border: 1px solid #000;
  >.inner {
    margin: 0 auto;
    padding: 20px;
  }
}

.backlink {
  display: block;
  padding: 0 0 15px;
  text-align: center;
  text-decoration: underline;
  color: $brand-primary;
}

.heading {
  font-size: 20px;
  text-align: center;
  padding: 0 0 10px;
  margin: 0 0 20px;
  color: $brand-primary;
  
  small {
    font-size: 16px;
  }
}

.clearfix,
.row {
  @include pie-clearfix();
}

.row {
  margin-left: -15px;
  margin-right: -15px;
  
  &.pull-top {
    margin-top: -30px;
  }
  
}

.col {
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 30px;
  
  float: left;
}

.col-1-1 {
  width: 100%;
}

.col-1-2,
.col-m-1-2 {
  width: 50%;
}

@media (max-width: 500px){
  .heading {
    margin-bottom: 35px;
  }
  .sub-heading {
    display: block;
    text-align: center;
  }
  .col {
    margin-top: 15px;
  }
  .col-1-2 {
    width: 100%;
  }
  .input-wrapper {
    label {
      float: left;
      width: 45%;
      margin-top: 10px;
    }
    .form-control {
      width: 50%;
      margin-left: 50%;
    }
  }
}


.hide-mobile {
  display: none;
}
@media (min-width: 992px){
  .hide-desktop {
    display: none;
  }
  .hide-mobile {
    display: block;
  }
}

label {
  display: block;
  font-weight: bold;
  margin: 0 0 10px;
  max-width: 100%;
  overflow: hidden;
}

.form-control {
  display: block;
  width: 100%;
  height: 40px;
  padding: 10px 15px;
  font-size: 14px;
  line-height: 1.4;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;

  &:-ms-input-placeholder {
    color: #999;
  }
  &::-webkit-input-placeholder {
    color: #999;
  }
  &[disabled],
  &[readonly],
  fieldset[disabled] & {
    background-color: #eee;
    opacity: 1;
  }
  &[disabled],
  fieldset[disabled] & {
    cursor: not-allowed;
  }
}

.btn {
  display: block;
  width: 100%;
  height: 40px;
  

  font-weight: 300;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  white-space: nowrap;
  
  padding: 10px 15px;
  font-size: 14px;

}

.btn-gorunum {
  width: 100%;
  display: block;
}

p {
  margin-bottom: 20px;
  &:last-child {
    margin-bottom: 0;
  }
}

strong {
  font-weight: bold;
  color: $brand-primary;
}

.success {
  color: #007700;
}

.warning {
  color: #ff7600;
}

.danger {
  color: #d10004;
}
.vki-sonuc {
	font-size: 28px;
	font-weight:600;
}
.table {
  width: 100%;
    /* Remove spacing between table cells (from Normalize.css) */
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    border: 1px solid #cbcbcb;
}

.table caption {
    color: #000;
    font: italic 85%/1 arial, sans-serif;
    padding: 1em 0;
    text-align: center;
}

.table td,
.table th {
    border-left: 1px solid #cbcbcb;/*  inner column border */
    border-width: 0 0 0 1px;
    font-size: inherit;
    margin: 0;
    overflow: visible; /*to make ths where the title is really long work*/
    padding: 0.5em 1em; /* cell padding */
}

/* Consider removing this next declaration block, as it causes problems when
there's a rowspan on the first cell. Case added to the tests. issue#432 */
.table td:first-child,
.table th:first-child {
    border-left-width: 0;
}

.table thead {
    background-color: #e0e0e0;
    color: #000;
    text-align: left;
    vertical-align: bottom;
}

/*
striping:
   even - #fff (white)
   odd  - #f2f2f2 (light gray)
*/
.table td {
    background-color: transparent;
}
.table-odd td {
    background-color: #f2f2f2;
}

/* nth-child selector for modern browsers */
.table-striped tr:nth-child(2n-1) td {
    background-color: #f2f2f2;
}

/* BORDERED TABLES */
.table-bordered td {
    border-bottom: 1px solid #cbcbcb;
}
.table-bordered tbody > tr:last-child > td {
    border-bottom-width: 0;
}


/* HORIZONTAL BORDERED TABLES */

.table-horizontal td,
.table-horizontal th {
    border-width: 0 0 1px 0;
    border-bottom: 1px solid #cbcbcb;
}
.table-horizontal tbody > tr:last-child > td {
    border-bottom-width: 0;
}


/* PRINT STYLES */
@media print {
    html body .no-print {
        display: none;
    }
}