.wc-etransactions {

    &__info {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
        background-color: #f8f8f8;
        padding: 18px 18px 16px;
    
        &__item {
            flex: 1;
            padding: 0 10px;
    
            &__title {
                font-size: 14px;
                font-weight: 700;
                color: #6c868e;
            }
    
            &__content {
                font-size: 14px;
                font-weight: 400;
                color: #363a41;
            }
        }
    }

    &__row {
        display: flex;
        gap: 0 2%;

        @include mw1200 {
            flex-direction: column;
        }
    }

    &__right,
    &__left {
        flex: 0 0 49%;

        @include mw1200 {
            flex: 0 0 100%;
        }
    }

    &__block {
        border: 1px solid $color-border;
        border-radius: 5px;
        padding: 0.625rem;
        margin-bottom: 1.875rem;

        & h4 {
            margin: 0;
            margin-bottom: 0.875rem;
        }

        &__item {
            display: flex;
            justify-content: center;
            margin-bottom: 0.3125rem;

            &__title,
            &__content {
                flex: 0 0 50%;
                max-width: 50%;
                padding: 0 0.9375rem;
            }

            &__title {
                text-align: right;
            }
        }

        &__group-money {
            display: flex;
            flex-wrap: wrap;

            & input {
                flex: 1 1 auto;
                border: 1px solid $color-border;
                border-radius: 5px 0 0 5px;
            }

            & .symbol {
                display: flex;
                align-items: center;
                justify-content: center;
                border: 1px solid $color-border;
                border-left: 0;
                border-radius: 0 5px 5px 0;
                padding: .375rem 0.625rem;
                margin-left: -1px;
            }

            & button.button {
                margin-left: 0.625rem;
            }
        }

        & .wc-etransactions__warning {
            margin-top: 1.875rem;
        }
    }

    &__table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 1.875rem;

        & th,
        & td {
            padding: 0.4rem;
            border-bottom: 1px solid $color-border;
        }

        & td {

            & .amount {
                font-weight: bold;
            }
        }

        & thead {

            & th {
                border-bottom: 0.125rem solid $color-link;
                text-align: left;
            }
        }
    }
}

#wc-etransactions-payment-info {

    & .postbox-header {

        & .hndle {
            position: relative;
            padding-left: 38px;

            &::before {
                content: "";
                position: absolute;
                top: 50%;
                left: 12px;
                transform: translateY(-50%);
                display: inline-block;
                width: 22px;
                height: 22px;
                background-image: url('../../img/menu-logo.png');
                background-repeat: no-repeat;
                background-size: contain;
                background-position: center;
            }
        }
    }

	& .spinner {
		width: 0;
		margin: 0;
	}

	& .loading .spinner {
		width: 20px;
		margin: 4px;
		visibility: visible;
	}

	& .message {
		font-size: 80%;
		color: $color-danger;
		width: 100%;
		text-align: right;
	}
}