.inline-select {
  height: 44px;
  border: solid 1px #e8e8e8;
  -moz-border-radius: 21px 0 0 21px;
  -webkit-border-radius: 21px 0 0 21px;
  border-radius: 21px 0 0 21px;
  padding: 0 30px 0 20px;
  margin-right: -22px;
  float: left;
  position: relative;
  background: #f9f9f9;
  z-index: 1;
}

.inline-select .selected-value {
  display: block;
  float: left;
  padding: 10px 0 10px 28px;
  line-height: 22px;
  cursor: pointer;
  position: relative;
  min-width: 170px;
}

.inline-select .select-options {
  position: absolute;
  left: 20px;
  top: 100%;
  white-space: nowrap;
  background: #f9f9f9;
  border: solid 1px #e8e8e8;
  list-style: none;
  margin: 0;
  display: none;
}

.inline-select .select-options li {
  padding: 4px 15px 4px 28px;
  cursor: pointer;
  font-size: 14px;
  position: relative;
  border-left: solid 5px #f9f9f9;
}

.inline-select .select-options li:hover {
  background-color: #fff;
  border-left: solid 5px #fff;
}

.inline-select [data-flag]:before {
  width: 20px;
  height: 13px;
  background-size: 100% 100% !important;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: "";
  font-size: 0;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -6px;
}

.inline-select [data-flag="uk"]:before {
  background-image: url('../images/flags/flag-gbr.png');
}

.inline-select [data-flag="de"]:before {
  background-image: url('../images/flags/flag-deu.png');
}

.inline-select [data-flag="fr"]:before {
  background-image: url('../images/flags/flag-fra.png');
}

.inline-select [data-flag="es"]:before {
  background-image: url('../images/flags/flag-esp.png');
}

.inline-select [data-flag="it"]:before {
  background-image: url('../images/flags/flag-ita.png');
}

.inline-select [data-flag="nl"]:before {
  background-image: url('../images/flags/flag-nld.png');
}

.inline-select [data-flag="GBR"]:before {
  background-image: url('../images/flags/flag-gbr.png');
}

.inline-select [data-flag="DEU"]:before {
  background-image: url('../images/flags/flag-deu.png');
}

.inline-select [data-flag="FRA"]:before {
  background-image: url('../images/flags/flag-fra.png');
}

.inline-select [data-flag="ESP"]:before {
  background-image: url('../images/flags/flag-esp.png');
}

.inline-select [data-flag="ITA"]:before {
  background-image: url('../images/flags/flag-ita.png');
}

.inline-select [data-flag="NLD"]:before {
  background-image: url('../images/flags/flag-nld.png');
}

.inline-select + .btn {
  position: relative;
  z-index: 5;
}

.inline-select.vlarge-select .selected-value {
  padding: 1.1em 0 1em 1.6em;
}

.inline-select.vlarge-select {
  height: 3.6em;
}

.btn {
  display: inline-block;
  vertical-align: top;
  line-height: 20px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'ProximaNova', Arial, sans-serif;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
  outline: none;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  white-space: nowrap;
  padding: 4px 8px;
  max-width: 100%;
  z-index: 5;
}

.btn-radius {
  -moz-border-radius: 13px;
  -webkit-border-radius: 13px;
  border-radius: 13px;
  padding-left: 13px;
  padding-right: 13px;
}

.btn-large {
  font-size: 18px;
  line-height: 22px;
  padding: 10px 25px;
  -moz-border-radius: 21px;
  -webkit-border-radius: 21px;
  border-radius: 21px;
}

.btn-medium {
  font-size: 16px;
  line-height: 20px;
  padding: 10px 17px;
  -moz-border-radius: 21px;
  -webkit-border-radius: 21px;
  border-radius: 21px;
}

