/***************************** SECTION TITLE INTERNA **************************/

.sect_title_interna{

	background-image: url(../../../../public/img/fondo/carrito-title-interna.jpg);

	background-position: center 70%;

	background-size: cover;

	padding: 100px 0;

	position: relative;

}

.sect_title_interna:before{

	content: "";

	position: absolute;

	top: 0;

	left: 0;

	width: 100%;

	height: 100%;

	background: #61271d;

	opacity: .5;

}
/**/
@media(max-width: 991px){

    .sect_title_interna {

        padding: 60px 0;

        padding-bottom: 80px;

    }

}

@media(max-width: 767px){

    .sect_title_interna.sect_title_general h2 {

        font-size: 30px;

    }

    .sect_title_interna {

        padding: 40px 0;

        padding-bottom: 70px;

    }

}

/***************************** END SECTION TITLE INTERNA **************************/



/************************************************* SECTION PASOS CARRITO ********************************************************/

.sect_proceso_compra{

	padding: 100px;

}

/**/

.list_pasos_carrito{

	list-style: none;

	padding-left: 0;

	margin-bottom: 0;

	display: -webkit-flex;

	display: -moz-flex;

	display: -ms-flex;

	display: -o-flex;

	display: flex;

	flex-flow: row wrap;

	justify-content: space-between;

}

.list_pasos_carrito>li{

	width: 30%;

	position: relative;

}

.list_pasos_carrito>li h5{

	text-align: center;

    font-weight: 900;

    font-size: 20px;

    color: #888;

}

.list_pasos_carrito>li.active h5{

	color: #000;

}

/**/

.list_pasos_carrito>li span{

	display: block;

    width: 60px;

    height: 60px;

    margin: 0 auto;

    color: #fff;

    text-align: center;

    border-radius: 50%;

    font-size: 25px;

    line-height: 52px;

}

.list_pasos_carrito>li span:before{

	content: "";

    position: absolute;

    top: 50%;

    left: 0;

    width: 100%;

    height: 10px;

    -webkit-transform: translate(0, -50%);

    -ms-transform: translate(0, -50%);

    -o-transform: translate(0, -50%);

    transform: translate(0, -50%);

    z-index: -1;

    border-radius: 5px;

}

.list_pasos_carrito>li.active span:after{

	content: "";

    position: absolute;

    width: 0;

    /* bottom: 0; */

    height: 0;

    left: 0;

    border-left: 60px solid #7daf28;

    border-top: 20px solid transparent;

    border-bottom: 20px solid transparent;

    right: 0;

    margin: 0 auto;

    transform: rotate(90deg) translate(95%, 0);

    z-index: -1;

}

/*PASO 1*/

.list_pasos_carrito>li.paso1 span{

    background: #8ec038;

    border: 5px solid #7daf28;

}

.list_pasos_carrito>li.paso1 span:before{

    background: #8ec038;

}

/*PASO 2*/

.list_pasos_carrito>li.paso2 span{

    background: #f4811f;

     border: 5px solid #dc6500;

}

.list_pasos_carrito>li.paso2 span:before{

    background: #f4811f;

}

/*PASO 3*/

.list_pasos_carrito>li.paso3 span{

    background: #f4811f;

     border: 5px solid #dc6500;

}

.list_pasos_carrito>li.paso3 span:before{

    background: #f4811f;

}
/*****/
@media(max-width: 991px){
    .list_pasos_carrito>li h5 {
        font-size: 15px;
    }
}
@media(max-width: 767px){
    .sect_proceso_compra{
        padding: 0;
    }
    .sect_proceso_compra .list_pasos_carrito{
        display: none;
    }
}

/***************************************** END SECTION PASOS CARRITO *******************************************/



/********************************** SECTION CARRITO ******************************/

.sect_carrito{

	padding: 100px 0;

	padding-top: 0;

}

/**/

.content_table_pedidos>table>thead th{

    padding: 15px;

    background: #61271d;

    text-align: center;

    color: #fff;

    border: 1px solid #fff;

}

.content_table_pedidos>table>tbody td{

        padding: 15px;

    text-align: center;

    background: #f1f1f1;

    border: 1px solid #fff;

}

/**/

.name_product{

	margin-top: 10px;

}

.input_cant{

	display: block;

    width: 50px;

    margin: 0 auto;

    box-shadow: 0px 0px 5px #ccc;

    border: 0;

}

.input_cant:focus{

	outline: none;

}

/*SUBTOTALES*/

.box_subtotales {

	width: 100%;

	max-width: 400px;

	margin-left: auto;

	margin-top: 30px;

	box-shadow: 0 2px 4px 0 rgba(170,170,170,.5);

	padding: 20px;

}

.box_subtotales .info{

	display: -webkit-flex;

	display: -moz-flex;

	display: -ms-flex;

	display: -o-flex;

	display: flex;

	flex-flow: row wrap;

}

.box_subtotales .info span{

	width: 50%;

    margin-bottom: 10px;

    padding: 10px;

    border-bottom: 1px solid #d6d6d6;

}

.box_subtotales .info span.title{

	font-weight: 600;

}

.box_subtotales .info span.monto{

	text-align: right;

}

/**/

.btn_carrito a{

	display: block;

    padding: 20px;

    background: #f4811f;

    color: #fff;

    font-weight: 700;

    margin-top: 20px;

    text-align: center;

    text-decoration: none;

    border-radius: 30px;

	-webkit-transition: all ease 500ms;

	-o-transition: all ease 500ms;

	transition: all ease 500ms;

}

.btn_carrito a:hover{

	background: #8ec038;

	-webkit-transition: all ease 500ms;

	-o-transition: all ease 500ms;

	transition: all ease 500ms;

}
/**/
@media(max-width: 991px){
    .content_table_pedidos{
        width: 100%;
        overflow-x: auto;
    }
    .content_table_pedidos table{
        width: 1000px;
    }
}
@media(max-width: 767px){
    .sect_carrito {
        padding: 100px 0;
        padding-top: 50px;
    }
}

