body, html {
    overflow-x: hidden;
}
body {
	 font-family: "Poppins", sans-serif;
}

button {
	background-color: transparent;
	border: none;
}

img, video {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.img-fluid {
	margin: 0 auto;
}

.rola_status {
    height: 400px;
    overflow-x: hidden;
    overflow-y: scroll;
    margin-bottom: 30px;
}

:root {
	--verde-escuro-1: #0F2C22;
	--verde-escuro-2: #0E9064;
	
	--verde-claro-1: #F7FFDD;
	--verde-claro-2: #F2F8DD;
	--verde-claro-3: #CDDF8F;
	
	--laranja-1: #F8B976;
	--laranja-2: #D08B41;
	
	--azul-claro-1: #B7E1FC;
  	--azul-escuro-1: #369BD9;
	
  	--vermelho-1: #B30B00;
  	--amarelo-1: #EBC340;
	
	--preto: #000000;
	--preto-1: #131313;
	--preto-2: #232323;
	--preto-3: #3F3F3F;
	--preto-4: #666666;
	--preto-5: #8C8C8C;
	--preto-6: #AFAFAF;
	--preto-7: #D0D0D0;
	--preto-8: #E3E3E3;
	--preto-9: #F6F6F6;
	
	--branco: #fff;
	
	
	--container-menor: 900px;
	--container-big: 1350px;
	
	--box-shadow: 0px 4px 12px rgba(34, 43, 40, 0.1);
	--box-shadow-hover: 0px 4px 15px rgba(34, 43, 40, 0.2);
}


.btn-1 {
    font-weight: 400;
    font-size: 1rem;
    line-height: 120%;
    color: var(--branco);
    background: var(--verde-escuro-2);
    border-radius: 2rem;
    display: flex;
	align-items: center;
    padding: 1rem 1.75rem;
    gap: .75rem;
	transition: .2s ease;
}

.formulario__carrinho input[type="text"], .formulario__carrinho input[type="email"], .formulario__carrinho input[type="password"], .formulario__carrinho select {
    border: 2px solid #D5D5D5;
    border-radius: 8px;
    width: 100%;
    display: block;
    height: 70px;
    padding: 15px;
    font-style: italic;
    font-weight: 300;
    font-size: 20px;
    line-height: 121%;
    color: var(--preto-4);
	background-color: transparent;
}

.formulario__carrinho textarea {
    border: 2px solid #D5D5D5;
    border-radius: 8px;
    width: 100%;
    display: block;
    height: 120px;
    padding: 15px;
    font-style: italic;
    font-weight: 300;
    font-size: 20px;
    line-height: 121%;
    color: var(--preto-4);
	background-color: transparent;
}

.arquivo__vinculo {
	border: 2px solid #D5D5D5;
    border-radius: 8px;
    width: 100%;
    height: 70px;
    padding: 15px;
    font-style: italic;
    font-weight: 300;
    font-size: 20px;
    line-height: 121%;
    color: var(--preto-4);
    background-color: transparent;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.caixa__file {
    background: var(--branco);
    border: 2px dashed var(--preto-7);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    gap: 15px;
	height: 320px;
}

.file-upload-input {
    display: none; /* Esconde todos os inputs file */
}

.file-upload-btn {
	justify-content: center;
}

.caixa__file span small {
    font-size: 12px;
    line-height: 14px;
    display: block;
}

.caixa__file b, .aviso_arquivo {
    color: var(--verde-escuro-2);
    font-size: 10px;
    display: block;
    text-align: center;
    width: 100%;
    overflow: hidden;
    white-space: break-spaces;
}


.remove_carrinho {
    font-size: 23px;
    color: #b30c00;
}


.btn__cta_vermelho {
    font-weight: 500;
    font-size: 1rem;
    line-height: 130%;
    color: var(--vermelho-1);
    border-radius: 2rem;
    border: 1.5px solid var(--vermelho-1);
    padding: .75rem 1.5rem;
    display: inline-block;
}


.btn__cta_vermelho:hover  {
	background-color: var(--vermelho-1);
	color: var(--branco);
}


.btn__cta_vermelho__outline {
    font-weight: 500;
    font-size: 1rem;
    line-height: 130%;
    color: var(--branco);
	background-color: var(--vermelho-1);
    border-radius: 2rem;
    border: 1.5px solid var(--vermelho-1);
    padding: .75rem 1.5rem;
    display: inline-block;
}


.btn__cta_vermelho__outline:hover  {
	background-color: var(--branco);
	color: var(--vermelho-1);
}



.status_linha {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 10px;
}

.status_linha span {
    background-color: #000;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: #fff;
    font-size: 20px;
	flex-shrink: 0;
}

.status_linha p {
    max-width: 200px;
}

.box_adm_dash {
    height: 120px;
    background-color: var(--verde-escuro-1);
    border-radius: 10px;
	padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}
.box_adm_dash b {
    font-size: 50px;
    color: #fff;
    display: block;
}
.box_adm_dash span {
    color: #fff;
    font-size: 24px;
    display: block;
}


.suggestions {
    position: absolute;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    width: 100%;
    z-index: 1000;
    display: none;
}

.suggestions div {
    padding: 8px;
    cursor: pointer;
}

.suggestions div:hover {
    background: #f0f0f0;
}


.load_master {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background-color: rgb(0 0 0 / 84%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.load_master h1 {
    color: #fff;
}

.load_master img {
    width: 90px;
}


.head-side {
    background: #1EC007;
    border-radius: 10px;
    padding-bottom: 50px;
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
	position: relative;
	z-index: 1;
}

.head-side b {
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 33px;
    color: #1C1C1C;
}


.side-itens a {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 40px;
    color: #595959;
	width: 100%;
	display: block;
}

.side-itens a.ativo {
    font-weight: 700;
}

.side-itens {
    list-style: none;
    margin: 0px;
    padding: 15px;
    background: #FFFFFF;
    border: 1px solid #C5C5C5;
    border-radius: 6px;
    position: relative;
    z-index: 2;
    margin-top: -30px;
}

.side-itens li {
    border-bottom: 1px solid #C5C5C5;
	padding-bottom: 4px;
	padding-top: 15px;
	width: 100%;
}

.dash-cont {
	padding-bottom: 100px;
	padding-top: 60px;
}

.dash-cont p, .dash-cont td {
	font-size: 13px !important;
}

.btn-sanfona {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    border: none;
    background-color: transparent;
    border-radius: 4px;
    column-gap: 10px;
    margin-top: -70px;
    position: relative;
    z-index: 9;
}


@media (max-width: 767px) {
	
	
.filtro_m {
   display: none;
}

.side-itens {
   margin-top: -5px;
}	
	
.mostra-s {
    display: block;
}
	
.table-responsive table {
    min-width: 100%;
    table-layout: auto;
}

.table th,
.table td {
    min-width: 250px;
}
	
	
	
}


