/* Define keyframes for animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1.000);
    }
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3);
    }

    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        transform: scale3d(.9, .9, .9);
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        transform: scale3d(.97, .97, .97);
    }

    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

/* Apply animations to classes */
.fade-in {
    animation: fadeIn 2s ease-in;
}

.slide-in-left {
    animation: slideInLeft 1.5s ease-out;
}

.slide-in-right {
    animation: slideInRight 1.5s ease-out;
}

.bounce-in {
    animation: bounceIn 1s both;
}
/*# sourceMappingURL=custom.min.css.map */
.hero-section {
    background-color: rgb(20 26 47) !important;
}

.navbar-landing .navbar-nav .nav-item .nav-link {
    transition: all .4s;
    color: #ffffff;
}

.navbar-landing .navbar-nav .nav-item .nav-link.active, .navbar-landing .navbar-nav .nav-item .nav-link:focus, .navbar-landing .navbar-nav .nav-item .nav-link:hover {
    color: #62a8ff !important;
}

.navbar-landing.is-sticky .navbar-nav .nav-item .nav-link {
    transition: all .4s;
    color: var(--vz-card-title-color);
}


.card__container {
    gap: 3rem 1.25rem;
}

.card__content {
    position: relative;
    background-color: var(--container-color);
    padding: 2rem 1.5rem 2.5rem;
    border-radius: 1.75rem;
    box-shadow: 0 12px 24px hsla(var(--hue-color), 61%, 16%, 0.1);
    transition: 0.4s;
}

.card__content:hover {
    box-shadow: 0 16px 24px hsla(var(--hue-color), 61%, 16%, 0.15);
}

.card__header-img {
    height: 50px;
}

.card__header-circle {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    margin-bottom: var(--mb-1);
    place-items: center;
}

.card__header-subtitle {
    display: block;
    font-size: var(--smaller-font-size);
    color: var(--text-color-light);
    text-transform: uppercase;
    margin-bottom: var(--mb-0-25);
}

.card__header-title {
    font-size: var(--biggest-font-size);
    color: var(--title-color);
    margin-bottom: var(--mb-1);
}

.card__pricing {
    position: absolute;
    background: linear-gradient(
            157deg,
            var(--first-color-light) -12%,
            var(--first-color) 109%
    );
    width: 60px;
    height: 88px;
    right: 1.5rem;
    top: -1rem;
    padding-top: 1.25rem;
    text-align: center;
}

.card__pricing-number {
    font-family: var(--pricing-font);
}

.card__pricing-symbol {
    margin-top: 15px;
    font-size: 17px;
}

.card__pricing-number {
    font-size: var(--h2-font-size);
}

.card__pricing-month {
    display: block;
    font-size: var(--tiny-font-size);
}

.card__pricing-number,
.card__pricing-month {
    color: var(--white-color);
}

.card__pricing::after,
.card__pricing::before {
    content: "";
    position: absolute;
}

