﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    /* Set the fixed height of the footer here */
    height: 60px;
    line-height: 60px; /* Vertically center the text there */
}

.app-imgexpand {
    cursor: zoom-in;
}

aside.default-aside .sidebar ul li a {
    padding-left: 1.4rem;
}

.topic-overlay {
    background-color: rgba(0, 0, 0, 0.65);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 100000;
    overflow: hidden;
    display: none;
}

aside.default-aside .sidebar ul li ul li a {
    padding: 0.5rem 2rem;
}

aside.default-aside .sidebar ul li a {
    line-height: unset;
    min-height: 35px;
    height: auto;
    padding-top: .25rem;
    padding-bottom: .25rem;
}

aside.default-aside .sidebar ul li a:hover {
    background-color: #f0f0f0;
    color: black;
}

aside.default-aside .sidebar ul li ul li:hover {
    background-color: #f0f0f0;
    color: black;
}



/* Chatbot styles
-------------------------------------------------- */

/**
 * ==============================================
 * Dot Flashing
 * ==============================================
 */
.dot-flashing {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #3f71b5;
    color: #3f71b5;
    animation: dot-flashing 1s infinite linear alternate;
    animation-delay: 0.5s;
}

.dot-flashing::before, .dot-flashing::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
}

.dot-flashing::before {
    left: -15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #3f71b5;
    color: #3f71b5;
    animation: dot-flashing 1s infinite alternate;
    animation-delay: 0s;
}

.dot-flashing::after {
    left: 15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #3f71b5;
    color: #3f71b5;
    animation: dot-flashing 1s infinite alternate;
    animation-delay: 1s;
}

@keyframes dot-flashing {
    0% {
        background-color: #3f71b5;
    }

    50%, 100% {
        background-color: rgba(63, 113, 181, 0.2);
    }
}

.chatbot-toggler {
    position: fixed;
    bottom: 30px;
    right: 35px;
    outline: none;
    border: none;
    height: 60px;
    width: 60px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #3f71b5;
    transition: all 0.2s ease;
    z-index: 100;
    pointer-events: auto;
}

.chatbot-icon {
    font-size: 30px;
}

.chatbot-notification {
    position: absolute;
    top: -2px;
    right: 2px;
    background-color: red;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    z-index: 103;
    color: white;
    text-align: center;
    vertical-align: middle;
    line-height: 115%;
    font-family: Verdana;
}

body.show-chatbot .chatbot-toggler {
    transform: rotate(90deg);
}

.chatbot-toggler span {
    color: #fff;
    position: absolute;
}

.chatbot-toggler span:last-child,
body.show-chatbot .chatbot-toggler span:first-child {
    opacity: 0;
}

body.show-chatbot .chatbot-toggler span:last-child {
    opacity: 1;
}

.chatbot-alert {
    position: fixed;
    width: 270px;
    right: 100px;
    bottom: 40px;
    border-radius: 10px 10px 0px 10px;
    background-color: #dedede;
    padding: 7px 15px;
    line-height: 20px;
    font-size: 13px;
    color: black;
    z-index: 100;
    font-weight: 400;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .2);
}

.chatbot {
    position: fixed;
    right: 35px;
    bottom: 90px;
    width: 370px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.5);
    transform-origin: bottom right;
    box-shadow: 0 0 128px 0 rgba(0,0,0,0.1), 0 32px 64px -48px rgba(0,0,0,0.5);
    transition: all 0.1s ease;
    height: 70%;
}

.chatbot-history {
    background: #fff;
    border-radius: 15px;
    transform-origin: bottom right;
    box-shadow: 0 0 128px 0 rgba(0,0,0,0.1), 0 32px 64px -48px rgba(0,0,0,0.5);
    transition: all 0.1s ease;
    height: 500px;
    overflow: auto;
    width: 500px;
    margin: 20px;
    padding: 30px 12px 100px;
}

.chatbot-agent {
    position: relative;
    width: 390px;
    height: 550px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    opacity: 1;
    transform-origin: bottom right;
    box-shadow: 0 0 128px 0 rgba(0,0,0,0.1), 0 32px 64px -48px rgba(0,0,0,0.5);
    transition: all 0.1s ease;
    transform: scale(1) translateY(-10%);
    pointer-events: auto;
    padding: 0;
}

body.show-chatbot .chatbot {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    z-index: 1001;
}

.chatbot header {
    padding: 16px 0;
    position: relative;
    color: #fff;
    background: #3f71b5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.chatbot header span {
    position: absolute;
    right: 15px;
    top: 50%;
    display: none;
    cursor: pointer;
    transform: translateY(-50%);
}

header h2 {
    font-size: 15px;
    font-weight: 600;
}

.chatbot .chatbox {
    overflow-y: auto;
    height: 90%;
    padding: 30px 24px 100px;
}

.chatbot :where(.chatbox, textarea)::-webkit-scrollbar {
    width: 6px;
}

.chatbot :where(.chatbox, textarea)::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 25px;
}

.chatbot :where(.chatbox, textarea)::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 25px;
}

.chatbox .chat {
    display: flex;
    list-style: none;
}

.chatbox .outgoing {
    margin: 20px 0 0;
    justify-content: flex-end;
}

.chatbox .incoming {
    margin: 5px 0;
}

.chatbox .incoming span {
    width: 32px;
    height: 32px;
    color: #fff;
    cursor: default;
    text-align: center;
    line-height: 32px;
    align-self: flex-end;
    background: #3f71b5;
    border-radius: 100%;
    margin: 0 10px 7px 0;
}


.chatbox .chat p {
    white-space: pre-wrap;
    padding: 12px;
    border-radius: 10px 10px 0 10px;
    max-width: 100%;
    color: #fff;
    font-size: 13px;
    background: #3f71b5;
    margin-bottom: 0px;
    word-break: break-word;
}


.chatbox .incoming .incoming-button {
    background: white;
    border-radius: 5px;
    border: 2px solid #d2d2d2;
    font-size: 13px;
    padding: 5px;
    color: #494949;
    width: 100%;
    text-align: left;
    padding: 8px 12px;
}

