.limiter {
    width: 100%;
    margin: 0 auto;
}
.container-table100 {
    width: 100%;
    min-height: 100vh;
    background: #f3f3f387;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 33px 30px;
}
.wrap-table100 {
    width: 960px;
    border-radius: 10px;
    overflow: hidden;
}
.table {
    width: 100%;
    display: table;
    margin: 0;
}
@media screen and (max-width: 768px) {
    .table {
        display: block;
    }
}
.row-table {
    display: table-row;
    background: #fff;
}
.row-table.header {
    color: #ffffff;
    background: #0d3b56;
}
@media screen and (max-width: 768px) {
    .row-table {
        display: block;
    }
    .row-table.header {
        padding: 0;
        height: 0px;
    }
    .row-table.header .cell {
        display: none;
    }
    .row-table .cell:before {
        font-family: 'Figtree', sans-serif;
        font-size: 12px;
        color: #808080;
        line-height: 1.2;
        text-transform: uppercase;
        font-weight: unset;
        margin-bottom: 13px;
        content: attr(data-title);
        min-width: 98px;
        display: block;
    }
}
.cell {
    display: table-cell;
}
@media screen and (max-width: 768px) {
    .cell {
        display: block;
    }
}
.row-table .cell {
    font-family: 'Figtree', sans-serif;
    letter-spacing: 0.5px;
    font-size: 15px;
    color: #666666;
    line-height: 1.2;
    font-weight: unset;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dbdbdb;
}
.row-table.header .cell {
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.2;
    font-weight: 700;
    padding-top: 19px;
    padding-bottom: 19px;
}
.row-table .cell:nth-child(1) {
    width: 360px;
    padding-left: 40px;
}
.row-table .cell:nth-child(2) {
    width: 160px;
}
.row-table .cell:nth-child(3) {
    width: 250px;
}
.row-table .cell:nth-child(4) {
    width: 190px;
}
.table, .row-table {
    width: 100%;
}
.header:hover {
    background-color: #0d3b56;
    cursor: pointer;
}

@media (max-width: 768px) {
    .row-table {
        border-bottom: 1px solid #f2f2f2;
        padding-bottom: 18px;
        padding-top: 30px;
        padding-right: 15px;
        margin: 0;
    }
    .row-table .cell {
        border: none;
        padding-left: 30px;
        padding-top: 16px;
        padding-bottom: 16px;
    }
    .row-table .cell:nth-child(1) {
        padding-left: 30px;
    }
    
    .row-table .cell {
        font-family: 'Figtree', sans-serif;
        font-size: 18px;
        color: #555555;
        line-height: 1.2;
        font-weight: unset;
    }
.table, .row-table, .cell {
        width: 100%;
    }
}


