/**
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software 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/license/osl-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 support@qloapps.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade this module to a newer
* versions in the future. If you wish to customize this module for your needs
* please refer to https://store.webkul.com/customisation-guidelines for more information.
*
* @author Webkul IN
* @copyright Since 2010 Webkul
* @license https://opensource.org/license/osl-3-0-php Open Software License version 3.0
*/

.rm_price_val {
    position: relative;
}
@keyframes blink {
    33%{background-size:calc(100%/3) 0%  ,calc(100%/3) 100%,calc(100%/3) 100%}
    50%{background-size:calc(100%/3) 100%,calc(100%/3) 0%  ,calc(100%/3) 100%}
    66%{background-size:calc(100%/3) 100%,calc(100%/3) 100%,calc(100%/3) 0%  }
  }
.room_price_overlay {
    background-color: #fff;
    position: absolute;
    inset: 0;
    display: flex;
}
.room_price_overlay_loader {
    margin: auto;
    height: 16px;
    width: 65px;
    --_circle: no-repeat radial-gradient(circle closest-side, rgb(51, 51, 51) 80%, #0000);
    background: var(--_circle) 0% 50%, var(--_circle) 50% 50%, var(--_circle) 100% 50%;
    background-size: calc(100% / 3) 100%;
    animation: blink 1s infinite linear;
}