body {
    margin: 0;
    font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #858796;
    text-align: left;
    background-color: #fff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.middle-container {
    margin-bottom: 20px;
    margin-top: 20px;
}

.text-center {
    text-align: center;
}

.login-form {
    max-width: 450px;
    margin: 0px auto;
}

.optin-table-container {
    padding: 0px 5px;
    margin: 20px 0px;
}

.optin-table-container label {
    margin-bottom: 5px;
    display: block;
}

.selectcontrol {
    width: 100%;
    margin-bottom: 20px;
}

.loader {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    text-align: center;
    color: #fff;
    background: rgba(90, 92, 105, 0.5);
    line-height: 46px;
}

.scroll-to-top:focus,
.scroll-to-top:hover {
    color: white;
}

.scroll-to-top:hover {
    background: #5a5c69;
}

.scroll-to-top i {
    font-weight: 800;
}

.rounded {
    border-radius: 0.35rem;
}

.menu {
    position: relative;
}

.menu .logout {
    position: absolute;
    right: 0px;
}

/* ---------------  MSD Dashboad css ------------------*/
.dashboard-btn-container {
    flex-wrap: wrap;
    display: flex
}

.dashboard-btn {
    padding: 10px 30px 10px 25px;
    width: 31.3%;
    margin: 1%;
    box-sizing: border-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #fff;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    min-height: 75px;
    border: 1px solid #707070;
    box-shadow: 1px 3px 6px 0 rgba(0, 0, 0, .16);
    transition: background-color 0.5s ease;
}

.dashboard-btn:hover {
    background-color: #00776d;

}

.dashboard-btn .anticon {
    font-size: 35px;
    margin-right: 10px;
}

.dashboard-btn:hover .anticon {
    color: #fff;
}

.dashboard-btn .title {
    font-size: 16px;
    font-weight: bold;
    display: block;
}

.dashboard-btn:hover .title {
    color: #fff;
}

.dashboard-btn .subtitle {
    color: #343a40;
    font-size: 13px;
}

.dashboard-btn:hover .subtitle {
    color: #fff;
}

.dashboard-btn .text {
    align-items: center;
    display: grid;
}

.menu .logout {
    position: absolute;
    right: 0px;
}

@media screen and (min-width: 740px) and (max-width: 992px) {
    .dashboard-btn {
        width: 48%;
    }
}

@media screen and (max-width: 740px) {
    .dashboard-btn {
        width: 98%;
    }
}