@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');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");

body {
	background: url('./assets/img/bannerdesktop.jpg') center center;
	background-repeat: no-repeat;
	background-size: cover;
	/*background: linear-gradient(120deg,#00008B,#00008B,#00008B,#00008B,#00008B,#00008B,#191970,#191970,#191970,#191970,#191970);*/
	/*display: flex;*/
	/*justify-content: center;*/
	height: 100vh;
	/*padding: 5rem;*/
}

.container{
	display: flex;
	flex-direction: column;
	height: 100vh;
}

.selecao-cidade{
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: left;
	flex-direction: row;
}

.selecao-corpo{
	margin-left: 50px;
}

.selecao-corpo h2{
	padding-left: 10px;
}

.selecao-corpo h4{
	color: #fff;
	font-family: 'Barlow';
	font-size: 15px;
	font-weight: 300;
	text-align: left;
	padding-left: 20px;
	text-transform:uppercase;
}

.selecao-corpo p{
	
}

.botoes-rodape{
	display: flex;
	justify-content: space-between;
}

.botoes-rodape button{
	width: 190px;
	margin-right: 12px;
	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){

  body{
	background-position: 0% 50%;
	background-size: cover;
	height: 100vh !important;
  }

  .selecao-corpo{
	margin-left: 0;
  }

  .selecao-corpo p{
	text-align: center;
  }

  .selecao-corpo h2{
	padding-left:0px;
  }

  .selecao-corpo img{
	
  }

  .botoes-rodape button{
    margin-top: 20px;
  }

  .label{
    font-size: 15px;
  }
}

/* === select === */
.select{
    width: 395px;
    padding: 5px 10px;
    border-radius:5px;
}

.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;
}

.option a{
    text-decoration: none;
    color: #191970;
}

.ocultar{
    max-height: 0px;
}

.rotacionar{
    transform: rotate(180deg);
    transition: .7s all;
}
@media (min-width:300px) and (max-width: 767px){
    .select{
        width: 350px;
        margin: 0 auto;
    }

    .botoes-rodape{
        margin-top:-20px;
    }
}