/* custom style */

// Quickly modify global styling by enabling or disabling optional features.
  
$enable-rounded:            true !default;
$enable-shadows:            true;
$enable-transitions:        true;
$enable-hover-media-query:  false;
$enable-grid-classes:       true;
$enable-print-styles:       true;

// Variables
//
// Colors

$theme-colors: (
  primary: #cdcdcd,
  secondary: #b0b0b0,
  light: #eaeaea,
  dark: #555555,
  info: #8e8e8e,
  success: #28a745,
  warning: #ffc107,
  danger: #dc3545
);
$weight:(
    h1: 100,
    h2: 200,
    h3: 300,
    h4: 400,
    h5: 500,
    h6: 600
);

$body-bg: white;
$body-color: #333;


$body-color-inverse: invert($body-color) !default;
$link-color: #8e8e8e;

// Fonts
$font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
$headings-font-family: $font-family-base;
$display-font-family: $font-family-base;
$font-weight-normal: 200;
$headings-font-weight: 200;
$headings-font-weight: $font-weight-normal;
$lead-font-size:   1.30rem;
$lead-font-weight:   300;
$spacer: 1.5rem;
$font-size-base: 1rem;
$font-weight-light: 300;
$font-weight-bold: 700;
$font-weight-base: $font-weight-normal;
$line-height-base: 1.5;
$headings-line-height: 1.2;

 
html,body {
   height:100%;
}

// Color yiq
@each $name, $value in $theme-colors {
  .bg-#{$name} {
    color: color-yiq($value);
   	input::placeholder {
      color: transparentize(color-yiq($value), .2);
    }
    .input-group-text {
      color: color-yiq($value);
    }
  }
}

@each $name, $value in $weight {
    .#{$name} {
      font-weight: $value;
    }
}

.h6{
    font-weight: 600;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

.cover {
	min-height:100%;
}

.text-primary {
    color: #dee2e6!important;
}

.search_btn{
	color: $link-color !important;
}

/* navbar_home_page */

.navbar-nav li{

}
