/* Estilos para el bloque de resumen carrito de compras*/


.msp-container-ui.msp-embed-mode{
	float: right;
}

#modal-address .modal-content{
	background-color: #f4f4f4;
}

#modal-address #address-country{
	padding: 1.7rem 1rem;
	height: auto !important;
}

#address-country + span{
	top: 50px !important;
}

#sidebar{
  will-change: min-height;
}

#sidebar__inner{
  transform: translate(0, 0); /* For browsers don't support translate3d. */
  transform: translate3d(0, 0, 0);
  will-change: position, transform;
}

.cart-item-media {
    width: 100px; }
  
  .cart-item td {
    vertical-align: top;
    padding-top: 20px; }
  
  .cart-table th {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px; }
  
  .cart-table .product-vendor {
    margin-bottom: 0; }
  
  .cart-total-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #000000; }
  
  .shipping_text,
  .subtotal-value,
  .subtotal-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.69;
    letter-spacing: 0.5px;
    color: #000000;
    margin-bottom: 0; }
  
  .shipping_text {
    font-size: 12px; }
  
  .subtotal-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 12px; }
  
  .cart-total-box {
    background: #F6F6F9;
    border-radius: 4px;
    padding: 32px; }

	
  
  @media (min-width: 768px) {
    .cart-item-quantity {
      text-align: center; }
    .cart-item-quantity .quantity {
      margin-left: auto;
      margin-right: auto; } }

@media (max-width: 767px){
  .cart-table,
  .cart-table thead,
  .cart-table tbody {
    display: block;
    width: 100%; }
  .cart-item {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: repeat 2, auto;
    grid-template-rows: repeat 2, auto;
    -ms-grid-columns: 80px auto auto auto;
    grid-template-columns: 80px auto auto auto;
    -webkit-column-gap: 20px;
    column-gap: 20px;
    row-gap: 10px; }
  .cart-item-media {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
    width: 80px; }
  .cart-item-details {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2 / 4; }
  .cart-item-quantity {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2 / 4;
    padding-top: 0 !important; }
  .cart-item-price {
    -ms-grid-column: 4;
    -ms-grid-column-span: 1;
    grid-column: 4 / 5;
    -ms-grid-row: 1;
    grid-row: 1; }
  .cart-table thead tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .cart-table th {
    border-bottom: none; }
  .cart-total-box {
    padding: 32px 20px; }
}

/* CHECKOUT */
.checkout__step {
  background-color: #f4f4f4;
	padding: 24px;
	margin-bottom: 10px;
}


input[disabled], select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly]{
	cursor: not-allowed;
}
.checkout__form-line {
	display: flex;
}

.checkout__group {
	flex: 1;
	position: relative;
  padding-top: 25px;
}

.checkout__group:not(:first-child) {
	margin-left: 10px;
}

input.checkout__input,
textarea.checkout__textarea,
.select2-container--default .select2-search--dropdown .select2-search__field {
  font-size: 16px;
  width: 100%;
  padding: 1.5rem 1rem;
  border: none;
  box-shadow: var(--checkout-input-shadow);
  border-radius: 4px;
  background-color: #fff;
}

input.checkout__input:focus,
textarea.checkout__textarea:focus,
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  outline: none;
  border: var(--checkout-input-focus-border);
  box-shadow: var(--checkout-input-focus-shadow);
}

input.checkout__input:focus:invalid:focus,
textarea.checkout__textarea:focus:invalid:focus,
.select2-container--default .select2-search--dropdown .select2-search__field:focus:invalid:focus {
  outline: none;
  border: var(--checkout-input-border-error);
  box-shadow: var(--checkout-input-shadow-error);
}

.checkout__label {
	font-size: 15px;
	color: var(--checkout-primary-color-light);
	transition: all .3s;
  	position: absolute;
  	top: 0px;
	left: 0;
}

.checkout__input:placeholder-shown + .checkout__label {
	opacity: 0;
	visibility: hidden;
	transform: translateY(2rem);
}

.checkout__textarea:placeholder-shown + .checkout__label {
	opacity: 0;
	visibility: hidden;
	transform: translateY(2rem);
}

div.checkout__form-line > div.checkout__group > select.checkout__select,
div.checkout__form-line > div.checkout__group > div.field_with_errors > select.checkout__select {
	border: var(--checkout-input-border) !important;
	width: 100% !important;
	color: var(--checkout-primary-color-light) !important;
	font-size: 16px !important;
	font-weight: initial !important;
	background-color: #fff !important;
	outline: none;
	border-radius: 4px;
	padding: 1.7rem 1rem;
}

.select.checkout__select:focus {
	outline: none;
}

.checkout__required {
	color: var(--checkout-error-color);
}	