.card__pricing::after {
    width: 100%;
    height: 15px;
    background-color: var(--white-color);
    left: 0;
    bottom: -1px;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.card__pricing::before {
    width: 14px;
    height: 16px;
    background-color: var(--first-color-alt);
    top: 0;
    left: -14px;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.card__list {
    row-gap: 0.5rem;
    margin-bottom: var(--mb-2);
}

.card__list-item {
    display: flex;
    align-items: center;
}

.card__list-icon {
    font-size: 1.5rem;
    color: var(--first-color);
    margin-right: var(--mb-0-5);
}

.card__button {
    padding: 1.25rem;
    border: none;
    font-size: var(--normal-font-size);
    border-radius: 0.5rem;
    background: linear-gradient(
            157deg,
            var(--first-color-light) -12%,
            var(--first-color) 109%
    );
    color: var(--white-color);
    cursor: pointer;
    transition: 0.4s;
}

.card__button:hover {
    box-shadow: 0 12px 24px hsla(var(--hue-color), 97%, 54%, 0.2);
}

/*==================== MEDIA QUERIES ====================*/
/* For small devices */
@media screen and (max-width: 320px) {
    .container {
        margin-left: var(--mb-1);
        margin-right: var(--mb-1);
    }

    .card__content {
        padding: 2rem 1.25rem;
        border-radius: 1rem;
    }
}

/* For medium devices */
@media screen and (min-width: 568px) {
    .card__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .card__content {
        grid-template-rows: repeat(2, max-content);
    }

    .card__button {
        align-self: flex-end;
    }
}

/* For large devices */
@media screen and (min-width: 968px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }

    .card__container {
        grid-template-columns: repeat(3, 1fr);
    }

    .card__header-circle {
        margin-bottom: var(--mb-1-25);
    }

    .card__header-subtitle {
        font-size: var(--small-font-size);
    }
}

:root {
    /*========== Colors ==========*/
    /* Change favorite color - Blue 210 - Purple 250 - Green 142 - Pink 340*/
    --hue-color: 210;

    /* HSL color mode */
    --first-color: hsl(var(--hue-color), 96%, 54%);
    --first-color-light: hsl(var(--hue-color), 96%, 69%);
    --first-color-alt: hsl(var(--hue-color), 96%, 37%);
    --first-color-lighter: hsl(var(--hue-color), 14%, 96%);
    --title-color: hsl(var(--hue-color), 12%, 15%);
    --text-color: hsl(var(--hue-color), 12%, 35%);
    --text-color-light: hsl(var(--hue-color), 12%, 65%);
    --white-color: #fff;
    --body-color: hsl(var(--hue-color), 100%, 99%);
    --container-color: #fff;

    /*========== Font and typography ==========*/
    --body-font: "Lato", sans-serif;
    --pricing-font: "Rubik", sans-serif;
    --biggest-font-size: 1.75rem;
    --normal-font-size: 0.938rem;
    --h2-font-size: 1.25rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;
    --tiny-font-size: 0.625rem;

    /*========== Margenes Bottom ==========*/
    --mb-0-25: 0.25rem;
    --mb-0-5: 0.5rem;
    --mb-1: 1rem;
    --mb-1-25: 1.25rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
}

@media screen and (min-width: 968px) {
    :root {
        --biggest-font-size: 2.125rem;
        --h2-font-size: 1.5rem;
        --normal-font-size: 1rem;
        --small-font-size: 0.875rem;
        --smaller-font-size: 0.813rem;
        --tiny-font-size: 0.688rem;
    }
}

/*:root[data-sidebar=dark] {*/
/*    --vz-vertical-menu-bg: #000000;*/
/*    --vz-vertical-menu-border: #000000;*/
/*}*/

/*:root[data-topbar=dark] {*/
/*    --vz-header-bg: #000000;*/
/*    --vz-header-item-color: rgba(255, 255, 255, 0.85);*/
/*    --vz-header-item-bg: #495c99;*/
/*    --vz-header-item-sub-color: #fff;*/
/*    --vz-topbar-user-bg: #000000;*/
/*}*/

.alert .close {
    position: absolute;
    right: 15px;
}

.alert p {
    margin-bottom: 0px;
}

.auth-one-bg {
    background-image: url('/assets/img/25601584.jpg');
}

.btn-my-account{
    color:white;
}

.navbar-landing.is-sticky .btn-my-account{
    color:var(--vz-card-title-color);
}

/*[data-bs-theme=dark] {*/
/*    color-scheme: dark;*/
/*    --vz-body-bg: #01071ca6;*/
/*}*/

/*[data-bs-theme=dark] .card {*/
/*    --vz-card-bg: #0a1827;*/
/*    --vz-card-cap-bg: #0a1827;*/
/*}*/

[data-bs-theme=dark][data-topbar=dark] {
    --vz-header-bg: #2c3034;
    --vz-topbar-user-bg: #2c3034;
    --vz-header-border: #303438;
}

[data-bs-theme=dark] {
    --vz-light-bg-subtle: #1b3252;
    --vz-vertical-menu-bg: #212529;
    --vz-vertical-menu-border: #212529;
}

.dataTables_filter,.dataTables_paginate {
    float: right;
}

.tab-pane {
    min-height: 250px;
}

.profile-setting-img {
    position: relative;
    height: 160px;
}

table.dataTable>thead .sorting:before, table.dataTable>thead .sorting_asc:before, table.dataTable>thead .sorting_asc_disabled:before, table.dataTable>thead .sorting_desc:before, table.dataTable>thead .sorting_desc_disabled:before {
    content: "\f0360";
    position: relative;
    right: .5rem;
    top: 0px;
    font-size: .8rem;
    font-family: "Material Design Icons";
}

table.dataTable>thead .sorting:after, table.dataTable>thead .sorting_asc:after, table.dataTable>thead .sorting_asc_disabled:after, table.dataTable>thead .sorting_desc:after, table.dataTable>thead .sorting_desc_disabled:after {
    content: "\f035d";
    position: relative;
    right: .5rem;
    top: 0px;
    font-size: .8rem;
    font-family: "Material Design Icons";
}

.alert p {
    margin-bottom: 4px;
}

div.dt-buttons {
    float: right !important;
}

div.dt-paging{
    float:right
}

.as-btn-copy-key{
    position: relative;
    right: -5px;
    top: 10px;
}

.as-spinner{
    height: 15px;
    width: 15px;
    border: 2px solid white;
    border-right: 2px solid transparent;
}

.btn-price-option{
    padding: 5px 10px;
}

.page-title-box {
    padding: 4px 1.5rem;
}

.select2-container--default .select2-selection--single {
    border: 1px solid rgba(56, 65, 74, .15) !important;
}

.docs-section{
    min-height: 400px;padding-top: 50px !important;
}

.a_custom_field {
    padding: 2px 15px;
}

.select2-container--default .select2-selection--single {
    background-color: var(--vz-header-bg) !important;
}

.select2-results__option {
    background: var(--vz-header-bg) ;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--vz-body-color) !important;
}

