/*! Hint.css - v1.3.3 - 2014-07-06
* http://kushagragour.in/lab/hint/
* Copyright (c) 2014 Kushagra Gour; Licensed MIT */

/*-------------------------------------*\
	HINT.css - A CSS tooltip library
\*-------------------------------------*/
/**
 * HINT.css is a tooltip library made in pure CSS.
 *
 * Source: https://github.com/chinchang/hint.css
 * Demo: http://kushagragour.in/lab/hint/
 *
 * Release under The MIT License
 *
 */
/**
 * source: hint-core.scss
 *
 * Defines the basic styling for the tooltip.
 * Each tooltip is made of 2 parts:
 * 	1) body (:after)
 * 	2) arrow (:before)
 *
 * Classes added:
 * 	1) hint
 */


.hint, [data-hint] {
  position: relative;
  display: inline-block;
  /**
   * tooltip arrow
   */
  /**
   * tooltip body
   */ }
  .hint:before, .hint:after, [data-hint]:before, [data-hint]:after {
    position: absolute;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: hidden;
    opacity: 0;
    z-index: 1000000;
    pointer-events: none;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-transition-delay: 0ms;
    -moz-transition-delay: 0ms;
    transition-delay: 0ms; }
  .hint:hover:before, .hint:hover:after, .hint:focus:before, .hint:focus:after, [data-hint]:hover:before, [data-hint]:hover:after, [data-hint]:focus:before, [data-hint]:focus:after {
    visibility: visible;
    opacity: 1; }
  .hint:hover:before, .hint:hover:after, [data-hint]:hover:before, [data-hint]:hover:after {
    -webkit-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    transition-delay: 100ms; }
  .hint:before, [data-hint]:before {
    content: '';
    position: absolute;
    background: transparent;
    border: 6px solid transparent;
    z-index: 1000001; }
  .hint:after, [data-hint]:after {
    content: attr(data-hint);
    background: #383838;
    color: white;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 12px;
    white-space: nowrap; }

/**
 * source: hint-position.scss
 *
 * Defines the positoning logic for the tooltips.
 *
 * Classes added:
 * 	1) hint--top
 * 	2) hint--bottom
 * 	3) hint--left
 * 	4) hint--right
 */
/**
 * set default color for tooltip arrows
 */
.hint--top:before {
  border-top-color: #383838; }

.hint--bottom:before {
  border-bottom-color: #383838; }

.hint--left:before {
  border-left-color: #383838; }

.hint--right:before {
  border-right-color: #383838; }

/**
 * top tooltip
 */
.hint--top:before {
  margin-bottom: -12px; }
.hint--top:after {
  margin-left: -18px; }
.hint--top:before, .hint--top:after {
  bottom: 100%;
  left: 50%; }
.hint--top:hover:after, .hint--top:hover:before, .hint--top:focus:after, .hint--top:focus:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

/**
 * bottom tooltip
 */
.hint--bottom:before {
  margin-top: -12px; }
.hint--bottom:after {
  margin-left: -18px; }
.hint--bottom:before, .hint--bottom:after {
  top: 100%;
  left: 50%; }
.hint--bottom:hover:after, .hint--bottom:hover:before, .hint--bottom:focus:after, .hint--bottom:focus:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

/**
 * right tooltip
 */
.hint--right:before {
  margin-left: -12px;
  margin-bottom: -6px; }
.hint--right:after {
  margin-bottom: -14px; }
.hint--right:before, .hint--right:after {
  left: 100%;
  bottom: 50%; }
.hint--right:hover:after, .hint--right:hover:before, .hint--right:focus:after, .hint--right:focus:before {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px); }

/**
 * left tooltip
 */
.hint--left:before {
  margin-right: -12px;
  margin-bottom: -6px; }
.hint--left:after {
  margin-bottom: -14px; }
.hint--left:before, .hint--left:after {
  right: 100%;
  bottom: 50%; }
.hint--left:hover:after, .hint--left:hover:before, .hint--left:focus:after, .hint--left:focus:before {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px); }

/**
 * source: hint-color-types.scss
 *
 * Contains tooltips of various types based on color differences.
 *
 * Classes added:
 * 	1) hint--error
 * 	2) hint--warning
 * 	3) hint--info
 * 	4) hint--success
 *
 */
/**
 * Error
 */
.hint--error:after {
  background-color: #b34e4d;
  text-shadow: 0 -1px 0px #592726; }
.hint--error.hint--top:before {
  border-top-color: #b34e4d; }
.hint--error.hint--bottom:before {
  border-bottom-color: #b34e4d; }
.hint--error.hint--left:before {
  border-left-color: #b34e4d; }
.hint--error.hint--right:before {
  border-right-color: #b34e4d; }

/**
 * Warning
 */
.hint--warning:after {
  background-color: #c09854;
  text-shadow: 0 -1px 0px #6c5328; }
.hint--warning.hint--top:before {
  border-top-color: #c09854; }
.hint--warning.hint--bottom:before {
  border-bottom-color: #c09854; }
.hint--warning.hint--left:before {
  border-left-color: #c09854; }
.hint--warning.hint--right:before {
  border-right-color: #c09854; }

/**
 * Info
 */
.hint--info:after {
  background-color: #3986ac;
  text-shadow: 0 -1px 0px #193b4d; }
.hint--info.hint--top:before {
  border-top-color: #3986ac; }
.hint--info.hint--bottom:before {
  border-bottom-color: #3986ac; }
.hint--info.hint--left:before {
  border-left-color: #3986ac; }
.hint--info.hint--right:before {
  border-right-color: #3986ac; }

/**
 * Success
 */
.hint--success:after {
  background-color: #458746;
  text-shadow: 0 -1px 0px #1a321a; }
.hint--success.hint--top:before {
  border-top-color: #458746; }
.hint--success.hint--bottom:before {
  border-bottom-color: #458746; }
.hint--success.hint--left:before {
  border-left-color: #458746; }
.hint--success.hint--right:before {
  border-right-color: #458746; }

/**
 * source: hint-always.scss
 *
 * Defines a persisted tooltip which shows always.
 *
 * Classes added:
 * 	1) hint--always
 *
 */
.hint--always:after, .hint--always:before {
  opacity: 1;
  visibility: visible; }
.hint--always.hint--top:after, .hint--always.hint--top:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }
.hint--always.hint--bottom:after, .hint--always.hint--bottom:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }
.hint--always.hint--left:after, .hint--always.hint--left:before {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px); }
.hint--always.hint--right:after, .hint--always.hint--right:before {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px); }

/**
 * source: hint-rounded.scss
 *
 * Defines rounded corner tooltips.
 *
 * Classes added:
 * 	1) hint--rounded
 *
 */
.hint--rounded:after {
  border-radius: 4px; }

/**
 * source: hint-effects.scss
 *
 * Defines various transition effects for the tooltips.
 *
 * Classes added:
 * 	1) hint--no-animate
 * 	2) hint--bounce
 *
 */
.hint--no-animate:before, .hint--no-animate:after {
  -webkit-transition-duration: 0ms;
  -moz-transition-duration: 0ms;
  transition-duration: 0ms; }

.hint--bounce:before, .hint--bounce:after {
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -moz-transition: opacity 0.3s ease, visibility 0.3s ease, -moz-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24); }

.hint--hide:before, .hint--hide:after {
  opacity: 0 !important;
  visibility: hidden !important;
}
/*! jQuery UI - v1.11.4 - 2015-03-11
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, draggable.css, menu.css, progressbar.css, resizable.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px
* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */

.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;min-height:0;font-size:100%}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-button{display:inline-block;position:relative;padding:0;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:normal}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-dialog{overflow:hidden;position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:none}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{position:relative;margin:0;padding:3px 1em 3px .4em;cursor:pointer;min-height:0;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;filter:alpha(opacity=25);opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px 0.4em;margin:0.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-button{display:inline-block;overflow:hidden;position:relative;text-decoration:none;cursor:pointer}.ui-selectmenu-button span.ui-icon{right:0.5em;left:auto;margin-top:-8px;position:absolute;top:50%}.ui-selectmenu-button span.ui-selectmenu-text{text-align:left;padding:0.4em 2.1em 0.4em 1em;display:block;line-height:1.4;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:none;border-bottom:none;border-right:none}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}body .ui-tooltip{border-width:2px}.ui-widget{font-family:Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #ddd;background:#eee url("images/ui-bg_highlight-soft_100_eeeeee_1x100.png") 50% top repeat-x;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #e78f08;background:#f6a828 url("images/ui-bg_gloss-wave_35_f6a828_500x100.png") 50% 50% repeat-x;color:#fff;font-weight:bold}.ui-widget-header a{color:#fff}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #ccc;background:#f6f6f6 url("images/ui-bg_glass_100_f6f6f6_1x400.png") 50% 50% repeat-x;font-weight:bold;color:#1c94c4}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#1c94c4;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #fbcb09;background:#fdf5ce url("images/ui-bg_glass_100_fdf5ce_1x400.png") 50% 50% repeat-x;font-weight:bold;color:#c77405}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited{color:#c77405;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #fbd850;background:#fff url("images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;font-weight:bold;color:#eb8f00}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#eb8f00;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fed22f;background:#ffe45c url("images/ui-bg_highlight-soft_75_ffe45c_1x100.png") 50% top repeat-x;color:#363636}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#b81900 url("images/ui-bg_diagonals-thick_18_b81900_40x40.png") 50% 50% repeat;color:#fff}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#fff}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#fff}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_ffffff_256x240.png")}.ui-state-default .ui-icon{background-image:url("images/ui-icons_ef8c08_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url("images/ui-icons_ef8c08_256x240.png")}.ui-state-active .ui-icon{background-image:url("images/ui-icons_ef8c08_256x240.png")}.ui-state-highlight .ui-icon{background-image:url("images/ui-icons_228ef1_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_ffd27a_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:4px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:4px}.ui-widget-overlay{background:#666 url("images/ui-bg_diagonals-thick_20_666666_40x40.png") 50% 50% repeat;opacity:.5;filter:Alpha(Opacity=50)}.ui-widget-shadow{margin:-5px 0 0 -5px;padding:5px;background:#000 url("images/ui-bg_flat_10_000000_40x100.png") 50% 50% repeat-x;opacity:.2;filter:Alpha(Opacity=20);border-radius:5px}
/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }
.owl-carousel .owl-animated-in {
  z-index: 0; }
.owl-carousel .owl-animated-out {
  z-index: 1; }
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }

  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }

  100% {
    opacity: 0; } }

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y; }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d; }
  .owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    display: none; }
  .owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }
.owl-carousel .owl-item img {
  transform-style: preserve-3d; }

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease; }
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3); }
.owl-carousel .owl-video-playing .owl-video-tn, .owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/* 
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      -webkit-transition: opacity 200ms ease;
      -moz-transition: opacity 200ms ease;
      -ms-transition: opacity 200ms ease;
      -o-transition: opacity 200ms ease;
      transition: opacity 200ms ease;
      -webkit-border-radius: 30px;
      -moz-border-radius: 30px;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }

.ps-container .ps-scrollbar-x-rail {
    position: absolute; /* please don't change 'position' */
    bottom: 3px; /* there must be 'bottom' for ps-scrollbar-x-rail */
    height: 8px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    opacity: 0;
    filter: alpha(opacity=0);
    -o-transition: background-color .2s linear, opacity .2s linear;
    -webkit-transition: background-color .2s linear, opacity .2s linear;
    -moz-transition: background-color .2s linear, opacity .2s linear;
    transition: background-color .2s linear, opacity .2s linear;
}

.ps-container:hover .ps-scrollbar-x-rail,
.ps-container.hover .ps-scrollbar-x-rail {
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.ps-container .ps-scrollbar-x-rail:hover,
.ps-container .ps-scrollbar-x-rail.hover {
    background-color: #eee;
    opacity: 0.9;
    filter: alpha(opacity=90);
}

.ps-container .ps-scrollbar-x-rail.in-scrolling {
    background-color: #eee;
    opacity: 0.9;
    filter: alpha(opacity=90);
}

.ps-container .ps-scrollbar-y-rail {
    position: absolute; /* please don't change 'position' */
    right: 3px; /* there must be 'right' for ps-scrollbar-y-rail */
    width: 8px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    opacity: 0;
    filter: alpha(opacity = 0);
    -o-transition: background-color .2s linear, opacity .2s linear;
    -webkit-transition: background-color .2s linear, opacity .2s linear;
    -moz-transition: background-color .2s linear, opacity .2s linear;
    transition: background-color .2s linear, opacity .2s linear;
}

.ps-container:hover .ps-scrollbar-y-rail,
.ps-container.hover .ps-scrollbar-y-rail {
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.ps-container .ps-scrollbar-y-rail:hover,
.ps-container .ps-scrollbar-y-rail.hover {
    background-color: #eee;
    opacity: 0.9;
    filter: alpha(opacity=90);
}

.ps-container .ps-scrollbar-y-rail.in-scrolling {
    background-color: #eee;
    opacity: 0.9;
    filter: alpha(opacity=90);
}

.ps-container .ps-scrollbar-x {
    position: absolute; /* please don't change 'position' */
    bottom: 0; /* there must be 'bottom' for ps-scrollbar-x */
    height: 8px;
    background-color: #aaa;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -o-transition: background-color .2s linear;
    -webkit-transition: background-color.2s linear;
    -moz-transition: background-color .2s linear;
    transition: background-color .2s linear;
}

.ps-container.ie6 .ps-scrollbar-x {
    font-size: 0; /* fixed scrollbar height in xp sp3 ie6 */
}

.ps-container .ps-scrollbar-x-rail:hover .ps-scrollbar-x,
.ps-container .ps-scrollbar-x-rail.hover .ps-scrollbar-x {
    background-color: #999;
}

.ps-container .ps-scrollbar-y {
    position: absolute; /* please don't change 'position' */
    right: 0; /* there must be 'right' for ps-scrollbar-y */
    width: 8px;
    background-color: #aaa;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -o-transition: background-color .2s linear;
    -webkit-transition: background-color.2s linear;
    -moz-transition: background-color .2s linear;
    transition: background-color .2s linear;
}

.ps-container.ie6 .ps-scrollbar-y {
    font-size: 0; /* fixed scrollbar height in xp sp3 ie6 */
}

.ps-container .ps-scrollbar-y-rail:hover .ps-scrollbar-y,
.ps-container .ps-scrollbar-y-rail.hover .ps-scrollbar-y {
    background-color: #999;
}

.ps-container.ie .ps-scrollbar-x,
.ps-container.ie .ps-scrollbar-y {
    visibility: hidden;
}

.ps-container.ie:hover .ps-scrollbar-x,
.ps-container.ie:hover .ps-scrollbar-y,
.ps-container.ie.hover .ps-scrollbar-x,
.ps-container.ie.hover .ps-scrollbar-y {
    visibility: visible;
}
/* jquery.Jcrop.min.css v0.9.12 (build:20130126) */
.jcrop-holder{direction:ltr;display:inline-block;}
.jcrop-vline,.jcrop-hline{background:#FFF url(Jcrop.gif);font-size:0;position:absolute;}
.jcrop-vline{height:100%;width:1px!important;}
.jcrop-vline.right{right:0;}
.jcrop-hline{height:1px!important;width:100%;}
.jcrop-hline.bottom{bottom:0;}
.jcrop-tracker{-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-select:none;height:100%;width:100%;}
.jcrop-handle{background-color:#333;border:1px #EEE solid;font-size:1px;height:7px;width:7px;}
.jcrop-handle.ord-n{left:50%;margin-left:-4px;margin-top:-4px;top:0;}
.jcrop-handle.ord-s{bottom:0;left:50%;margin-bottom:-4px;margin-left:-4px;}
.jcrop-handle.ord-e{margin-right:-4px;margin-top:-4px;right:0;top:50%;}
.jcrop-handle.ord-w{left:0;margin-left:-4px;margin-top:-4px;top:50%;}
.jcrop-handle.ord-nw{left:0;margin-left:-4px;margin-top:-4px;top:0;}
.jcrop-handle.ord-ne{margin-right:-4px;margin-top:-4px;right:0;top:0;}
.jcrop-handle.ord-se{bottom:0;margin-bottom:-4px;margin-right:-4px;right:0;}
.jcrop-handle.ord-sw{bottom:0;left:0;margin-bottom:-4px;margin-left:-4px;}
.jcrop-dragbar.ord-n,.jcrop-dragbar.ord-s{height:7px;width:100%;}
.jcrop-dragbar.ord-e,.jcrop-dragbar.ord-w{height:100%;width:7px;}
.jcrop-dragbar.ord-n{margin-top:-4px;}
.jcrop-dragbar.ord-s{bottom:0;margin-bottom:-4px;}
.jcrop-dragbar.ord-e{margin-right:-4px;right:0;}
.jcrop-dragbar.ord-w{margin-left:-4px;}
.jcrop-light .jcrop-vline,.jcrop-light .jcrop-hline{background:#FFF;filter:alpha(opacity=70)!important;opacity:.70!important;}
.jcrop-light .jcrop-handle{-moz-border-radius:3px;-webkit-border-radius:3px;background-color:#000;border-color:#FFF;border-radius:3px;}
.jcrop-dark .jcrop-vline,.jcrop-dark .jcrop-hline{background:#000;filter:alpha(opacity=70)!important;opacity:.7!important;}
.jcrop-dark .jcrop-handle{-moz-border-radius:3px;-webkit-border-radius:3px;background-color:#FFF;border-color:#000;border-radius:3px;}
.solid-line .jcrop-vline,.solid-line .jcrop-hline{background:#FFF;}
.jcrop-holder img,img.jcrop-preview{max-width:none;}

.form-control {
    outline: 0;
    border-color: #ECECEC;
    border-style: solid;
    border-width: 1px;
    width: 95%;
    background-color: #ffffff;
    padding: 6px;
    border-radius: 2px;
    margin-bottom: 5px;
    font-size: 14px;
}

.angucomplete-holder {
    position: relative;
}

.angucomplete-dropdown {
    border-color: #ececec;
    border-width: 1px;
    border-style: solid;
    border-radius: 2px;
    width: 250px;
    padding: 6px;
    cursor: pointer;
    z-index: 9999;
    position: absolute;
    /*top: 32px;
    left: 0px;
    */
    margin-top: -6px;
    background-color: #ffffff;
}

.angucomplete-wrapper {
    position: relative;
}

.angucomplete-searching {
    color: #acacac;
    font-size: 14px;
}

.angucomplete-description {
    font-size: 14px;
}

.angucomplete-row {
    padding: 5px;
    color: #000000;
    margin-bottom: 4px;

}

.angucomplete-selected-row, .angucomplete-row:hover {
    background-color: lightblue;
    color: #ffffff;
}

.angucomplete-image-holder {
    padding-top: 2px;
    float: left;
    margin-right: 10px;
    margin-left: 5px;
}

.angucomplete-image {
    height: 34px;
    width: 34px;
    border-radius: 50%;
    border-color: #ececec;
    border-style: solid;
    border-width: 1px;
}

.angucomplete-image-default {
    /* Add your own default image here
     background-image: url('/assets/default.png');
    */
    background-position: center;
    background-size: contain;
    height: 34px;
    width: 34px;
}

@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,300,300italic,400italic,600italic,700,700italic,800,800italic);
.orange-text {
  color: #ee7c68; }

.blue-text {
  color: #0071C5; }

.green-text {
  color: #388d81; }

.red-text {
  color: #FF2C22; }

.purple-text {
  color: #905bdf; }

.transparent-text {
  opacity: 0;
  user-select: none; }

.text-light {
  font-weight: 300; }

.text-normal {
  font-weight: 400; }

.text-semi-bold {
  font-weight: 600; }

.text-bold {
  font-weight: 700; }

.text-extra-bold {
  font-weight: 800; }

.text-underline {
  text-decoration: underline; }

.dropdown ul li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

/* Resets */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block; }

html, button, input, select, textarea {
  font-family: sans-serif; }

body, form, fieldset, legend, input, select, textarea, button {
  margin: 0; }

html {
  font-size: 100%; }

.no-selection {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.text-right {
  text-align: right; }

.text-left {
  text-align: left; }

.text-center {
  text-align: center; }

/* Clearfix */
.clear:before, .clear:after {
  content: "";
  display: table; }

.clear:after {
  clear: both; }

.clear {
  zoom: 1; }

/* Floats */
.left, .checkbox input[type=checkbox],
.checkbox input[type=radio] {
  float: left; }

.right {
  float: right; }

/* Display */
.block, .checkbox {
  display: block; }

.inline {
  display: inline; }

.inline-block, audio, canvas, video, .inline-list, .inline-list li {
  display: inline-block;
  *zoom: 1;
  *display: inline; }

.none, audio:not([controls]),
[hidden],
.no-desktop {
  display: none; }

/* Font Weights */
.heavy {
  font-weight: 900; }

.strong, b, strong {
  font-weight: 700; }

.normal, cite, dt, table thead th,
table tfoot th, table caption, legend, input[type=text],
input[type=password],
input[type=email],
input[type=search],
input[type=tel],
textarea {
  font-weight: normal; }

.thin {
  font-weight: 300; }

.italic, i, em, .em, dfn, blockquote, q {
  font-style: italic; }

/* Font Styles */
.capitalize {
  text-transform: capitalize; }

.uppercase {
  text-transform: uppercase; }

/* Text Position */
.left-text, table caption {
  text-align: left; }

.right-text {
  text-align: right; }

.center-text {
  text-align: center; }

/* Accessibility (offscreen text for screen readers) */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  left: -9999em; }

.visuallyvisible {
  clip: auto;
  width: auto;
  height: auto;
  overflow: visible;
  left: 0; }

/* Margin and Padding Reset */
.no-margin {
  margin: 0; }

.no-padding {
  padding: 0; }

.no-overflow {
  overflow: hidden; }

.has-overflow {
  overflow: auto; }

.vis-overflow {
  overflow: visible !important; }

.cursor-default {
  cursor: default; }

.cursor-pointer {
  cursor: pointer; }

/* ==========================================================================
/* 1.0 - Document Setup (typography, links, paragraph, etc)
   ========================================================================== */
/* Body */
body {
  font-family: sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  line-height: 1.25rem;
  color: #434343;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

/* Strong and Italic */
/* Links */
a {
  color: #ee7c68;
  text-decoration: none; }

a:hover {
  text-decoration: none; }

a:active, a:hover {
  outline: 0;
  text-decoration: none; }

/* Paragraph and Small */
p {
  margin: 0 0 1.6em 0; }

pre {
  margin: 1em 0; }

ul + p, ul + pre, ol + p, ol + pre {
  margin-top: 0; }

small {
  font-size: 80%; }

/* Abbreviations */
abbr[title] {
  border-bottom: 1px dotted; }

/* Audio */
audio:not([controls]) {
  height: 0; }

/* Small,
Sub and Sup */
small {
  font-size: 80%; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

/* Definition */
/* Images */
img {
  border: 0;
  -ms-interpolation-mode: bicubic; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 0; }

.image-left {
  margin-right: 20px; }

.image-right {
  margin-left: 20px; }

/* 1.1 Headings - h1, h2, h3, h4, h5, h6 & other (if any)
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  line-height: normal;
  margin: 0 0 .33em 0;
  -webkit-font-smoothing: antialiased; }

h1, .h1 {
  font-size: 40px;
  font-size: 2.5rem; }

h2, .h2 {
  font-size: 32px;
  font-size: 2rem; }

h3, .h3 {
  font-size: 26px;
  font-size: 1.625rem; }

h4, .h4 {
  font-size: 20px;
  font-size: 1.25rem; }

h5, .h5 {
  font-size: 18px;
  font-size: 1.125rem; }

h6, .h6 {
  font-size: 16px;
  font-size: 1rem; }

/* Reset Heading */
.no-style-heading {
  margin: 0;
  font-size: 100%; }

/* Horizontal Rule */
hr {
  border: 0;
  background: none;
  outline: 0;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 1px; }

/* 1.2 Quotes and Code - block quotes, quotes, code, pre, etc
   ========================================================================== */
/* Block Quotes and Quotes */
blockquote {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 32px;
  line-height: 2rem;
  color: #434343;
  margin: 1em 0; }
  blockquote p {
    margin: 1em 0; }

cite {
  color: #434343;
  font-style: normal;
  font-size: 16px;
  font-size: 1rem;
  line-height: normal; }

q {
  quotes: none; }

q:before, q:after {
  content: '';
  content: none; }

/* Mark */
mark {
  background: #FFF8B4;
  color: #111; }

/* Code */
code, kbd, pre, samp {
  word-wrap: break-word;
  font-family: 'courier new', monospace, serif;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: normal;
  background-color: #f1f1f1;
  padding: 10px; }

code {
  color: #111; }

.red {
  color: #FF2C22; }

.blue {
  color: #0071C5; }

/* 1.3 Lists
   ========================================================================== */
dl, menu, ol, ul {
  margin: 1em 0; }

dd,
ul ul,
ol ol,
ul ol,
ol ul {
  margin: 0; }

dd {
  margin-bottom: 1em; }

menu, ol, ul {
  padding: 0; }

nav ul, nav ol {
  list-style: none;
  list-style-image: none; }

ul li {
  list-style: none; }

/* Remove Styling from List */
.unstyled-list, .inline-list {
  list-style: none;
  padding: 0;
  margin: 0; }
  .unstyled-list li, .inline-list li {
    margin-top: 0;
    margin-bottom: 0; }

/* 1.4 Tables
   ========================================================================== */
table {
  width: 100%;
  margin: 1em 0;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  border-right: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  word-wrap: break-word;
  -ms-word-wrap: break-word;
  *white-space: normal; }

table th,
table td {
  padding: 8px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #eee;
  border-left: 1px solid #eee; }

table thead th,
table tfoot th {
  vertical-align: bottom;
  background-color: #f1f1f1;
  color: #333; }

table caption {
  padding: 8px;
  font-weight: normal;
  font-style: normal;
  border-bottom: 0; }

/* 1.5 Forms, Labels and Inputs
   ========================================================================== */
fieldset {
  border: 0;
  padding: 0; }

legend {
  border: 0;
  padding: 0;
  white-space: normal;
  *margin-left: -7px; }

label {
  margin: 0;
  cursor: pointer; }

button, input, select, textarea {
  font-size: 100%;
  vertical-align: baseline;
  *vertical-align: middle; }

input[type=text],
input[type=password],
input[type=email],
input[type=search],
input[type=tel],
textarea {
  padding: 5px;
  line-height: normal;
  background-color: #fff;
  border: 1px solid #ccc;
  color: #111; }

input[type=checkbox],
input[type=radio] {
  cursor: pointer;
  box-sizing: border-box;
  line-height: normal;
  margin: 0;
  padding: 0;
  *height: 13px;
  *width: 13px; }

.checkbox {
  margin: .2em 0; }
  .checkbox input[type=checkbox],
  .checkbox input[type=radio] {
    margin-top: .05em; }
  .checkbox label {
    padding-left: 5px;
    overflow: hidden;
    display: table;
    *zoom: 1; }

button, input {
  line-height: normal; }

button, select {
  text-transform: none; }

/* Buttons */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  cursor: pointer;
  *overflow: visible; }

button[disabled],
html input[disabled] {
  cursor: default; }

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto;
  vertical-align: top;
  resize: none; }

textarea:focus {
  outline: none; }

@media print {
  * {
    background: transparent; }

  a, a:visited {
    text-decoration: underline; }

  abbr[title]:after {
    content: " (" attr(title) ")"; }

  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group; }

  tr, img {
    page-break-inside: avoid; }

  img {
    max-width: 100%; }

  @page {
    margin: 0.5cm; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }

  h2, h3 {
    page-break-after: avoid; } }
button, input, select, textarea {
  font-size: 100%;
  vertical-align: baseline;
  *vertical-align: middle; }

button, input {
  line-height: normal; }

button, select {
  text-transform: none; }

/* Buttons */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  cursor: pointer;
  *overflow: visible; }

button[disabled],
html input[disabled] {
  cursor: default; }

.button {
  vertical-align: middle;
  display: inline-block;
  margin: 2px 4px 2px 0;
  padding: 0 20px;
  height: 44px;
  line-height: 44px;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #eee;
  background-color: #eee;
  color: #6a6a6a;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 250ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -moz-transition: all 250ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -o-transition: all 250ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  transition: all 250ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  /* custom */
  -webkit-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -moz-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -o-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  /* custom */ }

.button.dark {
  background-color: #292929;
  border-color: #292929;
  color: white; }
  .button.dark:hover, .button.dark:active {
    text-decoration: none;
    background-color: #434343;
    border-color: #434343;
    color: white; }
  .button.dark.button-outline {
    border-color: #292929;
    background: transparent;
    line-height: 42px;
    -webkit-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -moz-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -o-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    /* custom */
    -webkit-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -moz-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -o-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    /* custom */
    color: #292929; }
    .button.dark.button-outline:hover, .button.dark.button-outline:active {
      background: transparent;
      box-shadow: none;
      color: #434343;
      border-color: #434343; }
    .button.dark.button-outline.thick {
      border-width: 2px;
      line-height: 40px; }
    .button.dark.button-outline.large {
      line-height: 48px; }
    .button.dark.button-outline.small {
      line-height: 34px; }
  .button.dark.button-clear {
    background-color: transparent;
    border-color: transparent;
    line-height: 42px;
    color: #292929; }
    .button.dark.button-clear:hover, .button.dark.button-clear:active {
      background: transparent;
      box-shadow: none;
      color: #434343;
      border-color: #434343; }
    .button.dark.button-clear.large {
      line-height: 48px; }
    .button.dark.button-clear.small {
      line-height: 34px; }
.button.gray {
  background-color: #ddd;
  border-color: #ddd;
  color: #9b9b9b; }
  .button.gray:hover, .button.gray:active {
    text-decoration: none;
    background-color: #f7f7f7;
    border-color: #f7f7f7;
    color: #9b9b9b; }
  .button.gray.button-outline {
    border-color: #aaa;
    background: transparent;
    line-height: 42px;
    -webkit-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -moz-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -o-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    /* custom */
    -webkit-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -moz-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -o-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    /* custom */
    color: #6a6a6a; }
    .button.gray.button-outline:hover, .button.gray.button-outline:active {
      background: transparent;
      box-shadow: none;
      color: #848484;
      border-color: #c4c4c4; }
    .button.gray.button-outline.thick {
      border-width: 2px;
      line-height: 40px; }
    .button.gray.button-outline.large {
      line-height: 48px; }
    .button.gray.button-outline.small {
      line-height: 34px; }
  .button.gray.button-clear {
    background-color: transparent;
    border-color: transparent;
    line-height: 42px;
    color: #6a6a6a; }
    .button.gray.button-clear:hover, .button.gray.button-clear:active {
      background: transparent;
      box-shadow: none;
      color: #848484;
      border-color: #848484; }
    .button.gray.button-clear.large {
      line-height: 48px; }
    .button.gray.button-clear.small {
      line-height: 34px; }
.button.white {
  background-color: #FFF;
  border-color: #FFF;
  color: #333333; }
  .button.white:hover, .button.white:active {
    text-decoration: none;
    background-color: white;
    border-color: white;
    color: #333333; }
  .button.white.button-outline {
    border-color: #FFF;
    background: transparent;
    line-height: 42px;
    -webkit-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -moz-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -o-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    /* custom */
    -webkit-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -moz-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -o-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    /* custom */
    color: #FFF; }
    .button.white.button-outline:hover, .button.white.button-outline:active {
      background: transparent;
      box-shadow: none;
      color: white;
      border-color: white; }
    .button.white.button-outline.thick {
      border-width: 2px;
      line-height: 40px; }
    .button.white.button-outline.large {
      line-height: 48px; }
    .button.white.button-outline.small {
      line-height: 34px; }
  .button.white.button-clear {
    background-color: transparent;
    border-color: transparent;
    line-height: 42px;
    color: #FFF; }
    .button.white.button-clear:hover, .button.white.button-clear:active {
      background: transparent;
      box-shadow: none;
      color: white;
      border-color: white; }
    .button.white.button-clear.large {
      line-height: 48px; }
    .button.white.button-clear.small {
      line-height: 34px; }
.button.blue-light {
  background-color: #14A5FF;
  border-color: #14A5FF;
  color: white; }
  .button.blue-light:hover, .button.blue-light:active {
    text-decoration: none;
    background-color: #2eafff;
    border-color: #2eafff;
    color: white; }
  .button.blue-light.button-outline {
    border-color: #14A5FF;
    background: transparent;
    line-height: 42px;
    -webkit-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -moz-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -o-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    /* custom */
    -webkit-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -moz-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -o-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    /* custom */
    color: #14A5FF; }
    .button.blue-light.button-outline:hover, .button.blue-light.button-outline:active {
      background: transparent;
      box-shadow: none;
      color: #47b9ff;
      border-color: #47b9ff; }
    .button.blue-light.button-outline.thick {
      border-width: 2px;
      line-height: 40px; }
    .button.blue-light.button-outline.large {
      line-height: 48px; }
    .button.blue-light.button-outline.small {
      line-height: 34px; }
  .button.blue-light.button-clear {
    background-color: transparent;
    border-color: transparent;
    line-height: 42px;
    color: #14A5FF; }
    .button.blue-light.button-clear:hover, .button.blue-light.button-clear:active {
      background: transparent;
      box-shadow: none;
      color: #47b9ff;
      border-color: #47b9ff; }
    .button.blue-light.button-clear.large {
      line-height: 48px; }
    .button.blue-light.button-clear.small {
      line-height: 34px; }
.button.blue {
  background-color: #0071C5;
  border-color: #0071C5;
  color: white; }
  .button.blue:hover, .button.blue:active {
    text-decoration: none;
    background-color: #0080df;
    border-color: #0080df;
    color: white; }
  .button.blue.button-outline {
    border-color: #0071C5;
    background: transparent;
    line-height: 42px;
    -webkit-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -moz-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -o-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    /* custom */
    -webkit-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -moz-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -o-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    /* custom */
    color: #0071C5; }
    .button.blue.button-outline:hover, .button.blue.button-outline:active {
      background: transparent;
      box-shadow: none;
      color: #008ef8;
      border-color: #008ef8; }
    .button.blue.button-outline.thick {
      border-width: 2px;
      line-height: 40px; }
    .button.blue.button-outline.large {
      line-height: 48px; }
    .button.blue.button-outline.small {
      line-height: 34px; }
  .button.blue.button-clear {
    background-color: transparent;
    border-color: transparent;
    line-height: 42px;
    color: #0071C5; }
    .button.blue.button-clear:hover, .button.blue.button-clear:active {
      background: transparent;
      box-shadow: none;
      color: #008ef8;
      border-color: #008ef8; }
    .button.blue.button-clear.large {
      line-height: 48px; }
    .button.blue.button-clear.small {
      line-height: 34px; }
.button.green {
  background-color: #388d81;
  border-color: #388d81;
  color: white; }
  .button.green:hover, .button.green:active {
    text-decoration: none;
    background-color: #3f9f92;
    border-color: #3f9f92;
    color: white; }
  .button.green.button-outline {
    border-color: #388d81;
    background: transparent;
    line-height: 42px;
    -webkit-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -moz-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -o-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    /* custom */
    -webkit-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -moz-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -o-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    /* custom */
    color: #388d81; }
    .button.green.button-outline:hover, .button.green.button-outline:active {
      background: transparent;
      box-shadow: none;
      color: #46b2a2;
      border-color: #46b2a2; }
    .button.green.button-outline.thick {
      border-width: 2px;
      line-height: 40px; }
    .button.green.button-outline.large {
      line-height: 48px; }
    .button.green.button-outline.small {
      line-height: 34px; }
  .button.green.button-clear {
    background-color: transparent;
    border-color: transparent;
    line-height: 42px;
    color: #388d81; }
    .button.green.button-clear:hover, .button.green.button-clear:active {
      background: transparent;
      box-shadow: none;
      color: #46b2a2;
      border-color: #46b2a2; }
    .button.green.button-clear.large {
      line-height: 48px; }
    .button.green.button-clear.small {
      line-height: 34px; }
.button.red {
  background-color: #FF2C22;
  border-color: #FF2C22;
  color: white; }
  .button.red:hover, .button.red:active {
    text-decoration: none;
    background-color: #ff443c;
    border-color: #ff443c;
    color: white; }
  .button.red.button-outline {
    border-color: #FF2C22;
    background: transparent;
    line-height: 42px;
    -webkit-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -moz-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -o-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    /* custom */
    -webkit-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -moz-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -o-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    /* custom */
    color: #FF2C22; }
    .button.red.button-outline:hover, .button.red.button-outline:active {
      background: transparent;
      box-shadow: none;
      color: #ff5d55;
      border-color: #ff5d55; }
    .button.red.button-outline.thick {
      border-width: 2px;
      line-height: 40px; }
    .button.red.button-outline.large {
      line-height: 48px; }
    .button.red.button-outline.small {
      line-height: 34px; }
  .button.red.button-clear {
    background-color: transparent;
    border-color: transparent;
    line-height: 42px;
    color: #FF2C22; }
    .button.red.button-clear:hover, .button.red.button-clear:active {
      background: transparent;
      box-shadow: none;
      color: #ff5d55;
      border-color: #ff5d55; }
    .button.red.button-clear.large {
      line-height: 48px; }
    .button.red.button-clear.small {
      line-height: 34px; }
.button.orange {
  background-color: #ee7c68;
  border-color: #ee7c68;
  color: white; }
  .button.orange:hover, .button.orange:active {
    text-decoration: none;
    background-color: #f1907f;
    border-color: #f1907f;
    color: white; }
  .button.orange.button-outline {
    border-color: #ee7c68;
    background: transparent;
    line-height: 42px;
    -webkit-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -moz-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -o-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    /* custom */
    -webkit-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -moz-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -o-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    /* custom */
    color: #ee7c68; }
    .button.orange.button-outline:hover, .button.orange.button-outline:active {
      background: transparent;
      box-shadow: none;
      color: #f3a496;
      border-color: #f3a496; }
    .button.orange.button-outline.thick {
      border-width: 2px;
      line-height: 40px; }
    .button.orange.button-outline.large {
      line-height: 48px; }
    .button.orange.button-outline.small {
      line-height: 34px; }
  .button.orange.button-clear {
    background-color: transparent;
    border-color: transparent;
    line-height: 42px;
    color: #ee7c68; }
    .button.orange.button-clear:hover, .button.orange.button-clear:active {
      background: transparent;
      box-shadow: none;
      color: #f3a496;
      border-color: #f3a496; }
    .button.orange.button-clear.large {
      line-height: 48px; }
    .button.orange.button-clear.small {
      line-height: 34px; }
.button.error {
  background-color: #FF2C22;
  border-color: #FF2C22;
  color: white; }
  .button.error:hover, .button.error:active {
    text-decoration: none;
    background-color: #ff443c;
    border-color: #ff443c;
    color: white; }
  .button.error.button-outline {
    border-color: #FF2C22;
    background: transparent;
    line-height: 42px;
    -webkit-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -moz-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -o-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    /* custom */
    -webkit-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -moz-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -o-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    /* custom */
    color: #FF2C22; }
    .button.error.button-outline:hover, .button.error.button-outline:active {
      background: transparent;
      box-shadow: none;
      color: #ff5d55;
      border-color: #ff5d55; }
    .button.error.button-outline.thick {
      border-width: 2px;
      line-height: 40px; }
    .button.error.button-outline.large {
      line-height: 48px; }
    .button.error.button-outline.small {
      line-height: 34px; }
  .button.error.button-clear {
    background-color: transparent;
    border-color: transparent;
    line-height: 42px;
    color: #FF2C22; }
    .button.error.button-clear:hover, .button.error.button-clear:active {
      background: transparent;
      box-shadow: none;
      color: #ff5d55;
      border-color: #ff5d55; }
    .button.error.button-clear.large {
      line-height: 48px; }
    .button.error.button-clear.small {
      line-height: 34px; }
.button.facebook {
  background-color: #3667BC;
  border-color: #3667BC;
  color: white; }
  .button.facebook:hover, .button.facebook:active {
    text-decoration: none;
    background-color: #4374c9;
    border-color: #4374c9;
    color: white; }
  .button.facebook.button-outline {
    border-color: #3667BC;
    background: transparent;
    line-height: 42px;
    -webkit-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -moz-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -o-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    /* custom */
    -webkit-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -moz-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -o-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    /* custom */
    color: #3667BC; }
    .button.facebook.button-outline:hover, .button.facebook.button-outline:active {
      background: transparent;
      box-shadow: none;
      color: #5682cf;
      border-color: #5682cf; }
    .button.facebook.button-outline.thick {
      border-width: 2px;
      line-height: 40px; }
    .button.facebook.button-outline.large {
      line-height: 48px; }
    .button.facebook.button-outline.small {
      line-height: 34px; }
  .button.facebook.button-clear {
    background-color: transparent;
    border-color: transparent;
    line-height: 42px;
    color: #3667BC; }
    .button.facebook.button-clear:hover, .button.facebook.button-clear:active {
      background: transparent;
      box-shadow: none;
      color: #5682cf;
      border-color: #5682cf; }
    .button.facebook.button-clear.large {
      line-height: 48px; }
    .button.facebook.button-clear.small {
      line-height: 34px; }
.button.twitter {
  background-color: #55ACEE;
  border-color: #55ACEE;
  color: white; }
  .button.twitter:hover, .button.twitter:active {
    text-decoration: none;
    background-color: #6cb7f0;
    border-color: #6cb7f0;
    color: white; }
  .button.twitter.button-outline {
    border-color: #55ACEE;
    background: transparent;
    line-height: 42px;
    -webkit-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -moz-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -o-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    /* custom */
    -webkit-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -moz-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -o-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    /* custom */
    color: #55ACEE; }
    .button.twitter.button-outline:hover, .button.twitter.button-outline:active {
      background: transparent;
      box-shadow: none;
      color: #83c3f3;
      border-color: #83c3f3; }
    .button.twitter.button-outline.thick {
      border-width: 2px;
      line-height: 40px; }
    .button.twitter.button-outline.large {
      line-height: 48px; }
    .button.twitter.button-outline.small {
      line-height: 34px; }
  .button.twitter.button-clear {
    background-color: transparent;
    border-color: transparent;
    line-height: 42px;
    color: #55ACEE; }
    .button.twitter.button-clear:hover, .button.twitter.button-clear:active {
      background: transparent;
      box-shadow: none;
      color: #83c3f3;
      border-color: #83c3f3; }
    .button.twitter.button-clear.large {
      line-height: 48px; }
    .button.twitter.button-clear.small {
      line-height: 34px; }
.button.google-plus {
  background-color: #D54135;
  border-color: #D54135;
  color: white; }
  .button.google-plus:hover, .button.google-plus:active {
    text-decoration: none;
    background-color: #d9554a;
    border-color: #d9554a;
    color: white; }
  .button.google-plus.button-outline {
    border-color: #D54135;
    background: transparent;
    line-height: 42px;
    -webkit-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -moz-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -o-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
    /* custom */
    -webkit-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -moz-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    -o-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
    /* custom */
    color: #D54135; }
    .button.google-plus.button-outline:hover, .button.google-plus.button-outline:active {
      background: transparent;
      box-shadow: none;
      color: #de695f;
      border-color: #de695f; }
    .button.google-plus.button-outline.thick {
      border-width: 2px;
      line-height: 40px; }
    .button.google-plus.button-outline.large {
      line-height: 48px; }
    .button.google-plus.button-outline.small {
      line-height: 34px; }
  .button.google-plus.button-clear {
    background-color: transparent;
    border-color: transparent;
    line-height: 42px;
    color: #D54135; }
    .button.google-plus.button-clear:hover, .button.google-plus.button-clear:active {
      background: transparent;
      box-shadow: none;
      color: #de695f;
      border-color: #de695f; }
    .button.google-plus.button-clear.large {
      line-height: 48px; }
    .button.google-plus.button-clear.small {
      line-height: 34px; }
.button.dark-outline.button-outline {
  border-color: #292929;
  background: transparent;
  line-height: 42px;
  -webkit-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -moz-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -o-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  /* custom */
  -webkit-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -moz-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -o-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  /* custom */
  color: #292929; }
  .button.dark-outline.button-outline:hover, .button.dark-outline.button-outline:active {
    background: transparent;
    box-shadow: none;
    color: #434343;
    border-color: #434343; }
  .button.dark-outline.button-outline.thick {
    border-width: 2px;
    line-height: 40px; }
  .button.dark-outline.button-outline.large {
    line-height: 48px; }
  .button.dark-outline.button-outline.small {
    line-height: 34px; }
.button.dark-outline.button-clear {
  background-color: transparent;
  border-color: transparent;
  line-height: 42px;
  color: #292929; }
  .button.dark-outline.button-clear:hover, .button.dark-outline.button-clear:active {
    background: transparent;
    box-shadow: none;
    color: #434343;
    border-color: #434343; }
  .button.dark-outline.button-clear.large {
    line-height: 48px; }
  .button.dark-outline.button-clear.small {
    line-height: 34px; }
.button.gray-outline.button-outline {
  border-color: #aaa;
  background: transparent;
  line-height: 42px;
  -webkit-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -moz-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -o-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  /* custom */
  -webkit-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -moz-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -o-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  /* custom */
  color: #6a6a6a; }
  .button.gray-outline.button-outline:hover, .button.gray-outline.button-outline:active {
    background: transparent;
    box-shadow: none;
    color: #848484;
    border-color: #c4c4c4; }
  .button.gray-outline.button-outline.thick {
    border-width: 2px;
    line-height: 40px; }
  .button.gray-outline.button-outline.large {
    line-height: 48px; }
  .button.gray-outline.button-outline.small {
    line-height: 34px; }
.button.gray-outline.button-clear {
  background-color: transparent;
  border-color: transparent;
  line-height: 42px;
  color: #6a6a6a; }
  .button.gray-outline.button-clear:hover, .button.gray-outline.button-clear:active {
    background: transparent;
    box-shadow: none;
    color: #848484;
    border-color: #848484; }
  .button.gray-outline.button-clear.large {
    line-height: 48px; }
  .button.gray-outline.button-clear.small {
    line-height: 34px; }
.button.white-outline.button-outline {
  border-color: #eee;
  background: transparent;
  line-height: 42px;
  -webkit-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -moz-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -o-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  /* custom */
  -webkit-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -moz-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -o-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  /* custom */
  color: #eee; }
  .button.white-outline.button-outline:hover, .button.white-outline.button-outline:active {
    background: transparent;
    box-shadow: none;
    color: white;
    border-color: white; }
  .button.white-outline.button-outline.thick {
    border-width: 2px;
    line-height: 40px; }
  .button.white-outline.button-outline.large {
    line-height: 48px; }
  .button.white-outline.button-outline.small {
    line-height: 34px; }
.button.white-outline.button-clear {
  background-color: transparent;
  border-color: transparent;
  line-height: 42px;
  color: #eee; }
  .button.white-outline.button-clear:hover, .button.white-outline.button-clear:active {
    background: transparent;
    box-shadow: none;
    color: white;
    border-color: white; }
  .button.white-outline.button-clear.large {
    line-height: 48px; }
  .button.white-outline.button-clear.small {
    line-height: 34px; }
.button.blue-light-outline.button-outline {
  border-color: #14A5FF;
  background: transparent;
  line-height: 42px;
  -webkit-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -moz-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -o-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  /* custom */
  -webkit-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -moz-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -o-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  /* custom */
  color: #14A5FF; }
  .button.blue-light-outline.button-outline:hover, .button.blue-light-outline.button-outline:active {
    background: transparent;
    box-shadow: none;
    color: #47b9ff;
    border-color: #47b9ff; }
  .button.blue-light-outline.button-outline.thick {
    border-width: 2px;
    line-height: 40px; }
  .button.blue-light-outline.button-outline.large {
    line-height: 48px; }
  .button.blue-light-outline.button-outline.small {
    line-height: 34px; }
.button.blue-light-outline.button-clear {
  background-color: transparent;
  border-color: transparent;
  line-height: 42px;
  color: #14A5FF; }
  .button.blue-light-outline.button-clear:hover, .button.blue-light-outline.button-clear:active {
    background: transparent;
    box-shadow: none;
    color: #47b9ff;
    border-color: #47b9ff; }
  .button.blue-light-outline.button-clear.large {
    line-height: 48px; }
  .button.blue-light-outline.button-clear.small {
    line-height: 34px; }
.button.blue-outline.button-outline {
  border-color: #0071C5;
  background: transparent;
  line-height: 42px;
  -webkit-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -moz-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -o-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  /* custom */
  -webkit-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -moz-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -o-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  /* custom */
  color: #0071C5; }
  .button.blue-outline.button-outline:hover, .button.blue-outline.button-outline:active {
    background: transparent;
    box-shadow: none;
    color: #008ef8;
    border-color: #008ef8; }
  .button.blue-outline.button-outline.thick {
    border-width: 2px;
    line-height: 40px; }
  .button.blue-outline.button-outline.large {
    line-height: 48px; }
  .button.blue-outline.button-outline.small {
    line-height: 34px; }
.button.blue-outline.button-clear {
  background-color: transparent;
  border-color: transparent;
  line-height: 42px;
  color: #0071C5; }
  .button.blue-outline.button-clear:hover, .button.blue-outline.button-clear:active {
    background: transparent;
    box-shadow: none;
    color: #008ef8;
    border-color: #008ef8; }
  .button.blue-outline.button-clear.large {
    line-height: 48px; }
  .button.blue-outline.button-clear.small {
    line-height: 34px; }
.button.green-outline.button-outline {
  border-color: #388d81;
  background: transparent;
  line-height: 42px;
  -webkit-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -moz-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -o-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  /* custom */
  -webkit-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -moz-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -o-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  /* custom */
  color: #388d81; }
  .button.green-outline.button-outline:hover, .button.green-outline.button-outline:active {
    background: transparent;
    box-shadow: none;
    color: #46b2a2;
    border-color: #46b2a2; }
  .button.green-outline.button-outline.thick {
    border-width: 2px;
    line-height: 40px; }
  .button.green-outline.button-outline.large {
    line-height: 48px; }
  .button.green-outline.button-outline.small {
    line-height: 34px; }
.button.green-outline.button-clear {
  background-color: transparent;
  border-color: transparent;
  line-height: 42px;
  color: #388d81; }
  .button.green-outline.button-clear:hover, .button.green-outline.button-clear:active {
    background: transparent;
    box-shadow: none;
    color: #46b2a2;
    border-color: #46b2a2; }
  .button.green-outline.button-clear.large {
    line-height: 48px; }
  .button.green-outline.button-clear.small {
    line-height: 34px; }
.button.red-outline.button-outline {
  border-color: #FF2C22;
  background: transparent;
  line-height: 42px;
  -webkit-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -moz-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -o-transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  transition: all 350ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  /* custom */
  -webkit-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -moz-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -o-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  /* custom */
  color: #FF2C22; }
  .button.red-outline.button-outline:hover, .button.red-outline.button-outline:active {
    background: transparent;
    box-shadow: none;
    color: #ff5d55;
    border-color: #ff5d55; }
  .button.red-outline.button-outline.thick {
    border-width: 2px;
    line-height: 40px; }
  .button.red-outline.button-outline.large {
    line-height: 48px; }
  .button.red-outline.button-outline.small {
    line-height: 34px; }
.button.red-outline.button-clear {
  background-color: transparent;
  border-color: transparent;
  line-height: 42px;
  color: #FF2C22; }
  .button.red-outline.button-clear:hover, .button.red-outline.button-clear:active {
    background: transparent;
    box-shadow: none;
    color: #ff5d55;
    border-color: #ff5d55; }
  .button.red-outline.button-clear.large {
    line-height: 48px; }
  .button.red-outline.button-clear.small {
    line-height: 34px; }
.button i {
  margin: 0 4px 0 0; }
  .button i:before {
    vertical-align: middle; }
  .button i.no-margin {
    margin: 0; }
.button:hover {
  color: #000;
  background-color: #ddd; }
.button.disable {
  opacity: 0.5;
  cursor: default; }
.button.button-block {
  display: block;
  width: 100%;
  text-align: center;
  margin: 5px 0;
  padding: 0; }
.button.small {
  padding: 0 8px;
  height: 36px;
  line-height: 36px;
  font-size: 13px; }
.button.large {
  height: 50px;
  line-height: 50px;
  padding: 0 40px;
  font-size: 14px; }
.button.largest {
  padding: 0 40px;
  font-size: 16px;
  height: 56px;
  line-height: 56px; }
.button.rounded {
  padding: 0 24px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px; }
  .button.rounded.small {
    padding: 0 12px; }
  .button.rounded.large {
    padding: 0 44px; }
  .button.rounded.largest {
    padding: 0 44px; }
.button.long {
  padding: 0 60px; }
.button.full {
  width: 100%;
  margin: 6px 0; }

.button-bar {
  margin: 3px 3px 3px 0;
  display: inline-block;
  vertical-align: middle; }
  .button-bar.block, .button-bar.checkbox {
    display: block; }
  .button-bar .button {
    margin: 0 !important;
    padding: 0 16px;
    float: left;
    border-radius: 0;
    border-width: 0;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap; }
    .button-bar .button.active {
      color: #333;
      background-color: #ddd; }
    .button-bar .button.button-outline {
      border-width: 1px 0px 1px 1px;
      border-color: #aaa;
      background-color: #FFF; }
      .button-bar .button.button-outline:hover {
        color: #333;
        background-color: #f3f4f5; }
      .button-bar .button.button-outline.active {
        color: #ee7c68; }
    .button-bar .button:first-child {
      border-radius: 3px 0px 0px 3px; }
    .button-bar .button:last-child {
      border-right-width: 1px;
      border-radius: 0px 3px 3px 0px; }
    .button-bar .button.all-radius {
      -moz-border-radius: 3px;
      -webkit-border-radius: 3px;
      border-radius: 3px; }
    .button-bar .button i {
      margin: 0; }

.zmdi-icon {
  font-size: 18px;
  font-size: 1.125rem;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center; }

.input-clear {
  position: relative;
  margin-left: -30px;
  color: #737373;
  vertical-align: middle;
  cursor: pointer;
  font-size: 18px;
  font-size: 1.125rem; }

.spin {
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0 auto;
  border-top: 2px solid transparent;
  border-bottom: 2px solid #fff;
  border-left: 2px solid transparent;
  border-right: 2px solid #fff;
  opacity: 1;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  display: -webkit-inline-flex;
  display: inline-flex;
  -moz-animation: rotate 0.6s linear infinite;
  -webkit-animation: rotate 0.6s linear infinite;
  animation: rotate 0.6s linear infinite; }
  .spin.large {
    width: 40px;
    height: 40px; }
  .spin.medium {
    width: 30px;
    height: 30px; }
  .spin.small {
    width: 12px;
    height: 12px; }
  .spin.blue {
    border-top: 1px solid transparent;
    border-bottom: 1px solid #0071C5;
    border-left: 1px solid transparent;
    border-right: 1px solid #0071C5; }
  .spin.orange {
    border-top: 1px solid transparent;
    border-bottom: 1px solid #ee7c68;
    border-left: 1px solid transparent;
    border-right: 1px solid #ee7c68; }
  .spin.red {
    border-top: 1px solid transparent;
    border-bottom: 1px solid #FF2C22;
    border-left: 1px solid transparent;
    border-right: 1px solid #FF2C22; }
  .spin.green {
    border-top: 1px solid transparent;
    border-bottom: 1px solid #388d81;
    border-left: 1px solid transparent;
    border-right: 1px solid #388d81; }
@-webkit-keyframes rotate {
  0% {
    -moz-transform: rotateZ(-360deg);
    -ms-transform: rotateZ(-360deg);
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg); }
  100% {
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg); } }
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotateZ(-360deg);
    -ms-transform: rotateZ(-360deg);
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg); }
  100% {
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg); } }
@-ms-keyframes rotate {
  0% {
    -moz-transform: rotateZ(-360deg);
    -ms-transform: rotateZ(-360deg);
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg); }
  100% {
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg); } }
@keyframes rotate {
  0% {
    -moz-transform: rotateZ(-360deg);
    -ms-transform: rotateZ(-360deg);
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg); }
  100% {
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg); } }
.animate-spinner {
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  -moz-animation: spin-rotate 2s infinite linear;
  -webkit-animation: spin-rotate 2s infinite linear;
  animation: spin-rotate 2s infinite linear; }

@-webkit-keyframes spin-rotate {
  0% {
    -moz-transform: rotateZ(-360deg);
    -ms-transform: rotateZ(-360deg);
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg); }
  100% {
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg); } }
@-moz-keyframes spin-rotate {
  0% {
    -moz-transform: rotateZ(-360deg);
    -ms-transform: rotateZ(-360deg);
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg); }
  100% {
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg); } }
@-ms-keyframes spin-rotate {
  0% {
    -moz-transform: rotateZ(-360deg);
    -ms-transform: rotateZ(-360deg);
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg); }
  100% {
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg); } }
@keyframes spin-rotate {
  0% {
    -moz-transform: rotateZ(-360deg);
    -ms-transform: rotateZ(-360deg);
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg); }
  100% {
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg); } }
.loading-state {
  height: 100px;
  min-height: 100px;
  display: -webkit-flex;
  display: flex; }
  .loading-state.inline {
    display: -webkit-inline-flex;
    display: inline-flex; }

.sk-three-bounce {
  margin: auto;
  width: 90px;
  text-align: center; }

.sk-three-bounce .sk-child {
  width: 20px;
  height: 20px;
  background-color: rgba(238, 124, 104, 0.4);
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
  animation: sk-three-bounce 1.4s ease-in-out 0s infinite both; }

.sk-three-bounce .sk-bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s; }

.sk-three-bounce .sk-bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s; }

@-webkit-keyframes sk-three-bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
@keyframes sk-three-bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
.status-message {
  position: relative;
  display: block;
  width: 480px;
  margin: auto;
  text-align: center;
  top: 0;
  left: 0;
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0); }
  .status-message.error .status-icon {
    color: #FF2C22; }
  .status-message.error .status-title {
    color: #FF2C22; }
  .status-message.gray .status-icon, .status-message.gray .status-title {
    color: #4A4A4A; }
  .status-message img {
    width: 100%;
    height: 100%;
    max-width: 64px;
    max-height: 64px;
    margin-bottom: 32px; }
  .status-message .status-icon {
    margin-bottom: 20px;
    color: #388d81; }
    .status-message .status-icon i {
      font-size: 64px;
      font-size: 4rem; }
  .status-message .status-title {
    line-height: 33px;
    margin: 0 auto 12px auto;
    color: #388d81;
    font-weight: 600;
    font-size: 24px;
    font-size: 1.5rem; }
  .status-message .status-desc {
    width: 280px;
    line-height: 20px;
    margin: 0 auto 16px auto;
    color: #2A2A2A;
    font-size: 13px;
    font-size: 0.8125rem; }
    .status-message .status-desc.full {
      width: 100%; }
  .status-message .status-action {
    width: auto;
    margin: auto; }
    .status-message .status-action .button {
      margin: 0 6px;
      font-weight: 600;
      font-size: 14px;
      font-size: 0.875rem; }
      .status-message .status-action .button:first-child {
        margin: 0 6px; }
      .status-message .status-action .button a {
        color: inherit; }
  .status-message .error {
    color: #FF2C22; }

#cart .order-form .input-wrapper .address-form .twzipcode-wrapper, #payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper, #extrafee .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper, #points #points-payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper, .profile .member-content .input-form .twzipcode-wrapper, #points .store-payment .invoice-wrapper .address-form .twzipcode-wrapper, #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form .twzipcode-wrapper, #member-signup .member-signup-content .form-wrapper .input-form .twzipcode-wrapper, #payment-confirm .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper, #edit-address-modal .content .input-form .twzipcode-wrapper {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between; }
  #cart .order-form .input-wrapper .address-form .twzipcode-wrapper .city-select, #payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .city-select, #extrafee .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .city-select, #points #points-payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .city-select, .profile .member-content .input-form .twzipcode-wrapper .city-select, #points .store-payment .invoice-wrapper .address-form .twzipcode-wrapper .city-select, #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form .twzipcode-wrapper .city-select, #member-signup .member-signup-content .form-wrapper .input-form .twzipcode-wrapper .city-select, #payment-confirm .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .city-select, #edit-address-modal .content .input-form .twzipcode-wrapper .city-select, #cart .order-form .input-wrapper .address-form .twzipcode-wrapper .dist-select, #payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .dist-select, #extrafee .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .dist-select, #points #points-payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .dist-select, .profile .member-content .input-form .twzipcode-wrapper .dist-select, #points .store-payment .invoice-wrapper .address-form .twzipcode-wrapper .dist-select, #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form .twzipcode-wrapper .dist-select, #member-signup .member-signup-content .form-wrapper .input-form .twzipcode-wrapper .dist-select, #payment-confirm .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .dist-select, #edit-address-modal .content .input-form .twzipcode-wrapper .dist-select {
    display: inline-block;
    width: 90px;
    min-width: 90px;
    height: 44px;
    margin-left: 10px;
    padding: 0 12px;
    border: 1px solid #ccc;
    color: #2A2A2A;
    background-color: #fff;
    outline: none;
    font-size: 14px;
    font-size: 0.875rem;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
    #cart .order-form .input-wrapper .address-form .twzipcode-wrapper .city-select:focus, #payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .city-select:focus, #extrafee .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .city-select:focus, #points #points-payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .city-select:focus, .profile .member-content .input-form .twzipcode-wrapper .city-select:focus, #points .store-payment .invoice-wrapper .address-form .twzipcode-wrapper .city-select:focus, #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form .twzipcode-wrapper .city-select:focus, #member-signup .member-signup-content .form-wrapper .input-form .twzipcode-wrapper .city-select:focus, #payment-confirm .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .city-select:focus, #edit-address-modal .content .input-form .twzipcode-wrapper .city-select:focus, #cart .order-form .input-wrapper .address-form .twzipcode-wrapper .dist-select:focus, #payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .dist-select:focus, #extrafee .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .dist-select:focus, #points #points-payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .dist-select:focus, .profile .member-content .input-form .twzipcode-wrapper .dist-select:focus, #points .store-payment .invoice-wrapper .address-form .twzipcode-wrapper .dist-select:focus, #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form .twzipcode-wrapper .dist-select:focus, #member-signup .member-signup-content .form-wrapper .input-form .twzipcode-wrapper .dist-select:focus, #payment-confirm .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .dist-select:focus, #edit-address-modal .content .input-form .twzipcode-wrapper .dist-select:focus {
      border-color: #2A2A2A; }
    #cart .order-form .input-wrapper .address-form .twzipcode-wrapper .city-select.error, #payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .city-select.error, #extrafee .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .city-select.error, #points #points-payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .city-select.error, .profile .member-content .input-form .twzipcode-wrapper .city-select.error, #points .store-payment .invoice-wrapper .address-form .twzipcode-wrapper .city-select.error, #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form .twzipcode-wrapper .city-select.error, #member-signup .member-signup-content .form-wrapper .input-form .twzipcode-wrapper .city-select.error, #payment-confirm .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .city-select.error, #edit-address-modal .content .input-form .twzipcode-wrapper .city-select.error, #cart .order-form .input-wrapper .address-form .twzipcode-wrapper .dist-select.error, #payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .dist-select.error, #extrafee .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .dist-select.error, #points #points-payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .dist-select.error, .profile .member-content .input-form .twzipcode-wrapper .dist-select.error, #points .store-payment .invoice-wrapper .address-form .twzipcode-wrapper .dist-select.error, #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form .twzipcode-wrapper .dist-select.error, #member-signup .member-signup-content .form-wrapper .input-form .twzipcode-wrapper .dist-select.error, #payment-confirm .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .dist-select.error, #edit-address-modal .content .input-form .twzipcode-wrapper .dist-select.error {
      border: 1px solid #FF2C22;
      color: #FF2C22; }
  #cart .order-form .input-wrapper .address-form .twzipcode-wrapper .city-select, #payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .city-select, #extrafee .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .city-select, #points #points-payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .city-select, .profile .member-content .input-form .twzipcode-wrapper .city-select, #points .store-payment .invoice-wrapper .address-form .twzipcode-wrapper .city-select, #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form .twzipcode-wrapper .city-select, #member-signup .member-signup-content .form-wrapper .input-form .twzipcode-wrapper .city-select, #payment-confirm .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .city-select, #edit-address-modal .content .input-form .twzipcode-wrapper .city-select {
    margin-left: 0; }
  #cart .order-form .input-wrapper .address-form .twzipcode-wrapper .zipcode, #payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .zipcode, #extrafee .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .zipcode, #points #points-payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .zipcode, .profile .member-content .input-form .twzipcode-wrapper .zipcode, #points .store-payment .invoice-wrapper .address-form .twzipcode-wrapper .zipcode, #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form .twzipcode-wrapper .zipcode, #member-signup .member-signup-content .form-wrapper .input-form .twzipcode-wrapper .zipcode, #payment-confirm .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .zipcode, #edit-address-modal .content .input-form .twzipcode-wrapper .zipcode {
    display: inline-block;
    width: 80px;
    min-width: 80px;
    height: 44px;
    margin-left: 10px;
    padding: 0 12px;
    border: 1px solid #ccc;
    color: #2A2A2A;
    font-size: 14px;
    font-size: 0.875rem;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
    #cart .order-form .input-wrapper .address-form .twzipcode-wrapper .zipcode:focus, #payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .zipcode:focus, #extrafee .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .zipcode:focus, #points #points-payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .zipcode:focus, .profile .member-content .input-form .twzipcode-wrapper .zipcode:focus, #points .store-payment .invoice-wrapper .address-form .twzipcode-wrapper .zipcode:focus, #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form .twzipcode-wrapper .zipcode:focus, #member-signup .member-signup-content .form-wrapper .input-form .twzipcode-wrapper .zipcode:focus, #payment-confirm .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .zipcode:focus, #edit-address-modal .content .input-form .twzipcode-wrapper .zipcode:focus {
      border-color: #2A2A2A; }
    #cart .order-form .input-wrapper .address-form .twzipcode-wrapper .zipcode.error, #payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .zipcode.error, #extrafee .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .zipcode.error, #points #points-payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .zipcode.error, .profile .member-content .input-form .twzipcode-wrapper .zipcode.error, #points .store-payment .invoice-wrapper .address-form .twzipcode-wrapper .zipcode.error, #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form .twzipcode-wrapper .zipcode.error, #member-signup .member-signup-content .form-wrapper .input-form .twzipcode-wrapper .zipcode.error, #payment-confirm .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .zipcode.error, #edit-address-modal .content .input-form .twzipcode-wrapper .zipcode.error {
      border: 1px solid #FF2C22;
      color: #FF2C22; }
  #cart .order-form .input-wrapper .address-form .twzipcode-wrapper .address, #payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .address, #extrafee .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .address, #points #points-payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .address, .profile .member-content .input-form .twzipcode-wrapper .address, #points .store-payment .invoice-wrapper .address-form .twzipcode-wrapper .address, #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form .twzipcode-wrapper .address, #member-signup .member-signup-content .form-wrapper .input-form .twzipcode-wrapper .address, #payment-confirm .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .address, #edit-address-modal .content .input-form .twzipcode-wrapper .address {
    display: inline-block;
    width: auto;
    min-width: 0;
    height: 44px;
    margin-left: 10px;
    padding: 0 12px;
    border: 1px solid #ccc;
    color: #2A2A2A;
    -webkit-flex: 1;
    flex: 1;
    font-size: 14px;
    font-size: 0.875rem;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
    #cart .order-form .input-wrapper .address-form .twzipcode-wrapper .address:focus, #payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .address:focus, #extrafee .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .address:focus, #points #points-payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .address:focus, .profile .member-content .input-form .twzipcode-wrapper .address:focus, #points .store-payment .invoice-wrapper .address-form .twzipcode-wrapper .address:focus, #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form .twzipcode-wrapper .address:focus, #member-signup .member-signup-content .form-wrapper .input-form .twzipcode-wrapper .address:focus, #payment-confirm .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .address:focus, #edit-address-modal .content .input-form .twzipcode-wrapper .address:focus {
      border-color: #2A2A2A; }
    #cart .order-form .input-wrapper .address-form .twzipcode-wrapper .address.error, #payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .address.error, #extrafee .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .address.error, #points #points-payment .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .address.error, .profile .member-content .input-form .twzipcode-wrapper .address.error, #points .store-payment .invoice-wrapper .address-form .twzipcode-wrapper .address.error, #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form .twzipcode-wrapper .address.error, #member-signup .member-signup-content .form-wrapper .input-form .twzipcode-wrapper .address.error, #payment-confirm .payment-form .form-content .input-wrapper .address-form .twzipcode-wrapper .address.error, #edit-address-modal .content .input-form .twzipcode-wrapper .address.error {
      border: 1px solid #FF2C22;
      color: #FF2C22; }

#payment .bread-crumbs, #extrafee .bread-crumbs, #points #points-payment .bread-crumbs, #payment-result .bread-crumbs, #extrafee-payment-result .bread-crumbs, #points-payment-result .bread-crumbs, #payment-credit .bread-crumbs, #extrafee-payment-credit .bread-crumbs, #points-payment-credit .bread-crumbs, #payment-atm .bread-crumbs, #extrafee-payment-atm .bread-crumbs, #points-payment-atm .bread-crumbs, #payment-point .bread-crumbs, #extrafee-payment-point .bread-crumbs, #payment-outwardremittance .bread-crumbs, #extrafee-payment-outwardremittance .bread-crumbs, #points-payment-outwardremittance .bread-crumbs, #payment-monthly .bread-crumbs, #extrafee-payment-monthly .bread-crumbs, #member .bread-crumbs, #faq .bread-crumbs, #search-result .bread-crumbs, #blog-post .bread-crumbs, #designer .bread-crumbs, #project-post .bread-crumbs, #payment-confirm .bread-crumbs, #payment-spgatewaycvs .bread-crumbs, #extrafee-payment-spgatewaycvs .bread-crumbs, #points-payment-spgatewaycvs .bread-crumbs {
  list-style-type: none;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center; }
  #payment .bread-crumbs .crumb-item, #extrafee .bread-crumbs .crumb-item, #points #points-payment .bread-crumbs .crumb-item, #payment-result .bread-crumbs .crumb-item, #extrafee-payment-result .bread-crumbs .crumb-item, #points-payment-result .bread-crumbs .crumb-item, #payment-credit .bread-crumbs .crumb-item, #extrafee-payment-credit .bread-crumbs .crumb-item, #points-payment-credit .bread-crumbs .crumb-item, #payment-atm .bread-crumbs .crumb-item, #extrafee-payment-atm .bread-crumbs .crumb-item, #points-payment-atm .bread-crumbs .crumb-item, #payment-point .bread-crumbs .crumb-item, #extrafee-payment-point .bread-crumbs .crumb-item, #payment-outwardremittance .bread-crumbs .crumb-item, #extrafee-payment-outwardremittance .bread-crumbs .crumb-item, #points-payment-outwardremittance .bread-crumbs .crumb-item, #payment-monthly .bread-crumbs .crumb-item, #extrafee-payment-monthly .bread-crumbs .crumb-item, #member .bread-crumbs .crumb-item, #faq .bread-crumbs .crumb-item, #search-result .bread-crumbs .crumb-item, #blog-post .bread-crumbs .crumb-item, #designer .bread-crumbs .crumb-item, #project-post .bread-crumbs .crumb-item, #payment-confirm .bread-crumbs .crumb-item, #payment-spgatewaycvs .bread-crumbs .crumb-item, #extrafee-payment-spgatewaycvs .bread-crumbs .crumb-item, #points-payment-spgatewaycvs .bread-crumbs .crumb-item {
    display: inline-block;
    line-height: 20px;
    font-size: 14px;
    font-size: 0.875rem; }
    #payment .bread-crumbs .crumb-item.active a, #extrafee .bread-crumbs .crumb-item.active a, #points #points-payment .bread-crumbs .crumb-item.active a, #payment-result .bread-crumbs .crumb-item.active a, #extrafee-payment-result .bread-crumbs .crumb-item.active a, #points-payment-result .bread-crumbs .crumb-item.active a, #payment-credit .bread-crumbs .crumb-item.active a, #extrafee-payment-credit .bread-crumbs .crumb-item.active a, #points-payment-credit .bread-crumbs .crumb-item.active a, #payment-atm .bread-crumbs .crumb-item.active a, #extrafee-payment-atm .bread-crumbs .crumb-item.active a, #points-payment-atm .bread-crumbs .crumb-item.active a, #payment-point .bread-crumbs .crumb-item.active a, #extrafee-payment-point .bread-crumbs .crumb-item.active a, #payment-outwardremittance .bread-crumbs .crumb-item.active a, #extrafee-payment-outwardremittance .bread-crumbs .crumb-item.active a, #points-payment-outwardremittance .bread-crumbs .crumb-item.active a, #payment-monthly .bread-crumbs .crumb-item.active a, #extrafee-payment-monthly .bread-crumbs .crumb-item.active a, #member .bread-crumbs .crumb-item.active a, #faq .bread-crumbs .crumb-item.active a, #search-result .bread-crumbs .crumb-item.active a, #blog-post .bread-crumbs .crumb-item.active a, #designer .bread-crumbs .crumb-item.active a, #project-post .bread-crumbs .crumb-item.active a, #payment-confirm .bread-crumbs .crumb-item.active a, #payment-spgatewaycvs .bread-crumbs .crumb-item.active a, #extrafee-payment-spgatewaycvs .bread-crumbs .crumb-item.active a, #points-payment-spgatewaycvs .bread-crumbs .crumb-item.active a {
      color: #484848; }
      #payment .bread-crumbs .crumb-item.active a:hover, #extrafee .bread-crumbs .crumb-item.active a:hover, #points #points-payment .bread-crumbs .crumb-item.active a:hover, #payment-result .bread-crumbs .crumb-item.active a:hover, #extrafee-payment-result .bread-crumbs .crumb-item.active a:hover, #points-payment-result .bread-crumbs .crumb-item.active a:hover, #payment-credit .bread-crumbs .crumb-item.active a:hover, #extrafee-payment-credit .bread-crumbs .crumb-item.active a:hover, #points-payment-credit .bread-crumbs .crumb-item.active a:hover, #payment-atm .bread-crumbs .crumb-item.active a:hover, #extrafee-payment-atm .bread-crumbs .crumb-item.active a:hover, #points-payment-atm .bread-crumbs .crumb-item.active a:hover, #payment-point .bread-crumbs .crumb-item.active a:hover, #extrafee-payment-point .bread-crumbs .crumb-item.active a:hover, #payment-outwardremittance .bread-crumbs .crumb-item.active a:hover, #extrafee-payment-outwardremittance .bread-crumbs .crumb-item.active a:hover, #points-payment-outwardremittance .bread-crumbs .crumb-item.active a:hover, #payment-monthly .bread-crumbs .crumb-item.active a:hover, #extrafee-payment-monthly .bread-crumbs .crumb-item.active a:hover, #member .bread-crumbs .crumb-item.active a:hover, #faq .bread-crumbs .crumb-item.active a:hover, #search-result .bread-crumbs .crumb-item.active a:hover, #blog-post .bread-crumbs .crumb-item.active a:hover, #designer .bread-crumbs .crumb-item.active a:hover, #project-post .bread-crumbs .crumb-item.active a:hover, #payment-confirm .bread-crumbs .crumb-item.active a:hover, #payment-spgatewaycvs .bread-crumbs .crumb-item.active a:hover, #extrafee-payment-spgatewaycvs .bread-crumbs .crumb-item.active a:hover, #points-payment-spgatewaycvs .bread-crumbs .crumb-item.active a:hover {
        text-decoration: none; }
    #payment .bread-crumbs .crumb-item a, #extrafee .bread-crumbs .crumb-item a, #points #points-payment .bread-crumbs .crumb-item a, #payment-result .bread-crumbs .crumb-item a, #extrafee-payment-result .bread-crumbs .crumb-item a, #points-payment-result .bread-crumbs .crumb-item a, #payment-credit .bread-crumbs .crumb-item a, #extrafee-payment-credit .bread-crumbs .crumb-item a, #points-payment-credit .bread-crumbs .crumb-item a, #payment-atm .bread-crumbs .crumb-item a, #extrafee-payment-atm .bread-crumbs .crumb-item a, #points-payment-atm .bread-crumbs .crumb-item a, #payment-point .bread-crumbs .crumb-item a, #extrafee-payment-point .bread-crumbs .crumb-item a, #payment-outwardremittance .bread-crumbs .crumb-item a, #extrafee-payment-outwardremittance .bread-crumbs .crumb-item a, #points-payment-outwardremittance .bread-crumbs .crumb-item a, #payment-monthly .bread-crumbs .crumb-item a, #extrafee-payment-monthly .bread-crumbs .crumb-item a, #member .bread-crumbs .crumb-item a, #faq .bread-crumbs .crumb-item a, #search-result .bread-crumbs .crumb-item a, #blog-post .bread-crumbs .crumb-item a, #designer .bread-crumbs .crumb-item a, #project-post .bread-crumbs .crumb-item a, #payment-confirm .bread-crumbs .crumb-item a, #payment-spgatewaycvs .bread-crumbs .crumb-item a, #extrafee-payment-spgatewaycvs .bread-crumbs .crumb-item a, #points-payment-spgatewaycvs .bread-crumbs .crumb-item a {
      color: #ee7c68;
      text-decoration: none; }
      #payment .bread-crumbs .crumb-item a:hover, #extrafee .bread-crumbs .crumb-item a:hover, #points #points-payment .bread-crumbs .crumb-item a:hover, #payment-result .bread-crumbs .crumb-item a:hover, #extrafee-payment-result .bread-crumbs .crumb-item a:hover, #points-payment-result .bread-crumbs .crumb-item a:hover, #payment-credit .bread-crumbs .crumb-item a:hover, #extrafee-payment-credit .bread-crumbs .crumb-item a:hover, #points-payment-credit .bread-crumbs .crumb-item a:hover, #payment-atm .bread-crumbs .crumb-item a:hover, #extrafee-payment-atm .bread-crumbs .crumb-item a:hover, #points-payment-atm .bread-crumbs .crumb-item a:hover, #payment-point .bread-crumbs .crumb-item a:hover, #extrafee-payment-point .bread-crumbs .crumb-item a:hover, #payment-outwardremittance .bread-crumbs .crumb-item a:hover, #extrafee-payment-outwardremittance .bread-crumbs .crumb-item a:hover, #points-payment-outwardremittance .bread-crumbs .crumb-item a:hover, #payment-monthly .bread-crumbs .crumb-item a:hover, #extrafee-payment-monthly .bread-crumbs .crumb-item a:hover, #member .bread-crumbs .crumb-item a:hover, #faq .bread-crumbs .crumb-item a:hover, #search-result .bread-crumbs .crumb-item a:hover, #blog-post .bread-crumbs .crumb-item a:hover, #designer .bread-crumbs .crumb-item a:hover, #project-post .bread-crumbs .crumb-item a:hover, #payment-confirm .bread-crumbs .crumb-item a:hover, #payment-spgatewaycvs .bread-crumbs .crumb-item a:hover, #extrafee-payment-spgatewaycvs .bread-crumbs .crumb-item a:hover, #points-payment-spgatewaycvs .bread-crumbs .crumb-item a:hover {
        text-decoration: underline; }
  #payment .bread-crumbs .crumb-arrow, #extrafee .bread-crumbs .crumb-arrow, #points #points-payment .bread-crumbs .crumb-arrow, #payment-result .bread-crumbs .crumb-arrow, #extrafee-payment-result .bread-crumbs .crumb-arrow, #points-payment-result .bread-crumbs .crumb-arrow, #payment-credit .bread-crumbs .crumb-arrow, #extrafee-payment-credit .bread-crumbs .crumb-arrow, #points-payment-credit .bread-crumbs .crumb-arrow, #payment-atm .bread-crumbs .crumb-arrow, #extrafee-payment-atm .bread-crumbs .crumb-arrow, #points-payment-atm .bread-crumbs .crumb-arrow, #payment-point .bread-crumbs .crumb-arrow, #extrafee-payment-point .bread-crumbs .crumb-arrow, #payment-outwardremittance .bread-crumbs .crumb-arrow, #extrafee-payment-outwardremittance .bread-crumbs .crumb-arrow, #points-payment-outwardremittance .bread-crumbs .crumb-arrow, #payment-monthly .bread-crumbs .crumb-arrow, #extrafee-payment-monthly .bread-crumbs .crumb-arrow, #member .bread-crumbs .crumb-arrow, #faq .bread-crumbs .crumb-arrow, #search-result .bread-crumbs .crumb-arrow, #blog-post .bread-crumbs .crumb-arrow, #designer .bread-crumbs .crumb-arrow, #project-post .bread-crumbs .crumb-arrow, #payment-confirm .bread-crumbs .crumb-arrow, #payment-spgatewaycvs .bread-crumbs .crumb-arrow, #extrafee-payment-spgatewaycvs .bread-crumbs .crumb-arrow, #points-payment-spgatewaycvs .bread-crumbs .crumb-arrow {
    display: inline-block;
    margin: 0 8px;
    color: #737373; }

#quickly-order .content .form-item .process-wrapper .process-list .checkbox-form, #create-order-template .content .form-item .process-wrapper .process-list .checkbox-form, #add-template-to-cart-modal .content .form-item .process-wrapper .process-list .checkbox-form, #change-orderitem-modal .content .form-item .process-wrapper .process-list .checkbox-form, #special-offer .offer-content .form-item .process-wrapper .process-list .checkbox-form, #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-row .checkbox-form, .profile .member-content .invoice-select-form .invoice-select-row .checkbox-form, #points .store-payment .invoice-select-form .invoice-select-row .checkbox-form, #payment-confirm .payment-form .invoice-select-form .invoice-select-row .checkbox-form, #cart .order-form .select-wrapper .checkbox-form, #cart .order-form .invoice-wrapper .agree-wrapper .checkbox-form, #payment .payment-form .form-content .select-wrapper .checkbox-form, #extrafee .payment-form .form-content .select-wrapper .checkbox-form, #points #points-payment .payment-form .form-content .select-wrapper .checkbox-form, #payment-outwardremittance .checkbox-form, #extrafee-payment-outwardremittance .checkbox-form, #points-payment-outwardremittance .checkbox-form, #points .store-payment .invoice-wrapper .select-wrapper .checkbox-form, #member-signup .member-signup-content .checkbox-form, #payment-confirm .payment-form .form-content .select-wrapper .checkbox-form, #payment-confirm .payment-form .result-wrapper .agree-wrapper .checkbox-form, #create-order-template .content .sub-content .orderitem-select .orderitem-tr .checkbox-form, #confirm-paid-refund-modal .md-content .form-item .select-wrapper .checkbox-form, #delay-announcement-modal .md-content .action-group .checkbox-form, #announcement-modal .md-content .action-group .checkbox-form {
  color: #484848;
  cursor: default;
  font-size: 14px;
  font-size: 0.875rem;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center; }
  #quickly-order .content .form-item .process-wrapper .process-list .checked.checkbox-form .checkbox i, #create-order-template .content .form-item .process-wrapper .process-list .checked.checkbox-form .checkbox i, #add-template-to-cart-modal .content .form-item .process-wrapper .process-list .checked.checkbox-form .checkbox i, #change-orderitem-modal .content .form-item .process-wrapper .process-list .checked.checkbox-form .checkbox i, #special-offer .offer-content .form-item .process-wrapper .process-list .checked.checkbox-form .checkbox i, #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-row .checked.checkbox-form .checkbox i, .profile .member-content .invoice-select-form .invoice-select-row .checked.checkbox-form .checkbox i, #points .store-payment .invoice-select-form .invoice-select-row .checked.checkbox-form .checkbox i, #payment-confirm .payment-form .invoice-select-form .invoice-select-row .checked.checkbox-form .checkbox i, #cart .order-form .select-wrapper .checked.checkbox-form .checkbox i, #cart .order-form .invoice-wrapper .agree-wrapper .checked.checkbox-form .checkbox i, #payment .payment-form .form-content .select-wrapper .checked.checkbox-form .checkbox i, #extrafee .payment-form .form-content .select-wrapper .checked.checkbox-form .checkbox i, #points #points-payment .payment-form .form-content .select-wrapper .checked.checkbox-form .checkbox i, #payment-outwardremittance .checked.checkbox-form .checkbox i, #extrafee-payment-outwardremittance .checked.checkbox-form .checkbox i, #points-payment-outwardremittance .checked.checkbox-form .checkbox i, #points .store-payment .invoice-wrapper .select-wrapper .checked.checkbox-form .checkbox i, #member-signup .member-signup-content .checked.checkbox-form .checkbox i, #payment-confirm .payment-form .form-content .select-wrapper .checked.checkbox-form .checkbox i, #payment-confirm .payment-form .result-wrapper .agree-wrapper .checked.checkbox-form .checkbox i, #create-order-template .content .sub-content .orderitem-select .orderitem-tr .checked.checkbox-form .checkbox i, #confirm-paid-refund-modal .md-content .form-item .select-wrapper .checked.checkbox-form .checkbox i, #delay-announcement-modal .md-content .action-group .checked.checkbox-form .checkbox i, #announcement-modal .md-content .action-group .checked.checkbox-form .checkbox i, #quickly-order .content .form-item .process-wrapper .process-list .checked.checkbox-form .checkbox .select-circle, #create-order-template .content .form-item .process-wrapper .process-list .checked.checkbox-form .checkbox .select-circle, #add-template-to-cart-modal .content .form-item .process-wrapper .process-list .checked.checkbox-form .checkbox .select-circle, #change-orderitem-modal .content .form-item .process-wrapper .process-list .checked.checkbox-form .checkbox .select-circle, #special-offer .offer-content .form-item .process-wrapper .process-list .checked.checkbox-form .checkbox .select-circle, #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-row .checked.checkbox-form .checkbox .select-circle, .profile .member-content .invoice-select-form .invoice-select-row .checked.checkbox-form .checkbox .select-circle, #points .store-payment .invoice-select-form .invoice-select-row .checked.checkbox-form .checkbox .select-circle, #payment-confirm .payment-form .invoice-select-form .invoice-select-row .checked.checkbox-form .checkbox .select-circle, #cart .order-form .select-wrapper .checked.checkbox-form .checkbox .select-circle, #cart .order-form .invoice-wrapper .agree-wrapper .checked.checkbox-form .checkbox .select-circle, #payment .payment-form .form-content .select-wrapper .checked.checkbox-form .checkbox .select-circle, #extrafee .payment-form .form-content .select-wrapper .checked.checkbox-form .checkbox .select-circle, #points #points-payment .payment-form .form-content .select-wrapper .checked.checkbox-form .checkbox .select-circle, #payment-outwardremittance .checked.checkbox-form .checkbox .select-circle, #extrafee-payment-outwardremittance .checked.checkbox-form .checkbox .select-circle, #points-payment-outwardremittance .checked.checkbox-form .checkbox .select-circle, #points .store-payment .invoice-wrapper .select-wrapper .checked.checkbox-form .checkbox .select-circle, #member-signup .member-signup-content .checked.checkbox-form .checkbox .select-circle, #payment-confirm .payment-form .form-content .select-wrapper .checked.checkbox-form .checkbox .select-circle, #payment-confirm .payment-form .result-wrapper .agree-wrapper .checked.checkbox-form .checkbox .select-circle, #create-order-template .content .sub-content .orderitem-select .orderitem-tr .checked.checkbox-form .checkbox .select-circle, #confirm-paid-refund-modal .md-content .form-item .select-wrapper .checked.checkbox-form .checkbox .select-circle, #delay-announcement-modal .md-content .action-group .checked.checkbox-form .checkbox .select-circle, #announcement-modal .md-content .action-group .checked.checkbox-form .checkbox .select-circle {
    visibility: visible; }
  #quickly-order .content .form-item .process-wrapper .process-list .rounded.checkbox-form .checkbox, #create-order-template .content .form-item .process-wrapper .process-list .rounded.checkbox-form .checkbox, #add-template-to-cart-modal .content .form-item .process-wrapper .process-list .rounded.checkbox-form .checkbox, #change-orderitem-modal .content .form-item .process-wrapper .process-list .rounded.checkbox-form .checkbox, #special-offer .offer-content .form-item .process-wrapper .process-list .rounded.checkbox-form .checkbox, #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-row .rounded.checkbox-form .checkbox, .profile .member-content .invoice-select-form .invoice-select-row .rounded.checkbox-form .checkbox, #points .store-payment .invoice-select-form .invoice-select-row .rounded.checkbox-form .checkbox, #payment-confirm .payment-form .invoice-select-form .invoice-select-row .rounded.checkbox-form .checkbox, #cart .order-form .select-wrapper .rounded.checkbox-form .checkbox, #cart .order-form .invoice-wrapper .agree-wrapper .rounded.checkbox-form .checkbox, #payment .payment-form .form-content .select-wrapper .rounded.checkbox-form .checkbox, #extrafee .payment-form .form-content .select-wrapper .rounded.checkbox-form .checkbox, #points #points-payment .payment-form .form-content .select-wrapper .rounded.checkbox-form .checkbox, #payment-outwardremittance .rounded.checkbox-form .checkbox, #extrafee-payment-outwardremittance .rounded.checkbox-form .checkbox, #points-payment-outwardremittance .rounded.checkbox-form .checkbox, #points .store-payment .invoice-wrapper .select-wrapper .rounded.checkbox-form .checkbox, #member-signup .member-signup-content .rounded.checkbox-form .checkbox, #payment-confirm .payment-form .form-content .select-wrapper .rounded.checkbox-form .checkbox, #payment-confirm .payment-form .result-wrapper .agree-wrapper .rounded.checkbox-form .checkbox, #create-order-template .content .sub-content .orderitem-select .orderitem-tr .rounded.checkbox-form .checkbox, #confirm-paid-refund-modal .md-content .form-item .select-wrapper .rounded.checkbox-form .checkbox, #delay-announcement-modal .md-content .action-group .rounded.checkbox-form .checkbox, #announcement-modal .md-content .action-group .rounded.checkbox-form .checkbox {
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%; }
    #quickly-order .content .form-item .process-wrapper .process-list .rounded.checkbox-form .checkbox i, #create-order-template .content .form-item .process-wrapper .process-list .rounded.checkbox-form .checkbox i, #add-template-to-cart-modal .content .form-item .process-wrapper .process-list .rounded.checkbox-form .checkbox i, #change-orderitem-modal .content .form-item .process-wrapper .process-list .rounded.checkbox-form .checkbox i, #special-offer .offer-content .form-item .process-wrapper .process-list .rounded.checkbox-form .checkbox i, #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-row .rounded.checkbox-form .checkbox i, .profile .member-content .invoice-select-form .invoice-select-row .rounded.checkbox-form .checkbox i, #points .store-payment .invoice-select-form .invoice-select-row .rounded.checkbox-form .checkbox i, #payment-confirm .payment-form .invoice-select-form .invoice-select-row .rounded.checkbox-form .checkbox i, #cart .order-form .select-wrapper .rounded.checkbox-form .checkbox i, #cart .order-form .invoice-wrapper .agree-wrapper .rounded.checkbox-form .checkbox i, #payment .payment-form .form-content .select-wrapper .rounded.checkbox-form .checkbox i, #extrafee .payment-form .form-content .select-wrapper .rounded.checkbox-form .checkbox i, #points #points-payment .payment-form .form-content .select-wrapper .rounded.checkbox-form .checkbox i, #payment-outwardremittance .rounded.checkbox-form .checkbox i, #extrafee-payment-outwardremittance .rounded.checkbox-form .checkbox i, #points-payment-outwardremittance .rounded.checkbox-form .checkbox i, #points .store-payment .invoice-wrapper .select-wrapper .rounded.checkbox-form .checkbox i, #member-signup .member-signup-content .rounded.checkbox-form .checkbox i, #payment-confirm .payment-form .form-content .select-wrapper .rounded.checkbox-form .checkbox i, #payment-confirm .payment-form .result-wrapper .agree-wrapper .rounded.checkbox-form .checkbox i, #create-order-template .content .sub-content .orderitem-select .orderitem-tr .rounded.checkbox-form .checkbox i, #confirm-paid-refund-modal .md-content .form-item .select-wrapper .rounded.checkbox-form .checkbox i, #delay-announcement-modal .md-content .action-group .rounded.checkbox-form .checkbox i, #announcement-modal .md-content .action-group .rounded.checkbox-form .checkbox i {
      display: none; }
    #quickly-order .content .form-item .process-wrapper .process-list .rounded.checkbox-form .checkbox .select-circle, #create-order-template .content .form-item .process-wrapper .process-list .rounded.checkbox-form .checkbox .select-circle, #add-template-to-cart-modal .content .form-item .process-wrapper .process-list .rounded.checkbox-form .checkbox .select-circle, #change-orderitem-modal .content .form-item .process-wrapper .process-list .rounded.checkbox-form .checkbox .select-circle, #special-offer .offer-content .form-item .process-wrapper .process-list .rounded.checkbox-form .checkbox .select-circle, #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-row .rounded.checkbox-form .checkbox .select-circle, .profile .member-content .invoice-select-form .invoice-select-row .rounded.checkbox-form .checkbox .select-circle, #points .store-payment .invoice-select-form .invoice-select-row .rounded.checkbox-form .checkbox .select-circle, #payment-confirm .payment-form .invoice-select-form .invoice-select-row .rounded.checkbox-form .checkbox .select-circle, #cart .order-form .select-wrapper .rounded.checkbox-form .checkbox .select-circle, #cart .order-form .invoice-wrapper .agree-wrapper .rounded.checkbox-form .checkbox .select-circle, #payment .payment-form .form-content .select-wrapper .rounded.checkbox-form .checkbox .select-circle, #extrafee .payment-form .form-content .select-wrapper .rounded.checkbox-form .checkbox .select-circle, #points #points-payment .payment-form .form-content .select-wrapper .rounded.checkbox-form .checkbox .select-circle, #payment-outwardremittance .rounded.checkbox-form .checkbox .select-circle, #extrafee-payment-outwardremittance .rounded.checkbox-form .checkbox .select-circle, #points-payment-outwardremittance .rounded.checkbox-form .checkbox .select-circle, #points .store-payment .invoice-wrapper .select-wrapper .rounded.checkbox-form .checkbox .select-circle, #member-signup .member-signup-content .rounded.checkbox-form .checkbox .select-circle, #payment-confirm .payment-form .form-content .select-wrapper .rounded.checkbox-form .checkbox .select-circle, #payment-confirm .payment-form .result-wrapper .agree-wrapper .rounded.checkbox-form .checkbox .select-circle, #create-order-template .content .sub-content .orderitem-select .orderitem-tr .rounded.checkbox-form .checkbox .select-circle, #confirm-paid-refund-modal .md-content .form-item .select-wrapper .rounded.checkbox-form .checkbox .select-circle, #delay-announcement-modal .md-content .action-group .rounded.checkbox-form .checkbox .select-circle, #announcement-modal .md-content .action-group .rounded.checkbox-form .checkbox .select-circle {
      display: block; }
  #quickly-order .content .form-item .process-wrapper .process-list .checkbox-form .checkbox, #create-order-template .content .form-item .process-wrapper .process-list .checkbox-form .checkbox, #add-template-to-cart-modal .content .form-item .process-wrapper .process-list .checkbox-form .checkbox, #change-orderitem-modal .content .form-item .process-wrapper .process-list .checkbox-form .checkbox, #special-offer .offer-content .form-item .process-wrapper .process-list .checkbox-form .checkbox, #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-row .checkbox-form .checkbox, .profile .member-content .invoice-select-form .invoice-select-row .checkbox-form .checkbox, #points .store-payment .invoice-select-form .invoice-select-row .checkbox-form .checkbox, #payment-confirm .payment-form .invoice-select-form .invoice-select-row .checkbox-form .checkbox, #cart .order-form .select-wrapper .checkbox-form .checkbox, #cart .order-form .invoice-wrapper .agree-wrapper .checkbox-form .checkbox, #payment .payment-form .form-content .select-wrapper .checkbox-form .checkbox, #extrafee .payment-form .form-content .select-wrapper .checkbox-form .checkbox, #points #points-payment .payment-form .form-content .select-wrapper .checkbox-form .checkbox, #payment-outwardremittance .checkbox-form .checkbox, #extrafee-payment-outwardremittance .checkbox-form .checkbox, #points-payment-outwardremittance .checkbox-form .checkbox, #points .store-payment .invoice-wrapper .select-wrapper .checkbox-form .checkbox, #member-signup .member-signup-content .checkbox-form .checkbox, #payment-confirm .payment-form .form-content .select-wrapper .checkbox-form .checkbox, #payment-confirm .payment-form .result-wrapper .agree-wrapper .checkbox-form .checkbox, #create-order-template .content .sub-content .orderitem-select .orderitem-tr .checkbox-form .checkbox, #confirm-paid-refund-modal .md-content .form-item .select-wrapper .checkbox-form .checkbox, #delay-announcement-modal .md-content .action-group .checkbox-form .checkbox, #announcement-modal .md-content .action-group .checkbox-form .checkbox {
    position: relative;
    width: 20px;
    height: 20px;
    margin: 0 7px 0 0;
    border: 1px solid #bbb;
    color: #ee7c68;
    vertical-align: text-bottom;
    font-size: 18px;
    font-size: 1.125rem;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center; }
    #quickly-order .content .form-item .process-wrapper .process-list .checkbox-form .checkbox i, #create-order-template .content .form-item .process-wrapper .process-list .checkbox-form .checkbox i, #add-template-to-cart-modal .content .form-item .process-wrapper .process-list .checkbox-form .checkbox i, #change-orderitem-modal .content .form-item .process-wrapper .process-list .checkbox-form .checkbox i, #special-offer .offer-content .form-item .process-wrapper .process-list .checkbox-form .checkbox i, #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-row .checkbox-form .checkbox i, .profile .member-content .invoice-select-form .invoice-select-row .checkbox-form .checkbox i, #points .store-payment .invoice-select-form .invoice-select-row .checkbox-form .checkbox i, #payment-confirm .payment-form .invoice-select-form .invoice-select-row .checkbox-form .checkbox i, #cart .order-form .select-wrapper .checkbox-form .checkbox i, #cart .order-form .invoice-wrapper .agree-wrapper .checkbox-form .checkbox i, #payment .payment-form .form-content .select-wrapper .checkbox-form .checkbox i, #extrafee .payment-form .form-content .select-wrapper .checkbox-form .checkbox i, #points #points-payment .payment-form .form-content .select-wrapper .checkbox-form .checkbox i, #payment-outwardremittance .checkbox-form .checkbox i, #extrafee-payment-outwardremittance .checkbox-form .checkbox i, #points-payment-outwardremittance .checkbox-form .checkbox i, #points .store-payment .invoice-wrapper .select-wrapper .checkbox-form .checkbox i, #member-signup .member-signup-content .checkbox-form .checkbox i, #payment-confirm .payment-form .form-content .select-wrapper .checkbox-form .checkbox i, #payment-confirm .payment-form .result-wrapper .agree-wrapper .checkbox-form .checkbox i, #create-order-template .content .sub-content .orderitem-select .orderitem-tr .checkbox-form .checkbox i, #confirm-paid-refund-modal .md-content .form-item .select-wrapper .checkbox-form .checkbox i, #delay-announcement-modal .md-content .action-group .checkbox-form .checkbox i, #announcement-modal .md-content .action-group .checkbox-form .checkbox i {
      margin: auto;
      visibility: hidden; }
    #quickly-order .content .form-item .process-wrapper .process-list .checkbox-form .checkbox .select-circle, #create-order-template .content .form-item .process-wrapper .process-list .checkbox-form .checkbox .select-circle, #add-template-to-cart-modal .content .form-item .process-wrapper .process-list .checkbox-form .checkbox .select-circle, #change-orderitem-modal .content .form-item .process-wrapper .process-list .checkbox-form .checkbox .select-circle, #special-offer .offer-content .form-item .process-wrapper .process-list .checkbox-form .checkbox .select-circle, #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-row .checkbox-form .checkbox .select-circle, .profile .member-content .invoice-select-form .invoice-select-row .checkbox-form .checkbox .select-circle, #points .store-payment .invoice-select-form .invoice-select-row .checkbox-form .checkbox .select-circle, #payment-confirm .payment-form .invoice-select-form .invoice-select-row .checkbox-form .checkbox .select-circle, #cart .order-form .select-wrapper .checkbox-form .checkbox .select-circle, #cart .order-form .invoice-wrapper .agree-wrapper .checkbox-form .checkbox .select-circle, #payment .payment-form .form-content .select-wrapper .checkbox-form .checkbox .select-circle, #extrafee .payment-form .form-content .select-wrapper .checkbox-form .checkbox .select-circle, #points #points-payment .payment-form .form-content .select-wrapper .checkbox-form .checkbox .select-circle, #payment-outwardremittance .checkbox-form .checkbox .select-circle, #extrafee-payment-outwardremittance .checkbox-form .checkbox .select-circle, #points-payment-outwardremittance .checkbox-form .checkbox .select-circle, #points .store-payment .invoice-wrapper .select-wrapper .checkbox-form .checkbox .select-circle, #member-signup .member-signup-content .checkbox-form .checkbox .select-circle, #payment-confirm .payment-form .form-content .select-wrapper .checkbox-form .checkbox .select-circle, #payment-confirm .payment-form .result-wrapper .agree-wrapper .checkbox-form .checkbox .select-circle, #create-order-template .content .sub-content .orderitem-select .orderitem-tr .checkbox-form .checkbox .select-circle, #confirm-paid-refund-modal .md-content .form-item .select-wrapper .checkbox-form .checkbox .select-circle, #delay-announcement-modal .md-content .action-group .checkbox-form .checkbox .select-circle, #announcement-modal .md-content .action-group .checkbox-form .checkbox .select-circle {
      display: none;
      position: absolute;
      top: 50%;
      left: 50%;
      width: 11px;
      height: 11px;
      background-color: #ee7c68;
      visibility: hidden;
      -moz-border-radius: 50%;
      -webkit-border-radius: 50%;
      border-radius: 50%;
      -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
      -webkit-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%); }

#cart .order-form .input-wrapper .input-form, #cart .order-form .invoice-wrapper .input-form, #payment .payment-form .form-content .input-wrapper .input-form, #extrafee .payment-form .form-content .input-wrapper .input-form, #points #points-payment .payment-form .form-content .input-wrapper .input-form, #payment-outwardremittance .input-form, #extrafee-payment-outwardremittance .input-form, #points-payment-outwardremittance .input-form, #points .store-payment .invoice-wrapper .input-form, #payment-confirm .payment-form .form-content .input-wrapper .input-form, #confirm-refund-modal .content .input-form, #confirm-extrafee-refund-modal .content .input-form {
  position: relative;
  width: 100%; }
  #cart .order-form .input-wrapper .input-form label, #cart .order-form .invoice-wrapper .input-form label, #payment .payment-form .form-content .input-wrapper .input-form label, #extrafee .payment-form .form-content .input-wrapper .input-form label, #points #points-payment .payment-form .form-content .input-wrapper .input-form label, #payment-outwardremittance .input-form label, #extrafee-payment-outwardremittance .input-form label, #points-payment-outwardremittance .input-form label, #points .store-payment .invoice-wrapper .input-form label, #payment-confirm .payment-form .form-content .input-wrapper .input-form label, #confirm-refund-modal .content .input-form label, #confirm-extrafee-refund-modal .content .input-form label {
    display: inline-block;
    margin-bottom: 10px;
    color: #2A2A2A;
    cursor: auto;
    font-size: 14px;
    font-size: 0.875rem; }
  #cart .order-form .input-wrapper .input-form input, #cart .order-form .invoice-wrapper .input-form input, #payment .payment-form .form-content .input-wrapper .input-form input, #extrafee .payment-form .form-content .input-wrapper .input-form input, #points #points-payment .payment-form .form-content .input-wrapper .input-form input, #payment-outwardremittance .input-form input, #extrafee-payment-outwardremittance .input-form input, #points-payment-outwardremittance .input-form input, #points .store-payment .invoice-wrapper .input-form input, #payment-confirm .payment-form .form-content .input-wrapper .input-form input, #confirm-refund-modal .content .input-form input, #confirm-extrafee-refund-modal .content .input-form input {
    display: block;
    width: 100%;
    height: 44px;
    margin: 0;
    padding: 0 12px;
    border: 1px solid #ccc;
    color: #2A2A2A;
    font-size: 14px;
    font-size: 0.875rem;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
    #cart .order-form .input-wrapper .input-form input:focus, #cart .order-form .invoice-wrapper .input-form input:focus, #payment .payment-form .form-content .input-wrapper .input-form input:focus, #extrafee .payment-form .form-content .input-wrapper .input-form input:focus, #points #points-payment .payment-form .form-content .input-wrapper .input-form input:focus, #payment-outwardremittance .input-form input:focus, #extrafee-payment-outwardremittance .input-form input:focus, #points-payment-outwardremittance .input-form input:focus, #points .store-payment .invoice-wrapper .input-form input:focus, #payment-confirm .payment-form .form-content .input-wrapper .input-form input:focus, #confirm-refund-modal .content .input-form input:focus, #confirm-extrafee-refund-modal .content .input-form input:focus {
      border-color: #2A2A2A; }
    #cart .order-form .input-wrapper .input-form input.error, #cart .order-form .invoice-wrapper .input-form input.error, #payment .payment-form .form-content .input-wrapper .input-form input.error, #extrafee .payment-form .form-content .input-wrapper .input-form input.error, #points #points-payment .payment-form .form-content .input-wrapper .input-form input.error, #payment-outwardremittance .input-form input.error, #extrafee-payment-outwardremittance .input-form input.error, #points-payment-outwardremittance .input-form input.error, #points .store-payment .invoice-wrapper .input-form input.error, #payment-confirm .payment-form .form-content .input-wrapper .input-form input.error, #confirm-refund-modal .content .input-form input.error, #confirm-extrafee-refund-modal .content .input-form input.error {
      border: 1px solid #FF2C22; }
  #cart .order-form .input-wrapper .input-form textarea, #cart .order-form .invoice-wrapper .input-form textarea, #payment .payment-form .form-content .input-wrapper .input-form textarea, #extrafee .payment-form .form-content .input-wrapper .input-form textarea, #points #points-payment .payment-form .form-content .input-wrapper .input-form textarea, #payment-outwardremittance .input-form textarea, #extrafee-payment-outwardremittance .input-form textarea, #points-payment-outwardremittance .input-form textarea, #points .store-payment .invoice-wrapper .input-form textarea, #payment-confirm .payment-form .form-content .input-wrapper .input-form textarea, #confirm-refund-modal .content .input-form textarea, #confirm-extrafee-refund-modal .content .input-form textarea {
    display: block;
    width: 100%;
    height: 100px;
    line-height: 18px;
    margin: 0;
    padding: 12px;
    border: 1px solid #ccc;
    color: #2A2A2A;
    font-size: 14px;
    font-size: 0.875rem;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
    #cart .order-form .input-wrapper .input-form textarea:focus, #cart .order-form .invoice-wrapper .input-form textarea:focus, #payment .payment-form .form-content .input-wrapper .input-form textarea:focus, #extrafee .payment-form .form-content .input-wrapper .input-form textarea:focus, #points #points-payment .payment-form .form-content .input-wrapper .input-form textarea:focus, #payment-outwardremittance .input-form textarea:focus, #extrafee-payment-outwardremittance .input-form textarea:focus, #points-payment-outwardremittance .input-form textarea:focus, #points .store-payment .invoice-wrapper .input-form textarea:focus, #payment-confirm .payment-form .form-content .input-wrapper .input-form textarea:focus, #confirm-refund-modal .content .input-form textarea:focus, #confirm-extrafee-refund-modal .content .input-form textarea:focus {
      border-color: #2A2A2A; }
    #cart .order-form .input-wrapper .input-form textarea.error, #cart .order-form .invoice-wrapper .input-form textarea.error, #payment .payment-form .form-content .input-wrapper .input-form textarea.error, #extrafee .payment-form .form-content .input-wrapper .input-form textarea.error, #points #points-payment .payment-form .form-content .input-wrapper .input-form textarea.error, #payment-outwardremittance .input-form textarea.error, #extrafee-payment-outwardremittance .input-form textarea.error, #points-payment-outwardremittance .input-form textarea.error, #points .store-payment .invoice-wrapper .input-form textarea.error, #payment-confirm .payment-form .form-content .input-wrapper .input-form textarea.error, #confirm-refund-modal .content .input-form textarea.error, #confirm-extrafee-refund-modal .content .input-form textarea.error {
      border: 1px solid #FF2C22; }
  #cart .order-form .input-wrapper .input-form span.error, #cart .order-form .invoice-wrapper .input-form span.error, #payment .payment-form .form-content .input-wrapper .input-form span.error, #extrafee .payment-form .form-content .input-wrapper .input-form span.error, #points #points-payment .payment-form .form-content .input-wrapper .input-form span.error, #payment-outwardremittance .input-form span.error, #extrafee-payment-outwardremittance .input-form span.error, #points-payment-outwardremittance .input-form span.error, #points .store-payment .invoice-wrapper .input-form span.error, #payment-confirm .payment-form .form-content .input-wrapper .input-form span.error, #confirm-refund-modal .content .input-form span.error, #confirm-extrafee-refund-modal .content .input-form span.error, #cart .order-form .input-wrapper .input-form span.red-text, #cart .order-form .invoice-wrapper .input-form span.red-text, #payment .payment-form .form-content .input-wrapper .input-form span.red-text, #extrafee .payment-form .form-content .input-wrapper .input-form span.red-text, #points #points-payment .payment-form .form-content .input-wrapper .input-form span.red-text, #payment-outwardremittance .input-form span.red-text, #extrafee-payment-outwardremittance .input-form span.red-text, #points-payment-outwardremittance .input-form span.red-text, #points .store-payment .invoice-wrapper .input-form span.red-text, #payment-confirm .payment-form .form-content .input-wrapper .input-form span.red-text, #confirm-refund-modal .content .input-form span.red-text, #confirm-extrafee-refund-modal .content .input-form span.red-text {
    font-size: 12px;
    color: #FF2C22; }
  #cart .order-form .input-wrapper .input-form .description, #cart .order-form .invoice-wrapper .input-form .description, #payment .payment-form .form-content .input-wrapper .input-form .description, #extrafee .payment-form .form-content .input-wrapper .input-form .description, #points #points-payment .payment-form .form-content .input-wrapper .input-form .description, #payment-outwardremittance .input-form .description, #extrafee-payment-outwardremittance .input-form .description, #points-payment-outwardremittance .input-form .description, #points .store-payment .invoice-wrapper .input-form .description, #payment-confirm .payment-form .form-content .input-wrapper .input-form .description, #confirm-refund-modal .content .input-form .description, #confirm-extrafee-refund-modal .content .input-form .description {
    display: block;
    width: 100%;
    height: 44px;
    line-height: 42px;
    margin: 0;
    padding: 0 12px;
    border: 1px solid #ccc;
    color: #2A2A2A;
    font-size: 14px;
    font-size: 0.875rem;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
    #cart .order-form .input-wrapper .input-form .description.error, #cart .order-form .invoice-wrapper .input-form .description.error, #payment .payment-form .form-content .input-wrapper .input-form .description.error, #extrafee .payment-form .form-content .input-wrapper .input-form .description.error, #points #points-payment .payment-form .form-content .input-wrapper .input-form .description.error, #payment-outwardremittance .input-form .description.error, #extrafee-payment-outwardremittance .input-form .description.error, #points-payment-outwardremittance .input-form .description.error, #points .store-payment .invoice-wrapper .input-form .description.error, #payment-confirm .payment-form .form-content .input-wrapper .input-form .description.error, #confirm-refund-modal .content .input-form .description.error, #confirm-extrafee-refund-modal .content .input-form .description.error {
      border: 1px solid #FF2C22; }
    #cart .order-form .input-wrapper .input-form .description.disable, #cart .order-form .invoice-wrapper .input-form .description.disable, #payment .payment-form .form-content .input-wrapper .input-form .description.disable, #extrafee .payment-form .form-content .input-wrapper .input-form .description.disable, #points #points-payment .payment-form .form-content .input-wrapper .input-form .description.disable, #payment-outwardremittance .input-form .description.disable, #extrafee-payment-outwardremittance .input-form .description.disable, #points-payment-outwardremittance .input-form .description.disable, #points .store-payment .invoice-wrapper .input-form .description.disable, #payment-confirm .payment-form .form-content .input-wrapper .input-form .description.disable, #confirm-refund-modal .content .input-form .description.disable, #confirm-extrafee-refund-modal .content .input-form .description.disable {
      opacity: .6; }
    #cart .order-form .input-wrapper .input-form .description.no-border, #cart .order-form .invoice-wrapper .input-form .description.no-border, #payment .payment-form .form-content .input-wrapper .input-form .description.no-border, #extrafee .payment-form .form-content .input-wrapper .input-form .description.no-border, #points #points-payment .payment-form .form-content .input-wrapper .input-form .description.no-border, #payment-outwardremittance .input-form .description.no-border, #extrafee-payment-outwardremittance .input-form .description.no-border, #points-payment-outwardremittance .input-form .description.no-border, #points .store-payment .invoice-wrapper .input-form .description.no-border, #payment-confirm .payment-form .form-content .input-wrapper .input-form .description.no-border, #confirm-refund-modal .content .input-form .description.no-border, #confirm-extrafee-refund-modal .content .input-form .description.no-border {
      border: 1px solid transparent; }

#cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-wrapper .invoice-select-input-form, .profile .member-content .invoice-select-form .invoice-select-wrapper .invoice-select-input-form, #points .store-payment .invoice-select-form .invoice-select-wrapper .invoice-select-input-form, #payment-confirm .payment-form .invoice-select-form .invoice-select-wrapper .invoice-select-input-form, #payment-credit .status-message .form-item, #extrafee-payment-credit .status-message .form-item, #points-payment-credit .status-message .form-item, .profile .member-content .input-form, #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form, #member-signup .member-signup-content .form-wrapper .input-form, #login-modal .input-form, #forgot-password-modal .md-content .input-form, #reset-pw-modal .content .input-form, #edit-address-modal .content .input-form, #activity-apply-modal .content .input-form, #resend-invitation-modal .md-content .input-form, #forgot-business-password-modal .md-content .input-form, #reset-business-pw-modal .content .input-form {
  position: relative;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center; }
  #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-wrapper .invoice-select-input-form label, .profile .member-content .invoice-select-form .invoice-select-wrapper .invoice-select-input-form label, #points .store-payment .invoice-select-form .invoice-select-wrapper .invoice-select-input-form label, #payment-confirm .payment-form .invoice-select-form .invoice-select-wrapper .invoice-select-input-form label, #payment-credit .status-message .form-item label, #extrafee-payment-credit .status-message .form-item label, #points-payment-credit .status-message .form-item label, .profile .member-content .input-form label, #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form label, #member-signup .member-signup-content .form-wrapper .input-form label, #login-modal .input-form label, #forgot-password-modal .md-content .input-form label, #reset-pw-modal .content .input-form label, #edit-address-modal .content .input-form label, #activity-apply-modal .content .input-form label, #resend-invitation-modal .md-content .input-form label, #forgot-business-password-modal .md-content .input-form label, #reset-business-pw-modal .content .input-form label {
    display: inline-block;
    margin-right: 20px;
    color: #2A2A2A;
    white-space: nowrap;
    cursor: auto;
    font-size: 14px;
    font-size: 0.875rem; }
  #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-wrapper .invoice-select-input-form input, .profile .member-content .invoice-select-form .invoice-select-wrapper .invoice-select-input-form input, #points .store-payment .invoice-select-form .invoice-select-wrapper .invoice-select-input-form input, #payment-confirm .payment-form .invoice-select-form .invoice-select-wrapper .invoice-select-input-form input, #payment-credit .status-message .form-item input, #extrafee-payment-credit .status-message .form-item input, #points-payment-credit .status-message .form-item input, .profile .member-content .input-form input, #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form input, #member-signup .member-signup-content .form-wrapper .input-form input, #login-modal .input-form input, #forgot-password-modal .md-content .input-form input, #reset-pw-modal .content .input-form input, #edit-address-modal .content .input-form input, #activity-apply-modal .content .input-form input, #resend-invitation-modal .md-content .input-form input, #forgot-business-password-modal .md-content .input-form input, #reset-business-pw-modal .content .input-form input {
    display: inline-block;
    width: 100%;
    height: 44px;
    margin: 0;
    padding: 0 12px;
    border: 1px solid #ccc;
    color: #2A2A2A;
    font-size: 14px;
    font-size: 0.875rem;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
    #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-wrapper .invoice-select-input-form input:focus, .profile .member-content .invoice-select-form .invoice-select-wrapper .invoice-select-input-form input:focus, #points .store-payment .invoice-select-form .invoice-select-wrapper .invoice-select-input-form input:focus, #payment-confirm .payment-form .invoice-select-form .invoice-select-wrapper .invoice-select-input-form input:focus, #payment-credit .status-message .form-item input:focus, #extrafee-payment-credit .status-message .form-item input:focus, #points-payment-credit .status-message .form-item input:focus, .profile .member-content .input-form input:focus, #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form input:focus, #member-signup .member-signup-content .form-wrapper .input-form input:focus, #login-modal .input-form input:focus, #forgot-password-modal .md-content .input-form input:focus, #reset-pw-modal .content .input-form input:focus, #edit-address-modal .content .input-form input:focus, #activity-apply-modal .content .input-form input:focus, #resend-invitation-modal .md-content .input-form input:focus, #forgot-business-password-modal .md-content .input-form input:focus, #reset-business-pw-modal .content .input-form input:focus {
      border-color: #2A2A2A; }
    #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-wrapper .invoice-select-input-form input.error, .profile .member-content .invoice-select-form .invoice-select-wrapper .invoice-select-input-form input.error, #points .store-payment .invoice-select-form .invoice-select-wrapper .invoice-select-input-form input.error, #payment-confirm .payment-form .invoice-select-form .invoice-select-wrapper .invoice-select-input-form input.error, #payment-credit .status-message .form-item input.error, #extrafee-payment-credit .status-message .form-item input.error, #points-payment-credit .status-message .form-item input.error, .profile .member-content .input-form input.error, #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form input.error, #member-signup .member-signup-content .form-wrapper .input-form input.error, #login-modal .input-form input.error, #forgot-password-modal .md-content .input-form input.error, #reset-pw-modal .content .input-form input.error, #edit-address-modal .content .input-form input.error, #activity-apply-modal .content .input-form input.error, #resend-invitation-modal .md-content .input-form input.error, #forgot-business-password-modal .md-content .input-form input.error, #reset-business-pw-modal .content .input-form input.error {
      border: 1px solid #FF2C22; }
  #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-wrapper .invoice-select-input-form textarea, .profile .member-content .invoice-select-form .invoice-select-wrapper .invoice-select-input-form textarea, #points .store-payment .invoice-select-form .invoice-select-wrapper .invoice-select-input-form textarea, #payment-confirm .payment-form .invoice-select-form .invoice-select-wrapper .invoice-select-input-form textarea, #payment-credit .status-message .form-item textarea, #extrafee-payment-credit .status-message .form-item textarea, #points-payment-credit .status-message .form-item textarea, .profile .member-content .input-form textarea, #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form textarea, #member-signup .member-signup-content .form-wrapper .input-form textarea, #login-modal .input-form textarea, #forgot-password-modal .md-content .input-form textarea, #reset-pw-modal .content .input-form textarea, #edit-address-modal .content .input-form textarea, #activity-apply-modal .content .input-form textarea, #resend-invitation-modal .md-content .input-form textarea, #forgot-business-password-modal .md-content .input-form textarea, #reset-business-pw-modal .content .input-form textarea {
    display: inline-block;
    width: 100%;
    height: 100px;
    line-height: 18px;
    margin: 0;
    padding: 12px;
    border: 1px solid #ccc;
    color: #2A2A2A;
    font-size: 14px;
    font-size: 0.875rem;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
    #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-wrapper .invoice-select-input-form textarea:focus, .profile .member-content .invoice-select-form .invoice-select-wrapper .invoice-select-input-form textarea:focus, #points .store-payment .invoice-select-form .invoice-select-wrapper .invoice-select-input-form textarea:focus, #payment-confirm .payment-form .invoice-select-form .invoice-select-wrapper .invoice-select-input-form textarea:focus, #payment-credit .status-message .form-item textarea:focus, #extrafee-payment-credit .status-message .form-item textarea:focus, #points-payment-credit .status-message .form-item textarea:focus, .profile .member-content .input-form textarea:focus, #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form textarea:focus, #member-signup .member-signup-content .form-wrapper .input-form textarea:focus, #login-modal .input-form textarea:focus, #forgot-password-modal .md-content .input-form textarea:focus, #reset-pw-modal .content .input-form textarea:focus, #edit-address-modal .content .input-form textarea:focus, #activity-apply-modal .content .input-form textarea:focus, #resend-invitation-modal .md-content .input-form textarea:focus, #forgot-business-password-modal .md-content .input-form textarea:focus, #reset-business-pw-modal .content .input-form textarea:focus {
      border-color: #2A2A2A; }
    #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-wrapper .invoice-select-input-form textarea.error, .profile .member-content .invoice-select-form .invoice-select-wrapper .invoice-select-input-form textarea.error, #points .store-payment .invoice-select-form .invoice-select-wrapper .invoice-select-input-form textarea.error, #payment-confirm .payment-form .invoice-select-form .invoice-select-wrapper .invoice-select-input-form textarea.error, #payment-credit .status-message .form-item textarea.error, #extrafee-payment-credit .status-message .form-item textarea.error, #points-payment-credit .status-message .form-item textarea.error, .profile .member-content .input-form textarea.error, #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form textarea.error, #member-signup .member-signup-content .form-wrapper .input-form textarea.error, #login-modal .input-form textarea.error, #forgot-password-modal .md-content .input-form textarea.error, #reset-pw-modal .content .input-form textarea.error, #edit-address-modal .content .input-form textarea.error, #activity-apply-modal .content .input-form textarea.error, #resend-invitation-modal .md-content .input-form textarea.error, #forgot-business-password-modal .md-content .input-form textarea.error, #reset-business-pw-modal .content .input-form textarea.error {
      border: 1px solid #FF2C22; }

#cart .cart-pool .pool-row .pool-col .button.upload .file-input-button, #payment .payment-form .orderitem-pool .pool-row .pool-col .button.reupload .file-input-button, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .button.reupload .file-input-button, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .button.reupload .file-input-button, .profile .member-content .input-form .button.upload .file-input-button {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 1px;
  height: 1px;
  visibility: hidden; }

#member .sidebar .nav-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  border: 1px solid #DADADA;
  background-color: #fff;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px; }
  #member .sidebar .nav-wrapper .user-info {
    height: 72px;
    margin: 0;
    padding: 0 16px;
    border-bottom: 1px solid #DADADA;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center; }
    #member .sidebar .nav-wrapper .user-info .avatar {
      display: inline-block;
      width: 40px;
      min-width: 40px;
      height: 40px;
      line-height: 40px;
      margin-right: 8px;
      border: 1px solid #F0EFEE;
      background-color: #eee;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      text-align: center;
      color: #fff;
      font-weight: 600;
      -moz-border-radius: 50%;
      -webkit-border-radius: 50%;
      border-radius: 50%; }
    #member .sidebar .nav-wrapper .user-info .text-wrapper {
      overflow: hidden; }
      #member .sidebar .nav-wrapper .user-info .text-wrapper .user-name {
        color: #2A2A2A;
        font-size: 16px;
        letter-spacing: 0;
        font-weight: 600;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap; }
        #member .sidebar .nav-wrapper .user-info .text-wrapper .user-name.link {
          cursor: pointer; }
          #member .sidebar .nav-wrapper .user-info .text-wrapper .user-name.link:hover {
            text-decoration: underline; }
      #member .sidebar .nav-wrapper .user-info .text-wrapper .user-points {
        color: #0071C5;
        letter-spacing: 0;
        font-size: 12px;
        font-size: 0.75rem; }
  #member .sidebar .nav-wrapper .title {
    height: 54px;
    margin: 0;
    padding: 0 16px;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center; }
    #member .sidebar .nav-wrapper .title.menu-title {
      cursor: pointer; }
    #member .sidebar .nav-wrapper .title .arrow-icon {
      display: inline-block;
      margin: 0 0 0 auto;
      color: #737373;
      font-size: 20px; }
  #member .sidebar .nav-wrapper .nav-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid #DADADA;
    list-style-type: none; }
    #member .sidebar .nav-wrapper .nav-list.mini {
      max-height: 0;
      padding: 0;
      border-top: none;
      overflow: hidden; }
    #member .sidebar .nav-wrapper .nav-list li {
      margin: 0;
      padding: 0;
      -moz-border-radius: 2px;
      -webkit-border-radius: 2px;
      border-radius: 2px; }
      #member .sidebar .nav-wrapper .nav-list li:hover a {
        color: #ee7c68;
        background-color: rgba(238, 124, 104, 0.05); }
      #member .sidebar .nav-wrapper .nav-list li.active a {
        color: #fff;
        font-weight: 600;
        background-color: #ee7c68; }
      #member .sidebar .nav-wrapper .nav-list li a {
        display: block;
        height: 46px;
        padding: 0 16px;
        color: #000;
        font-size: 16px;
        cursor: pointer;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center; }
        #member .sidebar .nav-wrapper .nav-list li a .label {
          width: 24px;
          height: 24px;
          margin: 0 10px 0 0;
          font-size: 18px;
          display: -webkit-flex;
          display: flex;
          -webkit-align-items: center;
          align-items: center;
          -webkit-justify-content: center;
          justify-content: center; }
        #member .sidebar .nav-wrapper .nav-list li a .count {
          display: inline-block;
          width: 20px;
          height: 20px;
          line-height: 20px;
          margin: 0 0 0 auto;
          background-color: #ee7c68;
          font-weight: 600;
          color: #fff;
          text-align: center;
          font-size: 12px;
          -moz-border-radius: 50%;
          -webkit-border-radius: 50%;
          border-radius: 50%;
          -moz-transform: scale(0.83);
          -ms-transform: scale(0.83);
          -webkit-transform: scale(0.83);
          transform: scale(0.83); }
        #member .sidebar .nav-wrapper .nav-list li a .points {
          display: inline-block;
          margin: 0 0 0 auto;
          color: #ee7c68;
          text-align: center;
          font-size: 12px; }

#faq .sidebar .nav-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  border: 1px solid #DADADA;
  background-color: #fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px; }
  #faq .sidebar .nav-wrapper .title {
    height: 68px;
    line-height: 68px;
    margin: 0;
    padding: 0 20px;
    color: #000;
    font-size: 20px;
    font-weight: bold; }
  #faq .sidebar .nav-wrapper .nav-list {
    margin: 0;
    list-style-type: none; }
    #faq .sidebar .nav-wrapper .nav-list .nav-item {
      height: 46px;
      margin: 0;
      padding: 0 20px;
      color: #000;
      font-size: 16px;
      cursor: pointer;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center; }
      #faq .sidebar .nav-wrapper .nav-list .nav-item .menu-icon {
        margin-right: 6px; }
  #faq .sidebar .nav-wrapper .menu {
    overflow: hidden; }
  #faq .sidebar .nav-wrapper .menu-list {
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
    #faq .sidebar .nav-wrapper .menu-list.show {
      height: auto; }
    #faq .sidebar .nav-wrapper .menu-list li a {
      display: block;
      height: 46px;
      line-height: 46px;
      padding: 0 0 0 50px;
      color: #000;
      font-size: 16px;
      cursor: pointer; }
    #faq .sidebar .nav-wrapper .menu-list li:hover a {
      color: #ee7c68;
      background-color: rgba(238, 124, 104, 0.05); }
    #faq .sidebar .nav-wrapper .menu-list li.active a {
      color: #fff;
      background-color: #ee7c68; }

.order-list .member-header .nav-list .nav-item .number-tip, .order-history .member-header .nav-list .nav-item .number-tip, .profile .member-header .nav-list .nav-item .number-tip, .favorite-address .member-header .nav-list .nav-item .number-tip, #system-message .member-header .nav-list .nav-item .number-tip, #points .member-header .nav-list .nav-item .number-tip, #order-template .member-header .nav-list .nav-item .number-tip, #bonuspoints .member-header .nav-list .nav-item .number-tip, #special-offer-list .member-header .nav-list .nav-item .number-tip, #special-offer-info .member-header .nav-list .nav-item .number-tip, #topbar .action-list .action-nav-list .action-nav-item .number-tip {
  position: absolute;
  top: 0;
  right: 0;
  width: 19px;
  height: 19px;
  line-height: 19px;
  background-color: #ee7c68;
  font-weight: 700;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  -moz-transform: scale(0.86, 0.86);
  -ms-transform: scale(0.86, 0.86);
  -webkit-transform: scale(0.86, 0.86);
  transform: scale(0.86, 0.86);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%; }

.recommend-tip, .hot-tip, .new-tip, .free-shipping-tip, .emergency-tip {
  display: inline-block;
  margin-left: 6px;
  padding: 0 3px;
  color: #fff;
  line-height: 1.6em;
  font-size: 13px;
  font-size: 0.8125rem;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px; }

.recommend-tip {
  background-color: #ee7c68; }

.hot-tip {
  background-color: #FF2C22; }

.new-tip {
  background-color: #0071C5; }

.free-shipping-tip {
  background-color: #388d81; }

.emergency-tip {
  background-color: #905bdf; }

#cart .cart-pool .label-bar, #designer-project-post .label-bar {
  border: 1px solid #DADADA;
  border-bottom: none;
  background-color: #F6F6F6;
  overflow: hidden; }
  #cart .cart-pool .label-bar .label-item, #designer-project-post .label-bar .label-item {
    display: block;
    height: 50px;
    line-height: 50px;
    padding: 0 24px;
    float: left;
    color: #484848;
    letter-spacing: 0px;
    cursor: pointer;
    font-size: 14px;
    font-size: 0.875rem;
    -moz-box-shadow: inset -1px 0px 0px 0px #ddd;
    -webkit-box-shadow: inset -1px 0px 0px 0px #ddd;
    box-shadow: inset -1px 0px 0px 0px #ddd; }
    #cart .cart-pool .label-bar .label-item.active, #designer-project-post .label-bar .label-item.active {
      background-color: #FFFFFF;
      -moz-box-shadow: inset -1px 2px 0px 0px #ee7c68;
      -webkit-box-shadow: inset -1px 2px 0px 0px #ee7c68;
      box-shadow: inset -1px 2px 0px 0px #ee7c68; }

.all-product .nav-bar, #blog-list .nav-bar, #resource-list .nav-bar, #designer-project-post .nav-bar {
  border: 1px solid #DADADA;
  background-color: #FFFFFF;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px; }
  .all-product .nav-bar .select-content, #blog-list .nav-bar .select-content, #resource-list .nav-bar .select-content, #designer-project-post .nav-bar .select-content {
    padding: 20px 20px 0 20px; }
  .all-product .nav-bar .select-bar, #blog-list .nav-bar .select-bar, #resource-list .nav-bar .select-bar, #designer-project-post .nav-bar .select-bar {
    padding: 0 0 10px 0;
    letter-spacing: 0px;
    display: -webkit-flex;
    display: flex; }
    .all-product .nav-bar .select-bar .label, #blog-list .nav-bar .select-bar .label, #resource-list .nav-bar .select-bar .label, #designer-project-post .nav-bar .select-bar .label {
      display: inline-block;
      line-height: 22px;
      margin: 0 10px 0 0;
      color: #000;
      font-size: 16px; }
    .all-product .nav-bar .select-bar .select-list, #blog-list .nav-bar .select-bar .select-list, #resource-list .nav-bar .select-bar .select-list, #designer-project-post .nav-bar .select-bar .select-list {
      position: relative;
      -webkit-flex: 1;
      flex: 1;
      display: -webkit-inline-flex;
      display: inline-flex;
      -webkit-align-items: center;
      align-items: center;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap; }
      .all-product .nav-bar .select-bar .select-list .select-item, #blog-list .nav-bar .select-bar .select-list .select-item, #resource-list .nav-bar .select-bar .select-list .select-item, #designer-project-post .nav-bar .select-bar .select-list .select-item {
        line-height: 22px;
        margin: 0 20px 10px 0;
        color: #737373;
        font-size: 14px;
        cursor: pointer; }
        .all-product .nav-bar .select-bar .select-list .select-item:hover, #blog-list .nav-bar .select-bar .select-list .select-item:hover, #resource-list .nav-bar .select-bar .select-list .select-item:hover, #designer-project-post .nav-bar .select-bar .select-list .select-item:hover, .all-product .nav-bar .select-bar .select-list .select-item.active, #blog-list .nav-bar .select-bar .select-list .select-item.active, #resource-list .nav-bar .select-bar .select-list .select-item.active, #designer-project-post .nav-bar .select-bar .select-list .select-item.active {
          color: #ee7c68; }

#blog-list, #blog-post, #resource-list, #designer, #project-post, #designer-project-post {
  position: relative;
  width: calc(100% - 20px);
  max-width: 1100px;
  margin: 30px auto;
  overflow: hidden; }

#blog-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper, #project-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper, #blog-list .grid-wrapper, #resource-list .grid-wrapper, #designer .content-wrapper .main-wrapper .grid-wrapper, #project-list .grid-wrapper {
  position: relative;
  width: calc(100% + 30px);
  margin: -15px;
  overflow: hidden; }
  #blog-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item, #project-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item, #blog-list .grid-wrapper .grid-item, #resource-list .grid-wrapper .grid-item, #designer .content-wrapper .main-wrapper .grid-wrapper .grid-item, #project-list .grid-wrapper .grid-item {
    position: relative;
    height: auto;
    margin: 15px;
    float: left; }
    #blog-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item.width-25, #project-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item.width-25, #blog-list .grid-wrapper .grid-item.width-25, #resource-list .grid-wrapper .grid-item.width-25, #designer .content-wrapper .main-wrapper .grid-wrapper .grid-item.width-25, #project-list .grid-wrapper .grid-item.width-25 {
      width: calc(25% - 30px); }
    #blog-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item.width-33, #project-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item.width-33, #blog-list .grid-wrapper .grid-item.width-33, #resource-list .grid-wrapper .grid-item.width-33, #designer .content-wrapper .main-wrapper .grid-wrapper .grid-item.width-33, #project-list .grid-wrapper .grid-item.width-33 {
      width: calc(33.3% - 30px); }
    #blog-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item.width-50, #project-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item.width-50, #blog-list .grid-wrapper .grid-item.width-50, #resource-list .grid-wrapper .grid-item.width-50, #designer .content-wrapper .main-wrapper .grid-wrapper .grid-item.width-50, #project-list .grid-wrapper .grid-item.width-50 {
      width: calc(50% - 30px); }
    #blog-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item.width-100, #project-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item.width-100, #blog-list .grid-wrapper .grid-item.width-100, #resource-list .grid-wrapper .grid-item.width-100, #designer .content-wrapper .main-wrapper .grid-wrapper .grid-item.width-100, #project-list .grid-wrapper .grid-item.width-100 {
      width: calc(100% - 30px); }
    #blog-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper, #project-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper, #blog-list .grid-wrapper .grid-item .item-wrapper, #resource-list .grid-wrapper .grid-item .item-wrapper, #designer .content-wrapper .main-wrapper .grid-wrapper .grid-item .item-wrapper, #project-list .grid-wrapper .grid-item .item-wrapper {
      display: block;
      border: 1px solid #DADADA;
      background-color: #fff;
      overflow: hidden;
      cursor: pointer;
      -moz-border-radius: 3px;
      -webkit-border-radius: 3px;
      border-radius: 3px; }
      #blog-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .image, #project-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .image, #blog-list .grid-wrapper .grid-item .item-wrapper .image, #resource-list .grid-wrapper .grid-item .item-wrapper .image, #designer .content-wrapper .main-wrapper .grid-wrapper .grid-item .item-wrapper .image, #project-list .grid-wrapper .grid-item .item-wrapper .image {
        position: relative;
        height: 160px;
        background-color: #eee;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        overflow: hidden; }
        #blog-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .image .recommend, #project-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .image .recommend, #blog-list .grid-wrapper .grid-item .item-wrapper .image .recommend, #resource-list .grid-wrapper .grid-item .item-wrapper .image .recommend, #designer .content-wrapper .main-wrapper .grid-wrapper .grid-item .item-wrapper .image .recommend, #project-list .grid-wrapper .grid-item .item-wrapper .image .recommend {
          position: absolute;
          top: 6px;
          right: -30px;
          height: 32px;
          width: 100px;
          line-height: 32px;
          color: #FFFFFF;
          letter-spacing: 0px;
          background-color: #388d81;
          text-align: center;
          font-size: 16px;
          font-size: 1rem;
          -moz-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
          -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
          -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2); }
      #blog-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info, #project-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info, #blog-list .grid-wrapper .grid-item .item-wrapper .item-info, #resource-list .grid-wrapper .grid-item .item-wrapper .item-info, #designer .content-wrapper .main-wrapper .grid-wrapper .grid-item .item-wrapper .item-info, #project-list .grid-wrapper .grid-item .item-wrapper .item-info {
        position: relative;
        height: 170px;
        padding: 20px 24px;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column; }
        #blog-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .title, #project-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .title, #blog-list .grid-wrapper .grid-item .item-wrapper .item-info .title, #resource-list .grid-wrapper .grid-item .item-wrapper .item-info .title, #designer .content-wrapper .main-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .title, #project-list .grid-wrapper .grid-item .item-wrapper .item-info .title {
          width: 100%;
          max-height: 44px;
          line-height: 22px;
          margin: 0 0 12px 0;
          color: #2A2A2A;
          overflow: hidden;
          font-size: 16px;
          font-size: 1rem; }
        #blog-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .description, #project-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .description, #blog-list .grid-wrapper .grid-item .item-wrapper .item-info .description, #resource-list .grid-wrapper .grid-item .item-wrapper .item-info .description, #designer .content-wrapper .main-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .description, #project-list .grid-wrapper .grid-item .item-wrapper .item-info .description {
          margin: 0 0 12px 0;
          color: #484848;
          max-height: 40px;
          line-height: 20px;
          overflow: hidden;
          word-break: break-word;
          font-size: 13px;
          font-size: 0.8125rem;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          text-overflow: ellipsis; }
        #blog-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .category-text, #project-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .category-text, #blog-list .grid-wrapper .grid-item .item-wrapper .item-info .category-text, #resource-list .grid-wrapper .grid-item .item-wrapper .item-info .category-text, #designer .content-wrapper .main-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .category-text, #project-list .grid-wrapper .grid-item .item-wrapper .item-info .category-text {
          color: #484848;
          font-size: 13px;
          font-size: 0.8125rem; }
          #blog-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .category-text:last-child:after, #project-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .category-text:last-child:after, #blog-list .grid-wrapper .grid-item .item-wrapper .item-info .category-text:last-child:after, #resource-list .grid-wrapper .grid-item .item-wrapper .item-info .category-text:last-child:after, #designer .content-wrapper .main-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .category-text:last-child:after, #project-list .grid-wrapper .grid-item .item-wrapper .item-info .category-text:last-child:after {
            display: none; }
          #blog-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .category-text:after, #project-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .category-text:after, #blog-list .grid-wrapper .grid-item .item-wrapper .item-info .category-text:after, #resource-list .grid-wrapper .grid-item .item-wrapper .item-info .category-text:after, #designer .content-wrapper .main-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .category-text:after, #project-list .grid-wrapper .grid-item .item-wrapper .item-info .category-text:after {
            display: inline-block;
            content: '、'; }
        #blog-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .meta, #project-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .meta, #blog-list .grid-wrapper .grid-item .item-wrapper .item-info .meta, #resource-list .grid-wrapper .grid-item .item-wrapper .item-info .meta, #designer .content-wrapper .main-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .meta, #project-list .grid-wrapper .grid-item .item-wrapper .item-info .meta {
          max-height: 20px;
          line-height: 20px;
          margin: auto 0 0 0;
          color: #484848;
          overflow: hidden;
          white-space: nowrap;
          text-overflow: ellipsis;
          font-size: 13px;
          font-size: 0.8125rem; }
        #blog-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .design-meta, #project-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .design-meta, #blog-list .grid-wrapper .grid-item .item-wrapper .item-info .design-meta, #resource-list .grid-wrapper .grid-item .item-wrapper .item-info .design-meta, #designer .content-wrapper .main-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .design-meta, #project-list .grid-wrapper .grid-item .item-wrapper .item-info .design-meta {
          height: 24px;
          margin: auto 0 0 0;
          overflow: hidden;
          display: -webkit-flex;
          display: flex; }
          #blog-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .design-meta .designer, #project-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .design-meta .designer, #blog-list .grid-wrapper .grid-item .item-wrapper .item-info .design-meta .designer, #resource-list .grid-wrapper .grid-item .item-wrapper .item-info .design-meta .designer, #designer .content-wrapper .main-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .design-meta .designer, #project-list .grid-wrapper .grid-item .item-wrapper .item-info .design-meta .designer {
            color: #2A2A2A;
            letter-spacing: 0px;
            overflow: hidden;
            font-size: 13px;
            font-size: 0.8125rem;
            -webkit-flex: 1;
            flex: 1; }
            #blog-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .design-meta .designer .avatar, #project-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .design-meta .designer .avatar, #blog-list .grid-wrapper .grid-item .item-wrapper .item-info .design-meta .designer .avatar, #resource-list .grid-wrapper .grid-item .item-wrapper .item-info .design-meta .designer .avatar, #designer .content-wrapper .main-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .design-meta .designer .avatar, #project-list .grid-wrapper .grid-item .item-wrapper .item-info .design-meta .designer .avatar {
              display: inline-block;
              width: 24px;
              height: 24px;
              margin-right: 6px;
              background-color: #eee;
              background-size: cover;
              background-repeat: no-repeat;
              background-position: center;
              float: left;
              -moz-border-radius: 50%;
              -webkit-border-radius: 50%;
              border-radius: 50%; }
          #blog-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .design-meta .categories-list, #project-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .design-meta .categories-list, #blog-list .grid-wrapper .grid-item .item-wrapper .item-info .design-meta .categories-list, #resource-list .grid-wrapper .grid-item .item-wrapper .item-info .design-meta .categories-list, #designer .content-wrapper .main-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .design-meta .categories-list, #project-list .grid-wrapper .grid-item .item-wrapper .item-info .design-meta .categories-list {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            text-align: right;
            -webkit-flex: 1;
            flex: 1; }
            #blog-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .design-meta .categories-list .categories, #project-post .content-wrapper .main-wrapper .recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .design-meta .categories-list .categories, #blog-list .grid-wrapper .grid-item .item-wrapper .item-info .design-meta .categories-list .categories, #resource-list .grid-wrapper .grid-item .item-wrapper .item-info .design-meta .categories-list .categories, #designer .content-wrapper .main-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .design-meta .categories-list .categories, #project-list .grid-wrapper .grid-item .item-wrapper .item-info .design-meta .categories-list .categories {
              margin: 0 0 0 auto;
              overflow: hidden;
              white-space: nowrap;
              text-overflow: ellipsis; }

#blog-list .page-controller, #resource-list .page-controller, #designer-list .page-controller, #designer .page-controller, #project-list .page-controller {
  text-align: center;
  overflow: hidden; }
  #blog-list .page-controller .page-item, #resource-list .page-controller .page-item, #designer-list .page-controller .page-item, #designer .page-controller .page-item, #project-list .page-controller .page-item {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 2px;
    color: #7D8995;
    background-color: #FFFFFF;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    font-size: 0.875rem;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
    #blog-list .page-controller .page-item.active, #resource-list .page-controller .page-item.active, #designer-list .page-controller .page-item.active, #designer .page-controller .page-item.active, #project-list .page-controller .page-item.active {
      color: #fff;
      background-color: #0071C5; }
    #blog-list .page-controller .page-item i, #resource-list .page-controller .page-item i, #designer-list .page-controller .page-item i, #designer .page-controller .page-item i, #project-list .page-controller .page-item i {
      font-size: 16px;
      font-size: 1rem; }

#blog-post .content-wrapper, #designer .content-wrapper, #project-post .content-wrapper {
  display: -webkit-flex;
  display: flex; }
  #blog-post .content-wrapper .main-wrapper, #designer .content-wrapper .main-wrapper, #project-post .content-wrapper .main-wrapper {
    display: inline-block;
    margin: 0 16px 0 0;
    -webkit-flex: 1;
    flex: 1; }
    #blog-post .content-wrapper .main-wrapper .post-wrapper, #designer .content-wrapper .main-wrapper .post-wrapper, #project-post .content-wrapper .main-wrapper .post-wrapper {
      margin: 0;
      padding: 60px;
      border: 1px solid #DADADA;
      background-color: #fff; }
      #blog-post .content-wrapper .main-wrapper .post-wrapper .title, #designer .content-wrapper .main-wrapper .post-wrapper .title, #project-post .content-wrapper .main-wrapper .post-wrapper .title {
        line-height: 1.4em;
        margin: 0 0 10px 0;
        font-weight: 600;
        color: #2A2A2A;
        font-size: 28px;
        font-size: 1.75rem; }
      #blog-post .content-wrapper .main-wrapper .post-wrapper .meta, #designer .content-wrapper .main-wrapper .post-wrapper .meta, #project-post .content-wrapper .main-wrapper .post-wrapper .meta {
        line-height: 22px;
        margin: 0 0 40px 0;
        padding: 0 0 20px 0;
        border-bottom: 1px solid #DDDDDD;
        color: #737373;
        letter-spacing: 0px;
        font-size: 14px;
        font-size: 0.875rem; }
        #blog-post .content-wrapper .main-wrapper .post-wrapper .meta .category-text, #designer .content-wrapper .main-wrapper .post-wrapper .meta .category-text, #project-post .content-wrapper .main-wrapper .post-wrapper .meta .category-text {
          color: #737373; }
          #blog-post .content-wrapper .main-wrapper .post-wrapper .meta .category-text:last-child:after, #designer .content-wrapper .main-wrapper .post-wrapper .meta .category-text:last-child:after, #project-post .content-wrapper .main-wrapper .post-wrapper .meta .category-text:last-child:after {
            display: none; }
          #blog-post .content-wrapper .main-wrapper .post-wrapper .meta .category-text:after, #designer .content-wrapper .main-wrapper .post-wrapper .meta .category-text:after, #project-post .content-wrapper .main-wrapper .post-wrapper .meta .category-text:after {
            display: inline-block;
            content: '、'; }
      #blog-post .content-wrapper .main-wrapper .post-wrapper .post-content, #designer .content-wrapper .main-wrapper .post-wrapper .post-content, #project-post .content-wrapper .main-wrapper .post-wrapper .post-content {
        line-height: 2em;
        font-size: 18px;
        font-size: 1.125rem; }
        #blog-post .content-wrapper .main-wrapper .post-wrapper .post-content p, #designer .content-wrapper .main-wrapper .post-wrapper .post-content p, #project-post .content-wrapper .main-wrapper .post-wrapper .post-content p {
          margin: 0; }
      #blog-post .content-wrapper .main-wrapper .post-wrapper .social-group, #designer .content-wrapper .main-wrapper .post-wrapper .social-group, #project-post .content-wrapper .main-wrapper .post-wrapper .social-group {
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center; }
        #blog-post .content-wrapper .main-wrapper .post-wrapper .social-group .social-button, #designer .content-wrapper .main-wrapper .post-wrapper .social-group .social-button, #project-post .content-wrapper .main-wrapper .post-wrapper .social-group .social-button {
          margin-top: 20px;
          margin-right: 6px;
          display: -webkit-inline-flex;
          display: inline-flex; }
    #blog-post .content-wrapper .main-wrapper .mobile-designer-info, #designer .content-wrapper .main-wrapper .mobile-designer-info, #project-post .content-wrapper .main-wrapper .mobile-designer-info {
      display: none;
      padding: 24px;
      border-top: 1px solid #DDDDDD;
      border-bottom: 1px solid #DDDDDD;
      background-color: #fff;
      -webkit-align-items: flex-start;
      align-items: flex-start; }
      #blog-post .content-wrapper .main-wrapper .mobile-designer-info .avatar, #designer .content-wrapper .main-wrapper .mobile-designer-info .avatar, #project-post .content-wrapper .main-wrapper .mobile-designer-info .avatar {
        display: inline-block;
        width: 60px;
        min-width: 60px;
        height: 60px;
        margin: 0 12px 0 0;
        background-color: #eee;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        border-radius: 50%; }
      #blog-post .content-wrapper .main-wrapper .mobile-designer-info .text-wrapper, #designer .content-wrapper .main-wrapper .mobile-designer-info .text-wrapper, #project-post .content-wrapper .main-wrapper .mobile-designer-info .text-wrapper {
        display: inline-block;
        min-height: 60px;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        justify-content: center;
        display: -webkit-inline-flex;
        display: inline-flex; }
        #blog-post .content-wrapper .main-wrapper .mobile-designer-info .text-wrapper .title, #designer .content-wrapper .main-wrapper .mobile-designer-info .text-wrapper .title, #project-post .content-wrapper .main-wrapper .mobile-designer-info .text-wrapper .title {
          display: block;
          margin: 0 0 4px 0;
          color: #2A2A2A;
          font-size: 16px;
          font-size: 1rem; }
        #blog-post .content-wrapper .main-wrapper .mobile-designer-info .text-wrapper .description, #designer .content-wrapper .main-wrapper .mobile-designer-info .text-wrapper .description, #project-post .content-wrapper .main-wrapper .mobile-designer-info .text-wrapper .description {
          display: block;
          line-height: 1.4em;
          color: #737373;
          font-size: 13px;
          font-size: 0.8125rem; }
    #blog-post .content-wrapper .main-wrapper .recommend-wrapper, #designer .content-wrapper .main-wrapper .recommend-wrapper, #project-post .content-wrapper .main-wrapper .recommend-wrapper {
      margin: 40px 0 0 0; }
      #blog-post .content-wrapper .main-wrapper .recommend-wrapper .title, #designer .content-wrapper .main-wrapper .recommend-wrapper .title, #project-post .content-wrapper .main-wrapper .recommend-wrapper .title {
        margin: 0 0 20px 0;
        font-weight: 600;
        color: #2A2A2A;
        font-size: 20px;
        font-size: 1.25rem; }
    #blog-post .content-wrapper .main-wrapper .mobile-recommend-wrapper, #designer .content-wrapper .main-wrapper .mobile-recommend-wrapper, #project-post .content-wrapper .main-wrapper .mobile-recommend-wrapper {
      display: none;
      margin: 24px 0 0 0; }
      #blog-post .content-wrapper .main-wrapper .mobile-recommend-wrapper .title, #designer .content-wrapper .main-wrapper .mobile-recommend-wrapper .title, #project-post .content-wrapper .main-wrapper .mobile-recommend-wrapper .title {
        margin: 0 0 12px 0;
        padding: 0 24px;
        font-weight: 600;
        color: #2A2A2A;
        font-size: 16px;
        font-size: 1rem; }
      #blog-post .content-wrapper .main-wrapper .mobile-recommend-wrapper .grid-wrapper, #designer .content-wrapper .main-wrapper .mobile-recommend-wrapper .grid-wrapper, #project-post .content-wrapper .main-wrapper .mobile-recommend-wrapper .grid-wrapper {
        padding: 0 12px 0 24px;
        overflow: auto;
        white-space: nowrap; }
        #blog-post .content-wrapper .main-wrapper .mobile-recommend-wrapper .grid-wrapper .grid-item, #designer .content-wrapper .main-wrapper .mobile-recommend-wrapper .grid-wrapper .grid-item, #project-post .content-wrapper .main-wrapper .mobile-recommend-wrapper .grid-wrapper .grid-item {
          display: inline-block;
          width: 190px;
          margin: 0 12px 0 0;
          border: 1px solid #DDDDDD; }
          #blog-post .content-wrapper .main-wrapper .mobile-recommend-wrapper .grid-wrapper .grid-item .item-wrapper, #designer .content-wrapper .main-wrapper .mobile-recommend-wrapper .grid-wrapper .grid-item .item-wrapper, #project-post .content-wrapper .main-wrapper .mobile-recommend-wrapper .grid-wrapper .grid-item .item-wrapper {
            display: block;
            background-color: #fff; }
            #blog-post .content-wrapper .main-wrapper .mobile-recommend-wrapper .grid-wrapper .grid-item .item-wrapper .image, #designer .content-wrapper .main-wrapper .mobile-recommend-wrapper .grid-wrapper .grid-item .item-wrapper .image, #project-post .content-wrapper .main-wrapper .mobile-recommend-wrapper .grid-wrapper .grid-item .item-wrapper .image {
              position: relative;
              height: 100px;
              background-color: #eee;
              background-size: cover;
              background-repeat: no-repeat;
              background-position: center;
              overflow: hidden; }
              #blog-post .content-wrapper .main-wrapper .mobile-recommend-wrapper .grid-wrapper .grid-item .item-wrapper .image .recommend, #designer .content-wrapper .main-wrapper .mobile-recommend-wrapper .grid-wrapper .grid-item .item-wrapper .image .recommend, #project-post .content-wrapper .main-wrapper .mobile-recommend-wrapper .grid-wrapper .grid-item .item-wrapper .image .recommend {
                position: absolute;
                top: 6px;
                right: -30px;
                height: 28px;
                width: 100px;
                line-height: 28px;
                color: #FFFFFF;
                letter-spacing: 0px;
                background-color: #388d81;
                text-align: center;
                font-size: 15px;
                font-size: 0.9375rem;
                -moz-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
                -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
                -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
                box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2); }
            #blog-post .content-wrapper .main-wrapper .mobile-recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info, #designer .content-wrapper .main-wrapper .mobile-recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info, #project-post .content-wrapper .main-wrapper .mobile-recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info {
              height: 130px;
              padding: 16px; }
              #blog-post .content-wrapper .main-wrapper .mobile-recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .title, #designer .content-wrapper .main-wrapper .mobile-recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .title, #project-post .content-wrapper .main-wrapper .mobile-recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .title {
                width: 100%;
                max-height: 40px;
                line-height: 20px;
                margin: 0 0 12px 0;
                padding: 0;
                color: #2A2A2A;
                overflow: hidden;
                white-space: normal;
                font-size: 16px;
                font-size: 1rem;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                text-overflow: ellipsis; }
              #blog-post .content-wrapper .main-wrapper .mobile-recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .description, #designer .content-wrapper .main-wrapper .mobile-recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .description, #project-post .content-wrapper .main-wrapper .mobile-recommend-wrapper .grid-wrapper .grid-item .item-wrapper .item-info .description {
                margin: 0;
                color: #919191;
                max-height: 40px;
                line-height: 20px;
                overflow: hidden;
                word-break: break-word;
                white-space: normal;
                font-size: 13px;
                font-size: 0.8125rem;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                text-overflow: ellipsis; }
    #blog-post .content-wrapper .main-wrapper .signature, #designer .content-wrapper .main-wrapper .signature, #project-post .content-wrapper .main-wrapper .signature {
      position: relative;
      display: block;
      width: 600px;
      margin: 20px auto;
      text-align: center;
      cursor: pointer; }
      #blog-post .content-wrapper .main-wrapper .signature .description, #designer .content-wrapper .main-wrapper .signature .description, #project-post .content-wrapper .main-wrapper .signature .description {
        margin: 20px 0 0 0;
        padding: 20px 0 0 0;
        border-top: 2px solid #0071C5;
        color: #484848;
        font-size: 16px;
        font-size: 1rem; }
  #blog-post .content-wrapper .sideber-wrapper, #designer .content-wrapper .sideber-wrapper, #project-post .content-wrapper .sideber-wrapper {
    display: inline-block;
    width: 300px; }
    #blog-post .content-wrapper .sideber-wrapper .scroll-fix-wrapper, #designer .content-wrapper .sideber-wrapper .scroll-fix-wrapper, #project-post .content-wrapper .sideber-wrapper .scroll-fix-wrapper {
      position: relative;
      width: 300px;
      height: auto; }
    #blog-post .content-wrapper .sideber-wrapper .sidebar-border, #designer .content-wrapper .sideber-wrapper .sidebar-border, #project-post .content-wrapper .sideber-wrapper .sidebar-border {
      border: 1px solid #DADADA; }
    #blog-post .content-wrapper .sideber-wrapper .sidebar-adblock, #designer .content-wrapper .sideber-wrapper .sidebar-adblock, #project-post .content-wrapper .sideber-wrapper .sidebar-adblock {
      display: block;
      height: 130px;
      margin: 0 0 10px 0;
      background-color: #fff;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat; }
      #blog-post .content-wrapper .sideber-wrapper .sidebar-adblock.facebook-page, #designer .content-wrapper .sideber-wrapper .sidebar-adblock.facebook-page, #project-post .content-wrapper .sideber-wrapper .sidebar-adblock.facebook-page {
        height: auto; }
    #blog-post .content-wrapper .sideber-wrapper .sidebar-recommend, #designer .content-wrapper .sideber-wrapper .sidebar-recommend, #project-post .content-wrapper .sideber-wrapper .sidebar-recommend {
      display: block;
      width: 100%;
      margin: 0 0 10px 0;
      border: 1px solid #DADADA;
      background-color: #fff;
      -moz-border-radius: 3px;
      -webkit-border-radius: 3px;
      border-radius: 3px; }
      #blog-post .content-wrapper .sideber-wrapper .sidebar-recommend .header, #designer .content-wrapper .sideber-wrapper .sidebar-recommend .header, #project-post .content-wrapper .sideber-wrapper .sidebar-recommend .header {
        position: relative;
        margin: 20px 0 0 0;
        padding: 0 16px;
        color: #000;
        font-weight: 600;
        font-size: 14px;
        font-size: 0.875rem;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center; }
      #blog-post .content-wrapper .sideber-wrapper .sidebar-recommend .content, #designer .content-wrapper .sideber-wrapper .sidebar-recommend .content, #project-post .content-wrapper .sideber-wrapper .sidebar-recommend .content {
        position: relative; }
        #blog-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item, #designer .content-wrapper .sideber-wrapper .sidebar-recommend .content .item, #project-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item {
          padding: 12px;
          cursor: pointer;
          display: -webkit-flex;
          display: flex;
          -webkit-align-items: center;
          align-items: center;
          -moz-box-shadow: inset 0px -1px 0px 0px #EEEEEE;
          -webkit-box-shadow: inset 0px -1px 0px 0px #EEEEEE;
          box-shadow: inset 0px -1px 0px 0px #EEEEEE; }
          #blog-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item:hover, #designer .content-wrapper .sideber-wrapper .sidebar-recommend .content .item:hover, #project-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item:hover {
            background-color: #fafafa; }
          #blog-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .image, #designer .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .image, #project-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .image {
            position: relative;
            display: inline-block;
            width: 60px;
            min-width: 60px;
            height: 60px;
            line-height: 60px;
            margin: 0 12px 0 0;
            background-size: cover;
            background-color: #eee;
            background-repeat: no-repeat;
            background-position: center;
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
            border-radius: 3px; }
          #blog-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper, #designer .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper, #project-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper {
            overflow: hidden;
            -webkit-flex: 1;
            flex: 1; }
            #blog-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title, #designer .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title, #project-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title {
              margin: 0 0 2px 0;
              font-weight: 600;
              color: #2A2A2A;
              letter-spacing: 0px;
              white-space: nowrap;
              overflow: hidden;
              text-overflow: ellipsis;
              font-size: 14px;
              font-size: 0.875rem; }
              #blog-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title.recommend.show-tip .recommend-tip, #designer .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title.recommend.show-tip .recommend-tip, #project-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title.recommend.show-tip .recommend-tip {
                display: inline-block; }
              #blog-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title.hot.show-tip .hot-tip, #designer .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title.hot.show-tip .hot-tip, #project-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title.hot.show-tip .hot-tip {
                display: inline-block; }
              #blog-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title.new.show-tip .new-tip, #designer .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title.new.show-tip .new-tip, #project-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title.new.show-tip .new-tip {
                display: inline-block; }
              #blog-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title.free-shipping.show-tip .free-shipping-tip, #designer .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title.free-shipping.show-tip .free-shipping-tip, #project-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title.free-shipping.show-tip .free-shipping-tip {
                display: inline-block; }
              #blog-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title.emergency.show-tip .emergency-tip, #designer .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title.emergency.show-tip .emergency-tip, #project-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title.emergency.show-tip .emergency-tip {
                display: inline-block; }
              #blog-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title .recommend-tip, #designer .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title .recommend-tip, #project-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title .recommend-tip, #blog-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title .hot-tip, #designer .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title .hot-tip, #project-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title .hot-tip, #blog-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title .new-tip, #designer .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title .new-tip, #project-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title .new-tip, #blog-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title .free-shipping-tip, #designer .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title .free-shipping-tip, #project-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title .free-shipping-tip, #blog-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title .emergency-tip, #designer .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title .emergency-tip, #project-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .title .emergency-tip {
                display: none; }
            #blog-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .description, #designer .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .description, #project-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .description {
              margin: 0 0 0 0;
              color: #484848;
              opacity: 1;
              letter-spacing: 0px;
              white-space: nowrap;
              overflow: hidden;
              text-overflow: ellipsis;
              font-size: 13px;
              font-size: 0.8125rem; }
            #blog-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .price, #designer .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .price, #project-post .content-wrapper .sideber-wrapper .sidebar-recommend .content .item .text-wrapper .price {
              margin: 4px 0 0 0;
              color: #0071C5;
              font-size: 14px;
              font-size: 0.875rem; }
    #blog-post .content-wrapper .sideber-wrapper .sidebar-content, #designer .content-wrapper .sideber-wrapper .sidebar-content, #project-post .content-wrapper .sideber-wrapper .sidebar-content {
      display: block;
      margin: 0;
      padding: 20px;
      background-color: #fff;
      -moz-box-shadow: inset 0px -1px 0px 0px #DDDDDD;
      -webkit-box-shadow: inset 0px -1px 0px 0px #DDDDDD;
      box-shadow: inset 0px -1px 0px 0px #DDDDDD; }
      #blog-post .content-wrapper .sideber-wrapper .sidebar-content:last-child, #designer .content-wrapper .sideber-wrapper .sidebar-content:last-child, #project-post .content-wrapper .sideber-wrapper .sidebar-content:last-child {
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none; }
      #blog-post .content-wrapper .sideber-wrapper .sidebar-content.designer, #designer .content-wrapper .sideber-wrapper .sidebar-content.designer, #project-post .content-wrapper .sideber-wrapper .sidebar-content.designer {
        padding: 30px;
        text-align: center; }
        #blog-post .content-wrapper .sideber-wrapper .sidebar-content.designer .title, #designer .content-wrapper .sideber-wrapper .sidebar-content.designer .title, #project-post .content-wrapper .sideber-wrapper .sidebar-content.designer .title {
          margin: 0 0 4px 0;
          font-size: 16px;
          font-size: 1rem; }
        #blog-post .content-wrapper .sideber-wrapper .sidebar-content.designer .description, #designer .content-wrapper .sideber-wrapper .sidebar-content.designer .description, #project-post .content-wrapper .sideber-wrapper .sidebar-content.designer .description {
          text-decoration: underline;
          cursor: pointer;
          overflow: hidden;
          white-space: nowrap;
          text-overflow: ellipsis; }
          #blog-post .content-wrapper .sideber-wrapper .sidebar-content.designer .description.mobiletype, #designer .content-wrapper .sideber-wrapper .sidebar-content.designer .description.mobiletype, #project-post .content-wrapper .sideber-wrapper .sidebar-content.designer .description.mobiletype {
            display: none; }
      #blog-post .content-wrapper .sideber-wrapper .sidebar-content .avatar, #designer .content-wrapper .sideber-wrapper .sidebar-content .avatar, #project-post .content-wrapper .sideber-wrapper .sidebar-content .avatar {
        display: block;
        width: 60px;
        height: 60px;
        margin: 0 auto 16px auto;
        background-color: #eee;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        border-radius: 50%; }
      #blog-post .content-wrapper .sideber-wrapper .sidebar-content .title, #designer .content-wrapper .sideber-wrapper .sidebar-content .title, #project-post .content-wrapper .sideber-wrapper .sidebar-content .title {
        display: block;
        margin: 0 0 10px 0;
        color: #2A2A2A;
        font-weight: 600;
        font-size: 14px;
        font-size: 0.875rem; }
      #blog-post .content-wrapper .sideber-wrapper .sidebar-content .description, #designer .content-wrapper .sideber-wrapper .sidebar-content .description, #project-post .content-wrapper .sideber-wrapper .sidebar-content .description {
        display: block;
        color: #737373;
        letter-spacing: 0px;
        line-height: 21px;
        word-break: break-all;
        font-size: 13px;
        font-size: 0.8125rem; }
        #blog-post .content-wrapper .sideber-wrapper .sidebar-content .description.mobiletype, #designer .content-wrapper .sideber-wrapper .sidebar-content .description.mobiletype, #project-post .content-wrapper .sideber-wrapper .sidebar-content .description.mobiletype {
          display: none; }
        #blog-post .content-wrapper .sideber-wrapper .sidebar-content .description .category-text, #designer .content-wrapper .sideber-wrapper .sidebar-content .description .category-text, #project-post .content-wrapper .sideber-wrapper .sidebar-content .description .category-text {
          color: #737373; }
          #blog-post .content-wrapper .sideber-wrapper .sidebar-content .description .category-text:last-child:after, #designer .content-wrapper .sideber-wrapper .sidebar-content .description .category-text:last-child:after, #project-post .content-wrapper .sideber-wrapper .sidebar-content .description .category-text:last-child:after {
            display: none; }
          #blog-post .content-wrapper .sideber-wrapper .sidebar-content .description .category-text:after, #designer .content-wrapper .sideber-wrapper .sidebar-content .description .category-text:after, #project-post .content-wrapper .sideber-wrapper .sidebar-content .description .category-text:after {
            display: inline-block;
            content: '、'; }
      #blog-post .content-wrapper .sideber-wrapper .sidebar-content .html-content p, #designer .content-wrapper .sideber-wrapper .sidebar-content .html-content p, #project-post .content-wrapper .sideber-wrapper .sidebar-content .html-content p {
        margin: 0 !important; }
      #blog-post .content-wrapper .sideber-wrapper .sidebar-content .html-content *, #designer .content-wrapper .sideber-wrapper .sidebar-content .html-content *, #project-post .content-wrapper .sideber-wrapper .sidebar-content .html-content * {
        color: #737373 !important;
        letter-spacing: 0px !important;
        line-height: 21px !important;
        font-size: 13px !important; }
      #blog-post .content-wrapper .sideber-wrapper .sidebar-content .html-content a, #designer .content-wrapper .sideber-wrapper .sidebar-content .html-content a, #project-post .content-wrapper .sideber-wrapper .sidebar-content .html-content a {
        color: #0071C5 !important;
        word-break: break-all !important; }
    #blog-post .content-wrapper .sideber-wrapper .mobile-designer-label-bar, #designer .content-wrapper .sideber-wrapper .mobile-designer-label-bar, #project-post .content-wrapper .sideber-wrapper .mobile-designer-label-bar {
      display: none;
      margin: 0 0 10px 0;
      background-color: #fff; }
      #blog-post .content-wrapper .sideber-wrapper .mobile-designer-label-bar .label-item, #designer .content-wrapper .sideber-wrapper .mobile-designer-label-bar .label-item, #project-post .content-wrapper .sideber-wrapper .mobile-designer-label-bar .label-item {
        height: 40px;
        color: #484848;
        border-right: 1px solid #EEEEEE;
        border-bottom: 1px solid #EEEEEE;
        font-size: 13px;
        font-size: 0.8125rem;
        -webkit-flex: 1;
        flex: 1;
        display: -webkit-inline-flex;
        display: inline-flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center; }
        #blog-post .content-wrapper .sideber-wrapper .mobile-designer-label-bar .label-item:last-child, #designer .content-wrapper .sideber-wrapper .mobile-designer-label-bar .label-item:last-child, #project-post .content-wrapper .sideber-wrapper .mobile-designer-label-bar .label-item:last-child {
          border-right: none; }
        #blog-post .content-wrapper .sideber-wrapper .mobile-designer-label-bar .label-item.active, #designer .content-wrapper .sideber-wrapper .mobile-designer-label-bar .label-item.active, #project-post .content-wrapper .sideber-wrapper .mobile-designer-label-bar .label-item.active {
          border-bottom: 1px solid #0071C5;
          color: #0071C5; }

#home .block-wrapper .product-class .product-item, .all-product .product-list-wrapper .product-class .product-item, #search-result .content .product-list-wrapper .product-class .product-item, #product .product-content .left-content .hot-wrapper .hot-list .product-item {
  display: block;
  position: relative;
  width: 260px;
  height: 356px;
  margin: 10px;
  float: left;
  cursor: pointer;
  background-color: #fff; }
  #home .block-wrapper .product-class .product-item:hover .product-info .name, .all-product .product-list-wrapper .product-class .product-item:hover .product-info .name, #search-result .content .product-list-wrapper .product-class .product-item:hover .product-info .name, #product .product-content .left-content .hot-wrapper .hot-list .product-item:hover .product-info .name {
    color: #ee7c68; }
  #home .block-wrapper .product-class .product-item-50-width.product-item, .all-product .product-list-wrapper .product-class .product-item-50-width.product-item, #search-result .content .product-list-wrapper .product-class .product-item-50-width.product-item, #product .product-content .left-content .hot-wrapper .hot-list .product-item-50-width.product-item {
    width: 540px; }
  #home .block-wrapper .product-class .product-item .product-image, .all-product .product-list-wrapper .product-class .product-item .product-image, #search-result .content .product-list-wrapper .product-class .product-item .product-image, #product .product-content .left-content .hot-wrapper .hot-list .product-item .product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 260px;
    border: 1px solid #DADADA;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; }
  #home .block-wrapper .product-class .product-item .product-info, .all-product .product-list-wrapper .product-class .product-item .product-info, #search-result .content .product-list-wrapper .product-class .product-item .product-info, #product .product-content .left-content .hot-wrapper .hot-list .product-item .product-info {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 96px;
    padding: 20px 10px;
    text-align: center; }
    #home .block-wrapper .product-class .product-item .product-info .name, .all-product .product-list-wrapper .product-class .product-item .product-info .name, #search-result .content .product-list-wrapper .product-class .product-item .product-info .name, #product .product-content .left-content .hot-wrapper .hot-list .product-item .product-info .name {
      color: #000;
      font-size: 16px;
      text-align: center;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    #home .block-wrapper .product-class .product-item .product-info .price, .all-product .product-list-wrapper .product-class .product-item .product-info .price, #search-result .content .product-list-wrapper .product-class .product-item .product-info .price, #product .product-content .left-content .hot-wrapper .hot-list .product-item .product-info .price {
      margin: 8px 0 0 0;
      color: #737373;
      font-size: 14px; }
      #home .block-wrapper .product-class .product-item .product-info .price .price-number, .all-product .product-list-wrapper .product-class .product-item .product-info .price .price-number, #search-result .content .product-list-wrapper .product-class .product-item .product-info .price .price-number, #product .product-content .left-content .hot-wrapper .hot-list .product-item .product-info .price .price-number {
        margin: 0 4px 0 0;
        color: #000;
        font-size: 20px;
        font-weight: 600; }
      #home .block-wrapper .product-class .product-item .product-info .price .price-unit, .all-product .product-list-wrapper .product-class .product-item .product-info .price .price-unit, #search-result .content .product-list-wrapper .product-class .product-item .product-info .price .price-unit, #product .product-content .left-content .hot-wrapper .hot-list .product-item .product-info .price .price-unit {
        color: #000;
        font-size: 14px; }

#home .block-wrapper .product-class, .all-product .product-list-wrapper .product-class, #search-result .content .product-list-wrapper .product-class {
  position: relative;
  display: inline-block;
  margin: -10px; }
  #home .block-wrapper .product-class:after, .all-product .product-list-wrapper .product-class:after, #search-result .content .product-list-wrapper .product-class:after {
    clear: both;
    content: '';
    display: inline-block;
    height: 0;
    overflow: hidden; }
  #home .block-wrapper .product-class .adblock-item, .all-product .product-list-wrapper .product-class .adblock-item, #search-result .content .product-list-wrapper .product-class .adblock-item {
    display: block;
    position: relative;
    width: 540px;
    height: 356px;
    margin: 10px;
    float: left;
    cursor: pointer;
    background-color: #fff;
    -moz-transition: box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    -webkit-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s; }
    #home .block-wrapper .product-class .adblock-item:hover, .all-product .product-list-wrapper .product-class .adblock-item:hover, #search-result .content .product-list-wrapper .product-class .adblock-item:hover {
      -moz-box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.35);
      -webkit-box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.35);
      box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.35); }
    #home .block-wrapper .product-class .adblock-item .adblock-image, .all-product .product-list-wrapper .product-class .adblock-item .adblock-image, #search-result .content .product-list-wrapper .product-class .adblock-item .adblock-image {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-size: 100% 100%;
      background-repeat: no-repeat;
      background-position: center; }

#home .elevator-bar, .all-product .elevator-bar {
  position: fixed;
  left: calc(50% - 602px);
  top: 50%;
  z-index: 3;
  border-top: 1px solid #DADADA;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }
  #home .elevator-bar .elevator-item, .all-product .elevator-bar .elevator-item {
    width: 40px;
    min-height: 40px;
    line-height: 12px;
    margin: 0 0 1px 0;
    padding: 7px;
    border-left: 1px solid #DADADA;
    border-right: 1px solid #DADADA;
    border-bottom: 1px solid #DADADA;
    color: #484848;
    background-color: #FFFFFF;
    cursor: pointer;
    font-size: 12px;
    font-size: 0.75rem;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center; }
    #home .elevator-bar .elevator-item:hover, .all-product .elevator-bar .elevator-item:hover, #home .elevator-bar .elevator-item.active, .all-product .elevator-bar .elevator-item.active {
      color: #FFFFFF;
      background-color: #ee7c68; }
  @media screen and (max-width: 1410px) {
    #home .elevator-bar, .all-product .elevator-bar {
      display: none; } }

.order-list, .order-history, .profile, .favorite-address, #system-message, #points, #order-template, #bonuspoints, #special-offer-list, #special-offer-info {
  position: relative; }
  .order-list .member-header, .order-history .member-header, .profile .member-header, .favorite-address .member-header, #system-message .member-header, #points .member-header, #order-template .member-header, #bonuspoints .member-header, #special-offer-list .member-header, #special-offer-info .member-header {
    position: relative;
    width: 100%;
    height: 61px;
    margin: 0;
    padding: 0 20px;
    border-bottom: 1px solid #DADADA;
    background-color: #FFF;
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center; }
    .order-list .member-header .title, .order-history .member-header .title, .profile .member-header .title, .favorite-address .member-header .title, #system-message .member-header .title, #points .member-header .title, #order-template .member-header .title, #bonuspoints .member-header .title, #special-offer-list .member-header .title, #special-offer-info .member-header .title {
      height: 100%;
      margin: 0 20px 0 0;
      font-weight: 600;
      color: #2A2A2A;
      font-size: 16px;
      font-size: 1rem;
      display: -webkit-inline-flex;
      display: inline-flex;
      -webkit-align-items: center;
      align-items: center; }
    .order-list .member-header .header-divide, .order-history .member-header .header-divide, .profile .member-header .header-divide, .favorite-address .member-header .header-divide, #system-message .member-header .header-divide, #points .member-header .header-divide, #order-template .member-header .header-divide, #bonuspoints .member-header .header-divide, #special-offer-list .member-header .header-divide, #special-offer-info .member-header .header-divide {
      display: inline-block;
      width: 1px;
      height: 16px;
      margin: 0 16px 0 0;
      background-color: #DDDDDD; }
    .order-list .member-header .sub-title, .order-history .member-header .sub-title, .profile .member-header .sub-title, .favorite-address .member-header .sub-title, #system-message .member-header .sub-title, #points .member-header .sub-title, #order-template .member-header .sub-title, #bonuspoints .member-header .sub-title, #special-offer-list .member-header .sub-title, #special-offer-info .member-header .sub-title {
      height: 100%;
      color: #484848;
      font-size: 14px;
      font-size: 0.875rem;
      display: -webkit-inline-flex;
      display: inline-flex;
      -webkit-align-items: center;
      align-items: center; }
    .order-list .member-header .nav-list, .order-history .member-header .nav-list, .profile .member-header .nav-list, .favorite-address .member-header .nav-list, #system-message .member-header .nav-list, #points .member-header .nav-list, #order-template .member-header .nav-list, #bonuspoints .member-header .nav-list, #special-offer-list .member-header .nav-list, #special-offer-info .member-header .nav-list {
      display: inline-block;
      vertical-align: top;
      height: 100%;
      margin: 0 16px 0 0;
      padding: 0; }
      .order-list .member-header .nav-list .nav-item, .order-history .member-header .nav-list .nav-item, .profile .member-header .nav-list .nav-item, .favorite-address .member-header .nav-list .nav-item, #system-message .member-header .nav-list .nav-item, #points .member-header .nav-list .nav-item, #order-template .member-header .nav-list .nav-item, #bonuspoints .member-header .nav-list .nav-item, #special-offer-list .member-header .nav-list .nav-item, #special-offer-info .member-header .nav-list .nav-item {
        position: relative;
        color: #484848;
        height: 60px;
        display: -webkit-inline-flex;
        display: inline-flex;
        -webkit-align-items: center;
        align-items: center; }
        .order-list .member-header .nav-list .nav-item:hover, .order-history .member-header .nav-list .nav-item:hover, .profile .member-header .nav-list .nav-item:hover, .favorite-address .member-header .nav-list .nav-item:hover, #system-message .member-header .nav-list .nav-item:hover, #points .member-header .nav-list .nav-item:hover, #order-template .member-header .nav-list .nav-item:hover, #bonuspoints .member-header .nav-list .nav-item:hover, #special-offer-list .member-header .nav-list .nav-item:hover, #special-offer-info .member-header .nav-list .nav-item:hover, .order-list .member-header .nav-list .nav-item.active, .order-history .member-header .nav-list .nav-item.active, .profile .member-header .nav-list .nav-item.active, .favorite-address .member-header .nav-list .nav-item.active, #system-message .member-header .nav-list .nav-item.active, #points .member-header .nav-list .nav-item.active, #order-template .member-header .nav-list .nav-item.active, #bonuspoints .member-header .nav-list .nav-item.active, #special-offer-list .member-header .nav-list .nav-item.active, #special-offer-info .member-header .nav-list .nav-item.active {
          color: #ee7c68; }
          .order-list .member-header .nav-list .nav-item:hover a, .order-history .member-header .nav-list .nav-item:hover a, .profile .member-header .nav-list .nav-item:hover a, .favorite-address .member-header .nav-list .nav-item:hover a, #system-message .member-header .nav-list .nav-item:hover a, #points .member-header .nav-list .nav-item:hover a, #order-template .member-header .nav-list .nav-item:hover a, #bonuspoints .member-header .nav-list .nav-item:hover a, #special-offer-list .member-header .nav-list .nav-item:hover a, #special-offer-info .member-header .nav-list .nav-item:hover a, .order-list .member-header .nav-list .nav-item.active a, .order-history .member-header .nav-list .nav-item.active a, .profile .member-header .nav-list .nav-item.active a, .favorite-address .member-header .nav-list .nav-item.active a, #system-message .member-header .nav-list .nav-item.active a, #points .member-header .nav-list .nav-item.active a, #order-template .member-header .nav-list .nav-item.active a, #bonuspoints .member-header .nav-list .nav-item.active a, #special-offer-list .member-header .nav-list .nav-item.active a, #special-offer-info .member-header .nav-list .nav-item.active a {
            color: #ee7c68; }
        .order-list .member-header .nav-list .nav-item a, .order-history .member-header .nav-list .nav-item a, .profile .member-header .nav-list .nav-item a, .favorite-address .member-header .nav-list .nav-item a, #system-message .member-header .nav-list .nav-item a, #points .member-header .nav-list .nav-item a, #order-template .member-header .nav-list .nav-item a, #bonuspoints .member-header .nav-list .nav-item a, #special-offer-list .member-header .nav-list .nav-item a, #special-offer-info .member-header .nav-list .nav-item a {
          color: #484848;
          display: inline-block;
          padding: 0 10px;
          height: 60px;
          line-height: 60px;
          font-size: 14px;
          font-size: 0.875rem; }
        .order-list .member-header .nav-list .nav-item .number-tip, .order-history .member-header .nav-list .nav-item .number-tip, .profile .member-header .nav-list .nav-item .number-tip, .favorite-address .member-header .nav-list .nav-item .number-tip, #system-message .member-header .nav-list .nav-item .number-tip, #points .member-header .nav-list .nav-item .number-tip, #order-template .member-header .nav-list .nav-item .number-tip, #bonuspoints .member-header .nav-list .nav-item .number-tip, #special-offer-list .member-header .nav-list .nav-item .number-tip, #special-offer-info .member-header .nav-list .nav-item .number-tip {
          top: 12px;
          right: -3px; }
    .order-list .member-header .right-info, .order-history .member-header .right-info, .profile .member-header .right-info, .favorite-address .member-header .right-info, #system-message .member-header .right-info, #points .member-header .right-info, #order-template .member-header .right-info, #bonuspoints .member-header .right-info, #special-offer-list .member-header .right-info, #special-offer-info .member-header .right-info {
      margin: 0 0 0 auto;
      display: -webkit-inline-flex;
      display: inline-flex;
      -webkit-flex-direction: column;
      flex-direction: column;
      -webkit-align-items: flex-end;
      align-items: flex-end;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-flex: 1;
      flex: 1; }
      .order-list .member-header .right-info .info-tip, .order-history .member-header .right-info .info-tip, .profile .member-header .right-info .info-tip, .favorite-address .member-header .right-info .info-tip, #system-message .member-header .right-info .info-tip, #points .member-header .right-info .info-tip, #order-template .member-header .right-info .info-tip, #bonuspoints .member-header .right-info .info-tip, #special-offer-list .member-header .right-info .info-tip, #special-offer-info .member-header .right-info .info-tip {
        color: #737373;
        cursor: pointer;
        vertical-align: text-bottom;
        display: -webkit-inline-flex;
        display: inline-flex; }
        .order-list .member-header .right-info .info-tip .tip-icon, .order-history .member-header .right-info .info-tip .tip-icon, .profile .member-header .right-info .info-tip .tip-icon, .favorite-address .member-header .right-info .info-tip .tip-icon, #system-message .member-header .right-info .info-tip .tip-icon, #points .member-header .right-info .info-tip .tip-icon, #order-template .member-header .right-info .info-tip .tip-icon, #bonuspoints .member-header .right-info .info-tip .tip-icon, #special-offer-list .member-header .right-info .info-tip .tip-icon, #special-offer-info .member-header .right-info .info-tip .tip-icon {
          font-size: 20px;
          font-size: 1.25rem; }
          .order-list .member-header .right-info .info-tip .tip-icon:after, .order-history .member-header .right-info .info-tip .tip-icon:after, .profile .member-header .right-info .info-tip .tip-icon:after, .favorite-address .member-header .right-info .info-tip .tip-icon:after, #system-message .member-header .right-info .info-tip .tip-icon:after, #points .member-header .right-info .info-tip .tip-icon:after, #order-template .member-header .right-info .info-tip .tip-icon:after, #bonuspoints .member-header .right-info .info-tip .tip-icon:after, #special-offer-list .member-header .right-info .info-tip .tip-icon:after, #special-offer-info .member-header .right-info .info-tip .tip-icon:after {
            font-size: 14px;
            font-size: 0.875rem; }
    .order-list .member-header .right-action, .order-history .member-header .right-action, .profile .member-header .right-action, .favorite-address .member-header .right-action, #system-message .member-header .right-action, #points .member-header .right-action, #order-template .member-header .right-action, #bonuspoints .member-header .right-action, #special-offer-list .member-header .right-action, #special-offer-info .member-header .right-action {
      display: inline-block;
      margin: 0 0 0 auto; }
      .order-list .member-header .right-action .button, .order-history .member-header .right-action .button, .profile .member-header .right-action .button, .favorite-address .member-header .right-action .button, #system-message .member-header .right-action .button, #points .member-header .right-action .button, #order-template .member-header .right-action .button, #bonuspoints .member-header .right-action .button, #special-offer-list .member-header .right-action .button, #special-offer-info .member-header .right-action .button {
        height: 40px;
        line-height: 40px;
        margin: 0 0 0 10px; }
  .order-list .member-content, .order-history .member-content, .profile .member-content, .favorite-address .member-content, #system-message .member-content, #points .member-content, #order-template .member-content, #bonuspoints .member-content, #special-offer-list .member-content, #special-offer-info .member-content {
    position: relative;
    min-height: 600px; }
    .order-list .member-content .status-message, .order-history .member-content .status-message, .profile .member-content .status-message, .favorite-address .member-content .status-message, #system-message .member-content .status-message, #points .member-content .status-message, #order-template .member-content .status-message, #bonuspoints .member-content .status-message, #special-offer-list .member-content .status-message, #special-offer-info .member-content .status-message {
      position: absolute;
      top: 50%;
      left: 50%;
      margin: 0;
      -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
      -webkit-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%); }
      .order-list .member-content .status-message .status-icon, .order-history .member-content .status-message .status-icon, .profile .member-content .status-message .status-icon, .favorite-address .member-content .status-message .status-icon, #system-message .member-content .status-message .status-icon, #points .member-content .status-message .status-icon, #order-template .member-content .status-message .status-icon, #bonuspoints .member-content .status-message .status-icon, #special-offer-list .member-content .status-message .status-icon, #special-offer-info .member-content .status-message .status-icon {
        color: #737373;
        font-size: 54px;
        font-size: 3.375rem; }
      .order-list .member-content .status-message .status-title, .order-history .member-content .status-message .status-title, .profile .member-content .status-message .status-title, .favorite-address .member-content .status-message .status-title, #system-message .member-content .status-message .status-title, #points .member-content .status-message .status-title, #order-template .member-content .status-message .status-title, #bonuspoints .member-content .status-message .status-title, #special-offer-list .member-content .status-message .status-title, #special-offer-info .member-content .status-message .status-title {
        margin: 0 auto 10px auto;
        color: #737373; }
      .order-list .member-content .status-message .status-description, .order-history .member-content .status-message .status-description, .profile .member-content .status-message .status-description, .favorite-address .member-content .status-message .status-description, #system-message .member-content .status-message .status-description, #points .member-content .status-message .status-description, #order-template .member-content .status-message .status-description, #bonuspoints .member-content .status-message .status-description, #special-offer-list .member-content .status-message .status-description, #special-offer-info .member-content .status-message .status-description {
        width: 360px;
        line-height: 24px;
        margin: 0 auto;
        color: #737373; }
        .order-list .member-content .status-message .status-description .link, .order-history .member-content .status-message .status-description .link, .profile .member-content .status-message .status-description .link, .favorite-address .member-content .status-message .status-description .link, #system-message .member-content .status-message .status-description .link, #points .member-content .status-message .status-description .link, #order-template .member-content .status-message .status-description .link, #bonuspoints .member-content .status-message .status-description .link, #special-offer-list .member-content .status-message .status-description .link, #special-offer-info .member-content .status-message .status-description .link {
          text-decoration: underline;
          color: #ee7c68;
          cursor: pointer; }
    .order-list .member-content .loading-state, .order-history .member-content .loading-state, .profile .member-content .loading-state, .favorite-address .member-content .loading-state, #system-message .member-content .loading-state, #points .member-content .loading-state, #order-template .member-content .loading-state, #bonuspoints .member-content .loading-state, #special-offer-list .member-content .loading-state, #special-offer-info .member-content .loading-state {
      position: absolute;
      top: 50%;
      left: 50%;
      margin: 0;
      -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
      -webkit-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%); }
      .order-list .member-content .loading-state.infinite-loading, .order-history .member-content .loading-state.infinite-loading, .profile .member-content .loading-state.infinite-loading, .favorite-address .member-content .loading-state.infinite-loading, #system-message .member-content .loading-state.infinite-loading, #points .member-content .loading-state.infinite-loading, #order-template .member-content .loading-state.infinite-loading, #bonuspoints .member-content .loading-state.infinite-loading, #special-offer-list .member-content .loading-state.infinite-loading, #special-offer-info .member-content .loading-state.infinite-loading {
        position: static;
        margin: 40px 0;
        -moz-transform: none;
        -ms-transform: none;
        -webkit-transform: none;
        transform: none; }

.favorite-address .member-content .log-table, #points .log-table, #order-template .log-table, #bonuspoints .log-table, #special-offer-list .log-table {
  position: relative; }
  .favorite-address .member-content .has-border.log-table, #points .has-border.log-table, #order-template .has-border.log-table, #bonuspoints .has-border.log-table, #special-offer-list .has-border.log-table {
    border-top: 1px solid #EEEEEE;
    border-left: 1px solid #EEEEEE;
    border-right: 1px solid #EEEEEE; }
  .favorite-address .member-content .log-table .log-table-tr, #points .log-table .log-table-tr, #order-template .log-table .log-table-tr, #bonuspoints .log-table .log-table-tr, #special-offer-list .log-table .log-table-tr {
    width: 100%;
    min-height: 50px;
    padding: 0 20px;
    border-bottom: 1px solid #EEEEEE;
    color: #262524;
    font-size: 14px;
    font-size: 0.875rem;
    display: -webkit-flex;
    display: flex; }
    .favorite-address .member-content .log-table .log-table-tr.header, #points .log-table .log-table-tr.header, #order-template .log-table .log-table-tr.header, #bonuspoints .log-table .log-table-tr.header, #special-offer-list .log-table .log-table-tr.header {
      min-height: 40px;
      border-bottom: 1px solid #DDDDDD;
      background-color: #FAFAFA; }
      .favorite-address .member-content .log-table .log-table-tr.header .log-table-td, #points .log-table .log-table-tr.header .log-table-td, #order-template .log-table .log-table-tr.header .log-table-td, #bonuspoints .log-table .log-table-tr.header .log-table-td, #special-offer-list .log-table .log-table-tr.header .log-table-td {
        font-weight: 600; }
    .favorite-address .member-content .log-table .log-table-tr.clickable, #points .log-table .log-table-tr.clickable, #order-template .log-table .log-table-tr.clickable, #bonuspoints .log-table .log-table-tr.clickable, #special-offer-list .log-table .log-table-tr.clickable {
      cursor: pointer; }
      .favorite-address .member-content .log-table .log-table-tr.clickable:hover, #points .log-table .log-table-tr.clickable:hover, #order-template .log-table .log-table-tr.clickable:hover, #bonuspoints .log-table .log-table-tr.clickable:hover, #special-offer-list .log-table .log-table-tr.clickable:hover {
        background-color: #eee; }
    .favorite-address .member-content .log-table .log-table-tr .log-table-td, #points .log-table .log-table-tr .log-table-td, #order-template .log-table .log-table-tr .log-table-td, #bonuspoints .log-table .log-table-tr .log-table-td, #special-offer-list .log-table .log-table-tr .log-table-td {
      min-width: 0;
      padding: 6px 6px 6px 0;
      color: #484848;
      -webkit-flex: 1;
      flex: 1;
      display: -webkit-inline-flex;
      display: inline-flex;
      -webkit-align-items: center;
      align-items: center; }
      .favorite-address .member-content .log-table .log-table-tr .log-table-td:last-child, #points .log-table .log-table-tr .log-table-td:last-child, #order-template .log-table .log-table-tr .log-table-td:last-child, #bonuspoints .log-table .log-table-tr .log-table-td:last-child, #special-offer-list .log-table .log-table-tr .log-table-td:last-child {
        padding: 6px 0; }
      .favorite-address .member-content .log-table .log-table-tr .log-table-td.custom-width, #points .log-table .log-table-tr .log-table-td.custom-width, #order-template .log-table .log-table-tr .log-table-td.custom-width, #bonuspoints .log-table .log-table-tr .log-table-td.custom-width, #special-offer-list .log-table .log-table-tr .log-table-td.custom-width {
        -webkit-flex: none;
        flex: none; }
      .favorite-address .member-content .log-table .log-table-tr .log-table-td.text-center, #points .log-table .log-table-tr .log-table-td.text-center, #order-template .log-table .log-table-tr .log-table-td.text-center, #bonuspoints .log-table .log-table-tr .log-table-td.text-center, #special-offer-list .log-table .log-table-tr .log-table-td.text-center {
        -webkit-justify-content: center;
        justify-content: center; }
      .favorite-address .member-content .log-table .log-table-tr .log-table-td.loading, #points .log-table .log-table-tr .log-table-td.loading, #order-template .log-table .log-table-tr .log-table-td.loading, #bonuspoints .log-table .log-table-tr .log-table-td.loading, #special-offer-list .log-table .log-table-tr .log-table-td.loading {
        height: 100px;
        -webkit-justify-content: center;
        justify-content: center; }
      .favorite-address .member-content .log-table .log-table-tr .log-table-td.has-detail, #points .log-table .log-table-tr .log-table-td.has-detail, #order-template .log-table .log-table-tr .log-table-td.has-detail, #bonuspoints .log-table .log-table-tr .log-table-td.has-detail, #special-offer-list .log-table .log-table-tr .log-table-td.has-detail {
        padding: 20px 6px 6px 0;
        -webkit-align-items: start;
        align-items: start;
        -webkit-flex-direction: column;
        flex-direction: column; }
      .favorite-address .member-content .log-table .log-table-tr .log-table-td .link, #points .log-table .log-table-tr .log-table-td .link, #order-template .log-table .log-table-tr .log-table-td .link, #bonuspoints .log-table .log-table-tr .log-table-td .link, #special-offer-list .log-table .log-table-tr .log-table-td .link {
        color: #ee7c68;
        cursor: pointer; }
        .favorite-address .member-content .log-table .log-table-tr .log-table-td .link:hover, #points .log-table .log-table-tr .log-table-td .link:hover, #order-template .log-table .log-table-tr .log-table-td .link:hover, #bonuspoints .log-table .log-table-tr .log-table-td .link:hover, #special-offer-list .log-table .log-table-tr .log-table-td .link:hover {
          text-decoration: underline; }
      .favorite-address .member-content .log-table .log-table-tr .log-table-td .button, #points .log-table .log-table-tr .log-table-td .button, #order-template .log-table .log-table-tr .log-table-td .button, #bonuspoints .log-table .log-table-tr .log-table-td .button, #special-offer-list .log-table .log-table-tr .log-table-td .button {
        height: 24px;
        line-height: 24px;
        margin: 0 10px 0 0;
        padding: 0 10px;
        font-weight: 600;
        font-size: 12px;
        font-size: 0.75rem; }
        .favorite-address .member-content .log-table .log-table-tr .log-table-td .button:last-child, #points .log-table .log-table-tr .log-table-td .button:last-child, #order-template .log-table .log-table-tr .log-table-td .button:last-child, #bonuspoints .log-table .log-table-tr .log-table-td .button:last-child, #special-offer-list .log-table .log-table-tr .log-table-td .button:last-child {
          margin: 0; }
      .favorite-address .member-content .log-table .log-table-tr .log-table-td .ellipsis-text, #points .log-table .log-table-tr .log-table-td .ellipsis-text, #order-template .log-table .log-table-tr .log-table-td .ellipsis-text, #bonuspoints .log-table .log-table-tr .log-table-td .ellipsis-text, #special-offer-list .log-table .log-table-tr .log-table-td .ellipsis-text {
        display: inline-block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; }
      .favorite-address .member-content .log-table .log-table-tr .log-table-td .show-detail, #points .log-table .log-table-tr .log-table-td .show-detail, #order-template .log-table .log-table-tr .log-table-td .show-detail, #bonuspoints .log-table .log-table-tr .log-table-td .show-detail, #special-offer-list .log-table .log-table-tr .log-table-td .show-detail {
        font-size: 12px;
        color: #0071C5;
        cursor: pointer; }
        .favorite-address .member-content .log-table .log-table-tr .log-table-td .show-detail:hover, #points .log-table .log-table-tr .log-table-td .show-detail:hover, #order-template .log-table .log-table-tr .log-table-td .show-detail:hover, #bonuspoints .log-table .log-table-tr .log-table-td .show-detail:hover, #special-offer-list .log-table .log-table-tr .log-table-td .show-detail:hover {
          text-decoration: underline; }
      .favorite-address .member-content .log-table .log-table-tr .log-table-td .orderitem-list, #points .log-table .log-table-tr .log-table-td .orderitem-list, #order-template .log-table .log-table-tr .log-table-td .orderitem-list, #bonuspoints .log-table .log-table-tr .log-table-td .orderitem-list, #special-offer-list .log-table .log-table-tr .log-table-td .orderitem-list {
        width: 70%;
        margin: 6px;
        padding: 0 0 0 10px;
        border-left: 1px solid #eee; }
        .favorite-address .member-content .log-table .log-table-tr .log-table-td .orderitem-list .orderitem-log, #points .log-table .log-table-tr .log-table-td .orderitem-list .orderitem-log, #order-template .log-table .log-table-tr .log-table-td .orderitem-list .orderitem-log, #bonuspoints .log-table .log-table-tr .log-table-td .orderitem-list .orderitem-log, #special-offer-list .log-table .log-table-tr .log-table-td .orderitem-list .orderitem-log {
          font-size: 12px;
          display: -webkit-flex;
          display: flex;
          -webkit-align-items: center;
          align-items: center; }
          .favorite-address .member-content .log-table .log-table-tr .log-table-td .orderitem-list .orderitem-log .orderitem-log-price, #points .log-table .log-table-tr .log-table-td .orderitem-list .orderitem-log .orderitem-log-price, #order-template .log-table .log-table-tr .log-table-td .orderitem-list .orderitem-log .orderitem-log-price, #bonuspoints .log-table .log-table-tr .log-table-td .orderitem-list .orderitem-log .orderitem-log-price, #special-offer-list .log-table .log-table-tr .log-table-td .orderitem-list .orderitem-log .orderitem-log-price {
            margin: 0 0 0 auto; }
      .favorite-address .member-content .log-table .log-table-tr .log-table-td .file-download-hint, #points .log-table .log-table-tr .log-table-td .file-download-hint, #order-template .log-table .log-table-tr .log-table-td .file-download-hint, #bonuspoints .log-table .log-table-tr .log-table-td .file-download-hint, #special-offer-list .log-table .log-table-tr .log-table-td .file-download-hint {
        cursor: pointer; }
        .favorite-address .member-content .log-table .log-table-tr .log-table-td .file-download-hint i, #points .log-table .log-table-tr .log-table-td .file-download-hint i, #order-template .log-table .log-table-tr .log-table-td .file-download-hint i, #bonuspoints .log-table .log-table-tr .log-table-td .file-download-hint i, #special-offer-list .log-table .log-table-tr .log-table-td .file-download-hint i {
          font-size: 18px;
          color: #FF2C22; }

#quickly-order .content .form-title, #create-order-template .content .form-title, #add-template-to-cart-modal .content .form-title, #change-orderitem-modal .content .form-title, #special-offer .offer-content .form-title {
  height: 40px;
  line-height: 40px;
  margin: 0 0 20px 0;
  padding: 0 16px;
  color: #484848;
  letter-spacing: 0;
  background-color: #FAFAFA;
  font-size: 14px;
  font-size: 0.875rem;
  -moz-box-shadow: inset 0 -1px 0 0 #DDDDDD, inset 0px 1px 0 0 #DDDDDD;
  -webkit-box-shadow: inset 0 -1px 0 0 #DDDDDD, inset 0px 1px 0 0 #DDDDDD;
  box-shadow: inset 0 -1px 0 0 #DDDDDD, inset 0px 1px 0 0 #DDDDDD; }
  #quickly-order .content .form-title.no-topshadow, #create-order-template .content .form-title.no-topshadow, #add-template-to-cart-modal .content .form-title.no-topshadow, #change-orderitem-modal .content .form-title.no-topshadow, #special-offer .offer-content .form-title.no-topshadow {
    -moz-box-shadow: inset 0 -1px 0 0 #DDDDDD;
    -webkit-box-shadow: inset 0 -1px 0 0 #DDDDDD;
    box-shadow: inset 0 -1px 0 0 #DDDDDD; }
#quickly-order .content .form-description, #create-order-template .content .form-description, #add-template-to-cart-modal .content .form-description, #change-orderitem-modal .content .form-description, #special-offer .offer-content .form-description {
  margin: 0 0 10px 0;
  padding: 0 16px;
  color: #484848;
  letter-spacing: 0;
  font-size: 13px;
  font-size: 0.8125rem; }
#quickly-order .content .form-item, #create-order-template .content .form-item, #add-template-to-cart-modal .content .form-item, #change-orderitem-modal .content .form-item, #special-offer .offer-content .form-item {
  line-height: 25px;
  padding: 0 20px;
  color: #484848;
  font-size: 14px;
  font-size: 0.875rem;
  display: -webkit-flex;
  display: flex; }
  #quickly-order .content .form-item.middle, #create-order-template .content .form-item.middle, #add-template-to-cart-modal .content .form-item.middle, #change-orderitem-modal .content .form-item.middle, #special-offer .offer-content .form-item.middle {
    margin: 0 0 20px 0;
    -webkit-align-items: center;
    align-items: center; }
  #quickly-order .content .form-item .label, #create-order-template .content .form-item .label, #add-template-to-cart-modal .content .form-item .label, #change-orderitem-modal .content .form-item .label, #special-offer .offer-content .form-item .label {
    display: inline-block;
    width: 86px;
    min-width: 86px;
    margin: 0 20px 0 0;
    font-weight: 600; }
    #quickly-order .content .form-item .label.align-center, #create-order-template .content .form-item .label.align-center, #add-template-to-cart-modal .content .form-item .label.align-center, #change-orderitem-modal .content .form-item .label.align-center, #special-offer .offer-content .form-item .label.align-center {
      padding: 0 0 20px 0;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center; }
  #quickly-order .content .form-item .accessory-label, #create-order-template .content .form-item .accessory-label, #add-template-to-cart-modal .content .form-item .accessory-label, #change-orderitem-modal .content .form-item .accessory-label, #special-offer .offer-content .form-item .accessory-label {
    display: inline-block;
    margin: 0 20px 0 0;
    font-weight: 600; }
  #quickly-order .content .form-item .description, #create-order-template .content .form-item .description, #add-template-to-cart-modal .content .form-item .description, #change-orderitem-modal .content .form-item .description, #special-offer .offer-content .form-item .description {
    margin: 0 10px 22px 0; }
  #quickly-order .content .form-item .free-size-hint, #create-order-template .content .form-item .free-size-hint, #add-template-to-cart-modal .content .form-item .free-size-hint, #change-orderitem-modal .content .form-item .free-size-hint, #special-offer .offer-content .form-item .free-size-hint {
    display: inline-block;
    font-size: 13px;
    font-size: 0.8125rem; }
  #quickly-order .content .form-item .transparent-tip, #create-order-template .content .form-item .transparent-tip, #add-template-to-cart-modal .content .form-item .transparent-tip, #change-orderitem-modal .content .form-item .transparent-tip, #special-offer .offer-content .form-item .transparent-tip {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: auto 5px;
    border: 1px solid #000;
    background-color: #fff;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%; }
  #quickly-order .content .form-item .select-list, #create-order-template .content .form-item .select-list, #add-template-to-cart-modal .content .form-item .select-list, #change-orderitem-modal .content .form-item .select-list, #special-offer .offer-content .form-item .select-list {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap; }
    #quickly-order .content .form-item .select-list .custom-item, #create-order-template .content .form-item .select-list .custom-item, #add-template-to-cart-modal .content .form-item .select-list .custom-item, #change-orderitem-modal .content .form-item .select-list .custom-item, #special-offer .offer-content .form-item .select-list .custom-item {
      margin: 0 10px 20px 0;
      display: -webkit-inline-flex;
      display: inline-flex;
      -webkit-align-items: center;
      align-items: center; }
      #quickly-order .content .form-item .select-list .custom-item:hover .custom-label, #create-order-template .content .form-item .select-list .custom-item:hover .custom-label, #add-template-to-cart-modal .content .form-item .select-list .custom-item:hover .custom-label, #change-orderitem-modal .content .form-item .select-list .custom-item:hover .custom-label, #special-offer .offer-content .form-item .select-list .custom-item:hover .custom-label {
        color: #000;
        border: 1px solid #919191; }
      #quickly-order .content .form-item .select-list .custom-item.selected .custom-label, #create-order-template .content .form-item .select-list .custom-item.selected .custom-label, #add-template-to-cart-modal .content .form-item .select-list .custom-item.selected .custom-label, #change-orderitem-modal .content .form-item .select-list .custom-item.selected .custom-label, #special-offer .offer-content .form-item .select-list .custom-item.selected .custom-label {
        border: 1px solid #ee7c68;
        font-weight: 600;
        color: #fff;
        background-color: #ee7c68; }
      #quickly-order .content .form-item .select-list .custom-item.selected .custom-input, #create-order-template .content .form-item .select-list .custom-item.selected .custom-input, #add-template-to-cart-modal .content .form-item .select-list .custom-item.selected .custom-input, #change-orderitem-modal .content .form-item .select-list .custom-item.selected .custom-input, #special-offer .offer-content .form-item .select-list .custom-item.selected .custom-input {
        display: inline-block; }
      #quickly-order .content .form-item .select-list .custom-item .custom-label, #create-order-template .content .form-item .select-list .custom-item .custom-label, #add-template-to-cart-modal .content .form-item .select-list .custom-item .custom-label, #change-orderitem-modal .content .form-item .select-list .custom-item .custom-label, #special-offer .offer-content .form-item .select-list .custom-item .custom-label {
        display: inline-block;
        min-height: 25px;
        padding: 0 6px;
        border: 1px solid #dddddd;
        text-align: center;
        cursor: pointer; }
      #quickly-order .content .form-item .select-list .custom-item .custom-input, #create-order-template .content .form-item .select-list .custom-item .custom-input, #add-template-to-cart-modal .content .form-item .select-list .custom-item .custom-input, #change-orderitem-modal .content .form-item .select-list .custom-item .custom-input, #special-offer .offer-content .form-item .select-list .custom-item .custom-input {
        display: none;
        width: 100px;
        height: 27px;
        margin: 0;
        padding: 0 6px;
        border: 1px solid #ee7c68;
        border-left: none;
        text-align: left;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        border-radius: 0; }
        #quickly-order .content .form-item .select-list .custom-item .custom-input.error, #create-order-template .content .form-item .select-list .custom-item .custom-input.error, #add-template-to-cart-modal .content .form-item .select-list .custom-item .custom-input.error, #change-orderitem-modal .content .form-item .select-list .custom-item .custom-input.error, #special-offer .offer-content .form-item .select-list .custom-item .custom-input.error {
          border: 1px solid #FF2C22;
          border-left: none; }
    #quickly-order .content .form-item .select-list .select-item, #create-order-template .content .form-item .select-list .select-item, #add-template-to-cart-modal .content .form-item .select-list .select-item, #change-orderitem-modal .content .form-item .select-list .select-item, #special-offer .offer-content .form-item .select-list .select-item {
      display: inline-block;
      min-height: 25px;
      margin: 0 10px 20px 0;
      padding: 0 6px;
      border: 1px solid #dddddd;
      text-align: center;
      cursor: pointer; }
      #quickly-order .content .form-item .select-list .select-item:hover, #create-order-template .content .form-item .select-list .select-item:hover, #add-template-to-cart-modal .content .form-item .select-list .select-item:hover, #change-orderitem-modal .content .form-item .select-list .select-item:hover, #special-offer .offer-content .form-item .select-list .select-item:hover {
        color: #000;
        border: 1px solid #919191; }
      #quickly-order .content .form-item .select-list .select-item.selected, #create-order-template .content .form-item .select-list .select-item.selected, #add-template-to-cart-modal .content .form-item .select-list .select-item.selected, #change-orderitem-modal .content .form-item .select-list .select-item.selected, #special-offer .offer-content .form-item .select-list .select-item.selected {
        border: 1px solid #ee7c68;
        font-weight: 600;
        color: #fff;
        background-color: #ee7c68; }
      #quickly-order .content .form-item .select-list .select-item.single, #create-order-template .content .form-item .select-list .select-item.single, #add-template-to-cart-modal .content .form-item .select-list .select-item.single, #change-orderitem-modal .content .form-item .select-list .select-item.single, #special-offer .offer-content .form-item .select-list .select-item.single {
        border: 1px solid transparent;
        padding: 0 6px 0 0;
        cursor: auto; }
        #quickly-order .content .form-item .select-list .select-item.single:hover, #create-order-template .content .form-item .select-list .select-item.single:hover, #add-template-to-cart-modal .content .form-item .select-list .select-item.single:hover, #change-orderitem-modal .content .form-item .select-list .select-item.single:hover, #special-offer .offer-content .form-item .select-list .select-item.single:hover, #quickly-order .content .form-item .select-list .select-item.single.selected, #create-order-template .content .form-item .select-list .select-item.single.selected, #add-template-to-cart-modal .content .form-item .select-list .select-item.single.selected, #change-orderitem-modal .content .form-item .select-list .select-item.single.selected, #special-offer .offer-content .form-item .select-list .select-item.single.selected {
          border: 1px solid transparent;
          font-weight: 400;
          color: inherit;
          background-color: transparent; }
      #quickly-order .content .form-item .select-list .select-item.file-select, #create-order-template .content .form-item .select-list .select-item.file-select, #add-template-to-cart-modal .content .form-item .select-list .select-item.file-select, #change-orderitem-modal .content .form-item .select-list .select-item.file-select, #special-offer .offer-content .form-item .select-list .select-item.file-select {
        position: relative;
        border: 1px solid #979797;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px; }
        #quickly-order .content .form-item .select-list .select-item.file-select.selected, #create-order-template .content .form-item .select-list .select-item.file-select.selected, #add-template-to-cart-modal .content .form-item .select-list .select-item.file-select.selected, #change-orderitem-modal .content .form-item .select-list .select-item.file-select.selected, #special-offer .offer-content .form-item .select-list .select-item.file-select.selected {
          border: 1px solid #ee7c68; }
        #quickly-order .content .form-item .select-list .select-item.file-select .upload-input, #create-order-template .content .form-item .select-list .select-item.file-select .upload-input, #add-template-to-cart-modal .content .form-item .select-list .select-item.file-select .upload-input, #change-orderitem-modal .content .form-item .select-list .select-item.file-select .upload-input, #special-offer .offer-content .form-item .select-list .select-item.file-select .upload-input {
          position: absolute;
          top: 0;
          left: 0;
          width: 1px;
          height: 1px;
          opacity: 0;
          overflow: hidden; }
      #quickly-order .content .form-item .select-list .select-item .recommend-tip, #create-order-template .content .form-item .select-list .select-item .recommend-tip, #add-template-to-cart-modal .content .form-item .select-list .select-item .recommend-tip, #change-orderitem-modal .content .form-item .select-list .select-item .recommend-tip, #special-offer .offer-content .form-item .select-list .select-item .recommend-tip, #quickly-order .content .form-item .select-list .select-item .hot-tip, #create-order-template .content .form-item .select-list .select-item .hot-tip, #add-template-to-cart-modal .content .form-item .select-list .select-item .hot-tip, #change-orderitem-modal .content .form-item .select-list .select-item .hot-tip, #special-offer .offer-content .form-item .select-list .select-item .hot-tip, #quickly-order .content .form-item .select-list .select-item .new-tip, #create-order-template .content .form-item .select-list .select-item .new-tip, #add-template-to-cart-modal .content .form-item .select-list .select-item .new-tip, #change-orderitem-modal .content .form-item .select-list .select-item .new-tip, #special-offer .offer-content .form-item .select-list .select-item .new-tip, #quickly-order .content .form-item .select-list .select-item .free-shipping-tip, #create-order-template .content .form-item .select-list .select-item .free-shipping-tip, #add-template-to-cart-modal .content .form-item .select-list .select-item .free-shipping-tip, #change-orderitem-modal .content .form-item .select-list .select-item .free-shipping-tip, #special-offer .offer-content .form-item .select-list .select-item .free-shipping-tip, #quickly-order .content .form-item .select-list .select-item .emergency-tip, #create-order-template .content .form-item .select-list .select-item .emergency-tip, #add-template-to-cart-modal .content .form-item .select-list .select-item .emergency-tip, #change-orderitem-modal .content .form-item .select-list .select-item .emergency-tip, #special-offer .offer-content .form-item .select-list .select-item .emergency-tip {
        margin-left: 0;
        line-height: 1.3em;
        font-size: 12px;
        font-size: 0.75rem; }
      #quickly-order .content .form-item .select-list .select-item .new-tip, #create-order-template .content .form-item .select-list .select-item .new-tip, #add-template-to-cart-modal .content .form-item .select-list .select-item .new-tip, #change-orderitem-modal .content .form-item .select-list .select-item .new-tip, #special-offer .offer-content .form-item .select-list .select-item .new-tip {
        background-color: #14A5FF; }
      #quickly-order .content .form-item .select-list .select-item .link, #create-order-template .content .form-item .select-list .select-item .link, #add-template-to-cart-modal .content .form-item .select-list .select-item .link, #change-orderitem-modal .content .form-item .select-list .select-item .link, #special-offer .offer-content .form-item .select-list .select-item .link {
        margin: 0 0 0 6px;
        color: #ee7c68;
        cursor: pointer; }
        #quickly-order .content .form-item .select-list .select-item .link:hover, #create-order-template .content .form-item .select-list .select-item .link:hover, #add-template-to-cart-modal .content .form-item .select-list .select-item .link:hover, #change-orderitem-modal .content .form-item .select-list .select-item .link:hover, #special-offer .offer-content .form-item .select-list .select-item .link:hover {
          color: #ee7c68;
          text-decoration: underline; }
    #quickly-order .content .form-item .select-list .color-option, #create-order-template .content .form-item .select-list .color-option, #add-template-to-cart-modal .content .form-item .select-list .color-option, #change-orderitem-modal .content .form-item .select-list .color-option, #special-offer .offer-content .form-item .select-list .color-option {
      position: relative;
      width: 40px;
      height: 40px;
      border: 2px solid #DDD;
      display: inline-block;
      margin: 0 6px 12px 0;
      cursor: pointer;
      -moz-border-radius: 3px;
      -webkit-border-radius: 3px;
      border-radius: 3px; }
      #quickly-order .content .form-item .select-list .color-option:hover, #create-order-template .content .form-item .select-list .color-option:hover, #add-template-to-cart-modal .content .form-item .select-list .color-option:hover, #change-orderitem-modal .content .form-item .select-list .color-option:hover, #special-offer .offer-content .form-item .select-list .color-option:hover, #quickly-order .content .form-item .select-list .color-option.selected, #create-order-template .content .form-item .select-list .color-option.selected, #add-template-to-cart-modal .content .form-item .select-list .color-option.selected, #change-orderitem-modal .content .form-item .select-list .color-option.selected, #special-offer .offer-content .form-item .select-list .color-option.selected {
        border-color: #ee7c68;
        color: #ee7c68; }
      #quickly-order .content .form-item .select-list .color-option.single, #create-order-template .content .form-item .select-list .color-option.single, #add-template-to-cart-modal .content .form-item .select-list .color-option.single, #change-orderitem-modal .content .form-item .select-list .color-option.single, #special-offer .offer-content .form-item .select-list .color-option.single {
        cursor: auto; }
        #quickly-order .content .form-item .select-list .color-option.single:hover, #create-order-template .content .form-item .select-list .color-option.single:hover, #add-template-to-cart-modal .content .form-item .select-list .color-option.single:hover, #change-orderitem-modal .content .form-item .select-list .color-option.single:hover, #special-offer .offer-content .form-item .select-list .color-option.single:hover, #quickly-order .content .form-item .select-list .color-option.single.selected, #create-order-template .content .form-item .select-list .color-option.single.selected, #add-template-to-cart-modal .content .form-item .select-list .color-option.single.selected, #change-orderitem-modal .content .form-item .select-list .color-option.single.selected, #special-offer .offer-content .form-item .select-list .color-option.single.selected {
          border-color: transparent;
          color: inherit; }
      #quickly-order .content .form-item .select-list .color-option .color, #create-order-template .content .form-item .select-list .color-option .color, #add-template-to-cart-modal .content .form-item .select-list .color-option .color, #change-orderitem-modal .content .form-item .select-list .color-option .color, #special-offer .offer-content .form-item .select-list .color-option .color {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0; }
        #quickly-order .content .form-item .select-list .color-option .color .transparent-tip, #create-order-template .content .form-item .select-list .color-option .color .transparent-tip, #add-template-to-cart-modal .content .form-item .select-list .color-option .color .transparent-tip, #change-orderitem-modal .content .form-item .select-list .color-option .color .transparent-tip, #special-offer .offer-content .form-item .select-list .color-option .color .transparent-tip {
          position: absolute;
          top: 2px;
          right: 2px;
          width: 8px;
          height: 8px;
          margin: 0;
          border: 1px solid #000;
          background-color: #fff;
          -moz-border-radius: 50%;
          -webkit-border-radius: 50%;
          border-radius: 50%; }
    #quickly-order .content .form-item .select-list .teach-tip, #create-order-template .content .form-item .select-list .teach-tip, #add-template-to-cart-modal .content .form-item .select-list .teach-tip, #change-orderitem-modal .content .form-item .select-list .teach-tip, #special-offer .offer-content .form-item .select-list .teach-tip {
      display: inline-block;
      margin: 0;
      vertical-align: middle; }
    #quickly-order .content .form-item .select-list .select-number, #create-order-template .content .form-item .select-list .select-number, #add-template-to-cart-modal .content .form-item .select-list .select-number, #change-orderitem-modal .content .form-item .select-list .select-number, #special-offer .offer-content .form-item .select-list .select-number {
      display: inline-block;
      position: relative;
      width: 100px;
      height: 24px;
      line-height: 24px;
      margin: 0 10px 20px 0;
      padding: 0 24px;
      border: 1px solid #ccc;
      cursor: default;
      text-align: center;
      -moz-border-radius: 3px;
      -webkit-border-radius: 3px;
      border-radius: 3px;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: -moz-none;
      -o-user-select: none;
      user-select: none; }
      #quickly-order .content .form-item .select-list .select-number.selected, #create-order-template .content .form-item .select-list .select-number.selected, #add-template-to-cart-modal .content .form-item .select-list .select-number.selected, #change-orderitem-modal .content .form-item .select-list .select-number.selected, #special-offer .offer-content .form-item .select-list .select-number.selected {
        border: 1px solid #ee7c68;
        color: #ee7c68; }
        #quickly-order .content .form-item .select-list .select-number.selected .number-button.left-button, #create-order-template .content .form-item .select-list .select-number.selected .number-button.left-button, #add-template-to-cart-modal .content .form-item .select-list .select-number.selected .number-button.left-button, #change-orderitem-modal .content .form-item .select-list .select-number.selected .number-button.left-button, #special-offer .offer-content .form-item .select-list .select-number.selected .number-button.left-button {
          border-right: 1px solid #ee7c68; }
        #quickly-order .content .form-item .select-list .select-number.selected .number-button.right-button, #create-order-template .content .form-item .select-list .select-number.selected .number-button.right-button, #add-template-to-cart-modal .content .form-item .select-list .select-number.selected .number-button.right-button, #change-orderitem-modal .content .form-item .select-list .select-number.selected .number-button.right-button, #special-offer .offer-content .form-item .select-list .select-number.selected .number-button.right-button {
          border-left: 1px solid #ee7c68; }
      #quickly-order .content .form-item .select-list .select-number.count-select, #create-order-template .content .form-item .select-list .select-number.count-select, #add-template-to-cart-modal .content .form-item .select-list .select-number.count-select, #change-orderitem-modal .content .form-item .select-list .select-number.count-select, #special-offer .offer-content .form-item .select-list .select-number.count-select {
        width: auto;
        height: 22px;
        line-height: 22px;
        padding: 0 40px; }
        #quickly-order .content .form-item .select-list .select-number.count-select .number-button, #create-order-template .content .form-item .select-list .select-number.count-select .number-button, #add-template-to-cart-modal .content .form-item .select-list .select-number.count-select .number-button, #change-orderitem-modal .content .form-item .select-list .select-number.count-select .number-button, #special-offer .offer-content .form-item .select-list .select-number.count-select .number-button {
          width: 22px;
          height: 21px; }
      #quickly-order .content .form-item .select-list .select-number .custom-number-input, #create-order-template .content .form-item .select-list .select-number .custom-number-input, #add-template-to-cart-modal .content .form-item .select-list .select-number .custom-number-input, #change-orderitem-modal .content .form-item .select-list .select-number .custom-number-input, #special-offer .offer-content .form-item .select-list .select-number .custom-number-input {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 22px;
        margin: 0;
        padding: 0 22px;
        border: none;
        text-align: center; }
      #quickly-order .content .form-item .select-list .select-number .number-button, #create-order-template .content .form-item .select-list .select-number .number-button, #add-template-to-cart-modal .content .form-item .select-list .select-number .number-button, #change-orderitem-modal .content .form-item .select-list .select-number .number-button, #special-offer .offer-content .form-item .select-list .select-number .number-button {
        position: absolute;
        width: 24px;
        height: 24px;
        cursor: pointer;
        font-size: 14px;
        font-size: 0.875rem;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center; }
        #quickly-order .content .form-item .select-list .select-number .number-button.left-button, #create-order-template .content .form-item .select-list .select-number .number-button.left-button, #add-template-to-cart-modal .content .form-item .select-list .select-number .number-button.left-button, #change-orderitem-modal .content .form-item .select-list .select-number .number-button.left-button, #special-offer .offer-content .form-item .select-list .select-number .number-button.left-button {
          top: 0;
          left: 0;
          border-right: 1px solid #ccc; }
        #quickly-order .content .form-item .select-list .select-number .number-button.right-button, #create-order-template .content .form-item .select-list .select-number .number-button.right-button, #add-template-to-cart-modal .content .form-item .select-list .select-number .number-button.right-button, #change-orderitem-modal .content .form-item .select-list .select-number .number-button.right-button, #special-offer .offer-content .form-item .select-list .select-number .number-button.right-button {
          top: 0;
          right: 0;
          border-left: 1px solid #ccc; }
  #quickly-order .content .form-item .process-wrapper, #create-order-template .content .form-item .process-wrapper, #add-template-to-cart-modal .content .form-item .process-wrapper, #change-orderitem-modal .content .form-item .process-wrapper, #special-offer .offer-content .form-item .process-wrapper {
    position: relative;
    width: 100%;
    margin: 0 0 4px 0; }
    #quickly-order .content .form-item .process-wrapper .process-list .checkbox-form, #create-order-template .content .form-item .process-wrapper .process-list .checkbox-form, #add-template-to-cart-modal .content .form-item .process-wrapper .process-list .checkbox-form, #change-orderitem-modal .content .form-item .process-wrapper .process-list .checkbox-form, #special-offer .offer-content .form-item .process-wrapper .process-list .checkbox-form {
      margin: 0 10px 16px 0; }
      #quickly-order .content .form-item .process-wrapper .process-list .checkbox-form .checkbox, #create-order-template .content .form-item .process-wrapper .process-list .checkbox-form .checkbox, #add-template-to-cart-modal .content .form-item .process-wrapper .process-list .checkbox-form .checkbox, #change-orderitem-modal .content .form-item .process-wrapper .process-list .checkbox-form .checkbox, #special-offer .offer-content .form-item .process-wrapper .process-list .checkbox-form .checkbox {
        font-weight: 600;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        border-radius: 0; }
    #quickly-order .content .form-item .process-wrapper .process-remark, #create-order-template .content .form-item .process-wrapper .process-remark, #add-template-to-cart-modal .content .form-item .process-wrapper .process-remark, #change-orderitem-modal .content .form-item .process-wrapper .process-remark, #special-offer .offer-content .form-item .process-wrapper .process-remark {
      display: block;
      width: 600px;
      height: 100px;
      margin: 0 0 16px 0;
      padding: 12px;
      background-color: #FFFFFF;
      border: 1px solid #ccc;
      color: #484848;
      overflow: auto;
      font-size: 14px;
      font-size: 0.875rem; }
      #quickly-order .content .form-item .process-wrapper .process-remark:focus, #create-order-template .content .form-item .process-wrapper .process-remark:focus, #add-template-to-cart-modal .content .form-item .process-wrapper .process-remark:focus, #change-orderitem-modal .content .form-item .process-wrapper .process-remark:focus, #special-offer .offer-content .form-item .process-wrapper .process-remark:focus {
        border-color: #2A2A2A; }
      #quickly-order .content .form-item .process-wrapper .process-remark.error, #create-order-template .content .form-item .process-wrapper .process-remark.error, #add-template-to-cart-modal .content .form-item .process-wrapper .process-remark.error, #change-orderitem-modal .content .form-item .process-wrapper .process-remark.error, #special-offer .offer-content .form-item .process-wrapper .process-remark.error {
        border-color: #FF2C22; }
  #quickly-order .content .form-item .user-remark, #create-order-template .content .form-item .user-remark, #add-template-to-cart-modal .content .form-item .user-remark, #change-orderitem-modal .content .form-item .user-remark, #special-offer .offer-content .form-item .user-remark {
    display: block;
    width: 600px;
    height: 100px;
    margin: 0 0 20px 0;
    padding: 12px;
    background-color: #FFFFFF;
    border: 1px solid #ccc;
    color: #484848;
    overflow: auto;
    font-size: 14px;
    font-size: 0.875rem; }
    #quickly-order .content .form-item .user-remark:focus, #create-order-template .content .form-item .user-remark:focus, #add-template-to-cart-modal .content .form-item .user-remark:focus, #change-orderitem-modal .content .form-item .user-remark:focus, #special-offer .offer-content .form-item .user-remark:focus {
      border-color: #2A2A2A; }
  #quickly-order .content .form-item .custom-size-wrapper, #create-order-template .content .form-item .custom-size-wrapper, #add-template-to-cart-modal .content .form-item .custom-size-wrapper, #change-orderitem-modal .content .form-item .custom-size-wrapper, #special-offer .offer-content .form-item .custom-size-wrapper {
    display: inline-block;
    padding-top: 3px; }
    #quickly-order .content .form-item .custom-size-wrapper .custom-size-text, #create-order-template .content .form-item .custom-size-wrapper .custom-size-text, #add-template-to-cart-modal .content .form-item .custom-size-wrapper .custom-size-text, #change-orderitem-modal .content .form-item .custom-size-wrapper .custom-size-text, #special-offer .offer-content .form-item .custom-size-wrapper .custom-size-text {
      height: 22px;
      line-height: 22px;
      margin: 0 4px 15px 0;
      float: left; }
      #quickly-order .content .form-item .custom-size-wrapper .custom-size-text.fixed-width, #create-order-template .content .form-item .custom-size-wrapper .custom-size-text.fixed-width, #add-template-to-cart-modal .content .form-item .custom-size-wrapper .custom-size-text.fixed-width, #change-orderitem-modal .content .form-item .custom-size-wrapper .custom-size-text.fixed-width, #special-offer .offer-content .form-item .custom-size-wrapper .custom-size-text.fixed-width {
        min-width: 40px; }
    #quickly-order .content .form-item .custom-size-wrapper .custom-input, #create-order-template .content .form-item .custom-size-wrapper .custom-input, #add-template-to-cart-modal .content .form-item .custom-size-wrapper .custom-input, #change-orderitem-modal .content .form-item .custom-size-wrapper .custom-input, #special-offer .offer-content .form-item .custom-size-wrapper .custom-input {
      display: inline-block;
      width: 60px;
      height: 22px;
      margin: 0 6px 15px 0;
      padding: 0;
      border: 1px solid #ccc;
      text-align: center;
      float: left;
      -moz-border-radius: 0;
      -webkit-border-radius: 0;
      border-radius: 0; }
      #quickly-order .content .form-item .custom-size-wrapper .custom-input.error, #create-order-template .content .form-item .custom-size-wrapper .custom-input.error, #add-template-to-cart-modal .content .form-item .custom-size-wrapper .custom-input.error, #change-orderitem-modal .content .form-item .custom-size-wrapper .custom-input.error, #special-offer .offer-content .form-item .custom-size-wrapper .custom-input.error {
        border: 1px solid #FF2C22; }
    #quickly-order .content .form-item .custom-size-wrapper .select-menu, #create-order-template .content .form-item .custom-size-wrapper .select-menu, #add-template-to-cart-modal .content .form-item .custom-size-wrapper .select-menu, #change-orderitem-modal .content .form-item .custom-size-wrapper .select-menu, #special-offer .offer-content .form-item .custom-size-wrapper .select-menu {
      height: 22px;
      float: left; }
      #quickly-order .content .form-item .custom-size-wrapper .select-menu.has-dropdown, #create-order-template .content .form-item .custom-size-wrapper .select-menu.has-dropdown, #add-template-to-cart-modal .content .form-item .custom-size-wrapper .select-menu.has-dropdown, #change-orderitem-modal .content .form-item .custom-size-wrapper .select-menu.has-dropdown, #special-offer .offer-content .form-item .custom-size-wrapper .select-menu.has-dropdown {
        padding-right: 22px; }
      #quickly-order .content .form-item .custom-size-wrapper .select-menu .spec-wrapper, #create-order-template .content .form-item .custom-size-wrapper .select-menu .spec-wrapper, #add-template-to-cart-modal .content .form-item .custom-size-wrapper .select-menu .spec-wrapper, #change-orderitem-modal .content .form-item .custom-size-wrapper .select-menu .spec-wrapper, #special-offer .offer-content .form-item .custom-size-wrapper .select-menu .spec-wrapper {
        color: #ee7c68; }
      #quickly-order .content .form-item .custom-size-wrapper .select-menu .arrow-down, #create-order-template .content .form-item .custom-size-wrapper .select-menu .arrow-down, #add-template-to-cart-modal .content .form-item .custom-size-wrapper .select-menu .arrow-down, #change-orderitem-modal .content .form-item .custom-size-wrapper .select-menu .arrow-down, #special-offer .offer-content .form-item .custom-size-wrapper .select-menu .arrow-down {
        width: 22px;
        min-width: 22px;
        height: 21px; }
  #quickly-order .content .form-item .select-menu, #create-order-template .content .form-item .select-menu, #add-template-to-cart-modal .content .form-item .select-menu, #change-orderitem-modal .content .form-item .select-menu, #special-offer .offer-content .form-item .select-menu {
    display: inline-block;
    position: relative;
    width: auto;
    min-width: 60px;
    height: 25px;
    line-height: 0;
    margin: 0 6px 15px 0;
    border: 1px solid #dddddd;
    cursor: pointer;
    text-align: center;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
    #quickly-order .content .form-item .select-menu.single, #create-order-template .content .form-item .select-menu.single, #add-template-to-cart-modal .content .form-item .select-menu.single, #change-orderitem-modal .content .form-item .select-menu.single, #special-offer .offer-content .form-item .select-menu.single {
      cursor: default; }
      #quickly-order .content .form-item .select-menu.single .spec-wrapper, #create-order-template .content .form-item .select-menu.single .spec-wrapper, #add-template-to-cart-modal .content .form-item .select-menu.single .spec-wrapper, #change-orderitem-modal .content .form-item .select-menu.single .spec-wrapper, #special-offer .offer-content .form-item .select-menu.single .spec-wrapper {
        padding: 0 10px 0 0; }
    #quickly-order .content .form-item .select-menu.has-dropdown, #create-order-template .content .form-item .select-menu.has-dropdown, #add-template-to-cart-modal .content .form-item .select-menu.has-dropdown, #change-orderitem-modal .content .form-item .select-menu.has-dropdown, #special-offer .offer-content .form-item .select-menu.has-dropdown {
      padding-right: 25px; }
      #quickly-order .content .form-item .select-menu.has-dropdown .arrow-down, #create-order-template .content .form-item .select-menu.has-dropdown .arrow-down, #add-template-to-cart-modal .content .form-item .select-menu.has-dropdown .arrow-down, #change-orderitem-modal .content .form-item .select-menu.has-dropdown .arrow-down, #special-offer .offer-content .form-item .select-menu.has-dropdown .arrow-down {
        display: -webkit-inline-flex;
        display: inline-flex; }
    #quickly-order .content .form-item .select-menu.select, #create-order-template .content .form-item .select-menu.select, #add-template-to-cart-modal .content .form-item .select-menu.select, #change-orderitem-modal .content .form-item .select-menu.select, #special-offer .offer-content .form-item .select-menu.select {
      border-color: #ee7c68; }
      #quickly-order .content .form-item .select-menu.select .spec-wrapper, #create-order-template .content .form-item .select-menu.select .spec-wrapper, #add-template-to-cart-modal .content .form-item .select-menu.select .spec-wrapper, #change-orderitem-modal .content .form-item .select-menu.select .spec-wrapper, #special-offer .offer-content .form-item .select-menu.select .spec-wrapper {
        color: #ee7c68;
        font-weight: bold; }
      #quickly-order .content .form-item .select-menu.select .arrow-down, #create-order-template .content .form-item .select-menu.select .arrow-down, #add-template-to-cart-modal .content .form-item .select-menu.select .arrow-down, #change-orderitem-modal .content .form-item .select-menu.select .arrow-down, #special-offer .offer-content .form-item .select-menu.select .arrow-down {
        border-left: 1px solid #ee7c68;
        color: #ee7c68; }
    #quickly-order .content .form-item .select-menu .spec-wrapper, #create-order-template .content .form-item .select-menu .spec-wrapper, #add-template-to-cart-modal .content .form-item .select-menu .spec-wrapper, #change-orderitem-modal .content .form-item .select-menu .spec-wrapper, #special-offer .offer-content .form-item .select-menu .spec-wrapper {
      height: 100%;
      padding: 0 10px;
      color: #2A2A2A;
      white-space: nowrap;
      font-size: 14px;
      font-size: 0.875rem;
      -webkit-align-items: center;
      align-items: center;
      display: -webkit-inline-flex;
      display: inline-flex; }
    #quickly-order .content .form-item .select-menu .arrow-down, #create-order-template .content .form-item .select-menu .arrow-down, #add-template-to-cart-modal .content .form-item .select-menu .arrow-down, #change-orderitem-modal .content .form-item .select-menu .arrow-down, #special-offer .offer-content .form-item .select-menu .arrow-down {
      position: absolute;
      top: 0;
      right: 0;
      display: none;
      width: 25px;
      min-width: 25px;
      height: 24px;
      border-left: 1px solid #dddddd;
      color: #2A2A2A;
      font-size: 18px;
      font-size: 1.125rem;
      -webkit-align-items: center;
      align-items: center;
      -webkit-justify-content: center;
      justify-content: center; }
  #quickly-order .content .form-item .order-template-name, #create-order-template .content .form-item .order-template-name, #add-template-to-cart-modal .content .form-item .order-template-name, #change-orderitem-modal .content .form-item .order-template-name, #special-offer .offer-content .form-item .order-template-name {
    display: block;
    width: 600px;
    height: 40px;
    padding: 0 12px;
    background-color: #FFFFFF;
    border: 1px solid #ccc;
    color: #484848;
    font-size: 14px;
    font-size: 0.875rem; }
    #quickly-order .content .form-item .order-template-name.error, #create-order-template .content .form-item .order-template-name.error, #add-template-to-cart-modal .content .form-item .order-template-name.error, #change-orderitem-modal .content .form-item .order-template-name.error, #special-offer .offer-content .form-item .order-template-name.error {
      border: 1px solid #FF2C22;
      color: #FF2C22; }
  #quickly-order .content .form-item .custom-input, #create-order-template .content .form-item .custom-input, #add-template-to-cart-modal .content .form-item .custom-input, #change-orderitem-modal .content .form-item .custom-input, #special-offer .offer-content .form-item .custom-input {
    display: inline-block;
    width: 240px;
    height: 27px;
    margin: 0 10px 20px 0;
    padding: 0 6px;
    border: 1px solid #ccc;
    text-align: left;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0; }
    #quickly-order .content .form-item .custom-input:focus, #create-order-template .content .form-item .custom-input:focus, #add-template-to-cart-modal .content .form-item .custom-input:focus, #change-orderitem-modal .content .form-item .custom-input:focus, #special-offer .offer-content .form-item .custom-input:focus {
      border-color: #2A2A2A; }
    #quickly-order .content .form-item .custom-input.xsmall, #create-order-template .content .form-item .custom-input.xsmall, #add-template-to-cart-modal .content .form-item .custom-input.xsmall, #change-orderitem-modal .content .form-item .custom-input.xsmall, #special-offer .offer-content .form-item .custom-input.xsmall {
      width: 40px; }
    #quickly-order .content .form-item .custom-input.small, #create-order-template .content .form-item .custom-input.small, #add-template-to-cart-modal .content .form-item .custom-input.small, #change-orderitem-modal .content .form-item .custom-input.small, #special-offer .offer-content .form-item .custom-input.small {
      width: 80px; }
    #quickly-order .content .form-item .custom-input.text-center, #create-order-template .content .form-item .custom-input.text-center, #add-template-to-cart-modal .content .form-item .custom-input.text-center, #change-orderitem-modal .content .form-item .custom-input.text-center, #special-offer .offer-content .form-item .custom-input.text-center {
      text-align: center; }
    #quickly-order .content .form-item .custom-input.error, #create-order-template .content .form-item .custom-input.error, #add-template-to-cart-modal .content .form-item .custom-input.error, #change-orderitem-modal .content .form-item .custom-input.error, #special-offer .offer-content .form-item .custom-input.error {
      border: 1px solid #FF2C22; }
  #quickly-order .content .form-item .file-tip, #create-order-template .content .form-item .file-tip, #add-template-to-cart-modal .content .form-item .file-tip, #change-orderitem-modal .content .form-item .file-tip, #special-offer .offer-content .form-item .file-tip {
    height: 27px;
    line-height: 27px;
    color: #ee7c68;
    vertical-align: middle;
    font-size: 20px;
    font-size: 1.25rem;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center; }
#quickly-order .content .empty-hint, #create-order-template .content .empty-hint, #add-template-to-cart-modal .content .empty-hint, #change-orderitem-modal .content .empty-hint, #special-offer .offer-content .empty-hint {
  padding: 40px 0;
  text-align: center;
  font-size: 16px;
  font-size: 1rem; }
  #quickly-order .content .empty-hint i, #create-order-template .content .empty-hint i, #add-template-to-cart-modal .content .empty-hint i, #change-orderitem-modal .content .empty-hint i, #special-offer .offer-content .empty-hint i {
    margin-right: 4px; }
#quickly-order .content .class-select-list, #create-order-template .content .class-select-list, #add-template-to-cart-modal .content .class-select-list, #change-orderitem-modal .content .class-select-list, #special-offer .offer-content .class-select-list {
  position: relative;
  margin: -8px -8px 12px -8px;
  overflow: hidden;
  display: -webkit-flex;
  display: flex; }
  #quickly-order .content .class-select-list .class-select-item, #create-order-template .content .class-select-list .class-select-item, #add-template-to-cart-modal .content .class-select-list .class-select-item, #change-orderitem-modal .content .class-select-list .class-select-item, #special-offer .offer-content .class-select-list .class-select-item {
    position: relative;
    width: 104px;
    height: 104px;
    margin: 8px;
    border: 1px solid #CCCCCC;
    overflow: hidden;
    cursor: pointer;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 1;
    flex: 1; }
    #quickly-order .content .class-select-list .class-select-item:hover, #create-order-template .content .class-select-list .class-select-item:hover, #add-template-to-cart-modal .content .class-select-list .class-select-item:hover, #change-orderitem-modal .content .class-select-list .class-select-item:hover, #special-offer .offer-content .class-select-list .class-select-item:hover {
      border: 1px solid #ee7c68; }
      #quickly-order .content .class-select-list .class-select-item:hover .icon-cover, #create-order-template .content .class-select-list .class-select-item:hover .icon-cover, #add-template-to-cart-modal .content .class-select-list .class-select-item:hover .icon-cover, #change-orderitem-modal .content .class-select-list .class-select-item:hover .icon-cover, #special-offer .offer-content .class-select-list .class-select-item:hover .icon-cover, #quickly-order .content .class-select-list .class-select-item:hover .title, #create-order-template .content .class-select-list .class-select-item:hover .title, #add-template-to-cart-modal .content .class-select-list .class-select-item:hover .title, #change-orderitem-modal .content .class-select-list .class-select-item:hover .title, #special-offer .offer-content .class-select-list .class-select-item:hover .title {
        color: #ee7c68; }
    #quickly-order .content .class-select-list .class-select-item.active, #create-order-template .content .class-select-list .class-select-item.active, #add-template-to-cart-modal .content .class-select-list .class-select-item.active, #change-orderitem-modal .content .class-select-list .class-select-item.active, #special-offer .offer-content .class-select-list .class-select-item.active {
      border: 1px solid #ee7c68;
      color: #ee7c68; }
      #quickly-order .content .class-select-list .class-select-item.active .icon-cover, #create-order-template .content .class-select-list .class-select-item.active .icon-cover, #add-template-to-cart-modal .content .class-select-list .class-select-item.active .icon-cover, #change-orderitem-modal .content .class-select-list .class-select-item.active .icon-cover, #special-offer .offer-content .class-select-list .class-select-item.active .icon-cover, #quickly-order .content .class-select-list .class-select-item.active .title, #create-order-template .content .class-select-list .class-select-item.active .title, #add-template-to-cart-modal .content .class-select-list .class-select-item.active .title, #change-orderitem-modal .content .class-select-list .class-select-item.active .title, #special-offer .offer-content .class-select-list .class-select-item.active .title {
        color: #ee7c68; }
      #quickly-order .content .class-select-list .class-select-item.active .check-wrapper, #create-order-template .content .class-select-list .class-select-item.active .check-wrapper, #add-template-to-cart-modal .content .class-select-list .class-select-item.active .check-wrapper, #change-orderitem-modal .content .class-select-list .class-select-item.active .check-wrapper, #special-offer .offer-content .class-select-list .class-select-item.active .check-wrapper {
        display: block; }
    #quickly-order .content .class-select-list .class-select-item .icon-cover, #create-order-template .content .class-select-list .class-select-item .icon-cover, #add-template-to-cart-modal .content .class-select-list .class-select-item .icon-cover, #change-orderitem-modal .content .class-select-list .class-select-item .icon-cover, #special-offer .offer-content .class-select-list .class-select-item .icon-cover {
      min-width: 26px;
      min-height: 26px;
      margin: 6px 0 16px 0;
      color: #737373;
      font-size: 28px;
      font-size: 1.75rem;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center;
      -webkit-justify-content: center;
      justify-content: center; }
    #quickly-order .content .class-select-list .class-select-item .title, #create-order-template .content .class-select-list .class-select-item .title, #add-template-to-cart-modal .content .class-select-list .class-select-item .title, #change-orderitem-modal .content .class-select-list .class-select-item .title, #special-offer .offer-content .class-select-list .class-select-item .title {
      width: 100%;
      line-height: 14px;
      padding: 0 6px;
      text-align: center;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      color: #484848;
      font-size: 14px;
      font-size: 0.875rem; }
    #quickly-order .content .class-select-list .class-select-item .check-wrapper, #create-order-template .content .class-select-list .class-select-item .check-wrapper, #add-template-to-cart-modal .content .class-select-list .class-select-item .check-wrapper, #change-orderitem-modal .content .class-select-list .class-select-item .check-wrapper, #special-offer .offer-content .class-select-list .class-select-item .check-wrapper {
      display: none;
      position: absolute;
      right: 0;
      bottom: 0;
      width: 36px;
      height: 36px;
      text-align: right; }
      #quickly-order .content .class-select-list .class-select-item .check-wrapper:before, #create-order-template .content .class-select-list .class-select-item .check-wrapper:before, #add-template-to-cart-modal .content .class-select-list .class-select-item .check-wrapper:before, #change-orderitem-modal .content .class-select-list .class-select-item .check-wrapper:before, #special-offer .offer-content .class-select-list .class-select-item .check-wrapper:before {
        content: '';
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
        width: 36px;
        height: 36px;
        background-color: #ee7c68;
        -moz-transform: translateX(50%) translateY(50%) rotate(45deg);
        -ms-transform: translateX(50%) translateY(50%) rotate(45deg);
        -webkit-transform: translateX(50%) translateY(50%) rotate(45deg);
        transform: translateX(50%) translateY(50%) rotate(45deg); }
      #quickly-order .content .class-select-list .class-select-item .check-wrapper .check-icon, #create-order-template .content .class-select-list .class-select-item .check-wrapper .check-icon, #add-template-to-cart-modal .content .class-select-list .class-select-item .check-wrapper .check-icon, #change-orderitem-modal .content .class-select-list .class-select-item .check-wrapper .check-icon, #special-offer .offer-content .class-select-list .class-select-item .check-wrapper .check-icon {
        position: absolute;
        bottom: 1px;
        right: 1px;
        color: #fff;
        font-size: 14px;
        font-size: 0.875rem;
        display: -webkit-flex;
        display: flex; }
#quickly-order .content .accessory-wrapper, #create-order-template .content .accessory-wrapper, #add-template-to-cart-modal .content .accessory-wrapper, #change-orderitem-modal .content .accessory-wrapper, #special-offer .offer-content .accessory-wrapper {
  padding: 0; }

#quickly-order .md-content, #create-order-template .md-content, #add-template-to-cart-modal .md-content, #change-orderitem-modal .md-content {
  width: calc(100% - 160px);
  height: calc(100% - 80px);
  min-width: 540px;
  max-width: 1100px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px; }
#quickly-order .md-close, #create-order-template .md-close, #add-template-to-cart-modal .md-close, #change-orderitem-modal .md-close {
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 20px;
  font-size: 1.25rem; }
#quickly-order .header, #create-order-template .header, #add-template-to-cart-modal .header, #change-orderitem-modal .header {
  position: relative;
  height: 60px;
  line-height: 60px;
  margin: 0;
  background-color: #fff;
  color: #484848;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  -moz-border-radius: 3px 3px 0 0;
  -webkit-border-radius: 3px;
  border-radius: 3px 3px 0 0;
  -moz-box-shadow: inset 0px -1px 0px 0px #DDDDDD;
  -webkit-box-shadow: inset 0px -1px 0px 0px #DDDDDD;
  box-shadow: inset 0px -1px 0px 0px #DDDDDD; }
#quickly-order .content, #create-order-template .content, #add-template-to-cart-modal .content, #change-orderitem-modal .content {
  position: relative;
  height: calc(100% - 130px);
  padding: 0;
  overflow: hidden; }
  #quickly-order .content .loading-wrapper, #create-order-template .content .loading-wrapper, #add-template-to-cart-modal .content .loading-wrapper, #change-orderitem-modal .content .loading-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%); }
#quickly-order .footer, #create-order-template .footer, #add-template-to-cart-modal .footer, #change-orderitem-modal .footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70px;
  padding: 0 20px;
  background-color: #FAFAFA;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -moz-border-radius: 0 0 3px 3px;
  -webkit-border-radius: 0;
  border-radius: 0 0 3px 3px;
  -moz-box-shadow: inset 0px 1px 0px 0px #DDDDDD;
  -webkit-box-shadow: inset 0px 1px 0px 0px #DDDDDD;
  box-shadow: inset 0px 1px 0px 0px #DDDDDD; }
  #quickly-order .footer .change-result, #create-order-template .footer .change-result, #add-template-to-cart-modal .footer .change-result, #change-orderitem-modal .footer .change-result {
    margin: 0 0 0 10px;
    text-align: right; }
    #quickly-order .footer .change-result .total, #create-order-template .footer .change-result .total, #add-template-to-cart-modal .footer .change-result .total, #change-orderitem-modal .footer .change-result .total {
      display: block; }
  #quickly-order .footer .total, #create-order-template .footer .total, #add-template-to-cart-modal .footer .total, #change-orderitem-modal .footer .total {
    margin: 0;
    color: #3C3D41;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    font-size: 14px;
    font-size: 0.875rem; }
    #quickly-order .footer .total .price, #create-order-template .footer .total .price, #add-template-to-cart-modal .footer .total .price, #change-orderitem-modal .footer .total .price {
      margin: 0 6px;
      font-weight: 700;
      color: #ee7c68;
      font-size: 20px;
      font-size: 1.25rem; }
    #quickly-order .footer .total .date, #create-order-template .footer .total .date, #add-template-to-cart-modal .footer .total .date, #change-orderitem-modal .footer .total .date {
      color: #ee7c68;
      font-weight: 600; }
  #quickly-order .footer .button, #create-order-template .footer .button, #add-template-to-cart-modal .footer .button, #change-orderitem-modal .footer .button {
    height: 44px;
    line-height: 44px;
    margin: 0 0 0 12px;
    padding: 0;
    border: none;
    font-weight: 600;
    color: #fff;
    font-size: 16px;
    font-size: 1rem;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
    #quickly-order .footer .button.submit, #create-order-template .footer .button.submit, #add-template-to-cart-modal .footer .button.submit, #change-orderitem-modal .footer .button.submit {
      width: 190px;
      background-color: rgba(238, 124, 104, 0.9);
      color: #fff; }
    #quickly-order .footer .button.cancel, #create-order-template .footer .button.cancel, #add-template-to-cart-modal .footer .button.cancel, #change-orderitem-modal .footer .button.cancel {
      width: 120px;
      background-color: #9E9E9E; }
  #quickly-order .footer .error, #create-order-template .footer .error, #add-template-to-cart-modal .footer .error, #change-orderitem-modal .footer .error {
    color: #FF2C22; }
#quickly-order .menu-dropdown, #create-order-template .menu-dropdown, #add-template-to-cart-modal .menu-dropdown, #change-orderitem-modal .menu-dropdown {
  width: auto;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0px -1px 12px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px -1px 12px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px -1px 12px 0px rgba(0, 0, 0, 0.2); }
  #quickly-order .menu-dropdown ul li, #create-order-template .menu-dropdown ul li, #add-template-to-cart-modal .menu-dropdown ul li, #change-orderitem-modal .menu-dropdown ul li {
    height: 25px;
    line-height: 25px;
    padding: 0 20px 0 10px;
    font-size: 14px;
    color: #2A2A2A;
    background-color: #fff;
    font-size: 14px;
    font-size: 0.875rem;
    -moz-box-shadow: inset 0px 1px 0px 0px #EEEEEE;
    -webkit-box-shadow: inset 0px 1px 0px 0px #EEEEEE;
    box-shadow: inset 0px 1px 0px 0px #EEEEEE; }
    #quickly-order .menu-dropdown ul li:first-child, #create-order-template .menu-dropdown ul li:first-child, #add-template-to-cart-modal .menu-dropdown ul li:first-child, #change-orderitem-modal .menu-dropdown ul li:first-child {
      -moz-box-shadow: none;
      -webkit-box-shadow: none;
      box-shadow: none; }
    #quickly-order .menu-dropdown ul li:hover, #create-order-template .menu-dropdown ul li:hover, #add-template-to-cart-modal .menu-dropdown ul li:hover, #change-orderitem-modal .menu-dropdown ul li:hover {
      background-color: #ECEDEF;
      color: #34495E; }
    #quickly-order .menu-dropdown ul li.selected, #create-order-template .menu-dropdown ul li.selected, #add-template-to-cart-modal .menu-dropdown ul li.selected, #change-orderitem-modal .menu-dropdown ul li.selected {
      background-color: #fff;
      color: #ee7c68; }
  #quickly-order .menu-dropdown.custom-count, #create-order-template .menu-dropdown.custom-count, #add-template-to-cart-modal .menu-dropdown.custom-count, #change-orderitem-modal .menu-dropdown.custom-count {
    position: fixed !important;
    margin-top: -50px; }
    #quickly-order .menu-dropdown.custom-count ul, #create-order-template .menu-dropdown.custom-count ul, #add-template-to-cart-modal .menu-dropdown.custom-count ul, #change-orderitem-modal .menu-dropdown.custom-count ul {
      position: relative;
      max-height: 180px;
      overflow: hidden; }
#quickly-order .dropdown-overlay, #create-order-template .dropdown-overlay, #add-template-to-cart-modal .dropdown-overlay, #change-orderitem-modal .dropdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3; }

#cart .order-form .invoice-wrapper .invoice-select-form, .profile .member-content .invoice-select-form, #points .store-payment .invoice-select-form, #payment-confirm .payment-form .invoice-select-form {
  position: relative; }
  #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-row, .profile .member-content .invoice-select-form .invoice-select-row, #points .store-payment .invoice-select-form .invoice-select-row, #payment-confirm .payment-form .invoice-select-form .invoice-select-row {
    height: 40px;
    line-height: 40px; }
    #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-row .checkbox-form, .profile .member-content .invoice-select-form .invoice-select-row .checkbox-form, #points .store-payment .invoice-select-form .invoice-select-row .checkbox-form, #payment-confirm .payment-form .invoice-select-form .invoice-select-row .checkbox-form {
      cursor: pointer;
      margin-right: 20px;
      float: left; }
      #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-row .checkbox-form.checked, .profile .member-content .invoice-select-form .invoice-select-row .checkbox-form.checked, #points .store-payment .invoice-select-form .invoice-select-row .checkbox-form.checked, #payment-confirm .payment-form .invoice-select-form .invoice-select-row .checkbox-form.checked {
        font-weight: 600; }
      #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-row .checkbox-form .checkbox, .profile .member-content .invoice-select-form .invoice-select-row .checkbox-form .checkbox, #points .store-payment .invoice-select-form .invoice-select-row .checkbox-form .checkbox, #payment-confirm .payment-form .invoice-select-form .invoice-select-row .checkbox-form .checkbox {
        margin: 0 10px 0 0; }
  #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-wrapper, .profile .member-content .invoice-select-form .invoice-select-wrapper, #points .store-payment .invoice-select-form .invoice-select-wrapper, #payment-confirm .payment-form .invoice-select-form .invoice-select-wrapper {
    position: relative; }
    #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-wrapper .invoice-sub-select-wrapper, .profile .member-content .invoice-select-form .invoice-select-wrapper .invoice-sub-select-wrapper, #points .store-payment .invoice-select-form .invoice-select-wrapper .invoice-sub-select-wrapper, #payment-confirm .payment-form .invoice-select-form .invoice-select-wrapper .invoice-sub-select-wrapper {
      padding: 0 0 0 30px; }
    #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-wrapper .invoice-select-input-form, .profile .member-content .invoice-select-form .invoice-select-wrapper .invoice-select-input-form, #points .store-payment .invoice-select-form .invoice-select-wrapper .invoice-select-input-form, #payment-confirm .payment-form .invoice-select-form .invoice-select-wrapper .invoice-select-input-form {
      display: inline-block;
      width: 300px;
      margin: 0 10px 0 0; }
    #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-wrapper .invoice-select-custom, .profile .member-content .invoice-select-form .invoice-select-wrapper .invoice-select-custom, #points .store-payment .invoice-select-form .invoice-select-wrapper .invoice-select-custom, #payment-confirm .payment-form .invoice-select-form .invoice-select-wrapper .invoice-select-custom {
      padding: 12px 0; }
      #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-wrapper .invoice-select-custom.nopadding, .profile .member-content .invoice-select-form .invoice-select-wrapper .invoice-select-custom.nopadding, #points .store-payment .invoice-select-form .invoice-select-wrapper .invoice-select-custom.nopadding, #payment-confirm .payment-form .invoice-select-form .invoice-select-wrapper .invoice-select-custom.nopadding {
        padding: 0; }
      #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-wrapper .invoice-select-custom .invoice-select-custom-text, .profile .member-content .invoice-select-form .invoice-select-wrapper .invoice-select-custom .invoice-select-custom-text, #points .store-payment .invoice-select-form .invoice-select-wrapper .invoice-select-custom .invoice-select-custom-text, #payment-confirm .payment-form .invoice-select-form .invoice-select-wrapper .invoice-select-custom .invoice-select-custom-text {
        margin: 0 0 12px 0; }
      #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-wrapper .invoice-select-custom .invoice-select-input-form, .profile .member-content .invoice-select-form .invoice-select-wrapper .invoice-select-custom .invoice-select-input-form, #points .store-payment .invoice-select-form .invoice-select-wrapper .invoice-select-custom .invoice-select-input-form, #payment-confirm .payment-form .invoice-select-form .invoice-select-wrapper .invoice-select-custom .invoice-select-input-form {
        width: 320px; }
  #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-dropdown, .profile .member-content .invoice-select-form .invoice-select-dropdown, #points .store-payment .invoice-select-form .invoice-select-dropdown, #payment-confirm .payment-form .invoice-select-form .invoice-select-dropdown {
    display: inline-block;
    width: 320px;
    min-width: 320px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #ccc;
    color: #2A2A2A;
    background-color: #fff;
    outline: none;
    font-size: 14px;
    font-size: 0.875rem;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
    #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-dropdown:focus, .profile .member-content .invoice-select-form .invoice-select-dropdown:focus, #points .store-payment .invoice-select-form .invoice-select-dropdown:focus, #payment-confirm .payment-form .invoice-select-form .invoice-select-dropdown:focus {
      border-color: rgba(0, 113, 197, 0.5); }
    #cart .order-form .invoice-wrapper .invoice-select-form .invoice-select-dropdown.error, .profile .member-content .invoice-select-form .invoice-select-dropdown.error, #points .store-payment .invoice-select-form .invoice-select-dropdown.error, #payment-confirm .payment-form .invoice-select-form .invoice-select-dropdown.error {
      border: 1px solid #FF2C22;
      color: #FF2C22; }

[data-hint].hint--top:before {
  border-top-color: #4A4A4A; }
[data-hint].hint--bottom:before {
  border-bottom-color: #4A4A4A; }
[data-hint].hint--left:before {
  border-left-color: #4A4A4A; }
[data-hint].hint--right:before {
  border-right-color: #4A4A4A; }
[data-hint]:after {
  background-color: #4A4A4A;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px; }

.hint--rtl:after {
  left: inherit !important;
  right: 0 !important;
  margin-left: 0 !important;
  margin-right: -18px !important; }

.hint--top.hint--middle:after, .hint--top.hint--middle:before {
  -webkit-transform: translateX(-50%) translateY(0) !important;
  -moz-transform: translateX(-50%) translateY(0) !important;
  transform: translateX(-50%) translateY(0) !important; }

.hint--bottom.hint--middle:after, .hint--bottom.hint--middle:before {
  -webkit-transform: translateX(-50%) translateY(0) !important;
  -moz-transform: translateX(-50%) translateY(0) !important;
  transform: translateX(-50%) translateY(0) !important; }

.hint--top.hint--middle:hover:after, .hint--top.hint--middle:hover:before {
  -webkit-transform: translateX(-50%) translateY(-8px) !important;
  -moz-transform: translateX(-50%) translateY(-8px) !important;
  transform: translateX(-50%) translateY(-8px) !important; }

.hint--bottom.hint--middle:hover:after, .hint--bottom.hint--middle:hover:before {
  -webkit-transform: translateX(-50%) translateY(8px) !important;
  -moz-transform: translateX(-50%) translateY(8px) !important;
  transform: translateX(-50%) translateY(8px) !important; }

.hint--middle:after {
  margin-left: 0 !important; }

.md-modal {
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  visibility: hidden;
  -moz-transition: z-index 0.3s 0.3s;
  -o-transition: z-index 0.3s 0.3s;
  -webkit-transition: z-index 0.3s;
  -webkit-transition-delay: 0.3s;
  transition: z-index 0.3s 0.3s;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0); }
  .md-modal.mobile-full .md-wrapper {
    position: fixed; }
    .md-modal.mobile-full .md-wrapper:before {
      display: none; }
  .md-modal.mobile-full .md-content {
    position: fixed;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    margin: auto;
    color: #737373;
    background-color: #fff;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0; }
  .md-modal .md-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    display: -webkit-flex;
    display: flex; }
    .md-modal .md-wrapper:before {
      content: '';
      position: fixed;
      width: 100%;
      height: 100%;
      background-color: #2A2A2A;
      opacity: 0;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
      -moz-transform: translateZ(0);
      -ms-transform: translateZ(0);
      -webkit-transform: translateZ(0);
      transform: translateZ(0); }
    .md-modal .md-wrapper[close-modal]:before {
      cursor: pointer; }
  .md-modal .md-content {
    z-index: 2;
    position: relative;
    width: 50%;
    min-width: 480px;
    max-width: 480px;
    height: auto;
    margin: auto;
    color: #737373;
    background-color: #fff;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -moz-transform: translateX(0%) translateY(0%);
    -ms-transform: translateX(0%) translateY(0%);
    -webkit-transform: translateX(0%) translateY(0%);
    transform: translateX(0%) translateY(0%); }
  .md-modal .md-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #919191;
    z-index: 1;
    font-size: 24px;
    font-size: 1.5rem; }
    .md-modal .md-close:hover {
      color: #484848;
      cursor: pointer; }
    .md-modal .md-close .icon-cancel {
      position: absolute;
      top: 50%;
      left: 50%;
      font-size: 13px;
      font-size: 0.8125rem;
      -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
      -webkit-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%); }
  .md-modal .md-header {
    position: relative;
    height: 60px;
    line-height: 60px;
    margin: 0;
    background-color: #fff;
    color: #000;
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    font-size: 1.25rem;
    -moz-border-radius: 3px 3px 0 0;
    -webkit-border-radius: 3px;
    border-radius: 3px 3px 0 0;
    -moz-box-shadow: inset 0px -1px 0px 0px #DDDDDD;
    -webkit-box-shadow: inset 0px -1px 0px 0px #DDDDDD;
    box-shadow: inset 0px -1px 0px 0px #DDDDDD; }
  .md-modal .md-footer {
    position: relative;
    background-color: #fff;
    padding: 16px 25px;
    text-align: center;
    -moz-box-shadow: inset 0px 1px 0px 0px #DDDDDD;
    -webkit-box-shadow: inset 0px 1px 0px 0px #DDDDDD;
    box-shadow: inset 0px 1px 0px 0px #DDDDDD; }
  .md-modal .notification-message {
    position: fixed;
    top: 20px;
    left: 50%;
    height: 40px;
    padding: 0 20px;
    color: #fff;
    font-size: 13px;
    font-size: 0.8125rem;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); }
    .md-modal .notification-message.success {
      background-color: #000; }
    .md-modal .notification-message.error {
      background-color: #FF2C22; }
    .md-modal .notification-message i {
      margin: auto 10px auto 0;
      font-size: 16px;
      font-size: 1rem; }
    .md-modal .notification-message .success-icon {
      color: #CDDC39; }
    .md-modal .notification-message .close-icon {
      margin: auto 0 auto 20px;
      color: #737373;
      cursor: pointer; }
      .md-modal .notification-message .close-icon:hover {
        color: #fff; }
    .md-modal .notification-message .message, .md-modal .notification-message .notification-title {
      max-width: 250px;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis; }
    .md-modal .notification-message .goto {
      margin-left: 4px;
      text-decoration: underline;
      cursor: pointer; }
    .md-modal .notification-message.ng-enter {
      -webkit-animation-duration: 0.1s;
      -moz-animation-duration: 0.1s;
      -ms-animation-duration: 0.1s;
      animation-duration: 0.1s;
      -webkit-animation-name: notification-show;
      -moz-animation-name: notification-show;
      -ms-animation-name: notification-show;
      animation-name: notification-show; }
    .md-modal .notification-message.ng-leave {
      -webkit-animation-duration: 0.1s;
      -moz-animation-duration: 0.1s;
      -ms-animation-duration: 0.1s;
      animation-duration: 0.1s;
      -webkit-animation-name: notification-hide;
      -moz-animation-name: notification-hide;
      -ms-animation-name: notification-hide;
      animation-name: notification-hide; }
    .md-modal .notification-message.ng-enter.ng-enter-active, .md-modal .notification-message.ng-leave {
      opacity: 1; }
    .md-modal .notification-message.ng-leave.ng-leave-active, .md-modal .notification-message.ng-enter {
      opacity: 0; }
@-webkit-keyframes notification-show {
  0% {
    opacity: 1;
    -moz-transform: translateX(-50%) translateY(-100%);
    -ms-transform: translateX(-50%) translateY(-100%);
    -webkit-transform: translateX(-50%) translateY(-100%);
    transform: translateX(-50%) translateY(-100%); }
  80% {
    opacity: 1;
    -moz-transform: translateX(-50%) translateY(5%);
    -ms-transform: translateX(-50%) translateY(5%);
    -webkit-transform: translateX(-50%) translateY(5%);
    transform: translateX(-50%) translateY(5%); }
  100% {
    opacity: 1;
    -moz-transform: translateX(-50%) translateY(0);
    -ms-transform: translateX(-50%) translateY(0);
    -webkit-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0); } }
@-moz-keyframes notification-show {
  0% {
    opacity: 1;
    -moz-transform: translateX(-50%) translateY(-100%);
    -ms-transform: translateX(-50%) translateY(-100%);
    -webkit-transform: translateX(-50%) translateY(-100%);
    transform: translateX(-50%) translateY(-100%); }
  80% {
    opacity: 1;
    -moz-transform: translateX(-50%) translateY(5%);
    -ms-transform: translateX(-50%) translateY(5%);
    -webkit-transform: translateX(-50%) translateY(5%);
    transform: translateX(-50%) translateY(5%); }
  100% {
    opacity: 1;
    -moz-transform: translateX(-50%) translateY(0);
    -ms-transform: translateX(-50%) translateY(0);
    -webkit-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0); } }
@-ms-keyframes notification-show {
  0% {
    opacity: 1;
    -moz-transform: translateX(-50%) translateY(-100%);
    -ms-transform: translateX(-50%) translateY(-100%);
    -webkit-transform: translateX(-50%) translateY(-100%);
    transform: translateX(-50%) translateY(-100%); }
  80% {
    opacity: 1;
    -moz-transform: translateX(-50%) translateY(5%);
    -ms-transform: translateX(-50%) translateY(5%);
    -webkit-transform: translateX(-50%) translateY(5%);
    transform: translateX(-50%) translateY(5%); }
  100% {
    opacity: 1;
    -moz-transform: translateX(-50%) translateY(0);
    -ms-transform: translateX(-50%) translateY(0);
    -webkit-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0); } }
@keyframes notification-show {
  0% {
    opacity: 1;
    -moz-transform: translateX(-50%) translateY(-100%);
    -ms-transform: translateX(-50%) translateY(-100%);
    -webkit-transform: translateX(-50%) translateY(-100%);
    transform: translateX(-50%) translateY(-100%); }
  80% {
    opacity: 1;
    -moz-transform: translateX(-50%) translateY(5%);
    -ms-transform: translateX(-50%) translateY(5%);
    -webkit-transform: translateX(-50%) translateY(5%);
    transform: translateX(-50%) translateY(5%); }
  100% {
    opacity: 1;
    -moz-transform: translateX(-50%) translateY(0);
    -ms-transform: translateX(-50%) translateY(0);
    -webkit-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0); } }
@-webkit-keyframes notification-hide {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@-moz-keyframes notification-hide {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@-ms-keyframes notification-hide {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes notification-hide {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
.md-noblock {
  display: none; }

.md-block {
  display: block; }

.md-show {
  z-index: 1000000;
  visibility: visible;
  -moz-transition: z-index 0s 0s;
  -o-transition: z-index 0s 0s;
  -webkit-transition: z-index 0s;
  -webkit-transition-delay: 0s;
  transition: z-index 0s 0s; }

.md-show .md-wrapper:before {
  content: '';
  opacity: .6;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

.md-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }
  .md-overlay.gray {
    background: #EEE; }
  .md-overlay.dark {
    background-color: #313945; }
  .md-overlay.white {
    background-color: #FFF; }
  .md-overlay[close-modal] {
    cursor: pointer; }

.md-show .md-overlay {
  opacity: 1;
  visibility: visible; }

/* Individual modal styles with animations/transitions */
/* Effect 1: Fade in and scale up */
.md-effect-fade-in-scale .md-content {
  opacity: 0;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -moz-transform: translateX(0%) translateY(0%) translateZ(0) scale(0.9);
  -ms-transform: translateX(0%) translateY(0%) translateZ(0) scale(0.9);
  -webkit-transform: translateX(0%) translateY(0%) translateZ(0) scale(0.9);
  transform: translateX(0%) translateY(0%) translateZ(0) scale(0.9); }

.md-show.md-effect-fade-in-scale .md-content {
  opacity: 1;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -moz-transform: translateX(0%) translateY(0%) translateZ(0) scale(1);
  -ms-transform: translateX(0%) translateY(0%) translateZ(0) scale(1);
  -webkit-transform: translateX(0%) translateY(0%) translateZ(0) scale(1);
  transform: translateX(0%) translateY(0%) translateZ(0) scale(1); }

/* Effect 2: Slide from the right */
.md-effect-slide-right-to-left .md-content {
  opacity: 0;
  -moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -o-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -moz-transform: translateX(20%) translateY(0%);
  -ms-transform: translateX(20%) translateY(0%);
  -webkit-transform: translateX(20%) translateY(0%);
  transform: translateX(20%) translateY(0%); }

.md-show.md-effect-slide-right-to-left .md-content {
  opacity: 1;
  -moz-transform: translateX(0%) translateY(0%);
  -ms-transform: translateX(0%) translateY(0%);
  -webkit-transform: translateX(0%) translateY(0%);
  transform: translateX(0%) translateY(0%); }

/* Effect 3: Slide from the bottom */
.md-effect-slide-down-to-top .md-content {
  opacity: 0;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -moz-transform: translateX(0%) translateY(20%);
  -ms-transform: translateX(0%) translateY(20%);
  -webkit-transform: translateX(0%) translateY(20%);
  transform: translateX(0%) translateY(20%); }

.md-show.md-effect-slide-down-to-top .md-content {
  opacity: 1;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -moz-transform: translateX(0%) translateY(0%);
  -ms-transform: translateX(0%) translateY(0%);
  -webkit-transform: translateX(0%) translateY(0%);
  transform: translateX(0%) translateY(0%); }

/* Effect 4: Newspaper */
.md-effect-rotation-in .md-content {
  -moz-transform: translateX(0%) translateY(0%) scale(0) rotate(720deg);
  -ms-transform: translateX(0%) translateY(0%) scale(0) rotate(720deg);
  -webkit-transform: translateX(0%) translateY(0%) scale(0) rotate(720deg);
  transform: translateX(0%) translateY(0%) scale(0) rotate(720deg);
  opacity: 0; }

.md-show.md-effect-rotation-in .md-content {
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -moz-transform: translateX(0%) translateY(0%) scale(1) rotate(0deg);
  -ms-transform: translateX(0%) translateY(0%) scale(1) rotate(0deg);
  -webkit-transform: translateX(0%) translateY(0%) scale(1) rotate(0deg);
  transform: translateX(0%) translateY(0%) scale(1) rotate(0deg);
  opacity: 1; }

/* Effect 5: fall */
.md-effect-fly-in.md-modal {
  -webkit-perspective: 1300px;
  -moz-perspective: 1300px;
  perspective: 1300px; }

.md-effect-fly-in .md-content {
  -moz-transform: translateX(0%) translateY(0%) translateZ(600px) rotateX(20deg);
  -ms-transform: translateX(0%) translateY(0%) translateZ(600px) rotateX(20deg);
  -webkit-transform: translateX(0%) translateY(0%) translateZ(600px) rotateX(20deg);
  transform: translateX(0%) translateY(0%) translateZ(600px) rotateX(20deg);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  opacity: 0; }

.md-show.md-effect-fly-in .md-content {
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -moz-transform: translateX(0%) translateY(0%) translateZ(0px) rotateX(0deg);
  -ms-transform: translateX(0%) translateY(0%) translateZ(0px) rotateX(0deg);
  -webkit-transform: translateX(0%) translateY(0%) translateZ(0px) rotateX(0deg);
  transform: translateX(0%) translateY(0%) translateZ(0px) rotateX(0deg);
  opacity: 1; }

/* Effect 6: side fall */
.md-effect-fly-in-and-right-to-left.md-modal {
  -webkit-perspective: 1300px;
  -moz-perspective: 1300px;
  perspective: 1300px; }

.md-effect-fly-in-and-right-to-left .md-content {
  -moz-transform: translateX(30%) translateY(30%) translateZ(600px) rotate(10deg);
  -ms-transform: translateX(30%) translateY(30%) translateZ(600px) rotate(10deg);
  -webkit-transform: translateX(30%) translateY(30%) translateZ(600px) rotate(10deg);
  transform: translateX(30%) translateY(30%) translateZ(600px) rotate(10deg);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  opacity: 0; }

.md-show.md-effect-fly-in-and-right-to-left .md-content {
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -moz-transform: translateX(0%) translateY(0%) translateZ(0) rotate(0deg);
  -ms-transform: translateX(0%) translateY(0%) translateZ(0) rotate(0deg);
  -webkit-transform: translateX(0%) translateY(0%) translateZ(0) rotate(0deg);
  transform: translateX(0%) translateY(0%) translateZ(0) rotate(0deg);
  opacity: 1; }

/* Effect 7:  slide and stick to top */
.md-effect-slide-and-fixed-center-top .md-content {
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -moz-transform: translateX(0%) translateY(-200%);
  -ms-transform: translateX(0%) translateY(-200%);
  -webkit-transform: translateX(0%) translateY(-200%);
  transform: translateX(0%) translateY(-200%);
  opacity: 0; }

.md-show.md-effect-slide-and-fixed-center-top .md-content {
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -moz-transform: translateX(0%) translateY(0%);
  -ms-transform: translateX(0%) translateY(0%);
  -webkit-transform: translateX(0%) translateY(0%);
  transform: translateX(0%) translateY(0%);
  border-radius: 0 0 3px 3px;
  opacity: 1; }

/* Effect 8: 3D flip horizontal */
.md-effect-flip-in-horizontal.md-modal {
  -webkit-perspective: 1300px;
  -moz-perspective: 1300px;
  perspective: 1300px; }

.md-effect-flip-in-horizontal .md-content {
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -moz-transform: translateX(0%) translateY(0%) rotateY(-70deg);
  -ms-transform: translateX(0%) translateY(0%) rotateY(-70deg);
  -webkit-transform: translateX(0%) translateY(0%) rotateY(-70deg);
  transform: translateX(0%) translateY(0%) rotateY(-70deg);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  opacity: 0; }

.md-show.md-effect-flip-in-horizontal .md-content {
  -moz-transform: translateX(0%) translateY(0%) rotateY(0deg);
  -ms-transform: translateX(0%) translateY(0%) rotateY(0deg);
  -webkit-transform: translateX(0%) translateY(0%) rotateY(0deg);
  transform: translateX(0%) translateY(0%) rotateY(0deg);
  opacity: 1; }

/* Effect 9: 3D flip vertical */
.md-effect-flip-in-vertical.md-modal {
  -webkit-perspective: 1300px;
  -moz-perspective: 1300px;
  perspective: 1300px; }

.md-effect-flip-in-vertical .md-content {
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -moz-transform: translateX(0%) translateY(0%) rotateX(-70deg);
  -ms-transform: translateX(0%) translateY(0%) rotateX(-70deg);
  -webkit-transform: translateX(0%) translateY(0%) rotateX(-70deg);
  transform: translateX(0%) translateY(0%) rotateX(-70deg);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  opacity: 0; }

.md-show.md-effect-flip-in-vertical .md-content {
  -moz-transform: translateX(0%) translateY(0%) rotateX(0deg);
  -ms-transform: translateX(0%) translateY(0%) rotateX(0deg);
  -webkit-transform: translateX(0%) translateY(0%) rotateX(0deg);
  transform: translateX(0%) translateY(0%) rotateX(0deg);
  opacity: 1; }

/* Effect 10: 3D sign */
.md-effect-flip-in-top-to-down.md-modal {
  -webkit-perspective: 1300px;
  -moz-perspective: 1300px;
  perspective: 1300px; }

.md-effect-flip-in-top-to-down .md-content {
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -moz-transform: translateX(0%) translateY(0%) rotateX(-60deg);
  -ms-transform: translateX(0%) translateY(0%) rotateX(-60deg);
  -webkit-transform: translateX(0%) translateY(0%) rotateX(-60deg);
  transform: translateX(0%) translateY(0%) rotateX(-60deg);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  transform-origin: 50% 0;
  opacity: 0; }

.md-show.md-effect-flip-in-top-to-down .md-content {
  -moz-transform: translateX(0%) translateY(0%) rotateX(0deg);
  -ms-transform: translateX(0%) translateY(0%) rotateX(0deg);
  -webkit-transform: translateX(0%) translateY(0%) rotateX(0deg);
  transform: translateX(0%) translateY(0%) rotateX(0deg);
  opacity: 1; }

/* Effect 13: 3D slit */
.md-effect-13.md-modal {
  -webkit-perspective: 1300px;
  -moz-perspective: 1300px;
  perspective: 1300px; }

.md-effect-13 .md-content {
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -moz-transform: translateX(0%) translateY(0%) translateZ(-3000px) rotateY(90deg);
  -ms-transform: translateX(0%) translateY(0%) translateZ(-3000px) rotateY(90deg);
  -webkit-transform: translateX(0%) translateY(0%) translateZ(-3000px) rotateY(90deg);
  transform: translateX(0%) translateY(0%) translateZ(-3000px) rotateY(90deg);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  opacity: 0; }

.md-show.md-effect-13 .md-content {
  -webkit-animation: slit .7s forwards ease-out;
  -moz-animation: slit .7s forwards ease-out;
  animation: slit .7s forwards ease-out; }

@-webkit-keyframes slit {
  50% {
    -moz-transform: translateX(0%) translateY(0%) translateZ(-250px) rotateY(89deg);
    -ms-transform: translateX(0%) translateY(0%) translateZ(-250px) rotateY(89deg);
    -webkit-transform: translateX(0%) translateY(0%) translateZ(-250px) rotateY(89deg);
    transform: translateX(0%) translateY(0%) translateZ(-250px) rotateY(89deg);
    opacity: .5;
    -webkit-animation-timing-function: ease-out; }
  100% {
    -moz-transform: translateX(0%) translateY(0%) translateZ(0) rotateY(0deg);
    -ms-transform: translateX(0%) translateY(0%) translateZ(0) rotateY(0deg);
    -webkit-transform: translateX(0%) translateY(0%) translateZ(0) rotateY(0deg);
    transform: translateX(0%) translateY(0%) translateZ(0) rotateY(0deg);
    opacity: 1; } }
@-moz-keyframes slit {
  50% {
    -moz-transform: translateX(0%) translateY(0%) translateZ(-250px) rotateY(89deg);
    -ms-transform: translateX(0%) translateY(0%) translateZ(-250px) rotateY(89deg);
    -webkit-transform: translateX(0%) translateY(0%) translateZ(-250px) rotateY(89deg);
    transform: translateX(0%) translateY(0%) translateZ(-250px) rotateY(89deg);
    opacity: .5;
    -moz-animation-timing-function: ease-out; }
  100% {
    -moz-transform: translateX(0%) translateY(0%) translateZ(0) rotateY(0deg);
    -ms-transform: translateX(0%) translateY(0%) translateZ(0) rotateY(0deg);
    -webkit-transform: translateX(0%) translateY(0%) translateZ(0) rotateY(0deg);
    transform: translateX(0%) translateY(0%) translateZ(0) rotateY(0deg);
    opacity: 1; } }
@keyframes slit {
  50% {
    -moz-transform: translateX(0%) translateY(0%) translateZ(-250px) rotateY(89deg);
    -ms-transform: translateX(0%) translateY(0%) translateZ(-250px) rotateY(89deg);
    -webkit-transform: translateX(0%) translateY(0%) translateZ(-250px) rotateY(89deg);
    transform: translateX(0%) translateY(0%) translateZ(-250px) rotateY(89deg);
    opacity: 1;
    animation-timing-function: ease-in; }
  100% {
    -moz-transform: translateX(0%) translateY(0%) translateZ(0) rotateY(0deg);
    -ms-transform: translateX(0%) translateY(0%) translateZ(0) rotateY(0deg);
    -webkit-transform: translateX(0%) translateY(0%) translateZ(0) rotateY(0deg);
    transform: translateX(0%) translateY(0%) translateZ(0) rotateY(0deg);
    opacity: 1; } }
/* Effect 14:  3D Rotate from bottom */
.md-effect-14.md-modal {
  -webkit-perspective: 1300px;
  -moz-perspective: 1300px;
  perspective: 1300px; }

.md-effect-14 .md-content {
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -moz-transform: translateX(0%) translateY(100%) rotateX(90deg);
  -ms-transform: translateX(0%) translateY(100%) rotateX(90deg);
  -webkit-transform: translateX(0%) translateY(100%) rotateX(90deg);
  transform: translateX(0%) translateY(100%) rotateX(90deg);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-origin: 0 100%;
  -moz-transform-origin: 0 100%;
  transform-origin: 0 100%;
  opacity: 0; }

.md-show.md-effect-14 .md-content {
  -moz-transform: translateX(0%) translateY(0%) rotateX(0deg);
  -ms-transform: translateX(0%) translateY(0%) rotateX(0deg);
  -webkit-transform: translateX(0%) translateY(0%) rotateX(0deg);
  transform: translateX(0%) translateY(0%) rotateX(0deg);
  opacity: 1; }

/* Effect 15:  3D Rotate in from left */
.md-effect-15.md-modal {
  -webkit-perspective: 1300px;
  -moz-perspective: 1300px;
  perspective: 1300px; }

.md-effect-15 .md-content {
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -moz-transform: translateX(-30%) translateY(0%) translateZ(100px) rotateY(90deg);
  -ms-transform: translateX(-30%) translateY(0%) translateZ(100px) rotateY(90deg);
  -webkit-transform: translateX(-30%) translateY(0%) translateZ(100px) rotateY(90deg);
  transform: translateX(-30%) translateY(0%) translateZ(100px) rotateY(90deg);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-origin: 0 100%;
  -moz-transform-origin: 0 100%;
  transform-origin: 0 100%;
  opacity: 0; }

.md-show.md-effect-15 .md-content {
  -moz-transform: translateX(0%) translateY(0%) translateZ(0px) rotateY(0deg);
  -ms-transform: translateX(0%) translateY(0%) translateZ(0px) rotateY(0deg);
  -webkit-transform: translateX(0%) translateY(0%) translateZ(0px) rotateY(0deg);
  transform: translateX(0%) translateY(0%) translateZ(0px) rotateY(0deg);
  opacity: 1; }

/* Effect 16:  Blur */
.md-show.md-effect-16 ~ .md-overlay {
  background: rgba(180, 46, 32, 0.5); }

.md-show.md-effect-16 ~ .container {
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  filter: blur(3px); }

.md-effect-16 .md-content {
  -moz-transform: translateX(0%) translateY(-5%);
  -ms-transform: translateX(0%) translateY(-5%);
  -webkit-transform: translateX(0%) translateY(-5%);
  transform: translateX(0%) translateY(-5%);
  opacity: 0; }

.md-show.md-effect-16 .md-content {
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -moz-transform: translateX(0%) translateY(0%);
  -ms-transform: translateX(0%) translateY(0%);
  -webkit-transform: translateX(0%) translateY(0%);
  transform: translateX(0%) translateY(0%);
  opacity: 1; }

/* Effect 17:  Slide in from bottom with perspective on container */
.md-show.md-effect-17 ~ .container {
  height: 100%;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s; }

.md-effect-17 .md-content {
  -moz-transform: translateX(0%) translateY(200%);
  -ms-transform: translateX(0%) translateY(200%);
  -webkit-transform: translateX(0%) translateY(200%);
  transform: translateX(0%) translateY(200%);
  opacity: 0; }

.md-show.md-effect-17 .md-content {
  -moz-transition: all 0.3s 0.2s;
  -o-transition: all 0.3s 0.2s;
  -webkit-transition: all 0.3s;
  -webkit-transition-delay: 0.2s;
  transition: all 0.3s 0.2s;
  -moz-transform: translateX(0%) translateY(0%);
  -ms-transform: translateX(0%) translateY(0%);
  -webkit-transform: translateX(0%) translateY(0%);
  transform: translateX(0%) translateY(0%);
  opacity: 1; }

/* Effect 18:  Slide from right with perspective on container */
.md-show.md-effect-18 ~ .container {
  height: 100%;
  overflow: hidden; }

.md-show.md-effect-18 ~ .md-overlay {
  background: rgba(143, 27, 15, 0.8);
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s; }

.md-show.md-effect-18 ~ .container,
.md-show.md-effect-18 ~ .md-overlay {
  -webkit-transform-style: preserve-3d;
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateRightSideFirst 0.5s forwards ease-in;
  -moz-transform-style: preserve-3d;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotateRightSideFirst 0.5s forwards ease-in;
  transform-style: preserve-3d;
  transform-origin: 0% 50%;
  animation: rotateRightSideFirst 0.5s forwards ease-in; }

@-webkit-keyframes rotateRightSideFirst {
  50% {
    -moz-transform: translateX(0%) translateY(0%) translateZ(-50px) rotateY(5deg);
    -ms-transform: translateX(0%) translateY(0%) translateZ(-50px) rotateY(5deg);
    -webkit-transform: translateX(0%) translateY(0%) translateZ(-50px) rotateY(5deg);
    transform: translateX(0%) translateY(0%) translateZ(-50px) rotateY(5deg);
    -webkit-animation-timing-function: ease-out; }
  100% {
    -moz-transform: translateX(0%) translateY(0%) translateZ(-200px);
    -ms-transform: translateX(0%) translateY(0%) translateZ(-200px);
    -webkit-transform: translateX(0%) translateY(0%) translateZ(-200px);
    transform: translateX(0%) translateY(0%) translateZ(-200px); } }
@-moz-keyframes rotateRightSideFirst {
  50% {
    -moz-transform: translateX(0%) translateY(0%) translateZ(-50px) rotateY(5deg);
    -ms-transform: translateX(0%) translateY(0%) translateZ(-50px) rotateY(5deg);
    -webkit-transform: translateX(0%) translateY(0%) translateZ(-50px) rotateY(5deg);
    transform: translateX(0%) translateY(0%) translateZ(-50px) rotateY(5deg);
    -webkit-animation-timing-function: ease-out; }
  100% {
    -moz-transform: translateX(0%) translateY(0%) translateZ(-200px);
    -ms-transform: translateX(0%) translateY(0%) translateZ(-200px);
    -webkit-transform: translateX(0%) translateY(0%) translateZ(-200px);
    transform: translateX(0%) translateY(0%) translateZ(-200px); } }
@keyframes rotateRightSideFirst {
  50% {
    -moz-transform: translateX(0%) translateY(0%) translateZ(-50px) rotateY(5deg);
    -ms-transform: translateX(0%) translateY(0%) translateZ(-50px) rotateY(5deg);
    -webkit-transform: translateX(0%) translateY(0%) translateZ(-50px) rotateY(5deg);
    transform: translateX(0%) translateY(0%) translateZ(-50px) rotateY(5deg);
    -webkit-animation-timing-function: ease-out; }
  100% {
    -moz-transform: translateX(0%) translateY(0%) translateZ(-200px);
    -ms-transform: translateX(0%) translateY(0%) translateZ(-200px);
    -webkit-transform: translateX(0%) translateY(0%) translateZ(-200px);
    transform: translateX(0%) translateY(0%) translateZ(-200px); } }
.md-effect-18 .md-content {
  -moz-transform: translateX(200%) translateY(0%);
  -ms-transform: translateX(200%) translateY(0%);
  -webkit-transform: translateX(200%) translateY(0%);
  transform: translateX(200%) translateY(0%);
  opacity: 0; }

.md-show.md-effect-18 .md-content {
  -moz-transition: all 0.5s 0.1s;
  -o-transition: all 0.5s 0.1s;
  -webkit-transition: all 0.5s;
  -webkit-transition-delay: 0.1s;
  transition: all 0.5s 0.1s;
  -moz-transform: translateX(0%) translateY(0%);
  -ms-transform: translateX(0%) translateY(0%);
  -webkit-transform: translateX(0%) translateY(0%);
  transform: translateX(0%) translateY(0%);
  opacity: 1; }

/* Effect 19:  Slip in from the top with perspective on container */
.md-show.md-effect-19 ~ .container {
  height: 100%;
  overflow: hidden; }

.md-show.md-effect-19 ~ .md-overlay {
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s; }

.md-show.md-effect-19 ~ .container,
.md-show.md-effect-19 ~ .md-overlay {
  -webkit-transform-style: preserve-3d;
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: OpenTop 0.5s forwards ease-in;
  -moz-transform-style: preserve-3d;
  -moz-transform-origin: 50% 100%;
  -moz-animation: OpenTop 0.5s forwards ease-in;
  transform-style: preserve-3d;
  transform-origin: 50% 100%;
  animation: OpenTop 0.5s forwards ease-in; }

@-webkit-keyframes OpenTop {
  50% {
    -moz-transform: translateX(200%) translateY(0%) rotateX(10deg);
    -ms-transform: translateX(200%) translateY(0%) rotateX(10deg);
    -webkit-transform: translateX(200%) translateY(0%) rotateX(10deg);
    transform: translateX(200%) translateY(0%) rotateX(10deg);
    -webkit-animation-timing-function: ease-out; } }
@-moz-keyframes OpenTop {
  50% {
    -moz-transform: translateX(200%) translateY(0%) rotateX(10deg);
    -ms-transform: translateX(200%) translateY(0%) rotateX(10deg);
    -webkit-transform: translateX(200%) translateY(0%) rotateX(10deg);
    transform: translateX(200%) translateY(0%) rotateX(10deg);
    -moz-animation-timing-function: ease-out; } }
@keyframes OpenTop {
  50% {
    -moz-transform: translateX(200%) translateY(0%) rotateX(10deg);
    -ms-transform: translateX(200%) translateY(0%) rotateX(10deg);
    -webkit-transform: translateX(200%) translateY(0%) rotateX(10deg);
    transform: translateX(200%) translateY(0%) rotateX(10deg);
    animation-timing-function: ease-out; } }
.md-effect-19 .md-content {
  -moz-transform: translateX(0%) translateY(-200%);
  -ms-transform: translateX(0%) translateY(-200%);
  -webkit-transform: translateX(0%) translateY(-200%);
  transform: translateX(0%) translateY(-200%);
  opacity: 0; }

.md-show.md-effect-19 .md-content {
  -moz-transition: all 0.5s 0.1s;
  -o-transition: all 0.5s 0.1s;
  -webkit-transition: all 0.5s;
  -webkit-transition-delay: 0.1s;
  transition: all 0.5s 0.1s;
  -moz-transform: translateX(0%) translateY(0%);
  -ms-transform: translateX(0%) translateY(0%);
  -webkit-transform: translateX(0%) translateY(0%);
  transform: translateX(0%) translateY(0%);
  opacity: 1; }

/* Effect 20: Slide from the right */
.md-effect-mobile-slide-right-to-left .md-content {
  -moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -o-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -moz-transform: translateX(100%) translateY(0%);
  -ms-transform: translateX(100%) translateY(0%);
  -webkit-transform: translateX(100%) translateY(0%);
  transform: translateX(100%) translateY(0%); }

.md-show.md-effect-mobile-slide-right-to-left .md-content {
  -moz-transform: translateX(0%) translateY(0%);
  -ms-transform: translateX(0%) translateY(0%);
  -webkit-transform: translateX(0%) translateY(0%);
  transform: translateX(0%) translateY(0%); }

.dropdown {
  z-index: -1;
  position: absolute;
  width: 180px;
  background-color: #FFF;
  visibility: hidden;
  display: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.4);
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px; }
  .dropdown.open {
    display: block;
    visibility: visible;
    z-index: 9; }
  .dropdown .dropdown-header {
    color: #6A6A6A; }
    .dropdown .dropdown-header h6 {
      text-align: center;
      border-bottom: 1px solid #CCC;
      line-height: 40px;
      line-height: 40px; }
  .dropdown .dropdown-footer {
    border-top: 1px solid #CCC;
    color: #9B9B9B; }
    .dropdown .dropdown-footer p {
      padding: 10px 25px;
      margin: 0;
      line-height: 1.6em; }
  .dropdown ul {
    width: 100%;
    margin: 0;
    padding: 5px 0; }
    .dropdown ul li {
      list-style: none;
      padding: 0 25px;
      height: 40px;
      line-height: 40px;
      font-size: 14px;
      font-size: 0.875rem; }
      .dropdown ul li i {
        margin-right: 8px; }
      .dropdown ul li a {
        display: block;
        color: #777;
        text-align: left; }
      .dropdown ul li:hover, .dropdown ul li:hover a, .dropdown ul li.active, .dropdown ul li.active a {
        color: #0071C5;
        cursor: pointer; }
    .dropdown ul hr {
      background-color: #ddd;
      margin: 5px 0; }
    .dropdown ul.fix-height {
      height: 300px; }

.dropdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2; }

.popup.dropdown.open {
  -webkit-animation-duration: 0.6s;
  -moz-animation-duration: 0.6s;
  -ms-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-name: popupMenu;
  -moz-animation-name: popupMenu;
  -ms-animation-name: popupMenu;
  animation-name: popupMenu; }

/* Generated with Bounce.js. Edit at http://goo.gl/tR6n8A */
@-webkit-keyframes popupMenu {
  0% {
    -webkit-transform: perspective(1px) matrix3d(0.95, 0, 0, 0, 0, 0.95, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.95, 0, 0, 0, 0, 0.95, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  3.4% {
    -webkit-transform: perspective(1px) matrix3d(0.966, 0, 0, 0, 0, 0.97, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.966, 0, 0, 0, 0, 0.97, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  4.7% {
    -webkit-transform: perspective(1px) matrix3d(0.972, 0, 0, 0, 0, 0.98, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.972, 0, 0, 0, 0, 0.98, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  6.81% {
    -webkit-transform: perspective(1px) matrix3d(0.983, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.983, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  9.41% {
    -webkit-transform: perspective(1px) matrix3d(0.994, 0, 0, 0, 0, 1.008, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.994, 0, 0, 0, 0, 1.008, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  10.21% {
    -webkit-transform: perspective(1px) matrix3d(0.997, 0, 0, 0, 0, 1.011, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.997, 0, 0, 0, 0, 1.011, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  13.61% {
    -webkit-transform: perspective(1px) matrix3d(1.006, 0, 0, 0, 0, 1.017, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.006, 0, 0, 0, 0, 1.017, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  14.11% {
    -webkit-transform: perspective(1px) matrix3d(1.007, 0, 0, 0, 0, 1.017, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.007, 0, 0, 0, 0, 1.017, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  17.52% {
    -webkit-transform: perspective(1px) matrix3d(1.01, 0, 0, 0, 0, 1.012, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.01, 0, 0, 0, 0, 1.012, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  18.72% {
    -webkit-transform: perspective(1px) matrix3d(1.011, 0, 0, 0, 0, 1.009, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.011, 0, 0, 0, 0, 1.009, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  21.32% {
    -webkit-transform: perspective(1px) matrix3d(1.01, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.01, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  24.32% {
    -webkit-transform: perspective(1px) matrix3d(1.008, 0, 0, 0, 0, 0.998, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.008, 0, 0, 0, 0, 0.998, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  25.23% {
    -webkit-transform: perspective(1px) matrix3d(1.007, 0, 0, 0, 0, 0.997, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.007, 0, 0, 0, 0, 0.997, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.03% {
    -webkit-transform: perspective(1px) matrix3d(1.003, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.003, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.93% {
    -webkit-transform: perspective(1px) matrix3d(1.002, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.002, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  35.54% {
    -webkit-transform: perspective(1px) matrix3d(0.999, 0, 0, 0, 0, 0.998, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.999, 0, 0, 0, 0, 0.998, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  36.74% {
    -webkit-transform: perspective(1px) matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  41.04% {
    -webkit-transform: perspective(1px) matrix3d(0.998, 0, 0, 0, 0, 1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.998, 0, 0, 0, 0, 1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  44.44% {
    -webkit-transform: perspective(1px) matrix3d(0.998, 0, 0, 0, 0, 1.002, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.998, 0, 0, 0, 0, 1.002, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  52.15% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  59.86% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  63.26% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  75.28% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  85.49% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  90.69% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  100% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } }
@-moz-keyframes popupMenu {
  0% {
    -webkit-transform: perspective(1px) matrix3d(0.95, 0, 0, 0, 0, 0.95, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.95, 0, 0, 0, 0, 0.95, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  3.4% {
    -webkit-transform: perspective(1px) matrix3d(0.966, 0, 0, 0, 0, 0.97, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.966, 0, 0, 0, 0, 0.97, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  4.7% {
    -webkit-transform: perspective(1px) matrix3d(0.972, 0, 0, 0, 0, 0.98, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.972, 0, 0, 0, 0, 0.98, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  6.81% {
    -webkit-transform: perspective(1px) matrix3d(0.983, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.983, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  9.41% {
    -webkit-transform: perspective(1px) matrix3d(0.994, 0, 0, 0, 0, 1.008, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.994, 0, 0, 0, 0, 1.008, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  10.21% {
    -webkit-transform: perspective(1px) matrix3d(0.997, 0, 0, 0, 0, 1.011, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.997, 0, 0, 0, 0, 1.011, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  13.61% {
    -webkit-transform: perspective(1px) matrix3d(1.006, 0, 0, 0, 0, 1.017, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.006, 0, 0, 0, 0, 1.017, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  14.11% {
    -webkit-transform: perspective(1px) matrix3d(1.007, 0, 0, 0, 0, 1.017, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.007, 0, 0, 0, 0, 1.017, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  17.52% {
    -webkit-transform: perspective(1px) matrix3d(1.01, 0, 0, 0, 0, 1.012, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.01, 0, 0, 0, 0, 1.012, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  18.72% {
    -webkit-transform: perspective(1px) matrix3d(1.011, 0, 0, 0, 0, 1.009, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.011, 0, 0, 0, 0, 1.009, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  21.32% {
    -webkit-transform: perspective(1px) matrix3d(1.01, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.01, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  24.32% {
    -webkit-transform: perspective(1px) matrix3d(1.008, 0, 0, 0, 0, 0.998, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.008, 0, 0, 0, 0, 0.998, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  25.23% {
    -webkit-transform: perspective(1px) matrix3d(1.007, 0, 0, 0, 0, 0.997, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.007, 0, 0, 0, 0, 0.997, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.03% {
    -webkit-transform: perspective(1px) matrix3d(1.003, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.003, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.93% {
    -webkit-transform: perspective(1px) matrix3d(1.002, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.002, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  35.54% {
    -webkit-transform: perspective(1px) matrix3d(0.999, 0, 0, 0, 0, 0.998, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.999, 0, 0, 0, 0, 0.998, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  36.74% {
    -webkit-transform: perspective(1px) matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  41.04% {
    -webkit-transform: perspective(1px) matrix3d(0.998, 0, 0, 0, 0, 1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.998, 0, 0, 0, 0, 1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  44.44% {
    -webkit-transform: perspective(1px) matrix3d(0.998, 0, 0, 0, 0, 1.002, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.998, 0, 0, 0, 0, 1.002, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  52.15% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  59.86% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  63.26% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  75.28% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  85.49% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  90.69% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  100% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } }
@-ms-keyframes popupMenu {
  0% {
    -webkit-transform: perspective(1px) matrix3d(0.95, 0, 0, 0, 0, 0.95, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.95, 0, 0, 0, 0, 0.95, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  3.4% {
    -webkit-transform: perspective(1px) matrix3d(0.966, 0, 0, 0, 0, 0.97, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.966, 0, 0, 0, 0, 0.97, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  4.7% {
    -webkit-transform: perspective(1px) matrix3d(0.972, 0, 0, 0, 0, 0.98, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.972, 0, 0, 0, 0, 0.98, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  6.81% {
    -webkit-transform: perspective(1px) matrix3d(0.983, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.983, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  9.41% {
    -webkit-transform: perspective(1px) matrix3d(0.994, 0, 0, 0, 0, 1.008, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.994, 0, 0, 0, 0, 1.008, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  10.21% {
    -webkit-transform: perspective(1px) matrix3d(0.997, 0, 0, 0, 0, 1.011, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.997, 0, 0, 0, 0, 1.011, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  13.61% {
    -webkit-transform: perspective(1px) matrix3d(1.006, 0, 0, 0, 0, 1.017, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.006, 0, 0, 0, 0, 1.017, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  14.11% {
    -webkit-transform: perspective(1px) matrix3d(1.007, 0, 0, 0, 0, 1.017, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.007, 0, 0, 0, 0, 1.017, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  17.52% {
    -webkit-transform: perspective(1px) matrix3d(1.01, 0, 0, 0, 0, 1.012, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.01, 0, 0, 0, 0, 1.012, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  18.72% {
    -webkit-transform: perspective(1px) matrix3d(1.011, 0, 0, 0, 0, 1.009, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.011, 0, 0, 0, 0, 1.009, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  21.32% {
    -webkit-transform: perspective(1px) matrix3d(1.01, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.01, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  24.32% {
    -webkit-transform: perspective(1px) matrix3d(1.008, 0, 0, 0, 0, 0.998, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.008, 0, 0, 0, 0, 0.998, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  25.23% {
    -webkit-transform: perspective(1px) matrix3d(1.007, 0, 0, 0, 0, 0.997, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.007, 0, 0, 0, 0, 0.997, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.03% {
    -webkit-transform: perspective(1px) matrix3d(1.003, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.003, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.93% {
    -webkit-transform: perspective(1px) matrix3d(1.002, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.002, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  35.54% {
    -webkit-transform: perspective(1px) matrix3d(0.999, 0, 0, 0, 0, 0.998, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.999, 0, 0, 0, 0, 0.998, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  36.74% {
    -webkit-transform: perspective(1px) matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  41.04% {
    -webkit-transform: perspective(1px) matrix3d(0.998, 0, 0, 0, 0, 1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.998, 0, 0, 0, 0, 1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  44.44% {
    -webkit-transform: perspective(1px) matrix3d(0.998, 0, 0, 0, 0, 1.002, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.998, 0, 0, 0, 0, 1.002, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  52.15% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  59.86% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  63.26% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  75.28% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  85.49% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  90.69% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  100% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } }
@keyframes popupMenu {
  0% {
    -webkit-transform: perspective(1px) matrix3d(0.95, 0, 0, 0, 0, 0.95, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.95, 0, 0, 0, 0, 0.95, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  3.4% {
    -webkit-transform: perspective(1px) matrix3d(0.966, 0, 0, 0, 0, 0.97, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.966, 0, 0, 0, 0, 0.97, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  4.7% {
    -webkit-transform: perspective(1px) matrix3d(0.972, 0, 0, 0, 0, 0.98, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.972, 0, 0, 0, 0, 0.98, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  6.81% {
    -webkit-transform: perspective(1px) matrix3d(0.983, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.983, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  9.41% {
    -webkit-transform: perspective(1px) matrix3d(0.994, 0, 0, 0, 0, 1.008, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.994, 0, 0, 0, 0, 1.008, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  10.21% {
    -webkit-transform: perspective(1px) matrix3d(0.997, 0, 0, 0, 0, 1.011, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.997, 0, 0, 0, 0, 1.011, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  13.61% {
    -webkit-transform: perspective(1px) matrix3d(1.006, 0, 0, 0, 0, 1.017, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.006, 0, 0, 0, 0, 1.017, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  14.11% {
    -webkit-transform: perspective(1px) matrix3d(1.007, 0, 0, 0, 0, 1.017, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.007, 0, 0, 0, 0, 1.017, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  17.52% {
    -webkit-transform: perspective(1px) matrix3d(1.01, 0, 0, 0, 0, 1.012, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.01, 0, 0, 0, 0, 1.012, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  18.72% {
    -webkit-transform: perspective(1px) matrix3d(1.011, 0, 0, 0, 0, 1.009, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.011, 0, 0, 0, 0, 1.009, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  21.32% {
    -webkit-transform: perspective(1px) matrix3d(1.01, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.01, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  24.32% {
    -webkit-transform: perspective(1px) matrix3d(1.008, 0, 0, 0, 0, 0.998, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.008, 0, 0, 0, 0, 0.998, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  25.23% {
    -webkit-transform: perspective(1px) matrix3d(1.007, 0, 0, 0, 0, 0.997, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.007, 0, 0, 0, 0, 0.997, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.03% {
    -webkit-transform: perspective(1px) matrix3d(1.003, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.003, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.93% {
    -webkit-transform: perspective(1px) matrix3d(1.002, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1.002, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  35.54% {
    -webkit-transform: perspective(1px) matrix3d(0.999, 0, 0, 0, 0, 0.998, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.999, 0, 0, 0, 0, 0.998, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  36.74% {
    -webkit-transform: perspective(1px) matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  41.04% {
    -webkit-transform: perspective(1px) matrix3d(0.998, 0, 0, 0, 0, 1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.998, 0, 0, 0, 0, 1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  44.44% {
    -webkit-transform: perspective(1px) matrix3d(0.998, 0, 0, 0, 0, 1.002, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(0.998, 0, 0, 0, 0, 1.002, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  52.15% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  59.86% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  63.26% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  75.28% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  85.49% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  90.69% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  100% {
    -webkit-transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: perspective(1px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } }
@-webkit-keyframes slideDown {
  0% {
    -moz-transform: translateY(-10%);
    -ms-transform: translateY(-10%);
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%); }
  100% {
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%); } }
@-moz-keyframes slideDown {
  0% {
    -moz-transform: translateY(-10%);
    -ms-transform: translateY(-10%);
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%); }
  100% {
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%); } }
@-ms-keyframes slideDown {
  0% {
    -moz-transform: translateY(-10%);
    -ms-transform: translateY(-10%);
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%); }
  100% {
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%); } }
@keyframes slideDown {
  0% {
    -moz-transform: translateY(-10%);
    -ms-transform: translateY(-10%);
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%); }
  100% {
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%); } }
.slide-down.dropdown.open {
  -webkit-animation-duration: 150ms;
  -moz-animation-duration: 150ms;
  -ms-animation-duration: 150ms;
  animation-duration: 150ms;
  -webkit-animation-name: slideDown;
  -moz-animation-name: slideDown;
  -ms-animation-name: slideDown;
  animation-name: slideDown; }

@-webkit-keyframes fade-in-out {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-moz-keyframes fade-in-out {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-ms-keyframes fade-in-out {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fade-in-out {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.fade-in-out.dropdown.open {
  -webkit-animation-duration: 300ms;
  -moz-animation-duration: 300ms;
  -ms-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-name: fade-in-out;
  -moz-animation-name: fade-in-out;
  -ms-animation-name: fade-in-out;
  animation-name: fade-in-out; }

#toast-container {
  padding: -2px; }

.toast-title {
  font-weight: bold; }

.toast-message {
  -ms-word-wrap: break-word;
  word-wrap: break-word; }

.toast-message a,
.toast-message label {
  color: #ffffff; }

.toast-message a:hover {
  text-decoration: none; }

.notification-title {
  display: inline-block;
  max-width: 250px;
  height: 14px;
  line-height: 14px;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle; }

.toast-template-contain {
  display: inline-block;
  margin-right: 20px; }

.toast-close-button {
  position: relative;
  right: -0.3em;
  top: 0;
  display: inline-block;
  margin-left: 15px;
  float: right;
  color: #ffffff; }

.toast-close-button:hover,
.toast-close-button:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40); }

/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none; }

.toast-button-group {
  display: inline-block; }
  .toast-button-group button, .toast-button-group .button {
    position: relative;
    right: -0.3em;
    top: 0;
    display: inline-block;
    margin: 0 0 0 15px;
    padding: 0 3px;
    color: #ffffff;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none; }
    .toast-button-group button:hover, .toast-button-group button:focus, .toast-button-group .button:hover, .toast-button-group .button:focus {
      color: #ffffff;
      text-decoration: none;
      cursor: pointer;
      opacity: 0.8;
      -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
      filter: alpha(opacity=40); }

.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%; }

.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%; }

.toast-top-left {
  top: 135px;
  left: 20px; }

.toast-top-right {
  top: 135px;
  right: calc(50% - 640px); }

.toast-top-center {
  top: 135px;
  right: 50%;
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -webkit-transform: translateX(50%);
  transform: translateX(50%); }

.toast-bottom-right {
  right: 24px;
  bottom: 24px; }

.toast-bottom-center {
  bottom: 12px;
  right: 50%;
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -webkit-transform: translateX(50%);
  transform: translateX(50%); }

.toast-bottom-left {
  bottom: 24px;
  left: 24px; }

.toast-center {
  top: 45%; }

#toast-container {
  position: fixed;
  z-index: 1000010; }

#toast-container * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

#toast-container > div {
  margin: 0px 0 10px;
  padding: 0 20px;
  height: 36px;
  line-height: 36px;
  max-width: 600px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  color: #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
  font-size: 14px; }

#toast-container > :hover {
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer; }

#toast-container.toast-top-full-width > div, #toast-container.toast-bottom-full-width > div {
  width: 96%;
  margin: auto; }

.toast {
  background-color: #030303; }

.toast-success {
  background-color: #14A5FF; }

.toast-error {
  background-color: #F14342; }

.toast-info {
  background-color: #313945; }

.toast-wait {
  background-color: #2f96b4; }

.toast-warning {
  background-color: #f89406; }

#toast-container > div.ng-enter {
  -moz-animation-duration: 0.9s;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
  -moz-animation-name: popupToast;
  -webkit-animation-name: popupToast;
  animation-name: popupToast; }

#toast-container > div.ng-leave {
  -moz-animation-duration: 0.3s;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -moz-animation-name: hide;
  -webkit-animation-name: hide;
  animation-name: hide; }

#toast-container > div.ng-enter.ng-enter-active, #toast-container > div.ng-leave {
  opacity: 1; }

#toast-container > div.ng-leave.ng-leave-active, #toast-container > div.ng-enter {
  opacity: 0; }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  100% {
    opacity: 1;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInRight {
  0% {
    opacity: 0 !important;
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  100% {
    opacity: 1;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
@keyframes fadeOutRight {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
@-moz-keyframes hide {
  0% {
    opacity: 1;
    -moz-transform: scale(1);
    transform: scale(1); }
  100% {
    opacity: 0;
    -moz-transform: scale(0.9);
    transform: scale(0.9); } }
@-webkit-keyframes hide {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9); } }
@keyframes hide {
  0% {
    opacity: 1;
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    opacity: 0;
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform: scale(0.9); } }
/* Generated with Bounce.js. Edit at http://goo.gl/6iLZu5 */
@-moz-keyframes popupToast {
  0% {
    opacity: 0.7;
    -webkit-transform: matrix3d(0.8, 0, 0, 0, 0, 0.8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.8, 0, 0, 0, 0, 0.8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  4.166667% {
    -webkit-transform: matrix3d(0.87381, 0, 0, 0, 0, 0.89696, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.87381, 0, 0, 0, 0, 0.89696, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  8.333333% {
    -webkit-transform: matrix3d(0.94692, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.94692, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  12.5% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1.05469, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1.05469, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  16.666667% {
    -webkit-transform: matrix3d(1.02818, 0, 0, 0, 0, 1.05635, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.02818, 0, 0, 0, 0, 1.05635, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  20.833333% {
    -webkit-transform: matrix3d(1.03556, 0, 0, 0, 0, 1.02903, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.03556, 0, 0, 0, 0, 1.02903, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  25% {
    -webkit-transform: matrix3d(1.02991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.02991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.166667% {
    -webkit-transform: matrix3d(1.01887, 0, 0, 0, 0, 0.98459, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.01887, 0, 0, 0, 0, 0.98459, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  33.333333% {
    -webkit-transform: matrix3d(1.00794, 0, 0, 0, 0, 0.98412, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00794, 0, 0, 0, 0, 0.98412, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  37.5% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 0.99182, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 0.99182, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  41.666667% {
    -webkit-transform: matrix3d(0.99579, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99579, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  45.833333% {
    -webkit-transform: matrix3d(0.99468, 0, 0, 0, 0, 1.00434, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99468, 0, 0, 0, 0, 1.00434, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  50% {
    -webkit-transform: matrix3d(0.99553, 0, 0, 0, 0, 1.00447, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99553, 0, 0, 0, 0, 1.00447, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  54.166667% {
    -webkit-transform: matrix3d(0.99718, 0, 0, 0, 0, 1.0023, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99718, 0, 0, 0, 0, 1.0023, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  58.333333% {
    -webkit-transform: matrix3d(0.99881, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99881, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  62.5% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 0.99878, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 0.99878, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  66.666667% {
    -webkit-transform: matrix3d(1.00063, 0, 0, 0, 0, 0.99874, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00063, 0, 0, 0, 0, 0.99874, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  70.833333% {
    -webkit-transform: matrix3d(1.0008, 0, 0, 0, 0, 0.99935, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.0008, 0, 0, 0, 0, 0.99935, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  75% {
    -webkit-transform: matrix3d(1.00067, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00067, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  79.166667% {
    -webkit-transform: matrix3d(1.00042, 0, 0, 0, 0, 1.00034, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00042, 0, 0, 0, 0, 1.00034, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  83.333333% {
    -webkit-transform: matrix3d(1.00018, 0, 0, 0, 0, 1.00036, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00018, 0, 0, 0, 0, 1.00036, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  87.5% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1.00018, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1.00018, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  91.666667% {
    -webkit-transform: matrix3d(0.99991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  95.833333% {
    -webkit-transform: matrix3d(0.99988, 0, 0, 0, 0, 0.9999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99988, 0, 0, 0, 0, 0.9999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  100% {
    opacity: 1;
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } }
@-webkit-keyframes popupToast {
  0% {
    opacity: 0.7;
    -webkit-transform: matrix3d(0.8, 0, 0, 0, 0, 0.8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.8, 0, 0, 0, 0, 0.8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  4.166667% {
    -webkit-transform: matrix3d(0.87381, 0, 0, 0, 0, 0.89696, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.87381, 0, 0, 0, 0, 0.89696, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  8.333333% {
    -webkit-transform: matrix3d(0.94692, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.94692, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  12.5% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1.05469, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1.05469, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  16.666667% {
    -webkit-transform: matrix3d(1.02818, 0, 0, 0, 0, 1.05635, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.02818, 0, 0, 0, 0, 1.05635, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  20.833333% {
    -webkit-transform: matrix3d(1.03556, 0, 0, 0, 0, 1.02903, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.03556, 0, 0, 0, 0, 1.02903, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  25% {
    -webkit-transform: matrix3d(1.02991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.02991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.166667% {
    -webkit-transform: matrix3d(1.01887, 0, 0, 0, 0, 0.98459, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.01887, 0, 0, 0, 0, 0.98459, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  33.333333% {
    -webkit-transform: matrix3d(1.00794, 0, 0, 0, 0, 0.98412, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00794, 0, 0, 0, 0, 0.98412, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  37.5% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 0.99182, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 0.99182, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  41.666667% {
    -webkit-transform: matrix3d(0.99579, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99579, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  45.833333% {
    -webkit-transform: matrix3d(0.99468, 0, 0, 0, 0, 1.00434, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99468, 0, 0, 0, 0, 1.00434, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  50% {
    -webkit-transform: matrix3d(0.99553, 0, 0, 0, 0, 1.00447, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99553, 0, 0, 0, 0, 1.00447, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  54.166667% {
    -webkit-transform: matrix3d(0.99718, 0, 0, 0, 0, 1.0023, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99718, 0, 0, 0, 0, 1.0023, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  58.333333% {
    -webkit-transform: matrix3d(0.99881, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99881, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  62.5% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 0.99878, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 0.99878, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  66.666667% {
    -webkit-transform: matrix3d(1.00063, 0, 0, 0, 0, 0.99874, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00063, 0, 0, 0, 0, 0.99874, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  70.833333% {
    -webkit-transform: matrix3d(1.0008, 0, 0, 0, 0, 0.99935, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.0008, 0, 0, 0, 0, 0.99935, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  75% {
    -webkit-transform: matrix3d(1.00067, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00067, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  79.166667% {
    -webkit-transform: matrix3d(1.00042, 0, 0, 0, 0, 1.00034, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00042, 0, 0, 0, 0, 1.00034, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  83.333333% {
    -webkit-transform: matrix3d(1.00018, 0, 0, 0, 0, 1.00036, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00018, 0, 0, 0, 0, 1.00036, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  87.5% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1.00018, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1.00018, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  91.666667% {
    -webkit-transform: matrix3d(0.99991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  95.833333% {
    -webkit-transform: matrix3d(0.99988, 0, 0, 0, 0, 0.9999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99988, 0, 0, 0, 0, 0.9999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  100% {
    opacity: 1;
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } }
@keyframes popupToast {
  0% {
    opacity: 0.7;
    -webkit-transform: matrix3d(0.8, 0, 0, 0, 0, 0.8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.8, 0, 0, 0, 0, 0.8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  4.166667% {
    -webkit-transform: matrix3d(0.87381, 0, 0, 0, 0, 0.89696, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.87381, 0, 0, 0, 0, 0.89696, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  8.333333% {
    -webkit-transform: matrix3d(0.94692, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.94692, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  12.5% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1.05469, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1.05469, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  16.666667% {
    -webkit-transform: matrix3d(1.02818, 0, 0, 0, 0, 1.05635, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.02818, 0, 0, 0, 0, 1.05635, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  20.833333% {
    -webkit-transform: matrix3d(1.03556, 0, 0, 0, 0, 1.02903, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.03556, 0, 0, 0, 0, 1.02903, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  25% {
    -webkit-transform: matrix3d(1.02991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.02991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.166667% {
    -webkit-transform: matrix3d(1.01887, 0, 0, 0, 0, 0.98459, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.01887, 0, 0, 0, 0, 0.98459, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  33.333333% {
    -webkit-transform: matrix3d(1.00794, 0, 0, 0, 0, 0.98412, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00794, 0, 0, 0, 0, 0.98412, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  37.5% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 0.99182, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 0.99182, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  41.666667% {
    -webkit-transform: matrix3d(0.99579, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99579, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  45.833333% {
    -webkit-transform: matrix3d(0.99468, 0, 0, 0, 0, 1.00434, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99468, 0, 0, 0, 0, 1.00434, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  50% {
    -webkit-transform: matrix3d(0.99553, 0, 0, 0, 0, 1.00447, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99553, 0, 0, 0, 0, 1.00447, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  54.166667% {
    -webkit-transform: matrix3d(0.99718, 0, 0, 0, 0, 1.0023, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99718, 0, 0, 0, 0, 1.0023, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  58.333333% {
    -webkit-transform: matrix3d(0.99881, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99881, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  62.5% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 0.99878, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 0.99878, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  66.666667% {
    -webkit-transform: matrix3d(1.00063, 0, 0, 0, 0, 0.99874, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00063, 0, 0, 0, 0, 0.99874, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  70.833333% {
    -webkit-transform: matrix3d(1.0008, 0, 0, 0, 0, 0.99935, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.0008, 0, 0, 0, 0, 0.99935, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  75% {
    -webkit-transform: matrix3d(1.00067, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00067, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  79.166667% {
    -webkit-transform: matrix3d(1.00042, 0, 0, 0, 0, 1.00034, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00042, 0, 0, 0, 0, 1.00034, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  83.333333% {
    -webkit-transform: matrix3d(1.00018, 0, 0, 0, 0, 1.00036, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00018, 0, 0, 0, 0, 1.00036, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  87.5% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1.00018, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1.00018, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  91.666667% {
    -webkit-transform: matrix3d(0.99991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  95.833333% {
    -webkit-transform: matrix3d(0.99988, 0, 0, 0, 0, 0.9999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99988, 0, 0, 0, 0, 0.9999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  100% {
    opacity: 1;
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } }
/* Responsive Design */
@media all and (max-width: 240px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 11em; }

  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em; } }
@media all and (min-width: 241px) and (max-width: 480px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 18em; }

  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em; } }
@media all and (min-width: 481px) and (max-width: 768px) {
  #toast-container > div {
    padding: 15px 15px 15px 50px;
    width: 25em; } }
/*
  * AngularJS-Toaster
  * Version 0.3
 */
:not(.no-enter)#toast-container > div.ng-enter,
:not(.no-leave)#toast-container > div.ng-leave {
  -webkit-transition: 1000ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  -moz-transition: 1000ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  -ms-transition: 1000ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  -o-transition: 1000ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  transition: 1000ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all; }

:not(.no-enter)#toast-container > div.ng-enter.ng-enter-active,
:not(.no-leave)#toast-container > div.ng-leave {
  opacity: 0.8; }

:not(.no-leave)#toast-container > div.ng-leave.ng-leave-active,
:not(.no-enter)#toast-container > div.ng-enter {
  opacity: 0; }

#home {
  position: relative;
  width: calc(100% - 20px);
  max-width: 1100px;
  height: 100%;
  padding: 30px 0 30px 0;
  margin: 0 auto; }
  #home .loading-state {
    height: calc(100vh - 360px); }
  #home .main-content {
    position: relative;
    width: 100%;
    height: 440px;
    margin: 0 0 30px 0;
    display: -webkit-flex;
    display: flex; }
    #home .main-content .left-wrapper {
      display: inline-block;
      width: 300px;
      height: 100%; }
      #home .main-content .left-wrapper .pdtclass-menu {
        position: relative;
        width: 100%;
        height: 100%;
        margin: 0;
        border: 1px solid #DADADA;
        background-color: #fff;
        list-style: none;
        overflow: hidden; }
        #home .main-content .left-wrapper .pdtclass-menu .menu-title {
          height: 60px;
          line-height: 60px;
          padding: 0 16px;
          color: #000;
          font-size: 20px;
          font-weight: 600; }
        #home .main-content .left-wrapper .pdtclass-menu .menu-item {
          display: block;
          position: relative;
          margin: 0 0 10px 0;
          padding: 10px 16px;
          cursor: pointer; }
          #home .main-content .left-wrapper .pdtclass-menu .menu-item:last-child {
            margin: 0; }
          #home .main-content .left-wrapper .pdtclass-menu .menu-item:after {
            content: "";
            display: none;
            position: absolute;
            top: 0;
            right: -4px;
            width: 4px;
            height: 100%;
            background-color: #fff; }
          #home .main-content .left-wrapper .pdtclass-menu .menu-item:hover, #home .main-content .left-wrapper .pdtclass-menu .menu-item.active {
            background-color: #ee7c68; }
            #home .main-content .left-wrapper .pdtclass-menu .menu-item:hover .title, #home .main-content .left-wrapper .pdtclass-menu .menu-item:hover .description, #home .main-content .left-wrapper .pdtclass-menu .menu-item.active .title, #home .main-content .left-wrapper .pdtclass-menu .menu-item.active .description {
              color: #fff; }
            #home .main-content .left-wrapper .pdtclass-menu .menu-item:hover:after, #home .main-content .left-wrapper .pdtclass-menu .menu-item.active:after {
              display: inline-block; }
          #home .main-content .left-wrapper .pdtclass-menu .menu-item .title {
            line-height: 22px;
            color: #000;
            font-size: 16px; }
          #home .main-content .left-wrapper .pdtclass-menu .menu-item .description {
            line-height: 24px;
            margin: 8px 0 0 0;
            color: #737373;
            font-size: 14px; }
      #home .main-content .left-wrapper .pdtclass-menu-info > .menu-info-content {
        display: none;
        position: absolute;
        top: 60px;
        left: 299px;
        width: calc(100% - 320px);
        min-height: calc(100% - 60px - 25px);
        margin: 0;
        padding: 0;
        border: 1px solid #DADADA;
        list-style: none;
        overflow: hidden;
        background-color: #fff;
        z-index: 3; }
        #home .main-content .left-wrapper .pdtclass-menu-info > .menu-info-content.active {
          display: inline-block; }
        #home .main-content .left-wrapper .pdtclass-menu-info > .menu-info-content .close-menu {
          position: absolute;
          top: 0;
          right: 0;
          width: 40px;
          height: 40px;
          line-height: 40px;
          text-align: center;
          color: #484848;
          z-index: 4;
          font-size: 16px;
          font-size: 1rem; }
          #home .main-content .left-wrapper .pdtclass-menu-info > .menu-info-content .close-menu:hover {
            color: #2A2A2A;
            cursor: pointer; }
          #home .main-content .left-wrapper .pdtclass-menu-info > .menu-info-content .close-menu .icon-cancel {
            position: absolute;
            top: 50%;
            left: 50%;
            font-size: 13px;
            font-size: 0.8125rem;
            -moz-transform: translateX(-50%) translateY(-50%);
            -ms-transform: translateX(-50%) translateY(-50%);
            -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%); }
        #home .main-content .left-wrapper .pdtclass-menu-info > .menu-info-content .product-menu {
          display: inline-block;
          position: relative;
          top: 0;
          left: 0;
          width: 100%;
          height: auto;
          padding: 22px 22px 4px 0;
          background-color: #fff;
          z-index: 3;
          cursor: auto;
          overflow: hidden; }
          #home .main-content .left-wrapper .pdtclass-menu-info > .menu-info-content .product-menu .product-subclass {
            position: relative;
            overflow: hidden; }
            #home .main-content .left-wrapper .pdtclass-menu-info > .menu-info-content .product-menu .product-subclass .subclass-wrapper {
              display: -webkit-inline-flex;
              display: inline-flex; }
            #home .main-content .left-wrapper .pdtclass-menu-info > .menu-info-content .product-menu .product-subclass .subclass-title {
              display: block;
              width: 130px;
              min-width: 130px;
              margin: 0 20px 0 0;
              text-align: right; }
              #home .main-content .left-wrapper .pdtclass-menu-info > .menu-info-content .product-menu .product-subclass .subclass-title a {
                color: #000;
                font-size: 16px;
                word-break: break-all;
                cursor: pointer; }
                #home .main-content .left-wrapper .pdtclass-menu-info > .menu-info-content .product-menu .product-subclass .subclass-title a:hover {
                  color: #ee7c68;
                  text-decoration: underline; }
              #home .main-content .left-wrapper .pdtclass-menu-info > .menu-info-content .product-menu .product-subclass .subclass-title i {
                margin: 0 0 0 10px;
                color: #DADADA;
                font-size: 18px;
                vertical-align: text-top; }
            #home .main-content .left-wrapper .pdtclass-menu-info > .menu-info-content .product-menu .product-subclass .product-wrapper {
              -webkit-flex: 1 1 0;
              flex: 1 1 0;
              -webkit-flex-wrap: wrap;
              flex-wrap: wrap;
              display: -webkit-flex;
              display: flex;
              -webkit-align-items: flex-start;
              align-items: flex-start; }
            #home .main-content .left-wrapper .pdtclass-menu-info > .menu-info-content .product-menu .product-subclass .product {
              display: inline-block;
              margin: 0 0 20px 0;
              color: #737373;
              white-space: nowrap;
              font-size: 14px;
              font-size: 0.875rem; }
              #home .main-content .left-wrapper .pdtclass-menu-info > .menu-info-content .product-menu .product-subclass .product:after {
                content: "、";
                margin: 0 0 0 -4px; }
              #home .main-content .left-wrapper .pdtclass-menu-info > .menu-info-content .product-menu .product-subclass .product:last-child:after {
                display: none; }
              #home .main-content .left-wrapper .pdtclass-menu-info > .menu-info-content .product-menu .product-subclass .product a {
                color: #737373;
                text-decoration: none; }
                #home .main-content .left-wrapper .pdtclass-menu-info > .menu-info-content .product-menu .product-subclass .product a:hover {
                  color: #ee7c68;
                  text-decoration: underline; }
    #home .main-content .middle-wrapper {
      display: inline-block;
      width: 800px; }
      #home .main-content .middle-wrapper .banner-wrapper {
        position: relative;
        height: 440px; }
        #home .main-content .middle-wrapper .banner-wrapper .image-wrapper {
          position: relative;
          display: inline-block;
          width: 100%;
          height: 440px; }
          #home .main-content .middle-wrapper .banner-wrapper .image-wrapper .image {
            display: block;
            width: 100%;
            height: 440px;
            background-color: #E5E5E5;
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center;
            cursor: pointer; }
        #home .main-content .middle-wrapper .banner-wrapper .dot-content {
          position: absolute;
          right: 16px;
          bottom: 16px;
          z-index: 2;
          overflow: hidden; }
          #home .main-content .middle-wrapper .banner-wrapper .dot-content .dot-button {
            display: inline-block;
            width: 24px;
            height: 24px;
            line-height: 24px;
            margin-left: 5px;
            background-color: rgba(0, 0, 0, 0.2);
            color: #fff;
            text-align: center;
            float: left;
            cursor: pointer;
            font-weight: 700;
            font-size: 13px;
            font-size: 0.8125rem; }
            #home .main-content .middle-wrapper .banner-wrapper .dot-content .dot-button.active {
              background-color: rgba(0, 0, 0, 0.7); }
  #home .block-wrapper {
    margin: 0 0 30px 0;
    padding: 4px 0 0 0; }
    #home .block-wrapper:last-child {
      margin: 0; }
    #home .block-wrapper .block-header {
      margin: 0 0 40px 0;
      text-align: center; }
      #home .block-wrapper .block-header .block-header-title {
        display: inline-block;
        line-height: 42px;
        padding: 0 0 16px 0;
        border-bottom: 2px solid #DADADA;
        color: #000;
        font-size: 30px; }
    #home .block-wrapper .block-more {
      padding: 30px 0 0 0;
      text-align: center; }
      #home .block-wrapper .block-more .block-more-button {
        display: inline-block;
        width: 500px;
        height: 68px;
        line-height: 68px;
        border: 1px solid #CDCDCD;
        font-size: 20px;
        color: #919191;
        text-align: center;
        cursor: pointer;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s; }
        #home .block-wrapper .block-more .block-more-button:hover {
          border-color: #919191;
          color: #737373; }
        #home .block-wrapper .block-more .block-more-button .more-count {
          margin: 0 8px 0 20px;
          color: #2A2A2A;
          font-weight: bold; }

.all-product {
  position: relative;
  width: calc(100% - 20px);
  max-width: 1100px;
  margin: 30px auto 30px auto;
  overflow: hidden; }
  .all-product .all-product-header {
    margin: 0 0 40px 0;
    text-align: center; }
    .all-product .all-product-header .all-product-header-title {
      display: inline-block;
      line-height: 42px;
      padding: 0 0 16px 0;
      border-bottom: 2px solid #DADADA;
      color: #000;
      font-size: 30px; }
  .all-product .nav-bar {
    margin: 0 0 30px 0; }
  .all-product .all-product-wrapper {
    position: relative;
    padding: 20px 20px 0 20px;
    border: 1px solid #DADADA;
    background-color: #FFFFFF;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px; }
  .all-product .product-list-wrapper {
    position: relative; }
  .all-product .block-wrapper {
    position: relative;
    margin: 0 0 10px 0; }
    .all-product .block-wrapper .product-class-list {
      position: relative;
      display: block;
      overflow: hidden; }
      .all-product .block-wrapper .product-class-list .class-title {
        height: 40px;
        line-height: 40px;
        margin: 0 0 20px 0;
        padding: 0 10px;
        color: #ee7c68;
        font-size: 20px;
        font-weight: 600;
        background-color: #fdf7f6; }
        .all-product .block-wrapper .product-class-list .class-title a {
          color: #ee7c68;
          text-decoration: none; }
          .all-product .block-wrapper .product-class-list .class-title a:hover {
            text-decoration: none; }
      .all-product .block-wrapper .product-class-list .class-wrapper {
        position: relative;
        padding: 0 10px; }
      .all-product .block-wrapper .product-class-list .product-subclass {
        position: relative;
        overflow: hidden; }
        .all-product .block-wrapper .product-class-list .product-subclass .subclass-wrapper {
          display: -webkit-inline-flex;
          display: inline-flex; }
        .all-product .block-wrapper .product-class-list .product-subclass .subclass-title {
          display: block;
          width: 104px;
          min-width: 104px;
          margin: 0 20px 0 0;
          text-align: right; }
          .all-product .block-wrapper .product-class-list .product-subclass .subclass-title a {
            color: #000;
            font-size: 16px;
            word-break: break-all;
            cursor: pointer; }
            .all-product .block-wrapper .product-class-list .product-subclass .subclass-title a:hover {
              color: #ee7c68;
              text-decoration: underline; }
          .all-product .block-wrapper .product-class-list .product-subclass .subclass-title i {
            margin: 0 0 0 10px;
            color: #DADADA;
            font-size: 18px;
            vertical-align: text-top; }
        .all-product .block-wrapper .product-class-list .product-subclass .product-wrapper {
          -webkit-flex: 1 1 0;
          flex: 1 1 0;
          -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
          display: -webkit-flex;
          display: flex;
          -webkit-align-items: flex-start;
          align-items: flex-start; }
        .all-product .block-wrapper .product-class-list .product-subclass .product {
          display: inline-block;
          margin: 0 0 20px 0;
          color: #737373;
          white-space: nowrap;
          font-size: 14px;
          font-size: 0.875rem; }
          .all-product .block-wrapper .product-class-list .product-subclass .product:after {
            content: "、";
            margin: 0 0 0 -4px; }
          .all-product .block-wrapper .product-class-list .product-subclass .product:last-child:after {
            display: none; }
          .all-product .block-wrapper .product-class-list .product-subclass .product a {
            color: #737373;
            text-decoration: none; }
            .all-product .block-wrapper .product-class-list .product-subclass .product a:hover {
              color: #ee7c68;
              text-decoration: underline; }

#product {
  position: relative;
  width: calc(100% - 20px);
  max-width: 1100px;
  margin: 0 auto 30px auto;
  padding: 30px 0 0 0; }
  #product .loading-wrapper {
    padding: 80px 0; }
  #product .product-full-info {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 0 30px 0;
    border: 1px solid #DADADA;
    background-color: #fff; }
    #product .product-full-info .product-full-info-content {
      position: relative;
      width: 100%;
      height: auto;
      padding: 30px; }
      #product .product-full-info .product-full-info-content:after {
        clear: both;
        content: '';
        display: block;
        height: 0;
        overflow: hidden; }
      #product .product-full-info .product-full-info-content .image-wrapper {
        position: relative;
        display: inline-block;
        width: 500px;
        height: 500px; }
        #product .product-full-info .product-full-info-content .image-wrapper.has-dot .pdt-nav-content .nav-left, #product .product-full-info .product-full-info-content .image-wrapper.has-dot .pdt-nav-content .nav-right, #product .product-full-info .product-full-info-content .image-wrapper.has-dot .pdt-dot-nav-content .nav-left, #product .product-full-info .product-full-info-content .image-wrapper.has-dot .pdt-dot-nav-content .nav-right {
          visibility: visible; }
        #product .product-full-info .product-full-info-content .image-wrapper .carousel-wrapper {
          display: block;
          position: relative;
          width: 500px;
          height: 500px;
          background-color: #eee;
          overflow: hidden; }
          #product .product-full-info .product-full-info-content .image-wrapper .carousel-wrapper:hover .nav-left {
            -moz-transform: translateX(0) translateY(-50%);
            -ms-transform: translateX(0) translateY(-50%);
            -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%); }
          #product .product-full-info .product-full-info-content .image-wrapper .carousel-wrapper:hover .nav-right {
            -moz-transform: translateX(0) translateY(-50%);
            -ms-transform: translateX(0) translateY(-50%);
            -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%); }
        #product .product-full-info .product-full-info-content .image-wrapper .image {
          width: 500px;
          height: 500px;
          background-color: #eee;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center; }
      #product .product-full-info .product-full-info-content .pdt-nav-content .nav-left {
        position: absolute;
        left: 0;
        top: 50%;
        height: 70px;
        color: #FFF;
        background-color: #000;
        line-height: 70px;
        text-align: center;
        width: 30px;
        opacity: .6;
        cursor: pointer;
        visibility: hidden;
        font-size: 24px;
        font-size: 1.5rem;
        -moz-border-radius: 0 5px 5px 0;
        -webkit-border-radius: 0;
        border-radius: 0 5px 5px 0;
        -moz-transition: all 250ms ease-out;
        -o-transition: all 250ms ease-out;
        -webkit-transition: all 250ms ease-out;
        transition: all 250ms ease-out;
        -moz-transform: translateX(-30px) translateY(-50%);
        -ms-transform: translateX(-30px) translateY(-50%);
        -webkit-transform: translateX(-30px) translateY(-50%);
        transform: translateX(-30px) translateY(-50%); }
      #product .product-full-info .product-full-info-content .pdt-nav-content .nav-right {
        position: absolute;
        right: 0;
        top: 50%;
        height: 70px;
        color: #FFF;
        background-color: #000;
        line-height: 70px;
        text-align: center;
        width: 30px;
        opacity: .6;
        cursor: pointer;
        visibility: hidden;
        font-size: 24px;
        font-size: 1.5rem;
        -moz-border-radius: 5px 0 0 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px 0 0 5px;
        -moz-transition: all 250ms ease-out;
        -o-transition: all 250ms ease-out;
        -webkit-transition: all 250ms ease-out;
        transition: all 250ms ease-out;
        -moz-transform: translateX(30px) translateY(-50%);
        -ms-transform: translateX(30px) translateY(-50%);
        -webkit-transform: translateX(30px) translateY(-50%);
        transform: translateX(30px) translateY(-50%); }
      #product .product-full-info .product-full-info-content .pdt-dot-content {
        margin: 10px 0 0 0;
        z-index: 2;
        overflow: hidden; }
        #product .product-full-info .product-full-info-content .pdt-dot-content.has-nav:hover .nav-left {
          -moz-transform: translateX(0) translateY(-50%);
          -ms-transform: translateX(0) translateY(-50%);
          -webkit-transform: translateX(0) translateY(-50%);
          transform: translateX(0) translateY(-50%); }
        #product .product-full-info .product-full-info-content .pdt-dot-content.has-nav:hover .nav-right {
          -moz-transform: translateX(0) translateY(-50%);
          -ms-transform: translateX(0) translateY(-50%);
          -webkit-transform: translateX(0) translateY(-50%);
          transform: translateX(0) translateY(-50%); }
        #product .product-full-info .product-full-info-content .pdt-dot-content .owl-item.active .dot-button {
          opacity: 1;
          border: 2px solid #ee7c68;
          -moz-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3);
          -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3); }
        #product .product-full-info .product-full-info-content .pdt-dot-content .dot-button {
          display: inline-block;
          width: 75px;
          height: 75px;
          line-height: 24px;
          margin: 0 10px 0 0;
          border: 1px solid #DADADA;
          cursor: pointer;
          opacity: .7;
          background-color: #eee;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center; }
          #product .product-full-info .product-full-info-content .pdt-dot-content .dot-button.active {
            opacity: 1;
            -moz-box-shadow: 0 -2px 0 0 #ee7c68;
            -webkit-box-shadow: 0 -2px 0 0 #ee7c68;
            box-shadow: 0 -2px 0 0 #ee7c68; }
      #product .product-full-info .product-full-info-content .pdt-dot-nav-content .nav-left {
        position: absolute;
        left: 0;
        top: 50%;
        height: 50px;
        color: #FFF;
        background-color: #000;
        line-height: 50px;
        text-align: center;
        width: 20px;
        opacity: .6;
        cursor: pointer;
        visibility: hidden;
        font-size: 20px;
        font-size: 1.25rem;
        -moz-border-radius: 0 5px 5px 0;
        -webkit-border-radius: 0;
        border-radius: 0 5px 5px 0;
        -moz-transition: all 250ms ease-out;
        -o-transition: all 250ms ease-out;
        -webkit-transition: all 250ms ease-out;
        transition: all 250ms ease-out;
        -moz-transform: translateX(-20px) translateY(-50%);
        -ms-transform: translateX(-20px) translateY(-50%);
        -webkit-transform: translateX(-20px) translateY(-50%);
        transform: translateX(-20px) translateY(-50%); }
      #product .product-full-info .product-full-info-content .pdt-dot-nav-content .nav-right {
        position: absolute;
        right: 0;
        top: 50%;
        height: 50px;
        color: #FFF;
        background-color: #000;
        line-height: 50px;
        text-align: center;
        width: 20px;
        opacity: .6;
        cursor: pointer;
        visibility: hidden;
        font-size: 20px;
        font-size: 1.25rem;
        -moz-border-radius: 5px 0 0 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px 0 0 5px;
        -moz-transition: all 250ms ease-out;
        -o-transition: all 250ms ease-out;
        -webkit-transition: all 250ms ease-out;
        transition: all 250ms ease-out;
        -moz-transform: translateX(20px) translateY(-50%);
        -ms-transform: translateX(20px) translateY(-50%);
        -webkit-transform: translateX(20px) translateY(-50%);
        transform: translateX(20px) translateY(-50%); }
      #product .product-full-info .product-full-info-content .product-meta {
        position: relative;
        display: block;
        width: calc(100% - 500px - 10px);
        height: 100%;
        margin: 0;
        padding: 0 0 0 30px;
        float: right; }
        #product .product-full-info .product-full-info-content .product-meta .product-meta-title {
          margin: 0 0 20px 0;
          font-size: 20px;
          color: #000;
          font-weight: bold; }
        #product .product-full-info .product-full-info-content .product-meta .text-wrapper {
          margin: 0 0 20px 0;
          padding: 0 0 20px 0;
          border-bottom: 1px solid #CDCDCD; }
          #product .product-full-info .product-full-info-content .product-meta .text-wrapper .description {
            line-height: 24px;
            margin: 0;
            color: #2A2A2A;
            font-size: 14px;
            white-space: pre-line; }
        #product .product-full-info .product-full-info-content .product-meta .meta-item {
          min-height: 22px;
          margin: 0 0 10px 0;
          color: #000;
          font-size: 14px;
          display: -webkit-flex;
          display: flex; }
          #product .product-full-info .product-full-info-content .product-meta .meta-item .label {
            min-width: 64px;
            max-width: 64px;
            max-height: 34px;
            margin: 0 30px 0 0;
            font-size: 16px;
            font-weight: 600;
            white-space: nowrap;
            display: -webkit-inline-flex;
            display: inline-flex;
            -webkit-align-items: center;
            align-items: center;
            -webkit-justify-content: flex-end;
            justify-content: flex-end; }
          #product .product-full-info .product-full-info-content .product-meta .meta-item .select-list {
            display: -webkit-inline-flex;
            display: inline-flex;
            -webkit-flex-wrap: wrap;
            flex-wrap: wrap; }
            #product .product-full-info .product-full-info-content .product-meta .meta-item .select-list.accessory-spec {
              margin: 0 0 0 auto; }
            #product .product-full-info .product-full-info-content .product-meta .meta-item .select-list .select-item {
              position: relative;
              display: block;
              height: 34px;
              line-height: 34px;
              margin: 0 8px 8px 0;
              padding: 0 20px;
              border: 1px solid #CDCDCD;
              text-align: center;
              cursor: pointer;
              float: left;
              -moz-border-radius: 4px;
              -webkit-border-radius: 4px;
              border-radius: 4px; }
              #product .product-full-info .product-full-info-content .product-meta .meta-item .select-list .select-item:hover {
                border-color: #ee7c68;
                color: #ee7c68; }
                #product .product-full-info .product-full-info-content .product-meta .meta-item .select-list .select-item:hover .select-item-image {
                  visibility: visible;
                  opacity: 1;
                  -moz-transform: translateX(-50%) translateY(-100%) translateY(-12px);
                  -ms-transform: translateX(-50%) translateY(-100%) translateY(-12px);
                  -webkit-transform: translateX(-50%) translateY(-100%) translateY(-12px);
                  transform: translateX(-50%) translateY(-100%) translateY(-12px);
                  -moz-transition-delay: 100ms;
                  -o-transition-delay: 100ms;
                  -webkit-transition-delay: 100ms;
                  transition-delay: 100ms; }
              #product .product-full-info .product-full-info-content .product-meta .meta-item .select-list .select-item.selected {
                border-color: #ee7c68;
                color: #ee7c68; }
              #product .product-full-info .product-full-info-content .product-meta .meta-item .select-list .select-item.single {
                height: auto;
                border-color: transparent;
                padding: 0;
                cursor: auto; }
                #product .product-full-info .product-full-info-content .product-meta .meta-item .select-list .select-item.single:hover, #product .product-full-info .product-full-info-content .product-meta .meta-item .select-list .select-item.single.selected {
                  color: inherit;
                  font-weight: normal; }
              #product .product-full-info .product-full-info-content .product-meta .meta-item .select-list .select-item .unit {
                margin-left: 6px; }
              #product .product-full-info .product-full-info-content .product-meta .meta-item .select-list .select-item .free-size-hint {
                display: inline-block;
                font-size: 13px;
                font-size: 0.8125rem; }
              #product .product-full-info .product-full-info-content .product-meta .meta-item .select-list .select-item .select-item-image {
                position: absolute;
                display: block;
                top: 0;
                left: 50%;
                width: 160px;
                max-height: 160px;
                line-height: 0;
                padding: 10px;
                background-color: #fff;
                visibility: hidden;
                opacity: 0;
                z-index: 1000000;
                pointer-events: none;
                -moz-border-radius: 3px;
                -webkit-border-radius: 3px;
                border-radius: 3px;
                -moz-transform: translateX(-50%) translateY(-100%);
                -ms-transform: translateX(-50%) translateY(-100%);
                -webkit-transform: translateX(-50%) translateY(-100%);
                transform: translateX(-50%) translateY(-100%);
                -moz-transition: ease 0.3s;
                -o-transition: ease 0.3s;
                -webkit-transition: ease 0.3s;
                transition: ease 0.3s;
                -moz-transition-delay: 0ms;
                -o-transition-delay: 0ms;
                -webkit-transition-delay: 0ms;
                transition-delay: 0ms;
                -moz-box-shadow: 0px -1px 12px 0px rgba(0, 0, 0, 0.2);
                -webkit-box-shadow: 0px -1px 12px 0px rgba(0, 0, 0, 0.2);
                box-shadow: 0px -1px 12px 0px rgba(0, 0, 0, 0.2); }
                #product .product-full-info .product-full-info-content .product-meta .meta-item .select-list .select-item .select-item-image:before {
                  content: '';
                  position: absolute;
                  left: 50%;
                  bottom: -6px;
                  width: 9px;
                  height: 9px;
                  border: 1px solid #ccc;
                  background-color: #fff;
                  -moz-transform: translateX(-50%) rotate(45deg);
                  -ms-transform: translateX(-50%) rotate(45deg);
                  -webkit-transform: translateX(-50%) rotate(45deg);
                  transform: translateX(-50%) rotate(45deg); }
                #product .product-full-info .product-full-info-content .product-meta .meta-item .select-list .select-item .select-item-image:after {
                  content: '';
                  position: absolute;
                  left: 50%;
                  bottom: -4px;
                  width: 10px;
                  height: 10px;
                  background-color: #fff;
                  -moz-transform: translateX(-50%) rotate(45deg);
                  -ms-transform: translateX(-50%) rotate(45deg);
                  -webkit-transform: translateX(-50%) rotate(45deg);
                  transform: translateX(-50%) rotate(45deg); }
                #product .product-full-info .product-full-info-content .product-meta .meta-item .select-list .select-item .select-item-image img {
                  width: 100%; }
            #product .product-full-info .product-full-info-content .product-meta .meta-item .select-list .select-number {
              display: inline-block;
              position: relative;
              width: 120px;
              height: 34px;
              margin: 0 8px 8px 0;
              padding: 0 34px;
              border: 1px solid #ccc;
              cursor: default;
              text-align: center;
              -moz-border-radius: 3px;
              -webkit-border-radius: 3px;
              border-radius: 3px;
              -webkit-user-select: none;
              -khtml-user-select: none;
              -moz-user-select: -moz-none;
              -o-user-select: none;
              user-select: none; }
              #product .product-full-info .product-full-info-content .product-meta .meta-item .select-list .select-number.selected {
                border: 1px solid #ee7c68;
                color: #ee7c68; }
                #product .product-full-info .product-full-info-content .product-meta .meta-item .select-list .select-number.selected .number-button.left-button {
                  border-right: 1px solid #ee7c68; }
                #product .product-full-info .product-full-info-content .product-meta .meta-item .select-list .select-number.selected .number-button.right-button {
                  border-left: 1px solid #ee7c68; }
              #product .product-full-info .product-full-info-content .product-meta .meta-item .select-list .select-number.count-select {
                width: auto;
                margin: 0 8px 8px 0;
                padding: 0 40px; }
              #product .product-full-info .product-full-info-content .product-meta .meta-item .select-list .select-number .custom-number-input {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 32px;
                margin: 0;
                padding: 0 34px;
                border: none;
                text-align: center; }
              #product .product-full-info .product-full-info-content .product-meta .meta-item .select-list .select-number .number-button {
                position: absolute;
                width: 34px;
                height: 33px;
                cursor: pointer;
                font-size: 14px;
                font-size: 0.875rem;
                display: -webkit-flex;
                display: flex;
                -webkit-align-items: center;
                align-items: center;
                -webkit-justify-content: center;
                justify-content: center; }
                #product .product-full-info .product-full-info-content .product-meta .meta-item .select-list .select-number .number-button.left-button {
                  top: 0;
                  left: 0;
                  border-right: 1px solid #ccc; }
                #product .product-full-info .product-full-info-content .product-meta .meta-item .select-list .select-number .number-button.right-button {
                  top: 0;
                  right: 0;
                  border-left: 1px solid #ccc; }
          #product .product-full-info .product-full-info-content .product-meta .meta-item .spec-select {
            display: block;
            position: relative;
            width: auto;
            height: 34px;
            line-height: 0;
            margin: 0 8px 8px 0;
            border: 1px solid #CDCDCD;
            cursor: pointer;
            float: left;
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
            border-radius: 3px; }
            #product .product-full-info .product-full-info-content .product-meta .meta-item .spec-select.full {
              width: 100%; }
              #product .product-full-info .product-full-info-content .product-meta .meta-item .spec-select.full .spec-dropdown {
                width: 100%; }
            #product .product-full-info .product-full-info-content .product-meta .meta-item .spec-select.single {
              height: 22px;
              border: none;
              cursor: auto; }
              #product .product-full-info .product-full-info-content .product-meta .meta-item .spec-select.single .spec-wrapper {
                padding: 0; }
            #product .product-full-info .product-full-info-content .product-meta .meta-item .spec-select.has-dropdown {
              padding-right: 16px; }
              #product .product-full-info .product-full-info-content .product-meta .meta-item .spec-select.has-dropdown .arrow-down {
                display: -webkit-inline-flex;
                display: inline-flex; }
            #product .product-full-info .product-full-info-content .product-meta .meta-item .spec-select.select {
              border-color: #ee7c68; }
              #product .product-full-info .product-full-info-content .product-meta .meta-item .spec-select.select .spec-wrapper {
                color: #ee7c68; }
            #product .product-full-info .product-full-info-content .product-meta .meta-item .spec-select.custom-type {
              min-width: 60px;
              margin: 0 6px 0 0;
              text-align: center; }
              #product .product-full-info .product-full-info-content .product-meta .meta-item .spec-select.custom-type.single {
                cursor: default; }
              #product .product-full-info .product-full-info-content .product-meta .meta-item .spec-select.custom-type .spec-wrapper {
                color: #ee7c68; }
            #product .product-full-info .product-full-info-content .product-meta .meta-item .spec-select.color-width {
              width: 200px; }
            #product .product-full-info .product-full-info-content .product-meta .meta-item .spec-select .spec-wrapper {
              height: 100%;
              padding: 0 20px;
              white-space: nowrap;
              -webkit-align-items: center;
              align-items: center;
              display: -webkit-inline-flex;
              display: inline-flex; }
            #product .product-full-info .product-full-info-content .product-meta .meta-item .spec-select .unit {
              margin-left: 6px; }
            #product .product-full-info .product-full-info-content .product-meta .meta-item .spec-select .arrow-down {
              position: absolute;
              top: 0;
              right: 0;
              display: none;
              width: 34px;
              min-width: 34px;
              height: 33px;
              color: #CDCDCD;
              font-size: 22px;
              -webkit-align-items: center;
              align-items: center;
              -webkit-justify-content: center;
              justify-content: center; }
            #product .product-full-info .product-full-info-content .product-meta .meta-item .spec-select .spec-dropdown {
              width: 100%;
              min-width: max-content;
              border: 1px solid #D2D6D9;
              background-color: #fff;
              -moz-box-shadow: none;
              -webkit-box-shadow: none;
              box-shadow: none;
              -moz-border-radius: 0 0 3px 3px;
              -webkit-border-radius: 0;
              border-radius: 0 0 3px 3px; }
              #product .product-full-info .product-full-info-content .product-meta .meta-item .spec-select .spec-dropdown ul {
                position: relative;
                max-height: 200px;
                margin: 0;
                padding: 0 5px 0 0;
                overflow: hidden; }
                #product .product-full-info .product-full-info-content .product-meta .meta-item .spec-select .spec-dropdown ul li {
                  height: 34px;
                  line-height: 34px;
                  padding: 0 12px;
                  color: #484848;
                  font-size: 14px;
                  font-size: 0.875rem;
                  display: -webkit-flex;
                  display: flex;
                  -webkit-align-items: center;
                  align-items: center; }
                  #product .product-full-info .product-full-info-content .product-meta .meta-item .spec-select .spec-dropdown ul li:hover {
                    background-color: #ECEDEF;
                    color: #000; }
                  #product .product-full-info .product-full-info-content .product-meta .meta-item .spec-select .spec-dropdown ul li.selected {
                    color: #ee7c68; }
          #product .product-full-info .product-full-info-content .product-meta .meta-item .color-option {
            -webkit-align-items: center;
            align-items: center;
            display: -webkit-flex;
            display: flex; }
            #product .product-full-info .product-full-info-content .product-meta .meta-item .color-option .color {
              display: inline-block;
              width: 22px;
              height: 22px;
              margin-right: 10px;
              border: 1px solid #ccc;
              -moz-border-radius: 4px;
              -webkit-border-radius: 4px;
              border-radius: 4px; }
          #product .product-full-info .product-full-info-content .product-meta .meta-item .transparent-tip {
            line-height: 34px;
            margin-left: 8px; }
            #product .product-full-info .product-full-info-content .product-meta .meta-item .transparent-tip .red {
              margin: 0 3px;
              color: #FF2C22; }
          #product .product-full-info .product-full-info-content .product-meta .meta-item .process-wrapper {
            position: relative;
            width: 100%; }
            #product .product-full-info .product-full-info-content .product-meta .meta-item .process-wrapper .process-remark {
              display: block;
              width: 100%;
              height: 80px;
              padding: 10px 12px;
              margin: 0 0 8px 0;
              background-color: #FFFFFF;
              border: 1px solid #CDCDCD;
              color: #484848;
              overflow: auto;
              font-size: 14px;
              font-size: 0.875rem;
              -moz-border-radius: 3px;
              -webkit-border-radius: 3px;
              border-radius: 3px; }
          #product .product-full-info .product-full-info-content .product-meta .meta-item .number {
            margin-right: 4px;
            color: #ee7c68;
            font-weight: 600;
            font-size: 20px;
            font-size: 1.25rem; }
          #product .product-full-info .product-full-info-content .product-meta .meta-item .meta-hint {
            margin: 0 8px 8px 0;
            color: #ee7c68;
            cursor: pointer;
            text-decoration: underline;
            white-space: nowrap;
            -webkit-align-self: center;
            align-self: center; }
            #product .product-full-info .product-full-info-content .product-meta .meta-item .meta-hint.no-pointer {
              cursor: default;
              text-decoration: none; }
          #product .product-full-info .product-full-info-content .product-meta .meta-item .recover-hint {
            margin: 0 8px 8px 0;
            -webkit-align-self: center;
            align-self: center; }
          #product .product-full-info .product-full-info-content .product-meta .meta-item .delivery-hint {
            margin: 0 8px 8px 0;
            color: #ee7c68;
            cursor: pointer;
            text-decoration: underline;
            -webkit-align-self: center;
            align-self: center; }
          #product .product-full-info .product-full-info-content .product-meta .meta-item .fold-hint {
            display: inline-block;
            position: relative;
            margin: 0 8px 8px 0;
            color: #ee7c68;
            cursor: pointer;
            text-decoration: underline;
            -webkit-align-self: center;
            align-self: center; }
            #product .product-full-info .product-full-info-content .product-meta .meta-item .fold-hint:hover .fold-about {
              visibility: visible;
              opacity: 1;
              -moz-transform: translateX(8px) translateY(-50%);
              -ms-transform: translateX(8px) translateY(-50%);
              -webkit-transform: translateX(8px) translateY(-50%);
              transform: translateX(8px) translateY(-50%);
              -moz-transition-delay: 100ms;
              -o-transition-delay: 100ms;
              -webkit-transition-delay: 100ms;
              transition-delay: 100ms; }
            #product .product-full-info .product-full-info-content .product-meta .meta-item .fold-hint .fold-about {
              position: absolute;
              display: block;
              top: 50%;
              left: 60px;
              width: 185px;
              height: 270px;
              border: 1px solid #ccc;
              background-color: #fff;
              background-size: contain;
              background-repeat: no-repeat;
              background-position: center center;
              visibility: hidden;
              opacity: 0;
              z-index: 1000000;
              pointer-events: none;
              -moz-border-radius: 3px;
              -webkit-border-radius: 3px;
              border-radius: 3px;
              -moz-transform: translateX(0) translateY(-50%);
              -ms-transform: translateX(0) translateY(-50%);
              -webkit-transform: translateX(0) translateY(-50%);
              transform: translateX(0) translateY(-50%);
              -moz-transition: ease 0.3s;
              -o-transition: ease 0.3s;
              -webkit-transition: ease 0.3s;
              transition: ease 0.3s;
              -moz-transition-delay: 0ms;
              -o-transition-delay: 0ms;
              -webkit-transition-delay: 0ms;
              transition-delay: 0ms;
              -moz-box-shadow: 0px -1px 12px 0px rgba(0, 0, 0, 0.2);
              -webkit-box-shadow: 0px -1px 12px 0px rgba(0, 0, 0, 0.2);
              box-shadow: 0px -1px 12px 0px rgba(0, 0, 0, 0.2); }
              #product .product-full-info .product-full-info-content .product-meta .meta-item .fold-hint .fold-about:before {
                content: '';
                position: absolute;
                top: 50%;
                left: -6px;
                width: 9px;
                height: 9px;
                border: 1px solid #ccc;
                background-color: #fff;
                -moz-transform: translateY(-50%) rotate(45deg);
                -ms-transform: translateY(-50%) rotate(45deg);
                -webkit-transform: translateY(-50%) rotate(45deg);
                transform: translateY(-50%) rotate(45deg); }
              #product .product-full-info .product-full-info-content .product-meta .meta-item .fold-hint .fold-about:after {
                content: '';
                position: absolute;
                top: 50%;
                left: -4px;
                width: 10px;
                height: 10px;
                background-color: #fff;
                -moz-transform: translateY(-50%) rotate(45deg);
                -ms-transform: translateY(-50%) rotate(45deg);
                -webkit-transform: translateY(-50%) rotate(45deg);
                transform: translateY(-50%) rotate(45deg); }
          #product .product-full-info .product-full-info-content .product-meta .meta-item .custom-size-wrapper {
            display: -webkit-inline-flex;
            display: inline-flex;
            -webkit-flex-wrap: wrap;
            flex-wrap: wrap; }
            #product .product-full-info .product-full-info-content .product-meta .meta-item .custom-size-wrapper .custom-size-text {
              margin: 0 8px 8px 0;
              -webkit-align-self: center;
              align-self: center; }
              #product .product-full-info .product-full-info-content .product-meta .meta-item .custom-size-wrapper .custom-size-text.fixed-width {
                min-width: 40px; }
            #product .product-full-info .product-full-info-content .product-meta .meta-item .custom-size-wrapper .custom-input {
              display: block;
              width: 60px;
              height: 34px;
              margin: 0 8px 8px 0;
              padding: 0;
              border: 1px solid #ccc;
              text-align: center;
              float: left; }
          #product .product-full-info .product-full-info-content .product-meta .meta-item .price {
            margin: 0 0 12px 0;
            color: #ee7c68;
            font-size: 14px;
            font-size: 0.875rem; }
            #product .product-full-info .product-full-info-content .product-meta .meta-item .price .total {
              margin: 0 4px 0 0;
              font-weight: 700;
              font-size: 28px;
              font-size: 1.75rem; }
          #product .product-full-info .product-full-info-content .product-meta .meta-item .accessory-label {
            max-height: 34px;
            margin-right: 15px;
            white-space: nowrap;
            font-weight: 600;
            display: -webkit-inline-flex;
            display: inline-flex;
            -webkit-align-items: center;
            align-items: center;
            -webkit-justify-content: flex-end;
            justify-content: flex-end; }
        #product .product-full-info .product-full-info-content .product-meta .accessory-wrapper {
          padding-top: 16px;
          border-top: 1px solid #eee; }
        #product .product-full-info .product-full-info-content .product-meta .result {
          padding-top: 16px;
          border-top: 1px solid #eee; }
        #product .product-full-info .product-full-info-content .product-meta .button-group {
          position: relative;
          overflow: hidden; }
        #product .product-full-info .product-full-info-content .product-meta .button {
          width: 102px;
          height: 38px;
          line-height: 36px;
          margin: 0 12px 0 0;
          padding: 0;
          border: 1px solid #CDCDCD;
          color: #2A2A2A;
          background-color: #fff;
          float: left;
          font-size: 16px;
          font-size: 1rem;
          -moz-border-radius: 4px;
          -webkit-border-radius: 4px;
          border-radius: 4px; }
          #product .product-full-info .product-full-info-content .product-meta .button:hover {
            border-color: #b4b4b4;
            color: #000; }
          #product .product-full-info .product-full-info-content .product-meta .button:last-child {
            margin: 0; }
          #product .product-full-info .product-full-info-content .product-meta .button.addcart {
            border: 1px solid #ee7c68;
            background-color: #fff;
            color: #ee7c68; }
            #product .product-full-info .product-full-info-content .product-meta .button.addcart:hover {
              border-color: #f1907f;
              color: #f1907f; }
          #product .product-full-info .product-full-info-content .product-meta .button.buy {
            width: auto;
            padding: 0 16px;
            border: 1px solid #ee7c68;
            background-color: #ee7c68;
            color: #FFFFFF; }
            #product .product-full-info .product-full-info-content .product-meta .button.buy:hover {
              border-color: #f1907f;
              background-color: #f1907f; }
          #product .product-full-info .product-full-info-content .product-meta .button i {
            margin: 0; }
        #product .product-full-info .product-full-info-content .product-meta .teach-tip {
          height: 24px;
          line-height: 24px;
          margin: 2px 0 2px 6px;
          color: #2A2A2A;
          cursor: pointer;
          display: -webkit-inline-flex;
          display: inline-flex; }
          #product .product-full-info .product-full-info-content .product-meta .teach-tip .teach-icon {
            margin-right: 6px; }
          #product .product-full-info .product-full-info-content .product-meta .teach-tip .underline {
            text-decoration: underline;
            cursor: pointer; }
    #product .product-full-info:after {
      content: '';
      clear: both; }
  #product .product-content {
    position: relative;
    overflow: hidden; }
    #product .product-content .left-content {
      display: block;
      position: relative;
      width: 260px;
      min-height: 1px;
      margin: 0 30px 0 0;
      float: left; }
      #product .product-content .left-content .fix-content {
        display: block;
        position: relative;
        width: 100%;
        min-height: 1px; }
      #product .product-content .left-content .hot-wrapper {
        position: relative;
        margin: 0 0 16px 0; }
        #product .product-content .left-content .hot-wrapper .hot-header {
          height: 34px;
          margin: 0 0 20px 0;
          color: #000;
          font-size: 20px;
          font-weight: 600; }
        #product .product-content .left-content .hot-wrapper .hot-list {
          position: relative;
          margin: -10px;
          overflow: auto; }
    #product .product-content .right-content {
      display: block;
      width: calc(100% - 260px - 30px);
      float: left; }
      #product .product-content .right-content .nav-bar-wrapper {
        position: relative;
        height: 34px; }
      #product .product-content .right-content .product-nav-bar {
        height: 34px;
        background-color: #FFFFFF; }
        #product .product-content .right-content .product-nav-bar.fixed {
          position: fixed;
          top: 118px;
          width: 810px;
          max-width: 810px;
          z-index: 998;
          -moz-box-shadow: inset 0px -1px 0 0 #DADADA;
          -webkit-box-shadow: inset 0px -1px 0 0 #DADADA;
          box-shadow: inset 0px -1px 0 0 #DADADA; }
          #product .product-content .right-content .product-nav-bar.fixed:before {
            content: '';
            position: absolute;
            top: -20px;
            left: 0;
            width: 100%;
            height: 20px;
            background-color: #ffffff; }
        #product .product-content .right-content .product-nav-bar li {
          position: relative;
          display: inline-block;
          margin: 0 40px 0 0;
          padding: 0 0 12px 0;
          border-bottom: 2px solid transparent;
          color: #C6C6C6;
          font-size: 20px;
          cursor: pointer; }
          #product .product-content .right-content .product-nav-bar li:hover, #product .product-content .right-content .product-nav-bar li.active {
            border-bottom: 2px solid #ee7c68;
            color: #ee7c68;
            font-weight: bold; }
      #product .product-content .right-content .main-content .content-wrapper {
        display: block;
        width: 100%;
        height: 100%;
        margin-top: 20px;
        padding: 30px;
        border: 1px solid #DADADA;
        background-color: #fff; }
        #product .product-content .right-content .main-content .content-wrapper .title {
          display: block;
          line-height: 28px;
          margin-bottom: 16px;
          font-weight: 600;
          color: #000;
          font-size: 20px;
          font-size: 1.25rem; }
        #product .product-content .right-content .main-content .content-wrapper .process-description {
          line-height: 1.5em;
          margin-bottom: 48px;
          color: #484848;
          font-size: 16px;
          font-size: 1rem; }
        #product .product-content .right-content .main-content .content-wrapper .dashed-divide {
          margin: 0 20px;
          border-top: 2px dashed rgba(238, 124, 104, 0.5); }
        #product .product-content .right-content .main-content .content-wrapper .process-content {
          padding-top: 40px;
          display: -webkit-flex;
          display: flex;
          -webkit-justify-content: space-between;
          justify-content: space-between; }
          #product .product-content .right-content .main-content .content-wrapper .process-content .process-item {
            display: inline-block;
            position: relative; }
            #product .product-content .right-content .main-content .content-wrapper .process-content .process-item:before {
              position: absolute;
              top: -58px;
              left: calc(50% - 16px);
              width: 32px;
              height: 32px;
              line-height: 32px;
              background-color: #ee7c68;
              color: #fff;
              font-weight: 600;
              text-align: center;
              content: attr(process-index);
              font-size: 16px;
              font-size: 1rem;
              -moz-border-radius: 50%;
              -webkit-border-radius: 50%;
              border-radius: 50%; }
            #product .product-content .right-content .main-content .content-wrapper .process-content .process-item .process-image {
              display: block;
              margin: 0 auto 10px auto; }
            #product .product-content .right-content .main-content .content-wrapper .process-content .process-item .process-title {
              line-height: 22px;
              font-weight: 600;
              color: #2A2A2A;
              text-align: center;
              font-size: 16px;
              font-size: 1rem; }
        #product .product-content .right-content .main-content .content-wrapper .finalized {
          position: relative;
          margin-bottom: 20px;
          overflow: hidden; }
          #product .product-content .right-content .main-content .content-wrapper .finalized:last-child {
            margin-bottom: 0; }
          #product .product-content .right-content .main-content .content-wrapper .finalized .finalized-image {
            display: block;
            max-width: 240px;
            margin-right: 14px;
            float: left; }
          #product .product-content .right-content .main-content .content-wrapper .finalized .finalized-info {
            display: inline-block;
            width: calc(100% - 254px);
            padding-top: 6px; }
            #product .product-content .right-content .main-content .content-wrapper .finalized .finalized-info .info-title {
              line-height: 1.5em;
              margin-bottom: 12px;
              font-weight: 600;
              color: #2A2A2A;
              font-size: 16px; }
            #product .product-content .right-content .main-content .content-wrapper .finalized .finalized-info .info-description {
              position: relative;
              line-height: 26px;
              padding: 0 0 0 16px;
              color: #484848;
              font-size: 14px; }
              #product .product-content .right-content .main-content .content-wrapper .finalized .finalized-info .info-description:before {
                content: '';
                position: absolute;
                display: block;
                top: 11px;
                left: 4px;
                width: 5px;
                height: 5px;
                background-color: #484848;
                -moz-border-radius: 50%;
                -webkit-border-radius: 50%;
                border-radius: 50%; }
            #product .product-content .right-content .main-content .content-wrapper .finalized .finalized-info .info-guild {
              position: relative;
              margin: 4px 0 0 0;
              padding: 0 0 0 50px;
              line-height: 26px;
              color: #484848;
              font-size: 14px; }
              #product .product-content .right-content .main-content .content-wrapper .finalized .finalized-info .info-guild .info-guild-label {
                position: absolute;
                top: 4px;
                left: 16px;
                width: 20px;
                line-height: normal;
                border: 1px solid #484848;
                font-size: 12px;
                text-align: center; }
        #product .product-content .right-content .main-content .content-wrapper .color-title {
          line-height: 1.5em;
          margin-bottom: 12px;
          font-weight: 600;
          color: #2A2A2A;
          font-size: 18px;
          font-size: 1.125rem; }
        #product .product-content .right-content .main-content .content-wrapper .color-info {
          margin: 0 0 20px 0;
          color: #484848;
          font-size: 14px;
          font-size: 0.875rem; }
          #product .product-content .right-content .main-content .content-wrapper .color-info li {
            margin-bottom: 6px;
            list-style-position: inside; }
        #product .product-content .right-content .main-content .content-wrapper .content-image {
          display: block;
          max-width: 100%; }

.product-fly-cover {
  position: fixed;
  width: 40px;
  height: 30px;
  border: 1px solid #fff;
  z-index: 1000;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.3);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

#cart {
  position: relative;
  width: calc(100% - 20px);
  max-width: 1100px;
  margin: 0 auto 30px auto;
  padding: 30px 0 0 0; }
  #cart .loading-state {
    height: calc(100vh - 340px); }
  #cart .uploading-state {
    height: calc(100vh - 440px);
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column; }
    #cart .uploading-state.error .uploading-title {
      color: #FF2C22; }
    #cart .uploading-state .sk-three-bounce {
      margin: 0 0 20px 0; }
    #cart .uploading-state .error-icon {
      margin-bottom: 20px;
      color: #FF2C22; }
      #cart .uploading-state .error-icon i {
        font-size: 64px;
        font-size: 4rem; }
    #cart .uploading-state .uploading-title {
      margin: 0 0 12px 0;
      padding: 0;
      text-align: center;
      color: #000;
      font-size: 16px;
      font-size: 1rem; }
    #cart .uploading-state .uploading-desc {
      margin: 0 0 12px 0;
      padding: 0;
      text-align: center;
      color: #2A2A2A;
      font-size: 14px;
      font-size: 0.875rem; }
  #cart .empty-state {
    height: 100px;
    line-height: 100px;
    background-color: #FFF;
    margin: 0;
    overflow: hidden;
    font-size: 15px;
    font-size: 0.9375rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -moz-box-shadow: inset 0px -1px 0px 0px #EEEEEE;
    -webkit-box-shadow: inset 0px -1px 0px 0px #EEEEEE;
    box-shadow: inset 0px -1px 0px 0px #EEEEEE; }
    #cart .empty-state .empty-cart-img {
      display: inline-block;
      height: 60px; }
    #cart .empty-state .cart-icon {
      font-size: 18px;
      font-size: 1.125rem; }
    #cart .empty-state p {
      display: inline-block;
      margin: 0 0 0 20px; }
  #cart .cart-pool {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    border: 1px solid #DADADA;
    background-color: #fff; }
    #cart .cart-pool .label-bar {
      border: none;
      border-bottom: 1px solid #ddd; }
    #cart .cart-pool .pool-row {
      position: relative;
      height: auto;
      padding: 20px;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      -moz-box-shadow: inset 0px -1px 0px 0px #EEEEEE;
      -webkit-box-shadow: inset 0px -1px 0px 0px #EEEEEE;
      box-shadow: inset 0px -1px 0px 0px #EEEEEE; }
      #cart .cart-pool .pool-row.header {
        height: 60px; }
        #cart .cart-pool .pool-row.header .pool-col {
          color: #2A2A2A;
          font-weight: 600; }
          #cart .cart-pool .pool-row.header .pool-col.date {
            width: 80px;
            font-weight: 600; }
      #cart .cart-pool .pool-row .pool-col {
        display: inline-block;
        font-weight: 600;
        color: #565151;
        text-align: center;
        word-break: break-all;
        font-size: 13px;
        font-size: 0.8125rem;
        display: -webkit-inline-flex;
        display: inline-flex;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-flex: 1;
        flex: 1; }
        #cart .cart-pool .pool-row .pool-col.index {
          width: 30px;
          min-width: 30px;
          -webkit-flex: none;
          flex: none;
          -webkit-justify-content: flex-start;
          justify-content: flex-start; }
        #cart .cart-pool .pool-row .pool-col.info {
          width: 240px;
          min-width: 240px;
          -webkit-justify-content: flex-start;
          justify-content: flex-start; }
        #cart .cart-pool .pool-row .pool-col.date {
          width: 80px;
          min-width: 80px;
          font-weight: 400; }
        #cart .cart-pool .pool-row .pool-col.price {
          width: 140px;
          min-width: 140px;
          -webkit-flex-direction: column;
          flex-direction: column; }
        #cart .cart-pool .pool-row .pool-col.process {
          width: 120px;
          min-width: 120px;
          -webkit-flex-direction: column;
          flex-direction: column; }
        #cart .cart-pool .pool-row .pool-col.file {
          position: relative;
          -webkit-flex-direction: column;
          flex-direction: column; }
        #cart .cart-pool .pool-row .pool-col.spec {
          width: 200px;
          min-width: 200px;
          padding-left: 30px;
          text-align: left;
          -webkit-justify-content: flex-start;
          justify-content: flex-start; }
        #cart .cart-pool .pool-row .pool-col .remark {
          color: #ee7c68;
          cursor: pointer; }
        #cart .cart-pool .pool-row .pool-col .mutl-hint {
          color: #2A2A2A;
          cursor: pointer;
          text-decoration: underline; }
        #cart .cart-pool .pool-row .pool-col .image {
          display: inline-block;
          width: 80px;
          height: 60px;
          margin: 0 20px 0 0;
          background-color: #eee;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center;
          -moz-border-radius: 3px;
          -webkit-border-radius: 3px;
          border-radius: 3px; }
        #cart .cart-pool .pool-row .pool-col .product {
          display: inline-block; }
          #cart .cart-pool .pool-row .pool-col .product.emergency a {
            color: #905bdf; }
          #cart .cart-pool .pool-row .pool-col .product.emergency .emergency-tip {
            display: inline-block; }
          #cart .cart-pool .pool-row .pool-col .product a {
            color: #565151;
            text-decoration: none; }
            #cart .cart-pool .pool-row .pool-col .product a:hover {
              text-decoration: underline; }
          #cart .cart-pool .pool-row .pool-col .product .emergency-tip {
            display: none; }
          #cart .cart-pool .pool-row .pool-col .product .received-error {
            margin: 2px 0 0 0;
            color: #FF2C22; }
        #cart .cart-pool .pool-row .pool-col .filename {
          color: #2A2A2A;
          text-decoration: underline;
          font-size: 12px;
          font-size: 0.75rem; }
          #cart .cart-pool .pool-row .pool-col .filename.empty {
            text-decoration: none; }
          #cart .cart-pool .pool-row .pool-col .filename.error {
            position: absolute;
            top: 50%;
            left: 0;
            width: 1px;
            height: 1px; }
            #cart .cart-pool .pool-row .pool-col .filename.error:before {
              border-right-color: #FF2C22; }
            #cart .cart-pool .pool-row .pool-col .filename.error:after {
              background-color: #FF2C22; }
        #cart .cart-pool .pool-row .pool-col .button-wrapper {
          padding: 3px;
          border: 1px solid transparent;
          -moz-border-radius: 3px;
          -webkit-border-radius: 3px;
          border-radius: 3px; }
          #cart .cart-pool .pool-row .pool-col .button-wrapper.error {
            border: 1px solid #FF2C22; }
        #cart .cart-pool .pool-row .pool-col .error-msg {
          color: #FF2C22;
          font-size: 12px;
          font-size: 0.75rem; }
        #cart .cart-pool .pool-row .pool-col .button-dropdown-wrapper {
          position: relative; }
          #cart .cart-pool .pool-row .pool-col .button-dropdown-wrapper .arrow-down {
            position: absolute;
            top: 0;
            right: 0;
            width: 27px;
            min-width: 27px;
            height: 29px;
            border-left: 1px solid #e9543a;
            color: #fff;
            cursor: pointer;
            font-size: 18px;
            font-size: 1.125rem;
            display: -webkit-inline-flex;
            display: inline-flex;
            -webkit-align-items: center;
            align-items: center;
            -webkit-justify-content: center;
            justify-content: center; }
          #cart .cart-pool .pool-row .pool-col .button-dropdown-wrapper .more-button {
            width: 100%;
            border-top: 1px solid #e9543a;
            color: #FFFFFF;
            background-color: #FF2C22;
            overflow: hidden;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            -moz-border-radius: 0 0 3px 3px;
            -webkit-border-radius: 0;
            border-radius: 0 0 3px 3px; }
            #cart .cart-pool .pool-row .pool-col .button-dropdown-wrapper .more-button label {
              height: 30px;
              line-height: 30px;
              padding: 0 10px;
              color: #FFFFFF;
              background-color: #259B24;
              cursor: pointer;
              font-size: 13px;
              font-size: 0.8125rem;
              display: -webkit-flex;
              display: flex;
              -webkit-align-items: center;
              align-items: center; }
              #cart .cart-pool .pool-row .pool-col .button-dropdown-wrapper .more-button label:hover {
                color: #FFFFFF;
                background-color: #259B24; }
              #cart .cart-pool .pool-row .pool-col .button-dropdown-wrapper .more-button label .file-input-button {
                position: absolute;
                top: 0;
                left: 0;
                display: inline-block;
                width: 1px;
                height: 1px;
                visibility: hidden; }
        #cart .cart-pool .pool-row .pool-col .button.upload {
          height: 30px;
          line-height: 30px;
          margin: 0;
          padding: 0 10px;
          border: none;
          background-color: #ee7c68;
          color: #fff;
          font-size: 14px;
          font-size: 0.875rem; }
          #cart .cart-pool .pool-row .pool-col .button.upload:hover {
            background-color: #ee7c68; }
          #cart .cart-pool .pool-row .pool-col .button.upload.has-dropdown {
            padding-right: 32px;
            white-space: nowrap; }
        #cart .cart-pool .pool-row .pool-col .edit, #cart .cart-pool .pool-row .pool-col .delete {
          margin: 0 6px;
          cursor: pointer; }
          #cart .cart-pool .pool-row .pool-col .edit:hover, #cart .cart-pool .pool-row .pool-col .delete:hover {
            text-decoration: underline; }
          #cart .cart-pool .pool-row .pool-col .edit .action-label, #cart .cart-pool .pool-row .pool-col .delete .action-label {
            display: inline-block;
            margin: 0 4px 0 0; }
        #cart .cart-pool .pool-row .pool-col .total-process {
          width: 100px;
          margin: 8px auto 0 auto;
          border-top: 1px solid #ccc;
          padding-top: 8px; }
  #cart .cart-action {
    position: relative;
    margin-bottom: 30px;
    padding-left: 2px;
    color: #3C3D41;
    overflow: hidden;
    text-align: left;
    font-size: 16px;
    font-size: 1rem; }
    #cart .cart-action .quickly-add {
      display: inline-block;
      cursor: pointer;
      display: -webkit-inline-flex;
      display: inline-flex;
      -webkit-align-items: center;
      align-items: center; }
      #cart .cart-action .quickly-add .add-button {
        width: 32px;
        height: 32px;
        margin-right: 20px;
        border: 2px dashed #2A2A2A;
        font-size: 18px;
        font-size: 1.125rem;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        display: -webkit-inline-flex;
        display: inline-flex; }
        #cart .cart-action .quickly-add .add-button i {
          margin: auto; }
    #cart .cart-action .error {
      font-size: 16px;
      margin: 0 0 10px;
      color: #FF2C22; }
  #cart .price-bar {
    position: fixed;
    bottom: 0;
    width: calc(100% - 20px);
    max-width: 1100px;
    height: 61px;
    line-height: 60px;
    padding: 0 20px;
    border: 1px solid #DADADA;
    border-bottom: none;
    color: #3C3D41;
    background-color: #FFF;
    z-index: 998;
    text-align: right;
    overflow: hidden;
    font-size: 16px;
    font-size: 1rem;
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
    -webkit-transition: all 300ms;
    transition: all 300ms; }
    #cart .price-bar.show-price {
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -webkit-transform: translateY(0);
      transform: translateY(0); }
    #cart .price-bar .total {
      display: -webkit-inline-flex;
      display: inline-flex;
      -webkit-align-items: center;
      align-items: center; }
      #cart .price-bar .total .price {
        margin-left: 8px;
        font-weight: 700;
        color: #0071C5;
        font-size: 20px;
        font-size: 1.25rem; }
      #cart .price-bar .total .red-price {
        margin-left: 8px;
        font-weight: 700;
        color: #FF2C22;
        font-size: 20px;
        font-size: 1.25rem; }
      #cart .price-bar .total .date {
        font-weight: 600;
        color: #0071C5; }
  #cart .order-form {
    position: relative;
    margin-bottom: 30px;
    padding: 40px;
    border: 1px solid #DADADA;
    background-color: #fff; }
    #cart .order-form .form-title {
      position: relative;
      margin-bottom: 24px;
      padding-bottom: 15px;
      border-bottom: 1px solid #ddd;
      font-weight: 600;
      color: #2A2A2A;
      font-size: 24px;
      font-size: 1.5rem; }
      #cart .order-form .form-title .right-hint {
        position: absolute;
        top: 0;
        right: 0;
        font-weight: 400;
        color: #FF2C22;
        font-size: 14px;
        font-size: 0.875rem; }
    #cart .order-form .select-wrapper {
      margin-bottom: 24px;
      overflow: hidden; }
      #cart .order-form .select-wrapper .checkbox-form {
        cursor: pointer;
        margin-right: 20px;
        float: left; }
        #cart .order-form .select-wrapper .checkbox-form.teach-tip {
          color: #2A2A2A; }
      #cart .order-form .select-wrapper.non-margin {
        margin-bottom: 0; }
      #cart .order-form .select-wrapper.save-address {
        display: inline-block; }
      #cart .order-form .select-wrapper .teach-icon {
        margin: 0 6px; }
      #cart .order-form .select-wrapper .teach-text {
        color: #2A2A2A; }
    #cart .order-form .form-content.invoice {
      margin-bottom: 0;
      overflow: visible;
      display: -webkit-flex;
      display: flex; }
      #cart .order-form .form-content.invoice:after {
        clear: left;
        content: '';
        display: block;
        height: 0;
        overflow: hidden; }
    #cart .order-form .form-content.user-info {
      margin-bottom: 0; }
    #cart .order-form .form-content .sub-title {
      margin-bottom: 16px;
      color: #2A2A2A;
      font-weight: 600;
      font-size: 18px;
      font-size: 1.125rem; }
      #cart .order-form .form-content .sub-title .history {
        margin-left: 10px;
        color: #ee7c68;
        text-decoration: underline;
        font-weight: 400;
        cursor: pointer;
        font-size: 14px;
        font-size: 0.875rem; }
    #cart .order-form .form-content .pickup-title {
      margin-bottom: 16px;
      color: #2A2A2A;
      font-size: 14px;
      font-size: 0.875rem; }
    #cart .order-form .form-content .pickup-description {
      margin: 0;
      color: #3C3D41;
      font-size: 14px;
      font-size: 0.875rem; }
    #cart .order-form .form-content .texi-hint {
      margin-bottom: 16px;
      color: #FF2C22;
      font-size: 14px;
      font-size: 0.875rem; }
    #cart .order-form .form-content .form-item {
      color: #484848;
      line-height: 21px;
      margin-bottom: 8px;
      font-size: 15px;
      font-size: 0.9375rem;
      display: -webkit-flex;
      display: flex; }
      #cart .order-form .form-content .form-item:last-child {
        margin-bottom: 0; }
      #cart .order-form .form-content .form-item .label {
        display: inline-block;
        text-align: right; }
    #cart .order-form .input-wrapper {
      width: 580px;
      margin-bottom: 24px;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      #cart .order-form .input-wrapper:last-child {
        margin-bottom: 0; }
      #cart .order-form .input-wrapper .input-form {
        margin-left: 10px; }
        #cart .order-form .input-wrapper .input-form.xsmall {
          width: 60px; }
        #cart .order-form .input-wrapper .input-form.small {
          width: 150px; }
        #cart .order-form .input-wrapper .input-form.medium {
          width: 170px; }
        #cart .order-form .input-wrapper .input-form.non-margin {
          margin-left: 0; }
      #cart .order-form .input-wrapper .address-form {
        position: relative;
        width: 100%; }
        #cart .order-form .input-wrapper .address-form label {
          display: inline-block;
          margin-right: 10px;
          margin-bottom: 10px;
          color: #2A2A2A;
          cursor: auto;
          font-size: 14px;
          font-size: 0.875rem; }
        #cart .order-form .input-wrapper .address-form span.error, #cart .order-form .input-wrapper .address-form span.red-text {
          color: #FF2C22;
          font-size: 12px;
          font-size: 0.75rem; }
      #cart .order-form .input-wrapper .info-wrapper {
        line-height: 1.6em;
        font-size: 16px;
        font-size: 1rem; }
    #cart .order-form .invoice-wrapper {
      position: relative;
      display: inline-block;
      width: calc(100% - 360px);
      float: left;
      border-right: 1px solid #ddd; }
      #cart .order-form .invoice-wrapper .input-form {
        width: 50%;
        margin-bottom: 24px; }
      #cart .order-form .invoice-wrapper .agree-wrapper {
        margin: 20px 24px 0 0;
        padding: 20px 0 0 0;
        border-top: 1px solid #ddd; }
        #cart .order-form .invoice-wrapper .agree-wrapper .checkbox-form {
          color: #737373;
          font-size: 12px;
          font-size: 0.75rem; }
          #cart .order-form .invoice-wrapper .agree-wrapper .checkbox-form.error {
            color: #FF2C22; }
          #cart .order-form .invoice-wrapper .agree-wrapper .checkbox-form .checkbox {
            position: relative;
            width: 16px;
            height: 16px;
            margin: 0 10px 0 0;
            font-size: 14px;
            font-size: 0.875rem; }
    #cart .order-form .price-wrapper {
      position: relative;
      display: inline-block;
      width: 360px;
      padding: 20px 0 20px 60px;
      color: #3C3D41;
      float: left; }
      #cart .order-form .price-wrapper .price-content {
        display: inline-block;
        text-align: left; }
      #cart .order-form .price-wrapper .error {
        margin-bottom: 5px;
        color: #FF2C22;
        font-size: 14px;
        font-size: 0.875rem; }
      #cart .order-form .price-wrapper .price-form {
        margin-bottom: 12px;
        font-size: 18px;
        font-size: 1.125rem; }
      #cart .order-form .price-wrapper .price {
        font-weight: 700;
        color: #0071C5; }
      #cart .order-form .price-wrapper .red-price {
        font-weight: 700;
        color: #FF2C22; }
      #cart .order-form .price-wrapper .button.submit {
        width: 200px;
        height: 40px;
        line-height: 40px;
        margin: 0;
        padding: 0;
        border: none;
        color: #FFFFFF;
        background-color: #ee7c68;
        font-size: 16px;
        font-size: 1rem; }
      #cart .order-form .price-wrapper .teach-tip {
        height: 24px;
        line-height: 24px;
        color: #777777;
        cursor: pointer;
        display: -webkit-inline-flex;
        display: inline-flex; }
        #cart .order-form .price-wrapper .teach-tip .teach-icon {
          font-size: 20px;
          font-size: 1.25rem; }
          #cart .order-form .price-wrapper .teach-tip .teach-icon:after {
            font-size: 14px;
            font-size: 0.875rem; }

#payment, #extrafee, #points #points-payment {
  position: relative;
  width: calc(100% - 20px);
  max-width: 1100px;
  margin: 0 auto 30px auto;
  padding: 30px 0 0 0; }
  #payment .bread-crumbs, #extrafee .bread-crumbs, #points #points-payment .bread-crumbs {
    margin-bottom: 30px; }
  #payment .loading-state, #extrafee .loading-state, #points #points-payment .loading-state {
    height: calc(100vh - 360px); }
  #payment .payment-content, #extrafee .payment-content, #points #points-payment .payment-content {
    position: relative; }
  #payment .payment-form, #extrafee .payment-form, #points #points-payment .payment-form {
    position: relative;
    padding: 40px;
    background-color: #fff;
    border: 1px solid #DADADA; }
    #payment .payment-form .payment-method, #extrafee .payment-form .payment-method, #points #points-payment .payment-form .payment-method {
      margin-bottom: 40px; }
    #payment .payment-form .form-title, #extrafee .payment-form .form-title, #points #points-payment .payment-form .form-title {
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 1px solid #ddd;
      font-weight: 600;
      color: #2A2A2A;
      font-size: 24px;
      font-size: 1.5rem; }
      #payment .payment-form .form-title .action-link, #extrafee .payment-form .form-title .action-link, #points #points-payment .payment-form .form-title .action-link {
        margin-left: 10px;
        color: #ee7c68;
        text-decoration: underline;
        cursor: pointer;
        opacity: 0.8;
        font-size: 17px;
        font-size: 1.0625rem; }
        #payment .payment-form .form-title .action-link:hover, #extrafee .payment-form .form-title .action-link:hover, #points #points-payment .payment-form .form-title .action-link:hover {
          opacity: 1; }
        #payment .payment-form .form-title .action-link i, #extrafee .payment-form .form-title .action-link i, #points #points-payment .payment-form .form-title .action-link i {
          margin-right: 4px; }
    #payment .payment-form .form-sub-title, #extrafee .payment-form .form-sub-title, #points #points-payment .payment-form .form-sub-title {
      line-height: 22px;
      margin: 0 0 20px 0;
      font-weight: 600;
      color: #2A2A2A;
      font-size: 18px;
      font-size: 1.125rem; }
    #payment .payment-form .orderitem-pool, #extrafee .payment-form .orderitem-pool, #points #points-payment .payment-form .orderitem-pool {
      position: relative;
      width: 100%;
      height: auto;
      margin-bottom: 24px;
      background-color: #fff;
      border: 1px solid #ddd; }
      #payment .payment-form .orderitem-pool .pool-end, #extrafee .payment-form .orderitem-pool .pool-end, #points #points-payment .payment-form .orderitem-pool .pool-end {
        position: relative;
        height: auto;
        padding: 10px 20px;
        border-top: #eee;
        -moz-box-shadow: inset 0px -1px 0px 0px #ddd;
        -webkit-box-shadow: inset 0px -1px 0px 0px #ddd;
        box-shadow: inset 0px -1px 0px 0px #ddd; }
        #payment .payment-form .orderitem-pool .pool-end:last-child, #extrafee .payment-form .orderitem-pool .pool-end:last-child, #points #points-payment .payment-form .orderitem-pool .pool-end:last-child {
          -moz-box-shadow: none;
          -webkit-box-shadow: none;
          box-shadow: none; }
        #payment .payment-form .orderitem-pool .pool-end .remark-title, #extrafee .payment-form .orderitem-pool .pool-end .remark-title, #points #points-payment .payment-form .orderitem-pool .pool-end .remark-title {
          display: inline-block;
          float: left; }
        #payment .payment-form .orderitem-pool .pool-end .remark-text, #extrafee .payment-form .orderitem-pool .pool-end .remark-text, #points #points-payment .payment-form .orderitem-pool .pool-end .remark-text {
          display: inline-block;
          width: 500px;
          color: #4A4A4A;
          word-break: break-all;
          font-size: 13px;
          font-size: 0.8125rem; }
        #payment .payment-form .orderitem-pool .pool-end .error, #extrafee .payment-form .orderitem-pool .pool-end .error, #points #points-payment .payment-form .orderitem-pool .pool-end .error {
          color: #FF2C22; }
        #payment .payment-form .orderitem-pool .pool-end .success, #extrafee .payment-form .orderitem-pool .pool-end .success, #points #points-payment .payment-form .orderitem-pool .pool-end .success {
          color: #388d81; }
      #payment .payment-form .orderitem-pool .pool-row, #extrafee .payment-form .orderitem-pool .pool-row, #points #points-payment .payment-form .orderitem-pool .pool-row {
        position: relative;
        height: auto;
        padding: 20px;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between; }
        #payment .payment-form .orderitem-pool .pool-row.header, #extrafee .payment-form .orderitem-pool .pool-row.header, #points #points-payment .payment-form .orderitem-pool .pool-row.header {
          height: 60px;
          -moz-box-shadow: inset 0px -1px 0px 0px #ddd;
          -webkit-box-shadow: inset 0px -1px 0px 0px #ddd;
          box-shadow: inset 0px -1px 0px 0px #ddd; }
          #payment .payment-form .orderitem-pool .pool-row.header .pool-col, #extrafee .payment-form .orderitem-pool .pool-row.header .pool-col, #points #points-payment .payment-form .orderitem-pool .pool-row.header .pool-col {
            color: #2A2A2A;
            font-weight: 600; }
            #payment .payment-form .orderitem-pool .pool-row.header .pool-col.date, #extrafee .payment-form .orderitem-pool .pool-row.header .pool-col.date, #points #points-payment .payment-form .orderitem-pool .pool-row.header .pool-col.date {
              width: 110px;
              font-weight: 600; }
        #payment .payment-form .orderitem-pool .pool-row .pool-col, #extrafee .payment-form .orderitem-pool .pool-row .pool-col, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col {
          display: inline-block;
          width: 100px;
          font-weight: 600;
          color: #565151;
          text-align: center;
          word-break: break-all;
          font-size: 13px;
          font-size: 0.8125rem;
          display: -webkit-inline-flex;
          display: inline-flex;
          -webkit-justify-content: center;
          justify-content: center;
          -webkit-align-items: center;
          align-items: center; }
          #payment .payment-form .orderitem-pool .pool-row .pool-col.index, #extrafee .payment-form .orderitem-pool .pool-row .pool-col.index, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col.index {
            width: 30px;
            min-width: 30px;
            -webkit-flex: none;
            flex: none;
            -webkit-justify-content: flex-start;
            justify-content: flex-start; }
          #payment .payment-form .orderitem-pool .pool-row .pool-col.info, #extrafee .payment-form .orderitem-pool .pool-row .pool-col.info, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col.info {
            min-width: 280px;
            width: 280px;
            -webkit-justify-content: flex-start;
            justify-content: flex-start; }
          #payment .payment-form .orderitem-pool .pool-row .pool-col.date, #extrafee .payment-form .orderitem-pool .pool-row .pool-col.date, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col.date {
            width: 110px;
            font-weight: 400; }
          #payment .payment-form .orderitem-pool .pool-row .pool-col.price, #extrafee .payment-form .orderitem-pool .pool-row .pool-col.price, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col.price {
            width: 120px;
            -webkit-flex-direction: column;
            flex-direction: column; }
          #payment .payment-form .orderitem-pool .pool-row .pool-col.process, #extrafee .payment-form .orderitem-pool .pool-row .pool-col.process, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col.process {
            width: 120px; }
          #payment .payment-form .orderitem-pool .pool-row .pool-col.file, #extrafee .payment-form .orderitem-pool .pool-row .pool-col.file, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col.file, #payment .payment-form .orderitem-pool .pool-row .pool-col.process, #extrafee .payment-form .orderitem-pool .pool-row .pool-col.process, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col.process {
            -webkit-flex-direction: column;
            flex-direction: column; }
          #payment .payment-form .orderitem-pool .pool-row .pool-col.action, #extrafee .payment-form .orderitem-pool .pool-row .pool-col.action, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col.action {
            -webkit-justify-content: space-around;
            justify-content: space-around; }
          #payment .payment-form .orderitem-pool .pool-row .pool-col.spec, #extrafee .payment-form .orderitem-pool .pool-row .pool-col.spec, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col.spec {
            width: 200px;
            padding-left: 30px;
            text-align: left;
            -webkit-justify-content: flex-start;
            justify-content: flex-start; }
          #payment .payment-form .orderitem-pool .pool-row .pool-col .error, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .error, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .error {
            color: #FF2C22; }
          #payment .payment-form .orderitem-pool .pool-row .pool-col .image, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .image, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .image {
            display: inline-block;
            width: 80px;
            height: 60px;
            margin: 0 20px 0 0;
            background-color: #eee;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
            border-radius: 3px; }
          #payment .payment-form .orderitem-pool .pool-row .pool-col .product, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .product, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .product {
            display: inline-block; }
            #payment .payment-form .orderitem-pool .pool-row .pool-col .product a, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .product a, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .product a {
              color: #565151;
              text-decoration: none; }
              #payment .payment-form .orderitem-pool .pool-row .pool-col .product a:hover, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .product a:hover, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .product a:hover {
                text-decoration: underline; }
            #payment .payment-form .orderitem-pool .pool-row .pool-col .product.recommend a, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .product.recommend a, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .product.recommend a {
              color: #ee7c68; }
            #payment .payment-form .orderitem-pool .pool-row .pool-col .product.recommend .recommend-tip, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .product.recommend .recommend-tip, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .product.recommend .recommend-tip {
              display: inline-block; }
            #payment .payment-form .orderitem-pool .pool-row .pool-col .product.hot a, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .product.hot a, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .product.hot a {
              color: #E51C23; }
            #payment .payment-form .orderitem-pool .pool-row .pool-col .product.hot .hot-tip, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .product.hot .hot-tip, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .product.hot .hot-tip {
              display: inline-block; }
            #payment .payment-form .orderitem-pool .pool-row .pool-col .product.new a, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .product.new a, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .product.new a {
              color: #0071C5; }
            #payment .payment-form .orderitem-pool .pool-row .pool-col .product.new .new-tip, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .product.new .new-tip, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .product.new .new-tip {
              display: inline-block; }
            #payment .payment-form .orderitem-pool .pool-row .pool-col .product.free-shipping a, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .product.free-shipping a, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .product.free-shipping a {
              color: #388d81; }
            #payment .payment-form .orderitem-pool .pool-row .pool-col .product.free-shipping .free-shipping-tip, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .product.free-shipping .free-shipping-tip, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .product.free-shipping .free-shipping-tip {
              display: inline-block; }
            #payment .payment-form .orderitem-pool .pool-row .pool-col .product.emergency a, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .product.emergency a, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .product.emergency a {
              color: #905bdf; }
            #payment .payment-form .orderitem-pool .pool-row .pool-col .product.emergency .emergency-tip, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .product.emergency .emergency-tip, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .product.emergency .emergency-tip {
              display: inline-block; }
            #payment .payment-form .orderitem-pool .pool-row .pool-col .product .recommend-tip, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .product .recommend-tip, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .product .recommend-tip, #payment .payment-form .orderitem-pool .pool-row .pool-col .product .hot-tip, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .product .hot-tip, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .product .hot-tip, #payment .payment-form .orderitem-pool .pool-row .pool-col .product .new-tip, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .product .new-tip, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .product .new-tip, #payment .payment-form .orderitem-pool .pool-row .pool-col .product .free-shipping-tip, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .product .free-shipping-tip, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .product .free-shipping-tip, #payment .payment-form .orderitem-pool .pool-row .pool-col .product .emergency-tip, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .product .emergency-tip, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .product .emergency-tip {
              display: none; }
          #payment .payment-form .orderitem-pool .pool-row .pool-col .filename, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .filename, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .filename {
            color: #2A2A2A;
            text-decoration: underline;
            font-size: 12px;
            font-size: 0.75rem; }
            #payment .payment-form .orderitem-pool .pool-row .pool-col .filename.empty, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .filename.empty, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .filename.empty {
              text-decoration: none; }
            #payment .payment-form .orderitem-pool .pool-row .pool-col .filename.error, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .filename.error, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .filename.error {
              width: 100%;
              text-decoration: none;
              color: #FF2C22; }
          #payment .payment-form .orderitem-pool .pool-row .pool-col .button.reupload, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .button.reupload, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .button.reupload {
            width: 80px;
            height: 28px;
            line-height: 28px;
            margin: 5px 0 0 0;
            padding: 0;
            border: none;
            background-color: #ee7c68;
            color: #fff;
            font-size: 14px;
            font-size: 0.875rem; }
            #payment .payment-form .orderitem-pool .pool-row .pool-col .button.reupload:hover, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .button.reupload:hover, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .button.reupload:hover {
              background-color: #ee7c68; }
            #payment .payment-form .orderitem-pool .pool-row .pool-col .button.reupload.fail-warning, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .button.reupload.fail-warning, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .button.reupload.fail-warning {
              background-color: #FF2C22; }
              #payment .payment-form .orderitem-pool .pool-row .pool-col .button.reupload.fail-warning:hover, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .button.reupload.fail-warning:hover, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .button.reupload.fail-warning:hover {
                background-color: #FF2C22; }
          #payment .payment-form .orderitem-pool .pool-row .pool-col .reupload-error, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .reupload-error, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .reupload-error {
            margin: 5px 0 0 0;
            color: #FF2C22;
            font-size: 12px;
            font-size: 0.75rem; }
          #payment .payment-form .orderitem-pool .pool-row .pool-col .total-process, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .total-process, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .total-process {
            width: 100px;
            margin: 8px auto 0 auto;
            border-top: 1px solid #ccc;
            padding-top: 8px; }
          #payment .payment-form .orderitem-pool .pool-row .pool-col .file-download-hint, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .file-download-hint, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .file-download-hint {
            cursor: pointer; }
            #payment .payment-form .orderitem-pool .pool-row .pool-col .file-download-hint i, #extrafee .payment-form .orderitem-pool .pool-row .pool-col .file-download-hint i, #points #points-payment .payment-form .orderitem-pool .pool-row .pool-col .file-download-hint i {
              font-size: 18px;
              color: #FF2C22; }
    #payment .payment-form .charge-title, #extrafee .payment-form .charge-title, #points #points-payment .payment-form .charge-title {
      margin: 0 0 10px 0;
      font-weight: 600;
      color: #2A2A2A;
      font-size: 16px;
      font-size: 1rem; }
    #payment .payment-form .charge-pool, #extrafee .payment-form .charge-pool, #points #points-payment .payment-form .charge-pool {
      position: relative;
      width: 100%;
      height: auto;
      margin-bottom: 24px;
      border: 1px solid #ddd;
      background-color: #fff; }
      #payment .payment-form .charge-pool .pool-row, #extrafee .payment-form .charge-pool .pool-row, #points #points-payment .payment-form .charge-pool .pool-row {
        position: relative;
        padding: 10px;
        display: -webkit-flex;
        display: flex; }
        #payment .payment-form .charge-pool .pool-row:nth-child(2n+1), #extrafee .payment-form .charge-pool .pool-row:nth-child(2n+1), #points #points-payment .payment-form .charge-pool .pool-row:nth-child(2n+1) {
          background-color: #eee; }
        #payment .payment-form .charge-pool .pool-row.header, #extrafee .payment-form .charge-pool .pool-row.header, #points #points-payment .payment-form .charge-pool .pool-row.header {
          background-color: #fff;
          -moz-box-shadow: inset 0px -1px 0px 0px #ddd;
          -webkit-box-shadow: inset 0px -1px 0px 0px #ddd;
          box-shadow: inset 0px -1px 0px 0px #ddd; }
          #payment .payment-form .charge-pool .pool-row.header .pool-col, #extrafee .payment-form .charge-pool .pool-row.header .pool-col, #points #points-payment .payment-form .charge-pool .pool-row.header .pool-col {
            color: #2A2A2A;
            font-weight: 600; }
        #payment .payment-form .charge-pool .pool-row .pool-col, #extrafee .payment-form .charge-pool .pool-row .pool-col, #points #points-payment .payment-form .charge-pool .pool-row .pool-col {
          display: inline-block;
          width: 60px;
          font-weight: 600;
          color: #565151;
          word-break: break-all;
          font-size: 13pxpx;
          font-size: 0.8125pxrem;
          display: -webkit-inline-flex;
          display: inline-flex;
          -webkit-align-items: center;
          align-items: center; }
          #payment .payment-form .charge-pool .pool-row .pool-col.charge, #extrafee .payment-form .charge-pool .pool-row .pool-col.charge, #points #points-payment .payment-form .charge-pool .pool-row .pool-col.charge {
            width: 180px; }
          #payment .payment-form .charge-pool .pool-row .pool-col.date, #extrafee .payment-form .charge-pool .pool-row .pool-col.date, #points #points-payment .payment-form .charge-pool .pool-row .pool-col.date {
            width: 150px; }
          #payment .payment-form .charge-pool .pool-row .pool-col.remark, #extrafee .payment-form .charge-pool .pool-row .pool-col.remark, #points #points-payment .payment-form .charge-pool .pool-row .pool-col.remark {
            min-width: 0;
            -webkit-flex: 1;
            flex: 1; }
          #payment .payment-form .charge-pool .pool-row .pool-col.action, #extrafee .payment-form .charge-pool .pool-row .pool-col.action, #points #points-payment .payment-form .charge-pool .pool-row .pool-col.action {
            width: 60px;
            -webkit-justify-content: center;
            justify-content: center; }
          #payment .payment-form .charge-pool .pool-row .pool-col.bold, #extrafee .payment-form .charge-pool .pool-row .pool-col.bold, #points #points-payment .payment-form .charge-pool .pool-row .pool-col.bold {
            font-weight: 600; }
          #payment .payment-form .charge-pool .pool-row .pool-col:pointer, #extrafee .payment-form .charge-pool .pool-row .pool-col:pointer, #points #points-payment .payment-form .charge-pool .pool-row .pool-col:pointer {
            cursor: pointer; }
          #payment .payment-form .charge-pool .pool-row .pool-col .button, #extrafee .payment-form .charge-pool .pool-row .pool-col .button, #points #points-payment .payment-form .charge-pool .pool-row .pool-col .button {
            width: auto;
            height: 30px;
            line-height: 30px;
            margin: 0;
            padding: 0 10px;
            border: none;
            font-size: 12px;
            font-size: 0.75rem; }
    #payment .payment-form .total, #extrafee .payment-form .total, #points #points-payment .payment-form .total {
      margin-bottom: 40px;
      padding-top: 16px;
      color: #3C3D41;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center; }
      #payment .payment-form .total .price, #extrafee .payment-form .total .price, #points #points-payment .payment-form .total .price {
        margin-left: 8px;
        font-weight: 700;
        color: #ee7c68;
        font-size: 24px;
        font-size: 1.5rem; }
      #payment .payment-form .total .date, #extrafee .payment-form .total .date, #points #points-payment .payment-form .total .date {
        font-weight: 600;
        color: #ee7c68; }
      #payment .payment-form .total .symbol, #extrafee .payment-form .total .symbol, #points #points-payment .payment-form .total .symbol {
        margin: 0 3px; }
    #payment .payment-form .form-content, #extrafee .payment-form .form-content, #points #points-payment .payment-form .form-content {
      margin-bottom: 40px;
      overflow: hidden; }
      #payment .payment-form .form-content.atm .form-item .label, #extrafee .payment-form .form-content.atm .form-item .label, #points #points-payment .payment-form .form-content.atm .form-item .label {
        width: 120px;
        min-width: 120px; }
      #payment .payment-form .form-content.no-margin, #extrafee .payment-form .form-content.no-margin, #points #points-payment .payment-form .form-content.no-margin {
        margin-bottom: 0; }
      #payment .payment-form .form-content .sub-title, #extrafee .payment-form .form-content .sub-title, #points #points-payment .payment-form .form-content .sub-title {
        margin-bottom: 16px;
        color: #2A2A2A;
        font-weight: 600;
        font-size: 18px;
        font-size: 1.125rem; }
        #payment .payment-form .form-content .sub-title .history, #extrafee .payment-form .form-content .sub-title .history, #points #points-payment .payment-form .form-content .sub-title .history {
          margin-left: 10px;
          color: #ee7c68;
          text-decoration: underline;
          font-weight: 400;
          cursor: pointer;
          font-size: 14px;
          font-size: 0.875rem; }
      #payment .payment-form .form-content .pickup-title, #extrafee .payment-form .form-content .pickup-title, #points #points-payment .payment-form .form-content .pickup-title {
        margin-bottom: 16px;
        color: #2A2A2A;
        font-size: 14px;
        font-size: 0.875rem; }
      #payment .payment-form .form-content .pickup-description, #extrafee .payment-form .form-content .pickup-description, #points #points-payment .payment-form .form-content .pickup-description {
        margin: 0;
        color: #3C3D41;
        font-size: 14px;
        font-size: 0.875rem; }
      #payment .payment-form .form-content .texi-hint, #extrafee .payment-form .form-content .texi-hint, #points #points-payment .payment-form .form-content .texi-hint {
        margin-bottom: 16px;
        color: #FF2C22;
        font-size: 14px;
        font-size: 0.875rem; }
      #payment .payment-form .form-content .input-wrapper, #extrafee .payment-form .form-content .input-wrapper, #points #points-payment .payment-form .form-content .input-wrapper {
        width: 580px;
        margin-bottom: 24px;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between; }
        #payment .payment-form .form-content .input-wrapper:last-child, #extrafee .payment-form .form-content .input-wrapper:last-child, #points #points-payment .payment-form .form-content .input-wrapper:last-child {
          margin-bottom: 0; }
        #payment .payment-form .form-content .input-wrapper .input-form, #extrafee .payment-form .form-content .input-wrapper .input-form, #points #points-payment .payment-form .form-content .input-wrapper .input-form {
          margin-left: 10px; }
          #payment .payment-form .form-content .input-wrapper .input-form.xsmall, #extrafee .payment-form .form-content .input-wrapper .input-form.xsmall, #points #points-payment .payment-form .form-content .input-wrapper .input-form.xsmall {
            width: 60px; }
          #payment .payment-form .form-content .input-wrapper .input-form.small, #extrafee .payment-form .form-content .input-wrapper .input-form.small, #points #points-payment .payment-form .form-content .input-wrapper .input-form.small {
            width: 150px; }
          #payment .payment-form .form-content .input-wrapper .input-form.medium, #extrafee .payment-form .form-content .input-wrapper .input-form.medium, #points #points-payment .payment-form .form-content .input-wrapper .input-form.medium {
            width: 170px; }
          #payment .payment-form .form-content .input-wrapper .input-form.non-margin, #extrafee .payment-form .form-content .input-wrapper .input-form.non-margin, #points #points-payment .payment-form .form-content .input-wrapper .input-form.non-margin {
            margin-left: 0; }
        #payment .payment-form .form-content .input-wrapper .address-form, #extrafee .payment-form .form-content .input-wrapper .address-form, #points #points-payment .payment-form .form-content .input-wrapper .address-form {
          position: relative;
          width: 100%; }
          #payment .payment-form .form-content .input-wrapper .address-form label, #extrafee .payment-form .form-content .input-wrapper .address-form label, #points #points-payment .payment-form .form-content .input-wrapper .address-form label {
            display: inline-block;
            margin-bottom: 10px;
            color: #2A2A2A;
            cursor: auto;
            font-size: 14px;
            font-size: 0.875rem; }
          #payment .payment-form .form-content .input-wrapper .address-form span.error, #extrafee .payment-form .form-content .input-wrapper .address-form span.error, #points #points-payment .payment-form .form-content .input-wrapper .address-form span.error, #payment .payment-form .form-content .input-wrapper .address-form span.red-text, #extrafee .payment-form .form-content .input-wrapper .address-form span.red-text, #points #points-payment .payment-form .form-content .input-wrapper .address-form span.red-text {
            color: #FF2C22;
            font-size: 12px;
            font-size: 0.75rem; }
        #payment .payment-form .form-content .input-wrapper .info-wrapper, #extrafee .payment-form .form-content .input-wrapper .info-wrapper, #points #points-payment .payment-form .form-content .input-wrapper .info-wrapper {
          line-height: 1.6em;
          font-size: 16px;
          font-size: 1rem; }
      #payment .payment-form .form-content .select-wrapper, #extrafee .payment-form .form-content .select-wrapper, #points #points-payment .payment-form .form-content .select-wrapper {
        margin-bottom: 24px; }
        #payment .payment-form .form-content .select-wrapper .checkbox-form, #extrafee .payment-form .form-content .select-wrapper .checkbox-form, #points #points-payment .payment-form .form-content .select-wrapper .checkbox-form {
          cursor: pointer;
          margin-right: 20px; }
      #payment .payment-form .form-content .result-price, #extrafee .payment-form .form-content .result-price, #points #points-payment .payment-form .form-content .result-price {
        margin: 20px 0 0 0;
        font-size: 18px;
        font-size: 1.125rem; }
      #payment .payment-form .form-content .button-group, #extrafee .payment-form .form-content .button-group, #points #points-payment .payment-form .form-content .button-group {
        margin: 20px 0 0 0; }
        #payment .payment-form .form-content .button-group .button, #extrafee .payment-form .form-content .button-group .button, #points #points-payment .payment-form .form-content .button-group .button {
          height: 40px;
          line-height: 40px;
          margin: 0 10px 0 0;
          padding: 0;
          border: none;
          color: #fff;
          font-size: 14px;
          font-size: 0.875rem; }
          #payment .payment-form .form-content .button-group .button.submit, #extrafee .payment-form .form-content .button-group .button.submit, #points #points-payment .payment-form .form-content .button-group .button.submit {
            width: 120px;
            background-color: #ee7c68;
            font-weight: 600; }
            #payment .payment-form .form-content .button-group .button.submit:hover, #extrafee .payment-form .form-content .button-group .button.submit:hover, #points #points-payment .payment-form .form-content .button-group .button.submit:hover {
              background-color: #ee7c68; }
          #payment .payment-form .form-content .button-group .button.cancel, #extrafee .payment-form .form-content .button-group .button.cancel, #points #points-payment .payment-form .form-content .button-group .button.cancel {
            min-width: 80px;
            background-color: #919191; }
            #payment .payment-form .form-content .button-group .button.cancel:hover, #extrafee .payment-form .form-content .button-group .button.cancel:hover, #points #points-payment .payment-form .form-content .button-group .button.cancel:hover {
              background-color: #919191; }
    #payment .payment-form .form-item, #extrafee .payment-form .form-item, #points #points-payment .payment-form .form-item {
      color: #484848;
      line-height: 21px;
      margin-bottom: 8px;
      font-size: 15px;
      font-size: 0.9375rem;
      display: -webkit-flex;
      display: flex; }
      #payment .payment-form .form-item:last-child, #extrafee .payment-form .form-item:last-child, #points #points-payment .payment-form .form-item:last-child {
        margin-bottom: 0; }
      #payment .payment-form .form-item .label, #extrafee .payment-form .form-item .label, #points #points-payment .payment-form .form-item .label {
        display: inline-block;
        text-align: right; }
    #payment .payment-form .method, #extrafee .payment-form .method, #points #points-payment .payment-form .method {
      position: relative;
      display: inline-block;
      width: 270px;
      height: 140px;
      margin: 0 20px 70px 0;
      border: 2px solid #D9D9D9;
      background-color: #FFFFFF;
      cursor: pointer;
      -moz-border-radius: 3px;
      -webkit-border-radius: 3px;
      border-radius: 3px; }
      #payment .payment-form .method.selected, #extrafee .payment-form .method.selected, #points #points-payment .payment-form .method.selected {
        border: 2px solid #0071C5; }
        #payment .payment-form .method.selected .checkbox, #extrafee .payment-form .method.selected .checkbox, #points #points-payment .payment-form .method.selected .checkbox {
          border: 1px solid #0071C5;
          background-color: #0071C5; }
          #payment .payment-form .method.selected .checkbox i, #extrafee .payment-form .method.selected .checkbox i, #points #points-payment .payment-form .method.selected .checkbox i {
            visibility: visible; }
        #payment .payment-form .method.selected .method-info, #extrafee .payment-form .method.selected .method-info, #points #points-payment .payment-form .method.selected .method-info {
          opacity: 1; }
      #payment .payment-form .method .checkbox, #extrafee .payment-form .method .checkbox, #points #points-payment .payment-form .method .checkbox {
        position: absolute;
        top: 50%;
        left: 20px;
        width: 32px;
        height: 32px;
        margin: 0;
        border: 1px solid #D9D9D9;
        color: #fff;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%); }
        #payment .payment-form .method .checkbox i, #extrafee .payment-form .method .checkbox i, #points #points-payment .payment-form .method .checkbox i {
          visibility: hidden; }
      #payment .payment-form .method .method-info, #extrafee .payment-form .method .method-info, #points #points-payment .payment-form .method .method-info {
        position: absolute;
        top: 50%;
        left: 50%;
        text-align: center;
        opacity: .5;
        -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%); }
        #payment .payment-form .method .method-info .image, #extrafee .payment-form .method .method-info .image, #points #points-payment .payment-form .method .method-info .image {
          margin: 0 0 10px 0; }
        #payment .payment-form .method .method-info .title, #extrafee .payment-form .method .method-info .title, #points #points-payment .payment-form .method .method-info .title {
          font-weight: 600;
          color: #4A4A4A;
          text-align: center;
          font-size: 16px;
          font-size: 1rem; }
      #payment .payment-form .method .button.pay, #extrafee .payment-form .method .button.pay, #points #points-payment .payment-form .method .button.pay {
        top: calc(100% + 8px);
        left: 50%;
        position: absolute;
        display: block;
        width: 240px;
        height: 44px;
        line-height: 44px;
        margin: 0 0;
        padding: 0;
        border: none;
        background-color: #0071C5;
        color: #fff;
        font-size: 14px;
        font-size: 0.875rem;
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%); }
    #payment .payment-form .paymentmethod-error, #extrafee .payment-form .paymentmethod-error, #points #points-payment .payment-form .paymentmethod-error, #payment .payment-form .upload-error, #extrafee .payment-form .upload-error, #points #points-payment .payment-form .upload-error {
      display: block;
      color: #FF2C22;
      margin: 0 0 40px; }
    #payment .payment-form .upload-error, #extrafee .payment-form .upload-error, #points #points-payment .payment-form .upload-error {
      margin: 20px 0; }
    #payment .payment-form .explanation, #extrafee .payment-form .explanation, #points #points-payment .payment-form .explanation {
      width: 960px; }
      #payment .payment-form .explanation .ssl-lock, #extrafee .payment-form .explanation .ssl-lock, #points #points-payment .payment-form .explanation .ssl-lock {
        margin-right: 4px;
        color: #ee7c68; }
      #payment .payment-form .explanation .title, #extrafee .payment-form .explanation .title, #points #points-payment .payment-form .explanation .title {
        line-height: 20px;
        margin: 0 0 12px 0;
        font-weight: 600;
        color: #2A2A2A;
        word-wrap: break-word;
        font-size: 14px;
        font-size: 0.875rem; }
      #payment .payment-form .explanation .description, #extrafee .payment-form .explanation .description, #points #points-payment .payment-form .explanation .description {
        line-height: 26px;
        margin: 0;
        color: #484848;
        word-wrap: break-word;
        font-size: 14px;
        font-size: 0.875rem; }
        #payment .payment-form .explanation .description.error, #extrafee .payment-form .explanation .description.error, #points #points-payment .payment-form .explanation .description.error {
          color: #FF2C22; }
  #payment .payment-message, #extrafee .payment-message, #points #points-payment .payment-message {
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 56px 0;
    background-color: #fff;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px; }
    #payment .payment-message.in-content, #extrafee .payment-message.in-content, #points #points-payment .payment-message.in-content {
      width: 100%;
      margin: 0 0 40px 0;
      padding: 0;
      background-color: transparent; }
    #payment .payment-message .button, #extrafee .payment-message .button, #points #points-payment .payment-message .button {
      width: 160px;
      height: 40px;
      line-height: 40px;
      color: #fff; }
      #payment .payment-message .button.more, #extrafee .payment-message .button.more, #points #points-payment .payment-message .button.more {
        background-color: #388d81; }
      #payment .payment-message .button.retry, #extrafee .payment-message .button.retry, #points #points-payment .payment-message .button.retry {
        background-color: #FF2C22; }
      #payment .payment-message .button.contact, #extrafee .payment-message .button.contact, #points #points-payment .payment-message .button.contact {
        background-color: #737373; }
  #payment .extrafee-action-dropdown, #extrafee .extrafee-action-dropdown, #points #points-payment .extrafee-action-dropdown {
    width: 180px;
    margin-top: 10px;
    margin-left: -5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0px -1px 12px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px -1px 12px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px -1px 12px 0px rgba(0, 0, 0, 0.2);
    -webkit-transform-origin: top right;
    -moz-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right; }
    #payment .extrafee-action-dropdown:before, #extrafee .extrafee-action-dropdown:before, #points #points-payment .extrafee-action-dropdown:before {
      content: '';
      position: absolute;
      top: -11px;
      right: 16px;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 9px 9px 9px;
      border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent; }
    #payment .extrafee-action-dropdown:after, #extrafee .extrafee-action-dropdown:after, #points #points-payment .extrafee-action-dropdown:after {
      content: '';
      position: absolute;
      top: -9px;
      right: 16px;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 9px 9px 9px;
      border-color: transparent transparent #ffffff transparent; }
    #payment .extrafee-action-dropdown ul li, #extrafee .extrafee-action-dropdown ul li, #points #points-payment .extrafee-action-dropdown ul li {
      height: 40px;
      line-height: 40px;
      padding: 0 16px;
      font-size: 14px;
      font-size: 14px;
      font-size: 0.875rem;
      -moz-box-shadow: inset 0px 1px 0px 0px #EEEEEE;
      -webkit-box-shadow: inset 0px 1px 0px 0px #EEEEEE;
      box-shadow: inset 0px 1px 0px 0px #EEEEEE; }
      #payment .extrafee-action-dropdown ul li:first-child, #extrafee .extrafee-action-dropdown ul li:first-child, #points #points-payment .extrafee-action-dropdown ul li:first-child {
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none; }
      #payment .extrafee-action-dropdown ul li:hover a, #extrafee .extrafee-action-dropdown ul li:hover a, #points #points-payment .extrafee-action-dropdown ul li:hover a {
        color: #000; }
      #payment .extrafee-action-dropdown ul li:hover .icon, #extrafee .extrafee-action-dropdown ul li:hover .icon, #points #points-payment .extrafee-action-dropdown ul li:hover .icon {
        color: #000; }
      #payment .extrafee-action-dropdown ul li a, #extrafee .extrafee-action-dropdown ul li a, #points #points-payment .extrafee-action-dropdown ul li a {
        color: #2A2A2A; }
      #payment .extrafee-action-dropdown ul li .icon, #extrafee .extrafee-action-dropdown ul li .icon, #points #points-payment .extrafee-action-dropdown ul li .icon {
        width: 14px;
        margin-right: 14px;
        color: #737373; }
  #payment .delivery-warning .delivery-warning-title, #extrafee .delivery-warning .delivery-warning-title, #points #points-payment .delivery-warning .delivery-warning-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: bold;
    color: #FF2C22; }
  #payment .delivery-warning .delivery-warning-button, #extrafee .delivery-warning .delivery-warning-button, #points #points-payment .delivery-warning .delivery-warning-button {
    width: 100px; }

#payment-result, #extrafee-payment-result, #points-payment-result {
  overflow: hidden; }
  #payment-result .bread-crumbs, #extrafee-payment-result .bread-crumbs, #points-payment-result .bread-crumbs {
    margin-bottom: 30px; }
  #payment-result .payment-content, #extrafee-payment-result .payment-content, #points-payment-result .payment-content {
    position: relative;
    width: calc(100% - 20px);
    max-width: 1100px;
    margin: 0 auto 30px auto;
    padding: 30px 0 0 0; }
  #payment-result .status-message, #extrafee-payment-result .status-message, #points-payment-result .status-message {
    margin: 80px auto;
    padding: 56px 0;
    background-color: #fff;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px; }

#payment-credit, #extrafee-payment-credit, #points-payment-credit {
  overflow: hidden; }
  #payment-credit .bread-crumbs, #extrafee-payment-credit .bread-crumbs, #points-payment-credit .bread-crumbs {
    margin-bottom: 30px; }
  #payment-credit .payment-content, #extrafee-payment-credit .payment-content, #points-payment-credit .payment-content {
    position: relative;
    width: calc(100% - 20px);
    max-width: 1100px;
    margin: 0 auto 30px auto;
    padding: 30px 0 0 0; }
  #payment-credit .status-message, #extrafee-payment-credit .status-message, #points-payment-credit .status-message {
    margin: 80px auto;
    padding: 56px 0;
    background-color: #fff;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px; }
    #payment-credit .status-message .status-title, #extrafee-payment-credit .status-message .status-title, #points-payment-credit .status-message .status-title {
      font-size: 20px;
      font-size: 1.25rem; }
      #payment-credit .status-message .status-title.other-order, #extrafee-payment-credit .status-message .status-title.other-order, #points-payment-credit .status-message .status-title.other-order {
        margin-top: 25px; }

#payment-atm, #extrafee-payment-atm, #points-payment-atm {
  overflow: hidden; }
  #payment-atm .bread-crumbs, #extrafee-payment-atm .bread-crumbs, #points-payment-atm .bread-crumbs {
    margin-bottom: 30px; }
  #payment-atm .status-message, #extrafee-payment-atm .status-message, #points-payment-atm .status-message {
    padding: 56px 0; }
    #payment-atm .status-message .status-title, #extrafee-payment-atm .status-message .status-title, #points-payment-atm .status-message .status-title {
      font-size: 20px;
      font-size: 1.25rem; }
  #payment-atm .payment-content, #extrafee-payment-atm .payment-content, #points-payment-atm .payment-content {
    position: relative;
    width: calc(100% - 20px);
    max-width: 1100px;
    margin: 0 auto 30px auto;
    padding: 30px 0 0 0; }
  #payment-atm .payment-form, #extrafee-payment-atm .payment-form, #points-payment-atm .payment-form {
    position: relative;
    padding: 40px;
    background-color: #fff; }
  #payment-atm .form-title, #extrafee-payment-atm .form-title, #points-payment-atm .form-title {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    font-weight: 600;
    color: #2A2A2A;
    font-size: 24px;
    font-size: 1.5rem; }
  #payment-atm .sub-title, #extrafee-payment-atm .sub-title, #points-payment-atm .sub-title {
    line-height: 22px;
    margin: 20px 0;
    font-weight: 600;
    color: #2A2A2A;
    font-size: 18px;
    font-size: 1.125rem; }
  #payment-atm .form-content, #extrafee-payment-atm .form-content, #points-payment-atm .form-content {
    margin-bottom: 40px;
    padding-left: 20px;
    overflow: hidden; }
    #payment-atm .form-content.sendto, #extrafee-payment-atm .form-content.sendto, #points-payment-atm .form-content.sendto {
      padding-top: 16px;
      margin-bottom: 0; }
    #payment-atm .form-content.atm .form-item .label, #extrafee-payment-atm .form-content.atm .form-item .label, #points-payment-atm .form-content.atm .form-item .label {
      width: 120px;
      min-width: 120px; }
  #payment-atm .form-item, #extrafee-payment-atm .form-item, #points-payment-atm .form-item {
    color: #484848;
    line-height: 21px;
    margin-bottom: 8px;
    font-size: 15px;
    font-size: 0.9375rem;
    display: -webkit-flex;
    display: flex; }
    #payment-atm .form-item:last-child, #extrafee-payment-atm .form-item:last-child, #points-payment-atm .form-item:last-child {
      margin-bottom: 0; }
    #payment-atm .form-item.description-item, #extrafee-payment-atm .form-item.description-item, #points-payment-atm .form-item.description-item {
      margin-bottom: 20px;
      color: #2A2A2A;
      font-weight: bold; }
    #payment-atm .form-item .label, #extrafee-payment-atm .form-item .label, #points-payment-atm .form-item .label {
      display: inline-block;
      text-align: right; }
  #payment-atm .method, #extrafee-payment-atm .method, #points-payment-atm .method {
    position: relative;
    display: inline-block;
    width: 285px;
    height: 140px;
    margin: 0 20px 70px 0;
    border: 2px solid #D9D9D9;
    background-color: #FFFFFF;
    cursor: pointer;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
    #payment-atm .method.selected, #extrafee-payment-atm .method.selected, #points-payment-atm .method.selected {
      border: 2px solid #0071C5; }
      #payment-atm .method.selected .checkbox, #extrafee-payment-atm .method.selected .checkbox, #points-payment-atm .method.selected .checkbox {
        border: 1px solid #0071C5;
        background-color: #0071C5; }
        #payment-atm .method.selected .checkbox i, #extrafee-payment-atm .method.selected .checkbox i, #points-payment-atm .method.selected .checkbox i {
          visibility: visible; }
      #payment-atm .method.selected .method-info, #extrafee-payment-atm .method.selected .method-info, #points-payment-atm .method.selected .method-info {
        opacity: 1; }
    #payment-atm .method .checkbox, #extrafee-payment-atm .method .checkbox, #points-payment-atm .method .checkbox {
      position: absolute;
      top: 50%;
      left: 20px;
      width: 32px;
      height: 32px;
      margin: 0;
      border: 1px solid #D9D9D9;
      color: #fff;
      -moz-border-radius: 50%;
      -webkit-border-radius: 50%;
      border-radius: 50%;
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); }
      #payment-atm .method .checkbox i, #extrafee-payment-atm .method .checkbox i, #points-payment-atm .method .checkbox i {
        visibility: hidden; }
    #payment-atm .method .method-info, #extrafee-payment-atm .method .method-info, #points-payment-atm .method .method-info {
      position: absolute;
      top: 50%;
      left: 50%;
      text-align: center;
      opacity: .5;
      -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
      -webkit-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%); }
      #payment-atm .method .method-info .image, #extrafee-payment-atm .method .method-info .image, #points-payment-atm .method .method-info .image {
        height: 50px;
        margin: 0 0 10px 0; }
      #payment-atm .method .method-info .title, #extrafee-payment-atm .method .method-info .title, #points-payment-atm .method .method-info .title {
        font-weight: 600;
        color: #4A4A4A;
        text-align: center;
        font-size: 16px;
        font-size: 1rem; }
      #payment-atm .method .method-info .error, #extrafee-payment-atm .method .method-info .error, #points-payment-atm .method .method-info .error {
        color: #FF2C22;
        white-space: nowrap;
        font-size: 12px;
        font-size: 0.75rem; }
    #payment-atm .method .button.pay, #extrafee-payment-atm .method .button.pay, #points-payment-atm .method .button.pay {
      top: calc(100% + 8px);
      left: 50%;
      position: absolute;
      display: block;
      width: 240px;
      height: 44px;
      line-height: 44px;
      margin: 0 0;
      padding: 0;
      border: none;
      background-color: #0071C5;
      color: #fff;
      font-size: 14px;
      font-size: 0.875rem;
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%); }
      #payment-atm .method .button.pay.error, #extrafee-payment-atm .method .button.pay.error, #points-payment-atm .method .button.pay.error {
        background-color: #FF2C22; }

#payment-point, #extrafee-payment-point {
  overflow: hidden; }
  #payment-point .bread-crumbs, #extrafee-payment-point .bread-crumbs {
    margin-bottom: 30px; }
  #payment-point .status-message, #extrafee-payment-point .status-message {
    padding: 56px 0; }
    #payment-point .status-message .status-title, #extrafee-payment-point .status-message .status-title {
      font-size: 20px;
      font-size: 1.25rem; }
  #payment-point .payment-content, #extrafee-payment-point .payment-content {
    position: relative;
    width: calc(100% - 20px);
    max-width: 1100px;
    margin: 0 auto 30px auto;
    padding: 30px 0 0 0; }
  #payment-point .payment-form, #extrafee-payment-point .payment-form {
    position: relative;
    padding: 40px;
    background-color: #fff; }
  #payment-point .form-title, #extrafee-payment-point .form-title {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    font-weight: 600;
    color: #2A2A2A;
    font-size: 24px;
    font-size: 1.5rem; }
  #payment-point .form-content, #extrafee-payment-point .form-content {
    margin-bottom: 40px;
    padding-left: 20px;
    overflow: hidden; }
  #payment-point .form-item, #extrafee-payment-point .form-item {
    color: #484848;
    line-height: 21px;
    margin-bottom: 8px;
    font-size: 15px;
    font-size: 0.9375rem;
    display: -webkit-flex;
    display: flex; }
    #payment-point .form-item:last-child, #extrafee-payment-point .form-item:last-child {
      margin-bottom: 0; }
    #payment-point .form-item.error, #extrafee-payment-point .form-item.error {
      color: #FF2C22; }
    #payment-point .form-item .label, #extrafee-payment-point .form-item .label {
      display: inline-block;
      text-align: right; }
  #payment-point .button, #extrafee-payment-point .button {
    display: inline-block;
    margin: 0 0 40px 0; }
    #payment-point .button.submit, #extrafee-payment-point .button.submit {
      margin: 0 20px 40px 0; }

#payment-outwardremittance, #extrafee-payment-outwardremittance, #points-payment-outwardremittance {
  overflow: hidden; }
  #payment-outwardremittance .bread-crumbs, #extrafee-payment-outwardremittance .bread-crumbs, #points-payment-outwardremittance .bread-crumbs {
    margin-bottom: 30px; }
  #payment-outwardremittance .status-message, #extrafee-payment-outwardremittance .status-message, #points-payment-outwardremittance .status-message {
    padding: 56px 0; }
    #payment-outwardremittance .status-message .status-title, #extrafee-payment-outwardremittance .status-message .status-title, #points-payment-outwardremittance .status-message .status-title {
      font-size: 20px;
      font-size: 1.25rem; }
  #payment-outwardremittance .payment-content, #extrafee-payment-outwardremittance .payment-content, #points-payment-outwardremittance .payment-content {
    position: relative;
    width: calc(100% - 20px);
    max-width: 1100px;
    margin: 0 auto 30px auto;
    padding: 30px 0 0 0; }
  #payment-outwardremittance .payment-form, #extrafee-payment-outwardremittance .payment-form, #points-payment-outwardremittance .payment-form {
    position: relative;
    padding: 40px;
    background-color: #fff; }
  #payment-outwardremittance .form-title, #extrafee-payment-outwardremittance .form-title, #points-payment-outwardremittance .form-title {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    font-weight: 600;
    color: #2A2A2A;
    font-size: 24px;
    font-size: 1.5rem; }
  #payment-outwardremittance .form-content, #extrafee-payment-outwardremittance .form-content, #points-payment-outwardremittance .form-content {
    margin-bottom: 40px;
    padding-left: 20px;
    overflow: hidden; }
  #payment-outwardremittance .form-item, #extrafee-payment-outwardremittance .form-item, #points-payment-outwardremittance .form-item {
    color: #484848;
    line-height: 21px;
    margin-bottom: 8px;
    font-size: 15px;
    font-size: 0.9375rem;
    display: -webkit-flex;
    display: flex; }
    #payment-outwardremittance .form-item:last-child, #extrafee-payment-outwardremittance .form-item:last-child, #points-payment-outwardremittance .form-item:last-child {
      margin-bottom: 0; }
    #payment-outwardremittance .form-item.error, #extrafee-payment-outwardremittance .form-item.error, #points-payment-outwardremittance .form-item.error {
      color: #FF2C22; }
    #payment-outwardremittance .form-item.description-item, #extrafee-payment-outwardremittance .form-item.description-item, #points-payment-outwardremittance .form-item.description-item {
      margin-bottom: 30px; }
    #payment-outwardremittance .form-item .label, #extrafee-payment-outwardremittance .form-item .label, #points-payment-outwardremittance .form-item .label {
      display: inline-block;
      text-align: right; }
  #payment-outwardremittance .input-form, #extrafee-payment-outwardremittance .input-form, #points-payment-outwardremittance .input-form {
    width: 300px;
    margin-right: 10px; }
    #payment-outwardremittance .input-form .select-time, #extrafee-payment-outwardremittance .input-form .select-time, #points-payment-outwardremittance .input-form .select-time {
      position: relative;
      display: block;
      width: 300px;
      height: 44px;
      line-height: 44px;
      margin: 0;
      padding: 0 12px;
      border: 1px solid #9B9B9B;
      color: #333333;
      font-size: 14px;
      font-size: 0.875rem;
      -moz-border-radius: 3px;
      -webkit-border-radius: 3px;
      border-radius: 3px; }
      #payment-outwardremittance .input-form .select-time .arrow-down, #extrafee-payment-outwardremittance .input-form .select-time .arrow-down, #points-payment-outwardremittance .input-form .select-time .arrow-down {
        position: absolute;
        top: 50%;
        right: 12px;
        color: #333333;
        font-size: 20px;
        font-size: 1.25rem;
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%); }
  #payment-outwardremittance .checkbox-form, #extrafee-payment-outwardremittance .checkbox-form, #points-payment-outwardremittance .checkbox-form {
    cursor: pointer;
    margin-right: 20px; }
  #payment-outwardremittance .button, #extrafee-payment-outwardremittance .button, #points-payment-outwardremittance .button {
    display: inline-block;
    margin: 20px 0 0 0; }
    #payment-outwardremittance .button.submit, #extrafee-payment-outwardremittance .button.submit, #points-payment-outwardremittance .button.submit {
      margin: 20px 20px 0 0; }
  #payment-outwardremittance .select-time-dropdown, #extrafee-payment-outwardremittance .select-time-dropdown, #points-payment-outwardremittance .select-time-dropdown {
    width: 300px; }
    #payment-outwardremittance .select-time-dropdown ul, #extrafee-payment-outwardremittance .select-time-dropdown ul, #points-payment-outwardremittance .select-time-dropdown ul {
      position: relative;
      max-height: 200px;
      overflow: hidden; }

#payment-monthly, #extrafee-payment-monthly {
  overflow: hidden; }
  #payment-monthly .bread-crumbs, #extrafee-payment-monthly .bread-crumbs {
    margin-bottom: 30px; }
  #payment-monthly .status-message, #extrafee-payment-monthly .status-message {
    padding: 56px 0; }
    #payment-monthly .status-message .status-title, #extrafee-payment-monthly .status-message .status-title {
      font-size: 20px;
      font-size: 1.25rem; }
  #payment-monthly .payment-content, #extrafee-payment-monthly .payment-content {
    position: relative;
    width: calc(100% - 20px);
    max-width: 1100px;
    margin: 0 auto 30px auto;
    padding: 30px 0 0 0; }
  #payment-monthly .payment-form, #extrafee-payment-monthly .payment-form {
    position: relative;
    padding: 40px;
    background-color: #fff; }
  #payment-monthly .form-title, #extrafee-payment-monthly .form-title {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    font-weight: 600;
    color: #2A2A2A;
    font-size: 24px;
    font-size: 1.5rem; }
  #payment-monthly .form-content, #extrafee-payment-monthly .form-content {
    margin-bottom: 40px;
    padding-left: 20px;
    overflow: hidden; }
  #payment-monthly .form-item, #extrafee-payment-monthly .form-item {
    color: #484848;
    line-height: 21px;
    margin-bottom: 8px;
    font-size: 15px;
    font-size: 0.9375rem;
    display: -webkit-flex;
    display: flex; }
    #payment-monthly .form-item:last-child, #extrafee-payment-monthly .form-item:last-child {
      margin-bottom: 0; }
    #payment-monthly .form-item.error, #extrafee-payment-monthly .form-item.error {
      color: #FF2C22; }
    #payment-monthly .form-item .label, #extrafee-payment-monthly .form-item .label {
      display: inline-block;
      text-align: right; }
  #payment-monthly .button, #extrafee-payment-monthly .button {
    display: inline-block;
    margin: 0 0 40px 0; }
    #payment-monthly .button.submit, #extrafee-payment-monthly .button.submit {
      margin: 0 20px 40px 0; }

#member {
  position: relative;
  width: calc(100% - 20px);
  max-width: 1100px;
  margin: 0 auto 30px auto;
  padding: 30px 0 0 0; }
  #member:after {
    clear: left;
    content: '';
    display: block;
    height: 0;
    overflow: hidden; }
  #member .bread-crumbs {
    margin-bottom: 20px; }
  #member .sidebar {
    display: block;
    position: relative;
    width: 280px;
    float: left; }
    #member .sidebar .nav-wrapper {
      margin: 0 0 20px 0; }
  #member .content {
    display: inline-block;
    width: calc(100% - 300px);
    margin-left: 20px;
    border: 1px solid #DADADA;
    background-color: #fff; }

.order-list .member-content .order {
  position: relative;
  margin: 0;
  padding: 20px 30px;
  border-bottom: 1px solid #ddd;
  background-color: #fff; }
  .order-list .member-content .order .button-group {
    position: absolute;
    top: 10px;
    right: 10px; }
    .order-list .member-content .order .button-group .button.order-action {
      display: block;
      width: 64px;
      height: 27px;
      line-height: 25px;
      margin: 0 0 6px 0;
      padding: 0;
      background-color: #fff;
      font-size: 12px;
      font-size: 0.75rem; }
      .order-list .member-content .order .button-group .button.order-action:hover {
        background-color: #fff; }
      .order-list .member-content .order .button-group .button.order-action.gray {
        border: 1px solid #484848;
        color: #484848;
        cursor: default; }
      .order-list .member-content .order .button-group .button.order-action.red {
        border: 1px solid #FF2C22;
        color: #FF2C22; }
      .order-list .member-content .order .button-group .button.order-action.blue {
        border: 1px solid #0071C5;
        color: #0071C5; }
  .order-list .member-content .order .refund-hint {
    position: absolute;
    top: 40px;
    right: 10px;
    width: 64px;
    margin: 0;
    padding: 0;
    text-decoration: underline;
    cursor: pointer;
    color: #FF2C22;
    text-align: center;
    font-size: 12px;
    font-size: 0.75rem; }
  .order-list .member-content .order .product-table {
    width: calc(100% - 80px);
    margin: 0 0 20px 0;
    border: none; }
    .order-list .member-content .order .product-table .product-row {
      margin-bottom: 9px;
      border: none; }
      .order-list .member-content .order .product-table .product-row.info {
        opacity: .8; }
    .order-list .member-content .order .product-table .product-info {
      padding: 0;
      border: none;
      color: #484848;
      font-size: 13px;
      font-size: 0.8125rem; }
      .order-list .member-content .order .product-table .product-info.orderid {
        width: 120px; }
      .order-list .member-content .order .product-table .product-info.semi-blod {
        font-weight: 600; }
      .order-list .member-content .order .product-table .product-info.orange {
        color: #ee7c68; }
      .order-list .member-content .order .product-table .product-info.underline {
        text-decoration: underline; }
      .order-list .member-content .order .product-table .product-info.center {
        text-align: center; }
      .order-list .member-content .order .product-table .product-info.hidden {
        visibility: hidden; }
      .order-list .member-content .order .product-table .product-info a {
        cursor: pointer;
        text-decoration: none; }
        .order-list .member-content .order .product-table .product-info a:hover {
          text-decoration: underline; }
      .order-list .member-content .order .product-table .product-info .more-button {
        display: inline-block;
        margin: 10px 0 0 0;
        color: #2A2A2A;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        font-size: 13px;
        font-size: 0.8125rem; }
        .order-list .member-content .order .product-table .product-info .more-button:hover {
          text-decoration: underline; }
        .order-list .member-content .order .product-table .product-info .more-button i {
          margin-left: 4px;
          font-size: 14px;
          font-size: 0.875rem; }
      .order-list .member-content .order .product-table .product-info .file-download-hint {
        cursor: pointer; }
        .order-list .member-content .order .product-table .product-info .file-download-hint i {
          font-size: 18px;
          color: #FF2C22; }
  .order-list .member-content .order .step-bar {
    position: relative; }
    .order-list .member-content .order .step-bar.error .progress div {
      background-color: #FF2C22; }
    .order-list .member-content .order .step-bar.error .step li:before {
      background-color: #FF2C22; }
    .order-list .member-content .order .step-bar.error .step li:after {
      background-color: #737373; }
    .order-list .member-content .order .step-bar.error .step li.now {
      color: #FF2C22; }
      .order-list .member-content .order .step-bar.error .step li.now:before {
        display: block; }
      .order-list .member-content .order .step-bar.error .step li.now:after {
        background-color: #fff; }
    .order-list .member-content .order .step-bar.error .step li.finished {
      color: #737373; }
      .order-list .member-content .order .step-bar.error .step li.finished:after {
        background-color: #FF2C22; }
    .order-list .member-content .order .step-bar.error .step li .button.action {
      background-color: #FF2C22; }
      .order-list .member-content .order .step-bar.error .step li .button.action:hover {
        background-color: #FF2C22; }
    .order-list .member-content .order .step-bar.green .progress div {
      background-color: #388d81; }
    .order-list .member-content .order .step-bar.green .step li:before {
      background-color: #388d81; }
    .order-list .member-content .order .step-bar.green .step li:after {
      background-color: #737373; }
    .order-list .member-content .order .step-bar.green .step li.now {
      color: #388d81; }
      .order-list .member-content .order .step-bar.green .step li.now:before {
        display: block; }
      .order-list .member-content .order .step-bar.green .step li.now:after {
        background-color: #fff; }
    .order-list .member-content .order .step-bar.green .step li.finished {
      color: #737373; }
      .order-list .member-content .order .step-bar.green .step li.finished:after {
        background-color: #388d81; }
    .order-list .member-content .order .step-bar.green .step li .button.action {
      background-color: #388d81; }
      .order-list .member-content .order .step-bar.green .step li .button.action:hover {
        background-color: #388d81; }
    .order-list .member-content .order .step-bar .progress {
      position: relative;
      width: 100%;
      height: 2px;
      margin-bottom: 12px;
      background-color: #DDDDDD; }
      .order-list .member-content .order .step-bar .progress div {
        position: absolute;
        height: 100%;
        background-color: #ee7c68; }
    .order-list .member-content .order .step-bar .step {
      margin: 0;
      padding: 0;
      list-style-type: none;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      .order-list .member-content .order .step-bar .step li {
        position: relative;
        display: inline-block;
        margin: 16px 0 0 0;
        font-weight: 600;
        color: #737373;
        text-align: center;
        font-size: 12px;
        font-size: 0.75rem;
        display: -webkit-inline-flex;
        display: inline-flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-flex-direction: column;
        flex-direction: column; }
        .order-list .member-content .order .step-bar .step li:before {
          display: none;
          position: absolute;
          top: -37px;
          left: calc(50% - 8px);
          width: 16px;
          height: 16px;
          content: '';
          background-color: #ee7c68;
          -moz-border-radius: 50%;
          -webkit-border-radius: 50%;
          border-radius: 50%; }
        .order-list .member-content .order .step-bar .step li:after {
          position: absolute;
          top: -34px;
          left: calc(50% - 5px);
          width: 10px;
          height: 10px;
          content: '';
          background-color: #737373;
          -moz-border-radius: 50%;
          -webkit-border-radius: 50%;
          border-radius: 50%; }
        .order-list .member-content .order .step-bar .step li.start:before {
          left: -3px; }
        .order-list .member-content .order .step-bar .step li.start:after {
          left: 0; }
        .order-list .member-content .order .step-bar .step li.end:before {
          left: auto;
          right: -3px; }
        .order-list .member-content .order .step-bar .step li.end:after {
          left: auto;
          right: 0; }
        .order-list .member-content .order .step-bar .step li.now {
          color: #ee7c68; }
          .order-list .member-content .order .step-bar .step li.now:before {
            display: block; }
          .order-list .member-content .order .step-bar .step li.now:after {
            background-color: #fff; }
        .order-list .member-content .order .step-bar .step li.finished {
          color: #ee7c68; }
          .order-list .member-content .order .step-bar .step li.finished:after {
            background-color: #ee7c68; }
        .order-list .member-content .order .step-bar .step li .date {
          display: block;
          text-align: center;
          color: #737373 !important;
          white-space: pre-wrap; }
        .order-list .member-content .order .step-bar .step li .button.action {
          height: 27px;
          line-height: 27px;
          margin: 0;
          padding: 0 8px;
          border: none;
          color: #FFFFFF;
          background-color: #388d81;
          font-size: 12px;
          font-size: 0.75rem; }
          .order-list .member-content .order .step-bar .step li .button.action:hover {
            background-color: #388d81; }
          .order-list .member-content .order .step-bar .step li .button.action.error {
            background-color: #FF2C22; }
            .order-list .member-content .order .step-bar .step li .button.action.error:hover {
              background-color: #FF2C22; }

.order-history .member-content .order {
  position: relative;
  padding: 24px 20px;
  border-bottom: 1px solid #ddd;
  background-color: #fff; }
  .order-history .member-content .order .order-wrapper {
    position: relative;
    display: inline-block;
    width: calc(100% - 200px); }
  .order-history .member-content .order .order-table {
    margin: 0;
    border: none; }
    .order-history .member-content .order .order-table .order-row {
      margin-bottom: 9px;
      border: none; }
      .order-history .member-content .order .order-table .order-row.info {
        opacity: .8; }
    .order-history .member-content .order .order-table .order-info {
      padding: 0;
      border: none;
      color: #484848;
      font-size: 13px;
      font-size: 0.8125rem; }
      .order-history .member-content .order .order-table .order-info.orderid {
        width: 120px; }
      .order-history .member-content .order .order-table .order-info.semi-blod {
        font-weight: 600; }
      .order-history .member-content .order .order-table .order-info.center {
        text-align: center; }
      .order-history .member-content .order .order-table .order-info.hidden {
        visibility: hidden; }
  .order-history .member-content .order .button.submit {
    position: absolute;
    top: 50%;
    right: 20px;
    height: 40px;
    line-height: 40px;
    margin: 0;
    padding: 0 20px;
    border: none;
    color: #fff;
    background-color: #388d81;
    font-size: 14px;
    font-size: 0.875rem;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
    .order-history .member-content .order .button.submit:hover {
      background-color: #388d81; }

.profile {
  position: relative;
  overflow: hidden; }
  .profile .member-content {
    padding: 20px 30px; }
    .profile .member-content .input-wrapper {
      display: block;
      width: 50%;
      padding-right: 40px; }
      .profile .member-content .input-wrapper.onerow {
        display: block;
        width: 100%;
        float: none; }
      .profile .member-content .input-wrapper.password {
        display: block;
        float: none; }
    .profile .member-content .input-form {
      margin-bottom: 20px; }
      .profile .member-content .input-form.align-top {
        -webkit-align-items: flex-start;
        align-items: flex-start; }
      .profile .member-content .input-form label {
        width: 55px;
        min-width: 55px;
        color: #000;
        text-align: right;
        font-size: 13px;
        font-size: 0.8125rem; }
      .profile .member-content .input-form input {
        width: calc(100% - 55px);
        height: 40px;
        line-height: 38px;
        border: 1px solid #ccc;
        color: #333333;
        font-size: 13px;
        font-size: 0.8125rem;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px; }
      .profile .member-content .input-form textarea {
        width: calc(100% - 55px);
        border: 1px solid #ccc;
        color: #333333;
        font-size: 13px;
        font-size: 0.8125rem;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px; }
      .profile .member-content .input-form .form-value {
        display: inline-block;
        height: 40px;
        line-height: 40px;
        margin: 0;
        padding: 0;
        color: #333333;
        font-size: 13px;
        font-size: 0.8125rem; }
        .profile .member-content .input-form .form-value .edit-hint {
          color: #FF2C22;
          font-size: 12px;
          font-size: 0.75rem; }
      .profile .member-content .input-form .image {
        width: 60px;
        height: 60px;
        line-height: 60px;
        margin: 0 16px 0 0;
        background-size: cover;
        background-color: #eee;
        background-repeat: no-repeat;
        background-position: center;
        text-align: center;
        color: #fff;
        font-size: 18px;
        font-size: 1.125rem;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        border-radius: 50%; }
      .profile .member-content .input-form .spin-container {
        margin-left: 10px; }
        .profile .member-content .input-form .spin-container .spin {
          border-bottom: 2px solid #000;
          border-right: 2px solid #000; }
      .profile .member-content .input-form .button {
        margin: 0;
        color: #2A2A2A;
        white-space: nowrap;
        cursor: auto;
        font-size: 14px;
        font-size: 0.875rem;
        display: -webkit-inline-flex;
        display: inline-flex;
        -webkit-align-items: center;
        align-items: center; }
        .profile .member-content .input-form .button.upload {
          width: auto;
          height: 36px;
          line-height: 34px;
          margin: 0;
          padding: 0 32px;
          border: none;
          border: 1px solid #ccc;
          color: #484848;
          font-weight: 600;
          background-color: #fff;
          cursor: pointer;
          font-size: 13px;
          font-size: 0.8125rem; }
          .profile .member-content .input-form .button.upload:hover {
            background-color: #fff; }
    .profile .member-content .input-autocomplete {
      display: block;
      position: absolute;
      top: 40px;
      left: 75px;
      width: calc(100% - 75px);
      z-index: 10000;
      background-color: #fff;
      -moz-border-radius: 3px;
      -webkit-border-radius: 3px;
      border-radius: 3px;
      -moz-box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.4);
      -webkit-box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.4);
      box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.4); }
      .profile .member-content .input-autocomplete .city {
        display: inline-block;
        width: 23%;
        padding: 10px;
        max-height: 50px;
        text-align: center;
        cursor: pointer; }
      .profile .member-content .input-autocomplete .dist {
        display: inline-block;
        width: 70px;
        padding: 10px;
        max-height: 50px;
        text-align: center;
        cursor: pointer; }
      .profile .member-content .input-autocomplete.districtMode {
        width: 300px; }
    .profile .member-content .form-title {
      margin: 10px 0;
      font-weight: 600;
      color: #2A2A2A;
      font-size: 18px;
      clear: left;
      float: left; }
    .profile .member-content .form-description {
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 1px solid #ddd;
      color: #484848;
      clear: left;
      font-size: 14px;
      font-size: 0.875rem; }
    .profile .member-content .form-action {
      position: relative;
      display: block;
      margin-top: 30px;
      padding-top: 30px;
      border-top: 1px solid #ddd;
      clear: both;
      text-align: right; }
      .profile .member-content .form-action .button.submit {
        width: 200px;
        height: 44px;
        line-height: 44px;
        margin: 0;
        border: 0;
        background-color: #ee7c68;
        font-weight: 600;
        color: #fff;
        font-size: 14px;
        font-size: 0.875rem;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px; }
      .profile .member-content .form-action .form-hint {
        position: absolute;
        display: inline-block;
        top: 50%;
        left: 0;
        color: #FF2C22;
        -moz-transform: translateY(15px) translateY(-50%);
        -ms-transform: translateY(15px) translateY(-50%);
        -webkit-transform: translateY(15px) translateY(-50%);
        transform: translateY(15px) translateY(-50%); }
      .profile .member-content .form-action .result-error {
        display: inline-block;
        margin-right: 20px;
        color: #FF2C22; }
      .profile .member-content .form-action .result-success {
        display: inline-block;
        margin-right: 20px;
        color: #ee7c68; }

.favorite-address .member-content .log-table .action {
  margin-left: 10px;
  height: 100%;
  color: #737373;
  cursor: pointer;
  font-size: 18px;
  font-size: 1.125rem;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center; }
  .favorite-address .member-content .log-table .action:hover {
    color: #2A2A2A; }

#system-message {
  overflow: hidden; }
  #system-message .member-content .message {
    position: relative;
    padding: 30px;
    border-bottom: 1px solid #ddd;
    cursor: pointer; }
    #system-message .member-content .message.full {
      cursor: auto; }
      #system-message .member-content .message.full .description {
        height: auto;
        margin-bottom: 30px; }
      #system-message .member-content .message.full .hide-btn {
        display: -webkit-flex;
        display: flex; }
    #system-message .member-content .message .title {
      max-width: calc(100% - 120px);
      line-height: 24px;
      margin: 0 0 10px 0;
      color: #000;
      font-size: 18px;
      font-size: 1.125rem; }
    #system-message .member-content .message .description {
      max-width: calc(100% - 120px);
      height: 20px;
      line-height: 20px;
      margin: 0;
      color: #484848;
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: 14px;
      font-size: 0.875rem;
      -moz-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      -webkit-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out; }
      #system-message .member-content .message .description p {
        margin: 0; }
      #system-message .member-content .message .description ul li {
        list-style-type: disc;
        list-style-position: outside;
        margin-left: 16px; }
      #system-message .member-content .message .description ol li {
        list-style-type: decimal;
        list-style-position: outside;
        margin-left: 16px; }
    #system-message .member-content .message .time {
      position: absolute;
      top: 30px;
      right: 30px;
      line-height: 19px;
      color: #484848;
      font-size: 14px;
      font-size: 0.875rem; }
    #system-message .member-content .message .hide-btn {
      display: none;
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 40px;
      line-height: 40px;
      cursor: pointer;
      text-align: center;
      color: #484848;
      font-size: 12px;
      font-size: 0.75rem;
      -webkit-align-items: center;
      align-items: center;
      -webkit-justify-content: center;
      justify-content: center; }
      #system-message .member-content .message .hide-btn i {
        margin-left: 5px;
        font-size: 18px;
        font-size: 1.125rem; }

#about {
  position: relative;
  width: calc(100% - 20px);
  max-width: 1100px;
  height: 100%;
  padding: 30px 0;
  margin: 0 auto; }
  #about .info {
    position: relative;
    min-height: 230px;
    overflow: auto; }
    #about .info .description {
      position: absolute;
      top: 50%;
      right: 0;
      width: 720px;
      line-height: 24px;
      padding: 0 0 0 50px;
      border-left: 4px solid #ee7c68;
      color: #2A2A2A;
      font-size: 14px;
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); }
  #about .address {
    display: block;
    max-width: 100%;
    margin: 30px auto 0 auto; }

#faq {
  position: relative;
  width: calc(100% - 20px);
  max-width: 1100px;
  margin: 0 auto 30px auto;
  padding: 30px 0 0 0; }
  #faq:after {
    clear: left;
    content: '';
    display: block;
    height: 0;
    overflow: hidden; }
  #faq .bread-crumbs {
    margin-bottom: 20px; }
  #faq .sidebar {
    display: block;
    position: relative;
    width: 280px;
    float: left; }
  #faq .content {
    display: inline-block;
    width: calc(100% - 280px);
    padding-left: 20px; }

#faq-list {
  position: relative;
  padding: 40px;
  border: 1px solid #DADADA;
  background-color: #fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px; }
  #faq-list .title {
    position: relative;
    height: 74px;
    line-height: 74px;
    margin-bottom: 30px;
    padding: 0 22px;
    border: 1px solid #DADADA;
    border-left: 2px solid #ee7c68;
    color: #000;
    font-size: 30px;
    font-weight: bold; }
  #faq-list .open-all {
    position: absolute;
    top: 50%;
    right: 22px;
    line-height: 20px;
    color: #ee7c68;
    font-size: 14px;
    cursor: pointer;
    font-weight: normal;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
    #faq-list .open-all:hover {
      text-decoration: underline; }
  #faq-list .faq-list li .question {
    position: relative;
    height: 46px;
    line-height: 46px;
    margin-bottom: 5px;
    padding: 0 12px;
    border: 1px solid #CDCDCD;
    color: #2A2A2A;
    cursor: pointer;
    background-color: #EEEEEE;
    font-size: 14px;
    font-size: 0.875rem; }
    #faq-list .faq-list li .question .open-icon {
      position: absolute;
      top: 50%;
      right: 16px;
      width: 16px;
      height: 16px;
      color: #ee7c68;
      font-size: 22px;
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); }
  #faq-list .faq-list li .answer-wrapper {
    position: relative;
    overflow: hidden; }
    #faq-list .faq-list li .answer-wrapper .answer {
      height: 0;
      line-height: 24px;
      margin: 0;
      padding: 0;
      overflow: hidden;
      zoom: 90%;
      -moz-transition: margin 0.3s ease-out;
      -o-transition: margin 0.3s ease-out;
      -webkit-transition: margin 0.3s ease-out;
      transition: margin 0.3s ease-out; }
      #faq-list .faq-list li .answer-wrapper .answer.show {
        height: auto;
        padding: 12px 8px 40px 8px; }

#search-result {
  position: relative;
  width: calc(100% - 20px);
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 0; }
  #search-result .bread-crumbs {
    margin-bottom: 30px; }
  #search-result .content .product-list-wrapper {
    position: relative; }
  #search-result .content .faq-list {
    margin-top: 10px;
    background: #fff; }
    #search-result .content .faq-list .faq-item {
      padding: 30px;
      -moz-box-shadow: 0px 1px 2px 0px #DADADA;
      -webkit-box-shadow: 0px 1px 2px 0px #DADADA;
      box-shadow: 0px 1px 2px 0px #DADADA; }
      #search-result .content .faq-list .faq-item .item-wrapper .title {
        width: calc(100% - 100px);
        line-height: 1em;
        color: #333333;
        cursor: pointer;
        font-size: 14px;
        font-size: 0.875rem; }
      #search-result .content .faq-list .faq-item .item-wrapper .link {
        width: 100px;
        line-height: 1em;
        color: #0C82CE;
        text-align: right;
        float: right;
        font-size: 14px;
        font-size: 0.875rem; }
      #search-result .content .faq-list .faq-item .item-wrapper .description {
        max-height: 3.2em;
        line-height: 1.6em;
        margin-top: 10px;
        margin-bottom: 0;
        color: #9B9B9B;
        overflow: hidden;
        font-size: 14px;
        font-size: 0.875rem; }
  #search-result .status-message {
    margin: 100px auto 0 auto; }

#ienotsupport {
  position: fixed;
  height: 100%;
  width: 100%; }
  #ienotsupport .message {
    height: auto;
    margin: 120px auto 0 auto;
    text-align: center;
    color: #4A4A4A; }
    #ienotsupport .message .message-icon {
      margin: 0 auto 20px auto; }
    #ienotsupport .message .message-description {
      width: 450px;
      margin: 0 auto 20px auto;
      line-height: 2em;
      font-size: 16px;
      font-size: 1rem; }
    #ienotsupport .message .explorer {
      display: inline-block;
      width: 24px;
      height: 24px;
      margin-right: 10px;
      padding: 0;
      border: none;
      text-align: center;
      cursor: pointer;
      vertical-align: bottom; }
      #ienotsupport .message .explorer img {
        width: 100%;
        height: 100%; }

#register-success {
  overflow: hidden; }
  #register-success .status-message {
    margin: 80px auto;
    padding: 56px 0;
    background-color: #fff;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px; }
    #register-success .status-message .link {
      color: #0071C5;
      text-decoration: underline;
      cursor: pointer; }

#blog-list .nav-bar {
  margin: 0 0 30px 0; }
#blog-list .grid-wrapper {
  margin: -15px;
  margin-bottom: 15px; }

#blog-post {
  margin: 10px auto 30px auto; }
  #blog-post .bread-crumbs {
    margin-bottom: 10px; }

#resource-list .nav-bar {
  margin: 0 0 30px 0; }
#resource-list .grid-wrapper {
  margin: -15px;
  margin-bottom: 15px; }

#designer-list .designer-grid-wrapper {
  position: relative;
  width: calc(100% + 30px);
  margin: -15px;
  margin-bottom: 15px;
  overflow: hidden; }
  #designer-list .designer-grid-wrapper .grid-item {
    position: relative;
    width: calc(33.33% - 30px);
    min-height: 200px;
    margin: 15px;
    float: left; }
    #designer-list .designer-grid-wrapper .grid-item .item-wrapper {
      display: block;
      position: relative;
      padding: 24px;
      border: 1px solid #DADADA;
      background-color: #fff;
      overflow: hidden;
      -moz-border-radius: 3px;
      -webkit-border-radius: 3px;
      border-radius: 3px; }
      #designer-list .designer-grid-wrapper .grid-item .item-wrapper .designer {
        margin: 0 0 24px 0;
        overflow: hidden;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center; }
        #designer-list .designer-grid-wrapper .grid-item .item-wrapper .designer .avatar {
          display: inline-block;
          width: 60px;
          min-width: 60px;
          height: 60px;
          margin: 0 10px 0 0;
          background-color: #eee;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center;
          -moz-border-radius: 50%;
          -webkit-border-radius: 50%;
          border-radius: 50%; }
        #designer-list .designer-grid-wrapper .grid-item .item-wrapper .designer .text-wrapper {
          display: inline-block;
          margin: 0 10px 0 0;
          overflow: hidden;
          -webkit-flex: 1;
          flex: 1; }
          #designer-list .designer-grid-wrapper .grid-item .item-wrapper .designer .text-wrapper .title {
            margin: 0 0 4px 0;
            color: #2A2A2A;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            font-size: 16px;
            font-size: 1rem; }
          #designer-list .designer-grid-wrapper .grid-item .item-wrapper .designer .text-wrapper .description {
            color: #737373;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            font-size: 13px;
            font-size: 0.8125rem; }
            #designer-list .designer-grid-wrapper .grid-item .item-wrapper .designer .text-wrapper .description .category-text {
              color: #9E9E9E;
              font-size: 13px;
              font-size: 0.8125rem; }
              #designer-list .designer-grid-wrapper .grid-item .item-wrapper .designer .text-wrapper .description .category-text:last-child:after {
                display: none; }
              #designer-list .designer-grid-wrapper .grid-item .item-wrapper .designer .text-wrapper .description .category-text:after {
                display: inline-block;
                content: '、'; }
        #designer-list .designer-grid-wrapper .grid-item .item-wrapper .designer .button.more {
          display: inline-block;
          height: 44px;
          line-height: 44px;
          margin: 0 0 0 auto;
          padding: 0 24px;
          background-color: #EEEEEE;
          color: #484848;
          letter-spacing: 0px;
          cursor: pointer;
          font-size: 14px;
          font-size: 0.875rem;
          -moz-border-radius: 3px;
          -webkit-border-radius: 3px;
          border-radius: 3px; }
          #designer-list .designer-grid-wrapper .grid-item .item-wrapper .designer .button.more:hover {
            background-color: #EEEEEE;
            color: #484848; }
      #designer-list .designer-grid-wrapper .grid-item .item-wrapper .project {
        display: -webkit-flex;
        display: flex; }
        #designer-list .designer-grid-wrapper .grid-item .item-wrapper .project .image {
          display: inline-block;
          width: calc(33.3% - 7px);
          margin-right: 7px;
          padding-bottom: 20%;
          background-color: #eee;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center;
          cursor: pointer;
          -moz-border-radius: 3px;
          -webkit-border-radius: 3px;
          border-radius: 3px; }

#designer {
  margin: 10px auto 30px auto; }
  #designer .bread-crumbs {
    margin-bottom: 10px; }
  #designer .content-wrapper .main-wrapper {
    margin: 0 0 0 16px; }
    #designer .content-wrapper .main-wrapper .grid-wrapper {
      margin: -15px;
      margin-bottom: 15px; }

#project-list .grid-wrapper {
  margin: -5px -5px 5px -5px; }

#project-post {
  margin: 10px auto 30px auto; }
  #project-post .bread-crumbs {
    margin-bottom: 10px; }

#designer-project-post .nav-bar {
  margin: 0 0 30px 0; }

#points .log-table .log-table-tr .log-table-td .button.store-action {
  margin: 0 0 0 10px; }
#points .store-payment {
  position: relative;
  padding: 30px; }
  #points .store-payment .store-flex-wrapper {
    display: -webkit-flex;
    display: flex; }
    #points .store-payment .store-flex-wrapper .store-flex-content {
      position: relative;
      display: inline-block;
      -webkit-flex: 1;
      flex: 1; }
  #points .store-payment .store-title {
    margin: 25px 0;
    color: #2A2A2A;
    font-weight: 600;
    font-size: 16px;
    font-size: 1rem; }
    #points .store-payment .store-title:first-child {
      margin-top: 0; }
    #points .store-payment .store-title .history {
      margin-left: 10px;
      color: #0071C5;
      text-decoration: underline;
      font-weight: 400;
      cursor: pointer;
      font-size: 14px;
      font-size: 0.875rem; }
    #points .store-payment .store-title .action-print {
      margin-left: 10px;
      color: #0071C5;
      text-decoration: underline;
      cursor: pointer;
      opacity: 0.8;
      font-size: 14px;
      font-size: 0.875rem; }
      #points .store-payment .store-title .action-print:hover {
        opacity: 1; }
      #points .store-payment .store-title .action-print i {
        margin-right: 4px; }
  #points .store-payment .store-description {
    margin: 0 0 10px 0;
    color: #0071C5;
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem; }
  #points .store-payment .store-price {
    margin: 0 0 20px 0;
    color: #2A2A2A;
    font-size: 15px;
    font-size: 0.9375rem; }
    #points .store-payment .store-price input {
      display: inline-block;
      width: 120px;
      height: 36px;
      margin: 0;
      padding: 0 12px;
      border: 1px solid #ccc;
      color: #333333;
      font-size: 14px;
      -moz-border-radius: 3px;
      -webkit-border-radius: 3px;
      border-radius: 3px; }
      #points .store-payment .store-price input:focus {
        border: 1px solid #0071C5; }
  #points .store-payment .invoice-wrapper {
    position: relative;
    margin-bottom: 40px; }
    #points .store-payment .invoice-wrapper .select-wrapper {
      margin-bottom: 20px; }
      #points .store-payment .invoice-wrapper .select-wrapper .checkbox-form {
        margin-right: 20px;
        cursor: pointer; }
        #points .store-payment .invoice-wrapper .select-wrapper .checkbox-form.teach-tip {
          color: #2A2A2A; }
      #points .store-payment .invoice-wrapper .select-wrapper.non-margin {
        margin-bottom: 0; }
      #points .store-payment .invoice-wrapper .select-wrapper.save-address {
        display: inline-block; }
    #points .store-payment .invoice-wrapper .input-form {
      width: 50%;
      margin-bottom: 20px; }
    #points .store-payment .invoice-wrapper .input-wrapper {
      width: 580px;
      margin-bottom: 24px;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      #points .store-payment .invoice-wrapper .input-wrapper .input-form {
        margin-left: 10px;
        margin-bottom: 0; }
        #points .store-payment .invoice-wrapper .input-wrapper .input-form.xsmall {
          width: 60px; }
        #points .store-payment .invoice-wrapper .input-wrapper .input-form.small {
          width: 150px; }
        #points .store-payment .invoice-wrapper .input-wrapper .input-form.medium {
          width: 170px; }
        #points .store-payment .invoice-wrapper .input-wrapper .input-form.non-margin {
          margin-left: 0; }
    #points .store-payment .invoice-wrapper .address-form {
      position: relative;
      width: 100%; }
      #points .store-payment .invoice-wrapper .address-form label {
        display: inline-block;
        margin-right: 10px;
        margin-bottom: 10px;
        color: #2A2A2A;
        cursor: auto;
        font-size: 14px;
        font-size: 0.875rem; }
      #points .store-payment .invoice-wrapper .address-form span.error, #points .store-payment .invoice-wrapper .address-form span.red-text {
        color: #FF2C22;
        font-size: 12px;
        font-size: 0.75rem; }
  #points .store-payment .invoice-select-form {
    margin: 0 0 20px 0; }
  #points .store-payment .class-select-list {
    position: relative;
    margin: -8px -8px 12px -8px;
    display: -webkit-flex;
    display: flex; }
    #points .store-payment .class-select-list .class-select-item {
      position: relative;
      width: 100px;
      height: 60px;
      margin: 8px;
      border: 1px solid #CCCCCC;
      overflow: hidden;
      cursor: pointer;
      -moz-border-radius: 3px;
      -webkit-border-radius: 3px;
      border-radius: 3px;
      display: -webkit-inline-flex;
      display: inline-flex;
      -webkit-align-items: center;
      align-items: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-flex-direction: column;
      flex-direction: column; }
      #points .store-payment .class-select-list .class-select-item:hover {
        border: 1px solid #0071C5; }
        #points .store-payment .class-select-list .class-select-item:hover .icon-cover, #points .store-payment .class-select-list .class-select-item:hover .title {
          color: #0071C5; }
      #points .store-payment .class-select-list .class-select-item.active {
        border: 1px solid #0071C5;
        color: #0071C5; }
        #points .store-payment .class-select-list .class-select-item.active .icon-cover, #points .store-payment .class-select-list .class-select-item.active .title {
          color: #0071C5; }
        #points .store-payment .class-select-list .class-select-item.active .check-wrapper {
          display: block; }
      #points .store-payment .class-select-list .class-select-item .icon-cover {
        min-width: 26px;
        min-height: 26px;
        margin: 6px 0 16px 0;
        color: #737373;
        font-size: 28px;
        font-size: 1.75rem;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center; }
      #points .store-payment .class-select-list .class-select-item .title {
        width: 100%;
        line-height: 14px;
        padding: 0 6px;
        text-align: center;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        color: #484848;
        font-size: 14px;
        font-size: 0.875rem; }
      #points .store-payment .class-select-list .class-select-item .check-wrapper {
        display: none;
        position: absolute;
        right: 0;
        bottom: 0;
        width: 36px;
        height: 36px;
        text-align: right; }
        #points .store-payment .class-select-list .class-select-item .check-wrapper:before {
          content: '';
          display: block;
          position: absolute;
          right: 0;
          bottom: 0;
          width: 36px;
          height: 36px;
          background-color: #0071C5;
          -moz-transform: translateX(50%) translateY(50%) rotate(45deg);
          -ms-transform: translateX(50%) translateY(50%) rotate(45deg);
          -webkit-transform: translateX(50%) translateY(50%) rotate(45deg);
          transform: translateX(50%) translateY(50%) rotate(45deg); }
        #points .store-payment .class-select-list .class-select-item .check-wrapper .check-icon {
          position: absolute;
          bottom: 1px;
          right: 1px;
          color: #fff;
          font-size: 14px;
          font-size: 0.875rem;
          display: -webkit-flex;
          display: flex; }
  #points .store-payment .store-action {
    position: relative;
    display: block;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    clear: both;
    text-align: right; }
    #points .store-payment .store-action .button.submit {
      width: 200px;
      height: 44px;
      line-height: 44px;
      margin: 0;
      border: 0;
      background-color: rgba(0, 113, 197, 0.9);
      font-weight: 600;
      color: #fff;
      font-size: 14px;
      font-size: 0.875rem;
      -moz-border-radius: 3px;
      -webkit-border-radius: 3px;
      border-radius: 3px; }
    #points .store-payment .store-action .result-error {
      display: inline-block;
      margin-right: 20px;
      color: #FF2C22; }
    #points .store-payment .store-action .result-success {
      display: inline-block;
      margin-right: 20px;
      color: #ee7c68; }
  #points .store-payment .error-msg {
    margin: 10px 0 0 0;
    color: #FF2C22;
    font-size: 14px;
    font-size: 0.875rem; }
  #points .store-payment .monthly-payment {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 0 20px 0;
    padding: 30px;
    border: 1px solid #ccc;
    background-color: #eee;
    display: -webkit-flex;
    display: flex; }
    #points .store-payment .monthly-payment .monthly-payment-content {
      display: inline-block;
      min-width: 200px;
      line-height: normal; }
      #points .store-payment .monthly-payment .monthly-payment-content.disable {
        opacity: 0.5; }
      #points .store-payment .monthly-payment .monthly-payment-content .info-content-title {
        margin: 0 0 10px 0;
        font-weight: 600;
        font-size: 20px;
        color: #2A2A2A; }
      #points .store-payment .monthly-payment .monthly-payment-content .info-content-price {
        margin: 0 0 4px 0;
        font-weight: 600;
        font-size: 30px;
        color: #2A2A2A; }
        #points .store-payment .monthly-payment .monthly-payment-content .info-content-price.price-green {
          color: #248125; }
        #points .store-payment .monthly-payment .monthly-payment-content .info-content-price.price-red {
          color: #FF2C22; }
        #points .store-payment .monthly-payment .monthly-payment-content .info-content-price.price-blue {
          color: #0071C5; }
        #points .store-payment .monthly-payment .monthly-payment-content .info-content-price .price-hint {
          font-size: 16px; }
      #points .store-payment .monthly-payment .monthly-payment-content .info-content-hint {
        font-size: 14px;
        color: #2A2A2A; }
    #points .store-payment .monthly-payment .monthly-payment-divide {
      width: 1px;
      margin: 0 20px;
      background-color: #ccc; }
    #points .store-payment .monthly-payment .monthly-payment-button {
      position: relative;
      -webkit-flex: 1;
      flex: 1;
      display: -webkit-inline-flex;
      display: inline-flex; }
      #points .store-payment .monthly-payment .monthly-payment-button .button.submit {
        width: 200px;
        height: 44px;
        line-height: 44px;
        margin: auto 0 auto 20px;
        border: 0;
        background-color: rgba(0, 113, 197, 0.9);
        font-weight: 600;
        color: #fff;
        font-size: 14px;
        font-size: 0.875rem;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px; }
      #points .store-payment .monthly-payment .monthly-payment-button .error-msg {
        position: absolute;
        left: 20px;
        bottom: 0;
        font-size: 14px;
        font-size: 0.875rem; }
#points #points-payment .payment-form {
  border: none; }
#points #points-payment .payment-message {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  margin: 40px 0;
  padding: 0;
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none; }
  #points #points-payment .payment-message .status-icon .loading-state {
    position: relative;
    top: auto;
    left: auto;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; }

#order-template .add-template-dropdown {
  width: 200px;
  margin-top: 10px;
  border: 1px solid #DDDDDD;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform-origin: top right;
  -moz-transform-origin: top right;
  -ms-transform-origin: top right;
  transform-origin: top right; }
  #order-template .add-template-dropdown:before {
    content: '';
    position: absolute;
    top: -11px;
    right: 16px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 9px 9px 9px;
    border-color: transparent transparent rgba(0, 0, 0, 0.2) transparent; }
  #order-template .add-template-dropdown:after {
    content: '';
    position: absolute;
    top: -9px;
    right: 16px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 9px 9px 9px;
    border-color: transparent transparent #ffffff transparent; }
  #order-template .add-template-dropdown ul {
    padding: 0; }
    #order-template .add-template-dropdown ul li {
      height: 52px;
      line-height: 52px;
      padding: 0 16px;
      font-size: 14px;
      font-size: 0.875rem;
      -moz-box-shadow: inset 0px 1px 0px 0px #EEEEEE;
      -webkit-box-shadow: inset 0px 1px 0px 0px #EEEEEE;
      box-shadow: inset 0px 1px 0px 0px #EEEEEE; }
      #order-template .add-template-dropdown ul li:first-child {
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none; }
      #order-template .add-template-dropdown ul li:hover a {
        color: #0071C5; }
      #order-template .add-template-dropdown ul li:hover .icon {
        color: #0071C5; }
      #order-template .add-template-dropdown ul li a {
        color: #2A2A2A;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center; }
      #order-template .add-template-dropdown ul li .icon {
        margin-right: 8px;
        color: #737373;
        font-size: 16px;
        font-size: 1rem; }
      #order-template .add-template-dropdown ul li .balance {
        color: #737373;
        float: right;
        font-size: 12px;
        font-size: 0.75rem; }

#enterprise-signup {
  position: relative; }
  #enterprise-signup .banner {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center; }
    #enterprise-signup .banner:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: -webkit-linear-gradient(right, transparent 0%, rgba(0, 0, 0, 0.3) 49%, rgba(0, 0, 0, 0.6) 100%);
      background-image: -o-linear-gradient(right, transparent 0%, rgba(0, 0, 0, 0.3) 49%, rgba(0, 0, 0, 0.6) 100%);
      background-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 49%, rgba(0, 0, 0, 0.6) 100%); }
    #enterprise-signup .banner.small .banner-wrapper {
      height: 300px; }
    #enterprise-signup .banner .banner-wrapper {
      position: relative;
      width: calc(100% - 20px);
      max-width: 1060px;
      height: 480px;
      margin: 0 auto;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center; }
      #enterprise-signup .banner .banner-wrapper .text-wrapper {
        max-width: 520px; }
        #enterprise-signup .banner .banner-wrapper .text-wrapper .title {
          line-height: normal;
          margin: 0 0 12px 0;
          font-weight: 600;
          color: #FFFFFF;
          letter-spacing: 0;
          font-size: 36px;
          font-size: 2.25rem; }
        #enterprise-signup .banner .banner-wrapper .text-wrapper .description {
          line-height: 28px;
          margin: 0 0 20px 0;
          opacity: 0.9;
          color: #FFFFFF;
          font-size: 16px;
          font-size: 1rem; }
        #enterprise-signup .banner .banner-wrapper .text-wrapper .button.join {
          height: 52px;
          line-height: 52px;
          margin: 0;
          padding: 0 40px;
          border: none;
          font-weight: 600;
          color: #FFFFFF;
          letter-spacing: 0;
          background-color: #1D87CB;
          cursor: pointer;
          font-size: 18px;
          font-size: 1.125rem;
          -moz-border-radius: 3px;
          -webkit-border-radius: 3px;
          border-radius: 3px; }
          #enterprise-signup .banner .banner-wrapper .text-wrapper .button.join:hover {
            background-color: #2295df; }
  #enterprise-signup .activity-banner {
    position: relative;
    background-color: #2A2A2A; }
    #enterprise-signup .activity-banner .banner-wrapper {
      position: relative;
      width: calc(100% - 20px);
      max-width: 1060px;
      height: 120px;
      margin: 0 auto;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center; }
      #enterprise-signup .activity-banner .banner-wrapper .text-wrapper {
        display: inline-block;
        padding: 0 20px 0 0;
        -webkit-flex: 1;
        flex: 1; }
        #enterprise-signup .activity-banner .banner-wrapper .text-wrapper .title {
          margin: 0 0 6px 0;
          color: #FFFFFF;
          letter-spacing: 0;
          font-weight: 600;
          font-size: 20px;
          font-size: 1.25rem;
          display: -webkit-flex;
          display: flex; }
          #enterprise-signup .activity-banner .banner-wrapper .text-wrapper .title .tool-tip {
            display: inline-block;
            height: 22px;
            line-height: 22px;
            margin: 0 0 0 8px;
            padding: 0 12px;
            background-color: #FFC107;
            text-align: center;
            color: #2A2A2A;
            font-weight: 600;
            letter-spacing: 0;
            font-size: 13px;
            font-size: 0.8125rem;
            -moz-border-radius: 2px;
            -webkit-border-radius: 2px;
            border-radius: 2px; }
        #enterprise-signup .activity-banner .banner-wrapper .text-wrapper .description {
          color: #FFFFFF;
          font-size: 14px;
          font-size: 0.875rem; }
      #enterprise-signup .activity-banner .banner-wrapper .button.action {
        display: inline-block;
        min-width: 0;
        height: 45px;
        line-height: 45px;
        margin: 0 0 0 auto;
        padding: 0 40px;
        border: 1px solid #fff;
        font-weight: 600;
        color: #FFFFFF;
        letter-spacing: 0;
        background-color: #2A2A2A;
        font-size: 18px;
        font-size: 1.125rem; }
        #enterprise-signup .activity-banner .banner-wrapper .button.action:hover {
          background-color: #373737; }
  #enterprise-signup .content-block {
    position: relative;
    line-height: normal;
    padding: 80px 0;
    background-color: #fff; }
    #enterprise-signup .content-block.gray-content {
      background-color: #FAFAFA; }
    #enterprise-signup .content-block.blue-conetnt {
      background-color: #127CC0; }
    #enterprise-signup .content-block .content-wrapper {
      width: calc(100% - 20px);
      max-width: 650px;
      margin: 0 auto;
      text-align: center; }
      #enterprise-signup .content-block .content-wrapper .title {
        margin: 0 0 16px 0;
        font-weight: 600;
        color: #484848;
        letter-spacing: 0;
        font-size: 32px;
        font-size: 2rem;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center; }
        #enterprise-signup .content-block .content-wrapper .title .logo {
          margin: 0 12px 0 0; }
      #enterprise-signup .content-block .content-wrapper .description {
        color: #737373;
        line-height: 32px;
        font-size: 16px;
        font-size: 1rem; }
      #enterprise-signup .content-block .content-wrapper .invitation-wrapper {
        margin: 20px 0 0 0;
        text-align: left;
        overflow: auto; }
        #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper {
          position: relative;
          margin-bottom: 20px; }
          #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .form-title {
            margin-bottom: 16px;
            padding-bottom: 16px;
            border-bottom: 1px solid #ddd;
            color: #484848;
            font-weight: 600;
            font-size: 24px;
            font-size: 1.5rem; }
          #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-wrapper {
            display: inline-block;
            width: 100%; }
          #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .label {
            display: block;
            line-height: 20px;
            margin: 0 0 7px 0;
            font-weight: 600;
            color: #484848;
            font-size: 13px;
            font-size: 0.8125rem; }
            #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .label .tip {
              font-weight: 400;
              color: #737373; }
          #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form {
            margin: 0 0 12px 0; }
            #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form.password input {
              padding: 0 52px 0 12px; }
            #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form.error.password input {
              padding: 0px 70px 0 12px; }
            #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form.error.password .show-hide-btn {
              -moz-transform: translateX(-80%);
              -ms-transform: translateX(-80%);
              -webkit-transform: translateX(-80%);
              transform: translateX(-80%); }
            #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form.error input {
              border: 1px solid #FF2C22;
              padding: 0 30px 0 12px;
              color: #FF2C22; }
            #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form.error i {
              display: block; }
            #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form input {
              height: 50px;
              line-height: 48px; }
            #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-form .error-icon {
              display: none;
              position: absolute;
              top: 50%;
              right: 12px;
              color: #FF2C22;
              font-size: 18px;
              font-size: 1.125rem;
              -moz-transform: translateY(-50%);
              -ms-transform: translateY(-50%);
              -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
          #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-autocomplete {
            position: absolute;
            top: 50px;
            right: 0;
            width: 100%;
            z-index: 1000;
            background-color: #fff;
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
            border-radius: 3px;
            -moz-box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.4);
            -webkit-box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.4);
            box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.4); }
            #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-autocomplete .city {
              display: inline-block;
              width: 23%;
              padding: 10px;
              max-height: 50px;
              text-align: center;
              cursor: pointer; }
            #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-autocomplete .dist {
              display: inline-block;
              width: 70px;
              padding: 10px;
              max-height: 50px;
              text-align: center;
              cursor: pointer; }
            #enterprise-signup .content-block .content-wrapper .invitation-wrapper .form-wrapper .input-autocomplete.districtMode {
              width: 300px; }
        #enterprise-signup .content-block .content-wrapper .invitation-wrapper .button-group {
          padding: 20px 0 0 0;
          display: -webkit-flex;
          display: flex; }
          #enterprise-signup .content-block .content-wrapper .invitation-wrapper .button-group .button {
            height: 50px;
            line-height: 50px;
            margin: 0;
            padding: 0;
            border: none;
            color: #fff;
            font-size: 14px;
            font-size: 0.875rem; }
            #enterprise-signup .content-block .content-wrapper .invitation-wrapper .button-group .button.submit {
              margin: 0 20px 0 0;
              background-color: #0071C5;
              font-weight: 600;
              -webkit-flex: 1;
              flex: 1; }
              #enterprise-signup .content-block .content-wrapper .invitation-wrapper .button-group .button.submit:hover {
                background-color: #0080df; }
            #enterprise-signup .content-block .content-wrapper .invitation-wrapper .button-group .button.cancel {
              min-width: 100px;
              background-color: #919191; }
              #enterprise-signup .content-block .content-wrapper .invitation-wrapper .button-group .button.cancel:hover {
                background-color: #9e9e9e; }
            #enterprise-signup .content-block .content-wrapper .invitation-wrapper .button-group .button .button-icon {
              position: absolute;
              top: 0;
              left: 0;
              width: 50px;
              height: 50px;
              font-size: 24px;
              font-size: 1.5rem;
              display: -webkit-flex;
              display: flex;
              -webkit-align-items: center;
              align-items: center;
              -webkit-justify-content: center;
              justify-content: center; }
              #enterprise-signup .content-block .content-wrapper .invitation-wrapper .button-group .button .button-icon i {
                margin: auto; }
        #enterprise-signup .content-block .content-wrapper .invitation-wrapper .success-message {
          padding: 20px 0 0 0;
          color: #388d81;
          text-align: center; }
        #enterprise-signup .content-block .content-wrapper .invitation-wrapper .error-message {
          padding: 20px 0 0 0;
          color: #FF2C22;
          text-align: center; }
    #enterprise-signup .content-block .image-content-wrapper {
      width: calc(100% - 20px);
      max-width: 800px;
      margin: 0 auto;
      display: -webkit-flex;
      display: flex; }
      #enterprise-signup .content-block .image-content-wrapper .sub-content {
        display: inline-block;
        -webkit-flex: 1;
        flex: 1;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        justify-content: center; }
        #enterprise-signup .content-block .image-content-wrapper .sub-content .title {
          margin: 0 0 20px 0;
          color: #484848;
          letter-spacing: 0;
          font-weight: 600;
          font-size: 32px;
          font-size: 2rem; }
        #enterprise-signup .content-block .image-content-wrapper .sub-content .description {
          line-height: 36px;
          color: #484848;
          font-size: 20px;
          font-size: 1.25rem; }
      #enterprise-signup .content-block .image-content-wrapper .divide {
        display: inline-block;
        width: 75px;
        min-width: 75px; }
    #enterprise-signup .content-block .join-content-wrapper {
      width: calc(100% - 20px);
      max-width: 650px;
      margin: 0 auto;
      text-align: center; }
      #enterprise-signup .content-block .join-content-wrapper .title {
        margin: 0 0 16px 0;
        color: #fff;
        font-weight: 600;
        font-size: 32px;
        font-size: 2rem; }
      #enterprise-signup .content-block .join-content-wrapper .description {
        line-height: 32px;
        margin: 0 0 20px 0;
        color: #fff;
        font-size: 20px;
        font-size: 1.25rem; }
      #enterprise-signup .content-block .join-content-wrapper .button.join {
        height: 52px;
        line-height: 52px;
        margin: 0;
        padding: 0 40px;
        border: none;
        background-color: #FFFFFF;
        font-weight: 600;
        color: #127CC0;
        letter-spacing: 0;
        font-size: 18px;
        font-size: 1.125rem;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        -moz-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
        box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1); }
        #enterprise-signup .content-block .join-content-wrapper .button.join:hover {
          background-color: #f2f2f2; }
    #enterprise-signup .content-block .company-wrapper {
      width: calc(100% - 20px);
      max-width: 1100px;
      margin: 0 auto;
      text-align: center; }
      #enterprise-signup .content-block .company-wrapper .title {
        margin: 0 0 20px 0;
        font-weight: 600;
        color: #484848;
        letter-spacing: 0;
        font-size: 30px;
        font-size: 1.875rem;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center; }
      #enterprise-signup .content-block .company-wrapper .company-list {
        position: relative; }
        #enterprise-signup .content-block .company-wrapper .company-list .company {
          position: relative;
          display: inline-block;
          padding: 5px; }
          #enterprise-signup .content-block .company-wrapper .company-list .company:hover .company-name {
            visibility: visible;
            opacity: 1;
            -moz-transform: translateX(-50%) translateY(100%);
            -ms-transform: translateX(-50%) translateY(100%);
            -webkit-transform: translateX(-50%) translateY(100%);
            transform: translateX(-50%) translateY(100%); }
          #enterprise-signup .content-block .company-wrapper .company-list .company:hover img {
            -moz-box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.25);
            -webkit-box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.25);
            box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.25); }
          #enterprise-signup .content-block .company-wrapper .company-list .company img {
            max-height: 100px;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            -moz-transition: box-shadow 0.3s;
            -o-transition: box-shadow 0.3s;
            -webkit-transition: box-shadow 0.3s;
            transition: box-shadow 0.3s; }
          #enterprise-signup .content-block .company-wrapper .company-list .company .company-name {
            visibility: hidden;
            opacity: 0;
            position: absolute;
            left: 50%;
            bottom: 20px;
            width: 180px;
            padding: 10px;
            border: 1px solid #ddd;
            text-align: center;
            background-color: #fff;
            z-index: 2;
            -moz-transition: all 0.3s;
            -o-transition: all 0.3s;
            -webkit-transition: all 0.3s;
            transition: all 0.3s;
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
            border-radius: 3px;
            -moz-transform: translateX(-50%) translateY(100%) translateY(-10px);
            -ms-transform: translateX(-50%) translateY(100%) translateY(-10px);
            -webkit-transform: translateX(-50%) translateY(100%) translateY(-10px);
            transform: translateX(-50%) translateY(100%) translateY(-10px); }
            #enterprise-signup .content-block .company-wrapper .company-list .company .company-name:before {
              content: '';
              position: absolute;
              top: -7px;
              left: 50%;
              width: 12px;
              height: 12px;
              border: 1px solid #ccc;
              background-color: #fff;
              -moz-transform: translateX(-50%) rotate(45deg);
              -ms-transform: translateX(-50%) rotate(45deg);
              -webkit-transform: translateX(-50%) rotate(45deg);
              transform: translateX(-50%) rotate(45deg); }
            #enterprise-signup .content-block .company-wrapper .company-list .company .company-name:after {
              content: '';
              position: absolute;
              top: 0px;
              left: 50%;
              width: 18px;
              height: 9px;
              background-color: #fff;
              -moz-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
              -webkit-transform: translateX(-50%);
              transform: translateX(-50%); }

#signup {
  position: relative;
  background-color: #fff; }
  #signup .signup-content {
    position: relative;
    line-height: normal;
    padding: 80px 0;
    text-align: center; }
    #signup .signup-content .signup-title {
      margin: 0 0 16px 0;
      color: #484848;
      letter-spacing: 0;
      font-weight: 600;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center;
      -webkit-justify-content: center;
      justify-content: center;
      font-size: 32px;
      font-size: 2rem; }
      #signup .signup-content .signup-title .logo {
        margin: 0 12px 0 0; }
    #signup .signup-content .signup-description {
      margin: 0 0 40px 0;
      color: #737373;
      line-height: 32px;
      font-size: 16px;
      font-size: 1rem; }
    #signup .signup-content .signup-select {
      display: inline-block;
      width: 320px;
      margin: 0 20px;
      border: 1px solid #DDDDDD;
      background-color: #fff;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      border-radius: 5px; }
      #signup .signup-content .signup-select .select-header {
        height: 80px;
        border-bottom: 1px solid #DDDDDD;
        background-color: #FAFAFA;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-flex-direction: column;
        flex-direction: column; }
        #signup .signup-content .signup-select .select-header .title {
          color: #484848;
          letter-spacing: 0;
          font-weight: 600;
          font-size: 20px;
          font-size: 1.25rem; }
        #signup .signup-content .signup-select .select-header .description {
          line-height: 21px;
          margin: 8px 0 0 0;
          color: #737373;
          font-size: 16px;
          font-size: 1rem; }
      #signup .signup-content .signup-select .select-content {
        height: 420px;
        padding: 24px 30px;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column; }
        #signup .signup-content .signup-select .select-content .description {
          line-height: 24px;
          margin: 0 0 24px 0;
          color: #484848;
          font-size: 14px;
          font-size: 0.875rem; }
        #signup .signup-content .signup-select .select-content .info-item {
          height: 20px;
          margin: 0 0 15px 0;
          color: #484848;
          letter-spacing: 0;
          text-align: left;
          font-size: 14px;
          font-size: 0.875rem;
          display: -webkit-flex;
          display: flex;
          -webkit-align-items: center;
          align-items: center; }
          #signup .signup-content .signup-select .select-content .info-item .check-icon {
            display: inline-block;
            margin: 0 12px 0 0;
            color: #72C448;
            font-size: 18px;
            font-size: 1.125rem; }
        #signup .signup-content .signup-select .select-content .button.signup {
          display: block;
          width: 100%;
          height: 52px;
          line-height: 52px;
          margin: auto 0 0 0;
          padding: 0;
          border: none;
          color: #fff;
          background-color: #00B7EF;
          cursor: pointer;
          font-size: 16px;
          font-size: 1rem; }
          #signup .signup-content .signup-select .select-content .button.signup:hover {
            background-color: #0ac5ff; }
          #signup .signup-content .signup-select .select-content .button.signup.enterpise {
            background-color: #0071C5; }
            #signup .signup-content .signup-select .select-content .button.signup.enterpise:hover {
              background-color: #0080df; }

#member-signup {
  background-color: #fff; }
  #member-signup .member-signup-content {
    width: calc(100% - 20px);
    max-width: 650px;
    margin: 0 auto;
    padding: 80px 0; }
    #member-signup .member-signup-content .title {
      margin: 0 0 16px 0;
      font-weight: 600;
      color: #484848;
      letter-spacing: 0;
      text-align: center;
      font-size: 32px;
      font-size: 2rem;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center;
      -webkit-justify-content: center;
      justify-content: center; }
      #member-signup .member-signup-content .title .logo {
        margin: 0 12px 0 0; }
    #member-signup .member-signup-content .description {
      color: #737373;
      line-height: 32px;
      text-align: center;
      font-size: 16px;
      font-size: 1rem; }
    #member-signup .member-signup-content .divide {
      position: relative;
      width: 100%;
      height: 1px;
      margin: 36px auto;
      background-color: #C6BDBC;
      white-space: nowrap; }
      #member-signup .member-signup-content .divide .msg {
        position: absolute;
        top: 0;
        left: 50%;
        padding: 0 34px;
        background-color: #fff;
        color: #8A807F;
        letter-spacing: 0.29px;
        font-size: 14px;
        font-size: 0.875rem;
        -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%); }
    #member-signup .member-signup-content .button-group {
      padding: 20px 0 0 0;
      display: -webkit-flex;
      display: flex; }
      #member-signup .member-signup-content .button-group .button {
        position: relative;
        height: 50px;
        line-height: 50px;
        margin: 0;
        padding: 0;
        border: none;
        color: #fff;
        font-weight: 600;
        -webkit-flex: 1;
        flex: 1;
        font-size: 14px;
        font-size: 0.875rem; }
        #member-signup .member-signup-content .button-group .button.submit {
          background-color: #ee7c68; }
          #member-signup .member-signup-content .button-group .button.submit:hover {
            background-color: #f1907f; }
        #member-signup .member-signup-content .button-group .button.facebook {
          background-color: #3667BC; }
          #member-signup .member-signup-content .button-group .button.facebook:hover {
            background-color: #4374c9; }
        #member-signup .member-signup-content .button-group .button .button-icon {
          position: absolute;
          top: 0;
          left: 0;
          width: 50px;
          height: 50px;
          font-size: 24px;
          font-size: 1.5rem;
          display: -webkit-flex;
          display: flex;
          -webkit-align-items: center;
          align-items: center;
          -webkit-justify-content: center;
          justify-content: center; }
          #member-signup .member-signup-content .button-group .button .button-icon i {
            margin: auto; }
    #member-signup .member-signup-content .error-message {
      padding: 20px 0 0 0;
      color: #FF2C22;
      text-align: center; }
    #member-signup .member-signup-content .form-wrapper {
      position: relative;
      margin-bottom: 20px; }
      #member-signup .member-signup-content .form-wrapper .form-title {
        margin-bottom: 16px;
        padding-bottom: 16px;
        border-bottom: 1px solid #ddd;
        color: #484848;
        font-weight: 600;
        font-size: 24px;
        font-size: 1.5rem; }
      #member-signup .member-signup-content .form-wrapper .input-wrapper {
        display: inline-block;
        width: 100%; }
      #member-signup .member-signup-content .form-wrapper .label {
        display: block;
        line-height: 20px;
        margin: 0 0 7px 0;
        font-weight: 600;
        color: #484848;
        font-size: 13px;
        font-size: 0.8125rem; }
        #member-signup .member-signup-content .form-wrapper .label .tip {
          font-weight: 400;
          color: #737373; }
      #member-signup .member-signup-content .form-wrapper .input-form {
        margin: 0 0 12px 0; }
        #member-signup .member-signup-content .form-wrapper .input-form.password input {
          padding: 0 52px 0 12px; }
        #member-signup .member-signup-content .form-wrapper .input-form.error.password input {
          padding: 0px 70px 0 12px; }
        #member-signup .member-signup-content .form-wrapper .input-form.error.password .show-hide-btn {
          -moz-transform: translateX(-80%);
          -ms-transform: translateX(-80%);
          -webkit-transform: translateX(-80%);
          transform: translateX(-80%); }
        #member-signup .member-signup-content .form-wrapper .input-form.error input {
          border: 1px solid #FF2C22;
          padding: 0 30px 0 12px;
          color: #FF2C22; }
        #member-signup .member-signup-content .form-wrapper .input-form.error i {
          display: block; }
        #member-signup .member-signup-content .form-wrapper .input-form input {
          height: 50px;
          line-height: 48px; }
        #member-signup .member-signup-content .form-wrapper .input-form .error-icon {
          display: none;
          position: absolute;
          top: 50%;
          right: 12px;
          color: #FF2C22;
          font-size: 18px;
          font-size: 1.125rem;
          -moz-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }
      #member-signup .member-signup-content .form-wrapper .input-autocomplete {
        position: absolute;
        top: 50px;
        right: 0;
        width: 100%;
        z-index: 1000;
        background-color: #fff;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        -moz-box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.4);
        -webkit-box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.4);
        box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.4); }
        #member-signup .member-signup-content .form-wrapper .input-autocomplete .city {
          display: inline-block;
          width: 23%;
          padding: 10px;
          max-height: 50px;
          text-align: center;
          cursor: pointer; }
        #member-signup .member-signup-content .form-wrapper .input-autocomplete .dist {
          display: inline-block;
          width: 70px;
          padding: 10px;
          max-height: 50px;
          text-align: center;
          cursor: pointer; }
        #member-signup .member-signup-content .form-wrapper .input-autocomplete.districtMode {
          width: 300px; }
    #member-signup .member-signup-content .checkbox-form {
      margin-bottom: 20px;
      cursor: pointer; }

#special-offer {
  position: relative;
  width: calc(100% - 20px);
  max-width: 1100px;
  height: 100%;
  padding: 30px 0;
  margin: 0 auto; }
  #special-offer .loading-state {
    height: 600px; }
  #special-offer .offer-content {
    position: relative;
    min-height: 600px;
    border: 1px solid #DADADA;
    background-color: #fff; }
    #special-offer .offer-content .form-item {
      padding: 0 40px; }
      #special-offer .offer-content .form-item .custom-input.contact {
        height: 40px;
        padding: 0 10px; }
    #special-offer .offer-content .offer-header {
      padding: 40px; }
      #special-offer .offer-content .offer-header .title {
        margin: 0 0 20px 0;
        font-weight: 600;
        color: #2A2A2A;
        font-size: 24px;
        font-size: 1.5rem; }
      #special-offer .offer-content .offer-header .description {
        line-height: 1.6em;
        color: #737373;
        font-size: 14px;
        font-size: 0.875rem; }
        #special-offer .offer-content .offer-header .description .focus-text {
          color: #484848;
          font-weight: 600; }
    #special-offer .offer-content .offer-item-wrapper {
      position: relative;
      padding: 20px 0; }
      #special-offer .offer-content .offer-item-wrapper.small {
        padding: 10px 0; }
    #special-offer .offer-content .offer-footer {
      padding: 0 40px; }
      #special-offer .offer-content .offer-footer .footer-content {
        padding: 30px 0;
        border-top: 1px solid #ddd; }
        #special-offer .offer-content .offer-footer .footer-content .description {
          margin: 0 0 12px 0;
          color: #484848;
          font-size: 13px;
          font-size: 0.8125rem; }
        #special-offer .offer-content .offer-footer .footer-content .button.offer {
          width: 200px;
          height: 40px;
          line-height: 40px;
          margin: 0;
          border: none;
          background-color: #ee7c68;
          font-weight: 600;
          color: #fff;
          font-size: 14px;
          font-size: 0.875rem;
          -moz-border-radius: 3px;
          -webkit-border-radius: 3px;
          border-radius: 3px; }
        #special-offer .offer-content .offer-footer .footer-content .error {
          display: inline-block;
          margin: 0 0 0 10px;
          color: #FF2C22;
          font-size: 14px;
          font-size: 0.875rem; }
    #special-offer .offer-content .status-message {
      position: absolute;
      top: 50%;
      left: 50%;
      -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
      -webkit-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%); }
    #special-offer .offer-content .offer-process {
      position: relative;
      margin-top: 20px;
      overflow: auto; }
      #special-offer .offer-content .offer-process .process-label {
        display: inline-block;
        color: #484848;
        float: left;
        font-weight: 600; }
      #special-offer .offer-content .offer-process .process-item {
        display: inline-block;
        width: 100px;
        text-align: center;
        float: left; }
        #special-offer .offer-content .offer-process .process-item.active .process-icon {
          color: #ee7c68; }
        #special-offer .offer-content .offer-process .process-item .process-icon {
          width: 60px;
          height: 60px;
          margin: 0 auto 10px auto;
          color: #aaa;
          font-size: 60px;
          font-size: 3.75rem; }
        #special-offer .offer-content .offer-process .process-item .description {
          color: #2A2A2A;
          font-size: 13px;
          font-size: 0.8125rem; }
      #special-offer .offer-content .offer-process .process-arrow {
        display: inline-block;
        padding: 15px 10px;
        color: #737373;
        float: left;
        font-size: 30px;
        font-size: 1.875rem; }
    #special-offer .offer-content .nologin-content {
      position: relative;
      height: 240px;
      margin: 20px 0;
      border-bottom: 1px solid #DADADA; }

#special-offer-info .member-content {
  padding: 30px; }
  #special-offer-info .member-content .form-title {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    font-weight: 600;
    color: #2A2A2A;
    font-size: 24px;
    font-size: 1.5rem; }
  #special-offer-info .member-content .special-form {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden; }
    #special-offer-info .member-content .special-form .form-wrapper {
      position: relative;
      width: calc(50% - 20px);
      margin-right: 20px;
      border-right: 1px solid #ddd;
      float: left; }
      #special-offer-info .member-content .special-form .form-wrapper:last-child {
        border-right: none; }
      #special-offer-info .member-content .special-form .form-wrapper .form-item {
        color: #484848;
        line-height: 21px;
        margin-bottom: 8px;
        font-size: 15px;
        font-size: 0.9375rem;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center; }
        #special-offer-info .member-content .special-form .form-wrapper .form-item .label {
          display: inline-block;
          width: 100px;
          min-width: 100px; }
  #special-offer-info .member-content .orderitem-pool {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 24px;
    background-color: #fff;
    border: 1px solid #ddd; }
    #special-offer-info .member-content .orderitem-pool .pool-row {
      position: relative;
      height: auto;
      padding: 10px;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      -moz-box-shadow: inset 0px -1px 0px 0px #ddd;
      -webkit-box-shadow: inset 0px -1px 0px 0px #ddd;
      box-shadow: inset 0px -1px 0px 0px #ddd; }
      #special-offer-info .member-content .orderitem-pool .pool-row:last-child {
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none; }
      #special-offer-info .member-content .orderitem-pool .pool-row.header {
        height: 40px;
        -moz-box-shadow: inset 0px -1px 0px 0px #ddd;
        -webkit-box-shadow: inset 0px -1px 0px 0px #ddd;
        box-shadow: inset 0px -1px 0px 0px #ddd; }
        #special-offer-info .member-content .orderitem-pool .pool-row.header .pool-col {
          color: #2A2A2A;
          font-weight: 600; }
          #special-offer-info .member-content .orderitem-pool .pool-row.header .pool-col.date {
            width: 110px;
            font-weight: 600; }
      #special-offer-info .member-content .orderitem-pool .pool-row .pool-col {
        display: inline-block;
        width: 100px;
        font-weight: 600;
        color: #565151;
        word-break: break-all;
        -webkit-flex: 1;
        flex: 1;
        font-size: 13px;
        font-size: 0.8125rem;
        display: -webkit-inline-flex;
        display: inline-flex;
        -webkit-align-items: center;
        align-items: center; }
        #special-offer-info .member-content .orderitem-pool .pool-row .pool-col.custom-width {
          -webkit-flex: none;
          flex: none; }
        #special-offer-info .member-content .orderitem-pool .pool-row .pool-col.text-center {
          text-align: center;
          -webkit-justify-content: center;
          justify-content: center; }
        #special-offer-info .member-content .orderitem-pool .pool-row .pool-col.column-col {
          -webkit-flex-direction: column;
          flex-direction: column; }
        #special-offer-info .member-content .orderitem-pool .pool-row .pool-col .filename {
          color: #2A2A2A;
          text-decoration: underline;
          font-size: 12px;
          font-size: 0.75rem; }
          #special-offer-info .member-content .orderitem-pool .pool-row .pool-col .filename.empty {
            text-decoration: none; }
          #special-offer-info .member-content .orderitem-pool .pool-row .pool-col .filename.error {
            width: 100%;
            text-decoration: none;
            color: #FF2C22; }
        #special-offer-info .member-content .orderitem-pool .pool-row .pool-col .total-process {
          width: 100px;
          margin: 8px auto 0 auto;
          border-top: 1px solid #ccc;
          padding-top: 8px; }
        #special-offer-info .member-content .orderitem-pool .pool-row .pool-col .file-download-hint {
          cursor: pointer; }
          #special-offer-info .member-content .orderitem-pool .pool-row .pool-col .file-download-hint i {
            font-size: 18px;
            color: #FF2C22; }

#points-payment-atm .payment-content {
  position: relative;
  width: auto;
  max-width: auto;
  margin: auto;
  padding: auto; }
  #points-payment-atm .payment-content .payment-form {
    padding: 30px; }
  #points-payment-atm .payment-content .status-message {
    position: relative;
    top: auto;
    left: auto;
    margin: auto;
    padding: 56px 0;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; }
    #points-payment-atm .payment-content .status-message .status-icon .loading-state {
      position: relative;
      top: auto;
      left: auto;
      -moz-transform: none;
      -ms-transform: none;
      -webkit-transform: none;
      transform: none; }

#points-payment-credit .status-message .status-icon .loading-state {
  position: relative;
  top: auto;
  left: auto;
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none; }

#points-payment-outwardremittance .payment-content {
  position: relative;
  width: auto;
  max-width: auto;
  margin: auto;
  padding: auto; }
  #points-payment-outwardremittance .payment-content .payment-form {
    padding: 30px; }
  #points-payment-outwardremittance .payment-content .status-message {
    position: relative;
    top: auto;
    left: auto;
    margin: auto;
    padding: 56px 0;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; }
    #points-payment-outwardremittance .payment-content .status-message .status-icon .loading-state {
      position: relative;
      top: auto;
      left: auto;
      -moz-transform: none;
      -ms-transform: none;
      -webkit-transform: none;
      transform: none; }

#points-payment-result .status-message {
  position: relative;
  top: auto;
  left: auto;
  margin: auto;
  padding: 56px 0;
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none; }
  #points-payment-result .status-message .status-icon .loading-state {
    position: relative;
    top: auto;
    left: auto;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; }

#payment-confirm {
  position: relative;
  width: calc(100% - 20px);
  max-width: 1100px;
  margin: 0 auto 30px auto;
  padding: 30px 0 0 0; }
  #payment-confirm .bread-crumbs {
    margin-bottom: 30px; }
  #payment-confirm .loading-state {
    height: calc(100vh - 360px); }
  #payment-confirm .payment-content {
    position: relative; }
  #payment-confirm .payment-form {
    position: relative;
    padding: 40px;
    background-color: #fff;
    border: 1px solid #DADADA;
    overflow: hidden; }
    #payment-confirm .payment-form .payment-method {
      margin-bottom: 40px; }
    #payment-confirm .payment-form .form-header {
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 1px solid #ddd; }
    #payment-confirm .payment-form .form-title {
      font-weight: 600;
      color: #2A2A2A;
      font-size: 24px;
      font-size: 1.5rem; }
    #payment-confirm .payment-form .form-description {
      margin: 10px 0 0 0;
      color: #2A2A2A;
      font-size: 14px;
      font-size: 0.875rem; }
    #payment-confirm .payment-form .form-sub-title {
      line-height: 22px;
      margin: 0 0 20px 0;
      font-weight: 600;
      color: #2A2A2A;
      font-size: 18px;
      font-size: 1.125rem; }
    #payment-confirm .payment-form .form-content {
      margin-bottom: 30px;
      padding-right: 80px;
      overflow: hidden; }
      #payment-confirm .payment-form .form-content.sendto {
        padding-top: 16px;
        margin-bottom: 0; }
      #payment-confirm .payment-form .form-content.atm .form-item .label {
        width: 120px;
        min-width: 120px; }
      #payment-confirm .payment-form .form-content.no-margin {
        margin-bottom: 0; }
      #payment-confirm .payment-form .form-content .sub-title {
        margin-bottom: 16px;
        color: #2A2A2A;
        font-weight: 600;
        font-size: 18px;
        font-size: 1.125rem; }
        #payment-confirm .payment-form .form-content .sub-title .history {
          margin-left: 10px;
          color: #ee7c68;
          text-decoration: underline;
          font-weight: 400;
          cursor: pointer;
          font-size: 14px;
          font-size: 0.875rem; }
      #payment-confirm .payment-form .form-content .pickup-title {
        margin-bottom: 16px;
        color: #2A2A2A;
        font-size: 14px;
        font-size: 0.875rem; }
      #payment-confirm .payment-form .form-content .pickup-description {
        margin: 0;
        color: #3C3D41;
        font-size: 14px;
        font-size: 0.875rem; }
      #payment-confirm .payment-form .form-content .texi-hint {
        margin-bottom: 16px;
        color: #FF2C22;
        font-size: 14px;
        font-size: 0.875rem; }
      #payment-confirm .payment-form .form-content .input-wrapper {
        width: 580px;
        margin-bottom: 24px;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between; }
        #payment-confirm .payment-form .form-content .input-wrapper:last-child {
          margin-bottom: 0; }
        #payment-confirm .payment-form .form-content .input-wrapper .input-form {
          margin-left: 10px; }
          #payment-confirm .payment-form .form-content .input-wrapper .input-form.xsmall {
            width: 60px; }
          #payment-confirm .payment-form .form-content .input-wrapper .input-form.small {
            width: 150px; }
          #payment-confirm .payment-form .form-content .input-wrapper .input-form.medium {
            width: 170px; }
          #payment-confirm .payment-form .form-content .input-wrapper .input-form.large {
            width: 300px; }
          #payment-confirm .payment-form .form-content .input-wrapper .input-form.non-margin {
            margin-left: 0; }
        #payment-confirm .payment-form .form-content .input-wrapper .address-form {
          position: relative;
          width: 100%; }
          #payment-confirm .payment-form .form-content .input-wrapper .address-form label {
            display: inline-block;
            margin-bottom: 10px;
            color: #2A2A2A;
            cursor: auto;
            font-size: 14px;
            font-size: 0.875rem; }
          #payment-confirm .payment-form .form-content .input-wrapper .address-form span.error, #payment-confirm .payment-form .form-content .input-wrapper .address-form span.red-text {
            color: #FF2C22;
            font-size: 12px;
            font-size: 0.75rem; }
        #payment-confirm .payment-form .form-content .input-wrapper .info-wrapper {
          line-height: 1.6em;
          font-size: 16px;
          font-size: 1rem; }
      #payment-confirm .payment-form .form-content .select-wrapper {
        margin-bottom: 24px;
        overflow: hidden; }
        #payment-confirm .payment-form .form-content .select-wrapper .checkbox-form {
          cursor: pointer;
          margin-right: 20px;
          float: left; }
        #payment-confirm .payment-form .form-content .select-wrapper .teach-icon {
          margin: 0 6px; }
        #payment-confirm .payment-form .form-content .select-wrapper .teach-text {
          color: #2A2A2A; }
      #payment-confirm .payment-form .form-content .result-price {
        margin: 20px 0 0 0;
        font-size: 18px;
        font-size: 1.125rem; }
      #payment-confirm .payment-form .form-content .button-group {
        margin: 20px 0 0 0; }
        #payment-confirm .payment-form .form-content .button-group .button {
          height: 40px;
          line-height: 40px;
          margin: 0 10px 0 0;
          padding: 0;
          border: none;
          color: #fff;
          font-size: 14px;
          font-size: 0.875rem; }
          #payment-confirm .payment-form .form-content .button-group .button.submit {
            width: 120px;
            background-color: #ee7c68;
            font-weight: 600; }
            #payment-confirm .payment-form .form-content .button-group .button.submit:hover {
              background-color: #ee7c68; }
          #payment-confirm .payment-form .form-content .button-group .button.cancel {
            min-width: 80px;
            background-color: #919191; }
            #payment-confirm .payment-form .form-content .button-group .button.cancel:hover {
              background-color: #919191; }
    #payment-confirm .payment-form .form-item {
      color: #484848;
      line-height: 21px;
      margin-bottom: 8px;
      font-size: 15px;
      font-size: 0.9375rem;
      display: -webkit-flex;
      display: flex; }
      #payment-confirm .payment-form .form-item:last-child {
        margin-bottom: 0; }
      #payment-confirm .payment-form .form-item .label {
        display: inline-block;
        text-align: right; }
    #payment-confirm .payment-form .method {
      position: relative;
      display: inline-block;
      width: 270px;
      height: 140px;
      margin: 0 20px 70px 0;
      border: 2px solid #D9D9D9;
      background-color: #FFFFFF;
      cursor: pointer;
      -moz-border-radius: 3px;
      -webkit-border-radius: 3px;
      border-radius: 3px; }
      #payment-confirm .payment-form .method.selected {
        border: 2px solid #ee7c68; }
        #payment-confirm .payment-form .method.selected .checkbox {
          border: 1px solid #ee7c68;
          background-color: #ee7c68; }
          #payment-confirm .payment-form .method.selected .checkbox i {
            visibility: visible; }
        #payment-confirm .payment-form .method.selected .method-info {
          opacity: 1; }
      #payment-confirm .payment-form .method .checkbox {
        position: absolute;
        top: 50%;
        left: 20px;
        width: 32px;
        height: 32px;
        margin: 0;
        border: 1px solid #D9D9D9;
        color: #fff;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%); }
        #payment-confirm .payment-form .method .checkbox i {
          visibility: hidden; }
      #payment-confirm .payment-form .method .method-info {
        position: absolute;
        top: 50%;
        left: 50%;
        text-align: center;
        opacity: .5;
        -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%); }
        #payment-confirm .payment-form .method .method-info .image {
          margin: 0 0 10px 0; }
        #payment-confirm .payment-form .method .method-info .title {
          font-weight: 600;
          color: #4A4A4A;
          text-align: center;
          font-size: 16px;
          font-size: 1rem; }
      #payment-confirm .payment-form .method .button.pay {
        top: calc(100% + 8px);
        left: 50%;
        position: absolute;
        display: block;
        width: 240px;
        height: 44px;
        line-height: 44px;
        margin: 0 0;
        padding: 0;
        border: none;
        background-color: #ee7c68;
        color: #fff;
        font-size: 14px;
        font-size: 0.875rem;
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%); }
    #payment-confirm .payment-form .paymentmethod-error {
      display: block;
      color: #FF2C22;
      margin: 0 0 40px; }
    #payment-confirm .payment-form .explanation {
      width: 960px; }
      #payment-confirm .payment-form .explanation .ssl-lock {
        margin-right: 4px;
        color: #ee7c68; }
      #payment-confirm .payment-form .explanation .title {
        line-height: 20px;
        margin: 0 0 12px 0;
        font-weight: 600;
        color: #2A2A2A;
        word-wrap: break-word;
        font-size: 14px;
        font-size: 0.875rem; }
      #payment-confirm .payment-form .explanation .description {
        line-height: 26px;
        margin: 0;
        color: #484848;
        word-wrap: break-word;
        font-size: 14px;
        font-size: 0.875rem; }
        #payment-confirm .payment-form .explanation .description.error {
          color: #FF2C22; }
        #payment-confirm .payment-form .explanation .description .link {
          text-decoration: underline; }
    #payment-confirm .payment-form .confirm-wrapper {
      position: relative;
      overflow: hidden; }
    #payment-confirm .payment-form .result-wrapper {
      position: relative;
      margin-top: 30px;
      padding-top: 30px;
      border-top: 1px solid #ddd;
      clear: both; }
      #payment-confirm .payment-form .result-wrapper .agree-wrapper {
        margin: 0 0 20px 0; }
        #payment-confirm .payment-form .result-wrapper .agree-wrapper .checkbox-form {
          color: #737373;
          font-size: 12px;
          font-size: 0.75rem; }
          #payment-confirm .payment-form .result-wrapper .agree-wrapper .checkbox-form.error {
            color: #FF2C22; }
          #payment-confirm .payment-form .result-wrapper .agree-wrapper .checkbox-form .checkbox {
            position: relative;
            width: 16px;
            height: 16px;
            margin: 0 10px 0 0;
            font-size: 14px;
            font-size: 0.875rem; }
      #payment-confirm .payment-form .result-wrapper .price-wrapper {
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center; }
        #payment-confirm .payment-form .result-wrapper .price-wrapper .price-result {
          display: inline-block;
          font-size: 18px;
          font-size: 1.125rem; }
          #payment-confirm .payment-form .result-wrapper .price-wrapper .price-result .price {
            font-weight: 700;
            color: #ee7c68; }
          #payment-confirm .payment-form .result-wrapper .price-wrapper .price-result .red-price {
            font-weight: 700;
            color: #FF2C22; }
        #payment-confirm .payment-form .result-wrapper .price-wrapper .action-wrapper {
          display: inline-block;
          margin: 0 0 0 auto; }
          #payment-confirm .payment-form .result-wrapper .price-wrapper .action-wrapper .result-error {
            display: inline-block;
            margin-right: 20px;
            color: #FF2C22; }
          #payment-confirm .payment-form .result-wrapper .price-wrapper .action-wrapper .button.submit {
            width: 200px;
            height: 44px;
            line-height: 44px;
            margin: 0;
            border: 0;
            background-color: rgba(238, 124, 104, 0.9);
            font-weight: 600;
            color: #fff;
            font-size: 14px;
            font-size: 0.875rem;
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
            border-radius: 3px; }
  #payment-confirm .payment-message {
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 56px 0;
    background-color: #fff;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px; }
    #payment-confirm .payment-message.in-content {
      width: 100%;
      margin: 0 0 40px 0;
      padding: 0;
      background-color: transparent; }
    #payment-confirm .payment-message .button {
      width: 160px;
      height: 40px;
      line-height: 40px;
      color: #fff; }
      #payment-confirm .payment-message .button.more {
        background-color: #388d81; }
      #payment-confirm .payment-message .button.retry {
        background-color: #FF2C22; }
      #payment-confirm .payment-message .button.contact {
        background-color: #737373; }

#points-monthly-introduction {
  position: relative;
  background-color: #fff; }
  #points-monthly-introduction .banner {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 1; }
    #points-monthly-introduction .banner .banner-image {
      position: relative;
      width: 100%;
      height: auto;
      min-height: 800px;
      z-index: 1;
      user-select: none;
      pointer-events: none; }
    #points-monthly-introduction .banner .banner-hand {
      position: absolute;
      top: 0;
      right: 0;
      width: auto;
      height: 85%;
      z-index: 3;
      user-select: none;
      pointer-events: none; }
    #points-monthly-introduction .banner .banner-info {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      line-height: normal;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center;
      -webkit-justify-content: center;
      justify-content: center; }
      #points-monthly-introduction .banner .banner-info .banner-notebook {
        position: absolute;
        left: 6%;
        top: 5%;
        width: 30%;
        height: auto;
        z-index: 2;
        user-select: none;
        pointer-events: none; }
      #points-monthly-introduction .banner .banner-info .text-wrapper {
        position: absolute;
        top: 25%;
        right: 7%;
        width: 60%;
        height: 28%;
        padding: 0;
        border: 3px solid #fff;
        z-index: 1;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-flex-direction: column;
        flex-direction: column; }
        #points-monthly-introduction .banner .banner-info .text-wrapper .title {
          margin: 0;
          font-weight: 600;
          color: #535353;
          text-align: center;
          letter-spacing: 6px;
          font-size: 50px;
          font-size: 3.125rem; }
          #points-monthly-introduction .banner .banner-info .text-wrapper .title .hightline-text {
            color: #20517A; }
        #points-monthly-introduction .banner .banner-info .text-wrapper .description {
          margin: 0;
          color: #5E6262;
          text-align: center;
          font-size: 28px;
          font-size: 1.75rem; }
  #points-monthly-introduction .monthly-content {
    position: relative;
    line-height: normal;
    margin: -200px 0 0 0;
    text-align: center;
    z-index: 2;
    overflow: auto; }
    #points-monthly-introduction .monthly-content .provide-wrapper {
      display: block;
      width: calc(100% - 40px);
      max-width: 1120px;
      margin: 0 auto 40px auto;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
      justify-content: center; }
      #points-monthly-introduction .monthly-content .provide-wrapper .provide-block {
        width: 400px;
        height: 400px;
        padding: 30px;
        background-color: #4286A2;
        float: left;
        display: -webkit-inline-flex;
        display: inline-flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-flex-direction: column;
        flex-direction: column; }
        #points-monthly-introduction .monthly-content .provide-wrapper .provide-block.left-block {
          margin: 0 20px 0 0; }
        #points-monthly-introduction .monthly-content .provide-wrapper .provide-block.right-block {
          margin: 0 0 0 20px; }
        #points-monthly-introduction .monthly-content .provide-wrapper .provide-block .title {
          margin: 0 0 40px 0;
          color: #fff;
          font-weight: 600;
          font-size: 26px;
          font-size: 1.625rem; }
        #points-monthly-introduction .monthly-content .provide-wrapper .provide-block .image {
          display: block;
          height: 240px;
          user-select: none;
          pointer-events: none; }
    #points-monthly-introduction .monthly-content .application-title {
      width: calc(100% - 40px);
      max-width: 1120px;
      margin: 0 auto 10px auto;
      color: #484848;
      font-weight: 600;
      text-align: center;
      font-size: 34px;
      font-size: 2.125rem; }
    #points-monthly-introduction .monthly-content .application-description {
      width: calc(100% - 40px);
      max-width: 1120px;
      line-height: 1.6em;
      margin: 0 auto 100px auto;
      color: #4E4E4E;
      text-align: center;
      font-size: 18px;
      font-size: 1.125rem; }
    #points-monthly-introduction .monthly-content .divide {
      position: relative;
      width: calc(100% - 80px);
      height: 1px;
      margin: 60px auto;
      background-color: #DBDBDB; }
      #points-monthly-introduction .monthly-content .divide .divide-text {
        position: absolute;
        top: 50%;
        left: 50%;
        padding: 0 20px;
        background-color: #fff;
        color: #484848;
        font-weight: 600;
        font-size: 34px;
        font-size: 2.125rem;
        -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%); }
    #points-monthly-introduction .monthly-content .application-process {
      display: block;
      width: calc(100% - 40px);
      max-width: 1120px;
      margin: 0 auto;
      user-select: none;
      pointer-events: none; }
    #points-monthly-introduction .monthly-content .concat-wrapper {
      position: relative;
      width: calc(100% - 40px);
      max-width: 1120px;
      margin: 0 auto;
      padding: 100px 0;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center;
      -webkit-justify-content: space-around;
      justify-content: space-around; }
      #points-monthly-introduction .monthly-content .concat-wrapper .image {
        display: inline-block;
        width: 40%;
        max-width: 650px;
        height: auto;
        margin: 0 40px 0 0;
        user-select: none;
        pointer-events: none; }
      #points-monthly-introduction .monthly-content .concat-wrapper .text-wrapper {
        display: inline-block;
        width: 40%;
        text-align: left; }
        #points-monthly-introduction .monthly-content .concat-wrapper .text-wrapper .title {
          color: #595959;
          font-size: 30px;
          font-size: 1.875rem; }
        #points-monthly-introduction .monthly-content .concat-wrapper .text-wrapper .phone {
          color: #58A89E;
          font-weight: 600;
          letter-spacing: 4px;
          font-size: 40px;
          font-size: 2.5rem; }
        #points-monthly-introduction .monthly-content .concat-wrapper .text-wrapper .online-application {
          display: inline-block;
          height: 60px;
          line-height: 60px;
          margin: 20px 0 0 0;
          padding: 0 40px;
          color: #fff;
          background-color: #2b6d8a;
          text-align: center;
          font-size: 28px;
          font-size: 1.75rem;
          -moz-border-radius: 30px;
          -webkit-border-radius: 30px;
          border-radius: 30px; }

#payment-spgatewaycvs, #extrafee-payment-spgatewaycvs, #points-payment-spgatewaycvs {
  overflow: hidden; }
  #payment-spgatewaycvs .bread-crumbs, #extrafee-payment-spgatewaycvs .bread-crumbs, #points-payment-spgatewaycvs .bread-crumbs {
    margin-bottom: 30px; }
  #payment-spgatewaycvs .status-message, #extrafee-payment-spgatewaycvs .status-message, #points-payment-spgatewaycvs .status-message {
    padding: 56px 0; }
    #payment-spgatewaycvs .status-message .status-title, #extrafee-payment-spgatewaycvs .status-message .status-title, #points-payment-spgatewaycvs .status-message .status-title {
      font-size: 20px;
      font-size: 1.25rem; }
  #payment-spgatewaycvs .payment-content, #extrafee-payment-spgatewaycvs .payment-content, #points-payment-spgatewaycvs .payment-content {
    position: relative;
    width: calc(100% - 20px);
    max-width: 1100px;
    margin: 0 auto 30px auto;
    padding: 30px 0 0 0; }
  #payment-spgatewaycvs .payment-form, #extrafee-payment-spgatewaycvs .payment-form, #points-payment-spgatewaycvs .payment-form {
    position: relative;
    padding: 40px;
    background-color: #fff; }
  #payment-spgatewaycvs .form-title, #extrafee-payment-spgatewaycvs .form-title, #points-payment-spgatewaycvs .form-title {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    font-weight: 600;
    color: #2A2A2A;
    font-size: 24px;
    font-size: 1.5rem; }
  #payment-spgatewaycvs .form-content, #extrafee-payment-spgatewaycvs .form-content, #points-payment-spgatewaycvs .form-content {
    margin-bottom: 40px;
    padding: 0 20px;
    overflow: hidden; }
  #payment-spgatewaycvs .form-item, #extrafee-payment-spgatewaycvs .form-item, #points-payment-spgatewaycvs .form-item {
    color: #484848;
    line-height: 21px;
    margin-bottom: 10px;
    font-size: 15px;
    font-size: 0.9375rem;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center; }
    #payment-spgatewaycvs .form-item:last-child, #extrafee-payment-spgatewaycvs .form-item:last-child, #points-payment-spgatewaycvs .form-item:last-child {
      margin-bottom: 0; }
    #payment-spgatewaycvs .form-item.error, #extrafee-payment-spgatewaycvs .form-item.error, #points-payment-spgatewaycvs .form-item.error {
      color: #FF2C22; }
    #payment-spgatewaycvs .form-item.large-item, #extrafee-payment-spgatewaycvs .form-item.large-item, #points-payment-spgatewaycvs .form-item.large-item {
      line-height: 30px;
      color: #2A2A2A;
      font-weight: 600;
      font-size: 20px;
      font-size: 1.25rem; }
    #payment-spgatewaycvs .form-item .label, #extrafee-payment-spgatewaycvs .form-item .label, #points-payment-spgatewaycvs .form-item .label {
      display: inline-block;
      text-align: right; }
    #payment-spgatewaycvs .form-item .hint-text, #extrafee-payment-spgatewaycvs .form-item .hint-text, #points-payment-spgatewaycvs .form-item .hint-text {
      line-height: 21px;
      margin: 0 0 0 10px;
      color: #919191;
      font-weight: 400;
      font-size: 15px;
      font-size: 0.9375rem; }
    #payment-spgatewaycvs .form-item .icon, #extrafee-payment-spgatewaycvs .form-item .icon, #points-payment-spgatewaycvs .form-item .icon {
      margin: 0 6px 0 0;
      font-size: 16px;
      font-size: 1rem; }
  #payment-spgatewaycvs .mark-process, #extrafee-payment-spgatewaycvs .mark-process, #points-payment-spgatewaycvs .mark-process {
    display: block;
    max-width: 100%;
    margin: 10px auto 30px auto; }
  #payment-spgatewaycvs .mart-list, #extrafee-payment-spgatewaycvs .mart-list, #points-payment-spgatewaycvs .mart-list {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center; }
    #payment-spgatewaycvs .mart-list .mart, #extrafee-payment-spgatewaycvs .mart-list .mart, #points-payment-spgatewaycvs .mart-list .mart {
      display: inline-block;
      height: 60px;
      margin: 0 10px 0 0;
      cursor: pointer; }
  #payment-spgatewaycvs .button, #extrafee-payment-spgatewaycvs .button, #points-payment-spgatewaycvs .button {
    display: inline-block;
    margin: 0 0 40px 0; }
    #payment-spgatewaycvs .button.submit, #extrafee-payment-spgatewaycvs .button.submit, #points-payment-spgatewaycvs .button.submit {
      margin: 0 20px 40px 0; }

#points-payment-spgatewaycvs .payment-content {
  position: relative;
  width: auto;
  max-width: auto;
  margin: auto;
  padding: auto; }
  #points-payment-spgatewaycvs .payment-content .payment-form {
    padding: 30px; }
  #points-payment-spgatewaycvs .payment-content .status-message {
    position: relative;
    top: auto;
    left: auto;
    margin: auto;
    padding: 56px 0;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; }
    #points-payment-spgatewaycvs .payment-content .status-message .status-icon .loading-state {
      position: relative;
      top: auto;
      left: auto;
      -moz-transform: none;
      -ms-transform: none;
      -webkit-transform: none;
      transform: none; }

#points-introduction {
  position: relative; }
  #points-introduction .banner {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center; }
    #points-introduction .banner:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: -webkit-linear-gradient(right, transparent 0%, rgba(0, 0, 0, 0.3) 49%, rgba(0, 0, 0, 0.6) 100%);
      background-image: -o-linear-gradient(right, transparent 0%, rgba(0, 0, 0, 0.3) 49%, rgba(0, 0, 0, 0.6) 100%);
      background-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 49%, rgba(0, 0, 0, 0.6) 100%); }
    #points-introduction .banner.small .banner-wrapper {
      height: 300px; }
    #points-introduction .banner .banner-wrapper {
      position: relative;
      width: calc(100% - 20px);
      max-width: 1100px;
      height: 480px;
      margin: 0 auto;
      text-align: center;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-flex-direction: column;
      flex-direction: column; }
      #points-introduction .banner .banner-wrapper .text-wrapper {
        max-width: 820px;
        margin: 0 0 26px 0;
        padding: 0 30px;
        border-bottom: 1px solid #fff; }
        #points-introduction .banner .banner-wrapper .text-wrapper .title {
          line-height: normal;
          margin: 0 0 2px 0;
          font-weight: 600;
          color: #FFFFFF;
          letter-spacing: 0;
          font-size: 36px;
          font-size: 2.25rem; }
        #points-introduction .banner .banner-wrapper .text-wrapper .description {
          line-height: normal;
          margin: 0 0 22px 0;
          font-weight: 600;
          color: #FFFFFF;
          letter-spacing: 0;
          font-size: 36px;
          font-size: 2.25rem; }
      #points-introduction .banner .banner-wrapper .button.store {
        width: 225px;
        height: 52px;
        line-height: 52px;
        margin: 0;
        padding: 0;
        border: none;
        font-weight: 600;
        color: #FFFFFF;
        letter-spacing: 0;
        background-color: #1D87CB;
        cursor: pointer;
        font-size: 18px;
        font-size: 1.125rem;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px; }
        #points-introduction .banner .banner-wrapper .button.store:hover {
          background-color: #2295df; }
  #points-introduction .activity-banner {
    position: relative;
    background-color: #2A2A2A; }
    #points-introduction .activity-banner .banner-wrapper {
      position: relative;
      width: calc(100% - 20px);
      max-width: 1100px;
      height: 120px;
      margin: 0 auto;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center; }
      #points-introduction .activity-banner .banner-wrapper .text-wrapper {
        display: inline-block;
        padding: 0 20px 0 0;
        -webkit-flex: 1;
        flex: 1; }
        #points-introduction .activity-banner .banner-wrapper .text-wrapper .title {
          line-height: normal;
          margin: 0;
          color: #FFFFFF;
          letter-spacing: 0;
          font-weight: 600;
          font-size: 26px;
          font-size: 1.625rem;
          display: -webkit-flex;
          display: flex;
          -webkit-align-items: center;
          align-items: center; }
          #points-introduction .activity-banner .banner-wrapper .text-wrapper .title .tool-tip {
            display: inline-block;
            height: 25px;
            line-height: 25px;
            margin: 0 0 0 30px;
            padding: 0 16px;
            background-color: #FFC107;
            text-align: center;
            color: #2A2A2A;
            font-weight: 600;
            letter-spacing: 0;
            font-size: 13px;
            font-size: 0.8125rem;
            -moz-border-radius: 2px;
            -webkit-border-radius: 2px;
            border-radius: 2px; }
      #points-introduction .activity-banner .banner-wrapper .button.store {
        display: inline-block;
        min-width: 0;
        height: 45px;
        line-height: 45px;
        margin: 0 0 0 auto;
        padding: 0 40px;
        border: 1px solid #fff;
        font-weight: 600;
        color: #FFFFFF;
        letter-spacing: 0;
        background-color: #2A2A2A;
        font-size: 18px;
        font-size: 1.125rem; }
        #points-introduction .activity-banner .banner-wrapper .button.store:hover {
          background-color: #373737; }
  #points-introduction .content-block {
    position: relative;
    line-height: normal;
    padding: 100px 0;
    background-color: #fff; }
    #points-introduction .content-block.gray-content {
      background-color: #FAFAFA; }
    #points-introduction .content-block.blue-conetnt {
      background-color: #127CC0; }
    #points-introduction .content-block .content-wrapper {
      width: calc(100% - 20px);
      max-width: 820px;
      margin: 0 auto;
      text-align: center; }
      #points-introduction .content-block .content-wrapper .title {
        margin: 0;
        font-weight: 600;
        color: #474747;
        letter-spacing: 0;
        font-size: 32px;
        font-size: 2rem;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center; }
      #points-introduction .content-block .content-wrapper .description {
        line-height: 32px;
        margin: 16px 0 0 0;
        color: #777777;
        font-size: 16px;
        font-size: 1rem; }
    #points-introduction .content-block .image-content-wrapper {
      width: calc(100% - 20px);
      max-width: 800px;
      margin: 0 auto;
      display: -webkit-flex;
      display: flex; }
      #points-introduction .content-block .image-content-wrapper .sub-content {
        display: inline-block;
        -webkit-flex: 1;
        flex: 1; }
        #points-introduction .content-block .image-content-wrapper .sub-content.text-content {
          display: -webkit-flex;
          display: flex;
          -webkit-flex-direction: column;
          flex-direction: column;
          -webkit-justify-content: center;
          justify-content: center; }
        #points-introduction .content-block .image-content-wrapper .sub-content .title {
          margin: 0 0 20px 0;
          color: #484848;
          letter-spacing: 0;
          font-weight: 600;
          font-size: 32px;
          font-size: 2rem; }
        #points-introduction .content-block .image-content-wrapper .sub-content .description {
          line-height: 36px;
          color: #484848;
          font-size: 20px;
          font-size: 1.25rem; }
        #points-introduction .content-block .image-content-wrapper .sub-content .image {
          display: block;
          margin: auto; }
      #points-introduction .content-block .image-content-wrapper .divide {
        display: inline-block;
        width: 75px;
        min-width: 75px; }
    #points-introduction .content-block .store-content-wrapper {
      width: calc(100% - 20px);
      max-width: 480px;
      margin: 0 auto;
      text-align: center; }
      #points-introduction .content-block .store-content-wrapper .title {
        color: #fff;
        font-weight: 600;
        font-size: 32px;
        font-size: 2rem; }
      #points-introduction .content-block .store-content-wrapper .button.store {
        width: 225px;
        height: 52px;
        line-height: 52px;
        margin: 42px 0 0 0;
        padding: 0 40px;
        border: none;
        background-color: #FFFFFF;
        font-weight: 600;
        color: #127CC0;
        letter-spacing: 0;
        font-size: 18px;
        font-size: 1.125rem;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        -moz-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
        box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1); }
        #points-introduction .content-block .store-content-wrapper .button.store:hover {
          background-color: #f2f2f2; }
    #points-introduction .content-block .process-wrapper {
      width: calc(100% - 20px);
      max-width: 1100px;
      margin: 0 auto;
      text-align: center; }
      #points-introduction .content-block .process-wrapper .title {
        margin: 0;
        font-weight: 600;
        color: #474747;
        letter-spacing: 0;
        font-size: 32px;
        font-size: 2rem;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center; }
      #points-introduction .content-block .process-wrapper .process-list {
        margin: 58px 0 0 0;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center; }
        #points-introduction .content-block .process-wrapper .process-list .process {
          display: inline-block; }
          #points-introduction .content-block .process-wrapper .process-list .process .image {
            display: block;
            margin: auto; }
          #points-introduction .content-block .process-wrapper .process-list .process .label {
            margin: 22px 0 0 0;
            color: #595959;
            letter-spacing: 0;
            white-space: nowrap;
            font-size: 30px;
            font-size: 1.875rem; }
        #points-introduction .content-block .process-wrapper .process-list .arrow {
          margin: 0 90px;
          color: #9B9B9B;
          font-size: 70px;
          font-size: 4.375rem; }

#topbar {
  display: block;
  width: 100%; }
  #topbar #nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 98px;
    background-color: #ffffff;
    z-index: 999;
    -moz-box-shadow: 0px 1px 0px 0px #DADADA;
    -webkit-box-shadow: 0px 1px 0px 0px #DADADA;
    box-shadow: 0px 1px 0px 0px #DADADA; }
  #topbar .content {
    position: relative;
    width: calc(100% - 20px);
    max-width: 1100px;
    height: 100%;
    margin: auto;
    display: -webkit-flex;
    display: flex; }
  #topbar .logo {
    display: -webkit-inline-flex;
    display: inline-flex; }
    #topbar .logo img {
      height: 66px;
      margin: auto; }
  #topbar .nav-list {
    position: relative;
    height: 100%;
    padding-left: 22px;
    display: -webkit-inline-flex;
    display: inline-flex; }
    #topbar .nav-list .nav-item {
      position: relative;
      height: 100%;
      margin: 0 11px;
      padding: 0 11px;
      color: #2A2A2A;
      font-size: 16px;
      cursor: pointer;
      text-decoration: none;
      display: -webkit-inline-flex;
      display: inline-flex;
      -webkit-align-items: center;
      align-items: center; }
      #topbar .nav-list .nav-item:hover, #topbar .nav-list .nav-item.active {
        color: #ee7c68; }
  #topbar .action-list {
    position: relative;
    margin-left: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center; }
    #topbar .action-list .action-button-group {
      margin: 0 0 0 12px; }
      #topbar .action-list .action-button-group .action-button {
        width: 80px;
        height: 38px;
        line-height: 36px;
        margin: 0 0 0 12px;
        font-size: 16px; }
        #topbar .action-list .action-button-group .action-button:first-child {
          margin: 0; }
    #topbar .action-list .member-block {
      height: 70px;
      margin: 0 0 0 22px;
      cursor: pointer;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center; }
      #topbar .action-list .member-block .member-photo {
        display: inline-block;
        width: 38px;
        min-width: 38px;
        height: 38px;
        line-height: 38px;
        margin: 0 12px 0 0;
        background-color: #eee;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        text-align: center;
        color: #fff;
        font-weight: 600;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        border-radius: 50%; }
      #topbar .action-list .member-block .member-name {
        color: #000;
        font-size: 16px;
        font-weight: 700;
        display: -webkit-inline-flex;
        display: inline-flex; }
        #topbar .action-list .member-block .member-name .member-name-text {
          display: inline-block;
          max-width: 90px;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap; }
        #topbar .action-list .member-block .member-name i {
          margin: 0 0 0 10px;
          color: #484848;
          font-size: 18px;
          vertical-align: middle; }
    #topbar .action-list .search-bar {
      position: relative;
      height: 38px;
      margin: 0 0 0 22px;
      border: 1px solid transparent;
      -moz-border-radius: 4px;
      -webkit-border-radius: 4px;
      border-radius: 4px;
      display: -webkit-inline-flex;
      display: inline-flex;
      -webkit-align-items: center;
      align-items: center; }
      #topbar .action-list .search-bar.focus {
        border-color: #2A2A2A; }
        #topbar .action-list .search-bar.focus .form-autocomplete {
          max-width: 150px; }
        #topbar .action-list .search-bar.focus #topbar-search {
          visibility: visible; }
      @media screen and (max-width: 900) {
        #topbar .action-list .search-bar {
          display: none; } }
      #topbar .action-list .search-bar .form-autocomplete {
        position: relative;
        display: inline-block;
        width: 150px;
        max-width: 23px;
        height: 38px;
        line-height: 38px;
        padding: 0 32px 0 0;
        -moz-transition: max-width 0.3s;
        -o-transition: max-width 0.3s;
        -webkit-transition: max-width 0.3s;
        transition: max-width 0.3s; }
      #topbar .action-list .search-bar #topbar-search {
        visibility: hidden; }
        #topbar .action-list .search-bar #topbar-search .autocomplete-input {
          display: inline-block;
          height: 36px;
          width: 100%;
          margin: 0;
          padding: 0 0 0 12px;
          border: none;
          color: #ee7c68;
          font-size: 14px;
          font-size: 0.875rem; }
        #topbar .action-list .search-bar #topbar-search .highlight {
          color: #FF2C22; }
        #topbar .action-list .search-bar #topbar-search .autocomplete-dropdown {
          width: 200px;
          padding: 6px 0;
          -moz-box-shadow: 0px -1px 12px 0px rgba(0, 0, 0, 0.1);
          -webkit-box-shadow: 0px -1px 12px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px -1px 12px 0px rgba(0, 0, 0, 0.1); }
          #topbar .action-list .search-bar #topbar-search .autocomplete-dropdown .angucomplete-wrapper {
            max-height: 200px;
            overflow: hidden; }
          #topbar .action-list .search-bar #topbar-search .autocomplete-dropdown .angucomplete-searching {
            height: 38px;
            line-height: 38px;
            margin: 0;
            padding: 0 10px;
            color: #737373; }
          #topbar .action-list .search-bar #topbar-search .autocomplete-dropdown .angucomplete-row {
            height: 38px;
            line-height: 38px;
            margin: 0;
            padding: 0 10px;
            color: #2A2A2A;
            font-size: 14px;
            font-size: 0.875rem; }
            #topbar .action-list .search-bar #topbar-search .autocomplete-dropdown .angucomplete-row:hover {
              background-color: rgba(238, 124, 104, 0.1); }
          #topbar .action-list .search-bar #topbar-search .autocomplete-dropdown .angucomplete-selected-row, #topbar .action-list .search-bar #topbar-search .autocomplete-dropdown .angucomplete-row:hover {
            background-color: rgba(238, 124, 104, 0.1); }
      #topbar .action-list .search-bar .search-icon {
        position: absolute;
        top: 50%;
        right: 0;
        width: 34px;
        height: 38px;
        line-height: 38px;
        text-align: center;
        color: #737373;
        cursor: pointer;
        z-index: 2;
        font-size: 24px;
        font-size: 1.5rem;
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%); }
    #topbar .action-list .action-nav-list {
      height: 100%;
      display: -webkit-inline-flex;
      display: inline-flex; }
      @media screen and (max-width: 1100px) {
        #topbar .action-list .action-nav-list {
          display: none; } }
      #topbar .action-list .action-nav-list .action-nav-item {
        position: relative;
        height: 100%;
        margin: 0 0 0 30px;
        color: #919191;
        font-size: 16px;
        cursor: pointer;
        display: -webkit-inline-flex;
        display: inline-flex;
        -webkit-align-items: center;
        align-items: center; }
        #topbar .action-list .action-nav-list .action-nav-item:first-child {
          margin: 0; }
        #topbar .action-list .action-nav-list .action-nav-item:hover, #topbar .action-list .action-nav-list .action-nav-item.active {
          color: #2A2A2A; }
          #topbar .action-list .action-nav-list .action-nav-item:hover i, #topbar .action-list .action-nav-list .action-nav-item.active i {
            color: #2A2A2A; }
        #topbar .action-list .action-nav-list .action-nav-item i {
          margin: 0 12px 0 0;
          color: #737373;
          font-size: 18px; }
        #topbar .action-list .action-nav-list .action-nav-item .number-tip {
          top: 26px;
          right: -10px;
          background-color: #ee7c68; }
  #topbar .member-dropdown {
    width: 200px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0px -1px 12px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px -1px 12px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px -1px 12px 0px rgba(0, 0, 0, 0.2);
    -webkit-transform-origin: top right;
    -moz-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right; }
    #topbar .member-dropdown:before {
      content: '';
      position: absolute;
      top: -11px;
      right: 16px;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 9px 9px 9px;
      border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent; }
    #topbar .member-dropdown:after {
      content: '';
      position: absolute;
      top: -9px;
      right: 16px;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 9px 9px 9px;
      border-color: transparent transparent #ffffff transparent; }
    #topbar .member-dropdown ul {
      padding: 0; }
      #topbar .member-dropdown ul li {
        height: 50px;
        line-height: 50px;
        padding: 0 20px;
        font-size: 14px;
        -moz-box-shadow: inset 0px 1px 0px 0px #EEEEEE;
        -webkit-box-shadow: inset 0px 1px 0px 0px #EEEEEE;
        box-shadow: inset 0px 1px 0px 0px #EEEEEE; }
        #topbar .member-dropdown ul li:first-child {
          -moz-box-shadow: none;
          -webkit-box-shadow: none;
          box-shadow: none; }
        #topbar .member-dropdown ul li:hover a {
          color: #000; }
        #topbar .member-dropdown ul li:hover .icon {
          color: #2A2A2A; }
        #topbar .member-dropdown ul li a {
          color: #2A2A2A;
          display: -webkit-flex;
          display: flex;
          -webkit-align-items: center;
          align-items: center; }
        #topbar .member-dropdown ul li .icon {
          width: 14px;
          margin-right: 14px;
          color: #737373; }

#footer {
  position: relative;
  width: 100%;
  background-color: #EEEEEE; }
  #footer .content {
    width: calc(100% - 20px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
    overflow: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    #footer .content .info .info-row {
      line-height: 24px;
      margin: 14px 0 0 0;
      color: #000;
      font-size: 14px; }
      #footer .content .info .info-row:first-child {
        margin: 0; }
      #footer .content .info .info-row .info-link {
        color: #ee7c68;
        cursor: pointer; }
        #footer .content .info .info-row .info-link:hover {
          text-decoration: underline; }
    #footer .content .contact .contact-row {
      line-height: 24px;
      margin: 28px 0 0 0;
      color: #000;
      font-size: 14px; }
      #footer .content .contact .contact-row:first-child {
        margin: 0; }
      #footer .content .contact .contact-row .icon-image {
        width: 24px;
        height: 24px;
        margin: 0 12px 0 0;
        float: left;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center; }
      #footer .content .contact .contact-row p {
        color: #ee7c68; }
      #footer .content .contact .contact-row .contact-row-link {
        color: #000;
        cursor: pointer; }
        #footer .content .contact .contact-row .contact-row-link:hover {
          text-decoration: underline; }
    #footer .content .line-qrcode {
      font-size: 18px;
      color: #000000;
      text-align: center; }
      #footer .content .line-qrcode img {
        display: block;
        margin: 0 0 8px 0; }

#float-bar {
  position: fixed;
  right: 10px;
  bottom: 100px;
  width: 60px;
  overflow: hidden; }
  #float-bar .float-button {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 3px;
    background-color: rgba(42, 42, 42, 0.8);
    font-weight: 600;
    color: #fff;
    float: left;
    cursor: pointer;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column; }
    #float-bar .float-button.to-top {
      opacity: 0;
      visibility: hidden;
      font-size: 28px;
      font-size: 1.75rem;
      -moz-transition: all 0.5s;
      -o-transition: all 0.5s;
      -webkit-transition: all 0.5s;
      transition: all 0.5s; }
      #float-bar .float-button.to-top.button-show {
        opacity: 1;
        visibility: visible; }
      #float-bar .float-button.to-top .button-text {
        font-size: 12px;
        font-size: 0.75rem; }
    #float-bar .float-button.service .button-icon {
      font-size: 20px;
      font-size: 1.25rem; }
    #float-bar .float-button.service img {
      position: absolute;
      width: 35px;
      top: 5px;
      left: 50%;
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%); }
    #float-bar .float-button.service .button-text {
      position: absolute;
      bottom: 5px;
      left: 50%;
      white-space: nowrap;
      font-size: 14px;
      font-size: 0.875rem;
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%); }
    #float-bar .float-button.cart {
      background-color: #388d81;
      -webkit-transition: all 250ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
      -moz-transition: all 250ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
      -o-transition: all 250ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
      transition: all 250ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
      /* custom */
      -webkit-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
      -moz-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
      -o-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
      transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
      /* custom */ }
      #float-bar .float-button.cart:hover {
        background-color: #3f9f92; }
      #float-bar .float-button.cart .button-text {
        font-size: 14px;
        font-size: 0.875rem; }
  @media screen and (max-width: 1400px) {
    #float-bar {
      display: none; } }

.show-hide-btn {
  position: relative;
  display: inline-block;
  margin-left: -40px;
  color: #000;
  vertical-align: middle;
  cursor: pointer;
  white-space: nowrap;
  font-size: 12px;
  font-size: 0.75rem;
  -moz-transform: translateX(-20%);
  -ms-transform: translateX(-20%);
  -webkit-transform: translateX(-20%);
  transform: translateX(-20%);
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none; }
  .show-hide-btn.hide-btn .password-hide {
    display: inline; }
  .show-hide-btn.show-btn .password-show {
    display: inline; }
  .show-hide-btn .password-show {
    display: none; }
  .show-hide-btn .password-hide {
    display: none; }

.orderitem-spec .orderitem-spec-row {
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: #484848;
  line-height: 1.8em;
  white-space: normal;
  font-size: 12px;
  font-size: 0.75rem; }
  .orderitem-spec .orderitem-spec-row .process:after {
    content: "、"; }
  .orderitem-spec .orderitem-spec-row .process:last-child:after {
    content: ""; }
  .orderitem-spec .orderitem-spec-row .color {
    display: inline-block;
    vertical-align: text-bottom;
    width: 30px;
    height: 1.4em;
    border: 1px solid #CCC;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
  .orderitem-spec .orderitem-spec-row .clothing-label {
    display: inline-block;
    min-width: 16px; }

.offeritem-spec .offeritem-spec-row {
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: #484848;
  line-height: 1.8em;
  white-space: normal;
  font-size: 12px;
  font-size: 0.75rem; }
  .offeritem-spec .offeritem-spec-row .process:after {
    content: "、"; }
  .offeritem-spec .offeritem-spec-row .process:last-child:after {
    content: ""; }
  .offeritem-spec .offeritem-spec-row .color {
    display: inline-block;
    vertical-align: text-bottom;
    width: 30px;
    height: 1.4em;
    border: 1px solid #CCC;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
  .offeritem-spec .offeritem-spec-row .clothing-label {
    display: inline-block;
    min-width: 16px; }

#community {
  display: block;
  width: 100%; }
  #community .container-flex-sharp-wrapper {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%); }
    #community .container-flex-sharp-wrapper ul {
      padding: 10px;
      margin: 0;
      list-style: none; }
      #community .container-flex-sharp-wrapper ul li {
        padding: 10px;
        font-size: 30px;
        border-radius: 50%;
        margin: 5px;
        cursor: pointer; }
      #community .container-flex-sharp-wrapper ul li:first-child {
        background-color: #000000; }
        #community .container-flex-sharp-wrapper ul li:first-child i {
          color: #FFFFFF; }
      #community .container-flex-sharp-wrapper ul li:nth-child(2) {
        background-color: limegreen; }
        #community .container-flex-sharp-wrapper ul li:nth-child(2) i {
          color: #FFFFFF; }
      #community .container-flex-sharp-wrapper ul li:nth-child(3) {
        background-color: mediumvioletred; }
        #community .container-flex-sharp-wrapper ul li:nth-child(3) i {
          color: #FFFFFF; }
      #community .container-flex-sharp-wrapper ul li:last-child {
        background-color: #4e6eb8; }
        #community .container-flex-sharp-wrapper ul li:last-child i {
          color: #FFFFFF; }

#login-modal .md-content {
  position: relative;
  width: 400px;
  min-width: 400px;
  max-width: 400px;
  margin-top: 100px;
  overflow: hidden;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px; }
#login-modal .content {
  position: relative;
  padding: 30px; }
#login-modal .header {
  margin: 0 0 30px 0;
  text-align: center; }
#login-modal .tab-group {
  margin: 0 0 20px 0;
  background-color: #EEEEEE;
  display: -webkit-flex;
  display: flex;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px; }
  #login-modal .tab-group .tab {
    display: inline-block;
    height: 44px;
    line-height: 44px;
    color: #484848;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
    -webkit-flex: 1;
    flex: 1;
    font-size: 16px;
    font-size: 1rem;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
    #login-modal .tab-group .tab.active {
      color: #FFFFFF;
      background-color: #ee7c68; }
#login-modal .input-form {
  margin: 0 0 12px 0; }
  #login-modal .input-form.password input {
    padding: 0 52px 0 12px; }
  #login-modal .input-form.error.password input {
    padding: 0px 70px 0 12px; }
  #login-modal .input-form.error.password .show-hide-btn {
    -moz-transform: translateX(-80%);
    -ms-transform: translateX(-80%);
    -webkit-transform: translateX(-80%);
    transform: translateX(-80%); }
  #login-modal .input-form.error input {
    border: 1px solid #FF2C22;
    padding: 0 30px 0 12px;
    color: #FF2C22; }
  #login-modal .input-form.error i {
    display: block; }
  #login-modal .input-form input {
    height: 50px;
    line-height: 48px;
    border: 1px solid #ddd;
    color: #2A2A2A; }
  #login-modal .input-form .error-icon {
    display: none;
    position: absolute;
    top: 50%;
    right: 12px;
    color: #FF2C22;
    font-size: 18px;
    font-size: 1.125rem;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
#login-modal .login-hint {
  position: relative;
  margin: 0 0 12px 0;
  height: 20px; }
  #login-modal .login-hint .resend-invitation {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    color: #919191;
    font-size: 14px;
    font-size: 0.875rem; }
    #login-modal .login-hint .resend-invitation:hover {
      color: #737373;
      text-decoration: underline; }
  #login-modal .login-hint .forget-pwd {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    color: #919191;
    font-size: 14px;
    font-size: 0.875rem; }
    #login-modal .login-hint .forget-pwd:hover {
      color: #737373;
      text-decoration: underline; }
#login-modal .error-wrapper .error-msg {
  padding: 4px 0;
  text-align: center;
  color: #FF2C22;
  font-size: 13px;
  font-size: 0.8125rem; }
#login-modal .button {
  position: relative;
  display: block;
  height: 44px;
  line-height: 44px;
  margin: 0 0 12px 0;
  padding: 0;
  border: none;
  color: #fff;
  font-size: 16px;
  font-size: 1rem; }
  #login-modal .button:last-child {
    margin: 0; }
  #login-modal .button.facebook {
    background-color: #3667BC; }
    #login-modal .button.facebook:hover {
      background-color: ligten(#3667BC, 5%); }
  #login-modal .button.login {
    background-color: #ee7c68; }
    #login-modal .button.login:hover {
      background-color: ligten(#ee7c68, 5%); }
  #login-modal .button .button-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 44px;
    font-size: 24px;
    font-size: 1.5rem;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center; }
    #login-modal .button .button-icon i {
      margin: auto; }
#login-modal .footer {
  height: 44px;
  line-height: 44px;
  background-color: #FFFFFF;
  text-align: center;
  color: #4A4A4A;
  font-size: 14px;
  font-size: 0.875rem;
  -moz-box-shadow: inset 0 1px 0 0 #ddd;
  -webkit-box-shadow: inset 0 1px 0 0 #ddd;
  box-shadow: inset 0 1px 0 0 #ddd; }
  #login-modal .footer .link {
    color: #ee7c68;
    cursor: pointer; }
    #login-modal .footer .link:hover {
      text-decoration: underline; }

#forgot-password-modal .md-close {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 20px;
  font-size: 1.25rem; }
#forgot-password-modal .md-content {
  position: relative;
  width: 400px;
  min-width: 400px;
  max-width: 400px;
  padding: 40px;
  text-align: center; }
  #forgot-password-modal .md-content .title {
    line-height: 36px;
    margin-bottom: 12px;
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    font-size: 1.25rem; }
  #forgot-password-modal .md-content .description {
    line-height: 23px;
    margin-bottom: 24px;
    color: #2A2A2A;
    text-align: center;
    font-size: 14px;
    font-size: 0.875rem; }
  #forgot-password-modal .md-content .input-form {
    margin: 0 0 12px 0; }
    #forgot-password-modal .md-content .input-form.password input {
      padding: 0 52px 0 12px; }
    #forgot-password-modal .md-content .input-form.error.password input {
      padding: 0px 70px 0 12px; }
    #forgot-password-modal .md-content .input-form.error.password .show-hide-btn {
      -moz-transform: translateX(-80%);
      -ms-transform: translateX(-80%);
      -webkit-transform: translateX(-80%);
      transform: translateX(-80%); }
    #forgot-password-modal .md-content .input-form.error input {
      border: 1px solid #FF2C22;
      padding: 0 30px 0 12px;
      color: #FF2C22; }
    #forgot-password-modal .md-content .input-form.error i {
      display: block; }
    #forgot-password-modal .md-content .input-form input {
      height: 50px;
      line-height: 48px;
      border: 1px solid #ddd;
      color: #2A2A2A; }
    #forgot-password-modal .md-content .input-form .error-icon {
      display: none;
      position: absolute;
      top: 50%;
      right: 12px;
      color: #FF2C22;
      font-size: 18px;
      font-size: 1.125rem;
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); }
  #forgot-password-modal .md-content .button {
    width: 100%;
    height: 44px;
    line-height: 44px;
    margin: 10px 0 0 0;
    padding: 0; }
    #forgot-password-modal .md-content .button.blue {
      color: #FFFFFF;
      font-size: 14px;
      font-size: 0.875rem; }
    #forgot-password-modal .md-content .button.gray {
      color: #9B9B9B;
      font-size: 14px;
      font-size: 0.875rem; }

#message-box .md-close {
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: #A79E9D;
  font-size: 24px;
  font-size: 1.5rem; }
#message-box .md-content {
  position: relative;
  width: 400px;
  min-width: 400px;
  max-width: 400px;
  padding: 0;
  overflow: hidden;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px; }
#message-box .content {
  padding: 40px;
  text-align: center; }
  #message-box .content img {
    margin-bottom: 20px; }
  #message-box .content .msg-title {
    height: 25px;
    line-height: 25px;
    margin-bottom: 12px;
    font-size: 18px;
    color: #565151;
    font-weight: bold; }
  #message-box .content .msg-desc {
    max-height: 40px;
    line-height: 20px;
    font-size: 13px;
    color: #4A4A4A; }
  #message-box .content i {
    display: block;
    width: 100px;
    color: #ee7c68;
    font-size: 80px;
    margin: 0 auto 10px; }
    #message-box .content i.error {
      color: #FF2C22; }
  #message-box .content .msg-button {
    margin-top: 10px;
    height: 40px;
    padding: 0;
    line-height: 40px;
    cursor: pointer; }
    #message-box .content .msg-button.start {
      color: #FFF;
      background-color: #ee7c68; }

/*================================
	裁切圖片
	Author : Tim
================================*/
#image-crop-modal .md-content {
  position: relative;
  padding: 30px 0;
  width: auto;
  max-width: 600px;
  min-width: 500px;
  overflow: hidden;
  text-align: center;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px; }
#image-crop-modal.md-show {
  z-index: 1000004; }
#image-crop-modal .user-info-content .title {
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 24px;
  color: #333; }
#image-crop-modal .user-info-content .desc {
  margin: 0;
  margin-bottom: 20px;
  line-height: 24px;
  font-size: 14px;
  color: #ACACAC; }
#image-crop-modal .crop-img {
  margin-bottom: 20px;
  text-align: center; }
  #image-crop-modal .crop-img img {
    max-width: 100vw;
    max-height: 350px; }
#image-crop-modal .button {
  width: 80px;
  height: 40px;
  line-height: 40px;
  margin: 0 auto;
  color: #FFF;
  background-color: #14A5FF; }

.crop-zindex .md-overlay {
  z-index: 1000003; }

#reset-pw-modal .md-close {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 20px;
  font-size: 1.25rem; }
#reset-pw-modal .md-content {
  position: relative;
  width: 400px;
  min-width: 400px;
  max-width: 400px;
  padding: 0;
  overflow: hidden;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px; }
#reset-pw-modal .header {
  position: relative;
  height: 70px;
  line-height: 70px;
  margin: 0;
  background-color: #FAFAFA;
  color: #323133;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  font-size: 1.25rem;
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px;
  border-radius: 4px 4px 0 0;
  -moz-box-shadow: inset 0px -1px 0px 0px #DDDDDD;
  -webkit-box-shadow: inset 0px -1px 0px 0px #DDDDDD;
  box-shadow: inset 0px -1px 0px 0px #DDDDDD; }
#reset-pw-modal .content {
  padding: 20px; }
  #reset-pw-modal .content .button {
    position: relative;
    display: inline-block;
    height: 50px;
    width: 200px;
    margin: 0;
    margin-right: 10px;
    line-height: 50px;
    padding: 0;
    border: none;
    color: #FFF;
    background-color: #ee7c68;
    font-size: 16px;
    font-size: 1rem; }
    #reset-pw-modal .content .button.cancel {
      margin-right: 0;
      width: calc(100% - 215px);
      background-color: #737373; }
  #reset-pw-modal .content .input-form {
    margin: 0 0 12px 0; }
    #reset-pw-modal .content .input-form.password input {
      padding: 0 52px 0 12px; }
    #reset-pw-modal .content .input-form.error.password input {
      padding: 0px 70px 0 12px; }
    #reset-pw-modal .content .input-form.error.password .show-hide-btn {
      -moz-transform: translateX(-80%);
      -ms-transform: translateX(-80%);
      -webkit-transform: translateX(-80%);
      transform: translateX(-80%); }
    #reset-pw-modal .content .input-form.error input {
      border: 1px solid #FF2C22;
      padding: 0 30px 0 12px;
      color: #FF2C22; }
    #reset-pw-modal .content .input-form.error i {
      display: block; }
    #reset-pw-modal .content .input-form input {
      height: 50px;
      line-height: 48px;
      border: 1px solid #ddd;
      color: #2A2A2A; }
    #reset-pw-modal .content .input-form .error-icon {
      display: none;
      position: absolute;
      top: 50%;
      right: 12px;
      color: #FF2C22;
      font-size: 18px;
      font-size: 1.125rem;
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); }

#confirm-modal .md-content {
  width: 316px;
  min-width: 316px;
  max-width: 316px;
  height: auto;
  padding: 30px; }
  #confirm-modal .md-content .title {
    color: #333;
    text-align: center;
    font-size: 20px;
    font-size: 1.25rem; }
  #confirm-modal .md-content .description {
    color: #2A2A2A;
    text-align: center;
    font-size: 14px;
    font-size: 0.875rem; }
  #confirm-modal .md-content .button-group {
    display: -webkit-flex;
    display: flex; }
    #confirm-modal .md-content .button-group .button.submit {
      margin-right: 8px;
      -webkit-flex: 1;
      flex: 1; }
  #confirm-modal .md-content .error {
    text-align: center;
    color: #FF2C22; }

#confirm-with-checkbox-modal .md-content {
  width: 350px;
  min-width: 350px;
  max-width: 350px;
  height: auto;
  padding: 30px; }
  #confirm-with-checkbox-modal .md-content .title {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-size: 1.25rem; }
  #confirm-with-checkbox-modal .md-content .description {
    color: #737373;
    text-align: center;
    font-size: 14px;
    font-size: 0.875rem; }
  #confirm-with-checkbox-modal .md-content .checkbox-item {
    height: 40px;
    cursor: pointer; }
    #confirm-with-checkbox-modal .md-content .checkbox-item .checkbox {
      margin: 0 6px 0 0; }
  #confirm-with-checkbox-modal .md-content .button-group {
    display: -webkit-flex;
    display: flex; }
    #confirm-with-checkbox-modal .md-content .button-group .button.submit {
      margin-right: 8px;
      -webkit-flex: 1;
      flex: 1; }
    #confirm-with-checkbox-modal .md-content .button-group .button.cancel {
      min-width: 100px; }
  #confirm-with-checkbox-modal .md-content .error {
    text-align: center;
    color: #FF2C22; }

#edit-address-modal .md-close {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 20px;
  font-size: 1.25rem; }
#edit-address-modal .md-content {
  position: relative;
  width: auto;
  max-width: 100%;
  padding: 0;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px; }
#edit-address-modal .header {
  position: relative;
  height: 70px;
  line-height: 70px;
  margin: 0;
  background-color: #FAFAFA;
  color: #323133;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  font-size: 1.25rem;
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px;
  border-radius: 4px 4px 0 0;
  -moz-box-shadow: inset 0px -1px 0px 0px #DDDDDD;
  -webkit-box-shadow: inset 0px -1px 0px 0px #DDDDDD;
  box-shadow: inset 0px -1px 0px 0px #DDDDDD; }
#edit-address-modal .content {
  padding: 20px;
  overflow: hidden; }
  #edit-address-modal .content .input-wrapper {
    display: inline-block;
    width: 300px;
    float: left; }
    #edit-address-modal .content .input-wrapper.large {
      display: block;
      width: 600px;
      margin-top: 20px;
      clear: left; }
  #edit-address-modal .content .input-form {
    margin-bottom: 20px; }
    #edit-address-modal .content .input-form:last-child {
      margin-bottom: 0; }
    #edit-address-modal .content .input-form.align-top {
      -webkit-align-items: flex-start;
      align-items: flex-start; }
    #edit-address-modal .content .input-form.error input, #edit-address-modal .content .input-form.error textarea {
      border: 1px solid #FF2C22;
      color: #FF2C22; }
    #edit-address-modal .content .input-form label {
      width: 55px;
      min-width: 55px;
      color: #333333;
      text-align: right;
      font-size: 13px;
      font-size: 0.8125rem; }
    #edit-address-modal .content .input-form input {
      height: 40px;
      line-height: 38px;
      border: 1px solid #919191;
      color: #333333;
      font-size: 13px;
      font-size: 0.8125rem;
      -moz-border-radius: 3px;
      -webkit-border-radius: 3px;
      border-radius: 3px; }
    #edit-address-modal .content .input-form textarea {
      border: 1px solid #919191;
      color: #333333;
      font-size: 13px;
      font-size: 0.8125rem;
      -moz-border-radius: 3px;
      -webkit-border-radius: 3px;
      border-radius: 3px; }
  #edit-address-modal .content .input-autocomplete {
    position: absolute;
    width: 50%;
    top: 250px;
    left: 95px;
    z-index: 1000;
    background-color: #fff;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -moz-box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.4); }
    #edit-address-modal .content .input-autocomplete .city {
      display: inline-block;
      width: 23%;
      padding: 10px;
      max-height: 50px;
      text-align: center;
      cursor: pointer; }
    #edit-address-modal .content .input-autocomplete .dist {
      display: inline-block;
      width: 70px;
      padding: 10px;
      max-height: 50px;
      text-align: center;
      cursor: pointer; }
    #edit-address-modal .content .input-autocomplete.districtMode {
      width: 300px; }
#edit-address-modal .footer {
  width: 100%;
  height: 70px;
  background-color: #FAFAFA;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-box-shadow: inset 0px 1px 0px 0px #DDDDDD;
  -webkit-box-shadow: inset 0px 1px 0px 0px #DDDDDD;
  box-shadow: inset 0px 1px 0px 0px #DDDDDD; }
  #edit-address-modal .footer .button {
    height: 44px;
    line-height: 44px;
    margin: 0 5px;
    border: none;
    font-weight: 600;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
    #edit-address-modal .footer .button.submit {
      padding: 0 50px;
      background-color: #ee7c68;
      color: #fff; }
      #edit-address-modal .footer .button.submit:hover {
        background-color: #ee7c68; }
    #edit-address-modal .footer .button.cancel {
      padding: 0 30px;
      background-color: #E4E4E4;
      color: #484848; }
      #edit-address-modal .footer .button.cancel:hover {
        background-color: #E4E4E4; }

#select-address-modal .md-close {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 20px;
  font-size: 1.25rem; }
#select-address-modal .md-content {
  position: relative;
  width: 90%;
  min-width: 960px;
  max-width: 960px;
  padding: 0;
  overflow: hidden;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px; }
#select-address-modal .title {
  position: relative;
  height: 70px;
  line-height: 70px;
  margin: 0;
  background-color: #FAFAFA;
  color: #323133;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  font-size: 1.25rem;
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px;
  border-radius: 4px 4px 0 0;
  -moz-box-shadow: inset 0px -1px 0px 0px #DDDDDD;
  -webkit-box-shadow: inset 0px -1px 0px 0px #DDDDDD;
  box-shadow: inset 0px -1px 0px 0px #DDDDDD; }
#select-address-modal .content {
  position: relative;
  height: 500px;
  overflow: hidden; }

#confirm-refund-modal .md-close {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 20px;
  font-size: 1.25rem; }
#confirm-refund-modal .md-content {
  position: relative;
  width: auto;
  max-width: 100%;
  padding: 0;
  overflow: hidden;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px; }
#confirm-refund-modal .header {
  position: relative;
  height: 70px;
  line-height: 70px;
  margin: 0;
  background-color: #FAFAFA;
  color: #323133;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  font-size: 1.25rem;
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px;
  border-radius: 4px 4px 0 0;
  -moz-box-shadow: inset 0px -1px 0px 0px #DDDDDD;
  -webkit-box-shadow: inset 0px -1px 0px 0px #DDDDDD;
  box-shadow: inset 0px -1px 0px 0px #DDDDDD; }
#confirm-refund-modal .content {
  padding: 20px;
  overflow: hidden; }
  #confirm-refund-modal .content .input-form.error input, #confirm-refund-modal .content .input-form.error textarea {
    border: 1px solid #FF2C22;
    color: #FF2C22; }
  #confirm-refund-modal .content .input-form input {
    height: 40px;
    line-height: 38px;
    border: 1px solid #CCCCCC;
    color: #6C6666;
    font-size: 13px;
    font-size: 0.8125rem;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
  #confirm-refund-modal .content .input-form textarea {
    margin-bottom: 10px;
    border: 1px solid #CCCCCC;
    color: #6C6666;
    font-size: 13px;
    font-size: 0.8125rem;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
  #confirm-refund-modal .content .upload-wrapper .button.upload {
    position: relative;
    height: 30px;
    line-height: 30px;
    margin: 0 10px 0 0;
    background-color: #388d81;
    color: #FFF; }
    #confirm-refund-modal .content .upload-wrapper .button.upload:hover {
      background-color: #388d81; }
    #confirm-refund-modal .content .upload-wrapper .button.upload input {
      position: absolute;
      top: 0;
      left: 0;
      width: 1px;
      height: 1px; }
  #confirm-refund-modal .content .upload-wrapper .file {
    display: inline-block;
    max-width: 250px;
    margin: 0 10px 0 0;
    color: #2A2A2A; }
  #confirm-refund-modal .content .upload-wrapper .remove {
    color: #0071C5;
    text-decoration: underline;
    cursor: pointer; }
#confirm-refund-modal .footer {
  width: 100%;
  height: 70px;
  background-color: #FAFAFA;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-box-shadow: inset 0px 1px 0px 0px #DDDDDD;
  -webkit-box-shadow: inset 0px 1px 0px 0px #DDDDDD;
  box-shadow: inset 0px 1px 0px 0px #DDDDDD; }
  #confirm-refund-modal .footer .button {
    height: 44px;
    line-height: 44px;
    margin: 0 5px;
    border: none;
    font-weight: 600;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
    #confirm-refund-modal .footer .button.submit {
      padding: 0 50px;
      background-color: #FF2C22;
      color: #fff; }
      #confirm-refund-modal .footer .button.submit:hover {
        background-color: #FF2C22; }
    #confirm-refund-modal .footer .button.cancel {
      padding: 0 30px;
      background-color: #E4E4E4;
      color: #6C6666; }
      #confirm-refund-modal .footer .button.cancel:hover {
        background-color: #E4E4E4; }

#logout-alert .md-close {
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: #A79E9D;
  font-size: 24px;
  font-size: 1.5rem; }
#logout-alert .md-content {
  position: relative;
  width: 400px;
  min-width: 400px;
  max-width: 400px;
  padding: 40px;
  overflow: hidden;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px; }
#logout-alert .status-message {
  width: auto; }

#dpi-support-modal .md-wrapper {
  height: 100vh;
  width: 100vw; }
#dpi-support-modal .md-content {
  width: 316px;
  min-width: 316px;
  max-width: 316px;
  height: auto;
  padding: 30px; }
  #dpi-support-modal .md-content .title {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-size: 1.25rem; }
  #dpi-support-modal .md-content .description {
    color: #2A2A2A;
    text-align: center;
    font-size: 14px;
    font-size: 0.875rem; }
  #dpi-support-modal .md-content .button-group {
    text-align: center; }
    #dpi-support-modal .md-content .button-group .button {
      width: 120px; }

#atm-notification-modal .md-content {
  width: 500px;
  min-width: 500px;
  max-width: 500px;
  height: auto;
  padding: 30px; }
  #atm-notification-modal .md-content .description {
    color: #2A2A2A;
    font-size: 15px;
    font-size: 0.9375rem; }
  #atm-notification-modal .md-content .button-group {
    text-align: right; }
    #atm-notification-modal .md-content .button-group .button {
      height: 36px;
      line-height: 36px; }

#no-email-notification .md-wrapper {
  height: 100vh;
  width: 100vw; }
#no-email-notification .md-content {
  width: 316px;
  min-width: 316px;
  max-width: 316px;
  height: auto;
  padding: 30px; }
  #no-email-notification .md-content .title {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-size: 1.25rem; }
  #no-email-notification .md-content .description {
    color: #2A2A2A;
    text-align: center;
    font-size: 14px;
    font-size: 0.875rem; }
  #no-email-notification .md-content .button-group {
    text-align: center; }
    #no-email-notification .md-content .button-group .button {
      width: 120px; }

#activity-apply-modal .md-close {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 20px;
  font-size: 1.25rem; }
#activity-apply-modal .md-prev {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  color: #737373;
  z-index: 1;
  font-size: 20px;
  font-size: 1.25rem; }
  #activity-apply-modal .md-prev:hover {
    color: #000;
    cursor: pointer; }
#activity-apply-modal .md-content {
  position: relative;
  width: 100%;
  min-width: 400px;
  max-width: 400px;
  padding: 0;
  overflow: hidden;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s; }
  #activity-apply-modal .md-content.profile-content {
    max-width: 640px; }
#activity-apply-modal .title {
  line-height: 36px;
  margin: 12px 0;
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem; }
#activity-apply-modal .description {
  line-height: 23px;
  margin: 0;
  color: #2A2A2A;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem; }
#activity-apply-modal .content {
  padding: 20px; }
  #activity-apply-modal .content.success {
    padding: 40px; }
  #activity-apply-modal .content .input-wrapper {
    display: inline-block;
    width: 50%;
    padding-right: 20px;
    float: left; }
  #activity-apply-modal .content .button {
    position: relative;
    display: block;
    height: 50px;
    line-height: 50px;
    padding: 0;
    border: none;
    color: #fff;
    font-size: 16px;
    font-size: 1rem; }
    #activity-apply-modal .content .button.submit {
      margin: 0 0 12px 0;
      background-color: #0071C5;
      clear: left; }
      #activity-apply-modal .content .button.submit:hover {
        background-color: #0071C5; }
  #activity-apply-modal .content .divide {
    position: relative;
    width: 100%;
    height: 1px;
    margin: 36px auto;
    background-color: #C6BDBC;
    white-space: nowrap; }
    #activity-apply-modal .content .divide .msg {
      position: absolute;
      top: 0;
      left: 50%;
      padding: 0 34px;
      background-color: #fff;
      color: #8A807F;
      letter-spacing: 0.29px;
      font-size: 14px;
      font-size: 0.875rem;
      -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
      -webkit-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%); }
  #activity-apply-modal .content .label {
    display: block;
    line-height: 20px;
    margin: 0 0 7px 0;
    font-weight: 600;
    color: #2A2A2A;
    font-size: 13px;
    font-size: 0.8125rem; }
    #activity-apply-modal .content .label .tip {
      font-weight: 400;
      color: #737373; }
  #activity-apply-modal .content .input-form {
    margin: 0 0 12px 0; }
    #activity-apply-modal .content .input-form.password input {
      padding: 0 52px 0 12px; }
    #activity-apply-modal .content .input-form.error.password input {
      padding: 0px 70px 0 12px; }
    #activity-apply-modal .content .input-form.error.password .show-hide-btn {
      -moz-transform: translateX(-80%);
      -ms-transform: translateX(-80%);
      -webkit-transform: translateX(-80%);
      transform: translateX(-80%); }
    #activity-apply-modal .content .input-form.error input {
      border: 1px solid #FF2C22;
      padding: 0 30px 0 12px;
      color: #FF2C22; }
    #activity-apply-modal .content .input-form.error i {
      display: block; }
    #activity-apply-modal .content .input-form input {
      height: 50px;
      line-height: 48px;
      border: 1px solid #ddd;
      color: #2A2A2A; }
    #activity-apply-modal .content .input-form .error-icon {
      display: none;
      position: absolute;
      top: 50%;
      right: 12px;
      color: #FF2C22;
      font-size: 18px;
      font-size: 1.125rem;
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); }
  #activity-apply-modal .content .image {
    display: block;
    margin: 0 auto 20px auto; }
  #activity-apply-modal .content .title {
    line-height: 25px;
    margin: 0 0 12px 0;
    font-weight: 600;
    color: #565151;
    text-align: center;
    font-size: 18px;
    font-size: 1.125rem; }
  #activity-apply-modal .content .description {
    line-height: 19.5px;
    margin: 0;
    color: #2A2A2A;
    text-align: center;
    font-size: 13px;
    font-size: 0.8125rem; }
  #activity-apply-modal .content .date {
    color: #0071C5; }

#resend-invitation-modal .md-close {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 20px;
  font-size: 1.25rem; }
#resend-invitation-modal .md-content {
  position: relative;
  width: 400px;
  min-width: 400px;
  max-width: 400px;
  padding: 40px;
  text-align: center; }
  #resend-invitation-modal .md-content .title {
    line-height: 36px;
    margin-bottom: 12px;
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    font-size: 1.25rem; }
  #resend-invitation-modal .md-content .description {
    line-height: 23px;
    margin-bottom: 24px;
    color: #2A2A2A;
    text-align: center;
    font-size: 14px;
    font-size: 0.875rem; }
  #resend-invitation-modal .md-content .input-form {
    margin: 0 0 12px 0; }
    #resend-invitation-modal .md-content .input-form.password input {
      padding: 0 52px 0 12px; }
    #resend-invitation-modal .md-content .input-form.error.password input {
      padding: 0px 70px 0 12px; }
    #resend-invitation-modal .md-content .input-form.error.password .show-hide-btn {
      -moz-transform: translateX(-80%);
      -ms-transform: translateX(-80%);
      -webkit-transform: translateX(-80%);
      transform: translateX(-80%); }
    #resend-invitation-modal .md-content .input-form.error input {
      border: 1px solid #FF2C22;
      padding: 0 30px 0 12px;
      color: #FF2C22; }
    #resend-invitation-modal .md-content .input-form.error i {
      display: block; }
    #resend-invitation-modal .md-content .input-form input {
      height: 50px;
      line-height: 48px;
      border: 1px solid #ddd;
      color: #2A2A2A; }
    #resend-invitation-modal .md-content .input-form .error-icon {
      display: none;
      position: absolute;
      top: 50%;
      right: 12px;
      color: #FF2C22;
      font-size: 18px;
      font-size: 1.125rem;
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); }
  #resend-invitation-modal .md-content .button {
    width: 100%;
    height: 44px;
    line-height: 44px;
    margin: 10px 0 0 0;
    padding: 0; }
    #resend-invitation-modal .md-content .button.blue {
      color: #FFFFFF;
      font-size: 14px;
      font-size: 0.875rem; }
    #resend-invitation-modal .md-content .button.gray {
      color: #9B9B9B;
      font-size: 14px;
      font-size: 0.875rem; }

#edit-userremark-modal .md-content {
  width: 400px;
  min-width: 400px;
  max-width: 400px;
  height: auto;
  padding: 30px; }
  #edit-userremark-modal .md-content .title {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-size: 1.25rem; }
  #edit-userremark-modal .md-content .description {
    width: 100%;
    height: 100px;
    margin: 20px 0;
    padding: 12px;
    color: #2A2A2A;
    font-size: 14px;
    font-size: 0.875rem; }
  #edit-userremark-modal .md-content .error {
    margin: 0 0 10px 0;
    text-align: center;
    color: #FF2C22; }
  #edit-userremark-modal .md-content .button-group {
    display: -webkit-flex;
    display: flex; }
    #edit-userremark-modal .md-content .button-group .button.submit {
      margin-right: 8px;
      -webkit-flex: 1;
      flex: 1; }

#confirm-extrafee-refund-modal .md-close {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 20px;
  font-size: 1.25rem; }
#confirm-extrafee-refund-modal .md-content {
  position: relative;
  width: auto;
  max-width: 100%;
  padding: 0;
  overflow: hidden;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px; }
#confirm-extrafee-refund-modal .header {
  position: relative;
  height: 70px;
  line-height: 70px;
  margin: 0;
  background-color: #FAFAFA;
  color: #323133;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  font-size: 1.25rem;
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px;
  border-radius: 4px 4px 0 0;
  -moz-box-shadow: inset 0px -1px 0px 0px #DDDDDD;
  -webkit-box-shadow: inset 0px -1px 0px 0px #DDDDDD;
  box-shadow: inset 0px -1px 0px 0px #DDDDDD; }
#confirm-extrafee-refund-modal .content {
  padding: 20px;
  overflow: hidden; }
  #confirm-extrafee-refund-modal .content .input-form.error input, #confirm-extrafee-refund-modal .content .input-form.error textarea {
    border: 1px solid #FF2C22;
    color: #FF2C22; }
  #confirm-extrafee-refund-modal .content .input-form input {
    height: 40px;
    line-height: 38px;
    border: 1px solid #CCCCCC;
    color: #6C6666;
    font-size: 13px;
    font-size: 0.8125rem;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
  #confirm-extrafee-refund-modal .content .input-form textarea {
    margin-bottom: 10px;
    border: 1px solid #CCCCCC;
    color: #6C6666;
    font-size: 13px;
    font-size: 0.8125rem;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
#confirm-extrafee-refund-modal .footer {
  width: 100%;
  height: 70px;
  background-color: #FAFAFA;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-box-shadow: inset 0px 1px 0px 0px #DDDDDD;
  -webkit-box-shadow: inset 0px 1px 0px 0px #DDDDDD;
  box-shadow: inset 0px 1px 0px 0px #DDDDDD; }
  #confirm-extrafee-refund-modal .footer .button {
    height: 44px;
    line-height: 44px;
    margin: 0 5px;
    border: none;
    font-weight: 600;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
    #confirm-extrafee-refund-modal .footer .button.submit {
      padding: 0 50px;
      background-color: #FF2C22;
      color: #fff; }
      #confirm-extrafee-refund-modal .footer .button.submit:hover {
        background-color: #FF2C22; }
    #confirm-extrafee-refund-modal .footer .button.cancel {
      padding: 0 30px;
      background-color: #E4E4E4;
      color: #6C6666; }
      #confirm-extrafee-refund-modal .footer .button.cancel:hover {
        background-color: #E4E4E4; }

#forgot-business-password-modal .md-close {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 20px;
  font-size: 1.25rem; }
#forgot-business-password-modal .md-content {
  position: relative;
  width: 400px;
  min-width: 400px;
  max-width: 400px;
  padding: 40px;
  text-align: center; }
  #forgot-business-password-modal .md-content .title {
    line-height: 36px;
    margin-bottom: 12px;
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    font-size: 1.25rem; }
  #forgot-business-password-modal .md-content .description {
    line-height: 23px;
    margin-bottom: 24px;
    color: #2A2A2A;
    text-align: center;
    font-size: 14px;
    font-size: 0.875rem; }
  #forgot-business-password-modal .md-content .input-form {
    margin: 0 0 12px 0; }
    #forgot-business-password-modal .md-content .input-form.password input {
      padding: 0 52px 0 12px; }
    #forgot-business-password-modal .md-content .input-form.error.password input {
      padding: 0px 70px 0 12px; }
    #forgot-business-password-modal .md-content .input-form.error.password .show-hide-btn {
      -moz-transform: translateX(-80%);
      -ms-transform: translateX(-80%);
      -webkit-transform: translateX(-80%);
      transform: translateX(-80%); }
    #forgot-business-password-modal .md-content .input-form.error input {
      border: 1px solid #FF2C22;
      padding: 0 30px 0 12px;
      color: #FF2C22; }
    #forgot-business-password-modal .md-content .input-form.error i {
      display: block; }
    #forgot-business-password-modal .md-content .input-form input {
      height: 50px;
      line-height: 48px;
      border: 1px solid #ddd;
      color: #2A2A2A; }
    #forgot-business-password-modal .md-content .input-form .error-icon {
      display: none;
      position: absolute;
      top: 50%;
      right: 12px;
      color: #FF2C22;
      font-size: 18px;
      font-size: 1.125rem;
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); }
  #forgot-business-password-modal .md-content .button {
    width: 100%;
    height: 44px;
    line-height: 44px;
    margin: 10px 0 0 0;
    padding: 0; }
    #forgot-business-password-modal .md-content .button.blue {
      color: #FFFFFF;
      font-size: 14px;
      font-size: 0.875rem; }
    #forgot-business-password-modal .md-content .button.gray {
      color: #9B9B9B;
      font-size: 14px;
      font-size: 0.875rem; }

#reset-business-pw-modal .md-close {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 20px;
  font-size: 1.25rem; }
#reset-business-pw-modal .md-content {
  position: relative;
  width: 400px;
  min-width: 400px;
  max-width: 400px;
  padding: 0;
  overflow: hidden;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px; }
#reset-business-pw-modal .header {
  position: relative;
  height: 70px;
  line-height: 70px;
  margin: 0;
  background-color: #FAFAFA;
  color: #323133;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  font-size: 1.25rem;
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px;
  border-radius: 4px 4px 0 0;
  -moz-box-shadow: inset 0px -1px 0px 0px #DDDDDD;
  -webkit-box-shadow: inset 0px -1px 0px 0px #DDDDDD;
  box-shadow: inset 0px -1px 0px 0px #DDDDDD; }
#reset-business-pw-modal .content {
  padding: 20px; }
  #reset-business-pw-modal .content .button {
    position: relative;
    display: inline-block;
    height: 50px;
    width: 200px;
    margin: 0;
    margin-right: 10px;
    line-height: 50px;
    padding: 0;
    border: none;
    color: #FFF;
    background-color: #0071C5;
    font-size: 16px;
    font-size: 1rem; }
    #reset-business-pw-modal .content .button.cancel {
      margin-right: 0;
      width: calc(100% - 215px);
      background-color: #737373; }
  #reset-business-pw-modal .content .input-form {
    margin: 0 0 12px 0; }
    #reset-business-pw-modal .content .input-form.password input {
      padding: 0 52px 0 12px; }
    #reset-business-pw-modal .content .input-form.error.password input {
      padding: 0px 70px 0 12px; }
    #reset-business-pw-modal .content .input-form.error.password .show-hide-btn {
      -moz-transform: translateX(-80%);
      -ms-transform: translateX(-80%);
      -webkit-transform: translateX(-80%);
      transform: translateX(-80%); }
    #reset-business-pw-modal .content .input-form.error input {
      border: 1px solid #FF2C22;
      padding: 0 30px 0 12px;
      color: #FF2C22; }
    #reset-business-pw-modal .content .input-form.error i {
      display: block; }
    #reset-business-pw-modal .content .input-form input {
      height: 50px;
      line-height: 48px;
      border: 1px solid #ddd;
      color: #2A2A2A; }
    #reset-business-pw-modal .content .input-form .error-icon {
      display: none;
      position: absolute;
      top: 50%;
      right: 12px;
      color: #FF2C22;
      font-size: 18px;
      font-size: 1.125rem;
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); }

#create-order-template .md-content {
  overflow: hidden; }
#create-order-template .content .sub-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
  -moz-transition: margin 0.3s;
  -o-transition: margin 0.3s;
  -webkit-transition: margin 0.3s;
  transition: margin 0.3s; }
  #create-order-template .content .sub-content.order-content {
    display: -webkit-flex;
    display: flex; }
  #create-order-template .content .sub-content.without-animation {
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none; }
    #create-order-template .content .sub-content.without-animation .footer {
      -moz-transition: none;
      -o-transition: none;
      -webkit-transition: none;
      transition: none; }
  #create-order-template .content .sub-content.left-hide {
    margin: 0 0 0 -100%; }
    #create-order-template .content .sub-content.left-hide .footer {
      margin: 0 0 0 -100%; }
  #create-order-template .content .sub-content.right-hide {
    margin: 0 0 0 100%; }
    #create-order-template .content .sub-content.right-hide .footer {
      margin: 0 0 0 100%; }
  #create-order-template .content .sub-content .footer {
    -moz-transition: margin 0.3s;
    -o-transition: margin 0.3s;
    -webkit-transition: margin 0.3s;
    transition: margin 0.3s; }
  #create-order-template .content .sub-content .sub-content-title {
    height: 40px;
    line-height: 40px;
    padding: 0 16px;
    color: #484848;
    letter-spacing: 0;
    background-color: #FAFAFA;
    font-size: 14px;
    font-size: 0.875rem;
    -moz-box-shadow: inset 0 -1px 0 0 #DDDDDD, inset -1px 0 0 0 #DDDDDD;
    -webkit-box-shadow: inset 0 -1px 0 0 #DDDDDD, inset -1px 0 0 0 #DDDDDD;
    box-shadow: inset 0 -1px 0 0 #DDDDDD, inset -1px 0 0 0 #DDDDDD; }
  #create-order-template .content .sub-content .select-list {
    position: relative;
    max-height: calc(100% - 80px);
    padding: 0;
    overflow: hidden; }
  #create-order-template .content .sub-content .order-select {
    position: relative;
    -webkit-flex: 1;
    flex: 1;
    -moz-box-shadow: inset -1px 0 0 0 #DDDDDD;
    -webkit-box-shadow: inset -1px 0 0 0 #DDDDDD;
    box-shadow: inset -1px 0 0 0 #DDDDDD; }
    #create-order-template .content .sub-content .order-select .select-tr {
      min-height: 60px;
      cursor: pointer;
      font-size: 13px;
      font-size: 0.8125rem;
      display: -webkit-flex;
      display: flex;
      -moz-box-shadow: inset 0 -1px 0 0 #DDDDDD, inset -1px 0 0 0 #DDDDDD;
      -webkit-box-shadow: inset 0 -1px 0 0 #DDDDDD, inset -1px 0 0 0 #DDDDDD;
      box-shadow: inset 0 -1px 0 0 #DDDDDD, inset -1px 0 0 0 #DDDDDD; }
      #create-order-template .content .sub-content .order-select .select-tr:hover, #create-order-template .content .sub-content .order-select .select-tr.active {
        background-color: rgba(0, 113, 197, 0.05); }
        #create-order-template .content .sub-content .order-select .select-tr:hover .select-td, #create-order-template .content .sub-content .order-select .select-tr.active .select-td {
          color: #0071C5; }
      #create-order-template .content .sub-content .order-select .select-tr.tr-header {
        min-height: 40px;
        cursor: auto;
        -moz-box-shadow: inset 0 -1px 0 0 #DDDDDD;
        -webkit-box-shadow: inset 0 -1px 0 0 #DDDDDD;
        box-shadow: inset 0 -1px 0 0 #DDDDDD; }
        #create-order-template .content .sub-content .order-select .select-tr.tr-header:hover, #create-order-template .content .sub-content .order-select .select-tr.tr-header.active {
          background-color: transparent; }
          #create-order-template .content .sub-content .order-select .select-tr.tr-header:hover .select-td, #create-order-template .content .sub-content .order-select .select-tr.tr-header.active .select-td {
            color: #484848; }
      #create-order-template .content .sub-content .order-select .select-tr .select-td {
        min-width: 0;
        padding: 6px 0;
        color: #484848;
        -webkit-flex: 1;
        flex: 1;
        display: -webkit-inline-flex;
        display: inline-flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center; }
        #create-order-template .content .sub-content .order-select .select-tr .select-td.custom-width {
          -webkit-flex: none;
          flex: none; }
        #create-order-template .content .sub-content .order-select .select-tr .select-td.loading {
          height: 100px;
          -webkit-justify-content: center;
          justify-content: center; }
        #create-order-template .content .sub-content .order-select .select-tr .select-td .image {
          width: 40px;
          height: 40px;
          background-color: #eee;
          background-repeat: no-repeat;
          background-size: cover;
          background-position: center center;
          -moz-border-radius: 3px;
          -webkit-border-radius: 3px;
          border-radius: 3px; }
        #create-order-template .content .sub-content .order-select .select-tr .select-td .arrow-icon {
          font-size: 18px;
          font-size: 1.125rem; }
  #create-order-template .content .sub-content .orderitem-select {
    position: relative;
    -webkit-flex: 1;
    flex: 1; }
    #create-order-template .content .sub-content .orderitem-select .orderitem-tr {
      position: relative;
      height: 60px;
      padding: 0 16px;
      cursor: pointer;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center;
      -moz-box-shadow: inset 0 -1px 0 0 #DDDDDD, inset -1px 0 0 0 #DDDDDD;
      -webkit-box-shadow: inset 0 -1px 0 0 #DDDDDD, inset -1px 0 0 0 #DDDDDD;
      box-shadow: inset 0 -1px 0 0 #DDDDDD, inset -1px 0 0 0 #DDDDDD; }
      #create-order-template .content .sub-content .orderitem-select .orderitem-tr .checkbox-form {
        margin: 0 16px 0 0; }
        #create-order-template .content .sub-content .orderitem-select .orderitem-tr .checkbox-form .checkbox {
          font-weight: 600;
          -moz-border-radius: 0;
          -webkit-border-radius: 0;
          border-radius: 0; }
      #create-order-template .content .sub-content .orderitem-select .orderitem-tr .image {
        width: 40px;
        height: 40px;
        margin: 0 12px 0 0;
        background-color: #eee;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px; }
        #create-order-template .content .sub-content .orderitem-select .orderitem-tr .image.file-image {
          background-color: #fff;
          background-size: contain; }
      #create-order-template .content .sub-content .orderitem-select .orderitem-tr .text-wrapper {
        color: #484848;
        font-size: 13px;
        font-size: 0.8125rem; }
        #create-order-template .content .sub-content .orderitem-select .orderitem-tr .text-wrapper .product-name {
          margin: 0 0 4px 0; }
        #create-order-template .content .sub-content .orderitem-select .orderitem-tr .text-wrapper .file-name {
          color: #484848;
          text-decoration: underline; }
  #create-order-template .content .sub-content .status-message {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%); }
    #create-order-template .content .sub-content .status-message .status-icon {
      color: #777;
      font-size: 54px;
      font-size: 3.375rem; }
    #create-order-template .content .sub-content .status-message .status-title {
      margin: 0 auto 10px auto;
      color: #777; }
    #create-order-template .content .sub-content .status-message .status-description {
      width: 360px;
      line-height: 24px;
      margin: 0 auto;
      color: #777; }
      #create-order-template .content .sub-content .status-message .status-description .link {
        text-decoration: underline;
        color: #0071C5;
        cursor: pointer; }

#template-spec-modal .md-close {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  font-size: 1.25rem; }
#template-spec-modal .md-content {
  position: relative;
  width: 360px;
  min-width: 360px;
  max-width: 100%;
  padding: 0;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px; }
#template-spec-modal .header {
  position: relative;
  margin: 20px 0 0 0;
  color: #323133;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none; }
#template-spec-modal .content {
  padding: 20px;
  overflow: hidden; }

.template-fly-cover {
  position: fixed;
  width: 40px;
  height: 30px;
  border: 1px solid #fff;
  z-index: 1000;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.3);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

#confirm-paid-refund-modal .md-content {
  width: 500px;
  min-width: 500px;
  max-width: 500px;
  height: auto;
  margin-top: 80px;
  padding: 20px; }
  #confirm-paid-refund-modal .md-content .title {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-size: 1.25rem; }
  #confirm-paid-refund-modal .md-content .form-item {
    position: relative;
    margin: 10px 0 0 0;
    border-top: 1px solid #ddd;
    overflow: auto; }
    #confirm-paid-refund-modal .md-content .form-item .float-wrapper {
      overflow: auto; }
    #confirm-paid-refund-modal .md-content .form-item .form-wrapper {
      position: relative;
      display: inline-block;
      width: 50%;
      padding: 0 10px 0 0;
      float: left; }
    #confirm-paid-refund-modal .md-content .form-item .form-title {
      margin: 10px 0 0 0;
      color: #4A4A4A;
      font-weight: 600;
      font-size: 14px;
      font-size: 0.875rem; }
      #confirm-paid-refund-modal .md-content .form-item .form-title .form-hint {
        margin-left: 4px;
        color: #0071C5;
        font-weight: 400;
        text-decoration: underline;
        font-size: 12px;
        font-size: 0.75rem; }
      #confirm-paid-refund-modal .md-content .form-item .form-title .error-hint {
        margin-left: 4px;
        color: #FF2C22;
        font-weight: 400;
        font-size: 12px;
        font-size: 0.75rem; }
    #confirm-paid-refund-modal .md-content .form-item .form-description {
      margin: 0;
      padding: 0;
      overflow: hidden;
      color: #484848;
      line-height: 1.8em;
      white-space: normal;
      font-size: 13px;
      font-size: 0.8125rem; }
      #confirm-paid-refund-modal .md-content .form-item .form-description .link {
        color: #484848;
        text-decoration: underline;
        cursor: pointer; }
    #confirm-paid-refund-modal .md-content .form-item .select-wrapper {
      margin: 10px 0 0 0; }
      #confirm-paid-refund-modal .md-content .form-item .select-wrapper .checkbox-form {
        cursor: pointer;
        margin-right: 20px; }
    #confirm-paid-refund-modal .md-content .form-item input {
      width: 100%;
      height: 40px;
      margin: 10px 0 0 0;
      padding: 10px;
      border: 1px solid #CCCCCC;
      color: #4A4A4A;
      background-color: transparent;
      font-size: 13px;
      font-size: 0.8125rem;
      -moz-border-radius: 3px;
      -webkit-border-radius: 3px;
      border-radius: 3px; }
      #confirm-paid-refund-modal .md-content .form-item input.error {
        border: 1px solid #FF2C22;
        color: #FF2C22;
        text-align: left; }
    #confirm-paid-refund-modal .md-content .form-item .disable-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(255, 255, 255, 0.5);
      cursor: default; }
    #confirm-paid-refund-modal .md-content .form-item .upload-wrapper {
      margin: 10px 0 0 0; }
      #confirm-paid-refund-modal .md-content .form-item .upload-wrapper .button.upload {
        position: relative;
        height: 30px;
        line-height: 30px;
        margin: 0 10px 0 0;
        background-color: #388d81;
        color: #FFF; }
        #confirm-paid-refund-modal .md-content .form-item .upload-wrapper .button.upload:hover {
          background-color: #388d81; }
        #confirm-paid-refund-modal .md-content .form-item .upload-wrapper .button.upload input {
          position: absolute;
          top: 0;
          left: 0;
          width: 1px;
          height: 1px;
          margin: 0;
          padding: 0;
          opacity: 0; }
      #confirm-paid-refund-modal .md-content .form-item .upload-wrapper .file {
        display: block;
        margin: 10px 0 0 0;
        color: #2A2A2A; }
      #confirm-paid-refund-modal .md-content .form-item .upload-wrapper .remove {
        display: inline-block;
        margin: 0 0 0 10px;
        color: #0071C5;
        text-decoration: underline;
        cursor: pointer; }
  #confirm-paid-refund-modal .md-content .button-group {
    margin: 20px 0 0 0;
    display: -webkit-flex;
    display: flex; }
    #confirm-paid-refund-modal .md-content .button-group .button {
      border: none; }
      #confirm-paid-refund-modal .md-content .button-group .button.submit {
        margin-right: 8px;
        -webkit-flex: 1;
        flex: 1; }
      #confirm-paid-refund-modal .md-content .button-group .button.blue {
        color: #fff;
        background-color: #0071C5; }
        #confirm-paid-refund-modal .md-content .button-group .button.blue:hover {
          background-color: #0071C5; }
      #confirm-paid-refund-modal .md-content .button-group .button.red {
        color: #fff;
        background-color: #FF2C22; }
        #confirm-paid-refund-modal .md-content .button-group .button.red:hover {
          background-color: #FF2C22; }
      #confirm-paid-refund-modal .md-content .button-group .button.gray {
        color: #fff;
        background-color: #AAAAAA; }
        #confirm-paid-refund-modal .md-content .button-group .button.gray:hover {
          background-color: #AAAAAA; }
  #confirm-paid-refund-modal .md-content .error {
    text-align: center;
    color: #FF2C22; }

#delay-announcement-modal .md-content {
  width: 500px;
  min-width: 500px;
  max-width: 500px;
  height: auto;
  padding: 30px; }
  #delay-announcement-modal .md-content .description {
    color: #2A2A2A;
    font-size: 15px;
    font-size: 0.9375rem; }
  #delay-announcement-modal .md-content .action-group {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center; }
    #delay-announcement-modal .md-content .action-group .button {
      height: 36px;
      line-height: 36px;
      margin: 0 0 0 auto; }

#simple-image-player-modal .md-close {
  color: #fff; }
  #simple-image-player-modal .md-close:hover {
    color: #fff; }
#simple-image-player-modal .md-content {
  width: auto;
  max-width: 800px;
  height: auto;
  background-color: #fff; }
  #simple-image-player-modal .md-content .image-wrapper {
    text-align: center; }
    #simple-image-player-modal .md-content .image-wrapper .image {
      display: block;
      max-width: 100%;
      margin: 0 auto; }
    #simple-image-player-modal .md-content .image-wrapper .annotation {
      height: 60px;
      line-height: 60px;
      color: #2A2A2A;
      font-size: 16px;
      font-size: 1rem; }

#announcement-modal .md-content {
  width: 500px;
  min-width: 500px;
  max-width: 500px;
  height: auto;
  padding: 30px; }
  #announcement-modal .md-content .title {
    margin: 0 0 8px 0;
    color: #484848;
    font-size: 16px;
    font-size: 1rem; }
  #announcement-modal .md-content .description {
    line-height: 1.75em;
    margin: 0 0 30px 0;
    padding: 0 0 0 12px;
    color: #737373;
    font-size: 15px;
    font-size: 0.9375rem; }
  #announcement-modal .md-content .action-group {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center; }
    #announcement-modal .md-content .action-group .button {
      height: 36px;
      line-height: 36px;
      margin: 0 0 0 auto; }

[ng\:cloak], [ng-cloak], .ng-cloak {
  display: none !important; }

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", "Lato", "Helvetica Neue", Helvetica, Arial, "PingFang TC", "PingFang SC", "STHeiti", "微軟正黑體", "Microsoft Yahei", sans-serif;
  background-color: #ffffff;
  overflow-x: auto;
  overflow-y: scroll;
  min-width: 1120px;
  -webkit-font-smoothing: antialiased; }
  body h1, body h2, body h3, body h4, body h5, body h6, body .headline {
    font-family: "Open Sans", "Lato", "Helvetica Neue", Helvetica, Arial, "PingFang TC", "PingFang SC", "STHeiti", "微軟正黑體", "Microsoft Yahei", sans-serif; }
    body h1 > *, body h2 > *, body h3 > *, body h4 > *, body h5 > *, body h6 > *, body .headline > * {
      font-family: "Open Sans", "Lato", "Helvetica Neue", Helvetica, Arial, "PingFang TC", "PingFang SC", "STHeiti", "微軟正黑體", "Microsoft Yahei", sans-serif; }

ul {
  margin: 0;
  padding: 0; }

a {
  text-decoration: none; }

input, textarea {
  border: 1px solid #D9D9D9;
  color: #2A2A2A;
  font-family: "Open Sans", "Lato", "Helvetica Neue", Helvetica, Arial, "PingFang TC", "PingFang SC", "STHeiti", "微軟正黑體", "Microsoft Yahei", sans-serif;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: box-shadow border-color 333ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -moz-transition: box-shadow border-color 333ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -o-transition: box-shadow border-color 333ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  transition: box-shadow border-color 333ms cubic-bezier(0.26, 0.094, 0.795, 1.04);
  /* custom */
  -webkit-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -moz-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  -o-transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  transition-timing-function: cubic-bezier(0.26, 0.094, 0.795, 1.04);
  /* custom */ }
  input:focus, textarea:focus {
    outline: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none; }
  input::-webkit-contacts-auto-fill-button, textarea::-webkit-contacts-auto-fill-button {
    visibility: hidden;
    display: none !important;
    pointer-events: none;
    position: absolute;
    right: 0; }
  input::-webkit-credentials-auto-fill-button, textarea::-webkit-credentials-auto-fill-button {
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    right: 0; }
  input::-webkit-inner-spin-button, input::-webkit-outer-spin-button, textarea::-webkit-inner-spin-button, textarea::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; }

#container {
  min-height: calc(100vh - 228px);
  padding-top: 98px; }

.ps-scrollbar-always-show > .ps-scrollbar-x-rail,
.ps-scrollbar-always-show > .ps-scrollbar-y-rail {
  opacity: 0.6;
  filter: alpha(opacity=60); }

.ps-scrollbar-always-hide > .ps-scrollbar-x-rail,
.ps-scrollbar-always-hide > .ps-scrollbar-y-rail {
  visibility: hidden; }
