﻿.bank-account-informations table thead th {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #0F1419;
    padding: 20px;
    background: #F5F5F5;
    border-left: none !important;
    border-right: none !important;
}

.bank-account-informations table tbody td {
    border-left: none !important;
    border-right: none !important;
}

.bank-account-informations table {
    border: 1px solid #DEDEDE;
    margin: 0;
}

    .bank-account-informations table tbody td {
        border-left: none !important;
        border-right: none !important;
        padding: 20px;
        font-family: Montserrat;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #333333;
        transition: .4s;
    }

    .bank-account-informations table tbody tr {
        border: none;
        border-top: 1px solid #EBEBED;
    }

        

.iban-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 12px;
}

.bank-account-informations table tbody tr:first-child {
    border-top: none !important;
}

.bank-account-informations table tbody tr .copy-area svg path
{
    transition: .4s;
}



.copy-area {
    cursor: pointer;
}


.notifier {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(239 141 13);
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    font-family: sans-serif;
    z-index: 1;
}

@media only screen and (min-width: 992px)
{
    .bank-account-informations table tbody tr:hover {
        border-top: 1px solid #F8D3BA;
    }

        .bank-account-informations table tbody tr:hover td {
            background: #FDF1E9;
            font-weight: 600;
            transition: .4s;
        }

        .bank-account-informations table tbody tr:hover .copy-area svg path {
            stroke: #ED7512;
            transition: .4s;
        }
}

@media only screen and (max-width: 991px)
{
    .bank-account-informations table td {
        display: block;
        text-align: start;
        position: relative;
        border-bottom: 1px solid #ddd;
    }

    .bank-account-informations table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        position: absolute;
        padding: 0;
        position:;
        width: 1px;
    }

    .bank-account-informations table td::before {
        content: attr(data-label);
        position: absolute;
        top: 16px;
        font-weight: 600;
    }

    .bank-account-informations table tr td:first-child::before {
        top: 16px;
    }

    .bank-account-informations table tbody td {
        padding-top: 48px;
    }

    .bank-account-informations table tbody {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }

    .bank-account-informations table {
        border: none;
    }

        .bank-account-informations table tbody tr {
            border: 1px solid #EBEBED!important;
        }

            .bank-account-informations table tbody tr:first-child {
                border-top: 1px solid #EBEBED !important;
            }

            .bank-account-informations table tbody tr td:last-child {
                border-bottom: none;
            }

}