* {
    font-family: 'Montserrat';
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}

.tableContainer {
    background-color: #EBEFFE;
    padding: 0.3rem 1rem;
    border-radius: 1rem;
    margin: -4rem;
    padding-bottom: 1.5rem;
    padding-top: 0rem;
}

.table-cell {
    background-color: #EBEFFE;
    padding-right: 0.1rem;
    height: 120px;
}

    .table-cell div {
        background-color: rgb(0, 26, 69);
        height: 120px;
    }

.specialOffer {
    width: fit-content;
    margin: 0;
    background-color: #ebaff5;
    padding: 0.4rem 1rem;
    padding-right: 3rem;
    border-radius: 0.5rem;
    position: relative;
    top: -1rem;
    left: 38rem;
    font-size: 1rem;
}

.addToCartButton {
    border: none;
    background-color: #ffb500;
    outline: #ffb50000 3px solid;
    border-radius: 0.5rem;
    font-size: medium;
    font-weight: bold;
    margin-right: 1rem;
    margin-left: 1rem;
    width: 5rem;
}

.addedToCartButton {
    border: none;
    background-color: #a0a0a0;
    outline: #a0a0a000 3px solid;
    border-radius: 0.5rem;
    font-size: medium;
    font-weight: bold;
    margin-right: 1rem;
    margin-left: 1rem;
    width: 5rem;
}

.removeToCartButton {
    border: none;
    background-color: #ee0202;
    outline: #ee020200 3px solid;
    border-radius: 0.5rem;
    font-size: medium;
    font-weight: bold;
    margin-right: 1rem;
    margin-left: 1rem;
    width: 5rem;
}

.updateToCartButton {
    border: none;
    background-color: #02b6ee;
    outline: #02b6ee00 3px solid;
    border-radius: 0.5rem;
    font-size: medium;
    font-weight: bold;
    margin-right: 1rem;
    margin-left: 1rem;
    width: 5rem;
}

.addToCartButton:hover {
    background-color: white;
    outline-color: #ffb500;
    box-shadow: 0px 0px 25px 0px #ffb500;
    transition: all 0.2s ease-in-out;
}

.removeToCartButton:hover {
    background-color: white;
    outline-color: #ee0202;
    box-shadow: 0px 0px 20px 0px #ee0202;
    transition: all 0.5s ease-in-out;
}

.updateToCartButton:hover {
    background-color: white;
    outline-color: #02b6ee;
    box-shadow: 0px 0px 20px 0px #02b6ee;
    transition: all 0.5s ease-in-out;
}

.announcingContainer {
    background-color: #fff;
    height: 5.2rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 4rem;
    justify-content: space-between;
}