.card {
    --white: hsl(0, 0%, 100%);
    --black: hsl(240, 15%, 9%);
    --paragraph: hsl(0, 0%, 83%);
    --line: hsl(240, 9%, 17%);
    --primary: hsl(189, 92%, 58%);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    width: 19rem;
    background-color: hsla(240, 15%, 9%, 1);
    background-image: radial-gradient(at 88% 40%,hsla(240, 15%, 9%, 1) 0px, transparent 85%
    ),
    radial-gradient(at 49% 30%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
    radial-gradient(at 14% 26%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
    radial-gradient(at 0% 64%, hsl(189, 99%, 26%) 0px, transparent 85%),
    radial-gradient(at 41% 94%, hsl(189, 97%, 36%) 0px, transparent 85%),
    radial-gradient(at 100% 99%, hsl(188, 94%, 13%) 0px, transparent 85%);
    border-radius: 4px;
    box-shadow: 0px -16px 24px 0px rgba(255, 255, 255, 0.25) inset;
}
.card .card__border {
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    z-index: -10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background-image: linear-gradient(0deg,hsl(0, 0%, 100%) -50%,hsl(0, 0%, 40%) 100%);
    border-radius: 1rem;
}
.card .card__border::before {
    content: "";
    pointer-events: none;
    position: fixed;
    z-index: 200;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%), rotate(0deg);
    transform-origin: left;
    width: 200%;
    height: 10rem;
    background-image: linear-gradient(0deg,hsla(0, 0%, 100%, 0) 0%,hsl(189, 100%, 50%) 40%,hsl(189, 100%, 50%) 60%,hsla(0, 0%, 40%, 0) 100%);
    animation: rotate 8s linear infinite;
}
@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}
.card .card_title__container .card_title {
    font-size: 1rem;
    color: var(--white);
}
.card .card_title__container .card_paragraph {
    margin-top: 0.25rem;
    width: 65%;
    font-size: 0.5rem;
    color: var(--paragraph);
}
.card .line {
    width: 100%;
    height: 0.1rem;
    background-color: hsl(240deg 2.4% 63.7%);
    border: none;
}
.line {
    margin-bottom: 1px;
    margin-top: 1px;
}
.card .card__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.card .card__list .card__list_item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.card .card__list .card__list_item .check {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1rem;
    height: 1rem;
    background-color: var(--primary);
    border-radius: 50%;
}
.card .card__list .card__list_item .check .check_svg {
    width: 0.75rem;
    height: 0.75rem;
    fill: var(--black);
}
.card .card__list .card__list_item .list_text {
    font-size: 0.75rem;
    color: var(--white);
}
.card .button {
    cursor: pointer;
    padding: 0.5rem;
    width: 100%;
    background-image: linear-gradient(0deg,hsl(189, 92%, 58%),hsl(189, 99%, 26%) 100%);
    font-size: 0.75rem;
    color: var(--white);
    border: 0;
    border-radius: 9999px;
    box-shadow: inset 0 -2px 25px -4px var(--white);
}

/*productos-section-gridblog*/
.list-inline-item {
    font-family: 'Figtree', sans-serif;
}
.page-title h1 {
    color: black;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Figtree', sans-serif;
    font-size: 60px;
    filter: drop-shadow(2px 15px 15px #c072cd);
}
@media (max-width: 425px) {
    .page-title h1 {
        font-size: 45px;
        margin-top: 20px;
    }
}
.img-item-product-monitor {
    height: auto;
    width: 90%;
    margin: auto;
    margin-top: 20px;
}
.card-product2 {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0 0 0 /10%);
}
.post-meta {
    color: #9b9b9b;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-family: 'PT Sans', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
}
.card-product2 h4 {
    color: black;
    font-size: 30px;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
}
.card-product2 p {
    color: #7a7a7a;
    font-size: 15px;
    line-height: 20px;
    font-family: 'Figtree', sans-serif;
    letter-spacing: 0.5px;
}
.card-product2 .contact-btn {
    color: crimson;
}
.card-product2 li {
    color: #7a7a7a;
    font-size: 15px;
    line-height: 20px;
    font-family: 'Figtree', sans-serif;
    letter-spacing: 0.5px;
}

/* From Uiverse.io by andrew-demchenk0 */ 
.button-prod {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 12px;
    gap: 8px;
    height: 36px;
    width: 210px;
    margin: 40px auto;
    border: none;
    background: #5e41de33;
    border-radius: 20px;
    cursor: pointer;
}
.lable {
    line-height: 20px;
    font-size: 15px;
    color: #5D41DE;
    font-family: 'Figtree', sans-serif;
    letter-spacing: 1px;
    font-weight: 700;
}
.button-prod:hover {
    background: #5e41de4d;
}
.button-prod:hover .svg-icon {
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.tooltip-container {
    position: relative;
    display: inline-block;
}
.help-buttonn {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.help-buttonn:hover,
.help-buttonn:focus {
    /*transform: translateY(-2px);*/
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.tooltip {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: 12px 20px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: #1f2937;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(229, 231, 235, 1);
}
  /* Tooltip arrow */
.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}
.tooltip-container:hover .tooltip,
.help-buttonn:focus + .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
@keyframes glow {
    0% {
        text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(99, 102, 241, 0.7);
    }
    100% {
        text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    }
}
.tooltip strong {
    animation: glow 2s infinite;
    font-weight: 600;
}
.tooltip i {
    margin-right: 6px;
    color: #6366f1;
}
@media (max-width: 768px) {
    .tooltip {
        font-size: 13px;
        padding: 10px 16px;
    }
    .help-buttonn {
        padding: 10px 20px;
        font-size: 14px;
    }
}