.mt-5 {
    margin-top: 5px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-n10 {
    margin-top: -10px !important;
}

.mt-n35 {
    margin-top: -35px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

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

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

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

.mr-5 {
    margin-right: 5px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-n30 {
    margin-bottom: -30px;
}

.p-0 {
    padding: 0 !important;
}

.pt-0 {
    padding-top: 0;
}

.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pb-0 {
    padding-bottom: 0;
}

.pb-5 {
    padding-bottom: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

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

.pb-15 {
    padding-bottom: 15px;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pb-20 {
    padding-bottom: 20px;
}

.pl-0 {
    padding-left: 0 !important;
}

.pr-0 {
    padding-right: 0;
}

.mr-0 {
    margin-right: 0 !important;
}

.ml-0 {
    margin-left: 0;
}

.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px !important;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px !important;
}

.w-100 {
    width: 100%;
}

.br-8 {
    border-radius: 8px;
}

.table-fixed {
    table-layout: fixed;
}

.flex-div {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.lavender {
    color: var(--swoogo-lavender-100);
}

.grey {
    color: var(--swoogo-gray-600);
}

.green {
    color: var(--swoogo-green-200);
}

.rounded-card {
    border-radius: 10px;
    border: 1px solid #E6E9EB;
    background-color: white;
    padding: 15px;
    flex: 1;
    min-width: 200px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.visible-xl {
    display: none !important;
}

.hidden-576 {
    display: inline;
}

.align-middle {
    vertical-align: middle !important;
}

.clearfix::after {
    display: block;
    clear: both;
    content: ""
}

.text-truncate {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hr {
    width: 100%;
    margin: 16px 0 16px 0;
    border-bottom: 1px solid #E6E9EB;
}

@media (min-width: 1600px) {
    .visible-xl {
        display: block !important;
    }

    table.visible-xl {
        display: table !important;
    }

    tr.visible-xl {
        display: table-row !important;
    }

    td.visible-xl, th.visible-xl {
        display: table-cell !important;
    }
}

@media (max-width: 768px) {
    .sm-pl-0 {
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .hidden-576 {
        display: none;
    }
}