﻿/* 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. */

:root {
    --enzoColor: #00e6e6;
    --enzoColorDark: #008db1;
}

body {
    padding-top: 50px;
    padding-bottom: 20px;
    overflow-x: hidden;
    /*unnessory hr overlow*/
}



.img-shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

    .img-shadow:hover {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);
    }

/* Fade-in animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
    opacity: 1;
}

/* Slide-in-down animation */
@keyframes slideInDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-in-down {
    animation: slideInDown 0.5s ease-in-out;
    opacity: 1;
}


/* Slide-in-left animation */
@keyframes slideInLeft {
    0% {
        transform: translateX(-50%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-left {
    animation: slideInLeft 0.5s ease-in-out;
    opacity: 1;
}

/* Slide-in-right animation */
@keyframes slideInRight {
    0% {
        transform: translateX(50%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-right {
    animation: slideInRight 0.5s ease-in-out;
    opacity: 1;
}

/* Scale-up animation */
@keyframes scaleUp {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.scale-up {
    animation: scaleUp 0.5s ease-in-out;
    opacity: 1;
}

/* 3D Bounce animation */
@keyframes bounce3D {

    0%, 100% {
        transform: rotateX(0) rotateY(0) translateZ(0);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
    }

    10%, 30% {
        transform: rotateX(0) rotateY(0) translateZ(-20px);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    }

    20%, 40% {
        transform: rotateX(0) rotateY(0) translateZ(0);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
    }

    50%, 70% {
        transform: rotateX(0) rotateY(0) translateZ(-10px);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    }

    60%, 80% {
        transform: rotateX(0) rotateY(0) translateZ(-5px);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    }
}

.bounce-in {
    animation: bounce3D 1s ease-in-out;
}

/* Clamp text to 3 lines with ellipsis at the end */
.clamped-text {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal; /* or 'nowrap' depending on your needs */
    /* max-height: calc(1.2em * 3); /* Adjust the line height and number of lines */
}



.row-neautral {
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

.container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

.darkGreyText {
    color: rgb(63, 68, 85)
}

.bolder {
    font-weight: bolder
}

.jumbotron {
    border-top: solid;
    border-width: 1px;
    border-top-color: darkgray;
    background-image: linear-gradient(rgb(210, 210, 210), white);
}

.enzoColor {
    color: var(--enzoColor) !important
}


.enzoColor2 {
    color: var(--enzoColorDark) !important
}

.enzoColorButton {
    background-color: var(--enzoColor) !important;
    color: black;
    font-size: 14px;
    font-weight: bolder
}

.enzoWhite,
.enzoWhite > a,
.enzoWhite > a:hover,
.enzoWhite > a:visited {
    color: gainsboro !important
}

.col-container {
    display: table;
    width: 100%;
    border-spacing: 10px;
    border-collapse: separate;
}

/*col container transition on hover on col-container*/
.custom-card-transition:hover {
    transform: scale(1.05);
    transition: 0.3s ease;
}

/*enzo usecases*/
.use-case-container {
    /*max-width: 800px;*/
    /* Adjust max-width as needed */
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: row;
    /* Display use cases in a column */
}

.use-case {
    padding: 20px;
    text-align: center;
    background-color: #f0f0f0;
    color: black;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    margin: 0 20px 20px 0;
    /* Add margin between use cases */
    flex-grow: 1;
    /* Allow use cases to grow to fill available space */
    max-width: calc(33.33% - 20px);
    /* Distribute use cases in 3 columns */
    flex-basis: calc(33.33% - 20px);
    /* Set initial size for columns */
    display: flex;
    flex-direction: column;
    /* Display content in a column */
}


.use-case-trasnform:hover {
    transition: transform 0.2s ease;
    transform: scale(1.05);
    /* Apply a scale transform on hover */
    background-color: #f0f0f0;
    cursor: pointer;
    /* Show hand cursor on hover */
    color: black;
    text-decoration: none;
}

.use-case h2 {
    font-size: 24px;
    margin: 16px 0px;
}

.use-case p {
    font-size: 16px;
    margin: 28px 0;
    flex-grow: 1;
}

.use-case img {
    max-width: 100%;
    height: auto;
    align-self: flex-start;
    /* Align images at the top */
}

.use-case .link-container {
    text-align: center;
    margin-top: 16px;
}

.use-case a {
    text-align: center;
    text-decoration: none;
    background-color: white;
    color: black;
    padding: 5px 10px;
    border-radius: 5px;
}

    .use-case a:hover {
        background-color: #f0f0f0;
    }

/* Responsive Media Queries */

@media (max-width: 900px) {
    .use-case-container {
        max-width: 100%;
        padding: 10px;
        flex-direction: column;
    }

    .use-case {
        max-width: 100%;
        padding: 10px;
        margin-bottom: 10px;
    }

        .use-case h2 {
            font-size: 20px;
        }

        .use-case p {
            font-size: 14px;
        }
}



.features-section {
    background-color: #f7f7f7;
    padding: 60px 0;
}

.feature-card {
    background-color: white;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.2s ease;
}

    .feature-card:hover {
        transform: translateY(-5px);
    }

.feature-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.feature-divider {
    border-color: #20e6e6;
    /* Use the same color as your theme for consistency */
}

.feature-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.feature-image {
    max-width: 100%;
    height: auto;
}


.pricing-section {
    /*background-color: #f7f7f7;*/
    padding: 60px 0;
    /*margin:20px 0px;*/
}

.pricing-divider {
    border-color: #20e6e6;
    /* Use the same color as your theme for consistency */
    width: 50%;
    margin-bottom: 20px;
}


.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
}

.section-subtitle {
    font-size: 24px;
    color: #555;
    margin-bottom: 30px;
}

.quote-button-container {
    margin-top: 20px;
}

.quote-button {
    font-size: 20px;
    font-weight: bold;
    color: black;
    background-color: #20e6e6;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .quote-button:hover {
        background-color: #3ddcdc;
    }


.documentation-section {
    background-color: rgb(230, 230, 230);
    padding: 40px 0;
}

.documentation-section-container {
    /*?width:0%;*/
    margin: 8px;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
}

.documentation-card {
    background-color: white;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

    .documentation-card:hover {
        transform: translateY(-5px);
    }

.card-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.card-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.card-button {
    font-size: 18px;
    color: white;
    background-color: #007BFF;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
}

    .card-button:hover {
        background-color: #0056b3;
    }


/*Enzo Data Zen custom css*/

.adapter-image {
    width: 100px;
    /* Adjust the width as needed */
    height: auto;
    margin: 0px;
    /* Add margin to create space between images */
    border: 1px solid #f0f0f0;
    /* Add a border to images */
    border-radius: 5px;
    /* Rounded corners */
    transition: transform 0.2s ease;
    /* Add a subtle hover effect */
    cursor: pointer;
}

    .adapter-image:hover {
        transform: scale(1.1);
        /* Enlarge image slightly on hover */
    }



.alternate-row-color {
    background-color: rgb(230, 230, 230);
}

.header-image {
    display: block;
    margin: 16px auto;
    max-width: 100%;
}

.product-img {
    width: 100%;
    max-width: 570px;
    height: auto;
    object-fit: contain;
    /* Adjusted object-fit property for a different feel */
    border-radius: 8px;
    /* Added border-radius for a subtle rounded look */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Reduced box-shadow for a softer effect */
    transition: transform 0.3s ease-in-out;
    /* Added a smooth hover effect */
}

    /* Hover effect */
    .product-img:hover {
        transform: scale(1.05);
        /* Slightly scale up the image on hover */
    }


.product-img-container {
    display: flex;
    justify-content: center;
}

/*@media screen and (max-width: 767px) {
    .product-img-container {
        flex-direction: column;
    }
}*/

.navbar-button {
    background-color: #00e6e6;
    /*color: darkgray;*/
    /*mix-blend-mode:darken;*/
}

.section-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    /*border-bottom: 4px solid lightgrey;*/
    /*max-width: 1200px;*/
    margin: auto;
}

.section-container-reverse {
    flex-direction: column-reverse;
}

.section-side {
    padding: 40px 0px;
}

.section-heading {
    margin-bottom: 20px;
    font-weight: bold;
    margin-left: 16px;
}

.section-content {
    font-size: 1.7rem;
}

.section-body-list-item {
    display: flex;
    font-size: 18px;
}

    .section-body-list-item p {
        margin-left: 10px;
    }

    .section-body-list-item span {
        font-size: 12px;
    }

.section-li-icon {
    margin-right: 16px;
    font-size: 18px;
}

.section-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.adapter-image {
    width: 70px;
    transition: 0.3s ease;
}

.info-image {
    box-shadow: 0 8px 12px -5px rgba(63, 68, 85, 0.4);
    transition: 0.3s ease;
}

    .info-image:hover {
        box-shadow: 0 40px 24px -10px rgba(63, 68, 85, 0.4)
    }

/*.adapter-image:hover {
    transform: scale(1.1);
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}*/

@media (min-width: 992px) {
    .section-container {
        display: flex;
        flex-direction: row;
        padding: 40px;
    }

    .section-heading {
        margin-bottom: 20px;
    }

    .section-body-list-item {
        display: flex;
    }

    .section-image {
        height: 100%;
        width: auto;
    }
}

/**/
/*custom contianer*/
.row-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

    /*padding of even child of row container*/
    .row-container > *:nth-child(even) {
        margin-left: 10px;
        margin-right: 10px;
    }


/*@media screen and (max-width: 450px) {
    .row-container {
        flex-direction: column;
        -webkit-align-items: center;
        align-items: center;
    }
}*/


.card-panel {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    margin: 10px;
    flex-basis: 30%;
    background-color: aliceblue;
    box-shadow: 2px 2px 2px #e0dddd;
    transition: 0.3s ease;
    min-width: 300px;
    border-bottom: 4px solid #337ab7;
    /*    cursor: pointer;*/
}

    .card-panel img {
        width: 100%;
        height: 50px;
        object-fit: cover;
    }

.card-panel-image-container {
    height: 50px;
}

.card-panel-header-container {
    margin-top: auto;
    padding: 10px;
    text-align: center;
    font-size: 18px;
}


.card-panel-simple {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    margin: 10px;
    flex-basis: 30%;
}

/*@media screen and (max-width: 992px) {
    .card-panel-simple {
        margin: 0px !important;
    }
}*/

.card-panel:hover {
    box-shadow: 5px 5px 5px #e0dddd;
    /*    margin: 20px 24px;*/
    transform: scale(1.05);
}

.card-panel-heading {
}

.card-panel-body {
    flex: 1
}

.card-panel-footer {
    background-color: transparent;
    border: none;
}

    .card-panel-footer a {
        font-weight: bold;
        transition: 0.3s ease;
    }

        .card-panel-footer a:hover {
            /*    color: black;*/
            background-color: #2e6da4;
        }
/*endof custom*/
/* EXTREMELY XSMALL SIZE (small phones) (xs) */
@media screen and (max-width: 399px) {

    .variablePartnerHeader0 {
        padding-bottom: 15px;
        font-size: 28px !important;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .row-container {
        flex-direction: column;
        -webkit-align-items: center;
        align-items: center;
    }

    .variablePartnerHeader1 {
        padding-bottom: 15px;
        font-size: 20px !important;
        border-bottom: solid;
        border-width: 1px;
        border-color: #00e6e6 !important;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .variablePartnerText1 {
        padding-bottom: 15px;
        font-size: 14px !important;
        border-bottom: none;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .minHeightPartnerBlock {
        padding-top: 25px;
        min-height: 80px !important;
    }

    .navbar {
        display: none;
    }

    .topnav a:not(:first-child),
    .dropdown .dropbtn {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }

    .topnav.responsive {
        position: relative;
    }

        .topnav.responsive a.icon {
            position: absolute;
            right: 0;
            top: 0;
        }

        .topnav.responsive a {
            float: none;
            display: block;
            text-align: left;
        }

        .topnav.responsive .dropdown {
            float: none;
        }

        .topnav.responsive .dropdown-content {
            position: relative;
        }

        .topnav.responsive .dropdown .dropbtn {
            display: block;
            width: 100%;
            text-align: left;
        }

    .widthIcon {
        width: 50px !important;
        height: 50px !important;
    }

    .carousel-caption {
        display: none;
    }

    .variableSizeH1 {
        font-size: 20px;
    }

    .variableSizeH2 {
        font-size: 18px;
        line-height: 1.8;
    }

    .variableSizeH3 {
        font-size: 14px;
        line-height: 1.8;
    }

    .variableText1 {
        padding-top: 10px;
        line-height: 1.8;
        font-size: 12px
    }

    .variableText2 {
        padding-top: 14px;
        line-height: 1.8;
        font-size: 14px
    }

    .variableText3 {
        padding-top: 14px;
        line-height: 1.8;
        font-size: 8px
    }

    .variableTextHelp {
        padding-top: 12px;
        line-height: 1.4;
        font-size: 9px
    }

    .variableMenu {
        font-size: 10px
    }

    .variableMenuGlyph {
        font-size: 8px
    }

    .minHeight1 {
        min-height: 0px
    }

    .maxWidthImage1 {
        max-width: 220px
    }

    .maxWidthImage0 {
        max-width: 767px
    }
}
/* XSMALL SIZE (SurfacePro:540 / S20 / iPhone) (xs) */
@media screen and (min-width: 400px) and (max-width: 767px) {

    .variablePartnerHeader0 {
        padding-bottom: 15px;
        font-size: 32px !important;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .variablePartnerHeader1 {
        padding-bottom: 15px;
        font-size: 24px !important;
        border-bottom: solid;
        border-width: 1px;
        border-color: #00e6e6 !important;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .variablePartnerText1 {
        padding-bottom: 15px;
        font-size: 18px !important;
        border-bottom: none;
        margin-bottom: 15px;
        margin-top: 15px;
    }


    .minHeightPartnerBlock {
        padding-top: 25px;
        min-height: 80px !important;
    }

    .navbar {
        display: none;
    }

    .topnav a:not(:first-child),
    .dropdown .dropbtn {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }

    .topnav.responsive {
        position: relative;
    }

        .topnav.responsive a.icon {
            position: absolute;
            right: 0;
            top: 0;
        }

        .topnav.responsive a {
            float: none;
            display: block;
            text-align: left;
        }

        .topnav.responsive .dropdown {
            float: none;
        }

        .topnav.responsive .dropdown-content {
            position: relative;
        }

        .topnav.responsive .dropdown .dropbtn {
            display: block;
            width: 100%;
            text-align: left;
        }

    .carousel-caption {
        display: none;
    }

    .variableSizeH1 {
        font-size: 20px;
    }

    .variableSizeH2 {
        font-size: 18px;
        line-height: 1.8;
    }

    .variableSizeH3 {
        font-size: 14px;
        line-height: 1.8;
    }

    .variableText1 {
        padding-top: 10px;
        line-height: 1.8;
        font-size: 12px
    }

    .variableText2 {
        padding-top: 14px;
        line-height: 1.8;
        font-size: 14px
    }

    .variableTextHelp {
        padding-top: 14px;
        line-height: 1.6;
        font-size: 9px
    }

    .variableMenu {
        font-size: 10px
    }

    .variableMenuGlyph {
        font-size: 8px
    }

    .minHeight1 {
        min-height: 0px
    }

    .maxWidthImage1 {
        max-width: 220px
    }

    .maxWidthImage0 {
        max-width: 767px
    }

    .widthIcon {
        width: 40px !important;
        height: 40px !important;
    }
}
/* SMALL SIZE (iPad/Surface 7) (sm) */
@media screen and (min-width: 768px) and (max-width: 991px) {

    
    .product-img-container {
        flex-direction: column;
    }
    
    .col {
        display: block;
        width: 100%;
    }

    .variablePartnerHeader0 {
        padding-bottom: 15px;
        font-size: 32px !important;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .variablePartnerHeader1 {
        padding-bottom: 15px;
        font-size: 24px !important;
        border-bottom: solid;
        border-width: 1px;
        border-color: #00e6e6 !important;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .variablePartnerText1 {
        padding-bottom: 15px;
        font-size: 18px !important;
        border-bottom: none;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .minHeightPartnerBlock {
        padding-top: 25px;
        min-height: 80px !important;
    }

    .topnav {
        display: none;
    }

    .navbar {
        display: normal;
    }

    .carousel-caption {
        display: none;
    }

    .variableSizeH1 {
        font-size: 28px;
    }

    .variableSizeH2 {
        font-size: 20px;
        line-height: 1.8;
    }

    .variableSizeH3 {
        font-size: 16px;
        line-height: 1.8;
    }

    .variableText1 {
        padding-top: 12px;
        line-height: 1.8;
        font-size: 12px
    }

    .variableText2 {
        padding-top: 14px;
        line-height: 1.8;
        font-size: 14px
    }

    .variableTextHelp {
        padding-top: 14px;
        line-height: 1.6;
        font-size: 10px
    }

    .variableMenu {
        font-size: 11px
    }

    .variableMenuGlyph {
        font-size: 7px
    }

    .minHeight1 {
        min-height: 0px
    }




    .maxWidthImage1 {
        max-width: 250px
    }

    .maxWidthImage0 {
        max-width: 992px
    }

    .widthIcon {
        width: 50px !important;
        height: 50px !important;
    }
}
/* MEDIUM SIZE (Laptop small resolution) (md) */
@media screen and (min-width: 992px) and (max-width: 1199px) {

    
    .product-img-container {
        flex-direction: column;
    }

    .col {
        display: table-cell;
        width: 33%;
    }

    .variablePartnerHeader0 {
        padding-bottom: 15px;
        font-size: 32px !important;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .variablePartnerHeader1 {
        padding-bottom: 15px;
        font-size: 22px !important;
        border-bottom: solid;
        border-width: 1px;
        border-color: #00e6e6 !important;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .variablePartnerText1 {
        padding-bottom: 15px;
        font-size: 17px !important;
        border-bottom: none;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .minHeightPartnerBlock {
        padding-top: 25px;
        min-height: 100px !important;
    }

    .variableSizeH1 {
        font-size: 32px;
    }

    .variableSizeH2 {
        font-size: 22px;
        line-height: 1.8;
    }

    .variableSizeH3 {
        font-size: 18px;
        line-height: 1.8;
    }

    .variableText1 {
        padding-top: 10px;
        line-height: 1.8;
        font-size: 10px
    }

    .variableText2 {
        padding-top: 14px;
        line-height: 1.8;
        font-size: 16px
    }

    .variableTextHelp {
        padding-top: 14px;
        line-height: 1.6;
        font-size: 10px
    }

    .variableMenu {
        font-size: 16px
    }

    .variableMenuGlyph {
        font-size: 12px
    }

    .minHeight1 {
        min-height: 200px
    }

    .maxWidthImage1 {
        max-width: 300px
    }

    .maxWidthImage0 {
        max-width: 1200px
    }

    .widthIcon {
        width: 60px !important;
        height: 60px !important;
        margin-left: 10px
    }

    .topnav {
        display: none;
    }

}
/* LARGE SIZE (Computer / medium resolution) (lg) */
@media screen and (min-width: 1200px) {

    
    .product-img-container {
        flex-direction: column;
    }

    .col {
        display: table-cell;
        width: 33%;
    }

    .variablePartnerHeader0 {
        padding-bottom: 15px;
        font-size: 32px !important;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .variablePartnerHeader1 {
        padding-bottom: 15px;
        font-size: 24px !important;
        border-bottom: solid;
        border-width: 1px;
        border-color: #00e6e6 !important;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .variablePartnerText1 {
        padding-bottom: 15px;
        font-size: 18px !important;
        border-bottom: none;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .minHeightPartnerBlock {
        padding-top: 25px;
        min-height: 100px !important;
    }

    .variableSizeH1 {
        font-size: 40px;
    }

    .variableSizeH2 {
        font-size: 26px;
        line-height: 1.8;
    }

    .variableSizeH3 {
        font-size: 18px;
        line-height: 1.8;
    }

    .variableText1 {
        padding-top: 10px;
        line-height: 1.8;
        font-size: 20px
    }

    .variableText2 {
        padding-top: 10px;
        line-height: 1.8;
        font-size: 18px
    }

    .variableTextHelp {
        padding-top: 14px;
        line-height: 1.6;
        font-size: 14px
    }

    .variableMenu {
        font-size: 18px
    }

    .variableMenuGlyph {
        font-size: 12px
    }

    .minHeight1 {
        min-height: 200px
    }

    .maxWidthImage1 {
        max-width: 400px
    }

    .widthIcon {
        width: 60px !important;
        height: 60px !important;
        margin-left: 20px
    }

    .topnav {
        display: none;
    }

}

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #333;
}

.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
    color: #fff;
    background-color: #333;
}

.navbar-right > li > a,
.navbar-right > li > a:hover,
.navbar-right > li > a:focus {
    color: #FFFFFF !important;
    background-color: #00e6e6 !important;
}

/*.navbar-nav > li > .dropdown-menu {*/
/*margin-top: 20px;*/
/*border-top-left-radius: 4px;
    border-top-right-radius: 4px;*/
/*}*/

.navbar-default .navbar-nav > li > a {
    width: 200px;
    font-weight: bold;
}

.mega-dropdown {
    position: static !important;
    /*width: 100%;*/
}

.mega-dropdown-menu {
    border: 0px;
    padding: 20px 0px;
    width: 100%;
    box-shadow: none;
    -webkit-box-shadow: none;
}



    .mega-dropdown-menu > li > ul {
        padding: 0;
        margin: 0;
    }

        .mega-dropdown-menu > li > ul > li {
            list-style: none;
        }

            .mega-dropdown-menu > li > ul > li > a {
                display: block;
                padding: 3px 20px;
                clear: both;
                font-weight: normal;
                line-height: 1.428571429;
                color: #999;
                white-space: normal;
            }

    .mega-dropdown-menu > li ul > li > a:hover,
    .mega-dropdown-menu > li ul > li > a:focus {
        text-decoration: none;
        color: #444;
        background-color: #f5f5f5;
    }

    .mega-dropdown-menu .dropdown-header {
        color: #428bca;
        font-size: 18px;
        font-weight: bold;
    }

    .mega-dropdown-menu form {
        margin: 3px 20px;
    }

    .mega-dropdown-menu .form-group {
        margin-bottom: 3px;
    }



#_form_1_ {
    font-size: 14px;
    line-height: 1.6;
    font-family: arial, helvetica, sans-serif;
    margin: 0;
}

    #_form_1_ * {
        outline: 0;
    }

._form_hide {
    display: none;
    visibility: hidden;
}

._form_show {
    display: block;
    visibility: visible;
}

#_form_1_._form-top {
    top: 0;
}

#_form_1_._form-bottom {
    bottom: 0;
}

#_form_1_._form-left {
    left: 0;
}

#_form_1_._form-right {
    right: 0;
}

#_form_1_ input[type="text"],
#_form_1_ input[type="date"],
#_form_1_ textarea {
    padding: 6px;
    height: auto;
    border: #979797 1px solid;
    border-radius: 4px;
    color: #000 !important;
    font-size: 14px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#_form_1_ textarea {
    resize: none;
}

#_form_1_ ._submit {
    -webkit-appearance: none;
    cursor: pointer;
    font-family: arial, sans-serif;
    font-size: 14px;
    text-align: center;
    background: #333 !important;
    border: 0 !important;
    -moz-border-radius: 4px !important;
    -webkit-border-radius: 4px !important;
    border-radius: 4px !important;
    color: #fff !important;
    padding: 10px !important;
}

#_form_1_ ._close-icon {
    cursor: pointer;
    background-image: url('https://d226aj4ao1t61q.cloudfront.net/esfkyjh1u_forms-close-dark.png');
    background-repeat: no-repeat;
    background-size: 14.2px 14.2px;
    position: absolute;
    display: block;
    top: 11px;
    right: 9px;
    overflow: hidden;
    width: 16.2px;
    height: 16.2px;
}

    #_form_1_ ._close-icon:before {
        position: relative;
    }

#_form_1_ ._form-body {
    margin-bottom: 30px;
}

#_form_1_ ._form-image-left {
    width: 150px;
    float: left;
}

#_form_1_ ._form-content-right {
    margin-left: 164px;
}

#_form_1_ ._form-branding {
    color: #fff;
    font-size: 10px;
    clear: both;
    text-align: left;
    margin-top: 30px;
    font-weight: 100;
}

    #_form_1_ ._form-branding ._logo {
        display: block;
        width: 130px;
        height: 14px;
        margin-top: 6px;
        background-image: url('https://d226aj4ao1t61q.cloudfront.net/hh9ujqgv5_aclogo_li.png');
        background-size: 130px auto;
        background-repeat: no-repeat;
    }

