﻿
html,
body {
    overflow-x: clip; /* Prevent scroll on narrow devices */
}

/*
 * Off Canvas
 * --------------------------------------------------
 */

.row-offcanvas {
    position: fixed;
    -webkit-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
    z-index: 9999;
    top: 65px;
    width: 100%;
}

.row-offcanvas-right {
    right: 0;
}

.row-offcanvas-left {
    left: 0;
}

.row-offcanvas-right .sidebar-offcanvas {
    right: -50%; /* 6 columns */
}

.row-offcanvas-left .sidebar-offcanvas {
    left: -50%; /* 6 columns */
}

.row-offcanvas-right.active {
    right: 48%; /* 6 columns */
}

.row-offcanvas-left.active {
    left: 50%; /* 6 columns */
}

.sidebar-offcanvas {
    position: absolute;
    width: 25%; /* 6 columns */
}

/*
 * Off Canvas- Custom
 * --------------------------------------------------
 */

.offcanvas-col-plr {
    padding-left: 0px;
    padding-right: 15px;
}

.offcanvas-icon-text {
    display: block;
    font-size: 0.7rem;
    /* margin-top: -1.3rem;*/
    color: #000000;
   /* padding-left: 5px;
    text-align: start;*/
    text-decoration: none;
}

#sidebar-offcanvas-menu a:hover {
    opacity: 0.8;
    color: #563434;
}

/*
 * 9 Dot menu- Custom
 * --------------------------------------------------
 */

/*.card9dot {
    transition: all 0.2s ease;
    cursor: pointer;
}
.card9dot:hover {
        box-shadow: 0px 0px 0px 0px #e9ecef;
        transform: scale(1.1);
}*/


.card9dot {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    --bg-color: #DCE9FF;
    --bg-color-light: #f1f7ff;
    --box-shadow-color: rgba(220, 233, 255, 0.48);
}

    .card9dot:hover {
        box-shadow: 0px 0px 0px 0px #e9ecef;
        transform: scale(1.1);
        background-color: #f8f9fa;
    }

.card9dot-container {
      
 }

.card9dot-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-out;
}

.card9dot-circle:after {
    content: "";
    width: 36px;
    height: 36px;
    display: block;
    position: absolute;
    background: var(--bg-color);
    border-radius: 50%;
    transition: opacity 0.3s ease-out;
}

.card9dot-circle svg {
    z-index: 10000;
    /*transform: translateZ(0);*/
}
.card9dot-fade {
    opacity: 0.3;
}
