﻿
/*-------------------- (#DEV-412) Differentiate between Stage and Production environment Css ------------------------------------*/
.environment-bottom-icon {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #e2030a;
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 9999;
    transition: background-color 0.3s;
    padding: 12px 25px 15px 25px;
}

    .environment-bottom-icon:hover {
        background-color: #a70005;
    }

    .environment-bottom-icon i {
        font-size: 22px;
        font-weight: 500;
    }

.bx-wrench:before {
    vertical-align: middle !important;
}