.chatbox .incoming .incoming-button:hover {
    border: 2px solid #929292;
    color: #525252;
}

.chatbox .incoming p {
    border-radius: 10px 10px 10px 0;
}

.chatbox .chat p.error {
    color: #721c24;
    background: #f8d7da;
}

.chatbox .incoming p {
    color: #000;
    background: #f2f2f2;
    border-radius: 10px 10px 10px 0;
}

.chatbot .chat-input {
    display: flex;
    gap: 5px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #fff;
    padding: 3px 20px;
    border-top: 1px solid #ddd;
}

.chat-input textarea {
    height: 60px;
    width: 100%;
    border: none;
    outline: none;
    resize: none;
    max-height: 180px;
    padding: 15px 15px 15px 0;
    font-size: 14px;
    background-color: white;
}

.chat-input span {
    align-self: flex-end;
    color: #3f71b5;
    cursor: pointer;
    height: 55px;
    display: flex;
    align-items: center;
    visibility: hidden;
    font-size: 1.35rem;
}

.chat-input textarea:valid ~ span {
    visibility: visible;
}

.chatbox .chat-timestamp {
    font-size: 10px;
}

.chatbox .chat-ending-tag {
    text-align: center;
    font-size: 12px;
    margin-top: 4px;
}

.chatbox .chat-timestamp-outgoing {
    font-size: 10px;
    justify-content: flex-end;
    display: flex;
    margin: 5px 0 20px 0;
}

.chatbot .end-icon {
    cursor: pointer;
    transform: scale(1.3);
    margin-right: 0.8rem;
    padding: 0.25rem;
}

.chatbot .button-icon {
    background: transparent;
    color: white;
    border: none;
}

.chatbot .minimise-icon {
    cursor: pointer;
    transform: scale(1.2) translateY(-1.2px);
}

