@import "style.css";
@keyframes fromDown {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

#accordion {
    width: 94.8%;
    margin-left: 43px;
    /* margin: 0 auto; */
    margin-bottom: 0px;
}

#accordion .contentBox {
    position: relative;
    margin-top: 10px;
    /* margin-bottom: 0px; */
    animation: fromDown 1.5s;
}

#accordion .contentBox .label {
    padding: 10px;
    padding-left: 25px;
    background: #e3fcfc8c;
    color: rgb(0, 0, 0);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    cursor: pointer;
}

#accordion .contentBox .label::after {
    
    content: "+";
    top: 50%;
    right: 50px;
    float: right;
    padding-right: 15px;
}

#accordion .contentBox.active .label::after {
    
    content: "-";
}

#accordion .contentBox .cntnt {
    border-radius: 18px;
    position: relative;
    font-size: 1.2rem;
    background: white;
    overflow: hidden;
    height: 0;
    transition: 0.3s;
    overflow-y: auto;
}

#accordion .contentBox.active .cntnt {
    padding: 2px 25px;
    height: 220px;
    transition: 0.5s;
    overflow-y: auto;
}

#accordion .contentBox .cntnt a {/*links inside the context box*/
    padding-left: 10px;
    display: inline-block;
    color: rgb(35, 39, 248);
    background-color: rgba(113, 234, 255, 0.685);
    border-radius: 18px;
    border: black;
    border-left-width: 30%;
    text-align: center;
    margin-right: 7px;
    padding: 14px;
    text-decoration:dashed;
    text-decoration-color: white;
}

#accordion .contentBox .cntnt h4 {
    padding-left: 10px;
    /* margin-bottom: -10px; */
    margin-top: 0px;
}

#accordion .contentBox .cntnt i {
    color: white;
}

@media screen and (max-width: 480px) {
    
    #accordion .contentBox .label {
        border-radius:18px;
        background-color: #ffffff80;
        font-size: 1.2rem;
    }
    #accordion .contentBox .cntnt {
        font-size: 1rem;
    }
    .alert {
        font-size: 1rem;
        line-height: 25px;
    }
}