/**
 * @file
 * Page Styling
 *
 * Style the markup found in page.tpl.php. Also includes some styling of
 * miscellaneous Drupal elements that appear in the $content variable, such as
 * ul.links, .pager, .more-link, etc.
 */


/*
 * Body
 */

body {
  margin: 0;
  padding: 0;
  background-color: #EEEEEE;
  color: #2F2F2F;
  font: 12px/1.55 Verdana,Arial,sans-serif;
}

#page {
  padding:0px 15px 20px 15px;
  border-left:10px solid #dddddd;
  border-right:10px solid #dddddd;
  border-bottom:10px solid #dddddd;
  background:white;
}
#content{
  min-height: 300px;
}

/*
 * Header
 */

#header {
  top:0px;
  min-height:44px;
  width:100%;
}
#header-inner{
  color:white;
  padding:3px 15px;
  position:relative;
}


#logo { /* Wrapping link for logo */
  float: left; /* LTR */
  margin: 0;
  padding: 0;
}
#logo img {
  vertical-align: bottom;
  margin-top:2px;
}

#name-and-slogan { /* Wrapper for website name and slogan */
  float: left;
  margin-top:2px;
  margin-left:8px;
  color:white;
}

#search-but,#search-outer .dropdown-toggle{
  padding-top:3px;
  padding-bottom:3px;
}
#search-box{
  border:1px solid #1798c4 ;
  /*  height: 22px;
    padding-bottom: 2px;*/
  height: 21px;
  padding-bottom: 3px;
  padding-top: 2px;
  /*margin-left:-1px;*/
  -webkit-border-radius:0;
  -moz-border-radius: 0;
  border-radius: 0;
}
#search-outer #search-but,#search-outer .btn.dropdown-toggle {
  background-color: hsl(195, 79%, 43%) !important; 
  background-repeat: repeat-x; 
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#56c5eb", endColorstr="#1798c4");
  background-image: -khtml-gradient(linear, left top, left bottom, from(#56c5eb), to(#1798c4));
  background-image: -moz-linear-gradient(top, #56c5eb, #1798c4);
  background-image: -ms-linear-gradient(top, #56c5eb, #1798c4); 
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #56c5eb), color-stop(100%, #1798c4));
  background-image: -webkit-linear-gradient(top, #56c5eb, #1798c4); 
  background-image: -o-linear-gradient(top, #56c5eb, #1798c4);
  background-image: linear-gradient(#56c5eb, #1798c4);
  border-color: #1798c4 #1798c4 hsl(195, 79%, 38%);
  color: #333 !important; text-shadow: 0 1px 1px rgba(255, 255, 255, 0.33); 
  -webkit-font-smoothing: antialiased; 
}
#search-outer{
  margin:5px auto;
  width:400px;
  text-align: center;
}
#search-outer .dropdown-toggle{
  -webkit-border-top-right-radius: 0px;
  -moz-border-radius-topright: 0px;
  border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 0px;
  -moz-border-radius-bottomright: 0px;
  border-bottom-right-radius: 0px;
  min-width:110px;
}

#site-name { /* The name of the website */
  margin: 0;
  font-size: 2em;
  line-height: 1.5em;
}
#site-name a:link,
#site-name a:visited {
  color: white;
  text-decoration: none;
}
#site-name a:hover,
#site-name a:focus {
  text-decoration: underline;
}

#site-slogan { /* The slogan (or tagline) of a website */
  margin: 0;
  font-size: 1em;
}

.region-header { /* Wrapper for any blocks placed in the header region */
  clear: both; /* Clear the logo */
}
li {
  list-style-type: none;
}

.breadcrumb ol {
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

h1.title, /* The title of the page */
h2.node-title, /* Title of a piece of content when it is given in a list of content */
h2.block-title, /* Block title */
h2.title, /* Comment section heading */
h2.comment-form, /* Comment form heading */
h3.title { /* Comment title */
  margin: 0;
}

tr.even { /* Some tables have rows marked even or odd. */
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
  border:0;
}

tr.odd {
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
  border:0;
}

div.messages { /* Important messages (status, warning, and error) for the user. See also the declarations in messages.css. */
  margin: 1.5em 0; /* Drupal core uses "6px 0" margin */
}
div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}

ul.inline { /* List of links generated by theme_links() */
  display: inline;
  padding: 0;
}
ul.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0; /* LTR */
}

span.field-label { /* The inline field label used by the Fences module */
  padding: 0 1em 0 0; /* LTR */
}

.item-list .pager { /* A list of page numbers when more than 1 page of content is available */
  padding: 0;
}
.item-list .pager li { /* Each page number in the pager list */
  padding: 0 0.5em;
}

.feed-icon { /* The link to the RSS or Atom feed for the current list of content */
}

.more-link { /* Aggregator, blog, and forum more link */
}

/*
 * First sidebar (on left in LTR languages, on right in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-first
 * (see the layout.css file.)
 */

.region-sidebar-first {
  /*border-radius:4px;*/
  /*background: none repeat scroll 0 0 #E7F1F4;*/
  /*border: 1px solid #A0B3C3;*/
}

/*
 * Second sidebar (on right in LTR languages, on left in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-second
 * (see the layout.css file.)
 */

.region-sidebar-second {
}

/*
 * Footer
 */

#footer-outer {
  bottom: 0;
  clear: both;
  width: 100%;
}
#footer {
  display: flex;
  clear: both;
  padding:12px 0px 15px 0px;
  color:#7f7f7f;
  flex-flow: wrap;
}

