/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #5d7465;
    color: #472e0a;
}

.question-box,
.submit-div {

    padding: 25px;
    background: #f9f7f4;
    border-radius: 7px;

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin: 10px
}

.sortable-list {
    padding: 0px;
}

.sortable-list .item {
    list-style: none;
    display: flex;
    cursor: move;
    background: #fff;
    align-items: center;
    border-radius: 5px;
    padding: 2px 13px;
    margin-bottom: 3px;
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.06); */
    border: 1px solid var(--bs-border-color);

    color: #472e0a;
}

.btn {
    background-color: #B36639;
    border-color: #B36639;
}

.btn:hover {
    background-color: #975934;
    border-color: #975934;
}

.item .details {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.item .details img {
    height: 43px;
    width: 43px;
    pointer-events: none;
    margin-right: 12px;
    object-fit: cover;
    border-radius: 50%;
}

/* .item .details span {
    font-size: 1.13rem;
} */

.item i {
    /* color: #474747; */
    /* font-size: 1.13rem; */
}

.item.dragging {
    opacity: 0.95;
}

.item.dragging :where(.details, i) {
    opacity: 0.5;
}

table,
th,
td {
    border: 1px solid;
    padding: 5px;
}