﻿/*-----Fernando Facio Reyes-----*/

* {
    margin: 0;
    padding: 0;
    border: none;
    font-family: "Proxima Nova", Helvetica, Arial, sans-serif;
    font-style: normal;
    /*border:.1vw solid red;*/
}

.container_Btn_Carrito {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .container_Btn_Carrito .dv_numCoti {
        position: absolute;
        top: -.6rem;
        right: -.6rem;
        background: #fff500;
        width: 1.25rem;
        height: 1.25rem;
        border-radius: 100%;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .container_Btn_Carrito .Btn_Carrito {
        background-image: url(../Resources/icono-carrito-amarillo.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 65%;
        background-color: white;
        padding: 5%;
        width: 2.625rem;
        height: 2.625rem;
        border-radius: 100vw;
    }

    .container_Btn_Carrito .dv_Carrito {
        position: absolute;
        margin: 0.5rem 0;
        border-radius: 1rem;
        right: 0;
        width: max-content;
        height: min-content;
        z-index: 100;
        padding: 1rem;
        background: white;
        display: none;
        opacity: 0;
        overflow: hidden;
        animation: ShowMenu 0.3s forwards;
        -webkit-box-shadow: 0 0 1.25rem 0 rgba(0,0,0,0.75);
        -moz-box-shadow: 0 0 1.25rem 0 rgba(0,0,0,0.75);
        box-shadow: 0 0 1.25rem 0 rgba(0,0,0,0.75);
    }
/*#region Btn_Profile_&_Options*/

/*#region Btn_Perfil */
.container_Btn_Profile {
    position: relative;
    margin: 0 1rem;
}

    .container_Btn_Profile .btn {
        padding: .75rem 2%;
        width: 5.5rem;
        border-radius: 100vw;
        border: none;
        transition: all 0.5s ease-in-out;
        display: flex;
        align-items: center;
        background: #fff500;
    }

        .container_Btn_Profile .btn:hover {
            background: black;
        }

            .container_Btn_Profile .btn:hover .icon-svg rect {
                fill: white;
            }

        .container_Btn_Profile .btn .icon {
            position: absolute;
            width: 2.75rem;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.5s;
            color: black;
        }

        .container_Btn_Profile .btn .text {
            font-size: 1rem;
            color: black;
            width: 100%;
            padding-right: 1rem;
            text-align: end;
        }

        .container_Btn_Profile .btn:hover .icon {
            width: 5.5rem;
            color: white;
        }

        .container_Btn_Profile .btn:hover .text {
            transition: all 0.5s;
            opacity: 0;
        }

    .container_Btn_Profile .btn2 {
        padding: .75rem 0;
        width: 5.5rem;
        border-radius: 100vw;
        border: none;
        transition: all 0.5s ease-in-out;
        display: flex;
        align-items: center;
        background: black;
    }

        .container_Btn_Profile .btn2 .icon-svg rect {
            fill: white;
        }

        .container_Btn_Profile .btn2:hover {
            background: #fff500;
        }

            .container_Btn_Profile .btn2:hover .icon-svg rect {
                fill: black;
            }

        .container_Btn_Profile .btn2 .icon {
            position: absolute;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.5s;
            color: black;
            width: 5.5rem;
            color: white;
        }

        .container_Btn_Profile .btn2 .text {
            font-size: 1rem;
            color: black;
            width: 100%;
            padding-right: 1rem;
            text-align: end;
            opacity: 0;
        }

        .container_Btn_Profile .btn2:hover .icon {
            width: 2.75rem;
        }

        .container_Btn_Profile .btn2:hover .text {
            font-size: 1rem;
            color: black;
            width: 100%;
            padding-right: 1rem;
            text-align: end;
            opacity: 1;
        }
/*#endregion */

/*#region Panel_Options*/
.dv_Options_profile {
    position: absolute;
    margin: 0.5rem 0;
    border-radius: 1rem;
    right: 0;
    width: 15rem;
    height: 15rem;
    z-index: 100;
    padding: 1rem;
    background: white;
    display: none;
    opacity: 0;
    overflow: hidden;
    animation: ShowMenu 0.3s forwards;
    -webkit-box-shadow: 0 0 1.25rem 0 rgba(0,0,0,0.75);
    -moz-box-shadow: 0 0 1.25rem 0 rgba(0,0,0,0.75);
    box-shadow: 0 0 1.25rem 0 rgba(0,0,0,0.75);
}

.Btn_OptsMenuDesple {
    background: white;
    display: block;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    border: none;
    border-bottom: 0.2vw solid darkgrey;
    font-size: 1vw;
    padding: 3%;
    transition: .5s;
}

    .Btn_OptsMenuDesple:hover {
        background-color: lightgray;
        border-bottom: 0.2vw solid transparent
    }

@keyframes ShowMenu {
    from {
        height: 0;
    }

    to {
        height: 15rem;
        opacity: 1;
    }
}

@keyframes HideMenu {

    from {
        height: 15rem;
        opacity: 1;
    }

    to {
        height: 0;
        opacity: 0;
    }
}

@keyframes ShowCarrito {
    from {
        opacity: 0;
        transform: translateY(-50%)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes HideCarrito {

    from {
        opacity: 1;
        transform: translateY(0)
    }

    to {
        opacity: 0;
        transform: translateY(-50%)
    }
}
/*#endregion */
/*#endregion */

.Principal_Container {
    position: relative;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    overflow: auto;
}

.Header_Container {
    width: 100%;
}

.Body_Container {
    position: relative;
    width: 100%;
}

.Footer_Container {
    width: 100%;
}


/*#region Btn_ChatBot */
.buttonChatBot {
    border: none;
    background-color: #fff500;
    border-radius: 3vw;
    padding: .5%;
    width: 5vw;
    font-weight: 600;
    font-size: 1vw;
    color: #6F6910;
    transition: .5s;
    position: fixed;
    bottom: 2%;
    right: 2%;
    z-index: 10;
    display: none;
}

    .buttonChatBot:hover {
        background-color: #000000;
        color: #ffffff;
    }
/*#endregion */
.chat-container {
    position: fixed;
    bottom: 3%;
    right: 3%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    height: 400px; /* Increased height */
    width: 300px; /* Adjust width if needed */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
}

    .chat-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

.close-btn-chat {
    position: absolute;
    top: 5px;
    background-color: white;
    right: 5px;
    color: black;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    text-align: center;
    line-height: 20px;
    font-size: 16px;
}

#Container_BtnSolicitaInformacion2 {
    position: fixed;
    bottom: -1%;
    right: 1%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    height: 7rem;
    width: 7rem;
}

    #Container_BtnSolicitaInformacion2 > .BtnSolicitaInformacion2 {
        box-sizing: border-box;
        white-space: pre-line;
        font-size: .75rem;
        padding: 3%;
        background-color: #fff500;
        border-radius: 100vw;
        cursor: pointer;
        height: 65%;
        width: 65%;
        transition: .5s;
        font-weight: 600;
    }

        #Container_BtnSolicitaInformacion2 > .BtnSolicitaInformacion2:hover {
            color: #ffffff;
            background-color: #000000;
        }

/*#region Btn_SolicitaInformacion */
#Container_BtnSolicitaInformacion {
    position: fixed;
    bottom: 10%;
    right: 3%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../Resources/Icons/Solicita más Informarción aquí.png');
    background-size: contain;
    height: 10rem;
    width: 10rem;
}

    #Container_BtnSolicitaInformacion > .BtnSolicitaInformacion {
        box-sizing: border-box;
        white-space: pre-line;
        font-size: .75rem;
        padding: 3%;
        background-color: #fff500;
        border-radius: 100vw;
        cursor: pointer;
        height: 65%;
        width: 65%;
        transition: .5s;
        font-weight: 600;
    }

        #Container_BtnSolicitaInformacion > .BtnSolicitaInformacion:hover {
            color: #ffffff;
            background-color: #000000;
        }
