$grid-breakpoints: (
  xxs: 0,
  xs: 480px,
  sm: 576px,
  md: 768px,
  lg: 1025px,
  xl: 1365px,
  xxl: 1366px,
  '3xl': 1440px,
  '4xl': 1600px
) !default;

$container-max-widths: (
  xs: 100%,
  sm: 100%,
  md: 100%,
  lg: 100%,
  xl: 1200px,
  xxl: 1320px
) !default;

$grid-gutter-width: 40px;
$grid-gutters: $grid-gutter-width;
$grid-row-columns: 12;

// Gutters 
$theme-gutters: (
	0:0,
	5: 5px,
	10: 10px,
	15: 15px,
	20 : 20px,
	25 : 25px,
	30 : 30px,
	40 : 40px,
	50 : 50px,
	60 : 60px,
	70 : 70px,
	80 : 80px,
	90 : 90px,
	100 : 100px,
	120 : 120px
);

/* Media break point */
$screen-xs: 480px;
$screen-sm-min: 576px;
$screen-sm-max: 767px;
$screen-md-min: 768px;
$screen-md-max: 1024px;
$screen-lg-min: 1025px;
$screen-lg-max: 1279px;
$screen-xl-min: 1280px;
$screen-xxl-min: 1600px;
$desktop-screen: 1280px;

// Colors
$white: #fff;
$color-red: #ff0000;
// Rating
$star_icon_font: "cmsi";
$star_icon: "\e948";
$star_icon_filled: "\e949";
$star_icon_color: $body-color;
$star_icon_filled_color: $rating-color;
// Menu 
$menu-item-space: 30px;
$sub-menu-w: 235px;
$menu_arrows_down: '\e91d';
$menu_arrows_up: '\e920';
$menu_arrow_size: 80%;
$menu_item_icon: "\e90d";
$menu_item_icon_rtl: "\e90c";
$dropdown_bg_img: url('../images/menu/dropdown-shadow.png');
// Form 
$FF_Spacing: 20px;
$FF_Font_Size: 14px;
$FF_Color: inherit;
$FF_Height: 58px;
$FF_Padding: 0 $FF_Spacing;
$FF_Border: 0 0 0 2px #d8deea inset;
$FF_Border_Hover: 0 0 0 2px $accent-color inset;
$FF_Border_Radius: 6px;
$FF_Border_Radius_rtl: 6px;
$FF_Shadow: 0 0 15px 0 transparent;
$FF_Background: transparent;
$FF_Background_Hover: transparent;