.productCardsList {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.productCard {
    background-color: white;
    width: 5rem;
    height: 4.5rem;
    outline-style: solid;
    outline-width: 2.3px;
    border-radius: 0.4rem;
    margin: 0 0.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.productCard:hover{
  cursor: pointer;
  outline-width: 4px;
}
.productCardTitle {
    text-align: center;
    max-width: 7rem;
}

    .productCardTitle > h6 {
        margin: 0;
        font-weight: 500;
        max-width: 5rem;
        font-size: 0.9rem;
        padding-bottom: 3px;
    }

.productCardImage {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .productCardImage > img {
        width: 2.5rem;
        height: 2.5rem;
    }

.allD365 {
    width: 9rem;
    /*background-color: #ececec;*/
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: nowrap;
}
/*.allD365:hover{
  cursor: pointer;
  background-color: lightgray;
}*/

.allD365Title > h6 {
    max-width: none;
}

.allD365Title {
    max-width: none;
}

.allD365Image > img {
    width: 2.2rem;
    height: 2.2rem;
    object-fit: cover;
}

.headerNav {
    background: #001a45;
    border: none !important;
    margin-bottom: 0 !important;
    padding: 1.5rem 0 !important;
    margin-bottom: 0 !important;
}

.headerButton {
    margin: 0 5px;
    height: 2.3rem;
    vertical-align: center;
}

.cartButton {
    display: flex;
    align-items: center;
}

    .cartButton:hover {
        background-color: white;
        outline: #ffc107 3px solid;
        box-shadow: 0px 0px 20px 0px #ffc107;
        transition: box-shadow background-color 0.5s ease-in-out;
    }

.jumbotron {
    padding: 0.5rem 3.5rem;
    height: 22rem;
    position: relative;
}

.jumbotronTitle {
    color: white;
    font-weight: 600;
    font-size: 2.2rem;
}

.jumbotronPurchaseLabel {
    color: #0687b7;
    font-weight: 400;
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.jumbotronLearnMoreContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

.jumbotronLearnMoreContainer > p {
    color: white;
    font-weight: 300;
    font-size: 1.4rem;
    margin: 0;
}

.jumbotronLearnMoreContainer > a {
    color: black;
    font-weight: 650;
    font-size: 1.4rem;
    text-decoration: none;
    background-color: #02b6eb;
    border: none;
    border-radius: 2.4rem;
    padding: 0.7rem 2rem;
    margin-right: 3rem;
}

.jumbotronLearnMoreLink:hover {
    background-color: white;
    color: black;
    outline: solid 3px #02b6eb;
    box-shadow: #02b6eb 0px 0px 20px 0px;
    transition: box-shadow background-color color 0.3s ease-in-out;
}

.titleColumn {
    color: white;
    /* text-decoration: underline #17b5e6 2.5px; */
    /*border-bottom: solid #17b5e6 2.5px;*/
    text-align: center;
    width: fit-content;
    max-width: 26rem;
    margin: 0px;
    font-weight: bold;
    font-size: 1.5rem;
}

.titleColumnContainer {
    margin-left: 1rem;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.microsoftPriceListContainer {
    color: white;
    font-family: "Segoe UI",SegoeUI,"Helvetica Neue",Helvetica,Arial,sans-serif;
}

.priceTitle {
    font-size: 1.3rem;
    margin: 0;
    font-family: 'Segoe UI', SegoeUI, "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #011A45;
}

.priceContainer {
    position: relative;
    top: 50%;
    bottom: 50%;
    margin-right: 1rem;
    margin-left: 1rem;
}

.perUserPriceTitle {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0;
    color: #011A45;
}

.perUserPriceDisccount {
    /*position: absolute;*/
    font-size: 1rem;
    color: #D83B01;
    margin-bottom: 0;
}

.App {
    text-align: center;
}

.App-logo {
    height: 40vmin;
    pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
    .App-logo {
        animation: App-logo-spin infinite 20s linear;
    }
}

.App-header {
    background-color: #282c34;
    min-height: 100rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: calc(10px + 2vmin);
    color: white;
}

.App-link {
    color: #61dafb;
}

@keyframes App-logo-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.nameAndLinkContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 0.5rem;
    width: 11rem;
}

.learnMoreLink {
    color: #011A45;
    text-decoration: underline #17b5e6 2.5px;
}

.productName {
    color: #011A45;
    margin-top: 0.4rem;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.productNameShop {
    margin-top: 0.4rem;
    margin-bottom: 0.5rem;
}

.productImage {
    width: 4rem;
    height: 4rem;
    object-fit: cover;
}

.imageContainer {
    width: 6rem;
    height: 5.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.productContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    margin-right: 1rem;
}

.productsListContainer {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.productOptions {
    width: 10.55rem;
    height: 2.1rem;
    background-color: white;
    font-weight: 500;
    border-color: lightgrey;
    border-style: solid;
    border-radius: 5px;
}

.productOptions:hover {
    cursor: pointer;
    box-shadow: #ffb500 0px 0px 20px 0px;
    transition: box-shadow 0.2s ease-in-out;
}

.bi.bi-arrow-right-short {
    color: white;
    width: 1.8rem;
    height: 1.8rem;
    margin-top: 0.4rem;
}

.linkContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.quantityContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    margin-right: 1rem;
    width: auto;
}

.quantityBackground {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    background-color: white;
}

.quantityButtonPlus {
    font-size: 2.0rem;
    height: 2.2rem;
    width: 35px;
    border-width: thin;
    border-color: lightgrey;
    border-style: solid;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

.quantityButtonPlus b {
    top: -25%;
    position: relative;
}

.quantityButtonDash {
    font-size: 2.0rem;
    height: 2.2rem;
    width: 35px;
    border-width: thin;
    border-color: lightgrey;
    border-style: solid;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.quantityButtonDash b {
    top: -25%;
    position: relative;
}


    .quantityButtonDash:hover {
        cursor: pointer;
        box-shadow: #ffb500 0px 0px 20px 0px;
        transition: box-shadow 0.2s ease-in-out;
    }

    .quantityButtonPlus:hover {
        cursor: pointer;
        box-shadow: #ffb500 0px 0px 20px 0px;
        transition: box-shadow 0.2s ease-in-out;
    }


.quantityTitle {
    margin: 0 1rem;
    color: black;
    margin: 0;
    height: 2.2rem;
    padding: 0 1rem 0 1rem;
    text-align: center;
    border-top-style: solid;
    border-bottom-style: solid;
    border-width: thin;
    border-color: lightgrey;
    width: 57px;
}

.center-element {
    margin: auto;
}

.center-text {
    text-align: center;
}

.vertical-align-sub {
    vertical-align: sub;
}

.justify-center {
    justify-content: center;
}

.width-75 {
    width: 75%;
}

.width-50 {
    width: 50%;
}

.w-10 {
    width: 10%;
}

.w-15 {
    width: 10%;
}

.w-35 {
    width: 35%;
}

.w-20 {
    width: 20%;
}

.w-80 {
    width: 80%;
}

.background-white {
    background-color: rgba(255, 255, 255);
}


.overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */
    height: 100%;
    width: 100%;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0,0,0); /* Black fallback color */
    background-color: rgba(0,0,0, 0.7); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

.overlay * {
    padding: 8px;
    display: block;
}

/* Position the close button (top right corner) */
.overlay-closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 20px;
}

.float-right {
    float: right;
}

.contact-hero {
    background-image: url(/images/contact-hero.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
}

.contact-hero-tint {
    background-color: rgba(8, 22, 48, 0.81);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.logo-outline {
    filter: drop-shadow(0px 0px 4px rgb(255, 255, 255,200))
}

.a-reset {
    color: inherit;
    text-decoration: inherit;
}

.cursor-hover:hover {
    cursor: pointer;
}

.hide-overflow {
    overflow: hidden;
}


@keyframes expandBorderOnLoad {
    0% {
        width: 0;
        left: 50%;
    }

    50% {
        width: 50%;
        left: 25%;
    }

    100% {
        width: 100%;
        left: 0;
    }
}

.animated-border-bottom {
    position: relative;
    border-bottom: solid 10px transparent;
    animation: expandBorderOnLoad 0.5s ease-out forwards; 
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffc107;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

    .back-to-top.visible {
        opacity: 1;
        pointer-events:all
    }

    .back-to-top:hover {
        opacity: 1;
        background-color: #007bff;
    }


.service-section {
    border-bottom: solid 10px rgb(66, 184, 253); 
}






.support-text-blue {
    color: #42B8FD;
}

.support-text-blue-dark {
    color: #004A98;
}

.support-text-white {
    color: #FFFFFF;
}
.support-text-black {
    color: #000000;
}

@keyframes shake {
    0% { 
        transform: scale(1.0) rotate(0deg); 
    }
    16.6% {
        transform: scale(1.2)rotate(15deg);
    }
    33.2% {
        transform: scale(1.2)rotate(-15deg);
    }
    49.8% {
        transform: scale(1.2) rotate(15deg);
    }
    66.4% {
        transform: scale(1.2) rotate(-15deg);
    }
    83% {
        transform: scale(1.2) rotate(15deg);
    }
    100% {
        transform: scale(1.0) rotate(0deg);
    }
}

.anim-shake {
    animation-name: shake;
    animation-duration: 0.5s;
}

@keyframes grow-and-shrink {
    0% { transform: scale(1.0) }
    50% { transform: scale(1.2) }
    100% { transform: scale(1.0) }
}

.anim-grow-and-shrink {
    animation-name: grow-and-shrink;
    animation-duration: 0.5s;
}

@keyframes green-glow {
    0% {
        color: white
    }
    50% { 
        color: lightgreen 

    }
    100% {
        color: white
    }
}

.anim-green-glow {
    animation-name: green-glow;
    animation-duration: 0.5s;
}

.shop-tooltip {
    position: relative;
    display: inline-block;
    color: #011A45;
}

    .shop-tooltip .shop-tooltiptext {
        visibility: hidden;
        width: 600px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        /* Position the tooltip */
        position: absolute;
        z-index: 2;
        bottom: 100%;
        left: 50%;
        margin-left: 0px;
    }

    .shop-tooltip:hover .shop-tooltiptext {
        visibility: visible;
    }

@media screen and (max-width: 1450px) {
    .announcingTitle {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 625px) {
    .jumbotronTitle {
        font-size: 1rem;
    }
}

.background-blue {
    background-color: rgb(0, 74, 152)
}



.headerLink {
    color: white;
}

.headerLink:hover {
    color: orange
}

.tableSeparator {
    margin-right: -2px;
    pointer-events: none;
}

.thickBorder {
    border-top-width: 2px;
    opacity: 1;
}

.input-text-error {
    border-color: red;
}

    .input-text-error:focus {
        outline-color: red;
    }

.steps-block {
    width: 220px;
    height: 235px;
    text-align: center;
    position: relative;
}

.steps-block-with-arrow {
    margin-right: 30px;
}

.steps-text-block {
    padding-top: 30px;
    border-radius: 20px;
}

.steps-title-block {
    height: 41.1px;
    background-color: #94CED1;
    position: relative;
}

.steps-title-text {
    margin: 0 40px 0 40px;
    font-style: italic;
    font-size: 12pt;
}

.steps-arrow {
    position: absolute;
    right: -65px;
    z-index: 1;
}


.rating {
    direction: rtl; /* Las estrellas comienzan desde la derecha */
    display: inline-flex;
    font-size: 2rem;
}

.star {
    cursor: pointer;
    color: #ccc; /* Color por defecto (gris) */
    transition: color 0.3s ease-in-out;
}

    .star:hover,
    .star:hover ~ .star {
        color: #ffca08; /* Color al pasar el ratón (amarillo) */
    }

    .star.selected {
        color: #ffca08; /* Color cuando está seleccionado */
    }

.announcingTitle{
    font-size: 1.5rem;
}

.subtitle {
    font-size: 3rem;
}

