body{
	background-color: #444;
}
.marginTitulo{
	margin-top: 40px;
}

.load {
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.2);
	z-index: 1000;
	position: fixed;
	display: none;
}

.card-load {
	width: 100%;
	height: 100%;
	position: relative;
}

.text-load {
	width: 385px;
	height: 70px;
	margin: auto;
	position: absolute;
	top: 0;	left: 0; right: 0; bottom: 0;
	background-color: white;
	padding: 25px;
	border-radius: 50px;
}

/*========= MENU HEADER =========*/
.menuFixoCheckout{
	background-color: #1D1D1B;
	position: static;
	max-height: 70px;
	width: 100%;
	z-index: 9999;
}
.voltarBtn{
	padding: 22.5px 0;
}
.voltarBtn a{
	color:#ffffff;
	opacity: 1;
	filter: alpha(opacity=100);
}
.voltarBtn a:hover{
	opacity: 0.5;
	filter: alpha(opacity=50);
	text-decoration: none;
	cursor: pointer;
}
.voltarBtn a > i{
	font-size: 24px;
    height: 31px;
    vertical-align: middle;
}
.carrinhoCompra{
	padding: 12px 0;
    text-align: right;
    height: 69px;
}
.carrinhoCompra .fa-shopping-cart{
	color: #2ECC71;
}
.carrinhoCompra .carrinhoComItens{
	padding: 7px 30px;
    text-decoration: none;
}
.carrinhoComItens{
    background-color: white;
    color: #444;
    text-transform: initial;
    display: table;
    border-radius: 50px;
    margin-top: 6px;
    text-decoration: none;
}
.numeroCarrinho{
	font-size: 20px;
    font-weight: bolder;
    margin-left: 10px;
}
/*====HEADER INICIAL=====*/
@media (min-width: 992px){
    .itensMenu > li{
        float:left;
    }
}

/*========= TÍTULO DA PÁGINA =========*/
.tituloPagina{
    height: 164px;
    color: white;
    position: relative;
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.4)	;
	background-color: #1D1D1B;
}
.tituloPagina div{
    position: relative;
    padding: 10px 30px;
    background-color: white;
    border-radius: 5px;
    color: #444;
	bottom: -27px;
    box-shadow: 0px 3px 4px 0px rgba(0,0,0,0.5);
    -webkit-box-align:center;
    -webkit-box-pack:center;
    display: -webkit-box;
    max-width: 380px;
    margin: 0 auto;
    text-align: center;
}

/*========= FORMULARIO =========*/
.formCheckout{
	background-color: white;
	border-radius: 5px;
	margin-top: 70px;
    margin-bottom: 70px;
}
.lineInput{
	background-color: white;
}
.cadastroForm .row > div,
.marginTitulo .row > div > div > label{
	margin-top:20px;
}
.navItem{
	color: #666;
	text-transform: uppercase;
	margin: 20px 0 10px 0;
	border-bottom: 1px solid #ddd;
}
.navItemExcliur{
	text-align: center;
}
.navItem span,
.corpoItem div{
	padding-left:0;
	padding-right:0;
}
.corpoItem div{
	height: 110px;
}
.imgCombo{
	float: left;
}
.imgCombo img{
	max-width: 60px;
    max-height: 90px;
}
.subtotalTable{
	margin-left: 5px;
}
p.subtotalTable{
	color:#e17b6b;
	font-weight: bolder;
}
.iconTrash{
	text-align: center;
}
.iconTrash:hover{
	color: #666;
	background-color: #e1e1e1;
	cursor: pointer;
}
.qtdeNumber{
	width: 90%;
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid #b1b1b1;
    text-align: center;
    height: 40px;
}
.qtdeNumber:focus{
	outline: none;
}
.corpoItem > div{
	border-bottom: 1px solid #ddd;
	margin-bottom: 4px;
    padding-bottom: 94px;
}
.corpoItem div > .subtotalTable,
.corpoItem div > p > i{
	line-height: 5.65;
}
.corpoItem div > input{
	margin-top: 25px;
}
.confirmarCompra{
	position: relative;
}
.footerItem{
	background-color: #DBDBDB;
	display: inline-block;
    width: 100%;
}
.footerItem p{
	text-align: center;
	margin-top: 4px;
}
.imagemProdutoTotal{
    background-color: #D9D9D9;
    padding: 20px 0px;
}
.imagemProdutoTotal > div > div{
    border:1px solid #1E4687;
    padding: 15px 25px;
    background-color: white;
}
.imagemProdutoTotal h4{
    color: #9D9D9D;
    float: left;
    font-weight: bolder;
    line-height: normal;
}
.imagemProdutoTotal h2{
    color: #444;
    text-align: center;
    line-height: 2.5;
}
.confirmarTotal{
    color:#666;
    font-size: 24px;
    font-weight: bolder;
    text-align: center;
    width: 100%;
    display: block;
}
.confirmarTotal--total{
    color:#1FB35E;
}

