@charset "UTF-8";
/*
======================================== 
module/such/fontawesome/css/fontawesome/_variables.scss 
======================================== 
*/
/*
======================================== 
module/such/fontawesome/css/fontawesome/_mixins.scss 
======================================== 
*/
/*
======================================== 
module/such/fontawesome/css/fontawesome/_core.scss 
======================================== 
*/
.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;
}

/*
======================================== 
module/such/fontawesome/css/fontawesome/_larger.scss 
======================================== 
*/
/* 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;
}

/*
======================================== 
module/such/fontawesome/css/fontawesome/_fixed-width.scss 
======================================== 
*/
.fa-fw {
  width: 1.28571em;
  text-align: center;
}

/*
======================================== 
module/such/fontawesome/css/fontawesome/_list.scss 
======================================== 
*/
.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;
}

/*
======================================== 
module/such/fontawesome/css/fontawesome/_bordered-pulled.scss 
======================================== 
*/
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}

/*
======================================== 
module/such/fontawesome/css/fontawesome/_animated.scss 
======================================== 
*/
.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);
  }
}
/*
======================================== 
module/such/fontawesome/css/fontawesome/_rotated-flipped.scss 
======================================== 
*/
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -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;
}

/*
======================================== 
module/such/fontawesome/css/fontawesome/_stacked.scss 
======================================== 
*/
.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: #fff;
}

/*
======================================== 
module/such/fontawesome/css/fontawesome/_icons.scss 
======================================== 
*/
/* 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: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-feed:before,
.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-area-chart:before {
  content: "";
}

.fa-pie-chart:before {
  content: "";
}

.fa-line-chart:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-facebook-official:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-hotel:before,
.fa-bed:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-sticky-note-o:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-hourglass-o:before {
  content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "";
}

.fa-hand-scissors-o:before {
  content: "";
}

.fa-hand-lizard-o:before {
  content: "";
}

.fa-hand-spock-o:before {
  content: "";
}

.fa-hand-pointer-o:before {
  content: "";
}

.fa-hand-peace-o:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-tv:before,
.fa-television:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-500px:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-calendar-plus-o:before {
  content: "";
}

.fa-calendar-minus-o:before {
  content: "";
}

.fa-calendar-times-o:before {
  content: "";
}

.fa-calendar-check-o:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-map-o:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-commenting:before {
  content: "";
}

.fa-commenting-o:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-credit-card-alt:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-pause-circle-o:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stop-circle-o:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-wheelchair-alt:before {
  content: "";
}

.fa-question-circle-o:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-audio-description:before {
  content: "";
}

.fa-volume-control-phone:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-assistive-listening-systems:before {
  content: "";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-first-order:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "";
}

.fa-handshake-o:before {
  content: "";
}

.fa-envelope-open:before {
  content: "";
}

.fa-envelope-open-o:before {
  content: "";
}

.fa-linode:before {
  content: "";
}

.fa-address-book:before {
  content: "";
}

.fa-address-book-o:before {
  content: "";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "";
}

.fa-user-circle:before {
  content: "";
}

.fa-user-circle-o:before {
  content: "";
}

.fa-user-o:before {
  content: "";
}

.fa-id-badge:before {
  content: "";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "";
}

.fa-quora:before {
  content: "";
}

.fa-free-code-camp:before {
  content: "";
}

.fa-telegram:before {
  content: "";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "";
}

.fa-shower:before {
  content: "";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "";
}

.fa-podcast:before {
  content: "";
}

.fa-window-maximize:before {
  content: "";
}

.fa-window-minimize:before {
  content: "";
}

.fa-window-restore:before {
  content: "";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "";
}

.fa-bandcamp:before {
  content: "";
}

.fa-grav:before {
  content: "";
}

.fa-etsy:before {
  content: "";
}

.fa-imdb:before {
  content: "";
}

.fa-ravelry:before {
  content: "";
}

.fa-eercast:before {
  content: "";
}

.fa-microchip:before {
  content: "";
}

.fa-snowflake-o:before {
  content: "";
}

.fa-superpowers:before {
  content: "";
}

.fa-wpexplorer:before {
  content: "";
}

.fa-meetup:before {
  content: "";
}

/*
======================================== 
module/such/fontawesome/css/fontawesome/_screen-reader.scss 
======================================== 
*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/*
======================================== 
css/_bootstrap-variables.scss 
======================================== 
*/
/*
======================================== 
             css/_helpers.scss 
======================================== 
*/
.margin-top {
  margin-top: 15px !important;
}

.margin-top-lg {
  margin-top: 30px !important;
}

.margin-top-none {
  margin-top: 0 !important;
}

.margin-bottom {
  margin-bottom: 15px !important;
}

.margin-bottom-lg {
  margin-bottom: 30px !important;
}

.margin-bottom-none {
  margin-bottom: 0 !important;
}

.margin-left {
  margin-left: 15px !important;
}

.margin-left-lg {
  margin-left: 30px !important;
}

.margin-left-none {
  margin-left: 0 !important;
}

.margin-right {
  margin-right: 15px !important;
}

.margin-right-lg {
  margin-right: 30px !important;
}

.margin-right-none {
  margin-right: 0 !important;
}

.padding-top {
  padding-top: 15px !important;
}

.padding-top-lg {
  padding-top: 30px !important;
}

.padding-top-none {
  padding-top: 0 !important;
}

.padding-bottom {
  padding-bottom: 15px !important;
}

.padding-bottom-lg {
  padding-bottom: 30px !important;
}

.padding-bottom-none {
  padding-bottom: 0 !important;
}

.padding-left {
  padding-left: 15px !important;
}

.padding-left-lg {
  padding-left: 30px !important;
}

.padding-left-none {
  padding-left: 0 !important;
}

.padding-right {
  padding-right: 15px !important;
}

.padding-right-lg {
  padding-right: 30px !important;
}

.padding-right-none {
  padding-right: 0 !important;
}

.w-100 {
  width: 100%;
}