.checkout__radio-input {
	display: none;
}

.checkout__radio-label {
	background-color: #fff;
	padding: 20px;
  display: flex;
  width: 95%;
  margin: 0 auto;
	justify-content: space-between;
	border: var(--checkout-radio-border-light);
	position: relative;
	align-items: center;
  font-size: 15px;
  color: var(--checkout-label-color);
  cursor: pointer;
}

.checkout__radio-label:hover {
  border: var(--checkout-radio-border);
}

.checkout__radio-label:not(:first-child) {
	margin-top: 15px;
}

.checkout__radio-input:checked ~ .checkout__radio-label {
	border: var(--checkout-radio-border);
}

.checkout__radio-input:checked ~ .checkout__radio-label .checkout__radio-icon {
	display: block;
}

.checkout__radio-logo {
	width: 55px;
	height: 38px;
}

.checkout__radio-icon {
	width: 30px;
	height: 30px;
	position: absolute;
	top: -10px;
	right: -8px;
	background-color: var(--checkout-bg-secondary);
	display: none;
	border-radius: 50px;
}

.checkout__stores, 
.checkout__store-payment,
.checkout__billing {
	display: none;
}

.checkout__product,
.checkout__product:hover {
  color: var(--checkout-primary-color-light);
}
input.items-quantity{
	width: 35px !important;
	height: 30px;
	text-align: center;
	border: none;
	box-shadow: none;
	background-color: var(--checkout-bg);
}

.checkout__table-link {
	position: absolute;
	right: 12px;
	bottom: 15px;
}

.checkout__table-delete {
	width: 25px;
  height: 25px;
}

.checkout__resumen {
	padding: 5px 10px;
	text-align: center;
	font-size: 15px;
	color: var(--checkout-primary-color-light);
}



.checkout__btn,
.checkout__btn:hover,
.checkout__btn:focus {
	float: right;
	text-align: center;
	margin: 10px 0;
}

.checkout__btn-container {
	width: 100%;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	margin: 10px 0;
}

.checkout__table {
	margin-bottom: 0px !important;
}

.checkout__group-checkbox {
	display: flex;
	align-items: center;
	width: 100%;
}

input.checkout__checkbox-input {
	display: none;
}

input.checkout__checkbox-input + label {
	display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--checkout-primary-color-light);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.flex-1 {
	display: flex;
	flex: 1;
}

input.checkout__checkbox-input + label:last-child { margin-bottom: 0; }

input.checkout__checkbox-input + label:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .6;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

input.checkout__checkbox-input:checked + label:before {
  content: "\2714";
	font-size: 15px;
	border-radius: 0;
	opacity: 1;
	border-top-color: transparent;
	border-left-color: transparent;
	border: 1px solid #000;
}

input.checkout__checkbox-input:checked:disabled + label:before {
  content: "\2714";
	font-size: 20px;
	border-radius: 0;
	opacity: 1;
	border-top-color: transparent;
	border-left-color: transparent;
  border: 1px solid #ccc;
  color: #ccc;
}

#shipping-cost-temp {
	font-size: 15px;
  margin: 0 10px;
}

#shipping-cost-error {
	font-size: 15px;
	color: var(--checkout-error-color);
	flex: 1;
}

.checkout__resume {
	background-color: #fff;
	display: flex;
	padding: 10px 20px;
	justify-content: space-between;
	font-size: 15px;
	margin-bottom: 10px;
}

.checkout__total {
	font-weight: bold;
  color: var(--checkout-primary-color);
  background-color: #fff;
}

.checkout__offer {
	color: var(--checkout-error-color);
}

.checkout__ship {
	color: var(--checkout-primary-color-light);
  font-size: 15px;
}

.checkout__btns {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}



.checkout__btn-red,
.checkout__btn-red:hover,
.checkout__btn-red:active {
	margin-right: 10px;
	background-color: var(--checkout-error-color);
}


.modal-back {
	background-color: rgba(0, 0, 0, 0.7);
}


.ship_addresses {
	display: flex;
}

.mr-l {
	margin-right: 20px;
}

.my-l {
	margin: 20px 0;
}

.my-m {
	margin: 10px 0;
}

.py-m {
	padding: 10px 0;
}

.checkout__errors {
	background-color: var(--checkout-error-color);
	color: #fff;
	padding: 10px;
	margin: 10px 0;
	font-size: 15px;
	display: flex;
  justify-content: center;
}

.checkout__errors ul {
	list-style: none;
  margin: 0;
}

.checkout__edit-address {
  display: flex;
  background-position: -40px -1323px !important;
}



.checkout__continue_shop {
	margin-bottom: 10px;
	display: inline-block;
	color: var(--primary-color);
}

.box-block {
	display: block;
}

