#top-menu * {
    cursor: pointer;
    user-select: none;
}

.cont-country {
    display: flex;
    align-items: center;
}

.selectbox * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    cursor: pointer;
}

a {
    text-decoration: none;
}

#flag {
    cursor: pointer;
    width: auto;
    height: 22px;
    margin-right: 5px;
}


.contenedor {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    padding: 40px 0;
}

.selectbox {
    user-select: none;
    user-zoom: none;
    width: 200px;
    margin: auto;
    position: relative;
}

.select {
    background: #000;
    width: 100%;
    box-shadow: 0 0 0 rgba(0, 0, 0, .16);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 15px;
    position: relative;
    z-index: 1000;
    border: 2px solid transparent;
}

.select.active,
.select:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, .16);
    border: 2px solid #213f8f;
}

.country-name {
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

.opciones {
    width: 255px;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .16);
    min-height: 64px;
    overflow: auto;
    width: 200px;
    display: none;
    margin-bottom: 0;
    margin-top: 10px;
    position: absolute;
    right: 20;
    overflow-y: hidden;
    z-index: 1000;
}

.opciones.active {
    display: block;
}

.contenido-opcion {
    display: flex;
    align-items: center;
}

a.opcion {
    padding-bottom: 0 !important;
}

.opciones .contenido-opcion {
    padding: 15px;
}

.contenido-opcion img {
    width: auto;
    height: 19px;
    margin-right: 10px
}

.opciones .contenido-opcion:hover {
    background: #F39A1F;
}

.opciones .contenido-opcion:hover .country-name {
    color: #fff;
}

.modal {
    display: none;
    position: fixed;
    z-index: 100;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    width: 500px;
    height: auto;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#cont-flags {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}


#cont-flags p {
    margin-bottom: 0;
}

#cont-flags a {
    padding: 10px 20px;
    width: 140px;
}

#cont-flags a:hover,
a:hover p {
    background: #F39A1F;
    color: #000;
}

p:active {
    color: #fff;
}

.lbl_country {
    color: #fff;
    font-size: 0.63158rem;
    margin-right: 5px;
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid #F39A1F;
    position: relative;
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 16px solid #F39A1F;
    position: relative;
}

.arrow-down::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 16px solid #F39A1F;
    position: absolute;
    top: -16px;
    left: -8px;
}

.cont-bandera {
    display: flex;
    align-items: center;
}

.cont-bandera .arrow-down {
    margin-left: 0px;
}

#modal_country  #cont-flags a {
    padding-bottom: 10px !important;
}

#opciones .flag {
    height: 35px;
}

.mt-3 {
    margin-top: 1rem;
}

@media screen and (max-width:800px) {
    .selectbox {
        width: 100%;
    }

    #menu-item-818 {
        margin: 20px 0;
        padding-left: 15px;
        font-size: 1rem;
    }

    .modal-content {
        width: 97%;
        margin: auto;
        margin-top: 2rem;
    }
}