/**
* -----------------------------------------
* PARTIALS
* -----------------------------------------
*/
/**
* Base styles
* main class: body#specialorder, body#specialorderpayment
* styled elements: .input, p, span, .info, buttons, label, checkbox
*/
body {
  font-size: 13px;
  color: black;
}

label {
  font-size: 13px;
  margin: 9px 25px 9px 0;
}

#center_column .input {
  padding: 4px 10px;
  border: 1px solid #b7b7b7;
  width: 100%;
  margin: 7px 0;
  background: white;
  font-size: 10px;
  border-radius: 5px;
}

.sub-title {
  text-transform: uppercase;
  margin-bottom: 22px;
  color: #164384;
  font-size: 13pt;
}

input[type="radio"],
input[type="checkbox"] {
  display: none !important;
}

/**
* Title top section with progress bar
* main class: .title_section
* styled elements: .main_title, .steps_line, .steps_line > .line,
*          .steps_line > .arrow
*/
.title_section {
  margin-top: 21px;
}
.title_section .main_title {
  color: black;
  text-align: center;
  font-size: 24px;
}
.title_section .main_title .flaticon-shopping-cart {
  font-size: 26px;
  vertical-align: middle;
  margin: 0 12px;
}
.title_section .steps_line {
  margin: 28px 0 10px;
}
@media all and (max-width: 992px) {
  .title_section .steps_line {
    display: none;
  }
}
.title_section .steps_line .line {
  height: 5px;
  background: #e4e4e4;
  display: inline-block;
  width: calc(34% - 38px);
  vertical-align: top;
}
@media all and (max-width: 992px) {
  .title_section .steps_line .line {
    width: calc(34% - 25.5px);
  }
}
.title_section .steps_line .line.active {
  background: #2d247a;
}
.title_section .steps_line .line.active.line_1 {
  background: #d169dc;
  /* Old browsers */
  background: -moz-linear-gradient(left, #d169dc 0%, #7db9e8 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #d169dc 0%, #7db9e8 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #d169dc 0%, #7db9e8 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d169dc', endColorstr='#7db9e8',GradientType=1 );
  /* IE6-9 */
}
.title_section .steps_line .line.active.line_2 {
  background: #7db9e8;
  /* Old browsers */
  background: -moz-linear-gradient(left, #7db9e8 0%, #2966d9 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #7db9e8 0%, #2966d9 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #7db9e8 0%, #2966d9 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7db9e8', endColorstr='#2966d9',GradientType=1 );
  /* IE6-9 */
}
.title_section .steps_line .line.active + .arrow_holder {
  margin-top: -2px;
}
.title_section .steps_line .arrow_holder {
  display: inline-block;
  width: 22px;
  height: 28px;
  margin: 0px 5px -17px;
  vertical-align: middle;
  text-align: center;
  font-size: 22px;
  margin-top: -21px;
  position: relative;
}
.title_section .steps_line .arrow_holder .arrow {
  font-size: 22px;
}
.title_section .steps_line .arrow_holder .arrow.active {
  color: #2d247a;
}
.title_section .steps_line .arrow_holder .arrow.active:before {
  font-weight: 900;
}
.title_section .steps_line .arrow_holder .arrow.active + .desc a {
  color: #1c1565;
  font-weight: 600;
}
.title_section .steps_line .arrow_holder .desc {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 21px;
  /* text-transform: uppercase; */
  font-weight: 400;
  font-size: 9.8pt;
  white-space: nowrap;
  color: black;
}
.title_section .steps_line .arrow_holder .desc a {
  color: #9f9f9f;
}
@media all and (max-width: 992px) {
  .title_section .steps_line .arrow_holder .desc a {
    font-size: 9pt;
  }
}

/**
* Order footer buttons
* main class: .order_footer_buttons
* styled elements: btn.back, btb.continue_order
*/
.order_footer_buttons {
  margin: 0px 0 20px;
  float: left;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

@media all and (max-width: 992px)  {
  .order_footer_buttons {
    flex-direction: column-reverse;
    align-items: center;
  }
}

.btn.back {
  font-weight: 500;
  color: black;
  line-height: 1;
  background: #efeff0;
  color: #4a4a4a;
  float: left;
  transition: none;
  letter-spacing: -0.7px;
  font-size: 14px;
  padding: 13px;
  min-width: 100px;
  border-radius: 9px 9px 9px 9px;
  /*            &:before {
                  content: '\f104';
                  font-family: "FontAwesome";
                  display: inline-block;
                  padding: 0 30px;
                  font-size: 20px;
              }*/
}
@media all and (max-width: 992px) {
  .btn.back {
    display: block;
    width: 100%;
    max-width: 400px;
    margin-top: 4em;
  }
}
.btn.back:hover {
  background: #e0e0e0;
  /*                border-color: #e2375c;*/
}
.btn.continue_order {
  font-weight: 500;
  color: black;
  line-height: 1;
  color: white;
  float: right;
  transition: none;
  letter-spacing: -0.7px;
  font-size: 14px;
  padding: 12px 0px 11px 13px;
  border-radius: 0px 0px 9px 9px;
  border: none;
  width: calc(100% + 12px);
  margin-right: -6px;
  margin-bottom: -11px;
  background: -moz-linear-gradient(left, #c17df6 0%, #054fb9 100%);
  background: -webkit-linear-gradient(left, #c17df6 0%, #054fb9 100%);
  background: linear-gradient(to right, #c17df6 0%, #054fb9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c17df6', endColorstr='#054fb9',GradientType=1 );
  transition: all 0.3s;
}
.btn.continue_order:hover {
  box-shadow: inset 0px -60px 29px -10px rgba(222, 91, 249, 0.3);
}
.btn.continue_order:after {
  content: "\f105";
  font-family: "FontAwesome";
  display: inline-block;
  padding: 3px 10px 3px 4px;
  font-size: 11px;
}
.btn.continue_order:focus {
  outline: none !important;
}

/**
* Icons
* main class: icon-*
*/
@font-face {
  font-family: "Linearicons";
  src: url("fonts/Linearicons.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "Linearicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Enable Ligatures ================ */
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  -o-font-feature-settings: "liga";
  font-feature-settings: "liga";
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-home:before {
  content: "\e600";
}

.icon-home2:before {
  content: "\e601";
}

.icon-home3:before {
  content: "\e602";
}

.icon-home4:before {
  content: "\e603";
}

.icon-home5:before {
  content: "\e604";
}

.icon-home6:before {
  content: "\e605";
}

.icon-bathtub:before {
  content: "\e606";
}

.icon-toothbrush:before {
  content: "\e607";
}

.icon-bed:before {
  content: "\e608";
}

.icon-couch:before {
  content: "\e609";
}

.icon-chair:before {
  content: "\e60a";
}

.icon-city:before {
  content: "\e60b";
}

.icon-apartment:before {
  content: "\e60c";
}

.icon-pencil:before {
  content: "\e60d";
}

.icon-pencil2:before {
  content: "\e60e";
}

.icon-pen:before {
  content: "\e60f";
}

.icon-pencil3:before {
  content: "\e610";
}

.icon-eraser:before {
  content: "\e611";
}

.icon-pencil4:before {
  content: "\e612";
}

.icon-pencil5:before {
  content: "\e613";
}

.icon-feather:before {
  content: "\e614";
}

.icon-feather2:before {
  content: "\e615";
}

.icon-feather3:before {
  content: "\e616";
}

.icon-pen2:before {
  content: "\e617";
}

.icon-pen-add:before {
  content: "\e618";
}

.icon-pen-remove:before {
  content: "\e619";
}

.icon-vector:before {
  content: "\e61a";
}

.icon-pen3:before {
  content: "\e61b";
}

.icon-blog:before {
  content: "\e61c";
}

.icon-brush:before {
  content: "\e61d";
}

.icon-brush2:before {
  content: "\e61e";
}

.icon-spray:before {
  content: "\e61f";
}

.icon-paint-roller:before {
  content: "\e620";
}

.icon-stamp:before {
  content: "\e621";
}

.icon-tape:before {
  content: "\e622";
}

.icon-desk-tape:before {
  content: "\e623";
}

.icon-texture:before {
  content: "\e624";
}

.icon-eye-dropper:before {
  content: "\e625";
}

.icon-palette:before {
  content: "\e626";
}

.icon-color-sampler:before {
  content: "\e627";
}

.icon-bucket:before {
  content: "\e628";
}

.icon-gradient:before {
  content: "\e629";
}

.icon-gradient2:before {
  content: "\e62a";
}

.icon-magic-wand:before {
  content: "\e62b";
}

.icon-magnet:before {
  content: "\e62c";
}

.icon-pencil-ruler:before {
  content: "\e62d";
}

.icon-pencil-ruler2:before {
  content: "\e62e";
}

.icon-compass:before {
  content: "\e62f";
}

.icon-aim:before {
  content: "\e630";
}

.icon-gun:before {
  content: "\e631";
}

.icon-bottle:before {
  content: "\e632";
}

.icon-drop:before {
  content: "\e633";
}

.icon-drop-crossed:before {
  content: "\e634";
}

.icon-drop2:before {
  content: "\e635";
}

.icon-snow:before {
  content: "\e636";
}

.icon-snow2:before {
  content: "\e637";
}

.icon-fire:before {
  content: "\e638";
}

.icon-lighter:before {
  content: "\e639";
}

.icon-knife:before {
  content: "\e63a";
}

.icon-dagger:before {
  content: "\e63b";
}

.icon-tissue:before {
  content: "\e63c";
}

.icon-toilet-paper:before {
  content: "\e63d";
}

.icon-poop:before {
  content: "\e63e";
}

.icon-umbrella:before {
  content: "\e63f";
}

.icon-umbrella2:before {
  content: "\e640";
}

.icon-rain:before {
  content: "\e641";
}

.icon-tornado:before {
  content: "\e642";
}

.icon-wind:before {
  content: "\e643";
}

.icon-fan:before {
  content: "\e644";
}

.icon-contrast:before {
  content: "\e645";
}

.icon-sun-small:before {
  content: "\e646";
}

.icon-sun:before {
  content: "\e647";
}

.icon-sun2:before {
  content: "\e648";
}

.icon-moon:before {
  content: "\e649";
}

.icon-cloud:before {
  content: "\e64a";
}

.icon-cloud-upload:before {
  content: "\e64b";
}

.icon-cloud-download:before {
  content: "\e64c";
}

.icon-cloud-rain:before {
  content: "\e64d";
}

.icon-cloud-hailstones:before {
  content: "\e64e";
}

.icon-cloud-snow:before {
  content: "\e64f";
}

.icon-cloud-windy:before {
  content: "\e650";
}

.icon-sun-wind:before {
  content: "\e651";
}

.icon-cloud-fog:before {
  content: "\e652";
}

.icon-cloud-sun:before {
  content: "\e653";
}

.icon-cloud-lightning:before {
  content: "\e654";
}

.icon-cloud-sync:before {
  content: "\e655";
}

.icon-cloud-lock:before {
  content: "\e656";
}

.icon-cloud-gear:before {
  content: "\e657";
}

.icon-cloud-alert:before {
  content: "\e658";
}

.icon-cloud-check:before {
  content: "\e659";
}

.icon-cloud-cross:before {
  content: "\e65a";
}

.icon-cloud-crossed:before {
  content: "\e65b";
}

.icon-cloud-database:before {
  content: "\e65c";
}

.icon-database:before {
  content: "\e65d";
}

.icon-database-add:before {
  content: "\e65e";
}

.icon-database-remove:before {
  content: "\e65f";
}

.icon-database-lock:before {
  content: "\e660";
}

.icon-database-refresh:before {
  content: "\e661";
}

.icon-database-check:before {
  content: "\e662";
}

.icon-database-history:before {
  content: "\e663";
}

.icon-database-upload:before {
  content: "\e664";
}

.icon-database-download:before {
  content: "\e665";
}

.icon-server:before {
  content: "\e666";
}

.icon-shield:before {
  content: "\e667";
}

.icon-shield-check:before {
  content: "\e668";
}

.icon-shield-alert:before {
  content: "\e669";
}

.icon-shield-cross:before {
  content: "\e66a";
}

.icon-lock:before {
  content: "\e66b";
}

.icon-rotation-lock:before {
  content: "\e66c";
}

.icon-unlock:before {
  content: "\e66d";
}

.icon-key:before {
  content: "\e66e";
}

.icon-key-hole:before {
  content: "\e66f";
}

.icon-toggle-off:before {
  content: "\e670";
}

.icon-toggle-on:before {
  content: "\e671";
}

.icon-cog:before {
  content: "\e672";
}

.icon-cog2:before {
  content: "\e673";
}

.icon-wrench:before {
  content: "\e674";
}

.icon-screwdriver:before {
  content: "\e675";
}

.icon-hammer-wrench:before {
  content: "\e676";
}

.icon-hammer:before {
  content: "\e677";
}

.icon-saw:before {
  content: "\e678";
}

.icon-axe:before {
  content: "\e679";
}

.icon-axe2:before {
  content: "\e67a";
}

.icon-shovel:before {
  content: "\e67b";
}

.icon-pickaxe:before {
  content: "\e67c";
}

.icon-factory:before {
  content: "\e67d";
}

.icon-factory2:before {
  content: "\e67e";
}

.icon-recycle:before {
  content: "\e67f";
}

.icon-trash:before {
  content: "\e680";
}

.icon-trash2:before {
  content: "\e681";
}

.icon-trash3:before {
  content: "\e682";
}

.icon-broom:before {
  content: "\e683";
}

.icon-game:before {
  content: "\e684";
}

.icon-gamepad:before {
  content: "\e685";
}

.icon-joystick:before {
  content: "\e686";
}

.icon-dice:before {
  content: "\e687";
}

.icon-spades:before {
  content: "\e688";
}

.icon-diamonds:before {
  content: "\e689";
}

.icon-clubs:before {
  content: "\e68a";
}

.icon-hearts:before {
  content: "\e68b";
}

.icon-heart:before {
  content: "\e68c";
}

.icon-star:before {
  content: "\e68d";
}

.icon-star-half:before {
  content: "\e68e";
}

.icon-star-empty:before {
  content: "\e68f";
}

.icon-flag:before {
  content: "\e690";
}

.icon-flag2:before {
  content: "\e691";
}

.icon-flag3:before {
  content: "\e692";
}

.icon-mailbox-full:before {
  content: "\e693";
}

.icon-mailbox-empty:before {
  content: "\e694";
}

.icon-at-sign:before {
  content: "\e695";
}

.icon-envelope:before {
  content: "\e696";
}

.icon-envelope-open:before {
  content: "\e697";
}

.icon-paperclip:before {
  content: "\e698";
}

.icon-paper-plane:before {
  content: "\e699";
}

.icon-reply:before {
  content: "\e69a";
}

.icon-reply-all:before {
  content: "\e69b";
}

.icon-inbox:before {
  content: "\e69c";
}

.icon-inbox2:before {
  content: "\e69d";
}

.icon-outbox:before {
  content: "\e69e";
}

.icon-box:before {
  content: "\e69f";
}

.icon-archive:before {
  content: "\e6a0";
}

.icon-archive2:before {
  content: "\e6a1";
}

.icon-drawers:before {
  content: "\e6a2";
}

.icon-drawers2:before {
  content: "\e6a3";
}

.icon-drawers3:before {
  content: "\e6a4";
}

.icon-eye:before {
  content: "\e6a5";
}

.icon-eye-crossed:before {
  content: "\e6a6";
}

.icon-eye-plus:before {
  content: "\e6a7";
}

.icon-eye-minus:before {
  content: "\e6a8";
}

.icon-binoculars:before {
  content: "\e6a9";
}

.icon-binoculars2:before {
  content: "\e6aa";
}

.icon-hdd:before {
  content: "\e6ab";
}

.icon-hdd-down:before {
  content: "\e6ac";
}

.icon-hdd-up:before {
  content: "\e6ad";
}

.icon-floppy-disk:before {
  content: "\e6ae";
}

.icon-disc:before {
  content: "\e6af";
}

.icon-tape2:before {
  content: "\e6b0";
}

.icon-printer:before {
  content: "\e6b1";
}

.icon-shredder:before {
  content: "\e6b2";
}

.icon-file-empty:before {
  content: "\e6b3";
}

.icon-file-add:before {
  content: "\e6b4";
}

.icon-file-check:before {
  content: "\e6b5";
}

.icon-file-lock:before {
  content: "\e6b6";
}

.icon-files:before {
  content: "\e6b7";
}

.icon-copy:before {
  content: "\e6b8";
}

.icon-compare:before {
  content: "\e6b9";
}

.icon-folder:before {
  content: "\e6ba";
}

.icon-folder-search:before {
  content: "\e6bb";
}

.icon-folder-plus:before {
  content: "\e6bc";
}

.icon-folder-minus:before {
  content: "\e6bd";
}

.icon-folder-download:before {
  content: "\e6be";
}

.icon-folder-upload:before {
  content: "\e6bf";
}

.icon-folder-star:before {
  content: "\e6c0";
}

.icon-folder-heart:before {
  content: "\e6c1";
}

.icon-folder-user:before {
  content: "\e6c2";
}

.icon-folder-shared:before {
  content: "\e6c3";
}

.icon-folder-music:before {
  content: "\e6c4";
}

.icon-folder-picture:before {
  content: "\e6c5";
}

.icon-folder-film:before {
  content: "\e6c6";
}

.icon-scissors:before {
  content: "\e6c7";
}

.icon-paste:before {
  content: "\e6c8";
}

.icon-clipboard-empty:before {
  content: "\e6c9";
}

.icon-clipboard-pencil:before {
  content: "\e6ca";
}

.icon-clipboard-text:before {
  content: "\e6cb";
}

.icon-clipboard-check:before {
  content: "\e6cc";
}

.icon-clipboard-down:before {
  content: "\e6cd";
}

.icon-clipboard-left:before {
  content: "\e6ce";
}

.icon-clipboard-alert:before {
  content: "\e6cf";
}

.icon-clipboard-user:before {
  content: "\e6d0";
}

.icon-register:before {
  content: "\e6d1";
}

.icon-enter:before {
  content: "\e6d2";
}

.icon-exit:before {
  content: "\e6d3";
}

.icon-papers:before {
  content: "\e6d4";
}

.icon-news:before {
  content: "\e6d5";
}

.icon-reading:before {
  content: "\e6d6";
}

.icon-typewriter:before {
  content: "\e6d7";
}

.icon-document:before {
  content: "\e6d8";
}

.icon-document2:before {
  content: "\e6d9";
}

.icon-graduation-hat:before {
  content: "\e6da";
}

.icon-license:before {
  content: "\e6db";
}

.icon-license2:before {
  content: "\e6dc";
}

.icon-medal-empty:before {
  content: "\e6dd";
}

.icon-medal-first:before {
  content: "\e6de";
}

.icon-medal-second:before {
  content: "\e6df";
}

.icon-medal-third:before {
  content: "\e6e0";
}

.icon-podium:before {
  content: "\e6e1";
}

.icon-trophy:before {
  content: "\e6e2";
}

.icon-trophy2:before {
  content: "\e6e3";
}

.icon-music-note:before {
  content: "\e6e4";
}

.icon-music-note2:before {
  content: "\e6e5";
}

.icon-music-note3:before {
  content: "\e6e6";
}

.icon-playlist:before {
  content: "\e6e7";
}

.icon-playlist-add:before {
  content: "\e6e8";
}

.icon-guitar:before {
  content: "\e6e9";
}

.icon-trumpet:before {
  content: "\e6ea";
}

.icon-album:before {
  content: "\e6eb";
}

.icon-shuffle:before {
  content: "\e6ec";
}

.icon-repeat-one:before {
  content: "\e6ed";
}

.icon-repeat:before {
  content: "\e6ee";
}

.icon-headphones:before {
  content: "\e6ef";
}

.icon-headset:before {
  content: "\e6f0";
}

.icon-loudspeaker:before {
  content: "\e6f1";
}

.icon-equalizer:before {
  content: "\e6f2";
}

.icon-theater:before {
  content: "\e6f3";
}

.icon-3d-glasses:before {
  content: "\e6f4";
}

.icon-ticket:before {
  content: "\e6f5";
}

.icon-presentation:before {
  content: "\e6f6";
}

.icon-play:before {
  content: "\e6f7";
}

.icon-film-play:before {
  content: "\e6f8";
}

.icon-clapboard-play:before {
  content: "\e6f9";
}

.icon-media:before {
  content: "\e6fa";
}

.icon-film:before {
  content: "\e6fb";
}

.icon-film2:before {
  content: "\e6fc";
}

.icon-surveillance:before {
  content: "\e6fd";
}

.icon-surveillance2:before {
  content: "\e6fe";
}

.icon-camera:before {
  content: "\e6ff";
}

.icon-camera-crossed:before {
  content: "\e700";
}

.icon-camera-play:before {
  content: "\e701";
}

.icon-time-lapse:before {
  content: "\e702";
}

.icon-record:before {
  content: "\e703";
}

.icon-camera2:before {
  content: "\e704";
}

.icon-camera-flip:before {
  content: "\e705";
}

.icon-panorama:before {
  content: "\e706";
}

.icon-time-lapse2:before {
  content: "\e707";
}

.icon-shutter:before {
  content: "\e708";
}

.icon-shutter2:before {
  content: "\e709";
}

.icon-face-detection:before {
  content: "\e70a";
}

.icon-flare:before {
  content: "\e70b";
}

.icon-convex:before {
  content: "\e70c";
}

.icon-concave:before {
  content: "\e70d";
}

.icon-picture:before {
  content: "\e70e";
}

.icon-picture2:before {
  content: "\e70f";
}

.icon-picture3:before {
  content: "\e710";
}

.icon-pictures:before {
  content: "\e711";
}

.icon-book:before {
  content: "\e712";
}

.icon-audio-book:before {
  content: "\e713";
}

.icon-book2:before {
  content: "\e714";
}

.icon-bookmark:before {
  content: "\e715";
}

.icon-bookmark2:before {
  content: "\e716";
}

.icon-label:before {
  content: "\e717";
}

.icon-library:before {
  content: "\e718";
}

.icon-library2:before {
  content: "\e719";
}

.icon-contacts:before {
  content: "\e71a";
}

.icon-profile:before {
  content: "\e71b";
}

.icon-portrait:before {
  content: "\e71c";
}

.icon-portrait2:before {
  content: "\e71d";
}

.icon-user:before {
  content: "\e71e";
}

.icon-user-plus:before {
  content: "\e71f";
}

.icon-user-minus:before {
  content: "\e720";
}

.icon-user-lock:before {
  content: "\e721";
}

.icon-users:before {
  content: "\e722";
}

.icon-users2:before {
  content: "\e723";
}

.icon-users-plus:before {
  content: "\e724";
}

.icon-users-minus:before {
  content: "\e725";
}

.icon-group-work:before {
  content: "\e726";
}

.icon-woman:before {
  content: "\e727";
}

.icon-man:before {
  content: "\e728";
}

.icon-baby:before {
  content: "\e729";
}

.icon-baby2:before {
  content: "\e72a";
}

.icon-baby3:before {
  content: "\e72b";
}

.icon-baby-bottle:before {
  content: "\e72c";
}

.icon-walk:before {
  content: "\e72d";
}

.icon-hand-waving:before {
  content: "\e72e";
}

.icon-jump:before {
  content: "\e72f";
}

.icon-run:before {
  content: "\e730";
}

.icon-woman2:before {
  content: "\e731";
}

.icon-man2:before {
  content: "\e732";
}

.icon-man-woman:before {
  content: "\e733";
}

.icon-height:before {
  content: "\e734";
}

.icon-weight:before {
  content: "\e735";
}

.icon-scale:before {
  content: "\e736";
}

.icon-button:before {
  content: "\e737";
}

.icon-bow-tie:before {
  content: "\e738";
}

.icon-tie:before {
  content: "\e739";
}

.icon-socks:before {
  content: "\e73a";
}

.icon-shoe:before {
  content: "\e73b";
}

.icon-shoes:before {
  content: "\e73c";
}

.icon-hat:before {
  content: "\e73d";
}

.icon-pants:before {
  content: "\e73e";
}

.icon-shorts:before {
  content: "\e73f";
}

.icon-flip-flops:before {
  content: "\e740";
}

.icon-shirt:before {
  content: "\e741";
}

.icon-hanger:before {
  content: "\e742";
}

.icon-laundry:before {
  content: "\e743";
}

.icon-store:before {
  content: "\e744";
}

.icon-haircut:before {
  content: "\e745";
}

.icon-store-24:before {
  content: "\e746";
}

.icon-barcode:before {
  content: "\e747";
}

.icon-barcode2:before {
  content: "\e748";
}

.icon-barcode3:before {
  content: "\e749";
}

.icon-cashier:before {
  content: "\e74a";
}

.icon-bag:before {
  content: "\e74b";
}

.icon-bag2:before {
  content: "\e74c";
}

.icon-cart:before {
  content: "\e74d";
}

.icon-cart-empty:before {
  content: "\e74e";
}

.icon-cart-full:before {
  content: "\e74f";
}

.icon-cart-plus:before {
  content: "\e750";
}

.icon-cart-plus2:before {
  content: "\e751";
}

.icon-cart-add:before {
  content: "\e752";
}

.icon-cart-remove:before {
  content: "\e753";
}

.icon-cart-exchange:before {
  content: "\e754";
}

.icon-tag:before {
  content: "\e755";
}

.icon-tags:before {
  content: "\e756";
}

.icon-receipt:before {
  content: "\e757";
}

.icon-wallet:before {
  content: "\e758";
}

.icon-credit-card:before {
  content: "\e759";
}

.icon-cash-dollar:before {
  content: "\e75a";
}

.icon-cash-euro:before {
  content: "\e75b";
}

.icon-cash-pound:before {
  content: "\e75c";
}

.icon-cash-yen:before {
  content: "\e75d";
}

.icon-bag-dollar:before {
  content: "\e75e";
}

.icon-bag-euro:before {
  content: "\e75f";
}

.icon-bag-pound:before {
  content: "\e760";
}

.icon-bag-yen:before {
  content: "\e761";
}

.icon-coin-dollar:before {
  content: "\e762";
}

.icon-coin-euro:before {
  content: "\e763";
}

.icon-coin-pound:before {
  content: "\e764";
}

.icon-coin-yen:before {
  content: "\e765";
}

.icon-calculator:before {
  content: "\e766";
}

.icon-calculator2:before {
  content: "\e767";
}

.icon-abacus:before {
  content: "\e768";
}

.icon-vault:before {
  content: "\e769";
}

.icon-telephone:before {
  content: "\e76a";
}

.icon-phone-lock:before {
  content: "\e76b";
}

.icon-phone-wave:before {
  content: "\e76c";
}

.icon-phone-pause:before {
  content: "\e76d";
}

.icon-phone-outgoing:before {
  content: "\e76e";
}

.icon-phone-incoming:before {
  content: "\e76f";
}

.icon-phone-in-out:before {
  content: "\e770";
}

.icon-phone-error:before {
  content: "\e771";
}

.icon-phone-sip:before {
  content: "\e772";
}

.icon-phone-plus:before {
  content: "\e773";
}

.icon-phone-minus:before {
  content: "\e774";
}

.icon-voicemail:before {
  content: "\e775";
}

.icon-dial:before {
  content: "\e776";
}

.icon-telephone2:before {
  content: "\e777";
}

.icon-pushpin:before {
  content: "\e778";
}

.icon-pushpin2:before {
  content: "\e779";
}

.icon-map-marker:before {
  content: "\e77a";
}

.icon-map-marker-user:before {
  content: "\e77b";
}

.icon-map-marker-down:before {
  content: "\e77c";
}

.icon-map-marker-check:before {
  content: "\e77d";
}

.icon-map-marker-crossed:before {
  content: "\e77e";
}

.icon-radar:before {
  content: "\e77f";
}

.icon-compass2:before {
  content: "\e780";
}

.icon-map:before {
  content: "\e781";
}

.icon-map2:before {
  content: "\e782";
}

.icon-location:before {
  content: "\e783";
}

.icon-road-sign:before {
  content: "\e784";
}

.icon-calendar-empty:before {
  content: "\e785";
}

.icon-calendar-check:before {
  content: "\e786";
}

.icon-calendar-cross:before {
  content: "\e787";
}

.icon-calendar-31:before {
  content: "\e788";
}

.icon-calendar-full:before {
  content: "\e789";
}

.icon-calendar-insert:before {
  content: "\e78a";
}

.icon-calendar-text:before {
  content: "\e78b";
}

.icon-calendar-user:before {
  content: "\e78c";
}

.icon-mouse:before {
  content: "\e78d";
}

.icon-mouse-left:before {
  content: "\e78e";
}

.icon-mouse-right:before {
  content: "\e78f";
}

.icon-mouse-both:before {
  content: "\e790";
}

.icon-keyboard:before {
  content: "\e791";
}

.icon-keyboard-up:before {
  content: "\e792";
}

.icon-keyboard-down:before {
  content: "\e793";
}

.icon-delete:before {
  content: "\e794";
}

.icon-spell-check:before {
  content: "\e795";
}

.icon-escape:before {
  content: "\e796";
}

.icon-enter2:before {
  content: "\e797";
}

.icon-screen:before {
  content: "\e798";
}

.icon-aspect-ratio:before {
  content: "\e799";
}

.icon-signal:before {
  content: "\e79a";
}

.icon-signal-lock:before {
  content: "\e79b";
}

.icon-signal-80:before {
  content: "\e79c";
}

.icon-signal-60:before {
  content: "\e79d";
}

.icon-signal-40:before {
  content: "\e79e";
}

.icon-signal-20:before {
  content: "\e79f";
}

.icon-signal-0:before {
  content: "\e7a0";
}

.icon-signal-blocked:before {
  content: "\e7a1";
}

.icon-sim:before {
  content: "\e7a2";
}

.icon-flash-memory:before {
  content: "\e7a3";
}

.icon-usb-drive:before {
  content: "\e7a4";
}

.icon-phone:before {
  content: "\e7a5";
}

.icon-smartphone:before {
  content: "\e7a6";
}

.icon-smartphone-notification:before {
  content: "\e7a7";
}

.icon-smartphone-vibration:before {
  content: "\e7a8";
}

.icon-smartphone-embed:before {
  content: "\e7a9";
}

.icon-smartphone-waves:before {
  content: "\e7aa";
}

.icon-tablet:before {
  content: "\e7ab";
}

.icon-tablet2:before {
  content: "\e7ac";
}

.icon-laptop:before {
  content: "\e7ad";
}

.icon-laptop-phone:before {
  content: "\e7ae";
}

.icon-desktop:before {
  content: "\e7af";
}

.icon-launch:before {
  content: "\e7b0";
}

.icon-new-tab:before {
  content: "\e7b1";
}

.icon-window:before {
  content: "\e7b2";
}

.icon-cable:before {
  content: "\e7b3";
}

.icon-cable2:before {
  content: "\e7b4";
}

.icon-tv:before {
  content: "\e7b5";
}

.icon-radio:before {
  content: "\e7b6";
}

.icon-remote-control:before {
  content: "\e7b7";
}

.icon-power-switch:before {
  content: "\e7b8";
}

.icon-power:before {
  content: "\e7b9";
}

.icon-power-crossed:before {
  content: "\e7ba";
}

.icon-flash-auto:before {
  content: "\e7bb";
}

.icon-lamp:before {
  content: "\e7bc";
}

.icon-flashlight:before {
  content: "\e7bd";
}

.icon-lampshade:before {
  content: "\e7be";
}

.icon-cord:before {
  content: "\e7bf";
}

.icon-outlet:before {
  content: "\e7c0";
}

.icon-battery-power:before {
  content: "\e7c1";
}

.icon-battery-empty:before {
  content: "\e7c2";
}

.icon-battery-alert:before {
  content: "\e7c3";
}

.icon-battery-error:before {
  content: "\e7c4";
}

.icon-battery-low1:before {
  content: "\e7c5";
}

.icon-battery-low2:before {
  content: "\e7c6";
}

.icon-battery-low3:before {
  content: "\e7c7";
}

.icon-battery-mid1:before {
  content: "\e7c8";
}

.icon-battery-mid2:before {
  content: "\e7c9";
}

.icon-battery-mid3:before {
  content: "\e7ca";
}

.icon-battery-full:before {
  content: "\e7cb";
}

.icon-battery-charging:before {
  content: "\e7cc";
}

.icon-battery-charging2:before {
  content: "\e7cd";
}

.icon-battery-charging3:before {
  content: "\e7ce";
}

.icon-battery-charging4:before {
  content: "\e7cf";
}

.icon-battery-charging5:before {
  content: "\e7d0";
}

.icon-battery-charging6:before {
  content: "\e7d1";
}

.icon-battery-charging7:before {
  content: "\e7d2";
}

.icon-chip:before {
  content: "\e7d3";
}

.icon-chip-x64:before {
  content: "\e7d4";
}

.icon-chip-x86:before {
  content: "\e7d5";
}

.icon-bubble:before {
  content: "\e7d6";
}

.icon-bubbles:before {
  content: "\e7d7";
}

.icon-bubble-dots:before {
  content: "\e7d8";
}

.icon-bubble-alert:before {
  content: "\e7d9";
}

.icon-bubble-question:before {
  content: "\e7da";
}

.icon-bubble-text:before {
  content: "\e7db";
}

.icon-bubble-pencil:before {
  content: "\e7dc";
}

.icon-bubble-picture:before {
  content: "\e7dd";
}

.icon-bubble-video:before {
  content: "\e7de";
}

.icon-bubble-user:before {
  content: "\e7df";
}

.icon-bubble-quote:before {
  content: "\e7e0";
}

.icon-bubble-heart:before {
  content: "\e7e1";
}

.icon-bubble-emoticon:before {
  content: "\e7e2";
}

.icon-bubble-attachment:before {
  content: "\e7e3";
}

.icon-phone-bubble:before {
  content: "\e7e4";
}

.icon-quote-open:before {
  content: "\e7e5";
}

.icon-quote-close:before {
  content: "\e7e6";
}

.icon-dna:before {
  content: "\e7e7";
}

.icon-heart-pulse:before {
  content: "\e7e8";
}

.icon-pulse:before {
  content: "\e7e9";
}

.icon-syringe:before {
  content: "\e7ea";
}

.icon-pills:before {
  content: "\e7eb";
}

.icon-first-aid:before {
  content: "\e7ec";
}

.icon-lifebuoy:before {
  content: "\e7ed";
}

.icon-bandage:before {
  content: "\e7ee";
}

.icon-bandages:before {
  content: "\e7ef";
}

.icon-thermometer:before {
  content: "\e7f0";
}

.icon-microscope:before {
  content: "\e7f1";
}

.icon-brain:before {
  content: "\e7f2";
}

.icon-beaker:before {
  content: "\e7f3";
}

.icon-skull:before {
  content: "\e7f4";
}

.icon-bone:before {
  content: "\e7f5";
}

.icon-construction:before {
  content: "\e7f6";
}

.icon-construction-cone:before {
  content: "\e7f7";
}

.icon-pie-chart:before {
  content: "\e7f8";
}

.icon-pie-chart2:before {
  content: "\e7f9";
}

.icon-graph:before {
  content: "\e7fa";
}

.icon-chart-growth:before {
  content: "\e7fb";
}

.icon-chart-bars:before {
  content: "\e7fc";
}

.icon-chart-settings:before {
  content: "\e7fd";
}

.icon-cake:before {
  content: "\e7fe";
}

.icon-gift:before {
  content: "\e7ff";
}

.icon-balloon:before {
  content: "\e800";
}

.icon-rank:before {
  content: "\e801";
}

.icon-rank2:before {
  content: "\e802";
}

.icon-rank3:before {
  content: "\e803";
}

.icon-crown:before {
  content: "\e804";
}

.icon-lotus:before {
  content: "\e805";
}

.icon-diamond:before {
  content: "\e806";
}

.icon-diamond2:before {
  content: "\e807";
}

.icon-diamond3:before {
  content: "\e808";
}

.icon-diamond4:before {
  content: "\e809";
}

.icon-linearicons:before {
  content: "\e80a";
}

.icon-teacup:before {
  content: "\e80b";
}

.icon-teapot:before {
  content: "\e80c";
}

.icon-glass:before {
  content: "\e80d";
}

.icon-bottle2:before {
  content: "\e80e";
}

.icon-glass-cocktail:before {
  content: "\e80f";
}

.icon-glass2:before {
  content: "\e810";
}

.icon-dinner:before {
  content: "\e811";
}

.icon-dinner2:before {
  content: "\e812";
}

.icon-chef:before {
  content: "\e813";
}

.icon-scale2:before {
  content: "\e814";
}

.icon-egg:before {
  content: "\e815";
}

.icon-egg2:before {
  content: "\e816";
}

.icon-eggs:before {
  content: "\e817";
}

.icon-platter:before {
  content: "\e818";
}

.icon-steak:before {
  content: "\e819";
}

.icon-hamburger:before {
  content: "\e81a";
}

.icon-hotdog:before {
  content: "\e81b";
}

.icon-pizza:before {
  content: "\e81c";
}

.icon-sausage:before {
  content: "\e81d";
}

.icon-chicken:before {
  content: "\e81e";
}

.icon-fish:before {
  content: "\e81f";
}

.icon-carrot:before {
  content: "\e820";
}

.icon-cheese:before {
  content: "\e821";
}

.icon-bread:before {
  content: "\e822";
}

.icon-ice-cream:before {
  content: "\e823";
}

.icon-ice-cream2:before {
  content: "\e824";
}

.icon-candy:before {
  content: "\e825";
}

.icon-lollipop:before {
  content: "\e826";
}

.icon-coffee-bean:before {
  content: "\e827";
}

.icon-coffee-cup:before {
  content: "\e828";
}

.icon-cherry:before {
  content: "\e829";
}

.icon-grapes:before {
  content: "\e82a";
}

.icon-citrus:before {
  content: "\e82b";
}

.icon-apple:before {
  content: "\e82c";
}

.icon-leaf:before {
  content: "\e82d";
}

.icon-landscape:before {
  content: "\e82e";
}

.icon-pine-tree:before {
  content: "\e82f";
}

.icon-tree:before {
  content: "\e830";
}

.icon-cactus:before {
  content: "\e831";
}

.icon-paw:before {
  content: "\e832";
}

.icon-footprint:before {
  content: "\e833";
}

.icon-speed-slow:before {
  content: "\e834";
}

.icon-speed-medium:before {
  content: "\e835";
}

.icon-speed-fast:before {
  content: "\e836";
}

.icon-rocket:before {
  content: "\e837";
}

.icon-hammer2:before {
  content: "\e838";
}

.icon-balance:before {
  content: "\e839";
}

.icon-briefcase:before {
  content: "\e83a";
}

.icon-luggage-weight:before {
  content: "\e83b";
}

.icon-dolly:before {
  content: "\e83c";
}

.icon-plane:before {
  content: "\e83d";
}

.icon-plane-crossed:before {
  content: "\e83e";
}

.icon-helicopter:before {
  content: "\e83f";
}

.icon-traffic-lights:before {
  content: "\e840";
}

.icon-siren:before {
  content: "\e841";
}

.icon-road:before {
  content: "\e842";
}

.icon-engine:before {
  content: "\e843";
}

.icon-oil-pressure:before {
  content: "\e844";
}

.icon-coolant-temperature:before {
  content: "\e845";
}

.icon-car-battery:before {
  content: "\e846";
}

.icon-gas:before {
  content: "\e847";
}

.icon-gallon:before {
  content: "\e848";
}

.icon-transmission:before {
  content: "\e849";
}

.icon-car:before {
  content: "\e84a";
}

.icon-car-wash:before {
  content: "\e84b";
}

.icon-car-wash2:before {
  content: "\e84c";
}

.icon-bus:before {
  content: "\e84d";
}

.icon-bus2:before {
  content: "\e84e";
}

.icon-car2:before {
  content: "\e84f";
}

.icon-parking:before {
  content: "\e850";
}

.icon-car-lock:before {
  content: "\e851";
}

.icon-taxi:before {
  content: "\e852";
}

.icon-car-siren:before {
  content: "\e853";
}

.icon-car-wash3:before {
  content: "\e854";
}

.icon-car-wash4:before {
  content: "\e855";
}

.icon-ambulance:before {
  content: "\e856";
}

.icon-truck:before {
  content: "\e857";
}

.icon-trailer:before {
  content: "\e858";
}

.icon-scale-truck:before {
  content: "\e859";
}

.icon-train:before {
  content: "\e85a";
}

.icon-ship:before {
  content: "\e85b";
}

.icon-ship2:before {
  content: "\e85c";
}

.icon-anchor:before {
  content: "\e85d";
}

.icon-boat:before {
  content: "\e85e";
}

.icon-bicycle:before {
  content: "\e85f";
}

.icon-bicycle2:before {
  content: "\e860";
}

.icon-dumbbell:before {
  content: "\e861";
}

.icon-bench-press:before {
  content: "\e862";
}

.icon-swim:before {
  content: "\e863";
}

.icon-football:before {
  content: "\e864";
}

.icon-baseball-bat:before {
  content: "\e865";
}

.icon-baseball:before {
  content: "\e866";
}

.icon-tennis:before {
  content: "\e867";
}

.icon-tennis2:before {
  content: "\e868";
}

.icon-ping-pong:before {
  content: "\e869";
}

.icon-hockey:before {
  content: "\e86a";
}

.icon-8ball:before {
  content: "\e86b";
}

.icon-bowling:before {
  content: "\e86c";
}

.icon-bowling-pins:before {
  content: "\e86d";
}

.icon-golf:before {
  content: "\e86e";
}

.icon-golf2:before {
  content: "\e86f";
}

.icon-archery:before {
  content: "\e870";
}

.icon-slingshot:before {
  content: "\e871";
}

.icon-soccer:before {
  content: "\e872";
}

.icon-basketball:before {
  content: "\e873";
}

.icon-cube:before {
  content: "\e874";
}

.icon-3d-rotate:before {
  content: "\e875";
}

.icon-puzzle:before {
  content: "\e876";
}

.icon-glasses:before {
  content: "\e877";
}

.icon-glasses2:before {
  content: "\e878";
}

.icon-accessibility:before {
  content: "\e879";
}

.icon-wheelchair:before {
  content: "\e87a";
}

.icon-wall:before {
  content: "\e87b";
}

.icon-fence:before {
  content: "\e87c";
}

.icon-wall2:before {
  content: "\e87d";
}

.icon-icons:before {
  content: "\e87e";
}

.icon-resize-handle:before {
  content: "\e87f";
}

.icon-icons2:before {
  content: "\e880";
}

.icon-select:before {
  content: "\e881";
}

.icon-select2:before {
  content: "\e882";
}

.icon-site-map:before {
  content: "\e883";
}

.icon-earth:before {
  content: "\e884";
}

.icon-earth-lock:before {
  content: "\e885";
}

.icon-network:before {
  content: "\e886";
}

.icon-network-lock:before {
  content: "\e887";
}

.icon-planet:before {
  content: "\e888";
}

.icon-happy:before {
  content: "\e889";
}

.icon-smile:before {
  content: "\e88a";
}

.icon-grin:before {
  content: "\e88b";
}

.icon-tongue:before {
  content: "\e88c";
}

.icon-sad:before {
  content: "\e88d";
}

.icon-wink:before {
  content: "\e88e";
}

.icon-dream:before {
  content: "\e88f";
}

.icon-shocked:before {
  content: "\e890";
}

.icon-shocked2:before {
  content: "\e891";
}

.icon-tongue2:before {
  content: "\e892";
}

.icon-neutral:before {
  content: "\e893";
}

.icon-happy-grin:before {
  content: "\e894";
}

.icon-cool:before {
  content: "\e895";
}

.icon-mad:before {
  content: "\e896";
}

.icon-grin-evil:before {
  content: "\e897";
}

.icon-evil:before {
  content: "\e898";
}

.icon-wow:before {
  content: "\e899";
}

.icon-annoyed:before {
  content: "\e89a";
}

.icon-wondering:before {
  content: "\e89b";
}

.icon-confused:before {
  content: "\e89c";
}

.icon-zipped:before {
  content: "\e89d";
}

.icon-grumpy:before {
  content: "\e89e";
}

.icon-mustache:before {
  content: "\e89f";
}

.icon-tombstone-hipster:before {
  content: "\e8a0";
}

.icon-tombstone:before {
  content: "\e8a1";
}

.icon-ghost:before {
  content: "\e8a2";
}

.icon-ghost-hipster:before {
  content: "\e8a3";
}

.icon-halloween:before {
  content: "\e8a4";
}

.icon-christmas:before {
  content: "\e8a5";
}

.icon-easter-egg:before {
  content: "\e8a6";
}

.icon-mustache2:before {
  content: "\e8a7";
}

.icon-mustache-glasses:before {
  content: "\e8a8";
}

.icon-pipe:before {
  content: "\e8a9";
}

.icon-alarm:before {
  content: "\e8aa";
}

.icon-alarm-add:before {
  content: "\e8ab";
}

.icon-alarm-snooze:before {
  content: "\e8ac";
}

.icon-alarm-ringing:before {
  content: "\e8ad";
}

.icon-bullhorn:before {
  content: "\e8ae";
}

.icon-hearing:before {
  content: "\e8af";
}

.icon-volume-high:before {
  content: "\e8b0";
}

.icon-volume-medium:before {
  content: "\e8b1";
}

.icon-volume-low:before {
  content: "\e8b2";
}

.icon-volume:before {
  content: "\e8b3";
}

.icon-mute:before {
  content: "\e8b4";
}

.icon-lan:before {
  content: "\e8b5";
}

.icon-lan2:before {
  content: "\e8b6";
}

.icon-wifi:before {
  content: "\e8b7";
}

.icon-wifi-lock:before {
  content: "\e8b8";
}

.icon-wifi-blocked:before {
  content: "\e8b9";
}

.icon-wifi-mid:before {
  content: "\e8ba";
}

.icon-wifi-low:before {
  content: "\e8bb";
}

.icon-wifi-low2:before {
  content: "\e8bc";
}

.icon-wifi-alert:before {
  content: "\e8bd";
}

.icon-wifi-alert-mid:before {
  content: "\e8be";
}

.icon-wifi-alert-low:before {
  content: "\e8bf";
}

.icon-wifi-alert-low2:before {
  content: "\e8c0";
}

.icon-stream:before {
  content: "\e8c1";
}

.icon-stream-check:before {
  content: "\e8c2";
}

.icon-stream-error:before {
  content: "\e8c3";
}

.icon-stream-alert:before {
  content: "\e8c4";
}

.icon-communication:before {
  content: "\e8c5";
}

.icon-communication-crossed:before {
  content: "\e8c6";
}

.icon-broadcast:before {
  content: "\e8c7";
}

.icon-antenna:before {
  content: "\e8c8";
}

.icon-satellite:before {
  content: "\e8c9";
}

.icon-satellite2:before {
  content: "\e8ca";
}

.icon-mic:before {
  content: "\e8cb";
}

.icon-mic-mute:before {
  content: "\e8cc";
}

.icon-mic2:before {
  content: "\e8cd";
}

.icon-spotlights:before {
  content: "\e8ce";
}

.icon-hourglass:before {
  content: "\e8cf";
}

.icon-loading:before {
  content: "\e8d0";
}

.icon-loading2:before {
  content: "\e8d1";
}

.icon-loading3:before {
  content: "\e8d2";
}

.icon-refresh:before {
  content: "\e8d3";
}

.icon-refresh2:before {
  content: "\e8d4";
}

.icon-undo:before {
  content: "\e8d5";
}

.icon-redo:before {
  content: "\e8d6";
}

.icon-jump2:before {
  content: "\e8d7";
}

.icon-undo2:before {
  content: "\e8d8";
}

.icon-redo2:before {
  content: "\e8d9";
}

.icon-sync:before {
  content: "\e8da";
}

.icon-repeat-one2:before {
  content: "\e8db";
}

.icon-sync-crossed:before {
  content: "\e8dc";
}

.icon-sync2:before {
  content: "\e8dd";
}

.icon-repeat-one3:before {
  content: "\e8de";
}

.icon-sync-crossed2:before {
  content: "\e8df";
}

.icon-return:before {
  content: "\e8e0";
}

.icon-return2:before {
  content: "\e8e1";
}

.icon-refund:before {
  content: "\e8e2";
}

.icon-history:before {
  content: "\e8e3";
}

.icon-history2:before {
  content: "\e8e4";
}

.icon-self-timer:before {
  content: "\e8e5";
}

.icon-clock:before {
  content: "\e8e6";
}

.icon-clock2:before {
  content: "\e8e7";
}

.icon-clock3:before {
  content: "\e8e8";
}

.icon-watch:before {
  content: "\e8e9";
}

.icon-alarm2:before {
  content: "\e8ea";
}

.icon-alarm-add2:before {
  content: "\e8eb";
}

.icon-alarm-remove:before {
  content: "\e8ec";
}

.icon-alarm-check:before {
  content: "\e8ed";
}

.icon-alarm-error:before {
  content: "\e8ee";
}

.icon-timer:before {
  content: "\e8ef";
}

.icon-timer-crossed:before {
  content: "\e8f0";
}

.icon-timer2:before {
  content: "\e8f1";
}

.icon-timer-crossed2:before {
  content: "\e8f2";
}

.icon-download:before {
  content: "\e8f3";
}

.icon-upload:before {
  content: "\e8f4";
}

.icon-download2:before {
  content: "\e8f5";
}

.icon-upload2:before {
  content: "\e8f6";
}

.icon-enter-up:before {
  content: "\e8f7";
}

.icon-enter-down:before {
  content: "\e8f8";
}

.icon-enter-left:before {
  content: "\e8f9";
}

.icon-enter-right:before {
  content: "\e8fa";
}

.icon-exit-up:before {
  content: "\e8fb";
}

.icon-exit-down:before {
  content: "\e8fc";
}

.icon-exit-left:before {
  content: "\e8fd";
}

.icon-exit-right:before {
  content: "\e8fe";
}

.icon-enter-up2:before {
  content: "\e8ff";
}

.icon-enter-down2:before {
  content: "\e900";
}

.icon-enter-vertical:before {
  content: "\e901";
}

.icon-enter-left2:before {
  content: "\e902";
}

.icon-enter-right2:before {
  content: "\e903";
}

.icon-enter-horizontal:before {
  content: "\e904";
}

.icon-exit-up2:before {
  content: "\e905";
}

.icon-exit-down2:before {
  content: "\e906";
}

.icon-exit-left2:before {
  content: "\e907";
}

.icon-exit-right2:before {
  content: "\e908";
}

.icon-cli:before {
  content: "\e909";
}

.icon-bug:before {
  content: "\e90a";
}

.icon-code:before {
  content: "\e90b";
}

.icon-file-code:before {
  content: "\e90c";
}

.icon-file-image:before {
  content: "\e90d";
}

.icon-file-zip:before {
  content: "\e90e";
}

.icon-file-audio:before {
  content: "\e90f";
}

.icon-file-video:before {
  content: "\e910";
}

.icon-file-preview:before {
  content: "\e911";
}

.icon-file-charts:before {
  content: "\e912";
}

.icon-file-stats:before {
  content: "\e913";
}

.icon-file-spreadsheet:before {
  content: "\e914";
}

.icon-link:before {
  content: "\e915";
}

.icon-unlink:before {
  content: "\e916";
}

.icon-link2:before {
  content: "\e917";
}

.icon-unlink2:before {
  content: "\e918";
}

.icon-thumbs-up:before {
  content: "\e919";
}

.icon-thumbs-down:before {
  content: "\e91a";
}

.icon-thumbs-up2:before {
  content: "\e91b";
}

.icon-thumbs-down2:before {
  content: "\e91c";
}

.icon-thumbs-up3:before {
  content: "\e91d";
}

.icon-thumbs-down3:before {
  content: "\e91e";
}

.icon-share:before {
  content: "\e91f";
}

.icon-share2:before {
  content: "\e920";
}

.icon-share3:before {
  content: "\e921";
}

.icon-magnifier:before {
  content: "\e922";
}

.icon-file-search:before {
  content: "\e923";
}

.icon-find-replace:before {
  content: "\e924";
}

.icon-zoom-in:before {
  content: "\e925";
}

.icon-zoom-out:before {
  content: "\e926";
}

.icon-loupe:before {
  content: "\e927";
}

.icon-loupe-zoom-in:before {
  content: "\e928";
}

.icon-loupe-zoom-out:before {
  content: "\e929";
}

.icon-cross:before {
  content: "\e92a";
}

.icon-menu:before {
  content: "\e92b";
}

.icon-list:before {
  content: "\e92c";
}

.icon-list2:before {
  content: "\e92d";
}

.icon-list3:before {
  content: "\e92e";
}

.icon-menu2:before {
  content: "\e92f";
}

.icon-list4:before {
  content: "\e930";
}

.icon-menu3:before {
  content: "\e931";
}

.icon-exclamation:before {
  content: "\e932";
}

.icon-question:before {
  content: "\e933";
}

.icon-check:before {
  content: "\e934";
}

.icon-cross2:before {
  content: "\e935";
}

.icon-plus:before {
  content: "\e936";
}

.icon-minus:before {
  content: "\e937";
}

.icon-percent:before {
  content: "\e938";
}

.icon-chevron-up:before {
  content: "\e939";
}

.icon-chevron-down:before {
  content: "\e93a";
}

.icon-chevron-left:before {
  content: "\e93b";
}

.icon-chevron-right:before {
  content: "\e93c";
}

.icon-chevrons-expand-vertical:before {
  content: "\e93d";
}

.icon-chevrons-expand-horizontal:before {
  content: "\e93e";
}

.icon-chevrons-contract-vertical:before {
  content: "\e93f";
}

.icon-chevrons-contract-horizontal:before {
  content: "\e940";
}

.icon-arrow-up:before {
  content: "\e941";
}

.icon-arrow-down:before {
  content: "\e942";
}

.icon-arrow-left:before {
  content: "\e943";
}

.icon-arrow-right:before {
  content: "\e944";
}

.icon-arrow-up-right:before {
  content: "\e945";
}

.icon-arrows-merge:before {
  content: "\e946";
}

.icon-arrows-split:before {
  content: "\e947";
}

.icon-arrow-divert:before {
  content: "\e948";
}

.icon-arrow-return:before {
  content: "\e949";
}

.icon-expand:before {
  content: "\e94a";
}

.icon-contract:before {
  content: "\e94b";
}

.icon-expand2:before {
  content: "\e94c";
}

.icon-contract2:before {
  content: "\e94d";
}

.icon-move:before {
  content: "\e94e";
}

.icon-tab:before {
  content: "\e94f";
}

.icon-arrow-wave:before {
  content: "\e950";
}

.icon-expand3:before {
  content: "\e951";
}

.icon-expand4:before {
  content: "\e952";
}

.icon-contract3:before {
  content: "\e953";
}

.icon-notification:before {
  content: "\e954";
}

.icon-warning:before {
  content: "\e955";
}

.icon-notification-circle:before {
  content: "\e956";
}

.icon-question-circle:before {
  content: "\e957";
}

.icon-menu-circle:before {
  content: "\e958";
}

.icon-checkmark-circle:before {
  content: "\e959";
}

.icon-cross-circle:before {
  content: "\e95a";
}

.icon-plus-circle:before {
  content: "\e95b";
}

.icon-circle-minus:before {
  content: "\e95c";
}

.icon-percent-circle:before {
  content: "\e95d";
}

.icon-arrow-up-circle:before {
  content: "\e95e";
}

.icon-arrow-down-circle:before {
  content: "\e95f";
}

.icon-arrow-left-circle:before {
  content: "\e960";
}

.icon-arrow-right-circle:before {
  content: "\e961";
}

.icon-chevron-up-circle:before {
  content: "\e962";
}

.icon-chevron-down-circle:before {
  content: "\e963";
}

.icon-chevron-left-circle:before {
  content: "\e964";
}

.icon-chevron-right-circle:before {
  content: "\e965";
}

.icon-backward-circle:before {
  content: "\e966";
}

.icon-first-circle:before {
  content: "\e967";
}

.icon-previous-circle:before {
  content: "\e968";
}

.icon-stop-circle:before {
  content: "\e969";
}

.icon-play-circle:before {
  content: "\e96a";
}

.icon-pause-circle:before {
  content: "\e96b";
}

.icon-next-circle:before {
  content: "\e96c";
}

.icon-last-circle:before {
  content: "\e96d";
}

.icon-forward-circle:before {
  content: "\e96e";
}

.icon-eject-circle:before {
  content: "\e96f";
}

.icon-crop:before {
  content: "\e970";
}

.icon-frame-expand:before {
  content: "\e971";
}

.icon-frame-contract:before {
  content: "\e972";
}

.icon-focus:before {
  content: "\e973";
}

.icon-transform:before {
  content: "\e974";
}

.icon-grid:before {
  content: "\e975";
}

.icon-grid-crossed:before {
  content: "\e976";
}

.icon-layers:before {
  content: "\e977";
}

.icon-layers-crossed:before {
  content: "\e978";
}

.icon-toggle:before {
  content: "\e979";
}

.icon-rulers:before {
  content: "\e97a";
}

.icon-ruler:before {
  content: "\e97b";
}

.icon-funnel:before {
  content: "\e97c";
}

.icon-flip-horizontal:before {
  content: "\e97d";
}

.icon-flip-vertical:before {
  content: "\e97e";
}

.icon-flip-horizontal2:before {
  content: "\e97f";
}

.icon-flip-vertical2:before {
  content: "\e980";
}

.icon-angle:before {
  content: "\e981";
}

.icon-angle2:before {
  content: "\e982";
}

.icon-subtract:before {
  content: "\e983";
}

.icon-combine:before {
  content: "\e984";
}

.icon-intersect:before {
  content: "\e985";
}

.icon-exclude:before {
  content: "\e986";
}

.icon-align-center-vertical:before {
  content: "\e987";
}

.icon-align-right:before {
  content: "\e988";
}

.icon-align-bottom:before {
  content: "\e989";
}

.icon-align-left:before {
  content: "\e98a";
}

.icon-align-center-horizontal:before {
  content: "\e98b";
}

.icon-align-top:before {
  content: "\e98c";
}

.icon-square:before {
  content: "\e98d";
}

.icon-plus-square:before {
  content: "\e98e";
}

.icon-minus-square:before {
  content: "\e98f";
}

.icon-percent-square:before {
  content: "\e990";
}

.icon-arrow-up-square:before {
  content: "\e991";
}

.icon-arrow-down-square:before {
  content: "\e992";
}

.icon-arrow-left-square:before {
  content: "\e993";
}

.icon-arrow-right-square:before {
  content: "\e994";
}

.icon-chevron-up-square:before {
  content: "\e995";
}

.icon-chevron-down-square:before {
  content: "\e996";
}

.icon-chevron-left-square:before {
  content: "\e997";
}

.icon-chevron-right-square:before {
  content: "\e998";
}

.icon-check-square:before {
  content: "\e999";
}

.icon-cross-square:before {
  content: "\e99a";
}

.icon-menu-square:before {
  content: "\e99b";
}

.icon-prohibited:before {
  content: "\e99c";
}

.icon-circle:before {
  content: "\e99d";
}

.icon-radio-button:before {
  content: "\e99e";
}

.icon-ligature:before {
  content: "\e99f";
}

.icon-text-format:before {
  content: "\e9a0";
}

.icon-text-format-remove:before {
  content: "\e9a1";
}

.icon-text-size:before {
  content: "\e9a2";
}

.icon-bold:before {
  content: "\e9a3";
}

.icon-italic:before {
  content: "\e9a4";
}

.icon-underline:before {
  content: "\e9a5";
}

.icon-strikethrough:before {
  content: "\e9a6";
}

.icon-highlight:before {
  content: "\e9a7";
}

.icon-text-align-left:before {
  content: "\e9a8";
}

.icon-text-align-center:before {
  content: "\e9a9";
}

.icon-text-align-right:before {
  content: "\e9aa";
}

.icon-text-align-justify:before {
  content: "\e9ab";
}

.icon-line-spacing:before {
  content: "\e9ac";
}

.icon-indent-increase:before {
  content: "\e9ad";
}

.icon-indent-decrease:before {
  content: "\e9ae";
}

.icon-text-wrap:before {
  content: "\e9af";
}

.icon-pilcrow:before {
  content: "\e9b0";
}

.icon-direction-ltr:before {
  content: "\e9b1";
}

.icon-direction-rtl:before {
  content: "\e9b2";
}

.icon-page-break:before {
  content: "\e9b3";
}

.icon-page-break2:before {
  content: "\e9b4";
}

.icon-sort-alpha-asc:before {
  content: "\e9b5";
}

.icon-sort-alpha-desc:before {
  content: "\e9b6";
}

.icon-sort-numeric-asc:before {
  content: "\e9b7";
}

.icon-sort-numeric-desc:before {
  content: "\e9b8";
}

.icon-sort-amount-asc:before {
  content: "\e9b9";
}

.icon-sort-amount-desc:before {
  content: "\e9ba";
}

.icon-sort-time-asc:before {
  content: "\e9bb";
}

.icon-sort-time-desc:before {
  content: "\e9bc";
}

.icon-sigma:before {
  content: "\e9bd";
}

.icon-pencil-line:before {
  content: "\e9be";
}

.icon-hand:before {
  content: "\e9bf";
}

.icon-pointer-up:before {
  content: "\e9c0";
}

.icon-pointer-right:before {
  content: "\e9c1";
}

.icon-pointer-down:before {
  content: "\e9c2";
}

.icon-pointer-left:before {
  content: "\e9c3";
}

.icon-finger-tap:before {
  content: "\e9c4";
}

.icon-fingers-tap:before {
  content: "\e9c5";
}

.icon-reminder:before {
  content: "\e9c6";
}

.icon-fingers-crossed:before {
  content: "\e9c7";
}

.icon-fingers-victory:before {
  content: "\e9c8";
}

.icon-gesture-zoom:before {
  content: "\e9c9";
}

.icon-gesture-pinch:before {
  content: "\e9ca";
}

.icon-fingers-scroll-horizontal:before {
  content: "\e9cb";
}

.icon-fingers-scroll-vertical:before {
  content: "\e9cc";
}

.icon-fingers-scroll-left:before {
  content: "\e9cd";
}

.icon-fingers-scroll-right:before {
  content: "\e9ce";
}

.icon-hand2:before {
  content: "\e9cf";
}

.icon-pointer-up2:before {
  content: "\e9d0";
}

.icon-pointer-right2:before {
  content: "\e9d1";
}

.icon-pointer-down2:before {
  content: "\e9d2";
}

.icon-pointer-left2:before {
  content: "\e9d3";
}

.icon-finger-tap2:before {
  content: "\e9d4";
}

.icon-fingers-tap2:before {
  content: "\e9d5";
}

.icon-reminder2:before {
  content: "\e9d6";
}

.icon-gesture-zoom2:before {
  content: "\e9d7";
}

.icon-gesture-pinch2:before {
  content: "\e9d8";
}

.icon-fingers-scroll-horizontal2:before {
  content: "\e9d9";
}

.icon-fingers-scroll-vertical2:before {
  content: "\e9da";
}

.icon-fingers-scroll-left2:before {
  content: "\e9db";
}

.icon-fingers-scroll-right2:before {
  content: "\e9dc";
}

.icon-fingers-scroll-vertical3:before {
  content: "\e9dd";
}

.icon-border-style:before {
  content: "\e9de";
}

.icon-border-all:before {
  content: "\e9df";
}

.icon-border-outer:before {
  content: "\e9e0";
}

.icon-border-inner:before {
  content: "\e9e1";
}

.icon-border-top:before {
  content: "\e9e2";
}

.icon-border-horizontal:before {
  content: "\e9e3";
}

.icon-border-bottom:before {
  content: "\e9e4";
}

.icon-border-left:before {
  content: "\e9e5";
}

.icon-border-vertical:before {
  content: "\e9e6";
}

.icon-border-right:before {
  content: "\e9e7";
}

.icon-border-none:before {
  content: "\e9e8";
}

.icon-ellipsis:before {
  content: "\e9e9";
}

.icon-uni21:before {
  content: "\21";
}

.icon-uni22:before {
  content: "\22";
}

.icon-uni23:before {
  content: "\23";
}

.icon-uni24:before {
  content: "\24";
}

.icon-uni25:before {
  content: "\25";
}

.icon-uni26:before {
  content: "\26";
}

.icon-uni27:before {
  content: "\27";
}

.icon-uni28:before {
  content: "\28";
}

.icon-uni29:before {
  content: "\29";
}

.icon-uni2a:before {
  content: "\2a";
}

.icon-uni2b:before {
  content: "\2b";
}

.icon-uni2c:before {
  content: "\2c";
}

.icon-uni2d:before {
  content: "\2d";
}

.icon-uni2e:before {
  content: "\2e";
}

.icon-uni2f:before {
  content: "\2f";
}

.icon-uni30:before {
  content: "\30";
}

.icon-uni31:before {
  content: "\31";
}

.icon-uni32:before {
  content: "\32";
}

.icon-uni33:before {
  content: "\33";
}

.icon-uni34:before {
  content: "\34";
}

.icon-uni35:before {
  content: "\35";
}

.icon-uni36:before {
  content: "\36";
}

.icon-uni37:before {
  content: "\37";
}

.icon-uni38:before {
  content: "\38";
}

.icon-uni39:before {
  content: "\39";
}

.icon-uni3a:before {
  content: "\3a";
}

.icon-uni3b:before {
  content: "\3b";
}

.icon-uni3c:before {
  content: "\3c";
}

.icon-uni3d:before {
  content: "\3d";
}

.icon-uni3e:before {
  content: "\3e";
}

.icon-uni3f:before {
  content: "\3f";
}

.icon-uni40:before {
  content: "\40";
}

.icon-uni41:before {
  content: "\41";
}

.icon-uni42:before {
  content: "\42";
}

.icon-uni43:before {
  content: "\43";
}

.icon-uni44:before {
  content: "\44";
}

.icon-uni45:before {
  content: "\45";
}

.icon-uni46:before {
  content: "\46";
}

.icon-uni47:before {
  content: "\47";
}

.icon-uni48:before {
  content: "\48";
}

.icon-uni49:before {
  content: "\49";
}

.icon-uni4a:before {
  content: "\4a";
}

.icon-uni4b:before {
  content: "\4b";
}

.icon-uni4c:before {
  content: "\4c";
}

.icon-uni4d:before {
  content: "\4d";
}

.icon-uni4e:before {
  content: "\4e";
}

.icon-uni4f:before {
  content: "\4f";
}

.icon-uni50:before {
  content: "\50";
}

.icon-uni51:before {
  content: "\51";
}

.icon-uni52:before {
  content: "\52";
}

.icon-uni53:before {
  content: "\53";
}

.icon-uni54:before {
  content: "\54";
}

.icon-uni55:before {
  content: "\55";
}

.icon-uni56:before {
  content: "\56";
}

.icon-uni57:before {
  content: "\57";
}

.icon-uni58:before {
  content: "\58";
}

.icon-uni59:before {
  content: "\59";
}

.icon-uni5a:before {
  content: "\5a";
}

.icon-uni5b:before {
  content: "\5b";
}

.icon-uni5c:before {
  content: "\5c";
}

.icon-uni5d:before {
  content: "\5d";
}

.icon-uni5e:before {
  content: "\5e";
}

.icon-uni5f:before {
  content: "\5f";
}

.icon-uni60:before {
  content: "\60";
}

.icon-uni61:before {
  content: "\61";
}

.icon-uni62:before {
  content: "\62";
}

.icon-uni63:before {
  content: "\63";
}

.icon-uni64:before {
  content: "\64";
}

.icon-uni65:before {
  content: "\65";
}

.icon-uni66:before {
  content: "\66";
}

.icon-uni67:before {
  content: "\67";
}

.icon-uni68:before {
  content: "\68";
}

.icon-uni69:before {
  content: "\69";
}

.icon-uni6a:before {
  content: "\6a";
}

.icon-uni6b:before {
  content: "\6b";
}

.icon-uni6c:before {
  content: "\6c";
}

.icon-uni6d:before {
  content: "\6d";
}

.icon-uni6e:before {
  content: "\6e";
}

.icon-uni6f:before {
  content: "\6f";
}

.icon-uni70:before {
  content: "\70";
}

.icon-uni71:before {
  content: "\71";
}

.icon-uni72:before {
  content: "\72";
}

.icon-uni73:before {
  content: "\73";
}

.icon-uni74:before {
  content: "\74";
}

.icon-uni75:before {
  content: "\75";
}

.icon-uni76:before {
  content: "\76";
}

.icon-uni77:before {
  content: "\77";
}

.icon-uni78:before {
  content: "\78";
}

.icon-uni79:before {
  content: "\79";
}

.icon-uni7a:before {
  content: "\7a";
}

.icon-uni7b:before {
  content: "\7b";
}

.icon-uni7c:before {
  content: "\7c";
}

.icon-uni7d:before {
  content: "\7d";
}

.icon-uni7e:before {
  content: "\7e";
}

.icon-copyright:before {
  content: "\a9";
}

/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: "FontAwesome";
  src: url("fonts/fontawesome-webfont.eot?v=4.5.0");
  src: url("fonts/fontawesome-webfont.eot?#iefix&v=4.5.0")
      format("embedded-opentype"),
    url("fonts/fontawesome-webfont.woff2?v=4.5.0") format("woff2"),
    url("fonts/fontawesome-webfont.woff?v=4.5.0") format("woff"),
    url("fonts/fontawesome-webfont.ttf?v=4.5.0") format("truetype"),
    url("fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular")
      format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eeeeee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right {
  margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}

.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: white;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}

.fa-music:before {
  content: "\f001";
}

.fa-search:before {
  content: "\f002";
}

.fa-envelope-o:before {
  content: "\f003";
}

.fa-heart:before {
  content: "\f004";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-o:before {
  content: "\f006";
}

.fa-user:before {
  content: "\f007";
}

.fa-film:before {
  content: "\f008";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-check:before {
  content: "\f00c";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-signal:before {
  content: "\f012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}

.fa-trash-o:before {
  content: "\f014";
}

.fa-home:before {
  content: "\f015";
}

.fa-file-o:before {
  content: "\f016";
}

.fa-clock-o:before {
  content: "\f017";
}

.fa-road:before {
  content: "\f018";
}

.fa-download:before {
  content: "\f019";
}

.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-play-circle-o:before {
  content: "\f01d";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}

.fa-refresh:before {
  content: "\f021";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-lock:before {
  content: "\f023";
}

.fa-flag:before {
  content: "\f024";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-print:before {
  content: "\f02f";
}

.fa-camera:before {
  content: "\f030";
}

.fa-font:before {
  content: "\f031";
}

.fa-bold:before {
  content: "\f032";
}

.fa-italic:before {
  content: "\f033";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-list:before {
  content: "\f03a";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-video-camera:before {
  content: "\f03d";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-tint:before {
  content: "\f043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}

.fa-share-square-o:before {
  content: "\f045";
}

.fa-check-square-o:before {
  content: "\f046";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-play:before {
  content: "\f04b";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-eject:before {
  content: "\f052";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-times-circle-o:before {
  content: "\f05c";
}

.fa-check-circle-o:before {
  content: "\f05d";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}

.fa-expand:before {
  content: "\f065";
}

.fa-compress:before {
  content: "\f066";
}

.fa-plus:before {
  content: "\f067";
}

.fa-minus:before {
  content: "\f068";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-plane:before {
  content: "\f072";
}

.fa-calendar:before {
  content: "\f073";
}

.fa-random:before {
  content: "\f074";
}

.fa-comment:before {
  content: "\f075";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-key:before {
  content: "\f084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}

.fa-comments:before {
  content: "\f086";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}

.fa-thumbs-o-down:before {
  content: "\f088";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-heart-o:before {
  content: "\f08a";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-linkedin-square:before {
  content: "\f08c";
}

.fa-thumb-tack:before {
  content: "\f08d";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-upload:before {
  content: "\f093";
}

.fa-lemon-o:before {
  content: "\f094";
}

.fa-phone:before {
  content: "\f095";
}

.fa-square-o:before {
  content: "\f096";
}

.fa-bookmark-o:before {
  content: "\f097";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}

.fa-github:before {
  content: "\f09b";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}

.fa-hdd-o:before {
  content: "\f0a0";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}

.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-plus:before {
  content: "\f0d5";
}

.fa-money:before {
  content: "\f0d6";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}

.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}

.fa-comment-o:before {
  content: "\f0e5";
}

.fa-comments-o:before {
  content: "\f0e6";
}

.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}

.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-bell-o:before {
  content: "\f0a2";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cutlery:before {
  content: "\f0f5";
}

.fa-file-text-o:before {
  content: "\f0f6";
}

.fa-building-o:before {
  content: "\f0f7";
}

.fa-hospital-o:before {
  content: "\f0f8";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}

.fa-circle-o:before {
  content: "\f10c";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-circle:before {
  content: "\f111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-folder-o:before {
  content: "\f114";
}

.fa-folder-open-o:before {
  content: "\f115";
}

.fa-smile-o:before {
  content: "\f118";
}

.fa-frown-o:before {
  content: "\f119";
}

.fa-meh-o:before {
  content: "\f11a";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-keyboard-o:before {
  content: "\f11c";
}

.fa-flag-o:before {
  content: "\f11d";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-code:before {
  content: "\f121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-crop:before {
  content: "\f125";
}

.fa-code-fork:before {
  content: "\f126";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}

.fa-question:before {
  content: "\f128";
}

.fa-info:before {
  content: "\f129";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-shield:before {
  content: "\f132";
}

.fa-calendar-o:before {
  content: "\f133";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-minus-square-o:before {
  content: "\f147";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-pencil-square:before {
  content: "\f14b";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}

.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}

.fa-gbp:before {
  content: "\f154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}

.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}

.fa-won:before,
.fa-krw:before {
  content: "\f159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-text:before {
  content: "\f15c";
}

.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-youtube-square:before {
  content: "\f166";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-youtube-play:before {
  content: "\f16a";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-adn:before {
  content: "\f170";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitbucket-square:before {
  content: "\f172";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-apple:before {
  content: "\f179";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-android:before {
  content: "\f17b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-trello:before {
  content: "\f181";
}

.fa-female:before {
  content: "\f182";
}

.fa-male:before {
  content: "\f183";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}

.fa-sun-o:before {
  content: "\f185";
}

.fa-moon-o:before {
  content: "\f186";
}

.fa-archive:before {
  content: "\f187";
}

.fa-bug:before {
  content: "\f188";
}

.fa-vk:before {
  content: "\f189";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

.fa-arrow-circle-o-left:before {
  content: "\f190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}

.fa-dot-circle-o:before {
  content: "\f192";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}

.fa-plus-square-o:before {
  content: "\f196";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-slack:before {
  content: "\f198";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-pied-piper:before {
  content: "\f1a7";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-spoon:before {
  content: "\f1b1";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}

.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa-file-word-o:before {
  content: "\f1c2";
}

.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}

.fa-file-code-o:before {
  content: "\f1c9";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}

.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa-ra:before,
.fa-rebel:before {
  content: "\f1d0";
}

.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}

.fa-history:before {
  content: "\f1da";
}

.fa-circle-thin:before {
  content: "\f1db";
}

.fa-header:before {
  content: "\f1dc";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-sliders:before {
  content: "\f1de";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bell-slash-o:before {
  content: "\f1f7";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-eyedropper:before {
  content: "\f1fb";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-area-chart:before {
  content: "\f1fe";
}

.fa-pie-chart:before {
  content: "\f200";
}

.fa-line-chart:before {
  content: "\f201";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bus:before {
  content: "\f207";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-cc:before {
  content: "\f20a";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}

.fa-meanpath:before {
  content: "\f20c";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-venus:before {
  content: "\f221";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-facebook-official:before {
  content: "\f230";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-server:before {
  content: "\f233";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before {
  content: "\f239";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-battery-4:before,
.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-sticky-note-o:before {
  content: "\f24a";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-hourglass-o:before {
  content: "\f250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}

.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa-hand-spock-o:before {
  content: "\f259";
}

.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-safari:before {
  content: "\f267";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa-calendar-times-o:before {
  content: "\f273";
}

.fa-calendar-check-o:before {
  content: "\f274";
}

.fa-industry:before {
  content: "\f275";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-map-o:before {
  content: "\f278";
}

.fa-map:before {
  content: "\f279";
}

.fa-commenting:before {
  content: "\f27a";
}

.fa-commenting-o:before {
  content: "\f27b";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-vimeo:before {
  content: "\f27d";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-edge:before {
  content: "\f282";
}

.fa-credit-card-alt:before {
  content: "\f283";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-modx:before {
  content: "\f285";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-usb:before {
  content: "\f287";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-pause-circle-o:before {
  content: "\f28c";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stop-circle-o:before {
  content: "\f28e";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-percent:before {
  content: "\f295";
}

@font-face {
  font-family: "Linearicons";
  src: url("fonts/Linearicons.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "Linearicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Enable Ligatures ================ */
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  -o-font-feature-settings: "liga";
  font-feature-settings: "liga";
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**
* Checkboxes, radio
*/
input[type="checkbox"] + label,
input[type="checkbox"] + .label label {
  width: 100%;
}

input[type="radio"] + label,
input[type="radio"] + .label label {
  cursor: pointer;
  position: relative;
  padding-left: 26px;
  text-transform: none;
  display: inline-block;
  margin: 9px 25px 9px 0;
  font-size: 13px;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

label span {
  font-weight: 400;
}

input[type="radio"]:checked + .label label:before,
input[type="radio"]:checked + label:before {
  background: #145cca;
  border-color: #145cca;
}

input[type="radio"] + label:before,
input[type="radio"] + .label label:before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 10px;
  position: absolute;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  left: 0;
  top: 50%;
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background: none;
  border: solid 1px #145cca;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

input[type="radio"]:checked + .label label:after,
input[type="radio"]:checked + label:after {
  font-size: 10px;
}

input[type="radio"] + label:after,
input[type="radio"] + .label label:after {
  position: absolute;
  left: 5px;
  top: 50%;
  font-family: "Linearicons";
  content: "\e934";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  font-size: 0px;
  line-height: 1;
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: white;
  background: none;
  box-shadow: none;
}

input[type="checkbox"] + label:hover,
input[type="checkbox"] + .label label:hover {
  color: #333333;
}

input[type="checkbox"] + label,
input[type="checkbox"] + .label label {
  display: inline-block;
  padding-left: 27px;
  position: relative;
  clear: both;
  cursor: pointer;
  text-transform: none;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

input[type="checkbox"] + label:before,
input[type="checkbox"] + .label label:before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 0;
  background: none;
  border: solid 1px #145cca;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

input[type="checkbox"] + label:after,
input[type="checkbox"] + .label label:after {
  font-family: "Linearicons";
  content: "\e934";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  font-size: 0px;
  line-height: 19px;
  position: absolute;
  width: 19px;
  height: 19px;
  font-size: 0;
  text-align: center;
  left: 0;
  top: 0;
  color: white;
  -moz-transition: font-size 0.3s;
  -o-transition: font-size 0.3s;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
  text-shadow: none;
}

input[type="checkbox"]:checked + label:before,
input[type="checkbox"]:checked + .label label:before {
  background: #145cca;
  border-color: #145cca;
}

input[type="checkbox"] + label:after,
input[type="checkbox"] + .label label:after {
  font-family: "Linearicons";
  content: "\e934";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  font-size: 0px;
  line-height: 19px;
  position: absolute;
  width: 19px;
  height: 19px;
  font-size: 0;
  text-align: center;
  left: 0;
  top: 0;
  color: white;
  -moz-transition: font-size 0.3s;
  -o-transition: font-size 0.3s;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
  text-shadow: none;
}

input[type="checkbox"]:checked + label:after,
input[type="checkbox"]:checked + .label label:after {
  font-size: 10px;
}

/**
* -----------------------------------------
* MODULES
* -----------------------------------------
*/
/**
* Products table in first step
*
* main class: .products_summary, .products_summary > .table_products
* styled elements: .table_products, .table_products .col
*/
.products_summary {
  margin: 75px 0 21px;
}
@media all and (max-width: 992px) {
  .products_summary {
    margin: 40px 0 21px;
  }
}
.products_summary .table_products .table_line {
  display: flex;
  flex-direction: row;
  padding: 0;
  border-bottom: 1px solid #e4e4e4;
}
@media all and (max-width: 992px) {
  .products_summary .table_products .table_line {
    display: table;
    flex-direction: initial;
    position: relative;
    width: 100%;
    padding: 2em 0;
  }
  /* .products_summary .table_products .table_line:nth-child(2) {
    border-top: 1px solid #e4e4e4;
  } */
  .products_summary .table_products .table_line .column {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
  }
  .products_summary .table_products .table_line .column:nth-child(1) {
    width: 40%;
  }
  .products_summary .table_products .table_line .column:nth-child(2) {
    width: 60%;
  }
  .products_summary .table_products .table_line:last-child {
    border-bottom: 0;
  }
}
.products_summary .table_products .table_line.table_heading {
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  padding: 14px 0 12px;
  text-align: left;
}
@media all and (max-width: 992px) {
  .products_summary .table_products .table_line.table_heading {
    display: none;
  }
}
.products_summary .table_products .table_line.table_heading .col {
  text-align: center;
}
.products_summary .table_products .table_line.table_heading .col.photo {
  padding-left: 0px;
  text-indent: 8px;
  text-align: left;
}
.products_summary .table_products .table_line.table_heading .col.product_name {
  text-align: left;
}
.products_summary .table_products .table_line.table_heading .col.availability {
  /*                        span {
                                      font-weight: 400;
                                      text-transform: none;
                                      color: #828282;
                                      background: white;
                                      border: none;
                                      padding: 0;
                                      font-size: 14px;
                                  }*/
}
.products_summary .table_products .table_line.table_heading span {
  font-size: 14px;
  font-weight: 400;
  color: #828282;
}
.products_summary .table_products .table_line .col {
  flex-basis: 17.28%;
  text-align: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.products_summary .table_products .table_line .col.photo {
  flex-basis: 9%;
  min-width: 100px;
  padding: 0 13px;
  text-align: center;
}
.products_summary .table_products .table_line .col.photo .image_holder {
  display: inline-block;
  max-width: 74px;
}
@media all and (max-width: 992px) {
  .products_summary .table_products .table_line .col.photo .image_holder {
    max-width: 100%;
  }
}
.products_summary .table_products .table_line .col.photo img {
  max-width: 100%;
}
.products_summary .table_products .table_line .col.product_name {
  flex-basis: 50%;
  text-align: left;
  text-align: left;
  font-size: 14px;
  color: black;
  padding: 0 15px;
  letter-spacing: 0.5px;
}
@media all and (max-width: 992px) {
  .products_summary .table_products .table_line .col.product_name {
    font-size: 12px;
    padding: 0;
  }
}
.products_summary .table_products .table_line .col.product_name .reference {
  display: block;
  /* text-transform: uppercase; */
  color: #9a9a9a;
  font-size: 12px;
  font-weight: 400;
}
@media all and (max-width: 992px) {
  .products_summary .table_products .table_line .col.product_name .reference {
    margin: 2px 0 -5px;
  }
}
.products_summary .table_products .table_line .col.availability {
  flex-basis: 150px;
  min-width: 150px;
  white-space: nowrap;
  color: #46a74e;
  /*                    span {
                                background: white;
                                width: auto;
                                display: table;
                                margin: 0 auto;
                                padding: 4px 43px;
                                text-transform: uppercase;
                                font-size: 8pt;
                                font-weight: 500;
                                color: #7ec871;
                                border: 1px solid #7ec871;
                            }*/
}
.products_summary .table_products .table_line .col.availability i.fa {
  margin-right: 0.25em;
}
.products_summary
  .table_products
  .table_line
  .col.availability.not_available
  i.fa {
  display: none;
}
@media all and (max-width: 992px) {
  .products_summary .table_products .table_line .col.availability {
    /* display: none; */
    text-align: left;
    padding: 1.5em 0 0.25em;
  }
}
.products_summary
  .table_products
  .table_line
  .col.availability.not_available
  span {
  background: #fce9e6;
  border: 1px solid #dd8181;
  border-radius: 10px;
  color: #dd8181;
  /* padding: 6px 7px; */
  padding: 4px 19px 4px 3px;
  position: relative;
  z-index: 5;
}
.products_summary
  .table_products
  .table_line
  .col.availability.not_available
  span:before {
  content: "\f071";
  display: inline-block;
  font-family: "FontAwesome";
  padding: 0 10px;
}
@media all and (max-width: 992px) {
  .products_summary .table_products .table_line .col.price_unit {
    display: none;
  }
}
.products_summary .table_products .table_line .col.price_unit .price_regular {
  font-weight: 100;
  text-decoration: line-through;
  color: #e2375c;
  font-family: "Roboto";
  margin: 0 -13px 0 5px;
  font-size: 14pt;
  vertical-align: text-bottom;
}
.products_summary .table_products .table_line .col.quantity {
  flex-basis: 9%;
}
@media all and (max-width: 992px) {
  .products_summary .table_products .table_line .col.quantity {
    width: 50%;
    display: inline-block;
    vertical-align: middle;
  }
}
@media all and (max-width: 992px) {
  .products_summary .table_products .table_line .col.total_price {
    width: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-top: 5px;
  }
}
.products_summary .table_products .table_line .col.total_price .price {
  font-size: 16px;
  white-space: nowrap;
}
@media all and (max-width: 992px) {
  .products_summary .table_products .table_line .col.total_price .price {
    font-size: 14px;
  }
}
.products_summary .table_products .table_line .col.delete {
  flex-basis: 6%;
}
@media all and (max-width: 992px) {
  .products_summary .table_products .table_line .col.delete {
    position: absolute;
    top: -1px;
    left: 0px;
    border: 1px solid #e5e5e5;
  }
}
.products_summary .table_products .table_line .col.delete span {
  cursor: pointer;
}
.products_summary .table_products .table_line .col.delete img {
  margin-right: 8px;
  margin-top: 5px;
}
@media all and (max-width: 992px) {
  .products_summary .table_products .table_line .col.delete img {
    margin-right: 0;
    margin-top: 0;
  }
}
.products_summary .active_vouchers {
  float: left;
  margin: 0px 0 20px;
}
.products_summary .active_vouchers th {
  border-bottom: 1px solid black;
}
.products_summary .active_vouchers .delete_promotion {
  text-align: center;
  cursor: pointer;
}

.final_summary {
  /*max-width: 295px;*/
  float: right;
  width: 100%;
  background: #ffffff;
  padding: 12px 5px 10px 5px;
  border-top: 1px solid #ffffff;
  border-radius: 0 0 9px 9px;
  display: inline-block;
  vertical-align: top;
}
@media all and (max-width: 992px) {
  .final_summary {
    max-width: 600px;
  }
}
.final_summary h3 {
  margin-top: 0;
  margin-bottom: 12px;
}
.final_summary .promotions {
  max-width: 627px;
  float: right;
  width: 100%;
}
.final_summary .table_line {
  display: flex;
  flex-direction: row;
  padding: 0px 10px 3px;
}
.final_summary .table_line.last_line {
  border-top: 1px solid black;
  padding: 20px 10px 0px 10px;
}
.final_summary .table_line .col {
  flex-basis: 50%;
  text-align: left;
}
.final_summary .table_line .col.col_1 {
  flex-basis: 60%;
}
.final_summary .table_line .col.col_2 {
  flex-basis: 40%;
  padding: 0 7px;
}
.final_summary .table_line .col.col_2 span {
  font-size: 11pt;
}
.final_summary .table_line .col span {
  text-transform: none;
  font-weight: 400;
  font-size: 10pt;
  color: black;
  letter-spacing: -0.2px;
}
.final_summary .table_line .col.total_final_amount span {
  font-size: 13pt;
}
.final_summary .table_line .col.total_final_amount span.amount {
  font-size: 11pt;
  margin-top: -10px;
  display: inline-block;
  vertical-align: top;
}
.final_summary .table_line .col.total_final_amount p {
  font-size: 9pt;
  display: inline-block;
  vertical-align: top;
  display: block;
  margin-top: -10px;
}

/**
* Additional/extra products list and headers in
* first step of order.
*
* main class: .additional_products, .additional_procts > .products_listing
* styled elements: checkbox, h3, hr, .products_listing,
*         .products_listing > .single_product
*/
#different_delivery_checkbox:checked + label + .different_delivery_form {
  display: block !important;
}

.additional_products {
  margin-top: 10px;
  margin-bottom: 0px;
  float: left;
  width: 100%;
}
.additional_products .presents_checkbox {
  margin-bottom: 21px;
}
.additional_products .presents_checkbox .text {
  text-transform: uppercase;
  color: black;
  font-size: 14pt;
  font-weight: 700;
  line-height: 21px;
  padding-left: 5px;
}
.additional_products h3 {
  text-transform: uppercase;
  color: black;
  font-size: 15pt;
  margin-bottom: 5px;
  font-family: "Roboto Condensed";
  font-weight: 600;
}
.additional_products hr {
  margin-top: 15px;
  margin-bottom: 25px;
}
.additional_products .info {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 14px;
  color: black;
}
.additional_products .presents_content_container {
  overflow: hidden;
  height: 0;
  transition: all 0.3s;
}
.additional_products .presents_content_container.active {
  height: 615px;
}
.additional_products .products_listing {
  margin-top: 30px;
  margin-bottom: 60px;
}
.additional_products .products_listing .single_product {
  float: left;
  width: 252px;
  text-align: center;
  margin: 20px;
}
.additional_products .products_listing .single_product .image_holder {
  border: 1px solid #efefef;
  padding: 28px;
}
.additional_products .products_listing .single_product .desc {
  font-size: 13px;
  padding: 15px 5px 0px 5px;
  color: black;
}
.additional_products .products_listing .single_product .button_holder {
  margin-top: 0px;
}
.additional_products .products_listing .single_product .button_holder .success {
  display: block;
  font-size: 13px;
  padding: 9px 0px;
  color: green;
}
.additional_products
  .products_listing
  .single_product
  .button_holder
  .add-to-cart {
  background: #e2375c;
  color: white;
  font-weight: 300;
  margin-top: 0;
}

/**
---------------------------------------------------------
* Box register styling (example 2 step (payment) in order)
----------------------------------------------------------
*/
/**
* Base styles
* main class: .boxes .user-box
*/
.boxes {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media all and (max-width: 992px) {
  .boxes {
    margin-top: 0;
  }
}
.boxes .user-box {
  width: 31.5%;
}
@media all and (max-width: 1024px) {
  .boxes .user-box {
    width: 100%;
    margin: 20px 0;
    font-size: 10px;
  }
}
.boxes .user-box__inner {
  border: 1px solid rgba(136, 136, 136, 0.3);
  padding: 21px 26px;
  vertical-align: top;
  border-radius: 9px;
}
.boxes .user-box .title {
  text-transform: uppercase;
  color: #000000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15pt;
  margin-bottom: 17px;
}
@media all and (max-width: 1024px) {
  .boxes .user-box .title {
    font-size: 14pt;
    margin-bottom: 23px;
  }
}

/**
* main class: .user-box.__account
*/
#center_column .user-box.__account {
  padding-bottom: 34px;
}
#center_column .user-box.__account .user-box__inner .box-content > p {
  margin-bottom: 10px;
}
#center_column .user-box.__account .log-in {
  width: 100%;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  color: white;
  border: none;
  background: #cc6ff4;
  padding: 9px 25px;
  margin: 0;
  margin-bottom: 20px;
  float: left;
  text-align: center;
}
#center_column .user-box.__account .gender {
  display: none;
}
#center_column .user-box.__account .gender p {
  margin-bottom: 0;
  margin-top: 14px;
  font-weight: 400;
}
#center_column .user-box.__account .__code {
  max-width: 30%;
}
#center_column .user-box.__account .__city {
  max-width: calc(69% - 10px);
  margin-left: 9px;
}
#center_column .user-box.__account .__phone {
  max-width: 100%;
}
#center_column .user-box.__account .__country {
  display: none;
}
#center_column .user-box.__account .phone_info,
#center_column .user-box.__account .nip_info {
  max-width: 38%;
  display: inline-block;
  vertical-align: middle;
  font-size: 11px;
  line-height: 14px;
  padding: 9px;
}
@media all and (max-width: 992px) {
  #center_column .user-box.__account .phone_info,
  #center_column .user-box.__account .nip_info {
    max-width: initial;
  }
}
#center_column .user-box.__account .__nip {
  width: 16px;
  padding: 0;
  height: 34px;
  text-align: center;
  -moz-appearance: textfield;
}
#center_column .user-box.__account .__nip::-webkit-outer-spin-button,
#center_column .user-box.__account .__nip::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#center_column .user-box.__account .nip-info {
  margin-bottom: 1px;
  margin-top: 7px;
}
#center_column .user-box.__account .optional {
  margin-top: 6px;
}
#center_column
  .user-box.__account
  .password-holder
  #create_account:checked
  + label
  + .create-account {
  display: block !important;
}
#center_column .user-box.__account .password-holder .create-account {
  margin-top: 12px;
}
#center_column .user-box.__account .password-holder .create-account .info {
  margin: 9px 0 0;
  display: inline-block;
}

/**
* main class: .user-box.__delivery
*/
.user-box.__delivery .buttons_holder {
  display: flex;
  justify-content: space-around;
}
.user-box.__delivery .button {
  padding: 9px 9px;
  width: calc(50% - 2px);
  background: white;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  color: black;
  border: 1px solid #dbdbdb;
}
.user-box.__delivery .button.active {
  color: white;
  background: #cc6ff4;
}
.user-box.__delivery .button.pay_in_delivery {
  margin-left: 15px;
}
.user-box.__delivery .box-content .payment_option {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 13px 0 10px 0;
  border: 1px solid #dbdbdb;
  margin: 15px 0;
  cursor: pointer;
  height: 71px;
}
.user-box.__delivery .box-content .payment_option.active {
  border: 3px solid #1369e4;
}
.user-box.__delivery .box-content .payment_option p {
  margin-bottom: 0;
}
.user-box.__delivery .box-content .payment_option .image_holder {
  flex-basis: 23%;
  text-align: center;
  padding: 0 10px;
}
@media all and (max-width: 1024px) {
  .user-box.__delivery .box-content .payment_option .image_holder {
    display: none;
  }
}
.user-box.__delivery .box-content .payment_option .image_holder img {
  max-width: 100%;
}
.user-box.__delivery .box-content .payment_option .content {
  flex-basis: 60%;
}
@media all and (max-width: 1024px) {
  .user-box.__delivery .box-content .payment_option .content {
    flex-basis: 80%;
    padding: 0 20px;
  }
}
.user-box.__delivery .box-content .payment_option .content .delivery-title {
  margin: 0;
  font-size: 9pt;
}
.user-box.__delivery .box-content .payment_option .content .desc {
  margin-bottom: 0;
}
.user-box.__delivery .box-content .payment_option .price {
  flex-basis: 17%;
  font-size: 13px;
  text-align: center;
}
@media all and (max-width: 1024px) {
  .user-box.__delivery .box-content .payment_option .price {
    flex-basis: 20%;
    padding: 0 20px;
  }
}
.user-box.__delivery #order_comment:checked + label + .comment_area.first {
  display: block !important;
}
.user-box.__delivery #courier_notes:checked + label + .comment_area.second {
  display: block !important;
}
.user-box.__delivery .optional textarea {
  width: 100%;
  height: 99px;
  margin: 10px 0;
  border: 1px solid #616186;
  border-radius: 5px;
}

/**
* main class: .user-box.__account
*/
.user-box.__payment .transfer-holder {
  height: 272px;
  overflow-y: scroll;
  margin-top: -5px;
  padding-top: 5px;
}
.user-box.__payment .sub-title {
  margin-bottom: 25px;
  margin-top: 25px;
}
@media all and (max-width: 1024px) {
  .user-box.__payment .sub-title {
    font-size: 15px;
  }
}
.user-box.__payment .payment-box {
  display: inline-block;
  border: 1px solid #dbdbdb;
  padding: 17px;
  width: calc(50% - 10px);
  text-align: center;
  margin-bottom: 15px;
  cursor: pointer;
  margin-left: 2px;
  height: 77px;
  vertical-align: top;
  font-size: 11px;
}
.user-box.__payment .payment-box.active {
  box-shadow: 0px 0px 0px 2px #1369e4;
}
.user-box.__payment .payment-box:nth-child(2n) {
  margin-left: 11px;
}
.user-box.__payment .image-holder {
  height: 100%;
}
.user-box.__payment .image-holder input {
  display: none;
}
.user-box.__payment .image-holder label {
  max-height: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.user-box.__payment .image-holder img {
  max-width: 100%;
  max-height: 100%;
}
.user-box.__payment .info {
  margin-top: 17px;
  display: inline-block;
  margin-bottom: 6px;
}
.user-box.__payment .info .fa {
  margin-right: 9px;
}

/**
* Desc: registered user in user box
* main class:user-box-registered
*/
.registered-user-content .sub-title {
  margin-bottom: 30px;
  margin-top: 30px;
}
@media all and (max-width: 1024px) {
  .registered-user-content .sub-title {
    margin-bottom: 18px;
    margin-top: 18px;
    font-size: 15px;
  }
}
.registered-user-content .user-name {
  color: #ff557e;
}
.registered-user-content .choose_another_address,
.registered-user-content .choose_second_another_address {
  width: 100%;
  background: white;
  border: 1px solid #eee;
  color: black;
  transition: background 0.3s;
  padding: 9px 11px;
  margin: 30px auto;
}
.registered-user-content .choose_another_address.active,
.registered-user-content .choose_second_another_address.active {
  background: black;
  color: white;
}
.registered-user-content .choose_another_address:before,
.registered-user-content .choose_second_another_address:before {
  font: normal normal normal 18px/1 FontAwesome;
  content: "\f03a";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  line-height: 1;
  float: left;
}
.registered-user-content .add-another {
  display: inline-block;
  background: white;
  color: black;
  border: 1px solid #eee;
  text-decoration: none !important;
  width: 100%;
  text-align: center;
  padding: 9px 11px;
  margin-bottom: 20px;
}
.registered-user-content .add-another:before {
  font: normal normal normal 18px/1 FontAwesome;
  content: "\f067";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  line-height: 1;
  float: left;
}
.registered-user-content
  input[name="another_second_address"]:checked
  + label
  + .choose-second-address {
  display: block !important;
}
.registered-user-content .choose-another-address-holder .address-box,
.registered-user-content .choose-second-another-address-holder .address-box {
  cursor: pointer;
  margin-bottom: 20px;
}
.registered-user-content .choose-another-address-holder .address-box.active,
.registered-user-content
  .choose-second-another-address-holder
  .address-box.active {
  border: 2px solid black;
}
.registered-user-content .address-box {
  border: 1px solid #eee;
  padding: 12px 15px;
  border-radius: 10px;
}
.registered-user-content .address-box .update_address {
  color: black;
  text-align: right;
  font-weight: bold;
}

/**
* -----------------------------------------
* Extra stylesheet
* -----------------------------------------
*/
/**
* Unclassified elements, corrects for base styles
*/
.breadcrumb.clearfix {
  display: none;
}

.hidden {
  display: none;
}

.terms {
  float: left;
  margin: 35px 0 0 0;
  width: 100%;
  max-width: 578px;
}
.terms .term {
  margin: 0px 0px;
}

#specialorder .errors {
  margin-bottom: 10px;
  margin-top: 88px;
}

#specialorder .errors + .products_summary {
  margin: 44px 0 51px;
}

#specialorderpayment .terms a,
#specialorderpayment .promotions a {
  text-decoration: underline;
}

.final_summary_box.products_summary {
  width: 100%;
  /*max-width: 359px;*/
  float: right;
  margin: -1px 0 0 0;
  border: 1px solid #9190af;
  border-radius: 0 0 9px 9px;
}
@media all and (max-width: 992px) {
  .final_summary_box.products_summary {
    max-width: initial;
  }
}
.final_summary_box.products_summary .final_summary {
  /*max-width: 335px;*/
}
@media all and (max-width: 992px) {
  .final_summary_box.products_summary .final_summary {
    max-width: initial;
  }
}
.final_summary_box.products_summary .final_summary .table_line .col.col_1 {
  flex-basis: 60%;
  text-align: left;
}
.final_summary_box.products_summary .final_summary .table_line .col.col_2 {
  flex-basis: 40%;
}
.final_summary_box.products_summary .final_summary .table_line.last_line {
  margin-top: 5px;
  padding-bottom: 24px;
}
.final_summary_box.products_summary
  .final_summary
  .table_line
  .col.total_final_amount
  span.amount {
  font-size: 15pt;
  margin-top: 0;
  display: inline-block;
  vertical-align: top;
}

.all_promotions_link {
  margin: 0 0px;
}

.input.__promotion {
  max-width: 274px;
}

.send_promotion {
  margin-left: 10px;
}

#specialorderpayment .title_section {
  margin-top: 3px;
  margin-bottom: 11px;
  width: 100%;
  display: inline-block;
}
#specialorderpayment .order_footer_buttons {
  margin-top: 20px;
  float: left;
  width: 100%;
}
#specialorderpayment .order_footer_buttons a {
  text-decoration: none;
}

.errors {
  border: 1px solid #eee;
  padding: 20px;
  margin-bottom: 30px;
  margin-top: 23px;
}
.errors p {
  color: red;
  font-weight: 600;
}
.errors ol {
  list-style-type: decimal;
  padding-left: 20px;
}

.promotions {
  max-width: 335px;
  float: right;
  width: 100%;
}

.price_holder .price_regular {
  font-weight: 100;
  text-decoration: line-through;
  color: #e2375c;
  font-family: "Roboto";
  margin: 0 -13px 0 5px;
  font-size: 13px;
  vertical-align: super;
}

.sensbitpaczkomatymap {
  display: none !important;
}

.payment_option.active + .sensbitpaczkomatymap {
  display: block !important;
}

#quantity_wanted_p {
  position: relative;
  overflow: hidden;
  float: left;
  margin-right: 0;
  margin-left: 19px;
  margin-top: 13px;
}
@media all and (max-width: 992px) {
  #quantity_wanted_p {
    margin-left: 0;
  }
}

#quantity_wanted_p .product_quantity_up,
#quantity_wanted_p .product_quantity_down {
  position: absolute;
  right: 6px;
  font-size: 10px;
  line-height: 1;
  color: #000;
  width: 13px;
  height: 12px;
  text-align: center;
}

#quantity_wanted_p .product_quantity_down {
  bottom: 3px;
}

#quantity_wanted_p .product_quantity_up {
  top: 9px;
}

#quantity_wanted_p input {
  float: left;
  width: 79px;
  height: 39px;
  padding: 0 32px 0 16px;
  font-family: "PT Sans", sans-serif;
  background: #fff;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: #000;
  border-radius: 0;
  border: none;
  outline-width: 0;
  border: 1px solid #eaeaea;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-required-holder {
  position: relative;
  display: inline-block;
  width: 100%;
}
.input-required-holder .input-required-holder--placehoder {
  position: absolute;
  top: 13px;
  left: 10px;
  font-size: 10px;
  pointer-events: none;
}
.input-required-holder .input-required-holder__value {
  color: #969494;
}
.input-required-holder .input-required-holder__star {
  color: red;
}

#specialorderpayment input[type="checkbox"] + label,
#specialorderpayment input[type="checkbox"] + .label label {
  width: 100%;
  text-align: justify;
}

@media all and (max-width: 1024px) {
  #specialorderpayment input[type="checkbox"] + label,
  #specialorderpayment input[type="checkbox"] + .label label {
    font-size: 10px;
  }
}
@media all and (max-width: 1024px) {
  #specialorderpayment input[type="checkbox"] + label:before,
  #specialorderpayment input[type="checkbox"] + .label label:before {
    top: -2px;
    width: 15px;
    height: 15px;
  }
}
@media all and (max-width: 1024px) {
  #center_column .user-box.__account {
    padding-bottom: 4px;
  }

  .boxes .user-box.__delivery {
    margin-top: 0;
  }
}
.user-box.__account.__agreement {
  width: 100%;
  margin-top: 34px;
  float: left;
}
.user-box.__account.__agreement .user-box__inner {
  float: left;
  width: 100%;
  padding-bottom: 11px;
  padding-top: 13px;
}
.user-box.__account.__agreement h3 {
  margin-bottom: 0;
}
.user-box.__account.__agreement .terms {
  margin: 14px 0 0 0;
}

.user-box.__payment .user-box__inner {
  border-radius: 9px 9px 0 0;
}

#specialorder .final_summary {
  max-width: 295px;
  border: 1px solid #e4e4e4;
}
@media all and (max-width: 992px) {
  #specialorder .final_summary {
    max-width: 400px;
    margin: 0;
  }
}
#specialorder .final_summary .btn.continue_order {
  background: #e25ff9;
  /* Old browsers */
  background: -moz-linear-gradient(left, #e25ff9 0%, #1062df 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #e25ff9 0%, #1062df 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #e25ff9 0%, #1062df 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e25ff9', endColorstr='#1062df',GradientType=1 );
  /* IE6-9 */
}

#specialorderpayment input[type="checkbox"] + label,
#specialorderpayment input[type="checkbox"] + .label label,
#specialorder input[type="checkbox"] + label,
#specialorder input[type="checkbox"] + .label label {
  display: inline-block !important;
  padding-left: 27px;
  position: relative;
  clear: both;
  cursor: pointer;
  text-transform: none;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
#specialorderpayment input[type="checkbox"] + label,
#specialorderpayment #specialorderpayment input[type="checkbox"] + .label label,
#specialorder input[type="checkbox"] + label,
#specialorder #specialorderpayment input[type="checkbox"] + .label label {
  width: 100%;
  text-align: justify;
}
#specialorderpayment input[type="checkbox"] + label:before,
#specialorderpayment input[type="checkbox"] + .label label:before,
#specialorder input[type="checkbox"] + label:before,
#specialorder input[type="checkbox"] + .label label:before {
  content: "";
  display: inline-block !important;
  width: 19px;
  height: 19px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 0;
  background: none;
  border: solid 1px #145cca;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  border-radius: 5px;
}
#specialorderpayment input[type="checkbox"]:checked + label:before,
#specialorderpayment input[type="checkbox"]:checked + .label label:before,
#specialorder input[type="checkbox"]:checked + label:before,
#specialorder input[type="checkbox"]:checked + .label label:before {
  background: #145cca;
  border-color: #145cca;
  border-radius: 5px;
}
#specialorderpayment label,
#specialorder label {
  font-size: 11px;
  line-height: 16px;
}
#specialorderpayment .main_title,
#specialorder .main_title {
  display: none;
}
#specialorderpayment p,
#specialorder p {
  margin-bottom: 7px;
}

#specialorderpayment .title_section .steps_line .arrow_holder:nth-of-type(1) {
  margin-top: -20px;
}
#specialorderpayment
  .title_section
  .steps_line
  .arrow_holder:nth-of-type(1)
  .arrow.active:before {
  font-weight: 400;
}
#specialorderpayment
  .title_section
  .steps_line
  .arrow_holder:nth-of-type(1)
  .desc
  a {
  font-weight: 400;
}

/*# sourceMappingURL=special_order.css.map */
