﻿/*#region Toast pozisyonunu ayarlamak için özel stil */

.mega-menu-content2 {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 20px 30px 20px;
}

.toast {
    --bs-toast-max-width: auto;
    border-radius: inherit;
}

.col-lg-6.mb-2 > a {
    color: black;
}

    .col-lg-6.mb-2 > a > span {
        color: gray;
    }

    .col-lg-6.mb-2 > a > img {
        width: 28px;
        height: 28px;
    }

p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/*#endregion */

/*#region liste noktalamaları */

.custom-list {
    list-style-type: none; /* Varsayılan liste işaretlerini kaldırır */
    padding-left: 0; /* Sol boşluğu kaldırır */
    margin-bottom: 20px;
}

    .custom-list li {
        position: relative; /* ::before pseudo-element için konumlandırma sağlar */
        padding-left: 20px;
    }

        .custom-list li::before {
            content: '\25A0';
            position: absolute;
            left: 0;
            color: black;
            font-size: 12px;
            line-height: 1;
            top: 4px;
        }

/*#endregion */
