﻿
.card-Feed {
    width: 300px; /* Adjust width as needed */
    border: none;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    position: fixed;
    top: 20%;
    right: -500px; /* Hide card initially */
    transition: right 0.3s ease;
    z-index: 1000;
}

.card.open {
    right: 0; /* Slide card into view */
}

.adiv {
    background: #0063FF;
    border-radius: 10px 0px 0px 10px;
    font-size: 16px; /* Set the font size to 16px */
    font-weight: 300; /* Use the 300 weight from the Poppins font */
    color: white;
    display: flex;
    align-items: center; /* Center the text vertically */
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    position: fixed;
    top: 20%;
    right: 0; /* Position adiv on the right */
    transition: right 0.3s ease;
    z-index: 1000;
    height: auto; /* Height adjusted dynamically */
}


    .adiv span {
        display: block;
        transform: rotate(-90deg);
        transform-origin: center;
        position: absolute;
        left: 50%;
        top: 50%;
        white-space: nowrap;
        transform: translate(-50%, -50%) rotate(-90deg); /* Center the text */
    }

    .adiv i {
        cursor: pointer;
        position: absolute;
        top: 10px; /* Position the icon at the top */
    }

.card-content {
    padding: 20px;
    flex-grow: 1;
    background-color:white;
}

.fas {
    cursor: pointer;
}

.fa-chevron-left {
    color: #fff;
}

h6 {
    font-size: 12px;
    font-weight: bold;
}

small {
    font-size: 10px;
    color: #898989;
}

.txtarea {
    border: none;
    background: #F6F7FB;
    font-size: 12px;
}

    .txtarea:focus {
        box-shadow: none;
        background: #F6F7FB;
    }

    .txtarea::placeholder {
        font-size: 12px;
        color: #B8B9BD;
    }

.btn-block {
    background: #0063FF;
    padding: 4px 110px 7px;
    border: none;
}

    .btn-block:focus {
        box-shadow: none;
    }

    .btn-block span {
        font-size: 12px;
        color: #A6DCFF;
    }

p.mt-3 {
    font-size: 11px;
    color: #B8B9BD;
    cursor: pointer;
}

.fas.fa-times {
    display: none;
}
.feedback-icon {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 50%; /* Ensure the image is circular */
    display: inline-block; /* Ensure it respects the border-radius */
}

    .feedback-icon.selected {
        transform: scale(1.05); /* Slightly enlarge the selected image */
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* Add a circular shadow effect */
    }

