:root {
    --main-bg-color: #27272A;
    --main-text-color: #FCFCFD;
    --hover-bg-color: #FCFCFD;
    --hover-text-color: #27272A;
    --highlight-color: #BEFF00;
    --transition-duration: 0.3s;
    --gap-size: 15px;
    --padding-container-info: 50px 20px;
}



.title-ditribuidor {
   color:#4B4BEB!important;
}


.container-representatives {
    display: block;
    width: 30%;
    background-color: #F5FAFF;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: var(--transition-duration) all linear;
}

select:focus-visible, select:focus {
    cursor: pointer;
    outline: none;
    border: 1px solid black !important;
}

.map-cont svg {
  
}

.map-cont .active > * {
    fill: var(--highlight-color);
    cursor: pointer;
}

.map-cont .active:hover > * {
    fill: #000000;
}

.mx svg g > *, .br svg g > * {
    stroke-width: 1px !important;
    stroke: #000000;
}
.slide-repre {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    display: none;
}


.container-info {
    display: none;
    padding:40px;
}

.container-info.active-country {
    display: block;
}

.container-info-list {
    list-style: none;
    padding: 0 !important;
}

.container-distribuidor h2{
    font-family: 'Krona One';
    color:#4B4BEB;
    
}
.text-bg{
    webkit-text-stroke: 1px #BEFF00;
    text-stroke: 2px #BEFF00; 
    color:transparent!important;
    position: absolute;
    top: 48px;
    left: 35px;
    z-index:-1!important;
}
.coordinador-item {
    display: flex;
    column-gap: 20px;
    margin-bottom:20px;
}
.coordinador-info {
    line-height: 13px;
}


.icon-close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.icon-close i {
    color: #ffffff;
    font-size: 25px;
    background-color: transparent;
    border-radius: 50%;
    width: 23px;
    height: 23px;
    margin: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.icon-close:hover i {
    color: var(--highlight-color);
    background-color: transparent;
}

.selected {
    fill: var(--highlight-color) !important;
}

.selected path {
    fill: var(--highlight-color) !important;
}

.align-items {
    gap: var(--gap-size);
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-bottom: 10px;
}

.align-items img {
    height: 22px;
}

.align-items span {
    font-size: 14px;
    color: var(--main-bg-color);
}

a.align-items:hover span {
    color: var(--highlight-color);
}

.align-items .fa-whatsapp {
    color: var(--main-bg-color);
    font-size: 25px;
}

/* Accordion */
.accordion {
    width: 100%;
}

.accordion-item {
    background-color: #fff;
    padding: 20px 30px;
    border-bottom: 1px solid #dadadd;
}

.accordion-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header h6 {
    margin: 0;
    color: var(--highlight-color);
    font-size: 16px !important;
    font-weight: 600;
    cursor: pointer;
}

.accordion-content {
    display: none;
    padding: 10px;
}

.open .accordion-content {
    display: block;
    padding: 25px 10px 0;
}

.open .accordion-content:not(:last-child) {
    border-bottom: 1px solid #dadadd;
}

.open .fa-chevron-down {
    transform: rotate(180deg);
}
@media (max-width:767px){
	.container-representatives{
		width:80%;
	}
}
