/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html,
button,
input,
select,
textarea,
.selector.formated a {
  color: #222;
}
input:invalid {
  outline: 2px solid #f00;
}
input:focus:invalid {
  color: #f00;
}
input:not(:focus):invalid {
  outline: 2px solid #f00;
}
input:focus:invalid {
  outline: 2px solid #00f;
}
html {
  line-height: 1.4;
}
/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */
audio,
canvas,
img,
video {
  vertical-align: middle;
}
/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}
/* ==========================================================================
   Browse Happy prompt
   ========================================================================== */
.browsehappy {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em;
}
/* ==========================================================================
   Basics
   ========================================================================== */
html {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}
html,
p,
h3,
h6,
.h3 {
  font-size: 14px;
  line-height: 19px;
}
p,
ul {
  padding: 0 0 18px 0;
}
ul.normalize_left {
  padding-left: 40px;
}
h1,
h3,
h6,
.h3 {
  padding: 0;
  margin: 0;
}
#page_header #page_title,
h1 {
  color: rgba(0,0,0,0.5);
  font-size: 75px;
  line-height: 105px;
  font-weight: 100;
  text-align: center;
  font-family: 'Lato';
}
h2 {
  font-size: 24px;
  line-height: 24px;
  padding: 17px 0;
  font-family: 'Lato';
  font-weight: 300;
}
h3,
h6,
.h3 {
  padding: 0;
  padding-left: 10px;
  font-weight: 300;
}
.h3,
h3 {
  line-height: 34px;
  font-size: 14px;
}
h6 {
  line-height: 24px;
  font-size: 12px;
  color: rgba(0,0,0,0.6);
  background: rgba(243,202,3,0.49) url("../img/point40.png") repeat scroll 0% 0%;
  font-weight: 400;
}
strong {
  font-weight: 400;
  color: #903;
  font-size: 16px;
}
#account_selector .selectize-dropdown-content {
  max-height: 100% !important;
  height: 100% !important;
}
button,
input,
select,
textarea,
.overlay_input,
.selectize-input {
  font-size: 13px;
  font-family: Tahoma, Geneva, sans-serif;
  line-height: 17px;
  padding: 11px;
}
input[type="radio"],
input[type="checkbox"] {
  display: none;
}
input[type="radio"] + label,
input[type="checkbox"] + label {
  display: block;
  cursor: pointer;
  padding-left: 10px;
  line-height: 24px;
}
input[type="radio"]:checked + label,
input[type="checkbox"]:checked + label {
  color: rgba(0,0,0,0.8);
}
input[type="radio"] + label .fa-circle-o,
input[type="radio"] + label .fa-dot-circle-o,
input[type="checkbox"] + label .fa-square-o,
input[type="checkbox"] + label .fa-check-square-o {
  color: rgba(0,0,0,0.5);
}
input[type="radio"] + label .fa-circle-o,
input[type="radio"] + label .fa-dot-circle-o {
  margin-right: 10px;
}
input[type="checkbox"] + label .fa-square-o,
input[type="checkbox"] + label .fa-check-square-o {
  margin-right: 11px;
}
input[type="radio"] + label:hover,
input[type="radio"] + label:hover .fa-circle-o,
input[type="radio"] + label:hover .fa-dot-circle-o,
input[type="checkbox"] + label:hover,
input[type="checkbox"] + label:hover .fa-square-o,
input[type="checkbox"] + label:hover .fa-check-square-o {
  background-color: rgba(255,255,255,0.5);
}
input[type="radio"]:not(:checked) + label .fa-circle-o,
input[type="radio"]:checked + label .fa-dot-circle-o,
input[type="checkbox"]:not(:checked) + label .fa-square-o,
input[type="checkbox"]:checked + label .fa-check-square-o {
  display: inline;
}
input[type="checkbox"]:checked + label .fa-check-square-o {
  margin-right: 9px;
}
input[type="radio"]:checked + label .fa-circle-o,
input[type="radio"]:not(:checked) + label .fa-dot-circle-o,
input[type="checkbox"]:checked + label .fa-square-o,
input[type="checkbox"]:not(:checked) + label .fa-check-square-o {
  display: none;
}
logout,
card,
.td_sider_main,
.td_sider_sec,
icon,
filter {
  margin: 0;
  padding: 0;
}
logout,
card,
#sitecontent,
filter {
  display: block;
  box-sizing: border-box;
}
/*Set a background(-color) on the BODY.*/
body {
  background-color: #c7d2d4;
}
.filter_shadow {
  filter: drop-shadow(0 6px 3px rgba(0,0,0,0.16)) drop-shadow(0 2px 1px rgba(0,0,0,0.23));
}
/*Don't set a height on the HTML. If you need a DIV to be (at least) 100% height, set the (min-)height to 100vh.*/
#sitecontent {
  min-height: 100vh;
  overflow: auto;
}
#page_header {
  display: grid;
  grid-template-columns: 50px auto 50px;
  grid-template-rows: auto;
  grid-template-areas: "hamburger title filter";
}
#page_header #my-icon {
  grid-area: hamburger;
}
#page_header #page_title {
  grid-area: title;
}
#page_header #page_filter {
  grid-area: filter;
  text-align: center;
}
#page_header #page_filter .fa {
  color: #fff;
  font-size: 39px;
  line-height: 39px;
  text-align: center;
}
#page_header #page_filter:hover {
  opacity: 0.7;
  cursor: pointer;
}
#filter {
  background-color: #fff;
  background: #333;
  border-color: rgba(0,0,0,0.15);
  color: rgba(255,255,255,0.8);
  width: 80%;
  min-width: 140px;
  max-width: 440px;
  z-index: 0;
  position: fixed;
  box-sizing: border-box;
  background: inherit;
  display: block;
  padding: 0;
  margin: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}
#ff-filter:not(.mm-menu ),
#menu:not(.mm-menu ) {
  display: none;
}
#ff-filter icon,
#menu icon {
  display: inline-block;
  border: 0;
  width: 40px;
  position: absolute;
  left: 0;
  height: 39px;
  text-align: center;
  line-height: 39px;
  top: 0;
}
#ff-filter #reach icon,
#menu #reach icon,
#ff-filter #menu-graph icon,
#menu #menu-graph icon {
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
}
#ff-filter #reach icon,
#menu #reach icon {
  background-image: url("../img/Reach.png");
}
#ff-filter #menu-graph icon,
#menu #menu-graph icon {
  background-image: url("../img/graphql.svg");
}
#background {
  background: url("https://static.pexels.com/photos/273238/pexels-photo-273238.jpeg");
  background: url("../img/office1.jpg");
  background: url("../img/office2.jpg");
/* background:url(../img/office3.jpg); */
  position: absolute;
  background-size: cover;
  background-position: top left;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
#background_overlay {
  background-color: rgba(199,210,212,0.9);
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
/*
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 8px 5px 2px 5px;
  display: block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
a {
  text-decoration: none;
}
/* ==========================================================================
   general classes
   ========================================================================== */