/*.select2-container--default .select2-results__option[aria-selected=true] {*/
/*    background: var(--vz-header-bg) !important;*/
/*}*/

.dt-container .dt-layout-row label {
    margin-left: 10px;
    margin-right: 10px;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #ddd;
    color: black;
}

label.is-required::after {
    content: '*';
    color: #ff5b5b;
    font-size: 15px;
}

span.select2-dropdown.select2-dropdown--below{
    min-width:200px !important;
}

a.disabled{
    pointer-events: none;
    background-color: #384c8b96;
    border-color: #384c8b96;
    text-decoration: none;
}

.form-group {
    margin-bottom: 10px;
}

@media (max-width: 991.98px) {
    .navbar-landing .nav-item .nav-link {
        color: black !important;
    }
}

.card {
    --vz-card-title-color: #000000;
}
:root, [data-bs-theme=light] {
    --vz-heading-color: #303030;
}

.price-two {
    position: relative;
    overflow: hidden;
    padding: 110px 0px 80px;
    background-color: rgb(240 243 255);
}
.as-plan-flag-sm {
    height: 16px;
    padding-right: 10px;
}

.as-plan-flag {
    height: 33px;
    padding-right: 10px;
}

.as-plan-card {
    min-width: 150px;
    margin-bottom: 20px;
    opacity: 1 !important;
    border-radius: 55px;
    z-index: 2;
}
.as-plan-card-item {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);padding: 25px;
    transition: all 0.3s;
}

.fab {
    font-family: 'Font Awesome 5 Brands';
}

.bg-dark {
    --vz-bg-opacity: 1;
    background-color: #141a2f !important;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
}

