﻿:root {
    /*--navbar: rgba(6,140,149,.60);*/
    --navbar: #c34b75;
    /*--primary: #6cbbbb;*/
    --secondary: #c34b75;
    --txtGeneral: #000000;
    --txtSub: #707070;
    --white: #FFFFFF;
    --red: #FF4B4B;
    --buttonSub: #274C69;
    --textBold: #70707073;
    --purple: #AF1BF4;
    --card1: #69BABF;
    --card2: #3FC695;
    --card3: #3F8DC6;
    --card4: #1B72F4;
    --primary: #c34b75;
    --fondo: #ebebeb;
    --line: #bfbbbb;
    --blue: #6cbbbb;
    --subFondo: #949cac9e;
    --hyperlink: #1D9AD6;
    --difuminado: #c34b75ab;
    --textHtml: #052d51;
    --line: #707070;
    --cardBold: #707070;
}

* {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: var(--txtGeneral);
}

.row {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.arrowUp {
    font-size: 35px !important;
    color: var(--primary);
    box-shadow: 12px 5px 40px -5px rgba(0,0,0,0.80);
    background-color: var(--white);
    border-radius: 50px;
    padding: 10px;
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 500;
    cursor: pointer;
    display: none;
}

.notify-product {
    font-size: 18px !important;
    color: var(--primary);
    box-shadow: 12px 5px 40px -5px rgba(0,0,0,0.80);
    padding: 15px;
    position: fixed;
    bottom: 20px;
    left: 10px;
    z-index: 500;
    cursor: pointer;
    border-radius: 4px;
    background-color: var(--primary);
    color: var(--white);
    display: none;
}

.navLink {
    color: var(--hyperlink);
    cursor: pointer;
}
/*-----------------NAVBAR-----------------*/
.navbar {
    height: 80px !important;
    background-color: var(--white);
    /*opacity: 0.60;*/
    border-bottom: 1px solid var(--subFondo);
}

#offcanvasNavbar {
    max-width: 330px;
    background-color: var(--fondo);
}

.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--txtGeneral);
    cursor: pointer;
}

    .navbar-nav .nav-link:hover {
        color: var(--primary);
    }

.logoNav {
    height: 45px;
    /*height: 75px;*/
    margin-top: -12px;
}

.icon_menu {
    color: var(--primary);
}

.iconMenu {
    font-size: 25px;
    color: var(--txtSub);
    vertical-align: bottom;
    margin: auto 15px;
}

ul li.nav-item {
    list-style: none !important;
}

.line_item {
    width: 90%;
    margin: auto;
    border-bottom: 2px solid var(--line);
    list-style: none !important;
}

.menu_cart {
    position: absolute;
    right: 75px;
    cursor: pointer;
}
/*-----------------CONTENT-----------------*/
.containerIndex {
    margin-top: 130px;
}

.section_content {
    margin: 50px auto;
}

/*-----------------FOOTER-----------------*/
.page-footer {
    margin: 0px auto 20px;
    /*border-top: solid 3px #F2F5F4;*/
    border-top: 1px solid var(--subFondo);
}

.title-links {
    font-weight: bold;
    color: var(--primary);
    text-align: left;
}

ul.list-unstyled li a {
    color: var(--gray);
    text-align: left;
    cursor: pointer;
    list-style: none !important;
}


    ul.list-unstyled li a:hover {
        color: var(--secondary);
        text-decoration: underline;
    }

    ul.list-unstyled li a:active {
        color: var(--secondary);
        text-decoration: underline;
    }

    ul.list-unstyled li a:focus {
        color: var(--secondary);
        text-decoration: underline;
    }

.list-unstyled li {
    list-style: none;
}

.logo_footer {
    height: 45px;
}

.bi-facebook {
    color: #1877f2;
}

.bi-instagram {
    color: #e1306c;
}

.bi-linkedin {
    color: #2867b2;
}

.bi-tiktok {
    color: #ff004f;
}

.bi-twitter {
    color: #1da1f2;
}

.bi-youtube {
    color: #ff0000;
}
/*-----------------SPINNER-----------------*/
#coverSpinner {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
    z-index: 100;
    display: none;
}

.spinnerScreen {
    width: 50px;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    z-index: 300;
    display: none;
}

.loader {
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid var(--primary);
    width: 70px;
    height: 70px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*-----------------IMG-----------------*/
.containerSub {
    /*max-width: 1250px;*/
    margin-top: -15px;
}

.img_login {
    width: 95%;
}

.img_form {
    width: 100%;
}

/*-----------------ALERT LG-----------------*/
.containerAlert {
    display: none;
}

#coverAlert {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
    z-index: 100;
    display: none;
}

.iconClose {
    font-size: 30px !important;
    font-weight: 400 !important;
    cursor: pointer;
    position: absolute;
}

    .iconClose:hover {
        color: var(--primary);
    }

.closeLG {
    top: 20px;
    right: 25px;
}