.single_wide {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.popped_simple {
  border-bottom: solid 4px rgba(0,0,0,0.15);
}
.top_divider {
  border-top: solid 1px rgba(0,0,0,0.15);
}
.bottom_divider {
  border-bottom: solid 1px rgba(0,0,0,0.15);
}
.header_bg,
.shade_bg {
  background-color: rgba(0,0,0,0.5);
}
.shade_bg_dev {
  background-color: #323f52;
  color: #ccc;
}
.shade_bg_dev .fb,
.shade_bg_dev .fa {
  color: #ccc;
}
.shade_bg_darker {
  background-color: #777;
  color: #ccc;
}
.shade_bg_darker .fb,
.shade_bg_darker .fa {
  color: #ccc;
}
.shade_bg_lighter {
  background-color: rgba(0,0,0,0.1);
}
.sunk_card {
  position: relative;
  top: 1px;
}
.sunk_card .sunk_top {
  background-color: rgba(0,0,0,0.3);
  box-shadow: inset rgba(0,0,0,0.5) 0 8px 8px -6px;
}
.sunk_card .sunk_bottom {
  background-color: rgba(0,0,0,0.3);
}
.sunk_card .sunk_bottom_ins {
  box-shadow: inset rgba(0,0,0,0.5) 0 -6px 8px -6px;
}
.selector.selected {
  background-color: rgba(255,255,255,0.5);
}
.shadow_filter {
  filter: drop-shadow(0px 1px 3px rgba(0,0,0,0.3));
}
.green_half {
  background-color: rgba(180,192,29,0.4);
}
.red_half {
  background-color: rgba(255,99,132,0.2);
}
.shade_bg h3 {
  color: #fff;
  line-height: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.space_r,
.space_rb {
  margin-right: 3px;
}
.space_b,
.space_rb {
  margin-bottom: 3px;
}
.space_B_t {
  margin-top: 20px;
}
.space_none {
  margin: 0;
}
.padd_none {
  padding: 0;
}
.padd_big,
.padd_big_h,
.padd_big_l {
  padding-left: 10px;
}
.padd_big,
.padd_big_h,
.padd_big_r {
  padding-right: 10px;
}
.padd_big,
.padd_big_v,
.padd_big_t {
  padding-top: 10px;
}
.padd_big,
.padd_big_v,
.padd_big_b {
  padding-bottom: 10px;
}
.padd_small,
.padd_small_h,
.padd_small_l {
  padding-left: 5px;
}
.padd_small,
.padd_small_h,
.padd_small_r {
  padding-right: 5px;
}
.padd_small,
.padd_small_v,
.padd_small_t {
  padding-top: 5px;
}
.padd_small,
.padd_small_v,
.padd_small_b {
  padding-bottom: 5px;
}
.space_big,
.space_big_h,
.space_big_l {
  margin-left: 10px;
}
.space_big,
.space_big_h,
.space_big_r {
  margin-right: 10px;
}
.space_big,
.space_big_v,
.space_big_t {
  margin-top: 10px;
}
.space_big,
.space_big_v,
.space_big_b {
  margin-bottom: 10px;
}
.space_small,
.space_small_h,
.space_small_l {
  margin-left: 5px;
}
.space_small,
.space_small_h,
.space_small_r {
  margin-right: 5px;
}
.space_small,
.space_small_v,
.space_small_t {
  margin-top: 5px;
}
.space_small,
.space_small_v,
.space_small_b {
  margin-bottom: 5px;
}
.blocker {
  background-color: rgba(195,205,207,0.85) !important;
}
.blocker .modal {
  filter: drop-shadow(0 6px 3px rgba(0,0,0,0.16)) drop-shadow(0 2px 1px rgba(0,0,0,0.23));
  box-shadow: none;
  border-bottom: 5px solid rgba(0,0,0,0.15);
}
.back_striped_green {
  background: repeating-linear-gradient(45deg, #d4e136, #d4e136 10px, #b4c01d 10px, #b4c01d 20px);
  font-weight: 500;
}
.back_striped_red {
  background: repeating-linear-gradient(45deg, #ff6433, #ff6433 10px, #ff3d00 10px, #ff3d00 20px);
  font-weight: 500;
  color: #fff;
}
thead td.green,
thead.green {
  background-color: #b4c01d;
  box-shadow: inset rgba(0,0,0,0.2) 0 1px 0, inset rgba(255,255,255,0.302) 0px 3px 0px;
}
thead td.blue,
thead.blue {
  background-color: #357ebd;
  box-shadow: inset rgba(0,0,0,0.2) 0 1px 0, inset rgba(255,255,255,0.302) 0px 3px 0px;
  color: #fff;
}
thead td.gray,
thead.gray {
  background-color: #777;
  box-shadow: inset rgba(0,0,0,0.2) 0 1px 0, inset rgba(255,255,255,0.302) 0px 3px 0px;
  color: #fff;
}
.actionable_td:hover {
  box-shadow: rgba(0,146,255,0.98) 0 0 0 2px inset;
}
.actionable_td:hover td {
  background-color: #ffb300;
  cursor: pointer;
}
.actionable {
  transition: width 0.5s ease, background-color 0.2s ease, color 0.5s ease;
  cursor: pointer;
}
.actionable:not(.white):not(.whiter):hover {
  background-color: rgba(0,0,0,0.15);
}
.actionable.white:hover {
  background-color: rgba(255,255,255,0.75);
}
.actionable.whiter:hover {
  background-color: #fff;
}
.actionable.clicked {
  background-color: #ffb300;
}
.folder_tab {
  overflow: hidden;
}
.folder_tab h3 {
  position: relative;
  background-color: #b4c01d;
  padding: 0 10px;
  float: left;
  box-shadow: inset rgba(0,0,0,0.5) 0 -6px 8px -6px;
}
.folder_tab h3::after {
  content: '';
  position: absolute;
  top: 0;
  right: -7px;
  bottom: -1px;
  width: 12px;
  background-color: #b4c01d;
  transform: skew(10deg);
  border-radius: 0 5px 0 0;
  box-shadow: inset rgba(0,0,0,0.5) 0 -10px 8px -9px;
}
input.last_button {
  margin-bottom: 0;
  margin-top: 5px;
}
input.button {
  text-shadow: none;
  font-size: 13px;
}
.submit_like {
  cursor: pointer;
}
.green_button,
.green_bg,
.bg_color_a,
.submit_like.green,
input[type="submit"].green {
  background-color: #b4c01d;
}
.bg_color_r {
  background-color: #ff3d00;
}
.bg_color_b {
  background-color: #ffb300;
}
.bg_color_d1,
.submit_like.blue,
input[type="submit"].blue {
  background-color: #357ebd;
}
.grey_button,
.submit_like.grey,
input[type="submit"].grey {
  background-color: rgba(0,0,0,0.08);
}
.grey_button .fa,
.submit_like.grey .fa,
input[type="submit"].grey .fa {
  color: rgba(0,0,0,0.3);
}
.submit_like.grey:hover,
.grey_button:hover {
  background-color: rgba(0,0,0,0.15);
}
.grey_button,
.green_button {
  cursor: pointer;
  box-shadow: inset rgba(0,0,0,0.2) 0 1px 0, inset rgba(0,0,0,0.2) 0px -3px 0px;
}
.grey_button.disabled,
.green_button.disabled {
  cursor: default;
}
.grey_button.disabled:hover,
.green_button.disabled:hover {
  background-color: inherit;
}
.green_button:hover {
  background-color: #99a319;
}
.grey_bg {
  background-color: #9e9e9e;
}
.bg_light_color_a {
  background-color: #d4e136;
}
.bg_light_color_b {
  background-color: #ffc233;
}
.bg_light_color_d1 {
  background-color: #5898d0;
}
.bg_light_color_r {
  background-color: #ff6433;
}
.bg_transparent_white {
  background-color: rgba(255,255,255,0.2);
}
.bg_lighter {
  background-color: rgba(255,255,255,0.5);
}
.bg_transparent_black {
  background-color: rgba(0,0,0,0.08);
}
.color_a {
  color: #b4c01d;
}
.color_a.fa,
.color_a.fb {
  color: #b4c01d;
}
.color_b {
  color: #ffb300;
}
.color_b.fa,
.color_b.fb {
  color: #ffb300;
}
.color_r {
  color: #ff3d00;
}
.color_r.fa,
.color_r.fb {
  color: #ff3d00;
}
.color_d1 {
  color: #357ebd;
}
.color_d1.fa,
.color_d1.fb {
  color: #357ebd;
}
.color_e {
  color: #777;
}
.color_e.fa,
.color_e.fb {
  color: #777;
}
.color_w {
  color: #fff;
}
.color_w.fa,
.color_w.fb {
  color: #fff;
}
input[type="text"].flat,
input[type="text"].sunk,
input[type="text"].popped,
input[type="submit"].flat,
input[type="submit"].sunk,
input[type="submit"].popped,
textarea.flat,
textarea.sunk,
textarea.popped,
.submit_like.flat,
.submit_like.sunk,
.submit_like.popped {
  margin: 0;
  border-radius: 2px;
}
textarea.popped:-ms-input-placeholder,
textarea.popped:-moz-placeholder,
textarea.popped::-moz-placeholder,
textarea.popped::-webkit-input-placeholder,
textarea.flat:-ms-input-placeholder,
textarea.flat:-moz-placeholder,
textarea.flat::-moz-placeholder,
textarea.flat::-webkit-input-placeholder,
textarea.sunk:-ms-input-placeholder,
textarea.sunk:-moz-placeholder,
textarea.sunk::-moz-placeholder,
textarea.sunk::-webkit-input-placeholder,
input[type="text"].popped:-ms-input-placeholder,
input[type="text"].popped:-moz-placeholder,
input[type="text"].popped::-moz-placeholder,
input[type="text"].popped::-webkit-input-placeholder,
input[type="text"].flat:-ms-input-placeholder,
input[type="text"].flat:-moz-placeholder,
input[type="text"].flat::-moz-placeholder,
input[type="text"].flat::-webkit-input-placeholder,
input[type="text"].sunk:-ms-input-placeholder,
input[type="text"].sunk:-moz-placeholder,
input[type="text"].sunk::-moz-placeholder,
input[type="text"].sunk::-webkit-input-placeholder {
  font-size: 11px;
  color: rgba(0,0,0,0.5);
}
.submit_like.flat,
textarea.flat,
input[type="text"].flat {
  background-color: rgba(0,0,0,0.08);
}
.input_inset,
.submit_like.sunk,
textarea.sunk,
input[type="text"].sunk {
  box-shadow: inset rgba(0,0,0,0.4) 0px 1px 2px, rgba(255,255,255,0.6) 0px 1px 0px;
  background-color: rgba(0,0,0,0.08);
}
input[type="submit"].popped,
.submit_like.popped {
  box-shadow: rgba(0,0,0,0.7) 0px 3px 3px -2px, inset rgba(0,0,0,0.1) 0px -3px 1px;
}
.submit_like.sunk.theme_dark,
textarea.sunk.theme_dark,
input[type="text"].sunk.theme_dark {
  box-shadow: inset rgba(0,0,0,0.4) 0px 1px 2px, rgba(255,255,255,0.05) 0px 1px 0px;
}
.submit_like.green:hover,
input[type="submit"].green:hover {
  background-color: #a2ad1a;
}
.submit_like.popped:focus,
input[type="submit"].popped:focus {
  outline: none;
}
label .fa-asterisk {
  font-size: 10px;
  color: rgba(0,0,0,0.3);
  position: relative;
  bottom: 5px;
}
.form_liner .fa-search {
  position: absolute;
  top: 6px;
  left: -4px;
  pointer-events: none;
  text-shadow: rgba(255,255,255,0.3) 0px 1px 0px;
  width: 36px;
  text-align: center;
  font-size: 17px;
}
.submit_like.sider,
input[type="submit"].sider {
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}
.submit_like.sider:focus,
input[type="submit"].sider:focus,
.form_topliner input[type="submit"]:hover {
  outline: none;
}
.rel {
  position: relative;
}
.overhidden {
  overflow: hidden;
}
.input_clear {
  position: absolute;
  right: 10px;
  top: 0;
  height: 100%;
  line-height: 33px;
  color: rgba(0,0,0,0.5);
  cursor: pointer;
}
.input_clear:hover {
  color: #f00;
}
.input_clear:hover .fa {
  color: #d00;
}
.has_overlay {
  padding-left: 27px;
}
.overlay_input.actionable.white:hover {
  box-shadow: inset rgba(0,0,0,0.15) 0px 1px 1px, rgba(0,0,0,0.5) -1px 0px 1px -1px;
}
.overlay_input.actionable.white.right {
  border-radius: 0 2px 2px 0;
}
.overlay_input.actionable.white.left {
  border-radius: 2px 0 0 2px;
}
.overlay_input {
  position: absolute;
  top: 0;
  padding: 11px;
  color: #777;
}
.overlay_input .fa {
  color: #777;
}
.overlay_input.right {
  right: 0;
}
.overlay_input.left {
  left: 0;
}
.overlay_input.red:hover {
  color: #f00;
}
.overlay_input.red:hover .fa {
  color: #f00;
}
/* ==========================================================================
   specific
   ========================================================================== */
.spinner {
  font-size: 50px;
  padding-left: 20px;
  padding-right: 20px;
  color: #b4c01d;
}
body.color {
  background-position: top left, center bottom;
  background-size: 2px 2px, cover;
  background-attachment: fixed;
  background-color: #56585a;
}
logout {
  position: absolute;
  top: 0;
  right: 10px;
  background-color: #000;
  color: #ccc;
}
logout p {
  color: #b4c01d;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 9px;
  font-family: verdana;
  margin: 0;
  padding-bottom: 0px;
}
logout a {
  text-decoration: none;
  color: #357ebd;
  cursor: pointer;
}
#profiler {
  position: absolute;
  top: -160px;
  height: 160px;
  width: 300px;
  right: 0;
  transition: 0.5s ease;
}
#profiler.show {
  top: 0;
}
#profiler logout {
  bottom: -20px;
  top: initial;
}
.icon_lang {
  height: 13px;
  width: 17px;
  background-size: contain;
  display: block;
  float: left;
  margin-right: 10px;
}
.icon_ad {
  background-image: url("../img/flags/ad.svg");
}
.icon_ae {
  background-image: url("../img/flags/ae.svg");
}
.icon_ar {
  background-image: url("../img/flags/ar.svg");
}
.icon_at {
  background-image: url("../img/flags/at.svg");
}
.icon_au {
  background-image: url("../img/flags/au.svg");
}
.icon_be {
  background-image: url("../img/flags/be.svg");
}
.icon_bl {
  background-image: url("../img/flags/bl.svg");
}
.icon_br {
  background-image: url("../img/flags/br.svg");
}
.icon_bs {
  background-image: url("../img/flags/bs.svg");
}
.icon_by {
  background-image: url("../img/flags/by.svg");
}
.icon_ca {
  background-image: url("../img/flags/ca.svg");
}
.icon_ch {
  background-image: url("../img/flags/ch.svg");
}
.icon_cn {
  background-image: url("../img/flags/cn.svg");
}
.icon_co {
  background-image: url("../img/flags/co.svg");
}
.icon_cr {
  background-image: url("../img/flags/cr.svg");
}
.icon_cy {
  background-image: url("../img/flags/cy.svg");
}
.icon_cz {
  background-image: url("../img/flags/cz.svg");
}
.icon_de {
  background-image: url("../img/flags/de.svg");
}
.icon_dk {
  background-image: url("../img/flags/dk.svg");
}
.icon_dm {
  background-image: url("../img/flags/dm.svg");
}
.icon_do {
  background-image: url("../img/flags/do.svg");
}
.icon_dz {
  background-image: url("../img/flags/dz.svg");
}
.icon_ee {
  background-image: url("../img/flags/ee.svg");
}
.icon_eg {
  background-image: url("../img/flags/eg.svg");
}
.icon_eh {
  background-image: url("../img/flags/eh.svg");
}
.icon_es {
  background-image: url("../img/flags/es.svg");
}
.icon_fi {
  background-image: url("../img/flags/fi.svg");
}
.icon_fr {
  background-image: url("../img/flags/fr.svg");
}
.icon_gb {
  background-image: url("../img/flags/gb.svg");
}
.icon_gd {
  background-image: url("../img/flags/gd.svg");
}
.icon_gf {
  background-image: url("../img/flags/gf.svg");
}
.icon_gg {
  background-image: url("../img/flags/gg.svg");
}
.icon_gi {
  background-image: url("../img/flags/gi.svg");
}
.icon_gp {
  background-image: url("../img/flags/gp.svg");
}
.icon_gr {
  background-image: url("../img/flags/gr.svg");
}
.icon_hk {
  background-image: url("../img/flags/hk.svg");
}
.icon_hr {
  background-image: url("../img/flags/hr.svg");
}
.icon_hu {
  background-image: url("../img/flags/hu.svg");
}
.icon_ie {
  background-image: url("../img/flags/ie.svg");
}
.icon_il {
  background-image: url("../img/flags/il.svg");
}
.icon_in {
  background-image: url("../img/flags/in.svg");
}
.icon_is {
  background-image: url("../img/flags/is.svg");
}
.icon_it {
  background-image: url("../img/flags/it.svg");
}
.icon_je {
  background-image: url("../img/flags/je.svg");
}
.icon_jp {
  background-image: url("../img/flags/jp.svg");
}
.icon_kr {
  background-image: url("../img/flags/kr.svg");
}
.icon_kw {
  background-image: url("../img/flags/kw.svg");
}
.icon_la {
  background-image: url("../img/flags/la.svg");
}
.icon_lb {
  background-image: url("../img/flags/lb.svg");
}
.icon_lk {
  background-image: url("../img/flags/lk.svg");
}
.icon_lt {
  background-image: url("../img/flags/lt.svg");
}
.icon_lu {
  background-image: url("../img/flags/lu.svg");
}
.icon_lv {
  background-image: url("../img/flags/lv.svg");
}
.icon_ma {
  background-image: url("../img/flags/ma.svg");
}
.icon_mc {
  background-image: url("../img/flags/mc.svg");
}
.icon_md {
  background-image: url("../img/flags/md.svg");
}
.icon_me {
  background-image: url("../img/flags/me.svg");
}
.icon_mf {
  background-image: url("../img/flags/mf.svg");
}
.icon_mg {
  background-image: url("../img/flags/mg.svg");
}
.icon_mk {
  background-image: url("../img/flags/mk.svg");
}
.icon_ml {
  background-image: url("../img/flags/ml.svg");
}
.icon_mq {
  background-image: url("../img/flags/mq.svg");
}
.icon_mt {
  background-image: url("../img/flags/mt.svg");
}
.icon_mu {
  background-image: url("../img/flags/mu.svg");
}
.icon_mv {
  background-image: url("../img/flags/mv.svg");
}
.icon_mw {
  background-image: url("../img/flags/mw.svg");
}
.icon_mx {
  background-image: url("../img/flags/mx.svg");
}
.icon_my {
  background-image: url("../img/flags/my.svg");
}
.icon_na {
  background-image: url("../img/flags/na.svg");
}
.icon_nc {
  background-image: url("../img/flags/nc.svg");
}
.icon_ng {
  background-image: url("../img/flags/ng.svg");
}
.icon_nl {
  background-image: url("../img/flags/nl.svg");
}
.icon_no {
  background-image: url("../img/flags/no.svg");
}
.icon_np {
  background-image: url("../img/flags/np.svg");
}
.icon_nz {
  background-image: url("../img/flags/nz.svg");
}
.icon_om {
  background-image: url("../img/flags/om.svg");
}
.icon_pe {
  background-image: url("../img/flags/pe.svg");
}
.icon_pf {
  background-image: url("../img/flags/pf.svg");
}
.icon_pk {
  background-image: url("../img/flags/pk.svg");
}
.icon_pl {
  background-image: url("../img/flags/pl.svg");
}
.icon_pm {
  background-image: url("../img/flags/pm.svg");
}
.icon_pt {
  background-image: url("../img/flags/pt.svg");
}
.icon_qa {
  background-image: url("../img/flags/qa.svg");
}
.icon_re {
  background-image: url("../img/flags/re.svg");
}
.icon_ro {
  background-image: url("../img/flags/ro.svg");
}
.icon_rs {
  background-image: url("../img/flags/rs.svg");
}
.icon_ru {
  background-image: url("../img/flags/ru.svg");
}
.icon_sa {
  background-image: url("../img/flags/sa.svg");
}
.icon_se {
  background-image: url("../img/flags/se.svg");
}
.icon_sg {
  background-image: url("../img/flags/sg.svg");
}
.icon_sk {
  background-image: url("../img/flags/sk.svg");
}
.icon_sm {
  background-image: url("../img/flags/sm.svg");
}
.icon_sn {
  background-image: url("../img/flags/sn.svg");
}
.icon_sr {
  background-image: url("../img/flags/sr.svg");
}
.icon_sv {
  background-image: url("../img/flags/sv.svg");
}
.icon_th {
  background-image: url("../img/flags/th.svg");
}
.icon_tj {
  background-image: url("../img/flags/tj.svg");
}
.icon_tn {
  background-image: url("../img/flags/tn.svg");
}
.icon_tr {
  background-image: url("../img/flags/tr.svg");
}
.icon_tw {
  background-image: url("../img/flags/tw.svg");
}
.icon_ua {
  background-image: url("../img/flags/ua.svg");
}
.icon_us {
  background-image: url("../img/flags/us.svg");
}
.icon_uy {
  background-image: url("../img/flags/uy.svg");
}
.icon_vg {
  background-image: url("../img/flags/vg.svg");
}
.icon_vi {
  background-image: url("../img/flags/vi.svg");
}
.icon_vn {
  background-image: url("../img/flags/vn.svg");
}
.icon_wf {
  background-image: url("../img/flags/wf.svg");
}
.icon_yt {
  background-image: url("../img/flags/yt.svg");
}
.icon_za {
  background-image: url("../img/flags/za.svg");
}
.icon_lang.td {
  height: 17px;
  width: 23px;
  opacity: 0.2;
}
#account_selector {
  float: left;
  width: 130px;
  height: auto;
  z-index: 20000;
  position: relative;
  background-color: transparent;
  transition: background-color 0.5s ease 0s;
}
#account_selector:hover {
  background-color: #b4c01d;
}
.submit_like.disabled,
input[type="submit"]:disabled {
  background-color: rgba(0,0,0,0.15);
}
.submit_like.disabled:hover {
  background-color: rgba(0,0,0,0.15);
  cursor: default;
}
.fb,
.fa {
  color: #424a4f;
  position: relative;
  line-height: 19px;
}
.fa-share-square-o:before {
  content: "\F045";
}
.fa-spin-custom {
  -webkit-animation: spin 1000ms infinite linear;
  animation: spin 1000ms infinite linear;
}
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.ondark {
  color: rgba(255,255,255,0.5);
  font-style: normal;
  text-shadow: 0px 3px 5px #000;
}
.rotate-90 {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  white-space: nowrap;
}
card {
  background: #f5efe1 url("../img/site-bg.jpg") repeat top left;
}
.selected .shell:hover {
  box-shadow: rgba(255,0,0,0.8) 0 0 5px;
  cursor: pointer;
}
.selected .shell {
  float: left;
  padding-right: 10px;
  margin-right: 3px;
  margin-bottom: 3px;
}
.selected .shell:hover .remove,
.suggest .shell:hover .add {
  display: block;
}
.suggest.slim {
  padding-top: 6px;
  padding-bottom: 1px;
}
.suggest.slim div {
  padding-left: 22px;
  height: 24px;
  padding-right: 5px;
}
.selected div .remove {
  font-size: 14px;
  width: 14px;
  right: 2px;
  top: 4px;
  color: rgba(255,0,0,0.5);
  display: block;
  position: absolute;
}
.suggest .shell:hover {
  border: 1px rgba(0,146,255,0.98) solid;
  box-shadow: #2a628c 0 0 2px;
  cursor: pointer;
}
.selected .shell,
.suggest .shell {
  height: 42px;
  background-color: #fff;
  margin-bottom: 1px;
  border-radius: 3px;
/* box-shadow: rgba(0, 0, 0, 0.18) 0px 1px 5px; */
  position: relative;
  border: 1px #fff solid;
}
.selected .shell.suggested_product_card,
.suggest .shell.suggested_product_card {
  background-size: 42px 42px;
  background-position: left 0px top 0px;
  background-repeat: no-repeat;
  padding-left: 47px;
}
.selected .shell.suggested_product_card span,
.suggest .shell.suggested_product_card span {
  font-size: 14px;
  color: #005492;
  line-height: 44px;
  padding-right: 15px;
  font-weight: 400;
}
.suggest .shell.suggested_product_card span {
  float: left;
}
.selected .shell.suggested_product_card p,
.suggest .shell.suggested_product_card p {
  margin-bottom: 0;
  line-height: 44px;
  font-weight: 400;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  display: inline;
}
.selected .shell.suggested_product_card p {
  clear: left;
  max-width: 150px;
}
.suggest .shell.suggested_product_card p {
  margin-right: 40px;
}
.suggest.slim div p {
  line-height: 24px;
  white-space: nowrap;
  overflow: hidden;
  font-size: 14px;
}
.selected div .add,
.suggest div .remove,
.suggest div .add {
  position: absolute;
  top: 8px;
  right: 12px;
  height: 25px;
  width: 22px;
  color: rgba(0,0,0,0.2);
  font-size: 28px;
  display: none;
}
.suggest.slim div .remove,
.suggest.slim div .add {
  top: 5px;
  right: inherit;
  left: 5px;
  font-size: 14px;
  color: rgba(0,0,0,0.4);
}
.suggest h3,
.selected h3 {
  padding-left: 0px;
}
.selected div p,
.selected div span {
  line-height: 20px;
}
.border_left {
  border-left: rgba(0,0,0,0.15) 1px solid;
}
.border_big_left {
  border-left: rgba(0,0,0,0.7) 1px solid;
}
.border_bottom {
  border-bottom: rgba(0,0,0,0.15) 1px solid;
}
.border_big_bottom {
  border-bottom: rgba(0,0,0,0.7) 1px solid;
}
.border_top {
  border-top: rgba(0,0,0,0.15) 1px solid;
}
.border_big_top {
  border-top: rgba(0,0,0,0.7) 1px solid;
}
.border_right {
  border-right: rgba(0,0,0,0.15) 1px solid;
}
.border_big_right {
  border-right: rgba(0,0,0,0.7) 1px solid;
}
.shadow_inset_left {
  box-shadow: inset rgba(0,0,0,0.15) 1px 0px 0px;
}
.shadow_inset_left_bottom {
  box-shadow: inset rgba(0,0,0,0.15) 1px 0px 0px, inset rgba(0,0,0,0.15) 0px -1px 0px;
}
.shadow_inset_right {
  box-shadow: inset rgba(0,0,0,0.15) -1px 0px 0px;
}
.shadow_inset_h {
  box-shadow: inset rgba(0,0,0,0.15) 1px 0px 0px, inset rgba(0,0,0,0.15) -1px 0px 0px;
}
.shadow_inset_top {
  box-shadow: inset rgba(0,0,0,0.15) 0px 1px 0px;
}
.shadow_inset_bottom {
  box-shadow: inset rgba(0,0,0,0.15) 0px -1px 0px;
}
.mover {
  width: 40px;
}
.mover .fa {
  color: rgba(0,0,0,0.3) !important;
}
.mover:not(.header):hover {
  background-color: rgba(173,187,0,0.55);
  cursor: move;
  border-radius: 3px;
}
.flex {
  display: flex;
}
.flex.wrap {
  flex-wrap: wrap;
}
.flex .header {
  text-align: center;
  line-height: 14px false;
  min-height: 18px !important;
}
.flex .header h3 {
  padding-left: 0;
}
.flex .minimal {
  flex-shrink: 0;
}
.flex .minimal.switch_header {
  width: 107px;
}
.flex .minimal.price {
  width: 65px;
}
.flex .minimal.indent {
  width: 40px;
}
.flex .minimal.indent .fa {
  color: #ffb300 !important;
}
.flex .minimal.img {
  width: 58px;
}
.flex .minimal.img_div {
  background-position: center top;
  background-size: contain;
  mix-blend-mode: multiply;
  background-repeat: no-repeat;
  position: absolute;
  top: 1px;
  left: 40px;
  height: 100%;
  width: 58px;
}
.flex .fixed {
  min-width: 100px;
}
.flex .cant_shrink,
.flex .fixed {
  flex-shrink: 0;
}
.flex .extensible,
.flex .can_grow {
  flex-grow: 1;
}
.flex .minimal.multiline,
.flex .fixed.multiline,
.flex .extensible.multiline {
  line-height: 19px !important;
}
.flex .minimal.progress,
.flex .fixed.progress,
.flex .extensible.progress {
  z-index: 2;
}
.grid {
  display: grid;
}
.grid .left,
.grid .right,
.grid .center {
  min-height: 37px;
  line-height: 37px;
}
.grid .left {
  float: left;
}
.grid .right {
  float: right;
}
.grid .center {
  overflow-x: hidden;
}
.grid .center.multiline {
  line-height: 19px !important;
}
.grid .header_left {
  text-align: right;
  margin-right: 7px;
  width: 93px;
}
.grid .center_fixed {
  margin-left: 100px;
}
.grid select,
.grid input {
  margin: 0;
}
.icon_brand {
  float: left;
  height: 16px;
  width: 51px;
  background-repeat: no-repeat;
  background-size: 44px 18px;
  background-position: center left;
  opacity: 0.75;
}
.progress {
  box-shadow: rgba(0,0,0,0.7) -5px 1px 5px -7px, rgba(0,0,0,0.7) -16px 1px 12px -16px, rgba(0,0,0,0.7) 16px 1px 12px -16px, rgba(0,0,0,0.7) 5px 1px 5px -7px;
}
.progress span {
  border: rgba(0,0,0,0.2) solid 2px;
  width: 12px;
  height: 12px;
  border-radius: 10px;
  display: inline-block;
  box-sizing: border-box;
  vertical-align: middle;
  margin-left: 3px;
}
.progress span.current_step,
.progress span.all_steps {
  border: none;
  line-height: 12px;
  text-align: center;
  font-style: italic;
}
.progress span.current_step {
  font-weight: 900;
}
.progress i {
  font-size: 11px;
  font-style: italic;
}
.progress .round_selected {
  background-color: #357ebd;
  border: none;
  box-shadow: inset rgba(0,0,0,0.2) 0px 1px 1px 1px;
}
.progress .round_old {
  background-color: #b4c01d;
  border: none;
  box-shadow: inset rgba(0,0,0,0.2) 0px 1px 1px 1px;
}
.required {
  border-width: 4px;
  border-style: solid;
  border-color: rgba(255,0,0,0.48);
  box-shadow: none !important;
  padding: 7px;
}
.inline {
  display: inline-block;
}
.inline_calendar .day {
  width: 6px;
  height: 6px;
  padding: 14px;
}
.inline_calendar .blue {
  background-color: #357ebd;
  position: absolute;
  height: 6px;
  width: 34px;
  left: 0;
  box-shadow: rgba(255,255,255,0.2) 0px 1px 1px 0px, inset rgba(0,0,0,0.2) 0px 1px 1px;
}
.inline_calendar .start .blue {
  border-radius: 8px 0 0 8px;
  width: 20px;
  left: 14px;
}
.inline_calendar .end .blue {
  border-radius: 0 8px 8px 0;
  width: 20px;
}
.inline_calendar .none .blue {
  left: 14px;
  width: 6px;
  border-radius: 8px;
  background-color: rgba(0,0,0,0.2);
}
.inline_calendar .label {
  position: absolute;
  top: -3px;
  width: 34px;
  text-align: center;
  font-size: 12px;
  left: 0;
}
/* ==========================================================================
   Tables
   ========================================================================== */
