/**
* 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.
*/

#tv_hiddendata {
    display: inline-block;
    margin-inline-start: 10px;
}


#order-infos .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#order-infos .text-xs-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: end;
}

/*cancel pop up design start*/

#cancel-order-popup .modal-header {
    /*background-color: #003366;*/
    /* Dark Blue for contrast */
    /*color: #fff;*/
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px 8px 0 0;
    padding: 15px 0;
}

#cancel-order-popup .modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 12px rgba(0, 0, 0, .4);
}

#cancel-order-popup .modal-description {
    font-weight: 500;
    color: #fff;
    opacity: .9;
    text-transform: capitalize;
    letter-spacing: 0.9px;
    margin-bottom: 0;
}


#cancel-order-popup .close {
    color: #ffffff;
    font-size: 40px;
    font-weight: 300;
    opacity: 0.9;
    position: absolute;
    right: -21px;
    top: -26px;
}

#cancel-order-popup .modal-title {
    margin: 0;
    line-height: 1.5;
    /*margin-bottom: 6px;*/
    letter-spacing: .6px;
    color: #fff;
}

#cancel-order-popup textarea {
    border-radius: 5px;
    width: 100%;
}

#cancel-order-popup .close:hover,
#cancel-order-popup .close:focus {
    /*color: #EC5569;*/
    /* Use the same red-orange as the cancel button */
    opacity: 1;
    transform: rotate(180deg);
    /* Close button slight rotation on hover */
    transition: transform 0.4s ease;
    outline: none;
}


#cancel-order-popup .modal-body {
    background-color: #ffffff;
    font-size: 16px;
    color: #333;
    padding: 20px;
}

#cancel-order-popup .modal-body p {
    text-align: center;
    color: #030303;
    letter-spacing: .6px;
}


#cancel-order-popup .modal-footer {
    /*background-color: #f7f7f7;*/
    border-top: 1px solid #ddd;
    padding: 15px 20px;
    text-align: center;
    border-radius: 0 0 10px 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

#cancel-order-popup .btn-secondary,
#cancel-order-popup .btn-danger {
    border-radius: 8px;
    font-size: 16px;
    padding: 10px 20px;
    letter-spacing: .9px;
    font-weight: 500;
}

#cancel-order-popup .btn-secondary {
    background-color: #cccccc;
    color: #333;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    text-transform: capitalize;
}

#cancel-order-popup .btn-secondary:hover {
    background-color: #b3b3b3;
}

#cancel-order-popup .btn-danger {
    /* background-color: #EC5569; */
    /* color: #fff; */
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border: unset;
}

#cancel-order-popup .btn-danger:focus {
    outline: none;
}

#cancel-order-popup .modal-open .modal {
    padding-inline-end: 0 !important;
}

#cancel-order-popup .modal-footer::after {
    display: none;
}

/*#cancel-order-popup .btn-danger:hover {
    background-color: #C43D4E;
}
*/
#cancel-order-popup .modal.fade .modal-dialog {
    transform: translate(0, -50px);
    transition: transform 0.3s ease-out;
}

#cancel-order-popup .modal.in .modal-dialog {
    transform: translate(0, 0);
}

#tv_hiddendata button:focus {
    outline: unset;
}

#tv_hiddendata button {
    white-space: normal;
    font-size: 15px;
    letter-spacing: .5px;
    padding: 10px;
    border: none;
}

div#cancel-order-popup {
    padding-inline-end: 0 !important;
}


/*cancel pop up design end*/

/*media start*/
@media(max-width: 768px) {
    #cancel-order-popup .modal-footer {
        padding: 10px 10px;
    }

    #cancel-order-popup .btn-secondary,
    #cancel-order-popup .btn-danger {
        border-radius: 5px;
        font-size: 14px;
        padding: 9px 10px;
    }

    #cancel-order-popup .modal-body {
        padding: 10px;
    }

    .page-order-detail h3 {
        margin-bottom: .5rem;
        font-size: 12px;
    }

    #cancel-order-popup .modal-description {
        font-size: 12px;
        margin-top: 4px;
    }

    #cancel-order-popup .page-order-detail h3 {
        font-size: 14px;
    }

    #tv_hiddendata button {
        padding: 8px 8px;
        font-size: 12px;
    }

    #cancel-order-popup .modal-title {
        font-size: 14px;
    }

    #cancel-order-popup .modal-body p {
        font-size: 13px;
    }
}

@media(max-width: 690px) {
    #cancel-order-popup .close {
        font-size: 30px;
        right: 2%;
        top: 0%;
    }
}

/*media end*/

/*message class start*/

.alert_message_wrapper svg {
    width: 21px;
    height: 21px;

}

.alert_message_wrapper svg path {
    fill: #fff;
}

.alert_message_wrapper {
    background-color: #fff !important;
    padding: 0 15px;
    border-radius: 7px;
    /*border: none;*/
    box-shadow: 0 0 6px rgba(76, 187, 108, .4);
}

.alert_message_wrapper span {
    background-color: green;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 36px;
}

.alert_message_wrapper p {
    color: #555;
    letter-spacing: .6px;
    font-weight: 600;
}

@media(max-width: 768px) {
    .alert_message_wrapper p {
        padding: 10px;
        font-size: 13px;
    }

    .alert_message_wrapper span {
        width: 22px;
        height: 22px;
        line-height: 30px;
    }

    .alert_message_wrapper svg {
        width: 18px;
        height: 18px;
    }
}

/*message class end*/