@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root{
    --degrade-laranjado: linear-gradient(to right, #ee6330, #f04333);
    --dourado: #FFA500;
    --degrade-btn: linear-gradient(to right, #FFA500, #db6d35);
}

.page-select{
    background: url('netbios-index.png') center center;
    background-size:cover;
}

.container{
	display: flex;
	flex-direction: column;
	height: 100vh;
}

.selecao-cidade{
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: left;
	flex-direction: row;
    text-align: center;
}

.selecao-corpo{
	margin-left: 50px;
}

.selecao-corpo h2{
	padding-left: 0px;
}

.selecao-corpo img{
    height: 200px;
}

.selecao-corpo h4{
	color: #fff;
	font-family: 'Barlow';
	font-size: 15px;
	font-weight: 300;
	text-align: center;
	padding-left: 0px;
	text-transform:uppercase;
}

.selecao-corpo p{
	
}

.botoes-rodape{
	text-align: center;
}

.botoes-rodape button{
	width: 180px;
	padding: 10px 5px;
	border: none;
	border-radius: 5px;
	background: linear-gradient(to bottom, #fbb72f, #FB8E27);
	font-family: 'Barlow';
	font-size: 15px;
	color: #191970;
}

@media (min-width:320px) and (max-width: 480px){

  .page-select{
        background: url('netbios-index.png') center right;
        background-size:cover;
        margin: 0 auto;
    }
    

  .selecao-corpo{
	margin-left: 0;
    margin: 0 auto;
  }

  .selecao-corpo p{
	text-align: center;
  }

  .selecao-corpo h2{
	padding-left:0px;
  }

  .selecao-corpo img{
	height: 150px;
  }

  .botoes-rodape button{
    margin-top: 20px;
  }

  .label{
    font-size: 15px;
  }
}

/* === select === */
.select{
    width: 395px;
    padding: 5px 10px;
    border-radius:5px;
    margin: 0 auto;
}

.opc-default {
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 5px 10px;
    border-radius: 5px 5px 0px 0px;
    margin-bottom: 2px;
}

.opcoes{
    border-radius: 0px 0px 5px 5px;
    background: #fff;
    overflow: auto;
    max-height: 120px;
    transition: .7s all;
}

.option{
    padding: 5px 10px;
    border-bottom: 1px solid #888888;
    text-align: left;
}

.option a{
    text-decoration: none;
    color: #000;
}

.ocultar{
    max-height: 0px;
}

.rotacionar{
    transform: rotate(180deg);
    transition: .7s all;
}
@media (min-width:300px) and (max-width: 767px){
    .select{
        width: 300px;
        margin: 0 auto;
    }

    .botoes-rodape{
        margin-top:-20px;
    }
}