$white: #FFFFFF;
$black: #000000;
$primary: #1ac6ff;
$secondary: #ef7c46;
$color-black: $black;
$color-white: $white;
$color-primary: $primary;
// $rating_color: #fec42d;
$bodyFont: 'Open Sans', sans-serif;
$titleFont: $bodyFont;
$iconFont: 'FontAwesome';
$font_familt_one: $bodyFont;
$font_familt_two: $bodyFont;
$bodyFontSize: 16px;
$bodyFontWeight: 400;
$blineHeight: 26px / $bodyFontSize;
$h1: 36px;
$h2: 30px;
$h3: 24px;
$h4: 18px;
$h5: 16px;
$h6: 14px;
$bodyColor: #69696E;
$titleColor: $bodyColor;
@function rem($pixels, $context: $bodyFontSize) {
@if (unitless($pixels)) {
$pixels: $pixels * 1px;
}
@if (unitless($context)) {
$context: $context * 1px;
}
@return $pixels / $context * 1rem;
}