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

#pwmerchant_payment_button a {
    padding: 10px;
    background-color: #FBFBFB;
}

#pwmerchant_payment_button a:hover {
    background-color: #f6f6f6;
}

#pwmerchant_payment_button a:after {
    display: block;
    content: "\f054";
    position: absolute;
    right: 15px;
    margin-top: -11px;
    top: 50%;
    font-family: "FontAwesome";
    font-size: 25px;
    height: 22px;
    width: 14px;
    color: #777777;
}


/* 

#pw_body_form {
    background: url("{$paymentBackground}");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vh;
    height: 1000px;
    margin: 0 8%;
    font-family: "Open Sans", helvetica, arial, sans-serif;
}

#pw_body_form p {
    font-size: 15px;
}

.header-menu {
    background-color: #fff;
    box-shadow: rgb(0 0 0 / 39%) 0px 2px 10px 0px;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100px;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
}

.header-menu img {
    width: 170px;
}

#paymentsway_form {
    margin: 0 auto;
}

.pw_hidden {
    display: none !important;
    transition: .3s;
}

.pw_block {
    display: block !important;
    transition: .3s;
}


#paymentsway_form {
    padding-top: 150px;
}

#paymentsway_form * {
    padding: 5px 10px;
    margin: 2px 0;
    text-align: left;
}

.js-additional-information {
    margin-left: 0 !important;
}

#check_payments {
    display: block;
    margin: 10px;
    width: 20px;
    height: 20px;
    background: white;
    cursor: pointer;
    border: 1px solid black;
}

#check_payments:checked {
    background: #181814;
}

.pw-container {
    width: 80%;
    vertical-align: middle;
}

.pw-col-md-3 {
    width: 50%;
    text-align: left;
}

.pw-input {
    width: 100%;
    height: 39px;
    padding: 8px 16px;
    font-size: 12px;
    line-height: 1.42857;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #bbcdd2;
    border-radius: 4px;
}

@media(max-width: 600px) {
    #pw_body_form {
        height: auto;
    }
    #pw_body_form p {
        font-size: 25px;
    }
    .pw-container {
        display: column;
        justify-content: center;
        margin: 0 10%;
    }
    .pw-col-md-3 {
        width: 100%;
        text-align: left;
    }
    .pw-input {
        width: 100%;
    }
}

#submit_payments {
    width: 200px;
    padding: 10px 0;
    margin: 10px 0;
    text-align: center;
    font-weight: 600;
    font-size: 19px;
    cursor: pointer;
    color: #F90F40;
    background-color: #181814;
    transition: .5s;
    border: 2px solid #181814;
}

#submit_payments:hover {
    transition: .5s;
    transform: scale(1.3);
}

*/