@use '../../utils' as *;

/*----------------------------------------*/
/*  4.16 Financial css
/*----------------------------------------*/

.bd-financial-details-content {
	padding: 50px 60px 60px 50px;
	background-color: var(--bd-white);
	box-shadow: 0px 4px 80px rgba(0, 0, 0, 0.12);
	border-radius: 8px;
    @media #{$sm,$xs} {
        padding: 30px 30px;
    }
}
.bd-scholarships-financial-aid-box {
    background-clip: var(--bd-white);
    padding: 30px 30px;
    box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;

    .thumb {
        margin-bottom: 20px;

        img {
            border-radius: 8px;
        }
    }
}

.bd-financial-feature-box {
    margin-left: 100px;
    @media #{$lg} {
        margin-left: 50px;
    }
    @media #{$md} {
        margin-left: 30px;
    }
    @media #{$sm} {
        margin-left: 15px;
    }
    @media #{$xs} {
        margin-left: 0px;
    }
    &:not(:last-child) {
        margin-bottom: 30px;
    }

    .table> :not(caption)>*>* {
        padding: 1rem 1rem;
    }
}

.bd-financial-feature-list {
    ul {
        li {
            list-style: none;
            margin-left: 20px;
            position: relative;

            &::before {
                position: absolute;
                content: "";
                width: 8px;
                height: 8px;
                border-radius: 100%;
                background-color: var(--bd-primary);
                left: -20px;
                top: 10px;
            }

            &:not(:last-child) {
                margin-bottom: 8px;
            }
        }
    }
}