/*
======================================== 
              css/_mixins.scss 
======================================== 
*/
/*
======================================== 
       css/commisionsRate.scss 
======================================== 
*/
.commisions-rate {
  position: relative;
}
.commisions-rate a[href="#rm"], .commisions-rate a[href="#add"] {
  display: none !important;
}
.commisions-rate .btn-back {
  float: right;
  margin-top: -15px;
  margin-bottom: 15px;
}
.commisions-rate .commission-rate-header {
  display: table;
}
.commisions-rate .commission-rate-header > .row {
  background: #ccc;
  font-weight: 700;
  display: table-row;
}
.commisions-rate .commission-rate-header > .row > * {
  display: table-cell;
  vertical-align: middle;
  float: none;
  padding-top: 5px;
  padding-bottom: 5px;
}
.commisions-rate .form {
  clear: both;
}
.commisions-rate .form-field.form.multiple {
  width: 100%;
}
.commisions-rate .form-field.form.multiple .visit-label {
  position: absolute;
  top: 50%;
  left: 0;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.commisions-rate .form-field.form.multiple .form-group {
  margin-bottom: 0;
}
.commisions-rate .form-field.form.multiple > .row {
  position: relative;
  border-top: 1px solid #ccc;
}
.commisions-rate .form-field.form.multiple > .row > * .input-group {
  padding: 10px 0;
}
.commisions-rate .form-field.form.multiple > .row > * .input-group input {
  font-size: 14px;
  height: 34px !important;
  line-height: 34px !important;
  text-align: right;
  padding-left: 0;
}
.commisions-rate .form-field.form.multiple > .row:first-child {
  border-top: none;
}
.commisions-rate .form-field.form.multiple > .row:nth-child(even) {
  background: #f7f7f7;
}
.commisions-rate .form-field.form.multiple .price-with-label label {
  width: 30px;
  float: left;
  font-weight: 400;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 15px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.commisions-rate .form-field.form.multiple .price-with-label .input-group {
  width: calc(100% - 30px);
  margin-left: 30px;
}

.commission-rate-view .commission-rate-header {
  text-align: left;
}
.commission-rate-view .form-field.form.multiple {
  text-align: left;
}
.commission-rate-view .form-field.form.multiple > .row {
  padding: 10px 0;
}
.commission-rate-view .form-field.form.multiple .price-with-label label {
  position: static;
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}

/*
======================================== 
           css/datepicker.scss 
======================================== 
*/
.ui-datepicker.ui-widget.ui-widget-content {
  font-size: 16px;
  font-family: 'franklingothic';
  padding: 0;
  border: 1px solid #952c29;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-widget-header {
  background: #952c29;
  color: #fff;
  border: none;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom: 1px solid #952c29;
}
.ui-datepicker.ui-widget.ui-widget-content td a {
  color: #333;
  font-weight: 700;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-state-default {
  background: #fff;
  border-color: #fff;
  border-radius: 3px;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-state-default.ui-state-hover:not(.ui-state-active) {
  border-color: #952c29;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-state-active {
  border-color: #952c29;
  background: #952c29;
  color: #fff;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-prev.ui-state-hover, .ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-next.ui-state-hover {
  border-color: #fff;
  background: transparent;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-prev:before, .ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-next:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  height: 10px;
  width: 10px;
  border: 3px solid #fff;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-prev span.ui-icon, .ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-next span.ui-icon {
  background: none;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-prev:before {
  border-top: none;
  border-right: none;
  margin-left: 3px;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-prev.ui-state-hover {
  margin: 0;
  top: 2px;
  left: 2px;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-next:before {
  border-bottom: none;
  border-left: none;
  margin-left: -3px;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-next.ui-state-hover {
  margin: 0;
  top: 2px;
  right: 2px;
}
.ui-datepicker.ui-widget.ui-widget-content table {
  margin: 0 2px 2px 2px;
  width: calc(100% - 4px);
}
.ui-datepicker.ui-widget.ui-widget-content select {
  font-family: 'franklingothic';
  color: #333;
}

/*
======================================== 
           css/discussion.scss 
======================================== 
*/
.search-discussion {
  background: #f7f7f7;
  border-radius: 4px;
}
.search-discussion .search-discussion_title {
  padding: 10px;
  font-weight: 700;
}
.search-discussion .search-discussion_form {
  padding: 10px;
}
.search-discussion .search-discussion_form .tagsList, .search-discussion .search-discussion_form .specializationsList {
  margin-bottom: 15px;
  margin-top: -10px;
}
.search-discussion .search-discussion_form ul {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}
.search-discussion .search-discussion_form ul li {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.search-discussion .search-discussion_form ul li span {
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
.search-discussion .search-discussion_icon {
  background: #ebebeb;
  text-align: center;
  border-radius: 0 0 4px 4px;
}
.search-discussion .search-discussion_icon .btn.btn-icon {
  margin-right: 0;
}
.search-discussion .search-discussion_icon .btn.btn-icon .glyphicon {
  font-size: 26px;
}

.discussion-thread {
  font-size: 14px;
  padding: 0;
}
.discussion-thread .discussion-thread_datetime, .discussion-thread .discussion-thread_title, .discussion-thread .discussion-thread_creator {
  background-color: #f7f7f7;
  font-size: 18px;
  padding: 5px 15px;
}
.discussion-thread .discussion-thread_title {
  border-right: none;
  border-left: none;
}
.discussion-thread .discussion-thread_tags-specializations {
  background-color: #f7f7f7;
  border-top: none;
  border-bottom: none;
}
.discussion-thread .discussion-thread_tags-specializations .discussion-thread_tag, .discussion-thread .discussion-thread_tags-specializations .discussion-thread_specializations {
  color: #952c29;
}

.answer {
  min-height: 0 !important;
}
.answer .answer_datetime, .answer .answer_creator {
  background-color: #f7f7f7;
  padding-top: 5px;
  padding-bottom: 5px;
}

.border-answer .answer-panel-coiled {
  padding-left: 15px;
}

.answer-panel-coiled {
  padding-left: 47px;
}

.delete-icon {
  padding: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 30px;
  height: 30px;
  background-color: transparent;
  color: #952c29;
}
.delete-icon:hover {
  background-color: #ebebeb;
}

.thread-images {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.thread-images .thread-images_tread {
  display: flex;
  justify-content: center;
  max-width: 275px;
  overflow: hidden;
  margin: 15px;
}
.thread-images .thread-images_tread img {
  max-height: 180px;
}

.lb-data .lb-details .lb-number {
  display: none !important;
}

.select2-container {
  width: initial !important;
  display: block;
}

/*
======================================== 
                 css/form.scss 
======================================== 
*/
@media (max-width: 767px) {
  .form .form-field .form-control {
    font-size: 14px;
  }
}
.form .form-field:not(.checkbox):not(.radio):not(.image):not(.folder):not(.file):not([data-field-type="link"]):not(.show-label) .form-control {
  height: 50px;
  line-height: 50px;
}
@media (max-width: 767px) {
  .form .form-field:not(.checkbox):not(.radio):not(.image):not(.folder):not(.file):not([data-field-type="link"]):not(.show-label) .form-control {
    height: 35px;
    line-height: 35px;
  }
}
.form .form-field:not(.checkbox):not(.radio):not(.image):not(.folder):not(.file):not([data-field-type="link"]):not(.show-label):not(.label-visible) > label {
  display: none;
}
.form .form-field.checkbox {
  margin-top: 0;
}
.form .form-field.checkbox label {
  padding-left: 25px;
  line-height: 20px;
}
.form .form-field.checkbox .form-label:after {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  height: 20px;
  width: 20px;
  border: 2px solid #999;
  border-radius: 3px;
}
.form .form-field.checkbox input {
  display: none;
}
.form .form-field.checkbox input:checked ~ .form-label:after {
  font-family: 'FontAwesome';
  content: "\f00c";
  font-size: 14px;
  text-align: center;
  padding-top: 1px;
  color: #fff;
  line-height: 14px;
  background: #952c29;
  border-color: #952c29;
}
.form .form-field.checkbox ~ .checkbox {
  margin-top: 10px;
}
.form .form-field.not-selected select {
  color: #999;
}
.form .form-field.not-selected select option:not(:first-child) {
  color: #333;
}
.form .form-field:not(.not-selected) select option:first-child {
  color: #999;
}
.form .form-field.required:not([data-field-name-raw="parentItem"]) option {
  color: #333 !important;
}
.form .form-field textarea {
  min-height: 150px;
  resize: vertical;
  line-height: normal !important;
  padding-top: 12px;
  overflow: hidden;
}
.form .form-field.label-block label {
  display: block !important;
}
.form .form-field.radio {
  margin: 0;
  margin-bottom: 10px;
}
.form .form-field.radio label {
  width: 100%;
  height: 100%;
  padding: 0;
}
.form .form-field.radio .form-field {
  margin: 0;
}
.form .form-field.radio .form-label {
  display: inline-block;
  border: 1px solid #999;
  border-radius: 3px;
  background-repeat: no-repeat;
  text-align: center;
  color: #952c29;
  font-weight: 700;
}
.form .form-field.radio input {
  display: none;
}
.form .form-field.radio input:checked ~ .form-label {
  color: #fff;
  line-height: 14px;
  background-color: #952c29;
  border-color: #952c29;
}
.form .form-field.radio .form-error-container {
  float: left;
  width: 100%;
  text-align: center;
}
.form .form-field.radio .form-label {
  border: 1px solid #999;
  border-radius: 3px;
}
.form .form-field.radio.radio-button-commission-type legend {
  display: none;
}
.form .form-field.radio.radio-button-commission-type input:checked ~ .form-label {
  line-height: normal;
}
.form .form-field.radio.radio-button-commission-type .form-label {
  margin: 0 auto;
  width: 70%;
  padding: 20px 0;
}
.form .form-field.radio.radio-button-commission-type .form-field {
  width: 50%;
  float: left;
}
.form .form-field.radio.radio-button-commission-type .form-field .form-label {
  display: block;
}
.form div.form-field:not(.checkbox):not(.radio):not(.label-visible) label {
  display: block;
}
.form .user-avatar-preview .image-upload img {
  height: 130px;
  width: 130px;
  background-size: cover;
  background-position: center;
  border: 3px solid #952c29;
  border-radius: 50%;
}
.form .image-upload {
  text-align: center;
}
.form .image-upload img {
  max-height: 300px;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 15px;
  margin-bottom: 30px;
}

.stats-form {
  margin-bottom: 15px;
}
.stats-form .panel {
  margin-bottom: 15px;
}
.stats-form .panel-body .form-group {
  margin-bottom: 0;
}

.form.form-center-content .form-field {
  text-align: center;
}
.form.form-center-content .form-field input, .form.form-center-content .form-field select {
  text-align: center;
}

div.form {
  text-align: center;
}
div.form .form-control {
  height: auto !important;
  line-height: 1 !important;
  border: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: none;
}

.form-error-container {
  color: #952c29;
}

.form-narrow-holder {
  max-width: 520px;
  margin: 0 auto;
}
.form-narrow-holder h2 {
  max-width: 300px;
  margin: 0 auto;
}
.form-narrow-holder .btn {
  width: 100%;
  padding: 10px 45px !important;
}
@media (max-width: 767px) {
  .form-narrow-holder .btn {
    padding: 5px 25px !important;
  }
}
.form-narrow-holder .form-field.image label[for] {
  display: none !important;
}
.form-narrow-holder .form-field.image label:not([for]) {
  width: 100%;
}

.form-field[data-field-name-raw="banner"] label {
  padding: 0 15px;
}
.form-field[data-field-name-raw="banner"] label > span.btn {
  width: 50%;
  margin-left: 25%;
}
.form-field[data-field-name-raw="banner"] .progress {
  width: 50%;
  margin-left: 25%;
}

.form-double-row {
  max-width: 1080px;
  margin: 0 auto;
}
.form-double-row .panel {
  border: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form-double-row .panel-body {
  padding: 0;
  margin: 0;
}
.form-double-row p {
  padding: 0 15px;
}
.form-double-row .form-field.submit input {
  width: 100%;
}

[data-field-name="model_AdvertisingCampaign[budget]"], [data-field-name="model_Advertisement[budget]"] {
  clear: both;
}
[data-field-name="model_AdvertisingCampaign[budget]"] .panel-default, [data-field-name="model_Advertisement[budget]"] .panel-default {
  border: none;
  margin-bottom: 0;
  box-shadow: none;
}
[data-field-name="model_AdvertisingCampaign[budget]"] .panel-default .panel-body, [data-field-name="model_Advertisement[budget]"] .panel-default .panel-body {
  padding: 0 15px;
}
[data-field-name="model_AdvertisingCampaign[budget]"] input, [data-field-name="model_Advertisement[budget]"] input {
  text-align: right;
}

.form-field[data-field-name-raw="advertisingRepresentativeGroup"] .panel-default {
  border: none;
}
.form-field[data-field-name-raw="advertisingRepresentativeGroup"] .panel-default .panel-body {
  padding: 0;
}

.folder .btn span.glyphicon {
  display: none;
}

.folder .has-file .file-list, .file .has-file .file-list {
  display: block;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.folder .has-file .file-list .file-item, .file .has-file .file-list .file-item {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.folder .has-file .file-list .file-item:first-child, .file .has-file .file-list .file-item:first-child {
  margin-top: 0;
}
.folder .has-file .file-list .file-item .peek, .file .has-file .file-list .file-item .peek {
  display: block;
  padding: 10px 10px;
  border-radius: 4px;
  margin-right: 5px;
  color: #333;
  width: calc(100% - 34px);
  border: 1px solid #ccc;
}
.folder .has-file .file-list .file-item a.btn-danger, .file .has-file .file-list .file-item a.btn-danger {
  background: #fff;
  border-color: #ccc;
  margin: 0;
  padding: 3px;
  width: 34px;
}
.folder .has-file .file-list .file-item a.btn-danger:hover, .file .has-file .file-list .file-item a.btn-danger:hover {
  background-color: #ccc;
}
.folder .has-file .file-list .file-item a.btn-danger span.fa, .file .has-file .file-list .file-item a.btn-danger span.fa {
  width: 22px;
  height: 22px;
  font-size: 22px;
  color: #952c29;
}

form[name="specializationSettings"] .select2 {
  width: 100% !important;
}
form[name="specializationSettings"] .help-block {
  color: #999;
}

.role_tags label, .dictionaryTags label, .tags label, .search-discussion_form label {
  font-weight: 500;
}
.role_tags .select2-container .select2-selection--multiple, .dictionaryTags .select2-container .select2-selection--multiple, .tags .select2-container .select2-selection--multiple, .search-discussion_form .select2-container .select2-selection--multiple {
  min-height: 38px;
}

@media (max-width: 425px) {
  .role_tags label, .dictionaryTags label {
    max-width: 165px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .role_tags label, .dictionaryTags label {
    max-width: 285px;
  }
}

.sticked {
  position: fixed;
  right: 0;
  padding: 0;
  text-align: center;
  width: 83.33333333%;
}
@media (max-width: 1399px) {
  .sticked {
    width: calc(100% - 145px);
  }
}
@media (max-width: 767px) {
  .sticked {
    width: calc(100% - 34px);
  }
}
.sticked .btn.btn-primary {
  width: 70%;
  height: 40px;
  border-radius: 0;
}

.role_tags, .dictionaryTags {
  pointer-events: none;
}
.role_tags span.select2, .dictionaryTags span.select2 {
  pointer-events: initial;
}

.roles-group, .specializations-group {
  position: relative;
  margin-bottom: 15px;
}
.roles-group .panel, .specializations-group .panel {
  margin-bottom: 0;
  border: none;
}
.roles-group .panel .panel-body, .specializations-group .panel .panel-body {
  padding: 0;
}
.roles-group .roles-group_all, .roles-group .specializations-group_all, .specializations-group .roles-group_all, .specializations-group .specializations-group_all {
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
}
.roles-group .roles-group_all label, .roles-group .specializations-group_all label, .specializations-group .roles-group_all label, .specializations-group .specializations-group_all label {
  display: inline-block !important;
  padding-right: 25px;
  padding-left: 0;
}
.roles-group .roles-group_all label .form-label:after, .roles-group .specializations-group_all label .form-label:after, .specializations-group .roles-group_all label .form-label:after, .specializations-group .specializations-group_all label .form-label:after {
  right: 15px;
  left: initial !important;
}

.budget-row1 label, .budget-row2 label, .budget-row3 label {
  font-weight: 400;
}

.budget-row2 .row {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
.budget-row2 .row .form-error-container {
  height: 21px;
}

.form-field.tinymce .mce-tinymce {
  border-radius: 4px;
}

/*
======================================== 
                css/login.scss 
======================================== 
*/
.user-login-wrapper {
  margin-top: 10%;
}
.user-login-wrapper .user-login-method {
  margin-bottom: 0;
}
.user-login-wrapper .panel-heading {
  background: #fff;
}
.user-login-wrapper .panel-body {
  background: #f7f7f7;
  padding: 15px 30px;
  padding-bottom: 0;
}
.user-login-wrapper .form-field label {
  display: none;
}
.user-login-wrapper .form-field.submit {
  margin-bottom: 0;
}
.user-login-wrapper .btn-primary {
  border: none;
  font-size: 18px;
  width: 100%;
  padding: 9px;
  margin-top: 10px;
  margin-bottom: 30px;
  height: 50px;
  line-height: 32px;
}
.user-login-wrapper .recover {
  background: #666;
}
.user-login-wrapper .recover a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.user-login-wrapper h2 {
  font-size: 18px;
}
.user-login-wrapper .main-header {
  font-size: 32px;
  font-weight: 700;
  margin-top: 5px;
  margin-bottom: 15px;
}

/*
======================================== 
              css/message.scss 
======================================== 
*/
.message .panel-default {
  border-color: #ccc;
  border-width: 2px;
}
.message .panel-default .panel-heading {
  border-color: #ccc;
  border-width: 2px;
}
.message .message-title {
  padding-top: 0;
  padding-bottom: 0;
}
.message .message-title .message-title_item {
  padding: 10px 0;
  color: #333;
  font-weight: 700;
}
.message .message-title .message-title_item:first-child {
  padding-right: 15px;
  border-right: 2px solid #ccc;
}
.message .message-title .message-title_item:last-child {
  padding-left: 15px;
}
.message .message-body {
  padding: 0;
}
.message .message-body .message-body_item {
  padding: 10px 15px;
}
.message .message-body .message-body_item:not(:last-child) {
  border-bottom: 2px solid #ccc;
}
.message .message-body .message-body_item p {
  margin: 20px 0;
}
.message .message-body .message-body_item h1 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-top: 0;
  margin-bottom: 20px;
}
.message .message-body .message-body_item h2 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
}
.message .message-body .message-body_item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-top: 0;
  margin-bottom: 20px;
}
.message .message-body .message-body_item p:first-child, .message .message-body .message-body_item h1:first-child, .message .message-body .message-body_item h2:first-child, .message .message-body .message-body_item h3:first-child {
  margin-top: 0;
}
.message .message-body .message-body_item p:last-child, .message .message-body .message-body_item h1:last-child, .message .message-body .message-body_item h2:last-child, .message .message-body .message-body_item h3:last-child {
  margin-bottom: 0;
}
.message .message-body .message-body_item a.btn:not(:first-child) {
  margin-left: 20px;
}

.advertising-representative .panel-body {
  padding: 0;
}
.advertising-representative .advertising-representative-title {
  color: #333;
  font-size: 14px;
}
.advertising-representative .advertising-representative_box, .advertising-representative .advertising-partner_box {
  padding: 0;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .advertising-representative .advertising-representative_box:first-child {
    border-right: 2px solid #ccc;
  }
}
@media (max-width: 991px) {
  .advertising-representative .advertising-representative_box:first-child {
    border-bottom: 2px solid #ccc;
  }
}
@media (min-width: 992px) {
  .advertising-representative .advertising-partner_box:nth-child(2) {
    border-left: 2px solid #ccc;
    margin-left: -2px;
  }
}

/*
======================================== 
                  css/nav.scss 
======================================== 
*/
@media (max-width: 991px) {
  .navbar {
    min-height: 60px;
  }
}

@media (max-width: 991px) {
  .navbar-header img {
    height: 38px;
  }
}

@media (max-width: 991px) {
  .navbar-brand {
    height: 60px;
  }
}

.navbar-nav {
  float: right;
}
@media (max-width: 767px) {
  .navbar-nav {
    float: none;
  }
}
@media (max-width: 767px) {
  .navbar-nav li {
    width: 150px;
    margin: 0 auto;
  }
}
.navbar-nav li .btn {
  padding: 10px 30px;
  margin-top: 15px;
  color: #952c29 !important;
}
@media (max-width: 1199px) {
  .navbar-nav li .btn {
    margin-top: 7px;
    padding: 8px 20px;
    font-size: 16px;
  }
}
.navbar-nav li .btn:hover {
  color: #6d201e;
}

.navbar-default .navbar-toggle {
  border-color: #952c29;
}
.navbar-default .navbar-toggle .icon-bar {
  background: #952c29;
}
@media (max-width: 991px) {
  .navbar-default .navbar-toggle {
    margin-top: 14px;
    margin-bottom: 0;
  }
}

.fullname {
  max-width: 100%;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.facility-changer {
  float: right;
  margin-top: 3px;
  padding: 3px;
  text-align: right;
  margin-right: 15px;
  display: inline-block;
  max-width: calc(100% - 140px);
}
@media (max-width: 1199px) {
  .facility-changer {
    font-size: 14px;
  }
}
.facility-changer a {
  font-weight: 700;
}
@media (max-width: 767px) {
  .facility-changer a {
    font-size: 18px;
    display: block;
    margin-top: 5px;
  }
}
@media (max-width: 767px) {
  .facility-changer {
    float: none;
    margin: 0;
    margin-top: 15px;
    text-align: center;
  }
}

.facility-name {
  max-width: 100%;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: -3px;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #952c29;
  background: #ebebeb;
}

@media (max-width: 991px) {
  .messages-navbar {
    display: none;
  }
}

.messages-navbar-sm {
  margin-top: 8px;
  margin-left: 20px;
}
@media (min-width: 992px) {
  .messages-navbar-sm {
    display: none;
  }
}
.messages-navbar-sm .messages-navbar-sm_btn {
  display: flex;
  align-items: center;
  padding: 0;
}
.messages-navbar-sm .messages-navbar-sm_btn .messages-navbar-sm_count {
  display: inline-block;
  font-weight: 500;
  padding: 0 15px;
  font-size: 16px;
}
.messages-navbar-sm .messages-navbar-sm_btn .messages-navbar-sm_icon {
  display: inline-block;
  padding: 5px 10px;
  font-size: 20px;
  border-left: 1px solid #ccc;
}
.messages-navbar-sm .messages-navbar-sm_btn .messages-navbar-sm_icon.messages-navbar-sm_icon--active {
  color: #952c29;
}
.messages-navbar-sm .messages-navbar-sm_btn .messages-navbar-sm_icon.messages-navbar-sm_icon-sm--inactive {
  color: #333;
}

.messages-navbar {
  margin-top: 11px;
  margin-left: 20px;
}
@media (max-width: 1199px) {
  .messages-navbar {
    margin-top: 8px;
  }
}
.messages-navbar .messages-navbar_btn {
  display: flex;
  align-items: center;
  padding: 0;
}
.messages-navbar .messages-navbar_btn .messages-navbar_count {
  padding: 0 20px;
  display: inline-block;
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 1199px) {
  .messages-navbar .messages-navbar_btn .messages-navbar_count {
    padding: 0 15px;
    font-size: 16px;
  }
}
.messages-navbar .messages-navbar_btn .messages-navbar_icon {
  display: inline-block;
  padding: 5px 15px;
  font-size: 30px;
  border-left: 1px solid #ccc;
}
@media (max-width: 1199px) {
  .messages-navbar .messages-navbar_btn .messages-navbar_icon {
    padding: 5px 10px;
    font-size: 20px;
  }
}
.messages-navbar .messages-navbar_btn .messages-navbar_icon.messages-navbar_icon--active {
  color: #952c29;
}
.messages-navbar .messages-navbar_btn .messages-navbar_icon.messages-navbar_icon--inactive {
  color: #333;
}
.messages-navbar .dropdown-menu {
  border: none;
  margin-top: 0;
  padding: 0;
}
.messages-navbar .dropdown-menu li:not(:last-child) {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.messages-navbar .dropdown-menu li:first-child {
  border-top: 1px solid #ccc;
}
.messages-navbar .dropdown-menu li:not(:last-child) .dropdown-menu_text-box {
  border-bottom: 1px solid #ccc;
}
.messages-navbar .dropdown-menu li:nth-last-child(2) .dropdown-menu_text-box {
  border-bottom: none;
}
.messages-navbar .dropdown-menu .dropdown-menu_link {
  padding: 0;
}
.messages-navbar .dropdown-menu .dropdown-menu_link .dropdown-menu_text-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.messages-navbar .dropdown-menu .dropdown-menu_link .dropdown-menu_text-box .text-box {
  display: flex;
  align-items: center;
}
.messages-navbar .dropdown-menu .dropdown-menu_link .dropdown-menu_text-box .text-box .text-box_date {
  padding: 5px;
  font-size: 14px;
  color: #952c29;
}
.messages-navbar .dropdown-menu .dropdown-menu_link .dropdown-menu_text-box .text-box .text-box_name {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  min-width: 250px;
  max-width: 350px;
  padding: 5px 30px 5px 15px;
}
.messages-navbar .dropdown-menu .dropdown-menu_link .dropdown-menu_icon {
  padding: 5px 10px;
  font-size: 25px;
  background: #ebebeb;
  color: #952c29;
  border-left: 1px solid #ccc;
}
.messages-navbar .dropdown-menu .dropdown-menu_link .dropdown-menu_show-all {
  padding: 2px 5px;
  text-align: right;
  background: #952c29;
  color: #fff;
  border-radius: 0 0 0 4px;
  font-size: 16px;
}
.messages-navbar .dropdown-menu .dropdown-menu_link .dropdown-menu_show-all:hover {
  background-color: #6d201e;
}

/*
======================================== 
               css/notify.scss 
======================================== 
*/
#notify-container {
  position: fixed;
  top: 14px;
  right: 50%;
  z-index: 10;
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}
#notify-container .notify-item {
  border: 1px solid #ccc;
  border-radius: 30px;
  background: #952c29;
  padding: 0 30px;
}
#notify-container h1 {
  margin: 10px;
  font-size: 24px;
  color: #fff;
}

/*
======================================== 
       css/panel-facility.scss 
======================================== 
*/
.panel-facility {
  border: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.panel-facility .panel-heading {
  position: absolute;
  margin: 0;
  padding: 0;
  border: none;
}
.panel-facility .panel-heading .btn {
  height: 33px;
  width: 33px;
  padding: 0;
}
.panel-facility .panel-heading .btn .fa:before {
  font-size: 30px;
}
.panel-facility .panel-body {
  padding-top: 0;
  padding-left: 45px;
}
@media (max-width: 767px) {
  .panel-facility .panel-body {
    padding-left: 0;
  }
}
.panel-facility .label-minor {
  color: #999;
  font-size: 12px;
}

/*
======================================== 
       css/recommendation.scss 
======================================== 
*/
.recommendations .steps-list {
  text-align: center;
  margin-bottom: 20px;
}
.recommendations .steps-list li {
  margin: 0 5px;
  margin-bottom: 10px;
}
.recommendations .steps-list .label {
  display: table-cell;
  vertical-align: middle;
  border-radius: 50%;
  height: 80px;
  min-width: 80px;
  max-width: 80px;
  color: #952c29;
  background: #ebebeb;
  white-space: normal;
  padding: 0;
  font-weight: 400;
  font-size: 12px;
  border: 2px solid #ebebeb;
}
.recommendations .steps-list .label.done {
  border-color: #952c29;
}
.recommendations .steps-list .label.current {
  color: #fff;
  background: #952c29;
  border-color: #952c29;
}
.recommendations legend {
  text-align: center;
  border: none;
  color: #952c29;
  font-weight: 700;
  font-size: 32px;
}
@media (max-width: 767px) {
  .recommendations legend {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .recommendations .form .form-field.button {
    padding: 0;
    padding-right: 15px;
  }
}
.recommendations .form .form-field.radio {
  margin: 0;
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 767px) {
  .recommendations .form .form-field.radio .form-label {
    font-size: 14px;
  }
}
.recommendations .form .form-field.radio label {
  width: 100%;
  height: 100%;
  padding: 0;
}
.recommendations .form .form-field.radio .form-field {
  margin: 0;
}
.recommendations .form .form-field.radio .form-label {
  display: inline-block;
  border: 1px solid #999;
  border-radius: 3px;
  background-repeat: no-repeat;
  text-align: center;
  color: #952c29;
  font-weight: 700;
}
.recommendations .form .form-field.radio input {
  display: none;
}
.recommendations .form .form-field.radio input:checked ~ .form-label {
  color: #fff;
  line-height: 14px;
  background-color: #952c29;
  border-color: #952c29;
}
.recommendations .form .form-field.radio .form-error-container {
  float: left;
  width: 100%;
  text-align: center;
}
.recommendations .form .form-field.radio .form-label {
  border: 1px solid #999;
  border-radius: 3px;
}
.recommendations .form .form-field.radio.radio-button-child-age .form-field {
  width: 200px;
  height: 200px;
}
@media (max-width: 767px) {
  .recommendations .form .form-field.radio.radio-button-child-age .form-field {
    height: 100px;
    width: 100px;
  }
}
.recommendations .form .form-field.radio.radio-button-child-age .form-field .form-label {
  height: 200px;
  width: 200px;
  padding-top: 70%;
}
@media (max-width: 767px) {
  .recommendations .form .form-field.radio.radio-button-child-age .form-field .form-label {
    height: 100px;
    width: 100px;
    padding-top: 50%;
  }
}
.recommendations .form .form-field.radio.radio-button-child-age .form-field:nth-child(2) {
  float: left;
}
@media (max-width: 767px) {
  .recommendations .form .form-field.radio.radio-button-child-age .form-field:nth-child(2) {
    float: none;
    display: inline-block;
    vertical-align: top;
  }
}
.recommendations .form .form-field.radio.radio-button-child-age .form-field:nth-child(2) .form-label {
  background-image: url("/file/images/icons/adult-bordo-icon.svg");
  background-size: 55%;
  background-position: center 30px;
}
@media (max-width: 767px) {
  .recommendations .form .form-field.radio.radio-button-child-age .form-field:nth-child(2) .form-label {
    background-size: 30%;
    background-position: center 10px;
  }
}
.recommendations .form .form-field.radio.radio-button-child-age .form-field:nth-child(2) input:checked ~ .form-label {
  background-image: url("/file/images/icons/adult-icon.svg");
}
.recommendations .form .form-field.radio.radio-button-child-age .form-field:nth-child(3) {
  float: right;
}
@media (max-width: 767px) {
  .recommendations .form .form-field.radio.radio-button-child-age .form-field:nth-child(3) {
    float: none;
    display: inline-block;
    margin-left: 15px;
  }
}
.recommendations .form .form-field.radio.radio-button-child-age .form-field:nth-child(3) .form-label {
  background-image: url("/file/images/icons/child-bordo-icon.svg");
  background-size: 40%;
  background-position: center 50px;
}
@media (max-width: 767px) {
  .recommendations .form .form-field.radio.radio-button-child-age .form-field:nth-child(3) .form-label {
    background-size: 30%;
    background-position: center 15px;
  }
}
.recommendations .form .form-field.radio.radio-button-child-age .form-field:nth-child(3) input:checked ~ .form-label {
  background-image: url("/file/images/icons/child-icon.svg");
}
.recommendations .form .form-field.radio.radio-button-service-type .form-field {
  width: 200px;
  height: 200px;
}
@media (max-width: 767px) {
  .recommendations .form .form-field.radio.radio-button-service-type .form-field {
    height: 100px;
    width: 100px;
  }
}
.recommendations .form .form-field.radio.radio-button-service-type .form-field .form-label {
  height: 200px;
  width: 200px;
  padding-top: 70%;
  background-size: 55%;
  background-position: center 30px;
}
@media (max-width: 767px) {
  .recommendations .form .form-field.radio.radio-button-service-type .form-field .form-label {
    background-size: 40%;
    background-position: center 15px;
    height: 100px;
    width: 100px;
  }
}
.recommendations .form .form-field.radio.radio-button-service-type .form-field:nth-child(2) {
  float: left;
}
@media (max-width: 767px) {
  .recommendations .form .form-field.radio.radio-button-service-type .form-field:nth-child(2) {
    float: none;
    display: inline-block;
    vertical-align: top;
  }
}
.recommendations .form .form-field.radio.radio-button-service-type .form-field:nth-child(2) .form-label {
  background-image: url("/file/images/icons/medical-bordo-icon.svg");
}
.recommendations .form .form-field.radio.radio-button-service-type .form-field:nth-child(2) input:checked ~ .form-label {
  background-image: url("/file/images/icons/medical-icon.svg");
}
.recommendations .form .form-field.radio.radio-button-service-type .form-field:nth-child(3) {
  float: right;
}
@media (max-width: 767px) {
  .recommendations .form .form-field.radio.radio-button-service-type .form-field:nth-child(3) {
    float: none;
    display: inline-block;
    margin-left: 15px;
  }
}
.recommendations .form .form-field.radio.radio-button-service-type .form-field:nth-child(3) .form-label {
  background-image: url("/file/images/icons/semimedical-bordo-icon.svg");
}
.recommendations .form .form-field.radio.radio-button-service-type .form-field:nth-child(3) input:checked ~ .form-label {
  background-image: url("/file/images/icons/semimedical-icon.svg");
}
.recommendations .form .form-field.radio fieldset[data-field-name-raw="facilityType"] {
  margin-left: -5px;
  margin-right: -5px;
}
@media (max-width: 767px) {
  .recommendations .form .form-field.radio fieldset[data-field-name-raw="facilityType"] {
    margin-left: 0;
    margin-right: 0;
  }
}
.recommendations .form .form-field.radio.radio-button-facility-type .form-field {
  width: 95px;
  height: 95px;
  display: inline-block;
  margin: 0 6px;
  margin-bottom: 12px;
  vertical-align: middle;
}
.recommendations .form .form-field.radio.radio-button-facility-type .form-field .form-label {
  background-image: url("/file/images/icons/facility-bordo-icon.svg");
  background-size: 55%;
  background-position: center 15px;
  font-size: 12px;
  font-weight: 400;
}
.recommendations .form .form-field.radio.radio-button-facility-type .form-field:nth-child(2) {
  margin-left: 0;
}
.recommendations .form .form-field.radio.radio-button-facility-type .form-field:nth-last-child(2) {
  margin-right: 0;
}
.recommendations .form .form-field.radio.radio-button-facility-type .form-field input:checked ~ .form-label {
  background-image: url("/file/images/icons/facility-icon.svg");
}
.recommendations .form .form-field.radio.radio-button-facility-type .form-field input[value="hospital"] ~ .form-label {
  background-image: url("/file/images/icons/hospital-bordo-icon.svg");
}
.recommendations .form .form-field.radio.radio-button-facility-type .form-field input[value="specialist-clinic"] ~ .form-label {
  background-image: url("/file/images/icons/specialist-clinic-bordo-icon.svg");
}
.recommendations .form .form-field.radio.radio-button-facility-type .form-field input[value="rehabilitation"] ~ .form-label {
  background-image: url("/file/images/icons/rehabilitation-bordo-icon.svg");
}
.recommendations .form .form-field.radio.radio-button-facility-type .form-field input[value="diagnostics"] ~ .form-label {
  background-image: url("/file/images/icons/diagnostics-bordo-icon.svg");
}
.recommendations .form .form-field.radio.radio-button-facility-type .form-field input[value="dentistry"] ~ .form-label {
  background-image: url("/file/images/icons/dentistry-bordo-icon.svg");
}
.recommendations .form .form-field.radio.radio-button-facility-type .form-field input[value="psychology"] ~ .form-label {
  background-image: url("/file/images/icons/psychology-bordo-icon.svg");
}
.recommendations .form .form-field.radio.radio-button-facility-type .form-field input[value="dietetics"] ~ .form-label {
  background-image: url("/file/images/icons/dietetics-bordo-icon.svg");
}
.recommendations .form .form-field.radio.radio-button-facility-type .form-field input[value="transport"] ~ .form-label {
  background-image: url("/file/images/icons/transport-bordo-icon.svg");
}
.recommendations .form .form-field.radio.radio-button-facility-type .form-field input:checked[value="hospital"] ~ .form-label {
  background-image: url("/file/images/icons/hospital-icon.svg");
}
.recommendations .form .form-field.radio.radio-button-facility-type .form-field input:checked[value="specialist-clinic"] ~ .form-label {
  background-image: url("/file/images/icons/specialist-clinic-icon.svg");
}
.recommendations .form .form-field.radio.radio-button-facility-type .form-field input:checked[value="rehabilitation"] ~ .form-label {
  background-image: url("/file/images/icons/rehabilitation-icon.svg");
}
.recommendations .form .form-field.radio.radio-button-facility-type .form-field input:checked[value="diagnostics"] ~ .form-label {
  background-image: url("/file/images/icons/diagnostics-icon.svg");
}
.recommendations .form .form-field.radio.radio-button-facility-type .form-field input:checked[value="dentistry"] ~ .form-label {
  background-image: url("/file/images/icons/dentistry-icon.svg");
}
.recommendations .form .form-field.radio.radio-button-facility-type .form-field input:checked[value="psychology"] ~ .form-label {
  background-image: url("/file/images/icons/psychology-icon.svg");
}
.recommendations .form .form-field.radio.radio-button-facility-type .form-field input:checked[value="dietetics"] ~ .form-label {
  background-image: url("/file/images/icons/dietetics-icon.svg");
}
.recommendations .form .form-field.radio.radio-button-facility-type .form-field input:checked[value="transport"] ~ .form-label {
  background-image: url("/file/images/icons/transport-icon.svg");
}
.recommendations .form .form-field.radio.radio-button-facility-type .form-label {
  height: 95px;
  width: 95px;
  padding-top: 65%;
}
.recommendations .form .form-field.radio:nth-last-child(2) {
  margin-bottom: 10px !important;
}
.recommendations .form .form-field.submit {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .recommendations .form .form-field.submit {
    margin-top: 15px;
  }
}
.recommendations .form .group.options-group .panel {
  border: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}
.recommendations .form .group.options-group .panel-body {
  padding: 0;
}
.recommendations .form .group.options-group legend {
  font-size: 18px;
  color: #333;
  float: left;
  width: 65%;
  text-align: left;
  margin-bottom: 0;
  margin-top: 15px;
  max-width: calc(100% - 120px);
}
@media (max-width: 767px) {
  .recommendations .form .group.options-group legend {
    font-size: 14px;
    margin-top: 7px;
  }
}
.recommendations .form .group.options-group .form-field.radio label {
  display: block;
}
.recommendations .form .group.options-group .form-field.radio .form-field {
  width: 80px;
  height: 50px;
  line-height: 50px;
  float: right;
  margin: 0 5px;
  width: 15%;
}
@media (max-width: 767px) {
  .recommendations .form .group.options-group .form-field.radio .form-field {
    width: 42px;
    height: 30px;
  }
}
.recommendations .form .group.options-group .form-field.radio .form-field input:checked ~ .form-label {
  line-height: 50px;
}
.recommendations .form .group.options-group .form-field.radio .form-field:nth-child(2) {
  margin-right: 0;
}
.recommendations .form .group.options-group .form-field.radio .form-label {
  width: 80px;
  height: 50px;
  vertical-align: top;
}
@media (max-width: 767px) {
  .recommendations .form .group.options-group .form-field.radio .form-label {
    width: 42px;
    height: 30px;
    line-height: 30px;
  }
}
.recommendations .form .btn-search {
  padding: 10px 0px !important;
}
@media (max-width: 767px) {
  .recommendations .form .btn-search {
    padding: 5px 0px !important;
  }
}
.recommendations .form .label-visible label {
  color: #952c29;
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}
.recommendations .form .label-big label {
  font-size: 32px;
}
.recommendations .list-group-item {
  margin-bottom: 10px;
}
.recommendations .list-group-item.is-leading {
  border-color: #952c29;
}
.recommendations .list-group-item input {
  display: none;
}
.recommendations .list-group-item input:checked ~ .facility-label, .recommendations .list-group-item input:checked ~ .facility-label ~ .partner-point {
  background: #952c29;
  color: #fff;
}
.recommendations .list-group-item .facility-label, .recommendations .list-group-item .partner-point {
  padding: 15px;
}
.recommendations .list-group-item .facility-name, .recommendations .list-group-item .partner-point-name {
  font-size: 18px;
}
.recommendations .list-group-item .facility-address, .recommendations .list-group-item .partner-point-address {
  font-size: 14px;
}
.recommendations .list-group-item .partner-point {
  border-top: 1px solid #ddd;
  padding-top: 10px;
  margin-top: -5px;
}
.recommendations .list-group-item label {
  margin: 0;
  width: 100%;
}
.recommendations .list-group-item .partner-point-label {
  font-size: 14px;
}
.recommendations .recommendation-success {
  text-align: center;
}
.recommendations .recommendation-success h2 {
  margin-top: 60px;
}
.recommendations .recommendation-success p {
  font-weight: 700;
}
.recommendations .recommendation-success .btn {
  margin-top: 50px;
}

.recommendation-view-modal {
  color: #952c29;
  font-size: 14px;
}
@media (min-width: 768px) {
  .recommendation-view-modal .modal-dialog {
    width: 700px;
  }
}
@media (min-width: 992px) {
  .recommendation-view-modal .modal-dialog {
    width: 900px;
  }
}
@media (max-width: 767px) {
  .recommendation-view-modal .button-wrapper + .button-wrapper {
    margin-top: 10px;
  }
}
.recommendation-view-modal .recommendation-details-wrapper > .row:first-child {
  margin-top: -20px;
}
.recommendation-view-modal .panel-body {
  padding: 8px 10px;
}
.recommendation-view-modal .modal-header {
  border-bottom: none;
  padding-bottom: 0;
}
.recommendation-view-modal .modal-header button {
  opacity: 1;
  background: #952c29;
  color: #fff;
  width: 25px;
  height: 25px;
  border-radius: 3px;
  font-size: 25px;
  position: relative;
  top: 1px;
}
.recommendation-view-modal .modal-title {
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  color: #999;
  line-height: 25px;
}
.recommendation-view-modal .modal-body {
  padding: 20px;
}
.recommendation-view-modal .panel {
  margin-top: 20px;
  margin-bottom: 0;
}
.recommendation-view-modal .panel.text-center .row .button-wrapper:only-child {
  text-align: center;
  width: 100% !important;
}
.recommendation-view-modal .panel-heading {
  font-size: 13px;
  padding: 6px 8px;
}
.recommendation-view-modal .panel-body ~ .panel-heading {
  border-radius: 0;
  border-top: 1px solid #ddd;
}
.recommendation-view-modal .label.label-default {
  background: none;
  font-size: 14px;
  color: #333;
  padding: 0;
  display: block;
  text-align: left;
  white-space: nowrap;
}
.recommendation-view-modal .margin-top {
  margin-top: 10px !important;
}
.recommendation-view-modal .btn {
  font-size: 14px;
}
.recommendation-view-modal ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.recommendation-view-modal ul li {
  font-size: 14px;
}
.recommendation-view-modal .smaller {
  font-size: 14px;
}
.recommendation-view-modal .text-center .label.label-default {
  text-align: center;
}
.recommendation-view-modal .text-center .btn {
  max-width: 250px;
}
.recommendation-view-modal form[name="visit-accept-without-date"] .form-group.submit {
  margin-bottom: 0;
}

/*
======================================== 
              css/sidebar.scss 
======================================== 
*/
.sidebar {
  position: absolute;
  color: #fff;
  background: #666;
  height: 100%;
  text-align: right;
  padding: 0;
}
@media (max-width: 1399px) {
  .sidebar {
    width: 145px;
  }
}
@media (max-width: 767px) {
  .sidebar {
    width: 34px;
  }
}
.sidebar li[data-menu] a {
  position: relative;
  padding-left: 40px;
  text-align: left;
  color: #fff;
  font-size: 18px;
}
@media (max-width: 1399px) {
  .sidebar li[data-menu] a {
    font-size: 14px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
@media (max-width: 767px) {
  .sidebar li[data-menu] a {
    font-size: 0;
    height: 34px;
    padding: 0;
  }
}
.sidebar li[data-menu] a:hover {
  color: #fff;
}
.sidebar li[data-menu] a:hover {
  background-color: #999;
}
.sidebar li[data-menu] a:focus, .sidebar li[data-menu] a:active {
  background: #fff;
  color: #666;
}
.sidebar li[data-menu] a:before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  z-index: 1;
}
@media (max-width: 1399px) {
  .sidebar li[data-menu] a:before {
    height: 20px;
    width: 20px;
  }
}
.sidebar li.active a {
  background: #fff;
  color: #666;
}
.sidebar li .badge {
  font-weight: 400;
  vertical-align: top;
  margin-right: 5px;
}
.sidebar li[data-menu="commissions.index"] a:before {
  background-image: url("/file/images/icons/commisions-icon.svg");
}
.sidebar li[data-menu="commissions.index"] a:focus:before, .sidebar li[data-menu="commissions.index"] a:active:before {
  background-image: url("/file/images/icons/commisions-gray-icon.svg");
}
.sidebar li[data-menu="commissions.index"].active a:before {
  background-image: url("/file/images/icons/commisions-gray-icon.svg");
}
.sidebar li[data-menu="advertisementsSettlement.index"] a:before {
  background-image: url("/file/images/icons/commisions-icon.svg");
}
.sidebar li[data-menu="advertisementsSettlement.index"] a:focus:before, .sidebar li[data-menu="advertisementsSettlement.index"] a:active:before {
  background-image: url("/file/images/icons/commisions-gray-icon.svg");
}
.sidebar li[data-menu="advertisementsSettlement.index"].active a:before {
  background-image: url("/file/images/icons/commisions-gray-icon.svg");
}
.sidebar li[data-menu="dictionariesController.index"] a:before {
  background-image: url("/file/images/icons/dictionary-icon.svg");
}
.sidebar li[data-menu="dictionariesController.index"] a:focus:before, .sidebar li[data-menu="dictionariesController.index"] a:active:before {
  background-image: url("/file/images/icons/dictionary-gray-icon.svg");
}
.sidebar li[data-menu="dictionariesController.index"].active a:before {
  background-image: url("/file/images/icons/dictionary-gray-icon.svg");
}
.sidebar li[data-menu="discussion.index"] a:before {
  background-image: url("/file/images/icons/profile-icon.svg");
}
.sidebar li[data-menu="discussion.index"] a:focus:before, .sidebar li[data-menu="discussion.index"] a:active:before {
  background-image: url("/file/images/icons/profile-gray-icon.svg");
}
.sidebar li[data-menu="discussion.index"].active a:before {
  background-image: url("/file/images/icons/profile-gray-icon.svg");
}
.sidebar li[data-menu="facilitiesController.index"] a:before {
  background-image: url("/file/images/icons/facility-icon.svg");
}
.sidebar li[data-menu="facilitiesController.index"] a:focus:before, .sidebar li[data-menu="facilitiesController.index"] a:active:before {
  background-image: url("/file/images/icons/facility-gray-icon.svg");
}
.sidebar li[data-menu="facilitiesController.index"].active a:before {
  background-image: url("/file/images/icons/facility-gray-icon.svg");
}
.sidebar li[data-menu="profile.index"] a:before {
  background-image: url("/file/images/icons/profile-icon.svg");
}
.sidebar li[data-menu="profile.index"] a:focus:before, .sidebar li[data-menu="profile.index"] a:active:before {
  background-image: url("/file/images/icons/profile-gray-icon.svg");
}
.sidebar li[data-menu="profile.index"].active a:before {
  background-image: url("/file/images/icons/profile-gray-icon.svg");
}
.sidebar li[data-menu="settings.commissions"] a:before {
  background-image: url("/file/images/icons/settings-icon.svg");
}
.sidebar li[data-menu="settings.commissions"] a:focus:before, .sidebar li[data-menu="settings.commissions"] a:active:before {
  background-image: url("/file/images/icons/settings-gray-icon.svg");
}
.sidebar li[data-menu="settings.commissions"].active a:before {
  background-image: url("/file/images/icons/settings-gray-icon.svg");
}
.sidebar li[data-menu="usersController.index"] a:before {
  background-image: url("/file/images/icons/profile-icon.svg");
}
.sidebar li[data-menu="usersController.index"] a:focus:before, .sidebar li[data-menu="usersController.index"] a:active:before {
  background-image: url("/file/images/icons/profile-gray-icon.svg");
}
.sidebar li[data-menu="usersController.index"].active a:before {
  background-image: url("/file/images/icons/profile-gray-icon.svg");
}
.sidebar li[data-menu="facilitiesController.my"] a:before {
  background-image: url("/file/images/icons/facility-icon.svg");
}
.sidebar li[data-menu="facilitiesController.my"] a:focus:before, .sidebar li[data-menu="facilitiesController.my"] a:active:before {
  background-image: url("/file/images/icons/facility-gray-icon.svg");
}
.sidebar li[data-menu="facilitiesController.my"].active a:before {
  background-image: url("/file/images/icons/facility-gray-icon.svg");
}
.sidebar li[data-menu="recommendationsController.create"] a:before {
  background-image: url("/file/images/icons/recommendation-icon.svg");
}
.sidebar li[data-menu="recommendationsController.create"] a:focus:before, .sidebar li[data-menu="recommendationsController.create"] a:active:before {
  background-image: url("/file/images/icons/recommendation-gray-icon.svg");
}
.sidebar li[data-menu="recommendationsController.create"].active a:before {
  background-image: url("/file/images/icons/recommendation-gray-icon.svg");
}
.sidebar li[data-menu="recommendationsController.my"] a:before {
  background-image: url("/file/images/icons/list-icon.svg");
}
.sidebar li[data-menu="recommendationsController.my"] a:focus:before, .sidebar li[data-menu="recommendationsController.my"] a:active:before {
  background-image: url("/file/images/icons/list-gray-icon.svg");
}
.sidebar li[data-menu="recommendationsController.my"].active a:before {
  background-image: url("/file/images/icons/list-gray-icon.svg");
}
.sidebar li[data-menu="recommendationsController.settle"] a:before {
  background-image: url("/file/images/icons/commisions-icon.svg");
}
.sidebar li[data-menu="recommendationsController.settle"] a:focus:before, .sidebar li[data-menu="recommendationsController.settle"] a:active:before {
  background-image: url("/file/images/icons/commisions-gray-icon.svg");
}
.sidebar li[data-menu="recommendationsController.settle"].active a:before {
  background-image: url("/file/images/icons/commisions-gray-icon.svg");
}
.sidebar li[data-menu="recommendationsController.commissions"] a:before {
  background-image: url("/file/images/icons/commisions-icon.svg");
}
.sidebar li[data-menu="recommendationsController.commissions"] a:focus:before, .sidebar li[data-menu="recommendationsController.commissions"] a:active:before {
  background-image: url("/file/images/icons/commisions-gray-icon.svg");
}
.sidebar li[data-menu="recommendationsController.commissions"].active a:before {
  background-image: url("/file/images/icons/commisions-gray-icon.svg");
}
.sidebar li[data-menu="recommendationsController.sent"] a:before {
  background-image: url("/file/images/icons/list-icon.svg");
}
.sidebar li[data-menu="recommendationsController.sent"] a:focus:before, .sidebar li[data-menu="recommendationsController.sent"] a:active:before {
  background-image: url("/file/images/icons/list-gray-icon.svg");
}
.sidebar li[data-menu="recommendationsController.sent"].active a:before {
  background-image: url("/file/images/icons/list-gray-icon.svg");
}
.sidebar li[data-menu="recommendationsController.received"] a:before {
  background-image: url("/file/images/icons/commosions-recieved-icon.svg");
}
.sidebar li[data-menu="recommendationsController.received"] a:focus:before, .sidebar li[data-menu="recommendationsController.received"] a:active:before {
  background-image: url("/file/images/icons/commosions-recieved-gray-icon.svg");
}
.sidebar li[data-menu="recommendationsController.received"].active a:before {
  background-image: url("/file/images/icons/commosions-recieved-gray-icon.svg");
}
.sidebar li[data-menu="recommendationsController.all"] a:before {
  background-image: url("/file/images/icons/list-icon.svg");
}
.sidebar li[data-menu="recommendationsController.all"] a:focus:before, .sidebar li[data-menu="recommendationsController.all"] a:active:before {
  background-image: url("/file/images/icons/list-gray-icon.svg");
}
.sidebar li[data-menu="recommendationsController.all"].active a:before {
  background-image: url("/file/images/icons/list-gray-icon.svg");
}
.sidebar li[data-menu="statsController.index"] a:before {
  background-image: url("/file/images/icons/statistics-icon.svg");
}
.sidebar li[data-menu="statsController.index"] a:focus:before, .sidebar li[data-menu="statsController.index"] a:active:before {
  background-image: url("/file/images/icons/statistics-gray-icon.svg");
}
.sidebar li[data-menu="statsController.index"].active a:before {
  background-image: url("/file/images/icons/statistics-gray-icon.svg");
}
.sidebar li[data-menu="messages.index"] a:before {
  background-image: url("/file/images/icons/envelope-solid.svg");
}
.sidebar li[data-menu="messages.index"] a:focus:before, .sidebar li[data-menu="messages.index"] a:active:before {
  background-image: url("/file/images/icons/envelope-open-solid.svg");
}
.sidebar li[data-menu="messages.index"].active a:before {
  background-image: url("/file/images/icons/envelope-open-solid.svg");
}
.sidebar li[data-menu="advertisingPartners.index"] a:before {
  background-image: url("/file/images/icons/suitcase-solid.svg");
}
.sidebar li[data-menu="advertisingPartners.index"] a:focus:before, .sidebar li[data-menu="advertisingPartners.index"] a:active:before {
  background-image: url("/file/images/icons/suitcase-solid-gray.svg");
}
.sidebar li[data-menu="advertisingPartners.index"].active a:before {
  background-image: url("/file/images/icons/suitcase-solid-gray.svg");
}
.sidebar li[data-menu="advertisingCampaigns.index"] a:before {
  background-image: url("/file/images/icons/bullhorn-solid.svg");
}
.sidebar li[data-menu="advertisingCampaigns.index"] a:focus:before, .sidebar li[data-menu="advertisingCampaigns.index"] a:active:before {
  background-image: url("/file/images/icons/bullhorn-solid-gray.svg");
}
.sidebar li[data-menu="advertisingCampaigns.index"].active a:before {
  background-image: url("/file/images/icons/bullhorn-solid-gray.svg");
}
.sidebar li[data-menu="advertisements.index"] a:before {
  background-image: url("/file/images/icons/desktop-solid.svg");
}
.sidebar li[data-menu="advertisements.index"] a:focus:before, .sidebar li[data-menu="advertisements.index"] a:active:before {
  background-image: url("/file/images/icons/desktop-solid-gray.svg");
}
.sidebar li[data-menu="advertisements.index"].active a:before {
  background-image: url("/file/images/icons/desktop-solid-gray.svg");
}

/*
======================================== 
                css/stats.scss 
======================================== 
*/
.stats {
  font-size: 18px;
}
.stats h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  display: inline-block;
}
.stats .number {
  font-weight: 700;
}
.stats .form .form-field.submit {
  text-align: left;
}
.stats .form .form-field.submit input {
  line-height: 42px;
}

/*
======================================== 
                css/style.scss 
======================================== 
*/
@font-face {
  font-family: 'franklingothic';
  src: url("/file/fonts/franklingothic-book-webfont.woff2") format("woff2"), url("/file/fonts/franklingothic-book-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'franklingothic';
  src: url("/file/fonts/franklingothic-demi-webfont.woff2") format("woff2"), url("/file/fonts/franklingothic-demi-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
html, body {
  height: 100%;
}

body {
  font-size: 18px;
  color: #333;
  line-height: normal;
  font-family: "franklingothic";
  font-weight: 400;
  color: #333;
  height: 100%;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

.margin-top {
  margin-top: 15px !important;
}

.margin-top-lg {
  margin-top: 30px !important;
}

.margin-bottom {
  margin-bottom: 15px !important;
}

.margin-bottom-lg {
  margin-bottom: 30px !important;
}

.navbar {
  border: none;
}

.navbar-brand {
  padding: 10px;
}

.badge {
  background: #952c29;
  color: #fff;
  font-size: 12px;
}

.user-panel-wrapper {
  padding-left: 0;
}
@media (max-width: 767px) {
  .user-panel-wrapper {
    padding-right: 0;
    text-align: center;
  }
}

.user-avatar {
  float: left;
  height: 60px;
  width: 60px;
  background-size: cover;
  background-position: center;
  border: 3px solid #952c29;
  border-radius: 50%;
  margin-top: 7px;
}
@media (max-width: 1199px) {
  .user-avatar {
    height: 40px;
    width: 40px;
  }
}
@media (max-width: 767px) {
  .user-avatar {
    float: none !important;
    display: inline-block;
  }
}
.user-avatar .fa {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 50px;
  text-align: center;
  color: #999;
}
@media (max-width: 1199px) {
  .user-avatar .fa {
    font-size: 30px;
  }
}

.user-welcome {
  color: #952c29;
  margin-top: 18px;
  margin-left: 15px;
  max-width: calc(100% - 85px);
}
@media (max-width: 1199px) {
  .user-welcome {
    margin-top: 10px;
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .user-welcome {
    float: none !important;
    display: inline-block;
  }
}

.divider {
  height: 35px;
  background: #952c29;
}

footer {
  height: 60px;
  background: #333;
}
@media (max-width: 767px) {
  footer {
    height: 35px;
  }
}
footer a {
  margin-top: 18px;
  margin-right: 15px;
}
@media (max-width: 767px) {
  footer a {
    margin-top: 7px;
  }
}
footer img {
  height: 25px;
}
@media (max-width: 767px) {
  footer img {
    height: 17px;
  }
}

.btn {
  -moz-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  font-weight: 700;
}
@media (max-width: 767px) {
  .btn {
    font-size: 14px;
  }
}

.btn-default:hover {
  color: #6d201e;
}

.btn-primary:hover {
  background-color: #6d201e;
}

.main .btn.btn-icon {
  padding: 3px;
  margin-right: 10px;
}
.main .btn.btn-icon .fa {
  width: 30px;
  height: 30px;
  font-size: 30px;
}

.btn-absolute-top-right {
  position: absolute;
  top: 15px;
  right: 45px;
}

.btn-checkbox-like {
  height: 20px;
  width: 20px;
  border: 2px solid #999;
  border-radius: 3px;
  background: none;
  padding: 0 !important;
}
.btn-checkbox-like .fa {
  display: block;
  font-size: 14px;
}
.btn-checkbox-like.checked {
  background: #952c29;
  border-color: #952c29;
}
.btn-checkbox-like.checked .fa {
  color: #fff;
}

.btn-details-table {
  height: 40px;
  width: 40px;
  font-size: 35px;
  background: none;
  padding: 0 !important;
  margin-top: -20px;
  -moz-transition-duration: 0;
  -o-transition-duration: 0;
  -webkit-transition-duration: 0;
  transition-duration: 0;
}
.btn-details-table .fa:before {
  height: 40px;
  width: 40px;
}
.btn-details-table .fa-lock {
  color: #952c29;
}
.btn-details-table .fa-unlock {
  color: #999;
}
.btn-details-table .fa-remove {
  color: #952c29;
}
.btn-details-table:active, .btn-details-table:focus {
  outline: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.col-actions form {
  float: right;
}

.main-wrapper {
  position: relative;
}

.main {
  padding: 30px 45px;
  min-height: calc(100vh - 170px);
}
@media (max-width: 1399px) {
  .main {
    width: calc(100% - 145px);
    margin-left: 145px;
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .main {
    min-height: calc(100vh - 131px);
  }
}
@media (max-width: 767px) {
  .main {
    width: calc(100% - 34px);
    margin-left: 34px;
    padding: 15px;
  }
}
.main h2 {
  font-size: 32px;
  font-weight: 700;
  color: #952c29;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 0;
}
.main .subheader {
  text-align: center;
  color: #952c29;
  margin-top: -25px;
  font-size: 24px;
}
.main .btn {
  padding: 3px 45px;
}
.main .btn.btn-bigger {
  padding: 10px 45px;
}

.list-group-item {
  padding: 0;
}
.list-group-item:hover {
  background: #f7f7f7;
}
.list-group-item a {
  text-decoration: none;
  display: block;
  padding: 10px 15px;
  font-size: 16px;
}

.modal .btn {
  float: none;
  width: 100%;
}

.error-page {
  min-height: calc(100vh - 170px);
}
@media (max-width: 991px) {
  .error-page {
    min-height: calc(100vh - 155px);
  }
}
.error-page .icon-holder {
  text-align: right;
}
.error-page .fa {
  font-size: 120px;
  color: #952c29;
  margin-top: 60px;
}
.error-page h2 {
  margin-top: 0;
}

.error-content {
  max-width: 500px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.bold {
  font-weight: 700;
}

.facility-change {
  margin: 0;
  width: 100%;
}
.facility-change .btn {
  white-space: normal;
}
.facility-change .btn.btn-default {
  float: right;
}
.facility-change .list-group {
  margin-top: 75px;
}

#cookielaw-box {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 99999999;
}

#cookielaw-close {
  border-color: #952c29;
}
#cookielaw-close:before {
  /* Encode image for IE & Firefox */
  content: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2024%2024%22%20enable-background%3D%22new%200%200%2024%2024%22%20xml%3Aspace%3D%22preserve%22%20fill%3D%22%23952c29%22%3E%3Crect%20x%3D%2210.5%22%20y%3D%220%22%20transform%3D%22matrix(0.7071%200.7071%20-0.7071%200.7071%2012%20-4.9706)%22%20width%3D%223%22%20height%3D%2224%22%2F%3E%3Crect%20x%3D%2210.5%22%20y%3D%220%22%20transform%3D%22matrix(-0.7071%200.7071%20-0.7071%20-0.7071%2028.9706%2012)%22%20width%3D%223%22%20height%3D%2224%22%2F%3E%3C%2Fsvg%3E");
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  display: block;
}

body ul.ui-autocomplete .ui-menu-item {
  padding: 3px;
}

.confirm-dialog .btn {
  width: auto;
}

.bold {
  font-weight: bold;
}

.border {
  border: 2px solid #ebebeb;
  min-height: 30px;
  line-height: 30px;
}
.border-nt {
  border-top: none;
}
.border-nb {
  border-bottom: none;
}
.border-ol {
  border-bottom: none;
  border-right: none;
  border-top: none;
}
.border .user-avatar {
  max-height: 30px;
  max-width: 30px;
  margin-top: 0px;
}
.border .user-avatar span {
  font-size: 24px;
}

.border-answer {
  border: 32px solid #ebebeb;
  min-height: 30px;
  line-height: 30px;
  border-bottom: none;
  border-right: none;
  border-top: none;
}

.btn-reverse {
  color: #952c29;
  background-color: white;
}

.btn-discussion {
  min-width: 100%;
  height: 40px;
  border-radius: 0;
}

.padding-n {
  padding: 0 0 0 0 !important;
}
.padding-ns {
  padding-left: 0;
  padding-right: 0;
}

.answer-count {
  background: #952c29;
  margin-left: 5px;
  color: white;
  font-weight: normal;
  line-height: 25px;
}

.disabled-button {
  background-color: #ccc !important;
  border-color: #ccc !important;
}

.font-disabled {
  color: #ccc !important;
}

.action-holder .actions-right:not(:first-child) {
  margin-top: 15px;
}
@media (min-width: 992px) {
  .action-holder .actions-right:not(:first-child) {
    margin-right: 15px;
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .action-holder .actions-right:last-child {
    margin-bottom: 15px;
  }
}

.select2-search--inline {
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.lb-data .lb-details .lb-number {
  display: none !important;
}

/*
======================================== 
                css/table.scss 
======================================== 
*/
@media (max-width: 1399px) {
  .such-table table {
    font-size: 16px;
  }
}
.such-table thead > tr > th {
  border-width: 1px;
}
.such-table thead .form-control {
  padding: 5px;
  font-size: 16px;
}
@media (max-width: 1399px) {
  .such-table thead .form-control {
    font-size: 14px;
  }
}
.such-table tfoot > tr {
  background: #ccc;
}
.such-table .col-selected {
  padding: 0;
  margin-top: 0;
}
.such-table .col-selected label {
  padding-left: 25px;
  line-height: 20px;
}
.such-table .col-selected .form-label:after {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  height: 20px;
  width: 20px;
  border: 2px solid #999;
  border-radius: 3px;
}
.such-table .col-selected input {
  display: none;
}
.such-table .col-selected input:checked ~ .form-label:after {
  font-family: 'FontAwesome';
  content: "\f00c";
  font-size: 14px;
  text-align: center;
  padding-top: 1px;
  color: #fff;
  line-height: 14px;
  background: #952c29;
  border-color: #952c29;
}
.such-table .col-selected ~ .checkbox {
  margin-top: 10px;
}
.such-table .col-selected label {
  padding-left: 40px;
}
.such-table .col-actions {
  padding: 0;
  padding-top: 1px;
  padding-right: 4px;
  text-align: right;
  width: 150px;
}
.such-table .col-actions button {
  color: #952c29;
  background: transparent;
}
.such-table .col-actions button:hover {
  color: #6d201e;
}
.such-table .col-actions a, .such-table .col-actions button {
  padding: 3px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 3px 0;
  margin-right: 10px;
}
.such-table .col-actions a:before, .such-table .col-actions button:before {
  display: inline-block;
  width: 30px;
  height: 30px;
  font-size: 30px;
  text-align: center;
}
@media (max-width: 1399px) {
  .such-table .col-actions a:before, .such-table .col-actions button:before {
    width: 25px;
    height: 25px;
    font-size: 25px;
  }
}
.such-table .col-actions a:hover, .such-table .col-actions a:active, .such-table .col-actions a:focus, .such-table .col-actions button:hover, .such-table .col-actions button:active, .such-table .col-actions button:focus {
  text-decoration: none;
  background: #ebebeb;
}
.such-table .fa-pencil {
  color: #952c29;
}
.such-table .fa-unlock {
  color: #999;
}
.such-table .fa-ban {
  color: #952c29;
}
.such-table td.filter-enum.not-selected select, .such-table td.filter-bool.not-selected select {
  background: transparent;
  color: #999;
}
.such-table td.filter-enum.not-selected select option:not(:first-child), .such-table td.filter-bool.not-selected select option:not(:first-child) {
  color: #333;
}
.such-table td.filter-enum:not(.not-selected) select option:first-child, .such-table td.filter-bool:not(.not-selected) select option:first-child {
  color: #999;
}
.such-table td.filter-enum.required option, .such-table td.filter-bool.required option {
  color: #333 !important;
}
.such-table td.filter-enum.required td.col-visitStatus:after, .such-table td.filter-bool.required td.col-visitStatus:after {
  content: "!!!";
}
.such-table tr.sort-fields {
  background: #ccc;
}
.such-table tr.filter-fields td {
  padding-left: 2px;
  padding-right: 2px;
}
.such-table tr.filter-fields td:first-child {
  padding-left: 0;
}
.such-table tr.filter-fields td:last-child {
  padding-right: 0;
}
.such-table tr.to-react {
  color: #952c29;
}
.such-table .filter-summaryXlsx a.fa-file-excel-o {
  margin-top: 7px;
  margin-right: 16px;
  float: right;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.such-table .filter-summaryXlsx a.fa-file-excel-o:before {
  width: 25px;
  height: 25px;
  font-size: 25px;
}
.such-table .filter-range .form-control {
  height: 18px;
  font-size: 14px;
  margin-bottom: 2px;
  padding: 0 3px;
}
.such-table .filter-date span, .such-table .filter-dateDefault span {
  width: 7%;
  text-align: center;
}
.such-table .filter-date input, .such-table .filter-dateDefault input {
  width: 30%;
  font-size: 14px;
  padding: 6px;
}
.such-table .filter-date button, .such-table .filter-dateDefault button {
  width: 10%;
  min-width: 35px;
  padding: 6px 0;
  margin-left: 2px;
}
.such-table .filter-date button span, .such-table .filter-dateDefault button span {
  width: auto;
}
.such-table .filter-date br, .such-table .filter-dateDefault br {
  display: none;
}
.such-table a[href="#from"], .such-table a[href="#to"] {
  min-width: 120px;
  position: relative;
  display: block;
  line-height: 19px;
  padding-left: 5px;
  font-size: 14px;
}
.such-table a[href="#from"]:after, .such-table a[href="#to"]:after {
  content: '\f073';
  font-family: 'FontAwesome';
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  border-radius: 4px;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 9px;
  line-height: 18px;
  text-align: center;
}
.such-table .badge {
  font-weight: 700;
  vertical-align: top;
  margin-top: 3px;
  margin-left: 4px;
}
.such-table[alt="KRZ_Table_SettleRecommendationsTable"] .table-wrapper {
  width: 100%;
}

.table.details-table thead tr {
  background: #ccc;
}
.table.details-table thead tr th {
  border-width: 1px;
}
.table.details-table td.col-actions {
  min-width: 110px;
}
.table.details-table form:focus, .table.details-table form:active, .table.details-table form:active:focus, .table.details-table td:focus, .table.details-table td:active, .table.details-table td:active:focus, .table.details-table .fa:focus, .table.details-table .fa:active, .table.details-table .fa:active:focus, .table.details-table .btn:focus, .table.details-table .btn:active, .table.details-table .btn:active:focus {
  outline: none !important;
}

/*
======================================== 
                css/visit.scss 
======================================== 
*/
.complete-visit {
  text-align: center;
}
.complete-visit h4 {
  margin: 0;
}
.complete-visit label {
  color: #333;
  font-size: 16px;
}
