/*react transition group css*/ .page-enter { opacity: 0; } .page-enter-active { opacity: 1; } .page-exit { opacity: 1; } .page-exit-active { opacity: 0; } .page-enter-active, .page-exit-active { transition: opacity 200ms; } .fade-enter-active, .fade-exit-active { transition: opacity 300ms; } /*====*/ .right-to-left-enter { transform: translateX(100%); } .right-to-left-enter-active { transform: translateX(0); transition: all 300ms ease; } .right-to-left-exit { transform: translateX(0); } .right-to-left-exit-active { transform: translateX(-100%); transition: all 300ms ease; } /*====*/ .left-to-right-enter { transform: translateX(-100%); } .left-to-right-enter-active { transform: translateX(0); transition: all 300ms ease; } .left-to-right-exit { transform: translateX(0); } .left-to-right-exit-active { transform: translateX(100%); transition: all 300ms ease; } /*===*/ .top-to-bottom-enter { transform: translateY(-100%); } .top-to-bottom-enter-active { transform: translateY(0); transition: all 300ms ease; } .top-to-bottom-exit { transform: translateY(0); } .top-to-bottom-exit-active { transform: translateY(100%); transition: all 300ms ease; } /*===*/ .bottom-to-top-enter { transform: translateY(100%); } .bottom-to-top-enter-active { transform: translateY(0); transition: all 300ms ease; } .bottom-to-top-exit { transform: translateY(0); } .bottom-to-top-exit-active { transform: translateY(-100%); transition: all 300ms ease; } /*UTILITIES*/ .text-highlight { background: -webkit-linear-gradient(45deg, #8e44ad, #3498db); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .text-capitalize { text-transform: capitalize; } .text-uppercase { text-transform: uppercase; } .text-center { text-align: center; } .text-end { text-align: right; } .text-start { text-align: start; } .text-white { color: white !important; } .text-black { color: black !important; } .overflow-scroll { overflow: auto; } .m-0 { margin: 0 !important; } .p-0 { padding: 0 !important; } .w-100 { width: 100%; } .fw-bold { font-weight: bold; } .fw-bolder { font-weight: bolder; } /* Extra large devices (large laptops and desktops, 1200px and up) */ @media only screen and (min-width: 1200px) { .overflow-scroll { overflow: hidden; } } /* .ant-tabs-tab { margin-left: 20px !important; margin-right: 20px !important; height: 50px; } */ .ant-tabs-nav::before { display: none !important; } .ant-badge-count { top: 30px; right: -8px; width: 12px; font-size: 9px; font-weight: bold; } .ant-tabs-nav .ant-tabs-nav-wrap { display: block !important; } .topBorder { background-color: black; width: 100%; position: absolute; top: 0; left: 0px; height: 10px; border-radius: 10px 10px 0px 0px; } .bottomBorder { background-color: black; width: 100%; position: absolute; bottom: 0; left: 0px; height: 10px; border-radius: 0px 0px 10px 10px; } .columnTitle { font-weight: 700; font-size: 14px; line-height: 16px; color: #000000; margin-top: 0px !important; margin-bottom: 0px !important; display: inline-block; } .rowText { font-weight: 400; font-size: 14px; line-height: 16px; color: black; display: inline-block; vertical-align: middle; margin-top: 0px; margin-bottom: 0px; max-width: 150px !important; width: 100px; } .rowTextUnderlined { font-weight: 400; font-size: 14px; line-height: 16px; text-decoration: underline; color: black; display: inline-block; vertical-align: middle; margin-top: 0px; margin-bottom: 0px; } .dotContainer { margin-top: 5px; } .iconContainer { display: inline-block; vertical-align: middle; margin-top: 5px; margin-left: 5px; cursor: pointer; } .columnTitleContainer { display: inline-block; vertical-align: middle; margin-left: 5px; } .title { width: 100%; text-align: center; font-weight: 400; font-size: 18px; line-height: 20px; padding-bottom: 10px; margin-bottom: 40px; border-bottom: 2px solid var(--primary-yellow); } .two-main-form-container { display: "grid"; grid-template-columns: 1fr 1fr; column-gap: 10%; } .dashboard-container .ant-table-body { overflow: scroll; max-height: 285px; } .dashboard-container .ant-table-body::-webkit-scrollbar { width: 12px; height: 10px; } .dashboard-container .ant-table-body::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px !important; } .dashboard-container .ant-table-body::-webkit-scrollbar-thumb { background: #c9c9c9; border-radius: 10px !important; } .dashboard-container .ant-table-body::-webkit-scrollbar-thumb:hover { background: #8f8f8f; } .dashboard-container .ant-table-sticky-scroll { display: none; } .visually-hidden { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); } .barcode-container::-webkit-scrollbar { width: 12px; height: 10px; } .barcode-container::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px !important; } .barcode-container::-webkit-scrollbar-thumb { background: #c9c9c9; border-radius: 10px !important; } .barcode-container::-webkit-scrollbar-thumb:hover { background: #8f8f8f; } /* Charts Styles */ .recharts-legend-item-text { margin: 20px !important; } .recharts-legend-item{ margin-right: -10px !important; }