.footer-column {
  margin: 10px 0;
  padding: 0px 10px 10px 20px;
  min-width:140px;
  min-height:120px;
}
.footer-column-right{
  margin-left:auto;
}

.footer-column li {
  padding-right: 5px;
  text-align: left;
}
.footer-column p {
  font-size: 1.3em;
  font-weight: bold;
  padding: 5px 0px 8px 0px;;
  margin:0px;
  text-align: left;
}
#footer a,#footer-legal a{
  color:#7f7f7f;
}
#footer a{
  text-decoration: underline;
}
#footer-legal {
  margin: 0 auto;
  width: 95%;
  /*background-color: #07273A;*/
  color: #7f7f7f;
  padding: 10px 0;
  text-align: center;
  border-top:1px solid #c8c8c8;
}
#footer-legal p{
  margin:0px;
}

.footer-column ul {
  padding:0;
  margin:0;
}

/*
 * Page bottom
 */

.region-bottom { /* Wrapper for any blocks placed in the page bottom region */
}

.no-bullets{
  list-style: none outside none;
}
a{
  text-decoration:none;
}


#main {
  padding-top: 2em;
}
/*#navigation {
  height: 4em;
  padding-left:0px;
  right:0px;
  width:auto;
}*/

.clearer{
  clear: both;
}
.breadcrumb-here {
  color: gray;
}

.breadcrumbs ul {
  display: inline;
  margin:0 !important;
}

.breadcrumbs {
  font-size: 11px;
  line-height: 1.25;
  margin: 0 0 13px;
}
#user-outer{
  float:right;
  margin:4px 20px 0px 0px;

}
#dLabel{
  padding:5px 10px;
  border-radius:5px 5px 5px 5px;
  /*cursor:pointer;*/
  display:inline-block;
}

#user-outer a.dropdown-toggle{
  color:white;
}
#user-outer .caret{
  border-top-color:#ffffff;
}
#user-outer .dropdown-menu{
  margin-top: 9px;
  margin-left: -11px;
}
.logged-out-links{
  padding:5px 0px;
  margin-right:6px;
}
.logged-out-links a{
  color:white !important;
}

.button.pretty {
  -moz-border-radius:6px;
  -webkit-border-radius:6px;
  border-radius:6px;
  border:1px solid #84bbf3;
  display:inline-block;
  color:#ffffff;
  font-family:arial;
  font-size:14px;
  font-weight:bold;
  padding:5px 5px;
  white-space: nowrap;
  text-decoration:none;
  text-shadow:1px 1px 0px #528ecc;
  text-align:center;
  cursor:pointer;
}