.corpoItem {
    opacity: 1;
    filter: alpha(opacity=100);
}

.corpoItem.removed {
    opacity: 0;
    filter: alpha(opacity=0);
    /* TODO: Avaliar definir um tamanho desse item para dar o efeito da remoção */
    display: none;
    -webkit-animation: remove-item-animation .4s linear forwards;
            animation: remove-item-animation .4s linear forwards;
    -webkit-animation: remove-item-animation .4s linear forwards;
            animation: remove-item-animation .4s linear forwards;
}

@-webkit-keyframes remove-item-animation {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
	}
	75% {
        opacity: 0;
        filter: alpha(opacity=0);
	}
    100% {
        display: none;
	}
}

@keyframes remove-item-animation {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
	}
	75% {
        opacity: 0;
        filter: alpha(opacity=0);
	}
    100% {
        display: none;
	}
}

/* jQuery Validate */
.tooltipCod{
    background-color: dimgrey;
    padding: 0px 6px;
    border-radius: 50px;
    color: white;
    margin-left: 4px;
}
label.error {
    opacity: 0;
}
.error[data-toggle="tooltip"] {
    margin-left: 5px;
    color: #8a6d3b;
}
.lineInput--select label.error{
    margin-top: -4px;
}
.alert li{
    list-style: initial;
    margin-left: 21px;
    margin-top: 4px;
}

/*RADIO OPÇÃO DE PAGAMENTO*/
input[type="radio"] {
    display:none;
    -webkit-appearance: none;
}

input[type="radio"]{
    display:inline-block;
    width: 35px;
    height: 35px;
    margin: -1px 4px 0 0;
    background: url(../img/input-radio.svg) 6px center no-repeat;
    background-size: 140px;
    cursor:pointer;
}
div.radioBottom{
	margin-bottom: 40px;
}
input[type="radio"]:checked,
input[type="radio"]:hover{
    background: url(../img/input-radio.svg) -103px center no-repeat;
    background-size: 130px;
    color: #422680;
    top: 0px;
    position: relative;
}
.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox],
.radio input[type=radio],
.radio-inline input[type=radio] {
    position: relative;
}
.spanEnvio {
	display: block;
    margin: -23px 0 0 15px;
    font-size: 16px;
    line-height: 16px;
    font-weight: bold;
	color: #1d1d1b;
}
.spanEnvio b {
	display: inline-block;
    margin: 5px 0 0 0;
    font-size: 12px;
}
.spanEnvio small {
	font-weight: 600;
    margin-top: 5px;
    display: inline-block;
    font-size: 14px;
    color: #8b8888;
}
input[type="radio"]:checked
input[type="radio"] + label{
	width: 90%;
}
input[type="radio"],
input[type="radio"]:focus{
	outline: none;
	-webkit-appearance: none;
	border: transparent;
}
input[type="radio"]:checked + label{
	color: #422680;
}
.lineInput input::-webkit-input-placeholder{
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 14px;
    opacity: 0.8;
    filter: alpha(opacity=80);
}
input[type="radio"] + label > .carteira{
	background-image: url(../img/carteira-icon-cinza.svg);
	width: 39px;
	height: 50px;
	float: left;
    top: -9px;
    position: relative;
    margin-right: 7px;
}
input[type="radio"]:checked + label > .carteira{
	background-image: url(../img/carteira-icon.svg);
}
input[type="radio"]:hover + label > .carteira{
	background-image: url(../img/carteira-icon.svg);
}
input[type="radio"] + label >  h2{
    line-height: 2;
}
input[type="radio"] + label > .boleto{
	background-image: url(../img/bar-icon-cinza.svg);
	width: 53px;
    height: 36px;
    float: left;
    top: 6px;
    position: relative;
    margin-right: 7px;
}
input[type="radio"]:checked + label > .boleto{
	background-image: url(../img/bar-icon.svg);
}
input[type="radio"]:hover + label > .boleto{
	background-image: url(../img/bar-icon.svg);
}
input[type="radio"] + label >  h2{
    line-height: 2;
}
.marginTitulo form > div div{
	padding-left: 0;
	padding-right: 0;
}
.margimTitulo form > div{
	border-right: 1px solid #eee;
}
.marginTitulo .lineInput--select{
	margin-bottom: 13px;
}
.marginTitulo .btn{
	margin: 20px auto;
	text-align: center;
    display: block;
}
.infosBoleto h1,
.infosBoleto p{
	color: #666;
}
.infosBoleto .fa{
	margin-top: 30px;
	margin-bottom: 5px;
}
.parcelaAviso{
	font-size: 14px;
	color:red;
	margin-top: 30px;
}
.labelFormaPagto{
    width: 84%;
}
.marginTitulo form{
	position: relative;
}
.p-r-20{
	padding-right: 20px;
}
.p-l-20{
	padding-left: 20px;
}
.m-t-10{
    margin-top: 10px;
}
#paymentFormLine {
    position: relative;
}
.linhaPagamento{
	margin: 0;
}
.mensagemCompra{
	text-align: center;
    background-color: white;
    border-radius: 5px;
    margin: 70px auto 0;
    padding: 50px;
}
.mensagemCompra h2{
	color: green;
}
.mensagemCompra div{
	background-color: #C8C8C8;
	padding: 20px;
    border-radius: 3px;
    margin-top: 20px;
}
.mensagemCompra.btn,
.mensagemCompra p{
	display: inline-block;
	margin-right: 20px;
}
.mensagemCompra .btn{
	width: 220px;
}
#mensageCompra_sucesso_numeroPedido {
    display: block;
    font-weight: bold;
}
#mensagemCompra_erro_texto {
    display: block;
}
#mensagemCompra_maisInformacoes {
    background-color: initial;
}