#_form_1_ .form-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

#_form_1_ ._form-label,
#_form_1_ ._form_element ._form-label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

#_form_1_._dark ._form-branding {
    color: #333;
}

    #_form_1_._dark ._form-branding ._logo {
        background-image: url('https://d226aj4ao1t61q.cloudfront.net/jftq2c8s_aclogo_dk.png');
    }

#_form_1_ ._form_element {
    position: relative;
    margin-bottom: 10px;
    font-size: 0;
    max-width: 100%;
}

    #_form_1_ ._form_element * {
        font-size: 14px;
    }

    #_form_1_ ._form_element._clear {
        clear: both;
        width: 100%;
        float: none;
    }

        #_form_1_ ._form_element._clear:after {
            clear: left;
        }

    #_form_1_ ._form_element input[type="text"],
    #_form_1_ ._form_element input[type="date"],
    #_form_1_ ._form_element select,
    #_form_1_ ._form_element textarea:not(.g-recaptcha-response) {
        display: block;
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        font-family: inherit;
    }

#_form_1_ ._field-wrapper {
    position: relative;
}

#_form_1_ ._inline-style {
    float: left;
}

    #_form_1_ ._inline-style input[type="text"] {
        width: 150px;
    }

    #_form_1_ ._inline-style:not(._clear) + ._inline-style:not(._clear) {
        margin-left: 20px;
    }