.button.pretty.yellow{
  -moz-box-shadow:inset 0px 1px 0px 0px #fff6af;
  -webkit-box-shadow:inset 0px 1px 0px 0px #fff6af;
  box-shadow:inset 0px 1px 0px 0px #fff6af;
  background-color:#ffec64;

  background-image: -moz-linear-gradient(top, #ffec64, #ffab23);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffec64), to(#ffab23));
  background-image: -webkit-linear-gradient(top, #ffec64, #ffab23);
  background-image: -o-linear-gradient(top, #ffec64, #ffab23);
  background-image: linear-gradient(to bottom, #ffec64, #ffab23);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffab23', endColorstr='#ffffab23', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);

  -moz-border-radius:5px;
  -webkit-border-radius:5px;
  border-radius:5px;
  border:1px solid #ffaa22;
  display:inline-block;
  color:#333333;
  font-family:arial;
  font-size:13px;
  font-weight:bold;
  padding:2px 10px;
  text-decoration:none;
  text-shadow:1px 1px 0px #ffee66;
  line-height:20px;
}
.button.pretty.yellow:hover,.button.pretty.yellow:focus{
  box-shadow: 0px 0px 2px 0px #f79c0c;
}
div.block-block{
  border:none;
}
a:hover,.ajax-link{
  text-decoration: none;
}
#header a,#navigation a,#header a:hover{
  text-decoration: none;
}
form li.fields{
  list-style-type: none;
}
form li.fields div.form-item{
  float:left;
  margin:10px;
}
.clearer:after, .header-container:after, .header-container .top-container:after, .header:after, .header .quick-access:after, #nav:after, .main:after, .footer:after, .footer-container .bottom-container:after, .col-main:after, .col3-set:after, .col3-layout .product-options-bottom .price-box:after, .col4-set:after, .search-autocomplete li:after, .block .block-content:after, .block .actions:after, .block li.item:after, .block-poll li:after, .block-layered-nav .currently li:after, .products-grid:after, .products-list li.item:after, .box-account .box-head:after, .dashboard .box .box-title:after, .pager:after, .sorter:after, .ratings:after, .add-to-box:after, .add-to-cart:after, .product-view .product-img-box .more-views ul:after, .product-view .product-shop .short-description:after, .product-view .box-description:after, .product-options .options-list li:after, .product-options-bottom:after, .product-review:after, .cart:after, .cart-collaterals:after, #opc .step-title:after, .checkout-progress:after, .multiple-checkout .place-order:after, .group-select li:after, .form-list li:after, .form-list .field:after, .buttons-set:after, .page-print .print-head:after, .advanced-search-summary:after,.clearfix:after{
  clear: both;
  content: ".";
  display: block;
  font-size: 0;
  height: 0;
  line-height: 0;
  overflow: hidden;
}
fieldset{
  margin:20px 0px;
  background:white;
  border-radius:5px;
  padding:5px 25px 20px 25px;
}
.fieldset-legend{
  background:white;
  border:1px solid #c0c0c0;
  padding:6px;
  font-weight:bold;
}
.form-item label{
  padding-bottom:0px;
  padding-left:1px;
}
fieldset .desc{
  margin-top:10px;
}
table thead tr{
  /*background: #59a0d8;*/
  background:#ffffff;
  color:white;
}
.data-table {
  width: 100%;
}
.data-table .odd {
  background: none repeat scroll 0 0 #F8F7F5;
}
.data-table .even {
  background: none repeat scroll 0 0 #ffffff;
}
.data-table td.last, .data-table th.last {
  border-right: 0 none;
}
.data-table tr.last th, .data-table tr.last td {
  border-bottom: 0 none !important;
}
.data-table td {
  padding: 6px 6px;
}
table thead th {
  /*border-right: 1px solid #C2D3E0;*/
  border-bottom:2px solid #DDDDDD;
  color: #0A263C;
  font-weight: bold;
  padding: 8px 20px 8px 8px;
  vertical-align: middle;
  white-space: nowrap;
}
.data-table thead th.wrap {
  white-space: normal;
}
.data-table thead th a, .data-table thead th a:hover {
  color: #FFFFFF;
}
.data-table thead th .tax-flag {
  font-size: 11px;
  white-space: nowrap;
}
.data-table tfoot {
  border-bottom: 1px solid #D9DDE3;
}
.data-table tfoot tr {
  background-color: #DEE5E8 !important;
}
.data-table tfoot td {
  border-bottom: 0 none;
  border-right: 1px solid #D9DDE3;
  padding-bottom: 1px;
  padding-top: 1px;
}
.data-table tfoot strong {
  font-size: 16px;
}
.data-table tbody th, .data-table tbody td {
  border-bottom: 1px solid #D9DDE3;
  /*border-right: 1px solid #D9DDE3;*/
}
.data-table tbody.odd tr {
  background: none repeat scroll 0 0 #F8F7F5 !important;
}
.data-table tbody.even tr {
  background: none repeat scroll 0 0 #F6F6F6 !important;
}
.data-table tbody.odd tr td, .data-table tbody.even tr td {
  border-bottom: 0 none;
}
.data-table tbody.odd tr.border td, .data-table tbody.even tr.border td {
  border-bottom: 1px solid #D9DDE3;
}
.data-table tbody td .option-label {
  font-style: italic;
  font-weight: bold;
}
.data-table tbody td .option-value {
  padding-left: 10px;
}
.data-table img{
  max-width:none;
}


.submit-middle{
  display:block !important;
  margin:auto;
}
.form-submit{
  padding:5px 10px 5px 10px;
}
#page, .region-bottom,#header-inner,#footer-outer{
  max-width:1064px;
}
.no-results{
  background: none repeat scroll 0 0 white;
  border: 1px solid #CCCCCC;
  border-radius: 6px 6px 6px 6px;
  height: auto;
  /*margin: 3px;*/
  font-weight:bold;
  position: relative;
  padding:50px;
  text-align:center;
}
.ajax-messages {
  font-weight: bold;
  font-size: 13px;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  z-index: 999;
  margin:0 !important;
  cursor:pointer;
}
.ajax-messages .error-msg, .ajax-messages .success-msg, .ajax-messages .note-msg, .ajax-messages .notice-msg {
  background-position: 10px 12px !important;
  font-size: 13px !important;
  min-height: 22px !important;
}
.region-sidebar-second .block{
  width:195px;
}
.region-sidebar-second{
  /*padding-top:26px;*/
}
/*.one-sidebar.sidebar-second #content{
  padding-left:0px;
}*/
form li.fields input{
  width: 254px;
  max-width: 254px;
}
.form-item.form-item-billing-addr-select,.form-item.form-item-shipping-addr-select,.form-item.form-type-radio{
  margin-left:10px;
}
input.form-checkbox, input.form-radio {
  margin: 6px;
}

.a-left {
  text-align: left !important;
}
.a-center {
  text-align: center !important;
}
.a-right {
  text-align: right !important;
}

.columns .form-list {
  width: auto;
}
.form-list {
  border: 0 none !important;
  width: auto;
}

.form-list td.flabel {
  width: 200px;
}
.form-list td.flabel, .form-list td.value, .form-list td.value2, .form-list td.note, .form-list td.scope-label, .form-list td.use-default {
  background: none repeat scroll 0 center transparent !important;
  border: 0 none !important;
  padding-bottom: 5px !important;
  padding-left: 5px !important;
  padding-top: 5px !important;
}
.form-list td.flink{
  padding-bottom: 5px !important;
  padding-left: 5px !important;
}
.form-list td.flabel {
  display: block;
  padding-right: 15px;
  width: 175px;
}
.f08{
  font-size:0.8em;
}
/*label {
    color: #333333;
}*/
.form-list td.value:not(.btn) {
  padding-right: 5px !important;
  width: 280px;
  font-weight:bold;
}
.hidden-submit{
  position: absolute;
  left: -2000px;
  top: -2000px;
  width: 0;
  height: 0;
  border: 0;
  margin: 0;
  padding: 0;
}
form li.fields .address-street{
  width: auto;
  max-width: 534px;
}
.fieldset-description{
  margin:10px 0px 5px 0px;
}
.no-content{
  width:100%;
  text-align:center;
  display:block;
  box-sizing: border-box;
  border-top: 1px solid #d9dde3;
  border-bottom: 1px solid #d9dde3;
  margin: 35px 0px 35px 0px;
  padding: 10px;
  clear:both;
}
.price {
  white-space: nowrap !important;
}
table td.empty{
  text-align: center;
}

.confirm-parent, .password-parent{
  width:40em;
}
.btn-mini i{
  font-size:13px;
}
.tab-divider-vertical {
  height: 25px;
  margin: 7px 5px;
  border-left: 1px solid #f2f2f2;
  border-right: 1px solid #ffffff;
}
.btn-medium{
  padding:7px 14px;
  font-size:16px;
}
.page-title {
  border-bottom: 1px solid #CCCCCC;
  margin: 0 0 25px;
  overflow: hidden;
  width: 100%;
}
.page-title h1, .page-title h2 {
  color: #0A263C;
  font-size: 20px;
  margin: 0;
}

.input-append .form-item .description,
.input-prepend  .form-item .description{
  font-size:10px;
  white-space: normal;
}
select{
  max-width:100%;
}

body{
  min-width:950px;
}
#about-home{
  margin:10px;
  padding:15px;
  background:#feffd5;
  border-radius:4px;
}

