.checkout-green-cash-box {
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 15px 13px;
    background-color: #F0F2E3;
}
.checkout-green-cash-label {
    flex: 1;
    margin-left: 10px;
}
.checkout-green-cash-label strong {
    color: #215833;
    font-weight: bold;
    font-size: 0.9rem;
    display: block;
}
.checkout-green-cash-label small {
    font-size: 0.75rem;
    font-weight: bold;
    color: #232323;
    margin-top: 3px;
    display: block;
}
.woocommerce-remove-coupon[data-coupon^="green_cash_"] {
    display: none !important;
}

.green-cash-row{
    border:none;
}
.green-cash-div {
    padding: 0;
    margin: 0px;
    background-color: #faf1de;
}
.green-cash-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    margin-left: 15px;
}
.green-cash-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #757576;
    border-radius: 32px;
    transition: .4s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: #fff;
    border-radius: 50%;
    transition: .4s;
}
input:checked + .slider {
    background-color: #215833;
}
input:checked + .slider:before {
    transform: translateX(20px);
}
.green-cash-switch input:disabled + .slider {
    opacity: 0.6;
    cursor: not-allowed;
    background: #c1c1c1;
}
.green-cash-cell {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}
.green-cash-container {
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: space-between;
    background: #F0F2E3;
    border-radius: 4px;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #faf1de;
    width: 100%;
    box-sizing: border-box;
}
.green-cash-text {
    display: flex;
    align-items: center;
    flex: 4 1 90%;
    min-width: 0;
}
.green-cash-info-icon {
    display: flex;
    align-items: center;
    height: 18px;
}
.green-cash-info-icon svg {
    display: block;
    vertical-align: middle;
}
.green-cash-label-1 {
    margin-left: 10px;
    color: rgb(0, 0, 0);
    font-size: 0.75rem;
    line-height: 1;
    display: flex;
    align-items: center;
}
.green-cash-label-aviso {
    color: rgb(255, 0, 0);
    font-size: 0.75rem;
    line-height: 1;
    display: flex;
    align-items: center;
    padding-top:10px;
    
}
.green-cash-label-2 { 
    color: #215833;
    font-size: 0.75rem;
    line-height: 1;
    padding-left:5px;
}
.green-cash-value {
    flex: 1 1 10%;
    text-align: right;
    font-size: 0.75rem;
    color: #232323;
    font-weight: bold;
    min-width: 40px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.tooltip {
    position: relative;
    cursor: pointer;
    display: inline-block;
}
.tooltiptext {
    visibility: hidden;
    width: 250px;
    background-color: #215833;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 10;
    bottom: 160%;
    left: 40%;
    margin-left: 0px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.75rem;
    pointer-events: none;
}
.tooltip:focus .tooltiptext,
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
@media (hover: none) and (pointer: coarse) {
    .tooltip:active .tooltiptext,
    .tooltip:focus .tooltiptext {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
}
.mensagem-green-cash-aplicado {
    color: #215833;
    font-size: 0.75rem;
    margin-top: 5px;
    display: block;
}