#_form_1_ ._form_element img._form-image {
    max-width: 100%;
}

#_form_1_ ._form_element ._form-fieldset {
    border: 0;
    padding: 0.01em 0 0 0;
    margin: 0;
    min-width: 0;
}

#_form_1_ ._clear-element {
    clear: left;
}

#_form_1_ ._full_width {
    width: 100%;
}

#_form_1_ ._form_full_field {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

#_form_1_ input[type="text"]._has_error,
#_form_1_ textarea._has_error {
    border: #f37c7b 1px solid;
}

#_form_1_ input[type="checkbox"]._has_error {
    outline: #f37c7b 1px solid;
}

#_form_1_ ._error {
    display: block;
    position: absolute;
    font-size: 14px;
    z-index: 10000001;
}

    #_form_1_ ._error._above {
        padding-bottom: 4px;
        bottom: 39px;
        right: 0;
    }

    #_form_1_ ._error._below {
        padding-top: 4px;
        top: 100%;
        right: 0;
    }

    #_form_1_ ._error._above ._error-arrow {
        bottom: 0;
        right: 15px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #f37c7b;
    }

    #_form_1_ ._error._below ._error-arrow {
        top: 0;
        right: 15px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 5px solid #f37c7b;
    }

#_form_1_ ._error-inner {
    padding: 8px 12px;
    background-color: #f37c7b;
    font-size: 14px;
    font-family: arial, sans-serif;
    color: #fff;
    text-align: center;
    text-decoration: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

    #_form_1_ ._error-inner._form_error {
        margin-bottom: 5px;
        text-align: left;
    }