h2.most-header{
  border: 1px solid #C4C1BC;
  border-radius: 5px 5px 5px 5px;
  font-size: 16px;
  margin: 4px 0px 4px 0px;
  width: auto;
  background:url("../images/bkg_toolbar.gif") repeat-x scroll 0 100% #FFFFFF;
  padding: 4px 8px;
  line-height:1.35;
  text-align: center;
  font-weight:normal;
}
.nom h2.most-header{
  margin: 0px 3px 4px 3px;
}
.nom{
  margin-bottom:4px;
}
.category{
  text-align:left;
}
.hero-unit h1{
  margin-top:1px;
}
.page-page #content ul,.page-page #content ol,.page-help #content ul,.page-help #content ol,
.page-terms #content ul,.page-terms #content ol,
.page-privacy #content ul,.page-privacy #content ol,.page-about #content ul,.page-about #content ol,.realul,.blog-post ol,.blog-post ul{
  margin: 0 0 10px 25px;
}
.page-page #content li,.page-help #content li,.page-terms #content li,.page-about #content li,.realul li,.blog-post li{
  list-style-type: disc;
}
li.category-item{
  list-style-type:none;
}
input.btn-mini{
  height:22px;
}
.top-links{
  float:right;
  margin-top:-3px;
  text-align:right;
}
.top-links .btn{
  margin-left:10px;
  margin-top:5px;
}

.category-item-actions {
  bottom: 12px;
  position: absolute;
  left:12px;
  right:12px;
  display:flex;
}
.category-item-actions > a, .category-item-actions > span{
  flex-grow:1;
  box-sizing:border-box;  
}
.action-spacer{
  height:48px;
}
#user-outer i{
  font-size:14px;
}
span.label-success {
  background-color: #6CC644;
  font: 12px/1.55 Verdana,Arial,sans-serif;
}
table.partout-table td{
  padding-top:0;
  padding-bottom:0;
}
table th .form-checkbox{
  margin: 0px -8px 0px 8px;
}
table.partout-table .destination{
  width:130px;
  white-space: nowrap;
}
table.partout-table .condition{
  width:90px;
  white-space: nowrap;
}
.big-text{
  font-size:16px;
  font-weight:bold;
  text-align:center;
  padding:8px;
}
/*.form-managed-file .form-submit{
  margin-left:10px;
}*/

.tiny-store-logo {
  position: relative;
  top: 1px;
  padding-left: 5px;
}
.mid{
  vertical-align: middle;
}
.profile .user-picture {
  margin-top:-126px;
}
.f11{
  font-size:11px;
}
#page-title .label{
  margin-top:5px;
  vertical-align:top;
}
.address-card{
  width:40%;
  padding:10px;
  margin:20px;
  background:white;
  border:1px solid gray;
  border-radius:5px;
  float:left;
  min-height:200px;
}
.message-content pre{
  font-family: Verdana;
}

.category-grid {
  background: none repeat scroll 0 0 transparent;
  border: medium none;
  overflow: hidden;
  position: relative;
  margin:0;
  padding:0;
}

