.asb-main-container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.link-btn{
	height: 30px;
	font-size: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	
}

.botoes-semana-main{
    display: flex;
    justify-content: center;
}

.botoes-semana-main button{
    min-width: 50px;
    min-height: 50px; 
    padding: 0;
    margin: 5px;
    border-radius: 5px;
    font-size: 15px;
    background-color: #046BD2;
    color: white;
}


.botao-selecionado{
    background-color: #F18F4B!important;
    color: white;
}

#botoes-semana{
    max-width: 756px;
    display: flex;
    justify-content: center;
    overflow: auto;
}
#botoes-semana button{
    min-width: 100px;
    min-height: 40px;
    padding: 0;
    margin: 5px;
}

.asb-link{
	text-decoration: none!important;
}
/*Lista de atividades CSS*/
.asb-atividade-main-container{
    width: 756px;
    height: 390px;
    background-color: #58AF9A;
    padding: 10px;
    overflow-y: auto; 
	overflow-x: hidden;
    border-radius: 4px;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}

.asb-item{
   display: flex;
   justify-content: space-between;
   border-bottom: solid 0.5px white;
   color: white;
   align-items: center;
   min-height: 70px;
   padding: 10px;
   cursor: pointer;
}

.asb-item-img{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    background-color: #F18F4B;
    border-radius: 50%;
    min-width: 26px;
    min-height: 26px;
}

.asb-atividade-main-container::-webkit-scrollbar {
    width: 10px;
}

.asb-atividade-main-container::-webkit-scrollbar-track {
    background: #58AF9A;
    border-radius: 4px;
}

.asb-atividade-main-container::-webkit-scrollbar-thumb {
    background: white;
    border-radius: 5px;
}

.asb-atividade-main-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}


/*mapa*/

.asb-map{
    background-color: lightslategray;
	margin: 5px;
    margin-left: 50px;
    width: 416px;
    height: 458px;
    border: 6px solid #58AF9A;
    border-radius: 7px;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}


@media (max-width: 900px)  {
    .asb-map{
        background-color: lightslategray;
        margin-top: 10px;
        margin-left: 0;
        width: 100%;
        height: 350px;
        border: 6px solid #58AF9A;
        border-radius: 7px;
    }
	
    .asb-main-container{
        display: flex;
        justify-content: center;
        align-items: center;
    }
	.asb-atividade-main-container{
		width: 100%;
		height: 390px;
		background-color: #58AF9A;
		padding: 10px;
		overflow-y: auto; 
		overflow-x: hidden;
		border-radius: 4px;
		box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
	}
}