@-webkit-keyframes swing-in-top-fwd {
    0% {
        -webkit-transform: rotateX(-100deg);
        transform: rotateX(-100deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 0;
    }

    100% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 1;
    }
}

@keyframes swing-in-top-fwd {
    0% {
        -webkit-transform: rotateX(-100deg);
        transform: rotateX(-100deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 0;
    }

    100% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 1;
    }
}

:root {
    /*Colores */
    --blue_light: #f0f5fa;
    --blue_gs1: #002c6c;
    --blue_link: #00799e;
    --orange_gs1: #cd3c0d;
    --black_ligth: #414345;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    font-family: 'Gotham SSm', sans-serif;
}

body {
    color: var(--black_ligth);
    min-width: 320px;
}

a {
    color: var(--blue_link);
}

.primary-buttonGS1 {
    color: white;
    padding: 9px 16px;
    background-color: var(--orange_gs1);
    border-radius: 4px;
    border: none;
    font-size: 1.4rem;
    font-weight: 500;
}

.primary-buttonGS1:hover {
    background-color: #a82c05;
}

.primary-buttonGS1-btn-outline {
    color: var(--orange_gs1);
    padding: 9px 16px;
    background-color: white;
    border-radius: 4px;
    border: 1px solid var(--orange_gs1);
    font-size: 1.4rem;
    font-weight: 500;
}

.primary-buttonGS1-btn-outline:hover {
    color: #a82c05;
    border: 1px solid #a82c05;
}

.inactive {
    display: none;
}

.header-top {
    display: none;
    width: 100%;
    min-width: 320px;
    background-color: var(--blue_light);
}

.wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.container--topMenu {
    width: 100%;
    height: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 16px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.container--topMenu a {
    padding: 0 16px;
    color: var(--blue_link);
}

.container--topMenu span {
    font-size: 1.8rem;
}

header {
    border-bottom: none;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-left__logo img {
    height: 45px;
}

.header-left__pageTitle {
    margin-left: 20px;
}

.header-left__pageTitle .title {
    font-size: 1.6rem;
    line-height: 1.4rem;
    font-weight: 500;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-right__desktop-menu {
    display: none;
    list-style: none;
}

.header-right__desktop-menu a {
    padding: 10px 15px;
    color: var(--blue_gs1);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
}

.header-right__desktop-menu a:hover {
    background-color: var(--blue_light);
}

.header-right__desktop-menu .active {
    color: var(--orange_gs1);
    border-bottom: 3px solid var(--orange_gs1);
    background-color: transparent;
}

.header-right__login {
    display: none;
}

.header-right__login button {
    padding: 4px 16px;
}

.header-right__options {
    display: flex;
    align-items: center;
    color: var(--blue_gs1);
    display: block;
}

.bread-crumbs {
    width: 100%;
    display: none;
    font-size: 1.3rem;
}

.bread-crumbs--content {
    padding: 10px;
}

.bread-crumbs--content a {
    text-decoration: none;
    color: var(--blue_link);
}

.bread-crumbs--content a:hover {
    text-decoration: underline;
}

.container--mobileOption {
    padding: 0 !important;
}

.mobile-login {
    width: 100%;
}

.mobile-login button {
    width: 100%;
    color: #fff;
    font-size: 1.8rem;
    padding: 9px 16px;
    background-color: var(--orange_gs1);
    border: none;
    display: block;
}

.mobileMenu {
    -webkit-animation: swing-in-top-fwd 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
    animation: swing-in-top-fwd 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}

.mobileMenu--container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.6rem;
    padding: 0 15px;
}

.mobileMenu--container a {
    width: 100%;
    margin-bottom: 2.4rem;
    font-size: 1.4rem;
    color: var(--blue_gs1);
    font-weight: 500;
    text-decoration: none;
}

.banner {
    background-color: var(--blue_gs1);
    height: 300px;
    display: flex;
    flex-wrap: wrap;
}

.banner__void {
    width: 100%;
    height: 100%;
}

.banner__image {
    width: 100%;
    height: 100%;
    background-image: url(../assets/banner_img.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.banner .wrap {
    margin-top: -550px;
    width: 100%;
}

.banner__text {
    width: 60%;
}

.banner__text h2 {
    color: white;
    font-size: 4.125rem;
    font-weight: 300;
}

.banner__text p {
    color: white;
    font-size: 1.5rem;
    font-weight: 300;
}

.search-barcode {
    background-color: var(--blue_light);
    padding: 30px 0;
    margin-top: 300px;
}

.search-barcode__content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    background-color: white;
    padding: 20px;
}

.search-barcode__content .search {
    width: 100%;
}

.search-barcode__content .search h2 {
    font-size: 2rem;
    color: var(--blue_gs1);
    font-weight: 400;
    margin-bottom: 2rem;
}

.search-barcode__content .search p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.search-barcode__content .search .input-group-text {
    background-color: white;
    border-right: none;
    border-color: #c4d7ed;
}

.search-barcode__content .search .form-control {
    border-left: none;
    border-right: none;
    border-color: #c4d7ed;
    font-size: 1.5rem;
}

.search-barcode__content .multiSearch {
    width: 100%;
}

.search-barcode__content .multiSearch h2 {
    font-size: 2rem;
    color: var(--blue_gs1);
    font-weight: 400;
    margin-bottom: 2rem;
}

.search-barcode__content .multiSearch p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.search-barcode__content .multiSearch .form-control {
    border-color: #c4d7ed;
    font-size: 1.5rem;
}

.search-barcode__content .multiSearch button {
    margin-top: 20px;
    width: 150px;
}

.search-barcode__content .example {
    width: 100%;
    font-size: 1.4rem;
    margin-top: 2rem;
}

.search-barcode__content .example a {
    color: var(--blue_link);
    text-decoration: none;
}

.search-barcode__content .example a:hover {
    text-decoration: underline;
}

.search-barcode__content article {
    display: flex;
    flex-direction: column;
}

.search-barcode__content article div {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 400;
    gap: 10px;
}

.search-barcode__content article div i {
    color: var(--blue_gs1);

}

.checkData {
    background-color: var(--blue_light);
    padding: 0 10px 10px;
}

.checkData__content {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #ccf1dc;
    border-radius: 4px;
    padding: 10px;
    border-left: 4px solid #008037;
}

.checkData__content .checkIcon__text {
    font-size: 1.6rem;
    font-weight: 500;
}

.checkData__content .checkIcon__text .title {
    color: #026b30;
    font-weight: bold;
}

.checkData__content_warning {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #ffaaaa;
    border-radius: 4px;
    padding: 10px;
    border-left: 4px solid #800000;
}
.checkData__content_warning .checkIcon__text {
    font-size: 1.6rem;
    font-weight: 500;
}

.checkData__content_warning .checkIcon__text .title {
    color: #010a05;
    font-weight: bold;
}


.checkData__content_discontinued {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fff6a7;
    border-radius: 4px;
    padding: 10px;
    border-left: 4px solid #ff9100;
}
.checkData__content_discontinued .checkIcon__text {
    font-size: 1.6rem;
    font-weight: 500;
}

.checkData__content_discontinued .checkIcon__text .title {
    color: #010a05;
    font-weight: bold;
}

.detail {
    background-color: var(--blue_light);
    padding: 20px 0;
}

.detail__dowload{
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    background-color: white;
    padding: 20px 10px;
}

.detail__tabs {
    width: 100%;
    background-color: white;
    padding: 10px;
}

.detail__tabs .nav-tabs {
    font-size: 1.6rem;
}

.detail__tabs .nav-tabs .nav-link {
    color: var(--black_ligth);
    font-weight: 500;
}

.detail__tabs .nav-tabs .nav-link.active {
    border-color: transparent;
    border-bottom: 4px solid var(--orange_gs1);
    color: var(--orange_gs1);
}

.detail .tab-content {
    margin: 20px 0;
}

.detail .tab-content .product__title {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.detail .tab-content .product__image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
}

.detail .tab-content .product__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detail .tab-content table {
    overflow-wrap: anywhere;
    font-size: 1.2rem;
}

.detail .tab-content table tr {
    border-bottom: 1px solid #ccc;
}

.detail .tab-content table th {
    width: 40%;
    color: #646b74;
    font-weight: bold;
}

.detail .tab-content table td {
    width: 60%;
    color: #002c6c;
}

.detail .tab-content p {
    margin-top: 20px;
    font-size: 1.2rem;
}

.detail .detail__pagination{
    width: 100%;
    background-color: white;
    padding: 10px;
}

.detail .detail__pagination nav{
    display: flex;
    justify-content: center;
}

.detail .detail__pagination nav ul li a{
    border: none;
    font-size: 1.4rem;
    color: var(--blue_link);
}

.contactUs {
    width: 100%;
    padding: 20px 0;
}

.contactUs__title h3 {
    font-size: 1.8rem;
    color: var(--blue_gs1);
    margin-bottom: 1.5rem;
}

.contactUs__text {
    font-size: 1.4rem;
    font-weight: 400;
}

.contactUs__text span {
    color: #008dbd;
}

.links {
    border-top: 1px solid #b3b3b3;
    margin-left: 0;
    padding-top: 14px;
    font-size: 1.2rem;
    color: #008dbd;
}

.links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
}

.links ul li {
    border-right: 1px solid #b3b3b3;
    padding-right: 16px;
    margin-top: 16px;
}

.links ul li:last-child {
    border-right: none;
}

.links ul li a {
    text-decoration: none;
    color: #008dbd;
}

.login {
    background-color: var(--blue_light);
    padding: 20px 0;
}

.login .login__content {
    min-width: 280px;
    max-width: 400px;
}

.login .login__content h1 {
    font-size: 2rem;
    font-weight: 400;
}

.login .login__content p {
    font-size: 1.2rem;
    text-align: justify;
}

.login .login__content form {
    font-size: 1.6rem;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.login .login__content form input {
    font-size: 1.6rem;
    padding: 5px;
}

.login .login__content form button {
    width: 150px;
    align-self: flex-end;
    margin-top: 10px;
}

.login .login__content .register {
    font-size: 1.2rem;
    padding: 5px;
}

.login .login__content .register a {
    text-decoration: none;
    color: var(--blue_link);
}

.login .login__content .register a:hover {
    text-decoration: underline;
}