.category-grid li.category-item {
  background: none repeat scroll 0 0 white;
  border: 1px solid #CCCCCC;
  border-radius: 6px 6px 6px 6px;
  height: 300px; /*auto breaks in IE*/
  margin: 3px;
  min-height: 138px;
  padding: 7px 10px 7px;
  position: relative;
  vertical-align: top;
  float: left;
  width: 138px;
}
.category-grid li.category-item-small {
  width:auto;
  height:auto;
  min-height:100px;
}
.category-grid li.category-item .category-item-name {
  font-size: 12px;
}
.category-grid .category-item-name {
  color: #203548;
  /*font-size: 13px;*/
  font-weight: bold;
  margin: 0 0 5px;
}
.category-grid  .alt-link{
  background: lightblue;
  margin: -7px -10px 7px -10px;
  padding:3px;
  text-align:center;
  border-radius: 5px 5px 0px 0px;
}
.category-grid li.category-item:hover,.block .block-content li.item:hover{
  border-color:cadetblue;
}
.category-grid li.category-item a {
  text-decoration: none;
  margin:0 auto;
  display:block;
}
.category-grid .category-item-image {
  margin: 10px 0;
  display: block;
  height: 135px;
  /*margin: 0 0 10px;*/
  width: 135px;
  overflow:hidden;
}
.category-grid li.category-item-small .category-item-image {

  width:auto;
  height:auto;
}
.category-grid .category-item a {
  color: #203548;
}
.display-options{
  margin:0px 0px 10px 5px;
}
.w1{
  width:1px;
}
#add-frame-cont{
  top: 0px;
  width: 100%;
  height:40%;
  position: fixed;
  z-index: 1000;
}
#add-frame{
  height:100%;
  width:100%;
  background:white;
}
.inv-frame-close{
  z-index:1001;
  position:fixed;
  top:30px;
  right:30px;
  color:darkgray;
  cursor:pointer;
}
.hidden {
  display: none !important;
  visibility: hidden;
}
tr .form-item {
  margin-top: 0;
  margin-bottom: 0;
  white-space: nowrap;
}
.dt-toolbar{
  float: left;
  margin: 17px 0px 10px 0px;
}
.info-popover{
  cursor: help;
}
.popover{
  color: black; 
  font-weight: normal;
}
.well.inv-warn{
  margin: 0px 3px 10px 3px;
  padding: 10px 13px;
}
img.i-medium{
  width:135px;
  height:135px;
}
img.i-vvsmall,a.i-vvsmall{
  width:40px;
  height:40px;
}
img.i-vsmall,a.i-vsmall{
  width:57px;
  height:57px;
}
img.i-small,a.i-small{
  width:75px;
  height:75px;
}
.icon-gray{
  color:gray;
}
.order-row-icons i{
  margin:0px 5px;
}
.order-row-icons{
  cursor:default;
}
.blog-post-mini-header h2{
  margin-bottom:0px;
}
.blog-post-mini-details{
  color:#888888;
  margin-top:-4px;
}
.blog-post-mini-content{
  margin-top:20px;
}
.inline{
  display:inline-block;
  margin-right:15px;
}
.form-item-add .ajax-progress{
  position:fixed;
  left:48%;
  top:48%;
  background:white;
  padding:10px 10px 15px 10px;
  border:1px solid gray;
  border-radius:5px;
}
.ajax-replace{
  display:none;
}
.table-action{
  display:none;
  margin-left:10px;
}
.bold{
  font-weight:bold;
}
td .flag-16{
  vertical-align:bottom;
  margin-bottom:2px;
}
.price .rd{
  color:gray;
}
.toolbar-has-pager .sort-outer{
  white-space: nowrap;
  flex:1;
  text-align:right; 
  margin: 5px;
}
.toolbar-pager .amount{
  margin: 5px;
  flex:1;
}
.toolbar-pager .pagination ul{
  justify-content: center;
  display:flex;
  box-shadow: none;
}
.toolbar-pager {
  display:flex;
  flex-wrap: wrap;
  background: none repeat scroll 0 0 white;
  border: 1px solid #CCCCCC;
  border-radius: 6px 6px 6px 6px;
  margin: 5px 3px 5px 2px;
  padding: 1px 7px 1px 9px;
  min-height:26px;
  font-size: 11px;
  align-items: center;
}
.pagination-centered{
  margin: 5px;
  flex:1;
}
.toolbar-pager:after{
  clear:both;
  clear: both;
  content: ".";
  display: block;
  font-size: 0;
  height: 0;
  line-height: 0;
  overflow: hidden;
}
.toolbar-pager .sort-outer select{
  padding: 1px 0px 2px 0px;
  font-size:12px;
  height:21px;
}
.toolbar-pager .sort-outer-has-options select{
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
}
.toolbar-pager .sort-outer-has-arrow select{
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
}
.toolbar-pager .sort-outer .btn{
  padding: 0px 5px;
  line-height:19px;
}
.toolbar-pager .sort-outer .btn:last-child {
  padding: 0px 6px;
  margin-left: -1px;
  height:21px;
  box-sizing: border-box;
}

.toolbar-pager .sort-outer .btn:last-child i{
  bottom:1px;
  position:relative;
}

.fright{
  float: right;
}
.top-links img{
  margin-right:15px;
}
.top-links img.wide{
  margin-top:-8px;
  margin-right:0px;
}
.order-block hr{
  margin:5px 0px;
}

.table-actions a{
  margin-left:5px;
}
.f14{
  font-size:14px;
}
.f16{
  font-size:16px;
}
.variant{
  color:gray;
}
.print-visible{
  display:none;
}
.category-visual-item{
  margin:5px;
  float:left;
}
.blog-post ul.block-category-grid{
  margin:0;
}
.noti-num,.total-noti-num{
  padding:2px 6px 2px 5px;
  color:white;
  margin:0px 5px 0px 0px;
  background: gray;
  border-radius: 5px 5px 5px 5px;
}
.total-noti-num{
  margin:0px 3px 0px 3px;
}
.dropdown .total-noti-num,.dropdown.open .total-noti-num{
  background:#1EA8D5;
}
.page-catalog #mob-nav,.page-search #mob-nav{
  padding: 10px 0;
}
#mob-nav, .mob-block{
  display:none;
}
#mob-nav .navbar,.mob-block dl{
  margin:0;
}
.page-catalog #mob-nav .navbar ul .li-fil,.page-search #mob-nav .navbar ul .li-fil,#mob-nav .navbar ul .li-cart{
  float:right;
}
#mob-nav .navbar-inner{
  border-radius: 0;
  font-size: 1.1em;
}
/*#mob-nav .navbar-inner.active{
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}*/
#mob-nav .navbar .nav{
  float:none;
  margin:0;
}
.hexSwatch{
  height:25px;
  width:25px;
  position:relative;
  margin:0px 5px 0px 5px;
  float:left;
  top:-3px;
}

.imgHexSwatch{
  position:absolute;
  margin-left:60px;
  margin-top:60px;
  -moz-border-radius:7px;
  -webkit-border-radius:7px;
  border-radius:7px;
  border:7px solid;
}

