        html {
            width: 100%;
        }

        body {
            overflow-x: hidden !important;
        }

        body.show-spinner>main {
            overflow: hidden !important;
        }
        /* Hide everything under body tag */

        body.show-spinner>* {
            opacity: 0;
        }
        /* Spinner */

        body.show-spinner::after {
            content: " ";
            display: inline-block;
            width: 30px;
            height: 30px;
            border: 2px solid rgba(0, 0, 0, 0.2);
            border-radius: 50%;
            border-top-color: rgba(0, 0, 0, 0.3);
            animation: spin 1s ease-in-out infinite;
            -webkit-animation: spin 1s ease-in-out infinite;
            left: calc(50% - 15px);
            top: calc(50% - 15px);
            position: fixed;
            z-index: 1;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        @-webkit-keyframes spin {
            to {
                -webkit-transform: rotate(360deg);
            }
        }

        .separator_bdcm {
            border-bottom: 1px solid #d7d7d7;
            width: 100%;
            /* margin: 0 15px 16px; */
            margin-bottom: 16px;
        }

        .edit_btn {
            border: 1px solid #00365a !important;
            background-color: #00365a !important;
            color: #fff;
            height: 36px;
            width: 70px;
            border-radius: 30px;
        }

        .edit_btn:hover {
            color: #fff;
            background-color: #001e31 !important;
            border-color: #001e31 !important;
        }

        .del_btn {
            border: 1px solid #dc3545 !important;
            background-color: #dc3545 !important;
            color: #fff;
            height: 36px;
            width: 70px;
            border-radius: 30px;
        }

        .del_btn:hover {
            background-color: #c82333;
            border-color: #bd2130;
        }

        .link_color {
            color: #00365a !important;
        }

        .notify_heading {
            font-size: 17px;
            margin: 0;
            font-weight: 700;
        }

        .btn_mark_all {
            border: 1px solid #00365a;
            background-color: transparent;
            border-radius: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 26px;
            color: #000;
            font-size: 12px;
            padding: 0 7px;
        }

        .btn_mark_all:hover {
            background-color: #001e31 !important;
            background-color: #001e31 !important;
            color: #fff !important;
        }

        