.car-select-modal {
    position: fixed;
    top: 0;
    right: -100%;
    display: flex;
    flex-direction: column;
    padding: 32px 16px;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: #282828;
    transition: all 0.3s ease-in-out;

    .header {
        position: relative;
        display: flex;
        justify-content: center;
        margin-bottom: 32px;

        button {
            position: absolute;
            top: 6px;
            left: 0;
            width: auto;
            height: auto;
            background: transparent;
            border: none;

            img {
                width: 14px;
                height: 14px;
                transform: rotate(180deg);
            }
        }

        h2 {
            font-family: "Bebas Neue", sans-serif;
            font-size: 28px;
        }
    }

    .brands {
        list-style-type: none;
        overflow: auto;

        li {
            .brand {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 8px 14px;
                height: 40px;
                border-bottom: 1px solid #F0F8FF4D;

                img {
                    display: block;
                    max-width: 80px;
                    width: auto;
                    height: 100%;
                    object-fit: contain;
                }

                span {
                    display: inline-block;
                    font-size: 14px;
                    text-transform: uppercase;
                }
            }

            .cars {
                list-style-type: none;
                padding-left: 60px;

                li {
                    button {
                        justify-content: flex-start;
                        padding: 13px 14px;
                        width: 100%;
                        height: auto;
                        background: transparent;
                        border: none;
                        border-radius: 0;
                        border-bottom: 1px solid #F0F8FF4D;
                        font-family: "Inter", sans-serif;
                        font-size: 14px;
                        text-transform: uppercase;
                    }
                }
            }
        }
    }
}