/*===========  MOBILE  ===========*/
@media (min-width: 150px){
    /* A - MENU */
    .palavraItens{
    	display: none;
    }
    .tituloPagina{
	/* background: url(../img/ilustra-checkout-mobile.png) no-repeat center center; */
	/* background-size: cover; */
	background-color: #001377;
	}
	/*C - FORM*/
	.navItem{
		font-size: 10px;
	}
	.formCheckout > div {
	    margin: 40px 5px;
	}
	.imgCombo{
		display: none;
	}
	.confirmarCompra > div{
		margin-left: 0px;
	}
	.middleH{
	    padding-top: 30px;
	}
	.middleH h3{
		font-size: 13px;
	}
	.middleH h3 > strong{
		color: #e17b6b;
	}
	.middleH p{
		font-size: 11px;
		margin-top: 4px;
	}
	.linhaPagamento{
		width: 100%;
	    height: 1px;
	    display: block;
	    position: relative;
	    float: left;
	    padding-top: 18px;
    	border-bottom: 1px solid #C8C8C8;
	}
	.marginTitulo .btn {
	    width: 90%;
	}
	.vencimentoCard{
		width: 100%;
	    margin-right: 0%;
	}
	.mensagemCompra .btn{
		margin-top: 20px;
	}
	.middleH h3 > strong{
		font-size: 12px;
	}
}

@media (min-width: 400px){
    /* A - MENU */
    .palavraItens{
    	display: inline-block;
    }
}

@media (min-width: 575px){
       /*C - FORM*/
    .imgCombo{
		display: block;
	}
	.confirmarCompra > div{
		margin-left: 70px;
	}
}
@media (min-width: 768px){
	.linhaPagamento{
		width: 1px;
	    height: 85%;
	    border-right: 1px solid #C8C8C8;
	    position: absolute;
	    left: 48%;
	    /* vertical-align: initial; */
	    top: 7%;
	    display: block;
	}
	.marginTitulo .btn {
	    width: 33%;
	}
	.vencimentoCard{
		width: 47%;
	    margin-right: 3%;
	}
}

/*===========  TABLET  ===========*/
@media (min-width: 992px){
    /* A - MENU */
    .tituloPagina{
    	/* background: url(../img/ilustra-checkout-tablet.png) no-repeat center center; */
	/* background-size: cover; */
	background-color: #1D1D1B;
	}
	/*C - FORM*/
	.formCheckout > div{
		margin: 40px 20px;
	}
	.navItem{
		font-size: 12px;
	}
	.middleH h3{
		font-size: 18px;
	}
	.middleH p{
		font-size: 16px;
	}
	.mensagemCompra .btn{
		margin-top: 0px;
	}
	.middleH h3 > strong{
		font-size: 14px;
	}
}

/*===========  DESKTOP  ===========*/
@media (min-width: 1200px){
    /* A - MENU */
    .tituloPagina{
	background: url(../img/banner-final-01.png) no-repeat top center;
	background-size: cover;
	background-color: #1D1D1B;
	}
	.confirmarCompra div > h3{
		margin-right: 5px;
	}
}