.truthtable,
.table {
  width: 100%;
  max-width: 100%;
}
.truthtable th,
.table th {
  font-weight: 400;
}
.truthtable td {
  box-shadow: inset rgba(0,0,0,0.15) 0px -1px 0px;
  padding-top: 2px;
  padding-bottom: 3px;
}
.truthtable td.line_left {
  box-shadow: inset rgba(0,0,0,0.15) 1px 0px 0px, inset rgba(0,0,0,0.15) 0px -1px 0px;
}
.truthtable thead {
  text-align: center;
  white-space: nowrap;
}
.truthtable thead td {
  padding-right: 5px;
  padding-left: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.truthtable thead .title {
  position: absolute;
  top: 10px;
  right: calc(-100px + 50%);
  text-align: center;
  width: 200px;
}
.truthtable .dimension {
  background-color: rgba(0,0,0,0.15);
  padding-right: 5px;
  padding-left: 5px;
  text-align: center;
  white-space: nowrap;
}
.truthtable .label {
  font-size: 12px;
  text-align: left;
  white-space: nowrap;
  line-height: 19px;
}
.truthtable .bar {
  width: 100%;
  height: 19px;
}
.truthtable .bar .label {
  position: absolute;
}
.truthtable td.left .label {
  padding-right: 5px;
}
.truthtable td.right .label {
  padding-left: 5px;
}
.table th,
.table td {
  vertical-align: top;
  text-align: center;
}
.table.text th,
.table.text td {
  padding-right: 10px;
  padding-left: 10px;
}
.table.table_slim th {
  line-height: 30px;
  font-size: 14px;
}
.table.table_wide td:not(.logo_page),
.table.table_wide th:not(.logo_page) {
  background-position-y: 8px !important;
  background-repeat: no-repeat !important;
  background-size: 100% 26px !important;
}
.table.table_slim td {
  font-size: 12px;
  line-height: 24px;
  background-position-y: 3px !important;
  background-size: 100% 20px !important;
  background-repeat: no-repeat !important;
}
.table_spaced {
  width: 100%;
  max-width: 100%;
  border-spacing: 10px 10px;
  border-collapse: separate;
}
.table.table_wide th,
.table.table_wide td {
  font-size: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.table.table_wide td .hover {
  position: absolute;
  bottom: -1px;
  font-size: 11px;
  text-align: center;
  width: 100%;
  left: 0;
  line-height: 11px;
  visibility: hidden;
  font-weight: 400;
  color: #801e1e;
}
.cappsed {
  font-size: 82% !important;
}
.table.table_wide td:hover .hover {
  visibility: visible;
}
.France {
  background-color: rgba(162,179,0,0.6) !important;
  padding: 0 !important;
}
.Mondiale {
  background-color: rgba(226,10,0,0.6) !important;
  padding: 0 !important;
}
.Occidentale {
  background-color: rgba(255,129,0,0.6) !important;
  padding: 0 !important;
}
.text_right {
  text-align: right !important;
}
.text_left {
  text-align: left !important;
}
.table_striped .odd {
  background-color: rgba(255,255,255,0.8);
}
.table_striped .even {
  background-color: rgba(255,255,255,0.5);
}
.table .overlay {
  position: relative;
}
.table .overlay > td {
  padding: 0;
}
.table_summary .confirm,
.table .overlay table {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #ffb300;
}
.table_summary {
  position: absolute;
  top: 10px;
  float: right;
  right: 10px;
  border: #fff 1px solid;
  border-radius: 5px;
  box-sizing: border-box;
  overflow: hidden;
}
.table_summary .confirm {
  display: none;
}
.table_summary .totals {
  min-width: 50px;
}
.table_summary .actionable {
  white-space: nowrap;
}
.table_summary .purge {
  border-left: #fff solid 1px;
}
.erased {
  text-decoration: line-through;
  font-style: italic;
  color: rgba(0,0,0,0.3);
}
.erased .fa {
  color: rgba(0,0,0,0.15);
}
.table.table_wide a {
  padding-left: 10px;
  padding-right: 10px;
  color: #27ae60;
  text-decoration: none;
  cursor: pointer;
  font-size: 13px;
}
.logo_page {
  background-repeat: no-repeat;
  background-position: left 1px top 1px;
  padding-left: 45px !important;
}
.max_td_width {
  width: 0;
  min-width: 100%;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.big_icons {
  padding: 7px;
/* float: left; */
  border-bottom: 1px solid rgba(0,0,0,0.2);
  position: relative;
  height: 40px;
}
.big_icons.big_selected {
  background-color: rgba(245,239,225,0.68);
  box-shadow: none !important;
}
.big_icons.big_selectable:hover {
  background-color: #f5efe1;
  background-image: url("../img/site-bg.jpg");
  background-position: top left;
  background-repeat: repeat;
  cursor: pointer;
  box-shadow: none !important;
}
.big_icons i {
  padding-right: 5px;
  font-size: 40px;
  width: 40px;
}
.big_icons span {
  font-size: 30px;
  color: #424a4f;
  padding-left: 0px;
  font-weight: 400;
}
.fa_big {
  font-size: 70px !important;
  line-height: 70px !important;
  height: 70px;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text; /* Firefox 3.6 */
  -webkit-background-clip: text; /* Safari 4? Chrome 6? */
  background-clip: text;
}
.triangle-border {
  position: relative;
  padding: 15px;
  border: 5px solid #b4c01d;
  color: #333;
  background: #fff;
/* css3 */
  border-radius: 10px;
  pointer-events: none;
}
.smalleft .triangle-border {
  position: absolute;
  left: -63px;
  width: auto;
  display: inline;
  opacity: 0;
  top: 43px;
  min-width: 140px;
  pointer-events: none;
  z-index: 1;
}
.big_icons .triangle-border {
  position: absolute;
  left: -204px;
  width: 126px;
  display: inline;
  opacity: 0;
  top: 0;
}
.smalleft:hover .triangle-border,
.big_icons:hover .triangle-border {
  opacity: 1;
  transition: 0.5s ease;
  transition-delay: 0.5s;
}
.smalleft p.triangle-border,
.big_icons p.triangle-border {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  filter: drop-shadow(-3px 3px 2px rgba(0,0,0,0.5));
}
.smalleft p.triangle-border span,
.big_icons p.triangle-border span {
  font-size: inherit !important;
}
.td_sider_main {
  vertical-align: top;
  width: 200px;
}
.td_sider_main .rel_info {
  position: absolute;
  right: 0;
  top: 0;
  height: 55px;
  width: 60px;
  border-left: dashed 1px rgba(0,0,0,0.1);
}
.td_sider_main .rel_info div {
  height: 21px;
  padding: 3px 7px;
  text-align: center;
  white-space: nowrap;
  line-height: 21px;
}
.td_sider_main .rel_info .fa {
  font-size: 13px;
  width: 10px;
}
.td_sider_main .rel_info div:first-child {
  border-bottom: dashed 1px rgba(0,0,0,0.1);
  color: rgba(0,0,0,0.5);
}
.triangle-border:before {
  content: "";
  position: absolute;
  bottom: -20px;
/* value = - border-top-width - border-bottom-width */
  left: 40px;
/* controls horizontal position */
  border-width: 20px 20px 0;
  border-style: solid;
  border-color: #b4c01d transparent;
/* reduce the damage in FF3.0 */
  display: block;
  width: 0;
}
/* creates the smaller  triangle */
.triangle-border:after {
  content: "";
  position: absolute;
  bottom: -13px;
/* value = - border-top-width - border-bottom-width */
  left: 47px;
/* value = (:before left) + (:before border-left) - (:after border-left) */
  border-width: 13px 13px 0;
  border-style: solid;
  border-color: #fff transparent;
/* reduce the damage in FF3.0 */
  display: block;
  width: 0;
}
.extraPadding .rel {
  padding-left: 22px;
}
/* Variant : right
------------------------------------------ */
/* creates the larger triangle */
.triangle-border.right:before {
  top: 10px;
/* controls vertical position */
  bottom: auto;
  left: auto;
  right: -30px;
/* value = - border-left-width - border-right-width */
  border-width: 15px 0 15px 30px;
  border-color: transparent #b4c01d;
}
/* creates the smaller  triangle */
.triangle-border.right:after {
  top: 16px;
/* value = (:before top) + (:before border-top) - (:after border-top) */
  bottom: auto;
  left: auto;
  right: -21px;
/* value = - border-left-width - border-right-width */
  border-width: 9px 0 9px 21px;
  border-color: transparent #fff;
}
/* Variant : top
------------------------------------------ */
/* creates the larger triangle */
.triangle-border.top:before {
  top: -30px;
  bottom: auto;
  left: 57px;
/* right: auto; */
/* width: 0; */
  border-width: 0 15px 30px 15px;
  border-color: #b4c01d transparent;
}
/* creates the smaller  triangle */
.triangle-border.top:after {
  top: -21px;
  bottom: auto;
  left: 63px;
/* right: -21px; */
  border-width: 0 9px 21px 9px;
  border-color: #fff transparent;
}
.card_under {
  height: 17px;
  margin: 0px 5px 4px 5px;
  position: relative;
  top: 0px;
  border-radius: 0 0 4px 4px;
  z-index: 2;
}
.card_under .smalleft {
  float: left;
/* padding: 2px 10px; */
/* width: 25%; */
  text-align: center;
  box-shadow: inset rgba(0,0,0,0.78) 0 5px 8px -6px, inset rgba(0,0,0,0.15) 0 -2px 1px -1px;
  font-size: 11px;
  opacity: 0.3;
  line-height: 17px;
  filter: grayscale(60%);
}
.card_under .smalleft:hover {
  opacity: 1 !important;
  filter: grayscale(0%) !important;
  cursor: default;
}
.badge_stripe {
  background: repeating-linear-gradient(45deg, rgba(0,0,0,0), rgba(0,0,0,0) 12px, rgba(179,193,0,0.6) 12px, rgba(179,193,0,0.6) 30px, rgba(0,0,0,0) 30px, rgba(0,0,0,0) 80px);
  bottom: 0px !important;
  width: 45px !important;
  height: 45px !important;
  line-height: 45px !important;
  text-align: center !important;
  left: 0px !important;
}
.badge_top {
  color: rgba(0,0,0,0.3);
  position: absolute;
  top: 3px;
  right: 3px;
  text-align: right;
}
.badge_top .fb,
.badge_top .fa {
  color: rgba(255,255,255,0.4) !important;
  text-shadow: rgba(0,0,0,0.4) 0px -1px 0px;
}
.badge_top .fb.green,
.badge_top .fa.green {
  text-shadow: #b4c01d 0px -1px 0px;
}
.badge_top span {
  font-size: 12px;
/* float: right; */
  color: #918f8e !important;
  font-weight: 100;
  line-height: 15px;
  vertical-align: top;
  padding-right: 5px;
}
.badge_stripe .fa {
  position: relative;
  top: 7px;
  left: -9px;
}
/* <-- hubinstore wizard static step3
   delete button for cards */
.delete {
  bottom: 0;
  left: 0;
  right: 0;
}
.delete.drag {
  top: auto;
}
.delete:hover {
  cursor: pointer;
  color: #fff;
}
.delete:hover.drag {
  background-color: rgba(255,0,0,0.75);
}
.delete:hover.drag .fa {
  color: #fff !important;
}
/* --> */
.drag {
  padding: 10px 0px;
  margin: 3px;
  border: rgba(0,0,0,0.1) solid 1px;
  text-align: center;
  border-radius: 2px;
  background-color: rgba(255,255,255,0.4);
/* <-- hubinstore wizard static step3
     position absolute removes the margin overlapping */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
/* --> */
}
.grabbable {
  cursor: move; /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
/* (Optional) Apply a "closed-hand" cursor during drag operation. */
.grabbable:active {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}
.slide_card {
  margin: 5px;
  background-position: center center;
  height: 440px;
  background-size: cover;
  padding: 0;
  background-repeat: no-repeat;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: rgba(0,0,0,0.25) 0 3px 6px 1px, rgba(0,0,0,0.1) 0 1px 1px, inset rgba(255,255,255,0.4) 0px 0px 1px 1px;
  position: relative;
  overflow: hidden;
}
.slide_card.mini {
  height: 217px;
  background-size: initial;
}
.slide_card .mc {
  top: 0;
  text-align: center;
}
.slide_card .name {
  bottom: 0;
  text-align: left;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  box-sizing: border-box;
}
.slide_card .mc,
.slide_card .name {
  height: 22px;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  color: rgba(0,0,0,0.8);
  width: 100%;
}
.fa.plus {
  float: left;
  color: rgba(0,0,0,0.5);
  line-height: 31px;
  padding-left: 5px;
  font-size: 14px;
}
.survey_entity {
  background-color: rgba(0,0,0,0.15);
  border-radius: 4px;
  position: relative;
}
#groupzone .survey_entity {
  background-color: #ffe8b3;
}
.survey_item {
/*overflow: hidden;*/
  background-color: rgba(0,0,0,0.15);
/*margin-bottom: 10px;
  margin-right: 10px;*/
/*float: left;*/
  border-radius: 4px;
  position: relative;
}
.survey_item .tile_name {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 50px;
/*font-size: 9px;*/
  width: 50px;
  height: 147px;
  z-index: 1000;
  cursor: move;
  padding-left: 0px;
  padding-top: 0px;
}
.survey_item .tile_name .fa {
  color: rgba(0,0,0,0.25);
}
.survey_item .tile_name:hover {
  background-color: rgba(173,187,0,0.55);
}
#groupzone info {
  line-height: 46px;
  font-style: italic;
  color: #5d4100;
  font-weight: 500;
  background: transparent;
  transition: 0.5s ease;
}
#items_count {
  position: absolute;
  top: 23px;
  left: 0px;
  text-align: right;
  width: 41px;
  color: rgba(0,0,0,0.25);
  font-weight: 600;
}
.product_card_flex {
  display: flex;
  flex-direction: column;
}
.product_card_flex .row {
  flex-direction: row;
}
.product_card_flex .row_inversed {
  flex-direction: row-reverse;
}
.product_card_flex > div {
  flex-grow: 1;
}
.product_card {
  box-shadow: rgba(0,0,0,0.3) 1px 2px 7px;
  border-radius: 3px;
  background-color: #fff;
  position: relative;
  display: grid;
  grid-column-gap: 5px;
  grid-template-columns: [ image-start measure-start badgeSide-start action-start ] 20px [ badgeSide-end ] 93px [ image-end text-start ] auto [ badgeTop-start ] 50px [ badgeTop-end measure-end text-end action-end ];
  grid-template-rows: [ image-start badgeSide-start text-start badgeTop-start action-start ] 19px [ badgeTop-end ] 38px [ badgeSide-end image-end text-end measure-start action-end ] 57px [ measure-end ];
}
.product_card .product_text {
  grid-area: text;
  overflow: hidden;
}
.product_card .product_measure {
  grid-area: measure;
  align-self: end;
}
.product_card .product_image {
  grid-area: image;
  background-repeat: no-repeat;
  background-size: contain;
}
.product_card .product_badge {
  grid-area: badgeTop;
}
.product_card .product_action {
  grid-area: action;
  opacity: 0;
  background-color: #fff;
  text-align: center;
  font-size: 19px;
  padding-top: 19px;
  color: #940000;
  font-weight: 400;
  cursor: pointer;
}
.product_card .product_action:hover {
  opacity: 0.95;
}
.product_card .product_id {
  color: #005492;
  font-weight: 400;
}
.product_card .fa,
.product_card .fb,
.product_card .gray {
  color: rgba(0,0,0,0.3);
}
.row .product_card,
.row_inverted .product_card {
  grid-template-rows: [ image-start badgeSide-start text-start badgeTop-start action-start measure-start ] 19px [ badgeTop-end ] 38px [ badgeSide-end image-end text-end measure-end action-end ];
}
.row .product_card .product_measure,
.row_inverted .product_card .product_measure {
  align-self: start;
}
.row .product_card {
  grid-template-columns: [ image-start badgeSide-start action-start ] 20px [ badgeSide-end ] 32px [ image-end text-start badgeTop-start ] 120px [ badgeTop-end text-end action-end measure-start ] auto [ measure-end ];
}
.row_inverted .product_card {
  background-position: right;
  grid-template-columns: [ measure-start ] auto [ measure-end badgeTop-start text-start action-start ] 120px [ badgeTop-end text-end image-start ] 32px [ badgeSide-start ] 20px [ badgeSide-end image-end action-end ];
}
.row_inverted .product_card .product_measure {
  text-align: right;
}
.row_inverted .product_card .product_badge {
  align-self: right;
}
.shader_left,
.shader_right {
  text-align: center;
  position: absolute;
  height: calc(100%);
  top: 0;
  width: 93px;
  border: rgba(0,0,0,0.15) solid 1px;
  box-sizing: border-box;
}
.shader_right {
  right: 0;
  border-right: none;
  border-radius: 10px 0 0 10px;
}
.shader_left {
  left: 0;
  border-left: none;
  border-radius: 0 10px 10px 0;
}
.bests_grid {
  display: grid;
  grid-column-gap: 0px;
  grid-template-columns: [ item-start basket-start ] 25px [ item-end basket-end product-start ] auto [ product-end ];
  grid-template-rows: [ product-start basket-start item-start ] auto [ product-end basket-end item-end ];
}
.bests_grid .product {
  grid-area: product;
}
.bests_grid .basket {
  grid-area: basket;
}
.bests_grid .basket div {
  bottom: 0;
}
.bests_grid .item {
  grid-area: item;
}
.bests_grid .item div {
  bottom: 0;
}
.bests_grid .basket,
.bests_grid .item {
  text-align: center;
  position: relative;
  margin-top: 16px;
}
.bests_grid .basket div,
.bests_grid .item div {
  position: absolute;
  font-size: 11px;
  text-align: center;
  width: 100%;
}
.bests_grid.row_inverted {
  grid-template-columns: [ product-start ] auto [ product-end basket-start item-start ] 25px [ basket-end item-end ];
}
#notificator {
  position: fixed;
  top: 20px;
  right: 10px;
  width: 280px;
  opacity: 0.9;
}
#notificator .main {
  border-radius: 3px;
  box-shadow: rgba(0,0,0,0.3) 1px 2px 7px;
  margin-bottom: 2px;
  min-height: 37px;
  position: relative;
}
#notificator .main .fa {
  position: absolute;
  top: 13px;
  left: 0px;
  color: #fff;
  text-align: center;
  width: 40px;
}
#notificator .main .right {
  margin-left: 40px;
  border-left: solid 1px rgba(0,0,0,0.2);
}
#notificator .main .title,
#notificator .main .content {
  padding: 10px;
}
#notificator .main .title {
  border-bottom: solid 1px rgba(0,0,0,0.2);
}
.corner_action,
.page_selector {
  float: right;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}
