:root {
    --local-primary-color: #fd9d5a;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Montserrat-Regular';
    src: url('/registro/assets/font/Montserrat-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat-SemiBold';
    src: url('/registro/assets/font/Montserrat-SemiBold.ttf') format('truetype');
}

input[type=text]:focus, 
input[type=password]:focus,
input[type=email]:focus{
    border: 1px solid orange;
    outline: 1px solid orange;      /* Remove default outline and use border or box-shadow */
    box-shadow: 0 0 0 2px orange; /* Full freedom. (works also with border-radius) */
}

body{
    font-family: 'Montserrat-Regular', sans-serif;
}

.grid-container, .container-sin-productos{
    background: #fd9d5a;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    background-color: #ed7a3c !important;
    border-color: #fd9d5a;
}

#loginModal .modal-header {
    background: linear-gradient(to right, #f1e1c7 50%, #fd9d5a 50%);
}

.container-ciem{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.enlace{
    text-decoration: none;
    color: white;
}

.card-login{
    width: 400px;
    box-shadow: 0 0rem 3rem rgba(0, 0, 0, 0.4);
}

.titulo-container{
    display: none;
}

.icono-user-container{
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ed7a3c;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.fa-user-icon{
    display: inline-block;
    color: white;
    width: 64px;
    height: 64px;
    transform: translate(3px,-5px);
    background-image: url("../css/SVG/user-solid.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.bi-cart-dash-fill{
    display: inline-block;
    width: 20px;
    height: 20px;
    transform: translate(-4px,3px);
    background-image: url(../css/SVG/cart-dash-fill.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.card-body{
    position: relative;
    border-radius: 10px;
    background: #f1e1c7;
}

.btn-primary{
    --bs-btn-bg: #ed7a3c;
    --bs-btn-border-color: #ed7a3c;
}

.facebook{
    --bs-btn-bg: #1e4899;
    --bs-btn-border-color: #1e4899;
}

.google{
    --bs-btn-bg: white;
    --bs-btn-border-color: white;
    color: gray;
}

.btn:hover{
    background-color: #ed7a3cad;
    border-color: #ed7a3c
}

/* css registro */

.titulo-registro{
    font-family: 'Montserrat-SemiBold', sans-serif;
    margin: 0;
    font-size: 22px;
}

.grid-resumen-compra {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(320px, 100vw);
    height: 100vh;
}

.compra.grid-resumen-compra {
    grid-template-columns: 1fr;
}

.grid-container-registro, .grid-resumen-compra{
    background-color: #fd9d5a;
}

.container-ciem-registro, .container-ciem-resumen{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-registro{
    position: relative;
    width: 95%;
    height: 100%;
    max-height: 95vh;
    background-image: linear-gradient(rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.6)), url("../img/fondo-circulos.png");
    box-shadow: 0 0rem 1rem rgba(0, 0, 0, 0.4);
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    z-index: 1;
}

.card-registro::-webkit-scrollbar {
    display: none; /* Para Chrome, Safari, y Opera */
}

#carrito-aside .accordion-item .header-content {
    width: 100%;
}

.img-talleres{
    width: 15rem;
    box-shadow: 0 0rem 1rem rgba(0, 0, 0, 0.4);
}

.container-talleres{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

/* talleres */
.container-talleres-dia1,
.container-talleres-dia2 {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, height 0.5s ease-in-out;
}

.talleres{
    height: 350px !important;
}

.show-container {
    opacity: 1;
    height: auto;
    overflow: visible;
    transition: opacity 0.5s ease;
}

.single-box{
    position: relative;
    border-radius: 15px;
    box-shadow: 0 0rem 1rem rgba(0, 0, 0, 0.4);
}

.img-area{
    position: relative;
    width: 220px;
    height: 170px;
    border: 5px solid #fff;
}

.img-area img{
    width: 100%;
    position: relative;
    right: 5px;
}

.carousel-indicators{
    left: 0;
    top: auto;
}

.carousel-control-next, .carousel-control-prev {
    width: 10%;
    bottom: 100px;
}

.card-talleres{
    background: white !important;
    border-radius: 10px;
    padding-top: 5px;
    padding-bottom: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.card{
    border-radius: 10px;
    border: none;
    box-shadow: 0 0rem 1rem rgba(0, 0, 0, 0.4);
}

.card-text{
    font-size: 14px;
}

.pagos{
    text-align: center;
    opacity: 0.6;
    margin: 10px;
}

.btn-primary-talleres{
    background-color: #ed7a3c;
    font-size: 16px;
    width: 150px;
}

.modal-footer{
    border-top: none;
    padding-top: 0;
}

.modal-header{
    border-bottom: none;
}

.modal-body{
    padding-top: 0;
    padding-bottom: 0;
}

.modal-content{
    background-color: #fff;
}

.text-taller{
    text-align: justify;
}

.img-talleres{
    border-radius: 10px;
    box-shadow: 0 0rem 1rem rgba(0, 0, 0, 0.4);
    width: 100%;
}

.div-talleres{
    transition: transform 0.5s;
}

.div-talleres:hover{
    transform: scale(0.9);
}

/* solicitud de pago */
.grid-container-pago{
    position: relative;
    background-color: #fd9d5a;
}

.container-pago, .container-resumen-compra{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.body-pago{
    background: white;
    padding-top: 0;
}

.container-resumen{
    background: white;
}

.border{
    box-shadow: 0 0rem 1rem rgba(0, 0, 0, 0.1);
}

.card-fondo-pago{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80vh;
    height: 70vh;
    transform: translate(-50%, -50%);
    background-color: #f1e1c7;
    border-radius: 15px;
    z-index: 1;
}

.fa-check-icon{
    display: inline-block;
    color: white;
    width: 64px;
    height: 70px;
    transform: translate(2px,0px);
    background-image: url(../css/SVG/check-solid.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.text-concepto-pago{
    text-align: start;
}

.btn:hover {
    color: black
}

.workshops-container {
    width: 100%;
    height: 395px;
    display: flex;
    justify-content: start;
    overflow-x: auto;
    overflow-y: initial;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    padding: 10px;
}

.workshops-container .card{
    max-width: 250px;
    min-width: 260px;
    scroll-snap-align: center;
    margin-left: 25px;
}

.workshop-scroll-container {
    position: relative;
}

.workshop-scroll-container .arrow{
    position: absolute;
    bottom: calc(50% - 20px);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    color: white;
    font-weight: bold;
    font-size: 2em;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.workshop-scroll-container span.left{
    left: 10px;
}

.workshop-scroll-container span.right{
    right:  10px;
}

.fa-angle-left{
    display: inline-block;
    color: white;
    width: 60px;
    height: 55px;
    transform: translate(2px,0px);
    background-image: url(../css/SVG/angle-left-solid.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.fa-angle-right{
    display: inline-block;
    color: white;
    width: 60px;
    height: 55px;
    transform: translate(2px,0px);
    background-image: url(../css/SVG/angle-right-solid.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.workshop-scroll-container:hover #arrow-left{
    display: block !important;
}

/*resumen de compra*/

.card-compra{
    width: 100%;
    border-radius: 0;
    border-radius: 10px;
}

.card-header{
    background-color: #fd9d5a;
}

.container-detalle{
    margin: 15px;
    box-shadow: 0 0rem 1rem rgba(0, 0, 0, 0.2);
}

.fa-resume-card{
    display: inline-block;
    width: 60px;
    height: 53px;
    transform: translate(2px,0px);
    background-image: url(../css/SVG/fa-resume-card.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 10px -4px 0;
    align-self: flex-end;

}

.fa-card{
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.btn-info{
    background: #fd9d5a;
    border-color: #fd9d5a;
    border-radius: 0 !important;
}

.texto-pasos, .texto-resumen-producto{
    display: inline-block;
    font-size: 18px;
}

.img-congreso{
    max-width: 170px;
    height: auto;
}

.text-costos{
    margin: 15px;
}

.btn-detalle-orden{
    width: 100%;
    height: 50px;
    box-shadow: 0 0rem 1rem rgba(0, 0, 0, 0.3);
}

.btn-success{
    background: linear-gradient(45deg, #fd9d5a, #dd7327 150%);
    color: white;
    border: none;
}

.btn-secondary{
    background: white;
    color: #8f8c8c;
    border: none;
}

.input-combo{
    /* position: relative; */
    display: inline-block;
    /* bottom: 35px;
    left: 10px; */
    width: 100%;
    min-width: 250px;
}



.ver-mas {
    position: relative;
    bottom: 10px;
    width: 80px;
    height: 30px;
    padding-left: 5px;
    padding-right: 5px;
    box-shadow: 0 0rem 1rem rgba(0, 0, 0, 0.3);
}

.hide{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.show-text{
    transition: max-height 0.5s ease;
    max-height: 200px !important;
}


.boton-talleres{
    background:#fd9d59 !important;
    border-color: #ed7a3c !important;
}

.icono-facebook{
    width: 45px;
    position: relative;
    bottom: 3px;
    right: 170px;
}

.icono-google{
    width: 35px;
    position: relative;
    bottom: 0px;
    right: 175px;
}

.usuario-nuevo{
    color: #ed7a3c;
    font-weight: bold;
}

.hide-section {
    max-height: 0 !important;
    overflow: hidden;
    transition: max-height 0.8s ease;
}

.hide-ordenCompra{
    max-height: 0 !important;
    overflow: hidden;
    transition: max-height 0.8s ease;
} 

.show-ordenCompra{
    transition: max-height 0.8s ease;
    max-height: 100% !important;
}

.show-talleres{
    transition: max-height 0.8s ease;
    max-height: 100% !important;
}

/* sin carnet ni talleres seleccionado */

.body-color{
    background-color: white;
}

.card-sin-productos{
    width: 90%;
    height: 95%;
    box-shadow: 0 0rem 3rem rgba(0, 0, 0, 0.4);
}

.img-carrito{
    width: 450px;
    height: auto;
}

.texto-login{
    position: relative;
    margin: 0;
    top: 5px;
    right: 15px;
}

.header-taller{
    padding-bottom: 0;
}

.content-talleres{
    background-color: white;
}

.regresar{
    color: white;
}

.span-taller{
    margin: 0;
}

.text-agregar{
    text-align: center;
    font-size: 22px;
}

.text-modal-talleres{
    font-weight: 600;
    color: #505050;
}

.text-carnet{
    text-align: center;
    font-size: 14px;
}

.carnet-content{
    color: white;
    background: #585858;
    font-weight: bold;
}

.body-content{
    background: white;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    padding-bottom: 0;
    height: 100%;
}

.target{
    background: white;
}

.imagen-carnet{
    width: 200px;
}

.nombre-carnet{
    font-size: 16px;
}

.btn-detalle-orden-compra{
    width: 100%;
    height: 50px;
    box-shadow: 0 0rem 0.2rem rgba(0, 0, 0, 0.3);
}

.card-carnet{
    box-shadow: 0 0rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.text-ciem{
    position: relative;
    bottom: 20px;
    font-size: 70px;
    font-weight: bold;
    color: #fd9d5a;
    margin: 0;
}

/* Formas de pago  */

.body-pagos-talleres{
    background: white;
}

.fa-credito{
    display: inline-block;
    width: 60px;
    height: 65px;
    transform: translate(2px,0px);
    background-image: url(../css/SVG/credit-card-regular.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.fa-efectivo{
    display: inline-block;
    width: 60px;
    height: 65px;
    transform: translate(2px,0px);
    background-image: url(../css/SVG/hand-holding-dollar-solid.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.fa-banco{
    display: inline-block;
    width: 60px;
    height: 65px;
    transform: translate(2px,0px);
    background-image: url(../css/SVG/building-columns-solid.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.img-chip{
    width: 60px;
    height: 60px;
}

.num-fecha{
    font-family: ui-sans-serif;
    font-size: 14px;
    font-weight: bold;
}

.diagonal{
    font-size: 14px;
}

.tarjeta-nombre{
    margin-left: 0;
    font-size: 20px;
    color: white;
}

.num-tarjeta{
    font-size: 14px;
    color: white;
}
.logo-banco-container {
    position: relative;
}

.logo-banco {
    position: absolute;
    width: 80px;
    height: 30px;
    top: 3px;
    right: 7px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.container-tarjeta{
    position: relative;
    width: 260px;
    height: 150px;
    margin: auto;
    margin-top: 3rem;
    margin-bottom: 0;
    transition: transform 1500ms;
    transform-style: preserve-3d;
    perspective: 500px;
}

.container-tarjeta:hover > .card-tarjeta{
    cursor: pointer;
    transform: rotateY(180deg);
}

.card-tarjeta{
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 1500ms;
    transform-style: preserve-3d;
}

.front,
.back{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 0rem 1rem rgba(0, 0, 0, 0.3);
    position: absolute;
    backface-visibility: hidden;
}

.front{
    background: linear-gradient(300deg, #ffb629 0, #ffa537 10%, #ff9243 20%, #ff7e4b 30%, #ff6951 40%, #f25353 50%, #d93f53 60%, #c22f54 70%, #ad2355 80%, #9b1b56 90%, #8c1859 100%);
}

.front::before {
    content: '';
    width: 200px;
    height: 100px;
    top: 0;
    left: 4px;
    position: absolute;
    background-image: url('/registro/assets/img/circulo-congreso.png');
    background-size: 200px;
    background-repeat: no-repeat;
}

.front::after {
    content: '';
    width: 100px;
    height: 50px;
    top: 15px;
    left: 15px;
    position: absolute;
    background-image: url('/registro/assets/img/15Ciem.png');
    background-size: 100px;
    background-repeat: no-repeat;
}


.back{
    background-image: linear-gradient(35deg, #ffba25 0, #ffac32 8.33%, #ff9c3d 16.67%, #ff8b46 25%, #ff794d 33.33%, #ff6651 41.67%, #f25353 50%, #dc4153 58.33%, #c73354 66.67%, #b42754 75%, #a41f55 83.33%, #951a57 91.67%, #88185a 100%);
    transform: rotateY(180deg);
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.card-pagos{
    margin: auto;
}

.paso4-orden{
    position: relative;
    bottom: 45px;
}

.hide-paso-3-usuarios{
    max-height: 0 !important;
    overflow: hidden;
    transition: max-height 0.8s ease;
}

.hide-paso-4-forma-pago{
    max-height: 0 !important;
    overflow: hidden;
    transition: max-height 0.8s ease;
} 

.show-paso-4-forma-pagos{
    transition: max-height 0.8s ease;
    max-height: 100% !important;
}

.show-paso-3-usuarios{
    transition: max-height 0.8s ease;
    max-height: 100% !important;
}


/*Mario*/

#carrito-aside {
    display: grid;
    grid-template-rows: 50px 1fr 80px;
    font-size: 10px;
    font-family: 'Montserrat-Regular', sans-serif;
}

#carrito-aside.card {
    border-radius: 0;
}

#carrito-aside .badge {
    font-size: 1.3em;
}

.container-ciem-resumen .card {
    border-radius: 0;
}

.carrito-aside_header {
    background-color: var(--local-primary-color);
    width: 100%;
    height: 50px;
}

.carrito-aside_header-title {
    font-family: Montserrat-SemiBold, sans-serif;
}

.carrito-aside_footer {
    display: flex;
    align-items: center;
    justify-content: stretch;
    padding: 0 20px;
    border-top: 1px solid rgb(166 166 166 / 20%);
}

.carrito-aside_footer .total {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-weight: 700;
    font-size: 1.5em;
}

.carrito-aside_body .accordion-header .accordion-button {
    font-size: 0.9rem;
}


.carrito-aside_body {
    overflow-y: auto;
    font-size: 1rem;
}

#accordionFlushExample {
    border-bottom: 1px solid rgb(226, 226, 226);
}

#carrito-aside .accordion-body {
    font-size: 14px;
}

.title-carnet {
    cursor: pointer;
}

.title-carnet>span {
    color:#dd7327;
}
.title-carnet>span>svg {
    margin-bottom: 5px;
}

#paso1 a,
#paso1 a:visited {
    color: #dd7327;
}

.table-primary {
    --bs-table-bg: #fd9d5a;
    --bs-table-border-color: #f0a977;
}
.font-mr {
    font-family: 'Montserrat-Regular', sans-serif;
    font-weight: 400;
}

.font-msb {
    font-family: 'Montserrat-SemiBold', sans-serif;
}

.edit-element {
    color: #7f7f7f;
    cursor: pointer;
}


.selectCarnet-label span {
    color: #7f7f7f;
    vertical-align: baseline;
    margin-right: 5px;
    cursor: pointer;
}

.selectCarnet-label>span>svg {
    margin-bottom: 4px;
}

.descuentosModal-tm {
    color: #b3b3b3;
    font-size: 12px;
}

#addProductToRC {
    font-weight: 700;
}

.condicion {
    font-size: 12px;
    color: #7f7f7f;
}

.link-ciem {
    color: #ed7a3c;
}

.switch-logup {

}

.user-section {
    color: #8e8e8e;
    cursor: pointer;
}

.swal2-actions .swal2-cancel {
    margin-right: 5px;
}

.loader-container {
    position: absolute;
    background: rgb(255 255 255 / 50%);
    z-index: 900;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-ov {
    border: 1px solid rgb(194, 194, 194);
    box-shadow: 6px 9px 21px -9px #666666
}

.card-header-ov {
    padding: 10px 10px;
    background-color: #1d1d1d;
    color: white;
}

.total-table {
    /* text-align: end; */
}
.total-table .tr-1>td:nth-child(2) {
    width: 150px;
}

.total-table .tr-2 {
    font-size: 25px;
}

.card-body-ov_flex {
    display: grid;
    grid-template-rows: 1fr 80px;
}

.total-table-container {
    max-height: 80px;
}

.info-pago-borderdivider {
    border-top: 1px solid #e3e3e3;
    padding-top: 20px;
}

.btn-cart-shop {
    border-radius: 50%;
    border-style: none;
    background-color: #1d1d1d;
    color: white;
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 15px;
    right: 20px;
    z-index: 100;
}

.offcanvas-body {
    display: grid;
}

.svg-metodo-pago {
    color: #f89a58;
}

.cinta-login {
    position: absolute;
    width: 150px;
    top: 20px;
    left: -21px;
    z-index: 100;

}

@media (min-width: 768px) {
    .info-pago-borderdivider {
        border-top: none;
        border-left: 1px solid #e3e3e3;
        padding-top: 0;
    }

    .grid-resumen-compra {
        display: grid;
        width: 100%;
        grid-template-columns: minmax(320px, calc(100vw - 400px)) 400px;
        height: 100vh;
    }
}