.externalLinks-wrapper {
    position: relative;
    width: 200px;
    user-select: none;
}

.exlcustom-select {
    display: block;
    /* padding: 10px; */
    padding: 6px 12px;
    border-radius: 1rem;
    background-color: var(--white);
    cursor: pointer;
}
.exlcustom-select:hover{
    background: var(--white);
    transition: .4s;
}
.exlcustom-select:active{
    background: var(--gray);
    transition: .4s;
}

.exlcustom-select:after {
    content: '\003E'; /* Arrow */
    /* content: '\25BC'; */
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    /* font-size: 11px; */
    font-size: 16px;
}

.exlcustom-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    /* border: 1px solid #4CAF50; */
    z-index: 1001;
    border-radius: 1rem;
    padding: .4rem;
    box-shadow: 0px 1px 8px 0.3px rgba(0, 0, 0, 0.212);
    border: 1.5px solid rgb(184, 184, 184);
}

.exlcustom-options.active {
    display: block;
}

.exlcustom-option {
    padding: .4rem;
    cursor: pointer;
   
}
.exlcustom-option a{
    padding: 0;
    width: 100%;
    width: 100%;
    display: block;
}
.exlcustom-option a:hover{
    background: none;
}

.exlcustom-option:hover {
    background-color: #f1f1f1;
    border-radius: 1rem;
}