/**
* Installments Calculator
*
* @author    Michał Grzesik <mgrzesik@refix.pl>
* @copyright REFIX 2025 - https://refix.pl
* @license   Commercial
* @version   1.0.0
*
*/

a[onclick*="simulationEhp"] img[src*="obliczRate"] {
    display: none;
}

#oblicz-rate {
    display: none !important;
}

.refix-ic-button {
    width: calc(100% - 66px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    border-radius: 10px;
    -webkit-box-shadow: 0 -7px 22px 7px rgba(239, 239, 239, 1);
    -moz-box-shadow: 0 -7px 22px 7px rgba(239, 239, 239, 1);
    box-shadow: 0 -7px 22px 7px rgba(239, 239, 239, 1);
    cursor: pointer;
}

.refix-ic-button i {
    font-size: 24px;
}

.refix-ic-box {
    margin-right: 15px;
}

.refix-ic-box .refix-ic-main-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.525em;
}

.refix-ic-box .refix-ic-sub-text {
    font-size: 14px;
    color: #d01216;
    font-weight: bold;
}

.refix-ic-modal-content {
    border-radius: 12px;
    overflow: hidden;
}

.refix-ic-modal-content .close {
    margin-top: -4px;
}

.refix-ic-modal-body {
    padding: 1.5rem;
}

.refix-ic-santander-button {
    font-weight: 600;
    letter-spacing: 0.3px;
}

.refix-ic-bank-card {
    background-color: #fff;
    transition: box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    -webkit-box-shadow: 0 -7px 22px 7px rgba(239, 239, 239, 1);
    -moz-box-shadow: 0 -7px 22px 7px rgba(239, 239, 239, 1);
    box-shadow: 0 -7px 22px 7px rgba(239, 239, 239, 1);
}

.refix-ic-bank-card-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.refix-ic-bank-card:hover {
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
}

.refix-ic-bank-card ul {
    list-style: none;
    margin: 0;
    color: #222 !important;
    font-size: 13px;
}

.refix-ic-bank-card ul li i {
    color: #15ab00;
    margin-right: 5px;
}

.refix-ic-santander-button,
.refix-ic-alior-button {
    color: #fff;
    background-color: #d01216;
    border-color: #d01216;
    font-weight: 600;
    padding: 9px;
    border-radius: 10px;
    font-size: 13px;
}

.refix-ic-santander-button:hover,
.refix-ic-alior-button:hover,
.refix-ic-santander-button:focus,
.refix-ic-alior-button:focus {
    background-color: #222;
    border-color: #222;
}

.refix-ic-santander-button img,
.refix-ic-alior-button img {
    margin-right: 5px;
}