/**

* 2007-2022 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 <contact@prestashop.com>

*  @copyright 2007-2022 PrestaShop SA

*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)

*  International Registered Trademark & Property of PrestaShop SA

*

* Don't forget to prefix your containers with your own identifier

* to avoid any conflicts with others containers.

*/







.permanentpopup {

  position: fixed;

  z-index: 9999;

  background: #fffaf5;

  width: 265px;

  border-radius: 10px;

  padding: 20px;

  box-shadow: 0px 5px 79px 0px rgba(32, 32, 32, 0.22);

}



.permanentpopup img {

  max-width: 200px;

  height: auto;

}



.permanentpopup h1,

.permanentpopup h2,

.permanentpopup h3,

.permanentpopup h4,

.permanentpopup h5,

.permanentpopup h6 {

  text-transform: uppercase;

  color: black;

  font-family: "Montserrat", Arial, Helvetica, sans-serif;

  font-weight: 500;

  font-size: 15px;

  white-space: nowrap;

  margin-bottom: 20px;

  letter-spacing: -1px;

}



.permanentpopup p {

  margin: 0;

  font-family: "Montserrat", Arial, Helvetica, sans-serif;

  font-weight: 400;

  font-size: 13px;

  line-height: 18px;

}

.permanentpopup-content {

  opacity: 1;

}

.permanentpopup-close {

  padding: 5px;

  font-size: 30px;

  display: table;

  position: absolute;

  top: 10px;

  right: 16px;

  color: black;

  cursor: pointer;

  font-weight: normal;

  font-family: "Barlow", sans-serif;

  z-index: 99;

}



.permanentpopup.topleft {

  top: 25px;

  left: 25px;

}

.permanentpopup.topright {

  top: 25px;

  right: 25px;

}

.permanentpopup.bottomright {

  bottom: 25px;

  right: 25px;

}

.permanentpopup.bottomleft {

  bottom: 25px;

  left: 25px;

}



.permanentpopup.centered {

  top: 50%;

  left: 50%;

  transform: translate(-50% , -50%);

  width: fit-content;

  min-height: 30vh;

}

.permanentpopup.centered .permanentpopup-close {

  padding: 5px;

  font-size: 30px;

  display: table;

  position: absolute;

  top: -7px;

  right: 1px;

  color: black;

  cursor: pointer;

  font-weight: normal;

  font-family: "Barlow", sans-serif;

  z-index: 99;

}





.permanentpopup.centered img {

  max-width: 100%;

  height: auto;

}



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

  .permanentpopup.centered {

    width: 80vw;

    min-height: 25vh;   

  }



}





#overlay {

  position: fixed; /* Sit on top of the page content */



  width: 100%; /* Full width (cover the whole page) */

  height: 100%; /* Full height (cover the whole page) */

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-color: rgba(0,0,0,0.5); /* Black background with opacity */

  z-index: 2; /* Specify a stack order in case you're using a different order for other elements */

  cursor: pointer; /* Add a pointer on hover */

}