.spi-container {
    position: relative;
    display: inline-block;
}

#btn-selector {
    font-family: "Barlow", sans-serif;
    background: #001d66;
    font-size: 15px;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#seletor-dropdown {
    position: absolute;
    background: white;
    width: 250px;
    z-index: 999;
    /*padding: 15px;*/
    margin-top: 10px;
    border-radius: 8px;
    /*box-shadow: 0 0 8px rgba(0,0,0,0.2);*/
}

.conteudo-container{
	padding: 0 15px 15px;
}

.tab-header {
	background:#001d66;
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px 10px 0px 0px;
}

.tabs {
	background:#0036b3;
    display: flex;
    justify-content: space-around;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
}

.tab {
    background: #0036b3;
    color: #ffffff;
    padding: 5px 10px;
    cursor: pointer;
    border: none;
    border-radius: 2px;
    width: 45%;
}

.tab:hover {
    background: #ffffff;
    color: #0036b3;
}

.tab.active {
    background: #ffffff;
    color: #0036b3;
}

.item {
    padding: 10px;
    cursor: pointer;
    position: relative;
}

.item.selected::after {
    content: '';
    background-image: url("data:image/svg+xml;base64,CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9IiMwMDQwODAiIGNsYXNzPSJiaS1iaS1jaGVjayIgdmlld0JveD0iMCAwIDE2IDE2Ij4KICA8cGF0aCBkPSJNMTAuOTcgNC45N2EuNzUuNzUgMCAwMSAxLjA3IDEuMDVsLTQuNSA1YS43NS43NSAwIDAxLTEuMDguMDJMNC4zMjQgOS4zODRhLjc1Ljc1IDAgMTExLjA2LTEuMDZsMS4zODQgMS4zODQgNC4yMDItNC42MzZ6Ii8+Cjwvc3ZnPgo=");
    background-size: 16px 16px;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.item:hover,
.item.selected {
    background: #f0f0f0;
}

.item .bandeira {
    margin-right: 6px;
    font-size: 18px;
}

button#confirmar-pais,
button#confirmar-idioma {
    margin-top: 10px;
    padding: 6px 12px;
    background-color: #004080;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}