.panel {
    border-radius: 15px;
    border: none;
}

.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
    outline: none;
    outline-offset: unset;
}

.invest-container {
    max-width: 1200px !important;
    border-radius: 16px;
    border: none;
}

.payment-methods-container {
    padding: 40px;
    margin: 30px auto;
}

.pay-methods {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pay-method {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 200px;
    height: 100px;
}

.pay-method:first-child {
    padding-left: 0;
}

.pay-method:last-child {
    padding-right: 0;
}

.label-method {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #E8ECEC;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.label-method input[type="radio"] {
    display: none;
}

label.label-method:hover,
label.method-choosen {
    cursor: pointer;
    font-weight: bold;
    background-color: #fce295;
}

.label-method img.img-method {
    max-width: 60px;
    height: auto;
    padding: 0% !important;
}

.method-text {
    font-family: Roboto, "Cairo";
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #72777a;
}

input[type="checkbox"].big-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #6D4916;
    border-radius: 3px;
    cursor: pointer;
    background-color: white;
    flex-shrink: 0;
}

input[type="checkbox"].big-checkbox:checked {
    background-color: #6d4916;
}

input[type="checkbox"].big-checkbox:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5.5px;
    width: 4px;
    height: 9px;
    border: 1px solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.radio input[type="radio"], 
.radio-inline input[type="radio"], 
.checkbox input[type="checkbox"], 
.checkbox-inline input[type="checkbox"] {
    position: absolute;
    margin-top: 4px \9;
    margin-left: unset;
    margin-inline-start: -20px;
    outline: none;
}

.label-checkbox {
    font-size: 0.9em;
    margin: 0;
    margin-inline-start: 10px;
}

[dir="rtl"] .label-checkbox {
    margin-inline-start: 30px;
}

.btn-cyan.invest,
.btn-cyan.charge {
    float: inline-end;
    margin-top: 10px;
}

.reminder .level-1,
.reminder .level-2,
.uppercase {
    font-family: Roboto, "Cairo";
}

.reminder .amount-reminder {
    color: #6d4916 !important;
}

@media (max-width: 1129px) {
    [dir="rtl"] .pay-method:last-child {
        padding-right: 0;
        position: relative;
        right: 15px;
    }
}

@media (max-width: 768px) {
    .btn-cyan.invest,
    .btn-cyan.charge {
        width: 98%;
        float: none;
        margin: 0 auto;
        margin-top: 10px;
    }

    [dir="rtl"] .pay-method:first-child {
        padding-left: 0;
        position: relative;
        left: 15px;
    }

    [dir="rtl"] .pay-method:last-child {
        padding-right: 0;
        right: unset;
    }
}