.color-table .hexSwatch{
  top:inherit;
  margin:0;
}
.copyinput{
  width:340px;
}
.gray-text{
  color: #888888;
}
.serious-text,.serious-text a{
  color:red;
  font-weight:bold;
}

#site-banner{
  padding:5px 0px 5px 0px;
  text-align:center;
  font-weight:bold;
  border-bottom:1px #008000 solid;
  font-size:13px;
  background-color: #6CC644;
}
.server-type{
  margin-top:8px;
  font-weight:bold;
  float:left;
}
.fleft{
  float:left;
}
.nohi,.button,.btn-remove{
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#return-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #c0c0c0;
  width: 30px;
  height: 30px;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  display: none;
}
#return-to-top i {
  color: #fff;
  margin: 0;
  position: relative;
  left: 9px;
  top: 5px;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#return-to-top:hover {
  background: #999999;
}
#return-to-top:hover i {
  color: #fff;
  top: 1px;
}
input.btn-small::-moz-focus-inner,input.button.yellow::-moz-focus-inner{
  margin-top:3px;
  margin-bottom:2px;
}
.ui-icon-close {
  /*background-position: -81px -129px;*/
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
}
table.dataTable tbody td.imgrow{
  white-space: nowrap;
  padding: 3px 10px 0px 10px;
}
.flag-24{
  min-height: 24px;
}
.vvsmall{
  min-height: 40px;
  min-width:40px;
}
.vsmall{
  height:57px;
  width:57px;
}
.edit-form-table th{
  color:black;
  text-align:center;
}
.edit-form-table .form-item{
  margin:4px;
}
.buttons a{
  margin-right:10px;
}
#regional-flag-cont{
  float:right;
  padding: 3px 5px 0px 5px;
  margin: 4px 1px 0px -20px;
  line-height: 12px;
  cursor:pointer;
}
#regional-flag-cont:hover{
  border-radius:5px 5px 5px 5px;
}
.modal-loading{
  margin:10% auto 0 auto;
  font-size:20px;
  text-align:center;
}
.break{
  word-break: break-all;
  -ms-word-break: break-all;
}
#footer-mobile-toggle{
  margin: 0 auto;
  width: 95%;
  padding: 10px 0;
  text-align: center;
  border-top: 1px solid #c8c8c8;
  display:none;
}
#footer-mobile-toggle a{
  color: #7f7f7f;
}

/* For ipad portrait */
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
  body{
    min-height:1200px;
  }

  .page-store #nav li ul.level0{
    display:none;
  }
}
/* For ipad landscape */
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
  .page-store #nav li ul.level0{
    display:none;
  }
}

@media screen and (max-width: 480px) {
  #mob-nav{
    display:block;
  }
  .nav-container, .not-front.use-mob-nav .block-cats, .use-mob-nav .block-filters, #product-options-wrapper .icon-tag, /*.more-views li:nth-child(n+5),*/.store-leave-feedback{
    display:none;
  }
  h1{
    font-size:22px;
  } 
  #item-top .product-options{
    padding: 0 8px 0 0;
  }
  .condition-header{
    margin:10px;
  }
  .page-catalog-cart,.page-mystore-orders-outstanding-,.page-user-messages,.page-user-orders-{
    width:fit-content; /* For when stuff breaks out of the page on mobile. Only supported on recent browsers */
  }
  .cart .scol.totals{
    width:auto;
  }
}

@media screen and (max-width: 660px) {
  #logo img{
    height:22px;
  }
  #logo{
    display:block;
  }
  #regional-flag-cont{
    position:absolute;
    bottom:2px;
    right:14px;
  }
  .input-append #search-box{
    width:55px;
  }
  #search-outer .btn.dropdown-toggle{
    min-height:30px;
  }
  #search-but{
    min-height:30px;
  }
  #item-top .product-image.no-more-views img{
    max-width:75%;
  }
  #user-outer{
    margin:0px;
  }
  .form-search{
    float:left;
    width: 100%;
  }
  #search-outer{
    width:243px;
    margin:0;
    text-align: left;
  }
  .navbar-inner{
    min-height:20px !important;
  }
  .navbar .nav>li>a{
    padding: 7px 7px !important;
  }
  .navbar-static-top .nav>li{
    min-width:77px;
    text-align:center;
  }
  .dash-column{
    width:100%;
  }
  #item-right .btn-primary{
    margin-bottom:5px;
  }
  .filters select {
    margin-bottom: 5px;
  }
  .well{
    padding:13px;
  }
  #content .part-color-swatch-outer,.cart-table-bottom .btn-continue{
    display:none;
  }
  /*.product-view .product-options-bottom{
      padding-bottom:8px;
    }*/
  .product-options-bottom .btn-single-cart{
    margin-top: 5px;
    clear: both;
  }
  .register-divider{
    padding-left:10px;
  }
  #product-options-wrapper table tr{
    padding:0;    
  }
  #product-options-wrapper table tr input{
    max-width:20px;
  }

  form li.fields input,form li.fields .address-street, #opc .form-select,   #opc-buttons-container .form-item-order-review-order-note{
    max-width: 100%;
  }
  form li.fields div.form-item{
    float:none;
  }
}