.flex-end {
	justify-content: flex-end;
}

a.accept-terms-rgpd,
a.accept-terms-rgpd:hover,
a.accept-terms-rgpd:focus,
a.preferences__link,
a.preferences__link:hover,
a.preferences__link:focus {
	color: var(--primary-color) !important;
	border-bottom: 1px solid var(--primary-color);
	text-decoration: none;
}

#payment-process {
	pointer-events: none;
}

.quantity-minus,
.quantity-minus:focus {
	background-color: var(--checkout-bg-secondary);
	background-image: url("/assets/github/minus.svg");
	background-repeat: no-repeat;
	background-size: 25px;
	width: 25px;
	height: 25px;
	border: none;
	outline: none;
}

.quantity-plus,
.quantity-plus:focus {
	background-color: var(--checkout-bg-secondary);
	background-image: url("/assets/github/add.svg");
	background-repeat: no-repeat;
	background-size: 25px;
	width: 25px;
	height: 25px;
	border: none;
	outline: none;
}

input.items-quantity::-webkit-inner-spin-button,
input.items-quantity::-webkit-outer-spin-button {
	-webkit-appearance: none;
  margin: 0;
}

.content-scroll {
	max-height: 325px;
	overflow: scroll;
	overflow-x: hidden;
	width: 102%;
}

*::-webkit-scrollbar,
*::-webkit-scrollbar-thumb {
  width: 16px;
  border-radius: 13px;
  background-clip: padding-box;
	border: 5px solid transparent;
	color: var(--checkout-primary-color-light);
}

*::-webkit-scrollbar-thumb {        
  box-shadow: inset 0 0 0 10px;
}

.preferences__info {
	flex: 1;
	display: flex;
	justify-content: space-between;
}

.preferences__resume {
	display: flex;
	font-size: 15px;
	background-color: var(--checkout-bg-secondary);
	margin: 10px 0;
	padding: 10px;
}

.preferences__box-left {
	flex: 0 0 40%;
}

.preferences__box-right {
	flex: 1;
}

.flex-right {
	display: flex;
	justify-content: flex-end;
}

.flex-col {
	flex-direction: column;
}

.flex-around {
	justify-content: space-around;
}

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

.flex {
	display: flex;
}

.flex-wrap {
	flex-wrap: wrap;
}

.paypal__btn {
	width: 40%;
}

iframe {
	border-bottom: 0px;
}

#promotion-error {
	font-size: 15px;
	display: flex;
	background-color: #fb4e4e;
	color: #fff;
	text-align: center;
	border-radius: 4px;
	padding: 10px;
	visibility: hidden;
}

.checkout__checkbox-invoice {
	flex: 1;
  align-self: center;
	margin-top: 15px;
	margin-left: 10px;
  width: 100%;
}


.select2-selection--single {
	outline: none;
	height: auto !important;
	border: none !important;
	border-radius: 2px !important;
	padding: 1.5rem 1rem;
	font-size: 15px;
	color: var(--checkout-primary-color-light);
	line-height: 24px !important;
}

.select2-dropdown {
	border: none !important;
	font-size: 15px;
}

.select2-search__field {
	height: 30px !important;
  border-radius: 2px !important;
}



.select2-selection__arrow {
	top: 12px !important;
}

.select2-dropdown--below {
	border: 2px solid var(--checkout-primary-color-light) !important;
  border-radius: 2px !important;
}

.select2-results {
	padding-left: .5rem !important;
}

.order-search {
	border-bottom: 15px solid var(--checkout-bg-secondary);
	margin: 0px;
}

.order-filters {
	flex: 1;
	margin: 0 10px;
}

.order-search-btn {
	align-self: center;
	margin-bottom: 10px;
} 

.order-result {
	background-color: var(--checkout-bg);
	font-size: 15px;
}

.order-return {
	color: #fff !important;
	text-decoration: none !important;
}

.p-m {
	padding: 10px;
}

.flex-between {
	justify-content: space-between !important;
}

.flex-center {
	justify-content: center !important;
}

.checkout__promo-codes {
	display: flex;
  flex-direction: column;
}

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

.checkout__promo-code {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #fff;
  margin: 5px 0px;
  padding: 12px;
}

.checkout__voucher {
	flex-basis: 33.33%;
	margin: 10px 0;
}

.checkout__voucher-select {
	line-height: 30px !important;
}

.address_ship {
	visibility: hidden;
}

.p-0 {
	padding: 0 !important;
}

.checkout__promo-details {
	margin-bottom: 10px;
}

.checkout__promo-summary {
	margin: 20px 0;
	outline: none;
	cursor: pointer;
	font-size: 17px;
	font-weight: bold;
}

#spain-provinces {
	display: none;
}

