.brick-materials-map-1 .brick-in {
    padding: 40px 2rem;
}

.row-map {
    display: flex;
    justify-content: space-between;
}

.map-materials-list .material .bullet-content {
    color: var(--green);
}

.map-materials-list .material .name {
    text-transform: initial;
    position: relative;
}

.map-materials-list .material:hover .bullet-bg {
    background-color: var(--green);
    box-shadow: none;
}

.map-materials-list .material:hover .bullet-content {
    color: white;
}

.map-materials-list .material:hover .name {
    font-weight: 700;
}

.map-materials-list .material:hover .name::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: var(--green);
    transform-origin: left;
    animation: expandRight 300ms ease 0s 1 normal;
}

@keyframes expandRight {
    0%   {transform: scaleX(0)}
    100% {transform: scaleX(1)}
}

.col-material-info {
    display: grid;
    place-items: center;
    position: relative;
    width: 282px;
    margin-left: 20px;
}

.material-info {
    width: 100%;
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 0;
}

.material-info.default {
    visibility: visible;
}

.material-info .card-title {
    margin-bottom: 8px;
}

.map {
    position: relative;
}

.map-bullet {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width:25px;
    height: 25px;
}

.map-bullet .bullet-bg {
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 50%;
}

.map-bullet .bullet-content {
    color: var(--green);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

div[data-hide="asia,europe"] {
    display: none;
}

/* Toggle */
.map-toggle-region {
    display: flex;
    align-items: center;
    gap: 10px;
}
.custom-toggle {
    position: relative;
    display: inline-block;
    width: 181px;
    height:46px;
}

.custom-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-toggle input:checked + .toggle-body::before {
    transform: translateX(82px);
}

.custom-toggle .toggle-body {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid var(--green);
    border-radius: 30px;
    display: flex;
    align-items: center;
}

.custom-toggle .region-name {
    position: relative;
    z-index: 5;
    width: 50%;
    text-align: center;
}

.custom-toggle .toggle-body::before {
    position: absolute;
    content: "";
    z-index: 4;
    top: 4px;
    left: 4px;
    bottom: 4px;
    width: 82px;
    background-color: var(--yellow);
    border-radius: 30px;
    transition: 500ms ease;
}
/* END Toggle */

.brick-materials-map-1-mb, .materials-map-content-mb {
    display: none;
}

@media (max-width: 992px) {

    .brick-materials-map-1 {
        display: none;
    }

    .brick-materials-map-1-mb, .materials-map-content-mb {
        display: block;
    }

    .map-content-mb .map-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .map-content-mb .map-svg svg {
        width: 100%;
    }

    .map-content-mb .toggle-body {
        background-color: white;
    }

    .map-cards .material-card {
        background-color: white;
        border-radius: 10px;
        overflow: hidden;
        padding: 28px;
    }

    .map-cards .material-card .content-title {
        display: flex;
        align-items: center;
    }

    .map-cards .material-card .bullet {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 24px;
        height: 24px;
        background-color: var(--green);
        color: white;
        border-radius: 50%;
        margin-right: 10px;
    }

}

/* Small Map */
.map-small .row-map {
    justify-content: normal;
}

.map-small .col-map-svg {
    margin: 0 auto;
}

@media (max-width: 992px) {

    .materials-map-content.map-small {
        display: none;
    }

    .materials-map-content-mb .map-cards .card-heading {
        display: none;
    }

    .materials-map-content-mb svg {
        width: 100%;
    }
}