/**
* 2007-2025 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-2025 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.
*/
#module-warranty-ourservices #content-wrapper{
    width: 100%;
    max-width: 100%;
}
.warranty-page .card-body form{
    width: 100% !important;
    max-width: 100%;
}

.d-warranty-none {
    display: none;
}

input.error,
select.error {
    border: 1px solid #f00;
}

.form-warrnty {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-warrnty>div {
    display: flex;
    flex-direction: column;
    width: 49%;
}

.form-warrnty>div label {
    margin-bottom: 5px;
}

.submit-warranty {
    margin-top: 27px;
}
.p-relative{
    position: relative;
}
.product-titre{
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #444;
    text-decoration: underline;
}
.loader-css{
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #ffffff8a;
    align-items: center;
    justify-content: center;
    z-index:1;
    font-weight: 600;
}
.loader-css a{
    color: #2491f0;
    margin-left: 10px;
}
.loader-css.show{
    display: flex;
}
.loader-css .lds-ellipsis {
    /* change color here */
    color: #1c4c5b
}

.loader-css .lds-ellipsis,
.loader-css .lds-ellipsis div {
    box-sizing: border-box;
}

.loader-css .lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.loader-css .lds-ellipsis div {
    position: absolute;
    top: 33.33333px;
    width: 13.33333px;
    height: 13.33333px;
    border-radius: 50%;
    background: currentColor;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.loader-css .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.loader-css .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.loader-css .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.loader-css .lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

@media(max-width:768px){
    .warranty-page .card-body{
        padding: 20px !important;
    }
    .warranty-page .card-body h1{
        font-size: 20px;
        text-align: center;
        font-weight: bold;
    }
    .warranty-page .card-body .form{
        margin: auto;
        width: 100% !important;
        max-width: 100%;
        padding: 0 !important;
    }
    .form-warrnty>div{
        width:100% !important;
    }
}