#rightbar_contents {
    transition: all 0.5s ease-in-out;
    opacity: 1;
    visibility: visible;
    height: calc(100% - 70px);
    overflow: auto;
    overscroll-behavior: contain;
}

#rightcolumn {
    position: fixed;
    right: 0;
    top: 56px;
    padding: 20px 10px;
    width: 250px;
    height: 100%;
    display: block;
    z-index: 2;
    transition: width 0.5s ease-in-out;
}

.rightbar_off {
    opacity: 0 !important;
    visibility: hidden !important;
}

#rightcol-fixed-close {
    top: 12px;
    left: -5px;
    position: absolute;
    z-index: 5;
}

#rightcol-fixed {
    position: absolute;
    transition: all .5s ease-in-out;
    transform: translateX(70px);
    opacity: 0;
    visibility: hidden;
    width: 70px;
    background: #FFFFFF;
    box-shadow: 0px 2px 2px rgb(0 0 0 / 5%);
    top: 22px;
    right: 0;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
    gap: 12px;
    border-radius: 10px 0px 0px 10px;
}

.rightcol-fixed_show {
    transform: translateX(0px) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#rightcol-fixed div {
    cursor: pointer;
}

#rightcol-fixed div i {
    font-size: 18px;
}

.card-title {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Nunito Sans', sans-serif;
    margin-top: 2px;
    color: #384248;
    flex-grow: 1;
}

.card-title-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}


.card-title-box i {
    color: #DF1E02;
    font-size: 18px;
}

.btn-actions-rightbar {
    color: #49565D !important;
    cursor: pointer;
    padding: 4px 10px;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
}

.btns-actions-container {
    padding: 4px 8px;
    padding-bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.btn-actions-rightbar:hover {
    background-color: var(--gris-8);
}

.btn-actions-rightbar p {
    margin-top: 2px;
}

.btn-actions-rightbar i {
    font-size: 16px;
}

#rightcol-fixed div {
    padding: 6px;
    border-radius: 8px;
    position: relative;
}

#rightcol-fixed div:hover {
    background-color: var(--background-hover-menu);
}

#rightcol-fixed div:hover .tooltip_events_rightbar {
    display: block !important;
}

.tooltip_events_rightbar {
    position: absolute;
    display: none;
    font-family: var(--fuente-tokko);
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    padding: 4px 10px;
    background: #FFFFFF;
    box-shadow: 4px 4px 4px rgb(112 126 134 / 15%);
    border-radius: 6px;
    color: #384248;
    white-space: nowrap;
    top: 2px;
    right: 60px;
}

.rightbar-mobile-overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #384248;
    top: 0;
    left: 0;
    opacity: 0.2;
    z-index: 9;
}

.card-body-calendar {
    padding: 15px;
}

.calendar-no-events{
    padding: 12px;
    padding-top: 0;
}

@media (max-width: 1024px) {
    .rightbar_width_overlay {
        z-index: 10 !important;
    }
}

.cursor_pointer{
    cursor: pointer !important;
}