.btn-small {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.btn-green,
.btn-circle-green {
  color: #fff;
  background: #719c0f;
  text-shadow: 0 1px rgba(96,133,13,.35);
}

.btn-green:hover,
.btn-green:focus {
  color: #fff;
  background: #59820a;
  text-shadow: 0 1px #719c0f;
  text-decoration: none;
}

.btn-grey {
  color: #777777;
  border: solid 1px #e8e8e8;
  background: #f4f4f4;
	background-image: -webkit-linear-gradient(bottom, #e4e4e4, #f4f4f4);
	background-image: -moz-linear-gradient(bottom, #e4e4e4, #f4f4f4);
	background-image: -o-linear-gradient(bottom, #e4e4e4, #f4f4f4);
	background-image: -ms-linear-gradient(bottom, #e4e4e4, #f4f4f4);
	background-image: linear-gradient(to top, #e4e4e4, #f4f4f4);
  text-shadow: 0 1px rgba(255,255,255,.7);
}

.btn-grey:hover,
.btn-grey:focus {
  background: #e4e4e4;
	background-image: -webkit-linear-gradient(bottom, #f4f4f4, #e4e4e4);
	background-image: -moz-linear-gradient(bottom, #f4f4f4, #e4e4e4);
	background-image: -o-linear-gradient(bottom, #f4f4f4, #e4e4e4);
	background-image: -ms-linear-gradient(bottom, #f4f4f4, #e4e4e4);
	background-image: linear-gradient(to top, #f4f4f4, #e4e4e4);
  text-decoration: none;
}

.btn-orange {
  color: #231f20;
  background: #f8a51b;
}

.btn-orange:hover,
.btn-orange:focus {
  background: #ec9c12;
  text-decoration: none;
}

.btn span {
  display: inline-block;
  vertical-align: top;
  line-height: 20px;
  font-size: 14px;
}

.btn-vlarge span {
  font-size: 28px;
  vertical-align: middle;
}

.btn .btn-circle {
  display: inline-block;
  vertical-align: top;
  margin: -10px 10px -10px -25px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  -moz-border-radius: 21px;
  -webkit-border-radius: 21px;
  border-radius: 21px;
}

.btn .btn-circle span {
  font-size: 42px;
  display: inline-block;
  line-height: 42px;
}

.form-label {
    display: inline-block;
    width: 12em;
}

.form-field {
    display: inline-block;
}

.clearfix::after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
}

input[type="text"], input[type="password"], input[type="number"], input[type="date"], input[type="email"], input[type="search"], select {
    background: #fff none repeat scroll 0 0;
    color: #595959;
    font-family: "ProximaNova",Arial,sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    padding: 0.5em;
}

.option-info {
    margin-bottom: 2em;
    margin-top: 0.75em;
}

.accordion-info-title, .static-accordion-options .accordion-info-title {
    background: #001f52 none repeat scroll 0 0;
    border-radius: 10px 10px 0 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 23px;
    padding: 10px;
    text-align: center;
}

.accordion-info-table, .static-accordion-options .accordion-info-table {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background: #f9f9f9 none repeat scroll 0 0;
    border-color: -moz-use-text-color #e8e8e8 #e8e8e8;
    border-image: none;
    border-radius: 0 0 10px 10px;
    border-style: none solid solid;
    border-width: medium 1px 1px;
}

.accordion-info-table table, .static-accordion-options .accordion-info-table table {
    border-spacing: 0;
    color: #575757;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-shadow: 1px 1px rgba(255, 255, 255, 0.6);
    width: 100%;
}
.accordion-info-table table th:first-child, .accordion-info-table table td:first-child, .static-accordion-options .accordion-info-table table th:first-child, .static-accordion-options .accordion-info-table table td:first-child {
    border-left: medium none;
    text-align: left;
}
.accordion-info-table table tr:nth-child(2n) td, .static-accordion-options .accordion-info-table table tr:nth-child(2n) td {
    background: #eee none repeat scroll 0 0;
    border-left-color: #f8f8f8;
}
.accordion-info-table table th, .accordion-info-table table td, .static-accordion-options .accordion-info-table table th, .static-accordion-options .accordion-info-table table td {
    padding: 10px;
    text-align: center;
}
.accordion-info-table table th, .static-accordion-options .accordion-info-table table th {
    background: #dcdcdc none repeat scroll 0 0;
    border-left: 1px solid #f1f1f1;
}

.accordion-info-table table td, .static-accordion-options .accordion-info-table table td {
    border-left: 1px solid #fdfdfd;
}
.accordion-info-table table tr:last-child td.red {
    border-radius: 0 0 0 9px;
}

/* DataTables */

.dataTables{
  border-spacing: 0;
  width:100%;
}

.dataTable tr td.center {
  text-align: center;
}

table.dataTable, table.dataTable th, table.dataTable td {
    box-sizing: content-box;
}
table.dataTable {
    border-collapse: separate;
    border-spacing: 0;
    clear: both;
    margin: 0 auto;
    width: 100%;
}
.dataTable {
    padding-bottom: 1em !important;
    padding-top: 1em !important;
}

table.dataTable thead th, table.dataTable thead td {
    border-bottom: 1px solid #111;
    padding: 10px 18px;
}

table.dataTable thead .sorting_desc {
    background-image: url("../images/sort_desc.png");
}

table.dataTable thead .sorting_asc {
    background-image: url("../images/sort_asc.png");
}

table.dataTable thead .sorting {
    background-image: url("../images/sort_both.png");
}

table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc, table.dataTable thead .sorting_asc_disabled, table.dataTable thead .sorting_desc_disabled {
    background-position: right center;
    background-repeat: no-repeat;
}

table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
    background-color: #f9f9f9;
}

.fancy-info-box-key {
  display: inline-block;
  width: 6.5em;
}

.fancy-info-box-value {
  display: inline-block;
}

.fancy-info-box {
  margin-bottom: 2em;
  margin-top: 2em;
}

.hidden {
  display: none !important;
}

.form-control-street{
  width: auto !important;
}

.form-control-house-num{
  width: 5em !important;
}

.form-control-house-num-ext{
  width: 5em !important;
}

.ajax-json-error{
  background-color:#f2dede;
}

/* Messages */

.fancy-message-box {
  padding: 1em;
  margin-bottom: 1em;
  color: #434343;
}

.fancy-message-box i {
  font-size: 1.5em;
  line-height: 0.5em;
  margin-left: -4px;
  margin-top: 0.15em;
  margin-right: 0.5em;
  float: left;
  height: 100%;
}

.fancy-message-box-info-circle{
  background: #BFDDF1;
}

.fancy-message-box-info-circle i {
  color: #0076C8 !important;
}

.fancy-message-box-check-circle{
  background: #B8CE88;
}

.fancy-message-box-check-circle i {
  color: #719c0f !important;
}

.fancy-message-box-warning{
  background: #F8D59A;
}

.fancy-message-box-warning i {
  color: #EFAA33 !important;
}

.fancy-message-box-times-circle{
  background: #F0C0C0;
}

.fancy-message-box-times-circle i {
  color: #BF0000 !important;
}

.fancy-message-box ul {
  list-style-type: none;
  margin-left: 2.5em !important;
}

.fancy-message-box a {
  color: #434343;
  text-decoration: underline;
}

.fancy-message-box a:hover {
  color: #434343;
  text-decoration: none;
}

.fancy-message-box .closer{
  float: right;
  cursor: pointer;
  margin-left: 0.5em;
}

.fancy-message-box .closer i{
  font-size: 1.2em;
  line-height: 0.5em;
  margin-top: 0.24em;
  margin-right: 0;
  float: left;
  height: 100%;
}

.fancy-message-box .closer:hover{
  opacity: 0.8;
}

/* Fancy Tabs */

.tabs-navigation.tabs-top {
  padding: 14px 0 0;
  background: #f4f4f4;
  background-image: -webkit-linear-gradient(bottom, #e4e4e4, #f4f4f4);
  background-image: -moz-linear-gradient(bottom, #e4e4e4, #f4f4f4);
  background-image: -o-linear-gradient(bottom, #e4e4e4, #f4f4f4);
  background-image: -ms-linear-gradient(bottom, #e4e4e4, #f4f4f4);
  background-image: linear-gradient(to top, #e4e4e4, #f4f4f4);
  border-bottom: solid 7px #db4e58;
}

.tabs-navigation.tabs-bottom {
  padding: 0 0 14px;
  border-top: solid 7px #19356b;
  background: #f1f1f1;
  background-image: -webkit-linear-gradient(bottom, #e4e4e4, #f4f4f4);
  background-image: -moz-linear-gradient(bottom, #e4e4e4, #f4f4f4);
  background-image: -o-linear-gradient(bottom, #e4e4e4, #f4f4f4);
  background-image: -ms-linear-gradient(bottom, #e4e4e4, #f4f4f4);
  background-image: linear-gradient(to top, #e4e4e4, #f4f4f4);
}

.tabs-navigation ul {
  list-style: none;
  display: block;
  margin: 0;
}

.tabs-navigation li {
  display: block;
  float: left;
}

.tabs-navigation li + li {
  padding-left: 25px;
}

.tabs-navigation a {
  display: block;
  float: left;
  padding: 10px 0;
  line-height: 31px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  text-shadow: 1px 1px rgba(255,255,255,.8);
  color: #898989;
}

.tabs-navigation.tabs-top a:hover {
  color: #db4e58;
}

.tabs-navigation.tabs-top a.active {
  color: #fff;
  background: #db4e58;
  text-shadow: 1px 1px rgba(130,46,53,.3);
  padding: 10px 17px;
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}

.tabs-navigation.tabs-bottom a:hover {
  color: #19356b;
}

.tabs-navigation.tabs-bottom a.active {
  color: #fff;
  background: #19356b;
  text-shadow: 1px 1px rgba(13,38,86,.3);
  padding: 10px 17px;
  -moz-border-radius: 0 0 4px 4px;
  -webkit-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}

.tabs-navigation [class^="icon-"],
.tabs-navigation [class*=" icon-"] {
  font-size: 24px;
  vertical-align: middle;
  margin-right: 10px;
}

.tabs-navigation + #footer {
  background: #d2d2d2;
  border-top: solid 1px #bdbdbd;
  color: #777;
}

.tabs-navigation + #footer a {
  color: #777;
}

/* Fancy Sub Tabs */

.shyp-nav-tabs{
  width: 100%;
  margin-left: 0;
  margin-bottom: 1em;
  text-align: center;
}
.shyp-nav-tabs li{
  list-style-type: none;
  display: inline-block;
  background: #E8E8E8;
  text-align: center;
  border-right: white solid 0.2em;
}
.shyp-nav-tabs li a{
  color: #898989;
  text-shadow: 1px 1px rgba(255,255,255,.8);
  font-weight: 600;
  text-decoration: none !important;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0.5em;
}
.shyp-nav-tabs li a:hover{
  text-decoration: none !important;
  color: #DB4E58;
}
.shyp-nav-tabs li.active{
  background: #DB4E58;
  position: relative;
}
.shyp-nav-tabs li.active a{
  color: white;
  text-shadow: none !important;
}
.shyp-nav-tabs li.m1{
  width: 100%;
}
.shyp-nav-tabs li.m2{
  width: 49.5%;
}
.shyp-nav-tabs li.m3{
  width: 33%;
}
.shyp-nav-tabs li.m4{
  width: 24.5%;
}

.sub-shyp-nav-tabs li a:hover{
  color: #19356B;
}

.sub-shyp-nav-tabs li.active{
  background: #19356B;
}

.sub-shyp-nav-tabs li.active a{
  color: white;
  text-shadow: none !important;
}

hr.hr-menu-tabs-separator{
  margin-bottom: 0.2em;
}

@media only screen and (max-width: 767px) {
  .shyp-nav-tabs li{
    width: 100% !important;
    margin-bottom: 0.5em;
  }
}

.shyp-nav-tabs li.active.parent:after{
  content: "";
  width:18px;
  height:18px;
  background: #DB4E58;
  -ms-transform:rotate(45deg); /* IE 9 */
  -webkit-transform:rotate(45deg); /* Safari and Chrome */
  transform:rotate(45deg);
  position:absolute;
  bottom:-9px;
  left: 50%;
  margin-left: -12px;
  z-index: -1;
}

.table {
  margin-bottom: 20px;
  max-width: 100%;
  width: 100%;
}

.currency{
  display: inline-block;
}

/* Fancy field editor */

.backend-customer-details .section-title{
  font-size: 100%;
  font-weight: bold;
  margin-top: 1.5em;
  margin-bottom: 1.2em;
  padding-bottom: 0.2em;
  color: dimgrey;
  border-bottom: lightgrey solid 0.1em;
  width: 100%;
}

.field-editor, .backend-customer-details .form-group{
  margin-bottom: 0.5em;
}

.field-editor label, .backend-customer-details .form-group .form-label{
  width: 15em !important;
  display: inline-block;
}

.field-editor input{
  width: 15em !important;
  display: inline-block;
}

.field-editor select{
  width: 17.2em;
  display: inline-block;
}

.backend-customer-details .marketplaces{
  margin-top: 1em;
}

.backend-customer-details .marketplaces .marketplace{
  display: inline-block;
  margin-right: 1em;
}

a.fancybox{
    cursor: pointer;
}

/* Auto fill province: style for disabled input */
#address_form_edit input:disabled, #account-setup-form input:disabled{
  background: transparent;
  border: none;
  padding: 0.4em;
  color: #595959;
}

/* Extra row (details in datatables) */
.extra-row-details-table{
  width: 100%;
}

.extra-row-details-table .form-group{
  display: block !important;
}

.form-row{
  line-height:2.3em;
}

/* Fancy pick-up address selector */

#pick-up-address-choose-box{
  margin-top: 1em;
}

#selected-pick-up-address{
  margin-top: 1em;
}

.pick-up-address-dropdown{
  width: 15em !important;
}

.pickup-margin{
  margin-top: 0.75em;
  margin-left: 1em;
  margin-bottom: 1em;
}

.address {
  display: none;
}

.address.default {
  display : block;
}

span.disabledicon{
  pointer-events: none;
}