#_form_1_ ._button-wrapper ._error-inner._form_error {
    position: static;
}

#_form_1_ ._error-inner._no_arrow {
    margin-bottom: 10px;
}

#_form_1_ ._error-arrow {
    position: absolute;
    width: 0;
    height: 0;
}

#_form_1_ ._error-html {
    margin-bottom: 10px;
}

.pika-single {
    z-index: 10000001 !important;
}

#_form_1_ input[type="text"].datetime_date {
    /*width: 69%;*/
    display: inline;
}

#_form_1_ select.datetime_time {
    /*width: 29%;*/
    display: inline;
    /*height: 32px;*/
}

@media all and (min-width:320px) and (max-width:667px) {
    ::-webkit-scrollbar {
        display: none;
    }

    #_form_1_ {
        margin: 0;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

        #_form_1_ * {
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            font-size: 1em;
        }

        #_form_1_ ._form-content {
            margin: 0;
            width: 100%;
        }

        #_form_1_ ._form-inner {
            display: block;
            min-width: 100%;
        }

        #_form_1_ ._form-title,
        #_form_1_ ._inline-style {
            margin-top: 0;
            margin-right: 0;
            margin-left: 0;
        }

        #_form_1_ ._form-title {
            font-size: 1.2em;
        }

        #_form_1_ ._form_element {
            margin: 0 0 20px;
            padding: 0;
            width: 100%;
        }

        #_form_1_ ._form-element,
        #_form_1_ ._inline-style,
        #_form_1_ input[type="text"],
        #_form_1_ label,
        #_form_1_ p,
        #_form_1_ textarea:not(.g-recaptcha-response) {
            float: none;
            display: block;
            width: 100%;
        }

        #_form_1_ ._row._checkbox-radio label {
            display: inline;
        }

        #_form_1_ ._row,
        #_form_1_ p,
        #_form_1_ label {
            margin-bottom: 0.7em;
            width: 100%;
        }

            #_form_1_ ._row input[type="checkbox"],
            #_form_1_ ._row input[type="radio"] {
                margin: 0 !important;
                vertical-align: middle !important;
            }

                #_form_1_ ._row input[type="checkbox"] + span label {
                    display: inline;
                }

            #_form_1_ ._row span label {
                margin: 0 !important;
                width: initial !important;
                vertical-align: middle !important;
            }

        #_form_1_ ._form-image {
            max-width: 100%;
            height: auto !important;
        }

        #_form_1_ input[type="text"] {
            padding-left: 10px;
            padding-right: 10px;
            font-size: 16px;
            line-height: 1.3em;
            -webkit-appearance: none;
        }

        #_form_1_ input[type="radio"],
        #_form_1_ input[type="checkbox"] {
            display: inline-block;
            width: 1.3em;
            height: 1.3em;
            font-size: 1em;
            margin: 0 0.3em 0 0;
            vertical-align: baseline;
        }

        #_form_1_ button[type="submit"] {
            padding: 20px;
            font-size: 1.5em;
        }

        #_form_1_ ._inline-style {
            margin: 20px 0 0 !important;
        }
}