@media screen and (max-width: 767px) {
  body {
    padding-left: 0px !important;
    padding-right: 0px !important;
    min-width: 320px;
  }
  #page,#navigation,#header-inner{
    border-left-width:3px !important;
    border-right-width:3px !important;
  }
  #page{
    padding-left:5px;
    padding-right:5px;
  }
  #main{
    padding-top:8px;
  }
  #navigation .navbar-inner {
    padding-left: 0px;
    padding-right: 0px;
  }
  .hello,#search-text, .nom,.most-header, #toolbar,.page-checkout-cart .top-links{
    display:none;
  }
  #toolbar{
    height:0;
  }
  .page-points .pull-left,.page-points .pull-right{
    float: none;
    width: auto !important;
  }

  #item-left{
    width:100% !important;
    float:none !important;
  }
  #item-top #item-right,#item-top #right-wide{
    width:100%;
    max-width:100%;
    float:none;
    margin-left:0px;
    clear:both;
  }
  .page-home #content .pull-left{
    width:100%;
  }
  .page-home #content div.pull-right{
    width:100% !important;
    float:none;
  }
  .page-wishlist #content div.pull-right, .page-wishlist #content div.pull-left{
    width:100% !important;
    float:none;
  }
  .form-list td.flabel{
    width:100px;
  }
  #header-inner{
    padding-right:5px;
    padding-left:5px;
  }

  #content{
    padding-left:0px;
    padding-right:0px;
    min-height:100px;
  }
  .region-sidebar-first{
    padding:0 5px 0 0;
  }
  .product-options-bottom{
    padding: 12px 12px 12px 14px;
    text-align: right;
  }
  .product-options-bottom .add-to-cart{
    display:flex;
    flex-wrap:wrap;
  }
  .product-options-bottom .price-box,.product-options-bottom label,.product-options-bottom .btn-cart,.product-options-bottom .qty,.product-options-bottom .btn{
    float:none;
    margin-top:5px;
    flex-grow:1;
  }
  .page-store .region-sidebar-first,.page-store .region-sidebar-second{
    padding-left:0px;
    padding-right:0px;
  }
  .region-sidebar-second .block{
    width:auto;
  }

  .page-home.page-store #content{
    min-height:0px;
  }
  .store-slogan{
    white-space:normal !important;
  }
  .page-store .sidebar{
    margin-top:10px; 
  }
  .page-store.one-sidebar #main, .page-store.two-sidebars #main{
    padding-right:5px !important;
    padding-left:5px !important;
  }
  .step-contents{
    padding: 4px 6px 6px 6px;
  }
  form li.fields .address-street{
    width:254px;
  }
  #search-box{
    width:100px;
  }
  #search-outer .btn.dropdown-toggle{
    min-height:30px;
  }
  #search-but{
    min-height:30px;
  }
  .store-item #item-bottom{
    padding:10px !important;
  }
  .store-item #item-top{
    padding:15px 10px 0px 10px;
  }

  #opc .buttons-set {
    margin-top: 15px;
    padding-top: 7px;
  }

  .cart-table-bottom .btn-empty-holder{
    float:none;
    padding-left:0px;
  }
  #nav{
    padding:0;
  }
  #nav a.level0{
    padding: 0px 6px 1px 5px;
  }
  .category-grid li.category-item{
    padding:3px;
  }
  .category-grid  .alt-link  {
    margin: -3px -3px 7px -3px;
  }
  .form-text, .copyinput{
    box-sizing: border-box;
    max-width:100%;
  }
  .password-strength{
    float:none;
    margin-bottom:5px;
  }
  .confirm-parent, .password-parent{
    width:auto;
  }
  #user-outer .dropdown-menu{
    right: 0;
    left: auto;
  }
  #footer-mobile-toggle{
    display:block;
  }
  .footer-column{
    flex: 1;
  }
  .cart-table-bottom{
    text-align:right;
  }
  .gcart-store-exp{
    float:none;
  }
  .cart-table-bottom .btn{
    margin:5px;
  }
  #content .filter-col-1,#content .filter-col-2,#content .filter-col-3,#content .filter-col-4, .item-right-table {
    width: 100%;
  }
  #content .filters-grid-overflowing {
    height: 306px;
  }
  #content #gcart-left,#content #gcart-right{
    float:none;
    width:100%
  }
  #item-top{
    padding: 15px 10px!important;
  }
  #item-bottom {
    padding: 10px 12px!important;
  }
  .pagination ul > li > a, .pagination ul > li > span {
    padding: 4px 7px !important;
  }
  #return-to-top{
    display: none !important;
  }
  body.toolbar{
    padding-top: 0px !important;
  }

  .header .store-slogan{
    display:block;
    padding-left:0px;
  }
  .page-inventory .top-links .btn{
    display:none;
  }
  .footer-column-right{
    float:left;
  }
  .category  .category-table .category-item-actions .add-to-cart .btn-cart{
    margin-top:0;
    float:right;
    margin-left:5px;
  }
  .category  .category-table .category-item-right{
    margin-right:0;
  }
  .category .category-table li.category-item{
    flex-wrap:wrap;
  }
  .cart-table{
    margin-top:0;
  }
  .inv-cont .inv-middle-bottom{
    flex-direction: column;
  }
  .inv-cont .inv-center,.inv-cont .inv-right{
    width:auto;
  }
  .inv-cont img.i-small{
    max-height: 75px;
  }
  .inv-top, .inv-bottom {
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 768px) and (max-width: 979px) {
  .page-home #content .pull-left{
    width:50%;
  }
  #content div.pull-right{
    width:49%;
  }
  .region-sidebar-second .block{
    width:auto;
  }
}

@media screen and (max-width: 979px) {

  .page-checkout.sidebar-second #content{
    margin-right:auto;
    width:100%;
    padding-right: 10px !important;
  }
}