/*#endregion */

/*#region Btn_Ayuda */
/*#Container_Btn_Ayuda {
    position: fixed;
    bottom: 11%;
    right: 3%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    height: 10rem;
    width: 10rem;
}

    #Container_Btn_Ayuda .Btn_Ayuda {
        position: relative;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: none;
        background-color: #fff500;
        color: black;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.151);
        position: relative;
    }

        #Container_Btn_Ayuda .Btn_Ayuda svg {
            height: 1.5em;
            fill: black;
        }

        #Container_Btn_Ayuda .Btn_Ayuda:hover svg {
            animation: jello-vertical 0.7s both;
        }

@keyframes jello-vertical {
    0% {
        transform: scale3d(1, 1, 1);
    }

    30% {
        transform: scale3d(0.75, 1.25, 1);
    }

    40% {
        transform: scale3d(1.25, 0.75, 1);
    }

    50% {
        transform: scale3d(0.85, 1.15, 1);
    }

    65% {
        transform: scale3d(1.05, 0.95, 1);
    }

    75% {
        transform: scale3d(0.95, 1.05, 1);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}

#Container_Btn_Ayuda .Btn_Ayuda .tooltip {
    position: absolute;
    top: -10rem;
    opacity: 0;
    background-color: #fff500;
    color: black;
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: 0.2s;
    pointer-events: none;
    letter-spacing: 0.5px;
}

    #Container_Btn_Ayuda .Btn_Ayuda .tooltip::before {
        position: absolute;
        content: "";
        width: 10px;
        height: 10px;
        background-color: #fff500;
        background-size: 1000%;
        background-position: center;
        transform: rotate(45deg);
        bottom: -10%;
        transition-duration: 0.3s;
    }

#Container_Btn_Ayuda .Btn_Ayuda:hover .tooltip {
    top: -12.75rem;
    opacity: 1;
    transition-duration: 0.3s;
}*/

/*#endregion */

/*Moviles*/
@media (max-width: 767px) {
    .Body_Container {
        padding-top: 5rem;
    }

    ::-webkit-scrollbar {
        display: none;
    }
}
/*Tabletas*/
@media (min-width: 768px) and (max-width:1023px) {
    .Body_Container {
        padding-top: 5rem;
    }
}
/*Portátiles*/
@media (min-width: 1024px) and (max-width:1280px) {
}