.table-resumen-pedido td {
  position: relative;
}



.checkout__gift {
  position: relative;
	display: block;
	cursor: pointer;
	width: 60px;
    height: 35px;
	background-image: url("/assets/github/regalo-off.svg");
	background-repeat: no-repeat;
	background-size: 50px;
	filter: grayscale(100%);
}

.checkout__gift-active {
  background-image: url("/assets/github/regalo-on.svg");
  filter: none;
}

.checkout__table-tr {
  background-color: #fff;
  padding: 12px;
}

a.login__recovery,
a.login__recovery:hover {
  color: var(--primary-color) !important;
  border-bottom: 1px solid var(--primary-color);
  text-decoration: none;
  font-size: 15px;
  margin: 10px;
}

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

.checkout__no-register {
  border-bottom: 2px solid #000;
  line-height: 1px;
  font-size: 17px;
  text-align: center;
}

.checkout__no-register > span {
  background: #f4f4f4;
  padding: 0 10px;
}

.checkout__login-separate {
  margin-top: 5px;
  font-size: 17px;
}

.checkout__thanks-icon {
  width: 30px;
  margin-right: 15px;
}

.checkout_thanks-register {
  width: 60%;
  margin: 0 auto;
}

.checkout_thanks-separator {
  border-bottom: 1px solid #ccc;
  width: 65%;
  margin: 30px auto;
  padding: 10px 0;
}

.pedido-realizado p {
  font-size: 15px !important;
  color: #555 !important;
}

.checkout_thanks-title {
  font-size: 35px;
  font-weight: 400;
}

.p-events-none {
  pointer-events: none;
}

.flex-v-center {
  align-items: center !important;
}

#password-discover,
#password-discover:focus,
#password-repeat-discover,
#password-repeat-discover:focus {
  background-color: transparent;
  border: none;
  position: absolute;
  right: 0;
  top: 50%;
  outline: none;
}

.pass__icon{
  width: 25px;
  height: 25px;
}

.sequra-hide {
  display: none; 
}

.sequra-visible {
  display: block;
}

.adyen-hide {
  display: none; 
}

.adyen-visible {
  display: block;
}

.checkout__radio-alert {
  color: var(--checkout-error-color);
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.checkout__alert-mini {
  width: 25px;
  margin-right: 5px;
}

.p-relative {
  position: relative;
}

.checkout__postcard {
  position: relative;
  display: block;
  cursor: pointer;
  width: 61px;
  height: 23px;
  background-image: url(/assets/github/postcard-off.svg);
  background-repeat: no-repeat;
  background-size: 54px;
  filter: grayscale(100%);
}

.checkout__postcard-active {
  background-image: url("/assets/github/postcard-on.svg");
  filter: none;
}

.checkout__postcard-container {
  justify-content: space-between;
  align-items: center;
  padding: 12px;
}

.fs-initial {
  font-size: initial;
}

.fs-14 {
  font-size: 14px;
}

.full-w {
  width: 100% !important;
}

.checkout__postcard-info {
  font-size: 15px;
  font-family: sans-serif;
  line-height: 2;
  padding: 25px;
}

.promo-canceled {
	background-color: var(--checkout-error-color);
	color: #fff;
	padding: 5px;
	border-radius: 5px;
}

.checkout__group-dni {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  font-size: 15px;
  padding-top: 20px !important;
}

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

#filtro-precio-left,
#filtro-precio-right {
  padding-top: 10px !important;
}

tbody, td, tfoot, th, thead, tr{
	border-style: none;
}

.checkout__table-tr{
	border-bottom: 10px solid #f4f4f4;
}

.checkout__radio-payments-message p{
	margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
	.checkout__sticky {position: relative;}
	.checkout__form-line, .preferences__info {flex-direction: column;}
	.checkout__group:not(:first-child) {margin-left: initial;}
	input.checkout__submit, button.checkout__submit, input.checkout__btn, a.checkout__btn, #payment-error {width: 100%;}
	input.checkout__submit {order: -1; margin-bottom: 25px;}
	.flex-end { justify-content: initial;}
	.checkout__btn-container, .login {flex-direction: column;}
	.checkout__btn-red { margin-right: 0px;}
	.checkout__back {order: 1;}
	.paypal__btn {width: 100%;}
	.outcome { text-align: center;}
	.checkout__step {padding: 10px 10px;}
	.checkout__checkbox-invoice { margin-left: 0px;}
	.order-search, .order-result-m { flex-direction: column;}
	.flex-end-m { justify-content: center !important;}
	body { font-size: 16px; }
  /*input, select { font-size: 100% !important; }*/
  .checkout_thanks-register { width: 100%;}
}
/* CHECKOUT */ 