table.dataTable > tbody > tr.child ul li{
  display:inline-block;
  margin-right:15px;
}
.grayed-row{
  opacity:0.5;
}
.btn-group-right{
  float: right;
  margin: 0px 4px 6px 0px;
}
.page-inventory .breadcrumbs{
  width:86%;
}
.page-inventory .top-links{
  margin-top:-30px;
}
.page-inventory .top-links a.fan{
  text-align: right;
  display:block;
}
.page-inventory .top-links img{
  margin-right:7px;
  margin-top:5px;
}
a.noclick,a.noclick:hover,a.noclick:focus{
  text-decoration: none;
  color:inherit;
  outline: none;
  border: 0;
}
.dropdown-toggle .icon-bars-button{
  display: inline-block;
  vertical-align:middle;
}
.dropdown-toggle .icon-bar {
  margin-bottom:2px;
  display: block;
  width: 19px;
  height: 2px;
  background-color: #afafaf;
  border-radius: 1px;
}
.btn-group > .btn.dropdown-toggle{
  margin-left: 0;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}

@media screen and (min-width: 980px) {
  .santa .form-search{
    margin-top:8px;
  }
  .santa #user-outer{
    margin-top:7px;
  }
  .santa #regional-flag-cont{
    margin-top:9px;
  }
}

.form-inline .form-item,.page-user-register .form-type-checkbox{
  margin-top:0px;
}
.page-user-register .form-required,.page-user-login .form-required{
  display:none;
}
.message-details .form-list td.flabel{
  padding-right:0px;
}
table.dataTable.dtr-inline.collapsed.hideplus>tbody>tr>td:first-child:before, table.dataTable.dtr-inline.collapsed.hideplus>tbody>tr>th:first-child:before{
  display:none;
}
page-checkout #content{
  overflow:hidden;
}
.store-wishlist-table td{
  word-break: break-all;
}
.page-user-contact #edit-type{
  max-width: 100%;
  -webkit-box-sizing: border-box;
}
.sticky-header{
  z-index:1;
}
.multiple-submit-holder{
  text-align: center;
}
.multiple-submit-holder input{
  margin:0px 10px 0px 10px;
}
.ui-jqdialog{
  background:white;
  border-radius: 5px;
  border: 1px solid #21bbed;
  padding: 10px;
}
.ui-jqgrid-hdiv table{
  margin:0;
}
.ui-jqgrid .ui-jqgrid-btable tbody tr.jqgrow td{
  vertical-align: middle;
}
.ui-jqgrid .ui-jqgrid-htable .ui-th-div{
  height:auto;
}
.ui-jqgrid tr.ui-search-toolbar td>input{
  width: 100%;
  box-sizing: border-box;
}
#pg_jqGridPager{
  display:none;
}
/*tr.ui-widget-content a{
  color:#0088cc;
}*/
#jqGridPager .btn-group{
  margin:4px;
}
.jqgrow img{
  vertical-align: middle;
}
.center{
  text-align: center;
}
form{
  margin-bottom:0;
}
.page-catalog{
  table-layout:fixed; /*Fixed for datatables responsive inside tabs*/
}
.navbar .nav > li > a.noclick{
  font-size:1.1em;
}
td.ui-search-input select{
  width:100%;
}
.color-picker{
  display: flex;
  flex-wrap: wrap;
}
.color-picker-color{
  flex: 1;
}
.color-modal-outer{
  box-sizing: border-box;
  margin:10px;
  top:0px;
  left:0px;
  right:0px;
}
.ui-dialog .ui-resizable-handle{
  display:none !important;
}
div.ui-dialog{
  padding:0;
}
div.ui-dialog .ui-dialog-titlebar{
  padding:5px 10px;
}
.jq-toolbar{
  margin: 17px 0 10px;
}
.jq-toolbar .table-action{
  margin-left:0px;
}
.big-swatch{
  height:100%;
  width:100%;
}
.color-0{/* lightblue */
  /*color:#92c4d1;*/
  background-color: #92c4d1;
}
.color-1{/* olive */
  /*color:#d1a592;*/
  background-color: #d1a592;
}
.color-2{/* mustard */
  /*color:#d1c492;*/
  background-color: #d1c492;
}
.color-3{/* orange */
  /*color:#f89406;*/
  background-color: #f89406;
}
.color-4{/* green */
  /*color:#80c75f;*/
  background-color: #80c75f;
}
.color-5{/* pink */
  /*color:#c1a0bb;*/
  background-color: #c1a0bb;
}
.color-6{/* orange */
  /*color:#c7685f;*/
  background-color: #c7685f;
}
.color-7{ /* purple */
  /*color:#a65fc7;*/
  background-color: #a65fc7;
}
.form-list .btn-mini{
  margin-bottom:3px;
}
.order-row-but-cont .btn{
  margin-right:5px;
  display:block;
}
.order-row-but-cont .btn:last-child{
  margin-top:5px;
}
.ui-jqgrid tr.jqgrow,.click-item,table .clickable-cell{
  cursor: pointer;
}
.click-item a:hover{
  text-decoration: none;
  color:inherit;
}
div.dt-btn-group{
  display:none;
}
.dt-btn-toolbar div.dt-btn-group{
  display:block;
}
.grippie{
  display:none;
} 
.user-str .flag{
  vertical-align: text-top;
  margin-right:4px;
}
.cat-item-bot{
  color: #C76200;
  margin-top: auto;
}
.category-item.flow-ci{
  display:flex;
  flex-direction: column;
}
.category-item.flow-ci .price-box{
  margin-top:auto;
}
body .popover {
  white-space: pre-wrap;
}

