.cicse-sec {
    margin-top: 5rem;
}

.cicse-title {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 8px 1rem;
    margin:4px 19px;
    color: #6d6d6d;
    font-weight: 100;
    font-size: 19px;
    border-radius: 4px;
}

.cicse-title img {
    width: 50px;
}

.cisce-material {
    background: white;
    margin: 22px auto;
    border-radius: 4px;
    width: 90%;
}

.paper-subjects {
    display: flex;
    gap: 2rem;
    height: 52px;
    justify-content: space-between;
    padding: 1rem;
    border-radius: 1rem;
    overflow: hidden;
}
.paper-subjects-height {
    height: 100%;
}

.subjects {
    display: grid;
    gap: 1rem;
}

.material-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 1rem;
    border:1px solid #a2a2a2;
    border-radius: 10px;
    width: 100%;
    cursor: pointer;
    
}

.material-title img {
    border-radius: 50%;
    width: 20px;
}

.subject {
    box-shadow: 0px 0px 2px 0px;
    border-radius: 10px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #545454;
}

.subject img {
    width: 55px;
}

.material {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15rem;
    height: 5rem;
    object-fit: cover;
    border-radius: 3rem;
    border: 1px solid #b5b7b8;
    background: #fff;
    padding: 2px;
    text-align: center;
    position: relative;
    margin: auto;
}

.material img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    top: 0;
    left: 0;
    position: absolute;
    margin: 0;
    opacity: 0.3;
}

.material-detail {
    position: relative;
    z-index: 2;
}

.m-line {
    display: block;
    height: 1px;
    background: #e7e7e7;
}

.share {
    background: #d1f2ff47;
    padding: 1rem 3rem;
    border-radius: 5px;
    height: 100%;
}

.share h3 {
    display: flex;
    align-items: center;
    padding: 10px 5px;
    font-weight: 100;
    gap: 10px;
    color: #54545;
}

.share img {
    width: 40px;
}

.conform {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.cls-conform {
    position: relative;
    background-color: #fff;
    padding: 1.5rem 3rem;
    border-radius: 0.5rem;
}

.dlt-title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.err {
    color: #5f9ea0;
}

.cls-btns {
    display: grid;
    justify-content: center;
    background: lightgoldenrodyellow;
    border-radius: 6px;
    padding: 6px;
    gap: 4px;
}

.active-model {
    opacity: 1;
    visibility: visible;
}

@media(max-width:600px) {
    .paper-subjects {
        display: grid;
    }
}

@media(max-width:600px) {
    .cicse-sec {
        margin-top: 1rem;
    }
    .material-title {
        gap: 1rem;
    }
}