/* @media (max-width: 1699.98px) { */
    .layout-bottomside-col .layout-bottomside {
        margin-left: 0;
        width: 100%;
        height: auto;
        bottom: 0;
        position: fixed;
    }
/* } */

/* @media (max-width: 1699.98px) { */
    .layout-bottomside-col .overlay {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: #0000006e;
    }
/* } */

/* @media (max-width: 1699.98px) { */
    .layout-bottomside-col {
        display: none;
        position: fixed !important;
        width: 100%;
        bottom: 0;
        z-index: 1004;
    }
/* } */

.layout-bottomside {
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    position: fixed;
    bottom: 0;
}

.as-service-contents{
    min-height: 145px;
}

.as-company-img-container,.as-domain-img-container{
    min-height: 200px;
    width: 100%;
    border: 1px solid #e9ebec;
    background: #d1d1d1a6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.as-company-img-container img,.as-domain-img-container img{
    width: 100%;
}

.as-custom-content-container{
    height: 73vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.as-custom-content-container ::-webkit-scrollbar {
    width: 8px;
}
.as-custom-content-container ::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.as-custom-content-container ::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}
.as-custom-content-container ::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.as-custom-content-container ::-webkit-scrollbar-thumb:active {
    background: #555;
}
.as-custom-content-container ::-webkit-scrollbar-corner {
    background: #f1f1f1;
}
.as-custom-content-container ::-webkit-scrollbar-button {
    background: #f1f1f1;
}
.as-custom-content-container ::-webkit-scrollbar-button:vertical:decrement {
    background: #f1f1f1;
}
.as-custom-content-container ::-webkit-scrollbar-button:vertical:increment {
    background: #f1f1f1;
}
.as-custom-content-container ::-webkit-scrollbar-button:horizontal:decrement {
    background: #f1f1f1;
}
.as-custom-content-container ::-webkit-scrollbar-button:horizontal:increment {
    background: #f1f1f1;
}
.as-custom-content-container ::-webkit-scrollbar-button:vertical:decrement:hover {
    background: #f1f1f1;
}
.as-custom-content-container ::-webkit-scrollbar-button:vertical:increment:hover {
    background: #f1f1f1;
}
.as-custom-content-container ::-webkit-scrollbar-button:horizontal:decrement:hover {
    background: #f1f1f1;
}
.as-custom-content-container .tab-content{
    height: 100%;
}

.as-top-action-container{
    position: absolute;
    width: fit-content;
    top: 8px;
    right: 8px;
    text-align: right !important;
}

.div-media-buttons {
    position: absolute !important;
    top: 5px;
    right: 5px;
    display: flex;
}

.btn-media-buttons {
    border-radius: 50%;
    width: 29px;
    height: 27px;
    margin-left: 2px;
}

.page-title-box {
    margin-bottom: 12px;
}

input.input-select-page {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: none;
}

.td-select-page {
    padding: 0px !important;
}

.td-select-page.checked {
    background-color: #f0f0f0;
}

.td-select-page.checked label {
    font-weight: bold;
}

.page-check-label {
    width: 100%;
    padding: 12px;
}

.text-content-keyname {
    font-size: 11px;
    color: grey;
    margin-bottom: 2px;
}

.as-custom-tab-table td {
    padding: 2px 0px;
    border: 0px;
}

.auth-pass-inputgroup input[type=text]+.btn .ri-eye-fill:before {
    content: "\ecb6";
}
.ri-eye-fill:before {
    content: "\ecb4";
}

.as-table-vertical-align {
    vertical-align: middle;
}

.nav-link.disabled {
    background-color: #a19f9f2b !important;
    border-color: #f1f1f196 !important;
    text-decoration: none;
    color: #adadad !important;
}

.card-header-tabs .nav-link.active {
    background-color: var(--vz-card-bg);
    border-bottom-color: #405189 !important;
}