.deleteProduct {
    top: -10px;
    right: -10px;
}
/*ALERT LG*/
.alertLG {
    display: none;
    width: 90%;
    height: 90%;
    padding: 40px;
    background-color: var(--white);
    border-radius: 6px;
    text-align: center;
    z-index: 5001;
    position: fixed;
    top: 5%;
    bottom: 5%;
    left: 5%;
    right: 5%;
    overflow: hidden;
}

    .alertLG::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    .alertLG::-webkit-scrollbar-thumb {
        background: #cfd9db;
        border-radius: 5px;
    }
/*.alertLG::-webkit-scrollbar-thumb:hover {
            background: var(--fondo);
        }*/

/*----------------- ALERT MESSAGE-----------------*/
/*ALERT GENERAL*/
.alertMsn {
    display: none;
    width: 550px;
    height: 280px;
    padding: 50px 35px;
    background-color: var(--white);
    border-radius: 6px;
    text-align: center;
    z-index: 5001;
    position: fixed;
    top: calc(60% - 250px);
    left: calc(48% - 250px);
}

.alertGen {
    display: none;
    width: 550px;
    height: 280px;
    padding: 50px 35px;
    background-color: var(--white);
    border-radius: 6px;
    text-align: center;
    z-index: 5001;
    position: fixed;
    top: calc(60% - 250px);
    left: calc(48% - 250px);
}

.textalertMsn {
    font-size: 18px;
    color: var(--gray);
}

.buttonAlert {
    width: 100px;
    padding: 3px;
    background-color: var(--primary);
    border: none;
    border-radius: 4px;
    font-size: 18px;
    color: var(--white);
    position: absolute;
}

.buttonRobot {
    left: 230px;
    top: 210px;
}
/*-----------------STEPS-----------------*/
.headSection {
    margin: 50px auto;
    display: flex;
    justify-content: center;
    flex-direction: row;
    text-align: center;
}

.itemSection {
    width: 50px;
    height: 50px;
    /*margin: 10px 30px;*/
    margin: 10px 0px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background-color: var(--primary);
    font-size: 30px;
    color: var(--white);
    font-weight: bold;
}

.itemProgress {
    height: 5px;
    width: 80px;
    background-color: var(--primary);
    margin-top: 32px;
    margin-bottom: 32px;
}
/*----------------------- ALERT MENU------------------------*/
.h3Title {
    font-size: 25px;
    margin: -10px auto 20px;
    text-align: left;
}

.h3TitleSub {
    font-size: 25px;
    margin: 10px auto auto;
    text-align: left;
}

.textDocuments {
    text-align: left;
    font-size: 18px;
    font-weight: 400;
}

/**/
.divImgDoc {
    width: 80%;
    height: 130px;
    margin: 30px auto;
    position: relative;
}

.buttonDocuments {
    width: 75%;
    height: 130px;
    margin: auto;
    background-color: transparent;
    border-style: dashed;
}

.iconUploadDoc {
    font-size: 35px;
}

.labelDoc {
    margin: auto;
    display: block;
    text-align: left;
}

.docInformation {
    position: absolute;
    right: -55px;
    bottom: 50px;
    top: 50px;
}

.docInformationSub {
    width: 60%;
    margin: -10px auto 10px;
}

.docInformationUpload {
    width: 80%;
    margin: -10px auto 20px;
}

.containerAward {
    margin: 10px auto;
}

.h1Award {
    font-size: 20px;
    font-weight: bold;
}

.h2Award {
    font-size: 20px;
}
/*------------------MENU USER--------------*/
.logoCompany {
    height: 55px;
}

.logoUser {
    height: 30px;
    margin: auto;
}

.containerPhoto {
    text-align: center;
}

.borderPhoto {
    width: 120px;
    height: 120px;
    margin: auto;
    display: flex;
    align-items: center;
    border-radius: 50%;
    /*background: linear-gradient(0.25turn, var(--primary), var(--primary),#c34b75ab);*/
}

.userPhoto {
    width: 110px;
    height: 110px;
    background-size: cover;
    border-radius: 50%;
    /*border: 4px solid var(--primary);*/
    margin: 0 auto;
}

.nameUser {
    font-size: 18px;
    font-weight: bold;
    margin: 6px auto;
}

.containerAmount {
    width: 50%;
    margin: auto;
    padding: 5px;
    background-color: var(--white);
}

.iconShopping {
    color: var(--primary);
    vertical-align: bottom;
    margin: auto 6px;
}

.priceAmount {
    margin: auto;
}

.labAmount {
    font-weight: bold;
}

/*#frameVideo {
    width: -webkit-fill-available;
    height: 300px;
}*/

.p_hidden {
    display: none !important;
}

