/*
Theme Name: Bazar theme
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

.my-account .woocommerce-MyAccount-navigation-link--inventory::before,
.my-account .woocommerce-MyAccount-navigation-link--sales::before,
.my-account .woocommerce-MyAccount-navigation-link--balance::before {
    display: flex;
    align-items: center;
    content: "";
    display: inline-block;
    margin-right: 8px;
    position: relative;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.my-account .woocommerce-MyAccount-navigation-link--inventory::before {
    background-image: url(/wp-content/themes/codelibry/assets/icons/gun.svg);
}

.my-account .woocommerce-MyAccount-navigation-link--sales::before {
    background-image: url(/wp-content/themes/codelibry/assets/icons/history.svg);
}

.my-account .woocommerce-MyAccount-navigation-link--balance::before {
    background-image: url(/wp-content/themes/codelibry/assets/icons/money.svg);
}

.my-account .card .info-block .group p, .my-account .card address .group p {
    width: 50%;
}

.my-account .card .info-block .group, .my-account .card address .group {
    max-width: 100%;
}

.my-account .payoutform {
    background: #0b0b0b;
    color: #ffffff;
    border-radius: 20px;
    max-width: 500px;
    padding: 30px;
}

.my-account .payoutform .input {
    border: 1px solid #36383C;
    border-radius: 30px;
    padding: 13px 20px;
    line-height: 1;
}

.my-account .payoutform  #card-amount {
    line-height: 1;
    margin-bottom: 0;
}

.my-account .payoutform .input::placeholder {
    color: #A3A3A3;
}

.my-account .payoutform button {
    height: 60px;
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}