/**
* 2007-2024 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-2024 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.
*/
.btn-custom {
    background-color: #00A353;
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s, color 0.3s;
    width: 150px;
    height: 40px;
}
.btn-custom:hover {
    background-color: #19572E;
    color: white;
}
.button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.cont_order {
    text-align: center;
    margin: 0 auto;
    width: 100%;
    font-size: large;
}
.cont_text {
    text-align: justify;
}

.main-block {
    justify-content: center;
    color: #19572E;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 50%;
    text-align: center;
}
.block-1 {
    display: inline-block;
    padding-bottom: 15px;
}

.block-1 h3 {
    color: #19572E;
}

@media (max-width: 768px) {
    .block-1 {
        text-align: center;
        margin: 0 auto;
        width: 90%;
    }
    .block-2 {
        text-align: center;
        margin: 0 auto;
        width: 90%;
    }
}

#display {
    color: #939598;
}

.block-2 p strong span {
    color: #19572E;
}

.block-2 {
    background-color: #eee;
}

@media (max-width: 768px) {
    .block-2 {
        border: none;
        width: 50%;
        height: 40%;
        padding-top: 2%;
    }
}

@media (min-width: 768px) {
    .block-2 {
        border: 1px solid #00A353;
        width: 50%;
        height: 30%;
        padding-top: 2%;
    }
}

#details {
    color: #878787;
}