.corner_action ul,
.page_selector ul {
  padding: 0;
  overflow: hidden;
  margin: 0;
}
.corner_action li,
.page_selector li {
  float: left;
  width: auto;
  display: block;
  height: 34px;
  line-height: 34px;
  display: block;
  color: rgba(0,0,0,0.2);
  box-sizing: border-box;
}
.corner_action .press,
.page_selector .press {
  padding-right: 10px;
  padding-left: 10px;
  color: rgba(34,34,34,0.4);
}
.corner_action .press:hover,
.page_selector .press:hover {
  cursor: pointer;
  background-color: rgba(0,0,0,0.2);
}
.corner_action .selectable :hover,
.page_selector .selectable :hover {
  background-color: rgba(209,231,0,0.5);
  color: rgba(0,0,0,0.7);
}
.corner_action .selected,
.page_selector .selected {
  background-color: rgba(255,255,255,0.5) !important;
  color: #ff6c00;
}
.corner_action.close:hover,
.page_selector.close:hover,
.corner_action .close:hover,
.page_selector .close:hover {
  cursor: pointer;
  background-color: #357ebd;
  color: #eaf2f9;
  box-shadow: inset rgba(0,0,0,0.2) 1px 0px 0px;
}
.corner_action.close .fb,
.page_selector.close .fb,
.corner_action .close .fb,
.page_selector .close .fb,
.corner_action.close .fa,
.page_selector.close .fa,
.corner_action .close .fa,
.page_selector .close .fa {
  font-size: 14px;
  line-height: 34px;
}
.fb_expand:before {
  content: 'expand_more';
}
.closed .fb_expand:before {
  content: 'expand_less';
}
.fa.device::before {
  content: "\f108";
}
.less.colapsed {
  display: none;
}
.search_span {
  position: relative;
  float: left;
}
.inline_input {
  padding-top: 10px;
}
body.touch .grid .left,
body.touch .grid .right,
body.touch .grid .center {
  min-height: 37px;
  line-height: 37px;
}
body.touch .selector.formated {
  min-height: 37px;
  line-height: 37px;
}
body.touch .selector.formated .fa {
  min-height: 37px;
  line-height: 37px;
}
body.touch input,
body.touch select,
body.touch textarea,
body.touch .overlay_input,
body.touch .selectize-input {
  padding: 11px;
}
body.touch .has_overlay {
  padding-left: 35px;
}
body.touch .inline_input {
  padding-top: 10px;
}
body.touch input[type="radio"] + label,
body.touch input[type="checkbox"] + label {
  line-height: 37px;
  box-shadow: inset rgba(0,0,0,0.08) 0px 1px 0px;
}
body.touch .fa.device::before {
  content: "\f10a";
}
body.touch .search_span {
  padding-top: 10px;
}
body.touch .search_span .fa {
  padding-top: 10px;
}
.rangeslider,
.rangeslider__fill {
  display: block;
  border-radius: 10px;
  box-shadow: inset rgba(0,0,0,0.1) 0px 1px 1px, rgba(255,255,255,0.6) 0px 1px 1px;
  background-color: rgba(0,0,0,0.08);
}
.rangeslider {
  background: rgba(0,0,0,0.08);
  position: relative;
}
.rangeslider--horizontal {
  top: 13px;
  height: 20px;
  width: 100%;
}
.rangeslider--vertical {
  width: 20px;
  min-height: 150px;
  max-height: 100%;
}
.rangeslider--disabled {
  filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  opacity: 0.4;
}
.rangeslider__fill {
  background: #b4c01d;
  box-shadow: inset rgba(0,0,0,0.4) 0px 1px 2px, rgba(255,255,255,0.6) 0px 1px 0px;
  position: absolute;
}
.rangeslider--horizontal .rangeslider__fill {
  top: 0;
  height: 100%;
}
.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%;
}
.rangeslider__handle {
  text-align: center;
  line-height: 42px;
  font-size: 13px;
  font-family: Tahoma, Geneva, sans-serif;
  background: #fff;
  cursor: pointer;
  display: inline-block;
  width: 42px;
  height: 42px;
  position: absolute;
  background: #f5efe1 url("../img/site-bg.jpg") repeat top left;
  box-shadow: rgba(0,0,0,0.4) 0px 1px 2px, inset rgba(255,255,255,0.6) 0px 1px 0px;
  border-radius: 50%;
}
.rangeslider__handle:after {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.1));
  border-radius: 50%;
}
.rangeslider__handle:active,
.rangeslider--active .rangeslider__handle {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjEiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4xMiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0,0,0,0.1)), color-stop(100%, rgba(0,0,0,0.12)));
  background-image: -moz-linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.12));
  background-image: -webkit-linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.12));
  background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.12));
}
.rangeslider--horizontal .rangeslider__handle {
  top: -10px;
  touch-action: pan-y;
  -ms-touch-action: pan-y;
}
.rangeslider--vertical .rangeslider__handle {
  left: -10px;
  touch-action: pan-x;
  -ms-touch-action: pan-x;
}
input[type="range"]:focus + .rangeslider .rangeslider__handle {
  box-shadow: 0 0 8px rgba(255,0,255,0.9);
}
.slim .rangeslider--horizontal {
  top: 17px;
  height: 5px;
}
.slim .rangeslider--horizontal .rangeslider__handle {
  top: -15px;
  line-height: 35px;
  width: 35px;
  height: 35px;
}
.slim .rangeslider--horizontal .rangeslider__handle:after {
  width: 35px;
  height: 35px;
}
.outer_box {
  display: flex;
  flex-basis: 50%;
  align-items: center;
  justify-content: center;
}
.outer_box .input_required {
  box-shadow: inset #ff8181 0px 0px 0px 2px;
  border-top: 0px;
  border-right: 0px;
  border-left: 0;
}
.outer_box .inner_box {
/* height: 500px; */
  width: 200px;
  background-color: #fff;
  box-shadow: #000 0px 15px 30px -15px, inset rgba(0,0,0,0.2) 0px -4px 0px;
  padding: 20px;
  border-radius: 10px;
}
.outer_box .inner_box .fa {
  line-height: 31px;
  color: rgba(201,215,233,0.302);
}
.outer_box .inner_box .input .fa {
  width: 15px;
}
.outer_box .inner_box .login {
  margin-top: 20px;
  text-align: center;
  border-radius: 7px;
  background-color: #31b5b1;
  box-shadow: inset rgba(0,0,0,0.2) 0px -3px 0px;
  color: #d6f7f7;
  padding: 15px;
  cursor: pointer;
  margin-bottom: 2px;
}
.outer_box .inner_box .input {
  border-bottom: solid 1px rgba(201,215,233,0.2);
}
.outer_box .inner_box input {
  background-color: transparent;
  color: #fff;
}
.outer_box .inner_box .error {
  background-color: #984c4c;
  padding: 10px;
  color: rgba(255,255,255,0.4);
  margin-top: 10px;
  border-radius: 7px;
  box-shadow: inset rgba(0,0,0,0.2) 0px 3px 0px;
}
.outer_box.login {
  background-color: rgba(137,180,179,0.9);
flex
  height: 100vh;
}
.outer_box.login .inner_box {
  background-color: #32425b;
}
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
/* IE 6/7 fallback */
  *text-indent: -9999px;
}
.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}
/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden;
}
/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden;
}
/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}
.clearfix:after {
  clear: both;
}
/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
  *zoom: 1;
}
/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
/*width*/
/*align, .section_content
{width: 1200px;}

.mainWidth, .left_main
{width: 700px;}

smaller, hamburger
{width: 100%;}

.right_secondary
{width: 330px;}*/
@media screen and (max-width: 1270px) {
  div.floating.by4 {
    width: 33%;
  }
}
@media screen and (max-width: 1240px) {
  .hidable {
    display: none;
  }
  .dashboard #gender {
    top: 10px;
    min-width: 300px;
  }
  .dashboard #dash_device {
    border-right: none;
