:root {
    --violet: #A851B4;
    --white: #fff;
    --pink: #ED248F;
    --lightpink: #FDF7FB;
}

.d-flex {
    display: flex;
}

.justify-center {
    justify-content: center !important;
}

.justify-start {
    justify-content: start !important;
}

.align-center {
    align-items: center !important;
}

.opacity-0 {
    opacity: 0 !important;
}

.border-red {
    border: 2px solid red;
}

.border-blue {
    border: 2px solid blue;
}

.border-green {
    border: 2px solid green;
}

.bold {
    font-weight: bold !important;
}

.ml-15 {
    margin-left: 15px !important;
}

.page_title h4 {
    color: var(--violet);
    font-weight: bold;
    font-size: 20px;
}

.mywrapper {
    position: relative;
    background: var(--white) !important;
    padding: 10px 15px;
    margin: 20px 25px;
}

.custom_button input[type="submit"],
.custom_button button {
    position: relative;
    background: transparent;
    border: 3px solid var(--pink);
    padding: 5px 40px;
    border-radius: 25px;
    color: var(--pink);
    font-weight: bold;
}

.route_box {
    padding: 10px 15px;
}

.profile_details h5,
.route_box h5 {
    font-size: 17px !important;
    font-weight: bold !important;
}

.route_box ul li {
    font-size: 15px !important;
}

.detail_box {
    padding: 8px 10px;
    min-height: 55px;
}

.profile_pic {
    padding: 0 25px !important;
}

.route_box ul {
    padding: 0 !important;
    margin-top: 15px;
}

.student_card {
    margin: 15px 0;
    padding: 10px 0;
}

.student_card:nth-child(even) {
    background-color: var(--lightpink);
}