/**
* 2007-2023 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-2023 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.
*/
.productstockcountdown {
    display: inline-block;
    text-align: center;
}

.product-page-right .productstockcountdown {
    padding: 15px 0 15px;
    margin-left: -11px;
}

.product-miniature .productstockcountdown {
    position: absolute;
    top: 87%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    background: rgba(0,0,0,.03);
    border-radius: 44px;
    transition: all .3s cubic-bezier(1, -0.75, 0.57, 1);
}


.productstockcountdown>div>span {
    display: inline-block;
    padding: 13px 12px 12px 12px;
    text-transform: uppercase;
    color: #777777;
    font-size: 13px;
}
.productstockcountdown>div {
    color: #3a3a3a;
}
.productstockcountdown>div>span:last-child {
    margin: 0;
}

.productstockcountdown>div>span>span {
    display: block;
}

.productstockcountdown>div>span>span:first-child {
    color: #3a3a3a;
    font-weight: normal;
    font-size: 16px;
    margin-bottom: -3px;
}
.productstockcountdown>div>span>span:first-child p {
    display: inline-block;
    font-size: 13px;
    text-transform: initial;
    margin-bottom: 0;
}

.productstockcountdown h3 {
    color: #f44848;
}

.lang-ru .productstockcountdown>div>span {
    font-size: 10px;
}
@media (min-width: 1280px) {
    .product-miniature .thumbnail-container:hover .productstockcountdown {
        top: 100%;
        display: block;
        opacity: 0;
    }
}
@media screen and (max-width: 1280px) {
    .product-miniature .productstockcountdown {
        top: 76%;
    }
    .lang-ru .productstockcountdown>div>span {
        font-size: 9px;
    }
    .lang-ru .productstockcountdown>div>span {
        padding: 5px 7px;
    }
    .product-miniature .productstockcountdown {
        width: 90%;
    }
}


@media screen and (min-width: 991px) and (max-width: 1200px) {
    .product-miniature .productstockcountdown {
        display: none;
        top: 65%!important;
    }
}
@media screen and (max-width: 991px){
    .product-miniature .productstockcountdown {
        top: 75%;!important;
        display: none;
    }
}
@media screen and (max-width: 767px) {
    .thumbnail-container-images .productstockcountdown {
        display: none;
    }
}