/*border-bottom: rgba(0,0,0,0.2) dashed 1px; */
  }
  .dashboard #dash_age,
  .dashboard #dash_device {
    border-bottom: rgba(0,0,0,0.2) dashed 1px;
  }
}
@media screen and (max-width: 1120px) {
  align,
  .section_content {
    width: 700px;
  }
  .right_secondary {
    display: none;
  }
  hamburger #moveup,
  hamburger .pages {
    overflow: hidden;
    width: 14.5%;
  }
  div.floating.by4 {
    width: 50%;
  }
  .dashboard #dash_device {
    min-width: 300px;
    border-left: none;
    margin-top: 10px;
  }
  #main_container {
    clear: both;
  }
  #main_container .wide_right {
    margin-left: 0;
  }
  .row .product_card {
    grid-template-columns: [ image-start badgeSide-start action-start measure-start ] 20px [ badgeSide-end ] 38px [ image-end text-start badgeTop-start ] auto [ badgeTop-end text-end action-end measure-end ];
  }
  .row_inverted .product_card {
    grid-template-columns: [ badgeTop-start text-start action-start measure-start ] auto [ badgeTop-end text-end image-start ] 38px [ badgeSide-start ] 20px [ badgeSide-end image-end action-end measure-end ];
  }
  .row .product_card,
  .row_inverted .product_card {
    grid-template-rows: [ image-start badgeSide-start text-start badgeTop-start action-start ] 19px [ badgeTop-end ] 38px [ badgeSide-end image-end text-end action-end measure-start ] auto [ measure-end ];
    grid-column-gap: 0px;
  }
  .row .product_card .product_text,
  .row_inverted .product_card .product_text {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media screen and (max-width: 700px) {
  align,
  .section_content {
    width: 100%;
  }
  .mainWidth,
  .left_main {
    width: auto;
  }
  .mainWidth,
  .left_main p {
    margin-left: 20px;
    margin-right: 20px;
  }
  hamburger #moveup,
  hamburger .pages {
    overflow: hidden;
    width: 15%;
    padding-left: 5px;
    padding-right: 5px;
  }
  hamburger #moveup {
    margin-left: 5px;
  }
  #menuphoto {
    float: none;
  }
  #menuphoto photo {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
  }
  nav {
    float: none;
  }
  nav h1 {
    text-align: center;
    margin-bottom: 15px;
  }
  nav ul {
    margin: 0;
  }
  about {
    height: auto;
    width: auto;
    padding: 20px;
    min-height: auto;
  }
  .section_content h1 {
    margin-left: 20px;
    margin-right: 20px;
  }
  .mainWidth h1 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .section_content h1,
  .mainWidth h1 {
    font-size: 60px;
    line-height: 84px;
  }
  ul {
    padding: 0 20px 0 40px;
  }
  .coffee {
    min-height: none;
    background-position: center top 50px;
    padding-left: 20px;
    padding-right: 20px;
    background-size: 70% auto;
    padding-top: 250px;
  }
  .coffee h1 {
    text-align: left;
  }
  .skrollr-body_on {
    left: 300px;
  }
  .side_body_off {
    left: -200%;
    width: 100%;
/*margin-right:50px;*/
    transition: 0.7s ease-in;
  }
  .side_body_on {
    left: -50px;
    width: 100%;
/*margin-right:50px;*/
    transition: 0.4s ease-out;
  }
  #side_body .a {
    width: auto;
  }
  #side_body #side_content {
    float: none;
    margin: 20px;
    margin-left: 70px;
  }
  #side_close div pic {
    margin-top: 0px;
    margin-right: 10px;
    font-size: 50px;
  }
  #side_close div pic {
    text-shadow: 0px 4px 5px rgba(0,0,0,0.5), 0px 8px 10px rgba(0,0,0,0.4);
  }
  picmenu #high,
  picmenu #middle,
  picmenu #low {
    height: 2px;
    width: 30px;
  }
  hamburger {
    height: 56px;
  }
  hamburger #moveup,
  hamburger .pages {
    line-height: 56px;
    height: 56px;
  }
  hamburger #moveup pic {
    line-height: 51px;
  }
  #account_selector {
    background-color: #b4c01d;
    transition: none;
    height: 60px;
  }
  #account_selector form {
    padding-top: 9px;
  }
  banderola {
    position: inherit;
    width: 100%;
    margin-top: 20px;
  }
  banderola .corner {
    width: 60px;
    height: 100%;
    overflow: hidden;
    position: absolute;
    right: 0;
  }
  banderola .left_menu {
    background-image: linear-gradient(-135deg, transparent 35px, #b4c01d 35px);
    overflow: hidden;
    padding-right: 60px;
  }
  banderola .left_menu div {
    position: relative;
    float: left;
    width: 60px;
  }
  banderola #nothing {
    display: none;
  }
  banderola .cut {
    float: right;
    background-image: linear-gradient(-135deg, transparent 35px, rgba(255,255,255,0.6) 35px, rgba(255,255,255,0.3) 40px);
  }
  banderola .shadow {
    background-image: linear-gradient(45deg, transparent 35px, rgba(0,0,0,0.1) 35px, rgba(0,0,0,0.3) 70px);
    float: right;
  }
  #profiler {
    width: 100%;
  }
  #profiler logout {
    width: 100%;
    right: 0;
  }
  banderola #device {
    position: relative;
    padding-bottom: inherit;
    box-shadow: none;
  }
  #sitecontent {
    margin: 0 5px;
  }
  .small_left {
    width: 100%;
    float: none;
  }
  .wide_right {
    margin-left: 0px;
  }
  div.floating.by4 {
    width: 100%;
    float: none;
  }
}
/*
@media screen and (max-width: 1400px) {
  .left_main{width:700px;}
  .right_secondary{margin-left:800px;}
  section align {width:1150px;}
}

@media screen and (max-width: 1350px) {
  .left_main{width:700px;}
  .right_secondary{margin-left:800px;}
  section align {width:1100px;}
  subtitlu {width: 600px;}
}

@media screen and (max-width: 1300px) {
  .left_main{width:700px;}
  .right_secondary{margin-left:800px;}
  section align {width:1050px;}
}

@media screen and (max-width: 1250px) {
  .left_main{width:700px;}
  .right_secondary{margin-left:750px;}
  section align {width:1000px;}
  subtitlu {width: 500px;}
}

@media screen and (max-width: 1200px) {
  .left_main{width:650px;}
  .right_secondary{margin-left:700px;}
  section align {width:950px;}
  #chartdata {width: 250px !important}
  #graph_1 .blank p {font-size: 14px; line-height: 20px; height: 40px;}
  #graph_1 .canvas_arrow h1 {font-size: 60px;}
}

@media screen and (max-width: 1150px) {
  .left_main{width:600px;}
  .right_secondary{margin-left:650px;}
  section align {width:900px;}
  #chartdata {width: 200px !important}
  #graph_1 .blank p {font-size: 14px;}
  #graph_1 .canvas_arrow h1 {font-size: 55px;}
  #label1 p, #label2 p {font-size: 14px;  line-height: 20px; height: 40px;}
  subtitlu {width: 400px; margin-right: 0px;}
  #slide-1 titlu {text-align: right;}

}

@media screen and (max-width: 1150px) {
  .left_main{width:600px;}
  .right_secondary{margin-left:650px;}
  section align {width:900px;}
}

@media screen and (max-width: 950px) {
  .left_main{width:inherit; float:none; padding-left:20px; padding-right:20px}
  .right_secondary{margin-left:0px; width:inherit; background-color:rgba(255, 255, 255, 0.6); margin-left:20px; padding:20px; border-radius: 20px 0 0 20px; box-shadow:#fff 1px 1px 1px}
  .liner {display: none;}
  section align{margin-left:0px; margin-right:0px; width:inherit}
  titlu {font-size: 30px; padding-left:20px; padding-right:20px}
  h1 {font-size: 30px; text-shadow: #000 2px 2px 4px; padding-left:20px; padding-right:20px; font-weight:600}
  h2 {font-size:16px;}
  p, ul li {font-size:15px;}
  .right_secondary p {font-size:14px;}
  .section_blue h1, .section_green h1{padding-left:40px; padding-right:40px}
  #graph_0 .wrong p,#graph_0 .matched p, #graph_0 .lack p {line-height:20px !important; }
  menu{position:inherit}
  menu photo {margin:0; float:left; border-radius: 0 106px 106px 106px;; border-top:0px ; border-left:0px ; box-shadow: none }
  .titlu2 {font-size: 20px;}
  nav ul{float:right}
  #slide-1 .content_table{display:block; height:inherit !important}
  #slide-1 titlu {text-align: center;}
  subtitlu {width: inherit; margin-right: 20px; margin-left: 20px}
}*/
/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important; /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group; /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
@-moz-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
