/*
/**
 * Copyright since 2007 PrestaShop SA and Contributors
 * PrestaShop is an International Registered Trademark & Property of PrestaShop SA
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License version 3.0
 * that is bundled with this package in the file LICENSE.md.
 * It is also available through the world-wide-web at this URL:
 * https://opensource.org/licenses/AFL-3.0
 * 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.
 *
 * @author    WePresta <mail@wepresta.shop>
 * @copyright Since 2023 WePresta
 * @license   https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
 */


.modal-backdrop {
  z-index: -1;
}

#_desktop_osseuvat {
  cursor: pointer;
  height: 1.375rem;
  float: right;
  text-decoration: wavy;
  color: white;
  display: grid;
}

#_desktop_osseuvat a {
  cursor: pointer;
}

#_desktop_osseuvat:before {
  border-right: 1px solid rgba(255,255,255,.3);
  height: 15px;
  content: "";
  width: 1px;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  position: relative;
}

#wepresta_osseuvat_countries_list_modal .modal-backdrop {
    opacity: 0.5; 
}

#wepresta_osseuvat_countries_list_modal .modal-dialog.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 200px);
}
  
#wepresta_osseuvat_countries_list_modal .modal-content {
    margin: auto;
    height: 70vh;
    width: 90vw;
    max-width: 850px;
    overflow: scroll;
}

.country-item {
  padding: 10px;
  border: 1px solid #EEEEEE;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.country-item:hover {
  background-color: #EEEEEE;
  transition: 0.3s;
}


.wepresta_osseuvat_countries_list{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

#osseuvatloader_loader_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .osseuvatloader_loader {
    border: 4px solid #f3f3f3; /* Light gray */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  