.chatbot-wrapper {
    position: absolute;
    height: 100dvh;
    width: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

@media (max-width: 490px) {
    .chatbot-toggler {
        right: 20px;
        bottom: 20px;
    }

    .chatbot-open {
        overflow: hidden !important;
        position: relative !important;
    }

    .chatbot {
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        height: 100dvh;
        border-radius: 0;
        width: 100dvw;
        overflow-y: auto;
        z-index: 1001;
    }

    .chatbot .chatbox {
        overflow: auto;
        padding: 25px 15px 100px;
    }

    .chatbot .chat-input {
        padding: 5px 15px;
    }

    .chatbot header span {
        display: block;
    }
}


/* Resolution Card styles
-------------------------------------------------- */
.resolve-card-container {
    width: 300px;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    position: relative;
    margin: 20px;
    height: auto;
}

.resolve-card-container .resolve-card-email {
    font-size: 16px;
    position: relative;
}

.resolve-card-container .resolve-card-title {
    font-size: 18px;
    color: #333;
    margin: 10px 0;
}

.resolve-card-details {
    margin-top: 20px;
    height: auto;
}

.resolve-card-container .resolve-card-description {
    color: #3b3b3b;
    font-size: 14px;
    margin: 5px 0 5px !important;
    word-wrap: break-word;
}

.resolve-card-container .resolve-card-mobile {
    display: block;
    color: #555;
    font-size: 14px;
    margin-bottom: 0px !important;
}

.resolve-card-container .resolve-card-history {
    float: right;
    margin: 10px 0px;
}

.resolve-card-button {
    display: inline-block;
    padding: 5px 0;
    background-color: #3f71b5;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    width: 100%;
    font-weight: 500;
    transition: 0.2s ease;
}

.resolve-card-button:hover {
    background: #51afd5;
    color: #fff;
}


/* Fixed cookie styles
-------------------------------------------------- */
.cookie-consent-wrapper {
    z-index: 103;
    position: fixed;
    bottom: 5%;
    right: 2%;
    width: 400px;
    height: auto;
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.cookie-consent-wrapper > div > button {
    width: 80px;
}

.cookie-consent-wrapper .data {
    margin-top: 16px;
}

.cookie-consent-wrapper .data p {
    color: #333;
    font-size: 14px;
}

.cookie-consent-wrapper p a:hover {
    text-decoration: underline;
}

.cookie-consent-wrapper .cookie-buttons {
    margin-top: 14px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-buttons .btn {
    text-align: center;
    border-radius: 8px;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
}

.cookie-buttons .btn-accept {
    background: #3f71b5;
    color: #fff;
    border: 1px solid #51afd5;
}

.cookie-buttons .btn-accept:hover {
    border: 1px solid #51afd5;
    background: #51afd5;
    color: #fff;
}

.cookie-accordion .card {
    margin-top: 4px;
    margin-bottom: 4px;
    font-size: 14px;
}

.cookie-accordion .card-header {
    padding-top: 0px;
    padding-bottom: 0px;
}

.cookie-accordion button i {
    float: left;
    height: 32px;
    line-height: 32px;
    margin-right: 12px;
    font-size: 14px;
    color: #3B566E;
}

.cookie-accordion button span {
    float: left;
    height: 32px;
    line-height: 32px;
    font-weight: 400;
    font-size: 14px;
    color: #6F8BA4;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.cookie-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.enable-cookie-span {
    height: 32px;
    line-height: 32px;
    font-weight: 500;
    font-size: 14px;
    color: #6F8BA4;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

/* The switch - the box around the slider */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
}

/* Hide default HTML checkbox */
.cookie-switch input {
    display: none;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    transform: translate(20%, 20%);
}

.slider:before {
    position: absolute;
    content: "";
    height: 17px;
    width: 17px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #52AF52;
}

input:focus + .slider {
    box-shadow: 0 0 1px #52AF52;
}

input:checked + .slider:before {
    -webkit-transform: translateX(17px);
    -ms-transform: translateX(17px);
    transform: translateX(17px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}


/*Start of Desktop View*/
@media only screen and (min-width: 992px) {
    .show-mobile {
        display: none;
    }

    .static-button {
        display: none;
    }
}

.app-truncate {
    text-overflow: clip;
    white-space: normal;
    word-break: break-all;
    min-width: 10rem;
}

/* start banner */

.banner-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    padding: 8px 0px;
    background-color: #3f71b5;
    color: white;
}

.banner-para {
    width: 80%;
    font-size: 13px;
    margin: 0 auto;
    color: white;
    text-align: center;
}

.banner-close {
    position: absolute;
    right: 20px;
    font-size: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: white !important;
}


/* start pricing */
.pricing-item .pricing-header .pricing-hexagon {
     color: lightskyblue;
     left: 50%;
     top: 50%;
     font-size: 75px;
     position: absolute;
     transform: translate(-50%, -32%);
     pointer-events: none;
}

.pricing-item .pricing-digit {
    position: absolute;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 15%);
    font-size: 22px;
    font-weight: 600;
}

.pricing-item .pricing-header {
    border-bottom: 1px solid #E2EBFF;
    text-align: center;
    height: 20px;
    display: block;
    position: relative;
}

.pricing-item .pricing-header .number-hexagon {
    width: 48px;
    height: 28px;
    background: #fff;
    position: relative;
    bottom: -32px;
    margin: auto;
}

.pricing-item .pricing-header .number-hexagon:before {
    border-bottom: 15px solid #fff;
}

.pricing-item .pricing-header .number-hexagon:after {
    border-top: 14px solid #fff;
}

.pricing-item .pricing-body .list li.active1 {
    color: #3B566E;
    text-align: left;
}

.pricing-item.active1 .pricing-header {
    background-image: linear-gradient(127deg, #19c8ce 0%, #19c4cf 0%);
}

.pricing-item.active2 .pricing-header {
    background-image: linear-gradient(127deg, #19c8ce 0%, #199ae4 0%);
}

.pricing-item.active3 .pricing-header {
    background-image: linear-gradient(127deg, #19c8ce 0%, #1a69fb 0%);
}

.pricing-item .pricing-body .price-wrapper .price1 {
    font-weight: 300;
    font-size: 28px;
    color: #3f71b5;
    letter-spacing: 2.12px;
}

.pricing-item.active1 .pricing-footer a {
    background: #3f71b5;
    color: #fff;
}

.pricing-item.active1 .pricing-footer a:hover {
    background: #19c4cf;
    color: #fff;
}

.pricing-item.active2 .pricing-footer a {
    background: #3f71b5;
    color: #fff;
}

.pricing-item.active2 .pricing-footer a:hover {
    background: #199ae4;
    color: #fff;
}

.pricing-item.active3 .pricing-footer a {
    background: #3f71b5;
    color: #fff;
}

.pricing-item.active3 .pricing-footer a:hover {
    background: #1a69fb;
    color: #fff;
}

.pricing-item .pricing-footer a {
    width: 210px;
    border: 1px solid #3f71b5;
}

.pricing-spacer-height-freetrial {
    height: 240px;
}

.pricing-spacer-height-enterprise {
    height: 236px;
}

.pricing-item .pricing-header .number-hexagon span.price-digit1 {
    color: #19c8ce;
}

.pricing-item .pricing-header .number-hexagon span.price-digit2 {
    color: #199ae4;
}

.pricing-item .pricing-header .number-hexagon span.price-digit3 {
    color: #1a69fb;
}

li.active1 {
    list-style-position: outside;
    margin-left: 10px;
    padding: 5px 0;
    font-weight: 400;
    font-size: 16px !important;
}
/* end pricing */

/* start button primary */
/*main index page buttons*/
.header-area {
    z-index: 1001;
}

.header-area .main-nav .header-buttons li .btn-nav-primary1-trial {
    background: #3f71b5;
    color: #fff;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    margin-left: 15px;
    margin-top: 32px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    top: 28px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.header-area .main-nav .header-buttons li .btn-nav-primary1-login {
    background: #fff;
    color: #3f71b5;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1px solid #FFFFFF;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    border: 1px solid #FFFFFF;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    margin-left: 15px;
    margin-top: 32px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    top: 28px;
    border-color: #3f71b5;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.header-area .main-nav .header-buttons li .btn-nav-primary1-trial:hover {
    border: 1px solid #51afd5;
    background: #51afd5;
    color: #fff;
}

.header-area .main-nav .header-buttons li .btn-nav-primary1-login:hover {
    border: 1px solid #51afd5;
    background: #51afd5;
    color: #fff;
}

.header-area.header-sticky .header-buttons li .btn-nav-primary1 {
    background: #3f71b5;
    color: #fff;
    margin-top: 24px;
    border: 1px solid #3f71b5;
}

.static-button {
    position: absolute;
    z-index: 10;
    top: 0px;
}

.mobile-static-button {
    padding-left: 25px;
    padding-right: 25px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    display: inline-block;
    height: 36px;
    width: 130px;
    text-align: center;
    line-height: 34px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    background: #3f71b5;
    color: #fff !important;
    position: relative;
    overflow: hidden;
    margin-left: 250px;
    margin-top: 22px;
    margin-bottom: 50px;
    position: absolute;
    top: 1px;
    font-weight: 700;
    font-size: 8px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.mobile-static-button:hover {
    background: #51afd5;
    color: #fff;
}

.header-text h1, .header-text-v2 h1 {
    font-size: 50px !important;
    line-height: 60px !important;
}

.header-text .btn-nav-primary2-trialbtnblue, .header-text-v2 .btn-nav-primary2-trialbtnblue {
    padding: 4px;
    padding-left: 25px;
    padding-right: 25px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    display: inline-block;
    width: 210px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 34px;
    letter-spacing: 0.2px;
    background: #3f71b5;
    color: #fff;
    position: relative;
    font-weight: 700;
    font-size: 14px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.header-text-v2 .btn-nav-primary2-trialbtnblue:hover {
    background: #51afd5;
    color: #fff;
}

.header-text .btn-nav-primary2-trialbtnwhite {
    padding: 4px;
    padding-left: 25px;
    padding-right: 25px;
    border: 1px solid #3f71b5;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    display: inline-block;
    height: auto;
    width: 210px;
    text-align: center;
    margin: auto;
    margin-top: 5px;
    margin-bottom: 0px;
    line-height: 34px;
    letter-spacing: 0.2px;
    background: #fff;
    color: #3f71b5;
    position: relative;
    overflow: hidden;
    margin-left: 190px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 14px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.header-text .btn-nav-primary2-trialbtnwhite:hover {
    background: #51afd5;
    color: #fff;
}

.header-text .btn-nav-primary2:hover {
    border: 1px solid #fff;
    background: #51afd5;
    color: #fff;
}

.starinstanttrial-text {
    font-weight: 300;
    font-size: 28px;
    color: #1E3056;
    letter-spacing: 2.12px;
    text-align: center;
}

.welcome-area .header-text p {
    margin-bottom: 20px;
}

.additional-home-text {
    width: 300px;
    font-size: 13px !important;
    color: black;
}

/* end Index Page */

/*Instant Trial Page */

@media (max-width: 767px) {

    .trial-image {
        display: none;
    }

}

.btn-primary-line {
    background: #3f71b5;
    color: #fff;
    border: #3f71b5;
}

.left-heading .section-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #6F8BA4;
    margin-bottom: 10px;
}

.section-title-sub {
    font-size: 1.2rem;
}

.context-text .py-2 {
    font-size: 120px;
}

.form-check-inline {
    line-height: 20px;
    text-align: left;
}
/*Adjusting container heights of index page*/
.h1-70 {
    margin-top: 70px;
}

.h1-120 {
    margin-top: 120px;
}

.h2-550 {
    margin-top: 25px;
    margin-right: 550px;
    margin-left: 2%;
    width: 550px;
}

.container-spacer-height {
    height: 25px;
}

.container-spacer-height2 {
    height: 78px;
}

.containertrader-spacer-height {
    height: 33px;
}

.containeroperator-spacer-height {
    height: 7px;
}

.containercompliance-spacer-height {
    height: 58px;
}

.containermanagement-spacer-height {
    height: 32px
}

.container-customize-spacer-height {
    height: 50px;
}

.core-logo {
    padding-bottom: 10px;
}

.page .page-bottom {
    font-size: 14px;
}

.form-check-label {
    margin-bottom: 0.1rem;
}

.form-check-label-mkt {
    margin-bottom: 0.15rem;
}

.pb-2, .py-2 {
    padding-bottom: 1.5rem !important;
}

.spanholder-one {
    height: 15px;
}

.spanholder-two {
    height: 15px;
}

.spanholder-four {
    height: 15px;
}

/*Privacy Policy Page*/
.privacy-header {
    font-size: 2.0rem;
    font-weight: bold;
}

.form-group-1 {
    margin-top: 1.0rem;
    margin-bottom: -0.9rem;
}

.personal-info-ul {
    margin-top: -2%;
}

.h4 {
    margin-bottom: 10px;
}

.privacy-subheaders {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

/*Terms of Service Page*/
.service-header {
    font-size: 2.0rem;
    font-weight: bold;
}

.service-subheaders {
    margin-bottom: 1.0rem;
    font-weight: bold;
}

.service-sub-points {
    margin-bottom: 0.5rem;
}
/*Support Page*/
.contact-link:hover {
    color: inherit;
}

.sidebar .accordion-item {
    border: 0;
}

/*Platform Page*/
.platform-features-list .platform-features {
    text-indent: -1em;
}
/*Mobile view template, covers Iphone XR screen size 414px */
@media only screen and (min-width: 0px) and (max-width: 991px) {

    .welcome-area .header-text {
        height: 97%;
    }

    .welcome-area .header-hexagon-bg {
        position: relative;
        min-height: 0px;
        z-index: 4;
    }

    .welcome-area .header-content {
        min-width: 0px;
    }

    .logo-image {
        width: 160px;
    }

    .show-mobile {
        display: block;
    }

    .cookie-consent-wrapper {
        height: auto;
        width: 90%;
        right: 50%;
        transform: translateX(50%);
    }

    /* index home page display for mobile view*/
    .header-area .main-nav .menu-trigger {
        right: 25px;
        margin-left: 25px;
        margin-top: -7px;
    }

/*    .header-area .main-nav .logo img {
        margin-left: 30px;
    }
*/
    .welcome-area .header-text h1 {
        padding-left: 0px !important;
        padding-right: 60px !important;
        width: 450px !important;
        font-size: 16px !important;
        font-weight: 800;
        color: black;
        letter-spacing: 0px;
    }

    .welcome-area .header-text p {
        margin-bottom: 5px;
        padding-left: 50px !important;
        padding-right: 85px !important;
        width: 430px !important;
        font-size: 14px;
        color: black;
    }

    .h1-text {
        margin-bottom: 15px !important;
    }

    .header-text .btn-nav-primary2-trialbtnblue {
        margin-left: 80px !important;
        margin-bottom: 1px !important;
    }

    .additional-home-text {
        width: 300px;
        font-size: 12px !important;
    }

    .parallax {
        padding-top: 0px;
        padding-bottom: 0px;
        min-height: 150px;
    }

    .parallax:before {
        opacity: 0.9;
    }

    .h2-550 {
        font-size: 18px;
    }
}
/*end of mobile view layout */

/* Layout for small devices from 300px to 413px
   Includes smallest common device at 320px
*/
@media only screen and (min-width: 300px) and (max-width: 413px) {

    .header-area .main-nav .menu-trigger {
        /*left: 1px;*/
        right: 25px;
        margin-left: 25px;
        margin-top: -7px;
    }

    .header-area .main-nav .logo img {
        width: 47% !important;
    }

    .mobile-static-button {
        margin-left: 61% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        height: 35px !important;
        width: 100px !important;
        font-size: 7px !important;
    }

    .welcome-area .header-text h1 {
        font-size: 14px !important;
        width: 125% !important;
    }

    .welcome-area .header-text p {
        font-size: 12px;
        width: 342px !important;
        padding-left: 0.5% !important;
        margin-left: 5%;
    }

    .header-text .btn-nav-primary2-trialbtnblue {
        margin-left: 45px !important;
    }

    .additional-home-text {
        font-size: 10px !important;
        width: 400px !important;
        margin-left: 5%;
    }

    .h2-550 {
        margin-left: -4%;
        width: 110% !important;
    }

    .header-text .btn-nav-primary2-trialbtnwhite {
        margin-left: 16% !important;
    }
}

@media only screen and (min-width: 321px) and (max-width: 341px) {

    .welcome-area .header-text p {
        font-size: 12px;
        width: 342px !important;
        padding-left: 0.5% !important;
        margin-left: 8%;
    }

    .additional-home-text {
        font-size: 10px !important;
        width: 400px !important;
        margin-left: 8%;
    }
}

@media only screen and (min-width: 326px) and (max-width: 341px) {

    .header-text .btn-nav-primary2-trialbtnwhite {
        margin-left: 19% !important;
    }
}

@media only screen and (min-width: 342px) and (max-width: 360px) {

    .welcome-area .header-text p {
        font-size: 12px;
        width: 342px !important;
        padding-left: 0.5% !important;
        margin-left: 11%;
    }

    .header-text .btn-nav-primary2-trialbtnblue {
        margin-left: 55px !important;
    }

    .additional-home-text {
        font-size: 10px !important;
        width: 400px !important;
        margin-left: 11%;
    }

    .header-text .btn-nav-primary2-trialbtnwhite {
        margin-left: 20% !important;
    }
}

@media only screen and (min-width: 348px) and (max-width: 360px) {

    .h2-550 {
        margin-left: 7%;
        width: 90% !important;
    }

    .header-text .btn-nav-primary2-trialbtnwhite {
        margin-left: 20% !important;
    }
}

@media only screen and (min-width: 354px) and (max-width: 360px) {

    .header-text .btn-nav-primary2-trialbtnwhite {
        margin-left: 22% !important;
    }
}

@media only screen and (min-width: 361px) and (max-width: 369px) {

    .header-area .main-nav .logo img {
        width: 50% !important;
    }

    .mobile-static-button {
        margin-left: 64% !important;
        height: 35px !important;
        width: 110px !important;
        font-size: 8px !important;
    }

    .welcome-area .header-text h1 {
        font-size: 16px !important;
    }

    .welcome-area .header-text p {
        font-size: 14px;
        width: 381px !important;
        margin-left: 6%;
    }

    .header-text .btn-nav-primary2-trialbtnblue {
        margin-left: 62px !important;
    }

    .additional-home-text {
        font-size: 12px !important;
        width: 400px !important;
        margin-left: 13%;
    }

    .h2-550 {
        margin-left: 7%;
        width: 90% !important;
    }

    .header-text .btn-nav-primary2-trialbtnwhite {
        margin-left: 22% !important;
    }
}

@media only screen and (min-width: 370px) and (max-width: 374px) {

    .header-area .main-nav .logo img {
        width: 50% !important;
    }

    .mobile-static-button {
        margin-left: 64% !important;
        height: 35px !important;
        width: 110px !important;
        font-size: 8px !important;
    }

    .welcome-area .header-text h1 {
        font-size: 16px !important;
    }

    .welcome-area .header-text p {
        font-size: 14px;
        width: 381px !important;
        margin-left: 7%;
    }

    .header-text .btn-nav-primary2-trialbtnblue {
        margin-left: 62px !important;
    }

    .additional-home-text {
        font-size: 12px !important;
        width: 400px !important;
        margin-left: 13%;
    }

    .h2-550 {
        margin-left: 9%;
        width: 85% !important;
    }

    .header-text .btn-nav-primary2-trialbtnwhite {
        margin-left: 23% !important;
    }
}

@media only screen and (min-width: 375px) and (max-width: 379px) {

    .welcome-area .header-text h1 {
        font-size: 16px !important;
        width: 125% !important;
    }

    .mobile-static-button {
        margin-left: 64% !important;
        height: 35px !important;
        width: 110px !important;
        font-size: 8px !important;
    }

    .welcome-area .header-text p {
        font-size: 14px;
        width: 384px !important;
        padding-left: 0.5% !important;
        margin-left: 10%;
    }

    .header-text .btn-nav-primary2-trialbtnblue {
        margin-left: 68px !important;
    }

    .additional-home-text {
        font-size: 12px !important;
        width: 400px !important;
        margin-left: 16%;
    }

    .h2-550 {
        margin-left: 9%;
        width: 85% !important;
    }

    .header-text .btn-nav-primary2-trialbtnwhite {
        margin-left: 23% !important;
    }
}

@media only screen and (min-width: 380px) and (max-width: 399px) {

    .welcome-area .header-text h1 {
        font-size: 16px !important;
        width: 125% !important;
    }

    .mobile-static-button {
        margin-left: 64% !important;
        height: 35px !important;
        width: 110px !important;
        font-size: 8px !important;
    }

    .welcome-area .header-text p {
        font-size: 14px;
        width: 384px !important;
        padding-left: 0.5% !important;
        margin-left: 10%;
    }

    .header-text .btn-nav-primary2-trialbtnblue {
        margin-left: 80px !important;
    }

    .additional-home-text {
        font-size: 12px !important;
        width: 400px !important;
        margin-left: 16%;
    }

    .h2-550 {
        margin-left: 9%;
        width: 85% !important;
    }

    .header-text .btn-nav-primary2-trialbtnwhite {
        margin-left: 24% !important;
    }
}

@media only screen and (min-width: 400px) and (max-width: 413px) {

    .welcome-area .header-text h1 {
        font-size: 16px !important;
        width: 125% !important;
    }

    .mobile-static-button {
        margin-left: 62% !important;
        height: 35px !important;
        width: 130px !important;
        font-size: 8px !important;
    }

    .welcome-area .header-text p {
        font-size: 14px;
        width: 384px !important;
        padding-left: 0.5% !important;
        margin-left: 12%;
    }

    .header-text .btn-nav-primary2-trialbtnblue {
        margin-left: 85px !important;
    }

    .additional-home-text {
        font-size: 12px !important;
        width: 400px !important;
        margin-left: 12%;
    }

    .h2-550 {
        margin-left: 9%;
        width: 85% !important;
    }

    .header-text .btn-nav-primary2-trialbtnwhite {
        margin-left: 25% !important;
    }
}

@media only screen and (min-width: 414px) and (max-width: 420px) {

    .welcome-area .header-text h1 {
        font-size: 16px !important;
        width: 125% !important;
    }

    .mobile-static-button {
        margin-left: 62% !important;
        height: 35px !important;
        width: 130px !important;
        font-size: 8px !important;
    }

    .welcome-area .header-text p {
        font-size: 14px;
        width: 384px !important;
        padding-left: 0.5% !important;
        margin-left: 12%;
    }

    .header-text .btn-nav-primary2-trialbtnblue {
        margin-left: 85px !important;
    }

    .additional-home-text {
        font-size: 12px !important;
        width: 400px !important;
        margin-left: 12%;
    }

    .h2-550 {
        margin-left: 8%;
        width: 90% !important;
    }

    .header-text .btn-nav-primary2-trialbtnwhite {
        margin-left: 27% !important;
    }
}
/*
    Set template screen size of above Iphone XR
    Breakpoint,420px to 991px

*/
@media only screen and (min-width: 420px) and (max-width: 990px) {

    .welcome-area .header-text h1 {
        font-size: 16px !important;
        width: 125% !important;
    }

    .cookie-consent-wrapper {
        bottom: 5%;
        right: 220px;
        width: 380px;
        height: auto;
    }

    .mobile-static-button {
        margin-left: 62% !important;
        height: 35px !important;
        width: 130px !important;
        font-size: 8px !important;
    }

    .welcome-area .header-text p {
        font-size: 14px;
        width: 384px !important;
        padding-left: 0.5% !important;
        margin-left: 12%;
    }

    .header-text .btn-nav-primary2-trialbtnblue {
        margin-left: 85px !important;
    }

    .additional-home-text {
        font-size: 12px !important;
        width: 400px !important;
        margin-left: 12%;
    }

    .h2-550 {
        margin-left: 7%;
        width: 90% !important;
    }

    .header-text .btn-nav-primary2-trialbtnwhite {
        margin-left: 27% !important;
    }
}

@media only screen and (min-width: 422px) and (max-width: 437px) {

    .welcome-area .header-text p {
        font-size: 14px;
        margin-left: 14%;
    }

    .header-text .btn-nav-primary2-trialbtnblue {
        margin-left: 90px !important;
    }

    .additional-home-text {
        margin-left: 14%;
    }
}

@media only screen and (min-width: 438px) and (max-width: 768px) {

    .welcome-area .header-text h1 {
        width: 145% !important;
    }

    .welcome-area .header-text p {
        font-size: 14px;
        margin-left: 17%;
    }

    .header-text .btn-nav-primary2-trialbtnblue {
        margin-left: 115px !important;
    }

    .additional-home-text {
        margin-left: 14%;
    }
}

@media only screen and (min-width: 454px) and (max-width: 768px) {

    .header-text .btn-nav-primary2-trialbtnwhite {
        margin-left: 29% !important;
    }
}

@media only screen and (min-width: 470px) and (max-width: 768px) {

    .welcome-area .header-text h1 {
        width: 135% !important;
    }
}

@media only screen and (min-width: 484px) and (max-width: 768px) {

    .welcome-area .header-text h1 {
        width: 155% !important;
    }

    .mobile-static-button {
        margin-left: 68% !important;
    }

    .welcome-area .header-text p {
        font-size: 14px;
        margin-left: 20%;
    }

    .header-text .btn-nav-primary2-trialbtnblue {
        margin-left: 125px !important;
    }

}

@media only screen and (min-width: 507px) and (max-width: 768px) {


    .header-text .btn-nav-primary2-trialbtnblue {
        margin-left: 135px !important;
    }

    .header-text .btn-nav-primary2-trialbtnwhite {
        margin-left: 30% !important;
    }
}

@media only screen and (min-width: 513px) and (max-width: 768px) {

    .welcome-area .header-text h1 {
        width: 145% !important;
    }
}

@media only screen and (min-width: 525px) and (max-width: 768px) {

    .welcome-area .header-text p {
        margin-left: 23%;
    }

    .header-text .btn-nav-primary2-trialbtnblue {
        margin-left: 150px !important;
    }
}

@media only screen and (min-width: 543px) and (max-width: 768px) {

    .welcome-area .header-text p {
        margin-left: 23%;
    }

    .header-text .btn-nav-primary2-trialbtnblue {
        margin-left: 150px !important;
    }

    .header-text .btn-nav-primary2-trialbtnwhite {
        margin-left: 33% !important;
    }
}

@media only screen and (min-width: 550px) and (max-width: 768px) {

    .welcome-area .header-text h1 {
        width: 130% !important;
    }

    .welcome-area .header-text p {
        margin-left: 23%;
    }
}

@media only screen and (min-width: 564px) and (max-width: 768px) {

    .show-mobile {
        display: block;
    }

    .welcome-area .header-text p {
        margin-left: 24%;
    }

    .header-text .btn-nav-primary2-trialbtnblue {
        margin-left: 175px !important;
    }
}

@media only screen and (min-width: 576px) and (max-width: 768px) {

    .welcome-area .header-text h1 {
        width: 180% !important;
    }

    .welcome-area .header-text p {
        margin-left: 22%;
    }

    .header-text .btn-nav-primary2-trialbtnblue {
        margin-left: 155px !important;
    }

    .container-config-spacer-height {
        height: 75px;
    }

    .container-customize-spacer-height {
        height: 75px;
    }
}


@media only screen and (min-width: 640px) and (max-width: 768px) {

    .welcome-area .header-text h1 {
        font-size: 20px !important;
        width: 165% !important;
    }

    .mobile-static-button {
        margin-left: 74% !important;
    }

    .welcome-area .header-text p {
        font-size: 18px;
        width: 510px !important;
        margin-left: 55px !important;
    }

    .welcome-area .additional-home-text {
        font-size: 14px !important;
        width: 420px;
    }
}

/*End of mobile devices, Breakpoint 740px to 768px*/

/*  Temnplate for displaying to tablets
    Breakpoint 768px to 990px */
@media only screen and (min-width: 768px) and (max-width: 990px) {

    .welcome-area .header-text h1 {
        font-size: 20px !important;
        width: 147% !important;
    }

    .mobile-static-button {
        margin-left: 78% !important;
    }

    .welcome-area .header-text p {
        font-size: 18px;
        width: 510px !important;
        margin-left: 145px !important;
    }

    .header-text .btn-nav-primary2-trialbtnblue {
        margin-left: 250px !important;
    }

    .welcome-area .additional-home-text {
        font-size: 14px !important;
    }

    .container-customize-spacer-height {
        height: 75px;
    }

    .containertrader-spacer-height {
        height: 50px;
    }

    .containeroperator-spacer-height {
        height: 50px;
    }

    .container-spacer-height2 {
        height: 52px;
    }

    .header-text .btn-nav-primary2-trialbtnwhite {
        margin-left: 38% !important;
    }
}
/*End Tablets template, Breakpoint 768px to 990px*/

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .pricing-item .pricing-body .price-wrapper .price1 {
        font-size: 20px;
    }

    .pricing-spacer-height-freetrial {
        height: 380px;
    }

    .pricing-spacer-height-enterprise {
        height: 402px;
    }

    .active-pricing3 {
        height: 1px;
    }
}

@media only screen and (min-width: 769px) and (max-width: 991px) {

    .container-config-spacer-height {
        height: 70px;
    }
}

@media only screen and (min-width: 820px) and (max-width: 991px) {

    .header-text .btn-nav-primary2-trialbtnwhite {
        margin-left: 38% !important;
    }
}

@media only screen and (min-width: 860px) and (max-width: 991px) {

    .header-text .btn-nav-primary2-trialbtnwhite {
        margin-left: 38% !important;
    }
}

@media only screen and (min-width: 890px) and (max-width: 991px) {

    .mobile-static-button {
        margin-left: 82% !important;
    }
}

/*  Start of mobile/tablet views ,Breakpoint 991px */
@media only screen and (min-width: 991px) and (max-width: 991px) {

    .welcome-area .header-text h1 {
        font-size: 20px !important;
        width: 147% !important;
    }

    .welcome-area .header-text p {
        font-size: 18px;
        width: 510px !important;
        margin-left: 125px !important;
    }

    .header-text .btn-nav-primary2-trialbtnblue {
        margin-left: 255px !important;
    }

    .welcome-area .additional-home-text {
        font-size: 14px !important;
    }

    .h2-550 {
        margin-left: 15% !important;
    }

    .header-text .btn-nav-primary2-trialbtnwhite {
        margin-top: 20% !important;
        margin-left: 40% !important;
    }

    .container-customize-spacer-height {
        height: 100px !important;
    }

    .containertrader-spacer-height {
        height: 50px;
    }

    .containeroperator-spacer-height {
        height: 52px !important;
    }
}

/*End of mobile/tablet views ,Breakpoint 991px*/

@media only screen and (min-width: 970px) and (max-width: 990px) {

    .welcome-area .additional-home-text {
        margin-bottom: 955px !important;
    }
}

/*  
    DESKTOP VIEW RANGES
    Start of Desktop Views, Breakpoint 992px to 1125px 
*/
@media only screen and (min-width: 992px) and (max-width: 1237px) {

    .header-area .main-nav .header-buttons li .btn-nav-primary1-trial {
        padding-left: 11px;
        padding-right: 11px;
        font-size: 10px;
        top: 29px !important;
    }

    .header-area .main-nav .header-buttons li .btn-nav-primary1-login {
        padding-left: 17px;
        padding-right: 17px;
        font-size: 11px;
        top: 29px !important;
    }

    .header-area .main-nav .nav {
        margin-left: 8px;
    }

    .header-text h1 {
        font-size: 22px !important;
        line-height: 30px !important;
    }

    .container-spacer-height2 {
        height: 128px;
    }

    .spanholder-four {
        height: 0px;
    }

    .containertrader-spacer-height {
        height: 57px;
    }

    .containeroperator-spacer-height {
        height: 31px;
    }

    .containercompliance-spacer-height {
        height: 107px;
    }

    .containermanagement-spacer-height {
        height: 100px;
    }

    .h2-550 {
        margin-bottom: 10%;
    }

    .pricing-spacer-height-freetrial {
        height: 284px;
    }

    .pricing-spacer-height-enterprise {
        height: 308px;
    }
}

@media only screen and (min-width: 1100px) and (max-width: 1260px) {

    .header-area .main-nav .nav {
        margin-left: 30px;
    }

    .header-text h1 {
        font-size: 22px !important;
        line-height: 30px !important;
    }

    .btn-nav-primary2-trialbtnwhite {
        margin-left: 35% !important;
    }
}

@media only screen and (min-width: 1126px) and (max-width: 1282px) {

    .header-area .main-nav .nav {
        margin-left: 30px;
    }

    .header-text h1 {
        font-size: 30px !important;
        line-height: 40px !important;
    }

    .h2-550 {
        margin-left: 7%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1282px) {


    .header-area .main-nav .nav {
        margin-left: 30px;
    }

    .header-text h1 {
        font-size: 30px !important;
        line-height: 40px !important;
    }

    .container-spacer-height2 {
        height: 80px;
    }

    .containeroperator-spacer-height {
        height: 5px;
    }

    .containercompliance-spacer-height {
        height: 57px;
    }

    .containermanagement-spacer-height {
        height: 33px;
    }

    .spanholder-one {
        height: 17px;
    }

    .spanholder-four {
        height: 15px;
    }

    .pricing-spacer-height-freetrial {
        height: 235px;
    }

    .pricing-spacer-height-enterprise {
        height: 260px;
    }
}

@media only screen and (min-width: 1201px) and (max-width: 1282px) {

    .header-area .main-nav .nav {
        margin-left: 30px;
    }

    .header-text h1 {
        font-size: 30px !important;
        line-height: 40px !important;
    }

    .container-spacer-height2 {
        height: 80px;
    }

    .containeroperator-spacer-height {
        height: 7px;
    }

    .containercompliance-spacer-height {
        height: 57px;
    }

    .containermanagement-spacer-height {
        height: 30px;
    }
}

/*  Start of Desktop Views, Breakpoint 1100px to 1125px */
@media only screen and (min-width: 1201px) and (max-width: 1282px) {

    .header-text h1 {
        font-size: 40px !important;
        line-height: 40px !important;
    }

    .btn-nav-primary2-trialbtnwhite {
        margin-left: 35% !important;
    }
}
/*End  Breakpoint 1100px to 1125p*/

@media (min-width: 1283px) and (max-width: 1399px) {
    .pricing-spacer-height-freetrial {
        height: 236px;
    }

    .pricing-spacer-height-enterprise {
        height: 260px;
    }

    .header-text .btn-nav-primary2-trialbtnwhite {
        margin-left: 35%;
    }

    .h2-550 {
        margin-left: 9%;
    }
}

@media (min-width: 1400px) {
    .pricing-spacer-height-freetrial {
        height: 236px;
    }

    .pricing-spacer-height-enterprise {
        height: 236px;
    }

    .containeroperator-spacer-height {
        height: 33px;
    }

    .container-config-spacer-height {
        height: 50px;
    }

    .container-spacer-height2 {
        height: 104px;
    }

    .header-text .btn-nav-primary2-trialbtnwhite {
        margin-left: 35%;
    }

    .h2-550 {
        margin-left: 13%;
    }
}


.dropdown-submenu > .dropdown-menu {
    display: none;
}

.dropdown-submenu.show > .dropdown-menu {
    display: flex;
    flex-direction: column;
    position: absolute !important;
    left: 100% !important;
    top: 0 !important;
}

.app-sitenav-side {
    display: block;
    position: fixed;
    left: 0%;
    top: 350px;
    z-index: 10;
    cursor: pointer;
}

.app-sitenav-side-inner {
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    padding: 0.8rem 0.4rem;
    background: linear-gradient(#3f71b5, #19b1d9);
    display: none;
}

.app-sitenav-side-mobile {
    display: none;
    z-index: 104;
}

.app-sitenav-side-desktop {
    display: block;
    z-index: 104;
}

.navSideIcon {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    padding-right: 0.1rem;
    padding-left: 0.1rem;  
    color: black;
}

.blog-content h3 {
    line-height: 1;
}

.blog-post-thumb .blog-content h3 {
    margin-bottom: 1.2rem;
}

.permissionDropdown {
    font-size: 0.875rem;
}

.permissionDropdown div {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
    padding-top: 0.3rem;
    padding-bottom: 0.25rem;
}

.permissionDropdown label {
    margin-left: 0.4rem;
}

.permissionDropdown:hover {
    background-color: var(--bs-dropdown-link-hover-bg);
}

.permissionDropdown *:hover {
    cursor: pointer;
}

#permissionPillDiv {
    display: flex;
    gap: 0.3rem;
    margin-top: 0.2rem;
}


.articles-group-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.articles-group-card {
    width: 350px;
    height: auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 20px;
    border: .0125rem solid #c1c1c1;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.05);
}

.articles-group-title {
    font-size: 18px;
    font-weight: 500;
    color: #6f8ba4;
}

.articles-group-description {
    margin-top: 0.5rem;
    font-size: 14px;
    line-height: 1.25rem;
    font-weight: 400;
    color: #555;
    text-overflow: clip;
    width: 100%;
    white-space: nowrap;
    word-break: break-all;
    overflow: hidden;
    margin-bottom: 14px !important;
}

.articles-group-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

.articles-group-more_infos {
    color: #6f8ba4;
    font-size: 1rem;
    font-weight: 600;
}

.articles-group-accept {
    font-size: 12px;
    background-color: #51afd5;
    font-weight: 500;
    border-radius: 50px;
    color: #fff;
    padding: 2px 15px;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.articles-group-accept:hover {
    background-color: #3f71b5;
    color: #fff;
}

.topic-sidebar {
    transition: 0.5s cubic-bezier(.36,-0.01,0,.77);
    position: fixed;
    z-index: 100000;
    height: 100%;
    background-color: white;
    overflow-y: scroll;
}

.topic-sidebar .sidebar-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}


.sidebar .accordion-header {
    cursor: pointer;
}

@media (min-width: 576px) {
    #sidebarCol.closed {
        margin-left: 100%;
    }
}

@media (min-width: 768px) {
    #sidebarCol.closed {
        margin-left: 100%;
    }
}

@media (min-width: 992px) {
    #sidebarCol.closed {
        margin-left: -25%;
    }
}


@media only screen and (max-width: 991px) {

    .app-sitenav-side-inner {
        display: block;
    }

    #sidebarDesktop {
        display: none;
    }

    #sidebarCol {
        width: 75%;
    }

    #sidebarCol.closed {
        margin-left: -100%;
    }

    .mobileSidebar {
        display: block;
    }
    .app-sitenav-side-mobile {
        display: block;
    }
    aside.default-aside .sidebar ul li a {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    .blog-content h3 {
        line-height: 1.3;
    }
}

/* Compact checklist under input */
.passwordRules-inline {
list-style: none;
padding: 0;
margin: 6px 0 0;
display: grid;
gap: 4px;
}

.passwordRules-inline li {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.78rem; /* smaller */
line-height: 1.1rem;
color: #6B7280; /* muted grey */
}

/* default icon = empty circle */
.passwordRules-inline li::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 1.5px solid #CBD5E1;
    box-sizing: border-box;
    display: inline-block;
}

/* met rule = green circle + check */
.passwordRules-inline li.ok {
    color: #166534;
    font-weight: 600;
}

.passwordRules-inline li.ok::before {
    content: "✓";
    background: #16A34A;
    border-color: #16A34A;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 14px;
}

/* failed rule = red circle + cross */
.passwordRules-inline li.bad {
    color: #991B1B; /* dark red */
    font-weight: 600;
}

.passwordRules-inline li.bad::before {
    content: "✕";
    background: #EF4444; /* red */
    border-color: #EF4444;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 14px;
}