/**
 * Footer CSS - Consolidated footer styles
 * Minified and compressed via Django Compressor
 */

/* Sticky Footer Box */
.footer-sticky-box {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1070;
    width: 101%;
    height: 72px;
}

.footer-sticky-box.more-section-open {
    z-index: 9999 !important;
    display: block !important;
}

.footer-sticky {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: white;
    background: #FFF;
    box-shadow: 0px -5px 10px 0px rgba(0, 0, 0, 0.06);
}

.footer-tab {
    width: 25%;
    height: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-tab p {
    margin-bottom: 0;
    color: var(--Grey-400, #98A2B3);
    font-family: Manrope;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

.footer-tab img {
    opacity: 0.5;
}

.active-footer {
    background: var(--Gradient-Purple-pink-gradient, linear-gradient(92deg, #FFEBFC 0%, #D6CBFE 100%));
    border-top: 6px solid var(--Grey-900, #101828);
}

/* More Section Box */
.more-section-box {
    position: fixed;
    width: 101%;
    height: calc(100vh - 160px);
    background: white;
    left: 0;
    bottom: 72px;
    z-index: 1060;
    padding: 20px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/* User Name Box */
.user-name-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 8px;
    background: var(--Gradient-purple-grey-gradient, linear-gradient(225deg, #F2F4F7 -0.05%, #EFEBFF 100%));
    padding: 14px;
    gap: 14px;
    position: relative;
}

.user-name-box .badge-dark {
    font-size: var(--font-size-14);
    padding: 8px 14px;
    font-family: manrope;
    border-radius: 4px;
}

.user-name-box .user-icon-box {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-name-box p {
    margin-bottom: 0;
    font-family: manrope;
    font-style: normal;
    line-height: normal;
}

.user-name-box p:first-child {
    color: var(--Grey-800, #1D2939);
    font-size: 16px;
    font-weight: 600;
}

.user-name-box p:last-child {
    color: var(--Grey-500, #667085);
    font-size: 14px;
    font-weight: 400;
    width: auto;
    word-wrap: break-word;
}

.more-section-box .btn-light-wright {
    margin-top: 18px;
}

.more-section-box .btn-dark-wright,
.more-section-box .btn-light-wright {
    width: 100%;
    padding: 14px 24px;
}

.first-row {
    margin-top: 20px;
}

.first-row h6 {
    color: var(--Grey-500, #667085);
    font-family: Manrope;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
    position: relative;
}

.first-row h6::after {
    position: absolute;
    content: "";
    right: 0;
    top: 8px;
    width: 100%;
    height: 1px;
    background-color: #dadde1;
}

.first-row h6 span {
    background-color: white;
    z-index: 10;
    position: relative;
    padding-right: 10px;
}

.port-div {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    margin-top: 18px;
}

.port-div-inner {
    width: 25%;
}

.port-div-inner a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.port-div-inner p {
    color: var(--Grey-900, #101828);
    text-align: center;
    font-family: Manrope;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.svg-img {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    background: var(--Grey-50, #F9FAFB);
}

.svg-custom-icon {
    fill: #3a404d !important;
    width: 20px !important;
}

.modal-body {
    z-index: 1000;
}

#download-svg {
    height: 35px;
    width: 35px;
    opacity: 0.6;
    align-items: center;
}

/* Footer Chat Frame Spacing */
.fc-frame-bottom-spacing {
    margin-bottom: 100px;
}

@media (max-width: 768px) {
    .user-name-box p:last-child {
        width: 170px;
    }
}

