﻿
.gs-money-menu,
.gs-money-menu * {
    box-sizing: border-box;
}

.gs-money-menu {
    position: fixed !important;

    right: 22px !important;
    bottom: 22px !important;

    z-index: 99999 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;

    font-family: Arial, Helvetica, sans-serif !important;
}

/* CHECKBOX GIZLI */

.gs-money-toggle {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    opacity: 0 !important;
    pointer-events: none !important;
}


/* =========================================================
   ANA $ BUTONU
   ========================================================= */

.gs-money-main {
    width: 60px !important;
    height: 60px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 2px solid #28d47f !important;
    border-radius: 50% !important;

    background: #17966c !important;
    color: white !important;

    font-size: 35px !important;
    font-weight: 500 !important;
    line-height: 1 !important;

    cursor: pointer !important;

    user-select: none !important;

    box-shadow:
        0 0 0 4px rgba(40,212,127,.13),
        0 0 19px rgba(40,212,127,.65),
        0 6px 22px rgba(0,0,0,.45) !important;

    transition:
        transform .2s ease,
        background .2s ease !important;
}

.gs-money-main:hover {
    background: #1cab7c !important;
    transform: scale(1.05) !important;
}


/* =========================================================
   IKI BUTON
   ========================================================= */

.gs-money-actions {
    margin: 0 0 10px 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;

    gap: 9px !important;

    opacity: 0 !important;
    visibility: hidden !important;

    transform:
        translateY(18px)
        scale(.95) !important;

    pointer-events: none !important;

    transition:
        opacity .18s ease,
        transform .18s ease,
        visibility .18s ease !important;
}


/* CHECKBOX SECILIYSE AC */

.gs-money-toggle:checked
+ .gs-money-actions {

    opacity: 1 !important;
    visibility: visible !important;

    transform:
        translateY(0)
        scale(1) !important;

    pointer-events: auto !important;
}


/* ANA BUTONU ACILINCA HAFIF DONDUR */

.gs-money-toggle:checked
~ .gs-money-main {

    transform: rotate(45deg) !important;
}


/* TEK SATIR */

.gs-money-action {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;

    gap: 10px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    outline: 0 !important;

    background: transparent !important;

    cursor: pointer !important;
}


/* SIYAH ETIKET */

.gs-money-label {
    min-width: 108px !important;
    height: 34px !important;

    padding: 0 10px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 5px !important;

    background: #2b2727 !important;
    color: #ffffff !important;

    font-size: 12px !important;
    font-weight: 600 !important;

    white-space: nowrap !important;

    box-shadow:
        0 3px 12px rgba(0,0,0,.28) !important;
}


/* YESIL KUCUK YUVARLAK */

.gs-money-mini {
    width: 41px !important;
    height: 41px !important;

    flex: 0 0 41px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    background: #17966c !important;
    color: #fff !important;

    font-size: 19px !important;
    font-weight: 700 !important;

    box-shadow:
        0 4px 14px rgba(0,0,0,.3) !important;
}


.gs-money-action:hover .gs-money-label {
    background: #393333 !important;
}

.gs-money-action:hover .gs-money-mini {
    background: #20ad7e !important;
}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 650px) {

    .gs-money-menu {
        right: 14px !important;
        bottom: 16px !important;
    }

    .gs-money-main {
        width: 55px !important;
        height: 55px !important;

        font-size: 31px !important;
    }

    .gs-money-mini {
        width: 38px !important;
        height: 38px !important;

        flex-basis: 38px !important;
    }

    .gs-money-label {
        min-width: 104px !important;
        height: 32px !important;

        font-size: 11px !important;
    }
}

