/**
* 2008-2022 Prestaworld
*
* NOTICE OF LICENSE
*
* The source code of this module is under a commercial license.
* Each license is unique and can be installed and used on only one website.
* Any reproduction or representation total or partial of the module, one or more of its components,
* by any means whatsoever, without express permission from us is prohibited.
*
* DISCLAIMER
*
* Do not alter or add/update to this file if you wish to upgrade this module to newer
* versions in the future.
*
* @author    prestaworld
* @copyright 2008-2022 Prestaworld
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
* International Registered Trademark & Property of prestaworld
*/

#layer_cart {
    display: none !important;
}
.presta_modal {
    position: fixed;
  inset: 0;
  z-index: 9999999999;
  background: rgba(0,0,0,0.75);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility 0s linear .25s;
}

.presta_modal.is-open{
  opacity: 1;
  visibility: visible;
  transition: opacity .25s ease;
}

.presta_modal-content {
  background: #fefefe;
  padding: 20px;
  border: 1px solid #888;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(640px, 95vw);
  transform: translateX(100%);
  transition: transform .35s ease;
  overflow-y: scroll;
}

.presta_modal.is-open .presta_modal-content{
  transform: translateX(0);
}

body.modal-open{
  overflow: hidden;
}

.presta_info {
    display: grid;
    padding: 0px 12%;
    margin: 48px 0;
}
.presta_info .btn {
    transition: opacity 0.3s ease;
}

.presta_close.close_icon {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.presta_close.close_icon:hover,
.presta_close.close_icon:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.presta_popup_loader {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  gap: 12px;
}
.presta_popup_loader span {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}
.presta_spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(6, 46, 97, 0.2);
  border-top-color: #1855a0;
  border-radius: 50%;
  animation: presta_spin 0.8s linear infinite;
}
@keyframes presta_spin {
  to { transform: rotate(360deg); }
}
.presta_popup_disabled {
  pointer-events: none;
  opacity: 0.4;
}