#_form_1_ {
    position: relative;
    text-align: left;
    margin: 25px auto 0;
    padding: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    *zoom: 1;
    background: #fff !important;
    border: 0px solid #b0b0b0 !important;
    width: 500px;
    -moz-border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    border-radius: 0px !important;
    color: #000 !important;
}

    #_form_1_._inline-form,
    #_form_1_._inline-form ._form-content,
    #_form_1_._inline-form input,
    #_form_1_._inline-form ._submit {
        font-family: "IBM Plex Sans", Helvetica, sans-serif, 'IBM Plex Sans', arial, sans-serif;
    }

    #_form_1_ ._form-title {
        font-size: 22px;
        line-height: 22px;
        font-weight: 600;
        margin-bottom: 0;
    }

    #_form_1_:before,
    #_form_1_:after {
        content: " ";
        display: table;
    }

    #_form_1_:after {
        clear: both;
    }

    #_form_1_._inline-style {
        width: auto;
        display: inline-block;
    }

        #_form_1_._inline-style input[type="text"],
        #_form_1_._inline-style input[type="date"] {
            padding: 10px 12px;
        }

        #_form_1_._inline-style button._inline-style {
            position: relative;
            top: 27px;
        }

        #_form_1_._inline-style p {
            margin: 0;
        }

        #_form_1_._inline-style ._button-wrapper {
            position: relative;
            margin: 27px 12.5px 0 20px;
        }

    #_form_1_ ._form-thank-you {
        position: relative;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 18px;
    }

@media all and (min-width:320px) and (max-width:667px) {
    #_form_1_._inline-form._inline-style._inline-style._button-wrapper {
        margin-top: 20px !important;
        margin-left: 0 !important;
    }
}
