:root {
    --map-height : 450px;
}
.availabilty-map {
    background: white
}
.availability-map {
    /*overflow: clip;*/
    padding: 2.25rem 0
}
.availability-map h1 {
    line-height: 1;
    margin:  2.25rem 0;
    color: #000;
    font-size: 49px;
    font-weight: 500;
    line-height: 54px;
}
.availability-map.gray {
    background: #F8F8F8!important;
}
.availability-map-container {
    max-width: 66rem;
    margin: 0 auto;
}
.google-map-container {
    flex-basis: 100%;
    height: var(--map-height);
}
.regions-map-container {
    gap: 30px;
}
.regions-container {
    flex-basis: 100%;
    overflow-y: scroll;
    height: var(--map-height);
    background: white
}
.regions-container.disabled,
select.disabled {
    pointer-events: none;
    opacity: 0.4;
    filter: grayscale(1);
}
.regions-container-inner {
    padding: 0 1.25rem;
}
.region {
    padding: 0 0 0.31rem 0;
}
.region:first-child {
    padding: 1.56rem 0 0.31rem 0;
}
.region .country {
    color: rgba(0, 0, 0, 0.60);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    margin: 0 0 1.25rem 0;
}
.active.country {
    cursor: pointer
}
.region h3 {
    color: #192846;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    margin: 0 0 1.56rem 0;
    padding: 1.56rem 0 0 0;
    border-top: 1px solid #E3E3E3;
}
.region:first-child h3 {
    border: none;
    padding: 0;
}
.select-container h4 {
    color: #192846;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 1rem
}
.filter-container {
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.select-container select {
    width: 290px;
}
.currencies-legends {
    margin: 1.56rem 0 0 0;
    justify-content: space-between;
    height: 130px;
}
.flex-end {
    justify-content: flex-end
}
.flex-between {
    justify-content: space-between
}
.currencies,
.legend {
   display: none;
}
.currencies {
    width: 500px;
}
.currencies .d-flex {
    flex-wrap: wrap;
    gap: 0 10px;
 }
.currencies p {
    color: #192846;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1.25rem 0;
}
.currencies .currency {
    color: rgba(0, 0, 0, 0.60);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
    flex-basis: 40px;
}
.key {
    margin: 0 0 1rem 0;
    padding: 0 0 0 2rem;
    color: #192846;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1;
    position: relative;
}
.key::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1.25rem;
    height: 0.625rem;
}
.key.both::before{
    background: #002277
}
.key.buyer::before,
.key.seller::before{
    background: #00a29c
}
.key.supplier::before,
.key.debtor::before{
    background: #0060e9
}
.key.wip::before {
    background: #B894FF
}
.conditions {
    color: red;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1;
}
.country.active.special-conditions span {
    position: relative;
    padding-right: 6px;
}
.country.active.special-conditions span::after {
    content: '*';
    color: red;
    /*position: absolute;*/
    top: -1px;
    right: 0;
}
.availability-map-loading {
    position: absolute;
    inset: 0;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    background: #F8F8F8!important;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s opacity ease
}
.availability-map-loading.active {
    opacity: 1;
}
.availability-map-loading svg {
    width: 50px;
    height: 50px;
}
.availability-map .select-container select {
    width: 290px;
    padding: 16px 42px 16px 21px;
    border: 1px solid #898989;
    background: #F8F8F8;
    color: #192846;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E %3Cpath d='M1 1L5 5L9 1' stroke='black' stroke-linecap='round' stroke-linejoin='round;'/%3E %3C/svg%3E");
    background-size: 10px 6px;
    background-position: right 18px center;
    background-repeat: no-repeat;
}
.position-relative {
    position: relative
}
.country-label {
    z-index: 1000;
    white-space: nowrap;
    transition: opacity 0.2s;
}

/* Optional: Hide labels at lower zoom levels */
@media screen and (max-width: 768px) {
    .country-label {
        display: none;
    }
}
@media screen and (min-width: 768px) {
    .google-map-holder {
        z-index: 99;
    }
    .regions-container {
        flex-basis: 190px;
        flex-shrink: 0;
    }
    .google-map-container {
        flex-basis: calc(100% - 190px);
    }
}
