<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
* 2007-2019 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA &lt;contact@prestashop.com&gt;
*  @copyright 2007-2019 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark &amp; Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

.card-block label {
  text-align: left;
}

.card form#calendar {
  line-height: 20px;
  text-align: left;
}

.date_retrieve_row {
  margin-bottom: 12px;
}

.retrieve_selected {
  font-size: 18px;
  color: green;
}

input[name=datepicker] {
  vertical-align: middle;
  display: inline-block;
  width: calc(100% - 30px);
}

.date_retrieve_icon svg {
  vertical-align: middle;
  fill: #414141;
}

#selectstore {
  width: 100%;
}

.checkout.cart-detailed-actions.card-block .btn.btn-primary {
  text-transform: none;
  white-space: normal;
  pointer-events: none;
  opacity: .65;
}

.checkout.cart-detailed-actions.card-block .btn.btn-primary.active {
  pointer-events: auto;
}

.checkout.cart-detailed-actions.card-block .btn.btn-primary.enabled {
  pointer-events: auto;
  opacity: 1;
}

.row-confirm-date-shop {
  margin-top: 32px;
  text-align: center;
}

#confirm_date_shop {
  vertical-align: middle;
  margin: 2px 4px;
}

label[for=confirm_date_shop] {
  color: #b11b78;
  font-weight: bold;
}

label[for=confirm_date_shop]:hover {
  text-decoration: underline;
  cursor: pointer;
}

label[for=confirm_date_shop].confirmed {
  color: #b11b78;
}

label[for=confirm_date_shop].error {
  font-weight: bold;
  animation: blink 1s linear 2;
}

@keyframes blink {
  0% {
    color: #f5f5f5;
  }
  20% {
    color: #f5f5f5;
  }
  100% {
    color: #b11b78;
  }
}

.row-confirm-date-shop label {
  display: inline;
}
</pre></body></html>