.html_email {
    font-size: 18px;
    color: var(--textHtml);
}
/*------------------MEDIA QUERIES--------------*/
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    /*body {
        background-color: pink;
    }*/
    .logoNav {
        height: 36px;
    }

    #logoCompany {
        display: none;
    }

    .img_login {
        display: none;
    }

    .section_content {
        width: 95%;
        margin: auto;
    }

    .alertLG {
        width: 90%;
        height: fit-content;
        top: 18%;
        bottom: 5%;
        left: 5%;
        right: 5%;
    }

    .height_video {
        height: fit-content;
    }

    .height_info {
        height: fit-content;
    }
    /*ALERT GENERAL*/
    .alertMsn {
        width: 330px;
        height: 350px;
        top: calc(70% - 250px);
        left: calc(65% - 225px);
    }
    /*ALERT GENERAL*/
    .alertGen {
        width: 380px;
        height: 350px;
        top: calc(45% - 250px);
        left: calc(65% - 250px);
    }

    .buttonAlert {
        left: 140px;
        top: 285px;
    }

    .buttonRobot {
        left: 120px;
        top: 285px;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    /*body {
        background-color: gray;
    }*/
    .logoNav {
        height: 45px;
    }

    #logoCompany {
        display: none;
    }

    .img_login {
        display: none;
    }

    .containerSub {
        max-width: 540px;
    }

    .alertLG {
        width: 90%;
        height: fit-content;
        top: 18%;
        bottom: 5%;
        left: 5%;
        right: 5%;
    }

    .height_video {
        height: fit-content;
    }

    .height_info {
        height: fit-content;
    }
    /*ALERT GENERAL*/
    .alertMsn {
        width: 550px;
        height: 350px;
        top: calc(70% - 250px);
        left: calc(45% - 250px);
    }

    /*ALERT GENERAL*/
    .alertGen {
        width: 550px;
        height: 350px;
        top: calc(40% - 250px);
        left: calc(45% - 250px);
    }

    .buttonAlert {
        left: 230px;
        top: 285px;
    }

    .buttonRobot {
        left: 230px;
        top: 285px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    /*body {
        background-color: orange;
    }*/
    #logoCompany {
        display: block;
    }

    .containerSub {
        max-width: 540px;
    }

    .alertLG {
        width: 80%;
        height: fit-content;
        top: 18%;
        bottom: 5%;
        left: 10%;
        right: 10%;
    }

    .height_video {
        height: fit-content;
    }

    .height_info {
        height: fit-content;
    }
    /*#frameVideo {
        width: 500px;
        height: 300px;
    }*/

    .alertGen {
        width: 550px;
        height: 280px;
        top: calc(45% - 250px);
        left: calc(48% - 250px);
    }

    .alertMsn {
        width: 550px;
        height: 280px;
        top: calc(55% - 250px);
        left: calc(48% - 250px);
    }

    .buttonAlert {
        left: 230px;
        top: 210px;
    }

    .buttonRobot {
        left: 230px;
        top: 210px;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    /*body {
        background-color: plum;
    }*/
    .containerSub {
        max-width: max-content;
    }

    .section_content {
        width: 100%;
        margin-top: -20px;
    }

    .img_login {
        display: block;
    }

    .alertGen {
        width: 550px;
        height: 280px;
        top: calc(45% - 250px);
        left: calc(48% - 250px);
    }

    .alertLG {
        width: 80%;
        top: 15%;
        bottom: 5%;
        left: 10%;
        right: 10%;
    }

    .height_video {
        height: fit-content;
    }

    .height_info {
        height: fit-content;
    }
    /*#frameVideo {
        width: 800px;
        height: 350px;
    }*/

    .alertMsn {
        width: 550px;
        height: 280px;
        top: calc(55% - 250px);
        left: calc(48% - 250px);
    }

    .buttonAlert {
        left: 230px;
        top: 210px;
    }

    .buttonRobot {
        left: 230px;
        top: 210px;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    /*body {
        background-color: mediumaquamarine;
    }*/
    /*.containerSub {
        max-width: 1250px;
        margin-top: -15px;
    }*/
    .containerSub {
        max-width: max-content;
    }

    .alertLG {
        width: 80%;
        top: 15%;
        bottom: 5%;
        left: 10%;
        right: 10%;
    }

    .height_video {
        height: 80%;
    }

    .height_info {
        height: fit-content;
    }

    .section_content {
        width: 100%;
        margin-top: -20px;
    }

    .alertGen {
        width: 550px;
        height: 280px;
        top: calc(60% - 250px);
        left: calc(48% - 250px);
    }

    .alertMsn {
        width: 550px;
        height: 280px;
        top: calc(55% - 250px);
        left: calc(48% - 250px);
    }

    .buttonAlert {
        left: 225px;
        top: 195px;
    }

    .buttonRobot {
        left: 230px;
        top: 210px;
    }
}


.ratio-21x9 {
    --bs-aspect-ratio: 40.8571428571%;
}

.scrollDiv {
    height: 80%;
    overflow: scroll;
}

#lblCartCount {
    font-size: 12px;
    background: #ff0000;
    color: #fff;
    padding: 0 5px;
    vertical-align: top;
    margin-left: -10px;
}

.iShoppCart {
    line-height: 2 !important;
    margin: 0px !important;
}

.badgeShop {
    padding-left: 9px;
    padding-right: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
}

.labelShop-warning[href],
.badgeShop-warning[href] {
    background-color: #c67605;
}

/*/*/

