main>.container {
    padding: 195px 15px 20px;
}


:root {
    --blue: #2a9fd6;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #cd201f;
    --orange: #fd7e14;
    --yellow: #de9816;
    --green: #16DE4F;
    --teal: #20c997;
    --cyan: #93c;
    --white: #ffffff;
    --gray: #555555;
    --gray-dark: #222222;
    --primary: #05acef;
    --secondary: #8c8c8c;
    --success: #16DE4F;
    --info: #d0df00;
    --warning: #de9816;
    --danger: #cd201f;
    --light: #8c8c8c;
    --dark: #d9d9d9;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: CamingoDos-Regular, Arial, sans-serif;
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

}

a {
    color: var(--primary);
}

.inline-edit-trigger {
    cursor: pointer;
    color: var(--primary);
}

.footer {
    background-color: #f5f5f5;
    font-size: .9em;
    height: 60px;
    position: relative;
}

.footer>.container {
    padding-right: 15px;
    padding-left: 15px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after,
a.desc:after {
    content: '';
    left: 3px;
    display: inline-block;
    width: 0;
    height: 0;
    border: solid 5px transparent;
    margin: 4px 4px 2px 4px;
    background: transparent;
}

a.asc:after {
    border-bottom: solid 7px #212529;
    border-top-width: 0;
}

a.desc:after {
    border-top: solid 7px #212529;
    border-bottom-width: 0;
}

.grid-view th {
    white-space: nowrap;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.nav li>form>button.logout {
    padding-top: 7px;
    color: rgba(255, 255, 255, 0.5);
}

@media(max-width:767px) {
    .nav li>form>button.logout {
        display: block;
        text-align: left;
        width: 100%;
        padding: 10px 0;
    }
}

.nav>li>form>button.logout:focus,
.nav>li>form>button.logout:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
}

.nav>li>form>button.logout:focus {
    outline: none;
}


/* Start Custom CSS */

/* Start yaskawa main page CSS */
.dropdown,
.dropleft,
.dropright,
.dropup {
    position: static;
}

#navbanner {
    height: calc(100vh - 90px);
    background: #fff;
    position: fixed;
    top: 140px;
    left: 0;
    right: 0;
    content: "";
    z-index: 100;
    display: block;
    transition: all .5s ease-in-out;
}

#navbanner.navbanner-hidden {
    top: -100vh;
}

header .navbar {
    height: 60px;
    padding: 0;
    border-bottom: 1px solid #bababa;
    background: #fff;
}

.software-navigation {
    max-width: 100%;
}

@media (min-width:992px) {
    header .navbar {
        height: 142px;
    }

    .software-navigation {
        position: fixed;
        margin-top: 0px;
        width: 200px;
    }

}

@media (min-width:1200px) {
    .software-navigation {
        width: 250px;
    }
}

header .navbar .navbar-brand {
    height: 60px;
    padding-left: 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

@media (min-width:992px) {
    header .navbar .navbar-brand {
        height: 80px;
        padding-bottom: 15px;
        padding-left: 0;
        align-items: flex-end;
    }
}

header .navbar .navbar-brand img {
    width: 100px;
}

@media (min-width:992px) {
    header .navbar .navbar-brand img {
        width: 185px;
    }
}

@media (max-width:991.98px) {
    header .navbar .container {
        max-width: 100%;
    }
}

header .navbar .navbar-toggler {
    background: #05acef;
    width: 60px;
    height: 60px;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0;
    z-index: 1000;
}

header .navbar .navbar-toggler i {
    color: #fff;
}

header .navbar .navbar-nav .megamenu {
    position: static;
}

header .navbar .navbar-nav .nav-link {
    color: #000;
    font-size: .875rem;
    text-transform: uppercase;
    padding: 20px;
}

header .navbar .navbar-nav .active {
    background: #005bbb;
    color: #fff;
}

header .navbar .navbar-nav .dropdown-toggle:after {
    border: 0;
}

header .navbar .navbar-nav .show~.dropdown-toggle {
    background: red;
}




header .navbar .navbar-nav .level-1 {
    transition: color .2s;
}

header .navbar .navbar-nav .level-1:hover:not(.active) {
    color: #05acef;
}

header .navbar .navbar-nav .level-2 {
    padding: 8px 20px;
    white-space: normal;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    to {
        visibility: visible;
        opacity: 1;
    }
}

.search {
    padding: 0 0 15px;
    color: #000;
    font-size: 18px;
}

@media (min-width:992px) {
    .search {
        text-align: right;
    }
}

.search i {
    position: absolute;
}

.search i.icon-search {
    cursor: pointer;
    right: 90px;
    top: 20px;
    font-size: 1.5rem;
    color: #000;
}

@media (min-width:992px) {
    .search i.icon-search {
        right: 20px;
        top: 0;
        font-size: 1.25rem;
    }
}

.search i.icon-search:hover {
    color: #05acef;
}

.search i.icon-search.search__toggle {
    right: 0;
    padding: 20px 15px;
}

@media (max-width:991.98px) {
    .search i.icon-search.search__toggle {
        padding: 0 15px;
        transform: translate3d(-60px, -3px, 0);
    }
}

.search .search-extended {
    text-align: left;
    background: #fff;
    width: 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    right: 0;
    top: 60px;
    box-shadow: 0 4px 12px 2px rgba(0, 0, 0, .15);
    transition: width .25s ease-in-out, opacity .2s ease-in-out;
}

@media (min-width:992px) {
    .search .search-extended {
        top: 15px;
    }
}

.search .search-extended.show {
    width: calc(100vw + 15px);
    opacity: 1;
    visibility: visible;
}

@media (min-width:992px) {
    .search .search-extended.show {
        width: 800px;
        max-width: 60vw;
    }
}

.search .search-extended .search-field {
    border-top: 2px solid #05acef;
    position: relative;
    height: 60px;
}

.search .search-extended .search-field input {
    margin: 0;
    height: 60px;
    border: 0;
    width: 100%;
    padding: 5px 50px;
    font-size: 1.25rem;
}

@media (min-width:992px) {
    .search .search-extended .search-field {
        border: 0;
        height: 44px;
    }

    .search .search-extended .search-field input {
        height: 44px;
        font-size: .875rem;
    }
}

.search .search-extended .search-field i {
    position: absolute;
    top: 20px;
    font-size: 1.25rem;
}

@media (min-width:992px) {
    .search .search-extended .search-field i {
        top: 12px;
        font-size: 1rem;
    }
}

.search .search-extended .search-field i.icon-search {
    left: 20px;
    right: auto;
    color: #747678;
    cursor: pointer;
}

.search .search-extended .search-field i.icon-close {
    right: 35px;
    color: #000;
    transition: color .25s ease-in-out;
    cursor: pointer;
}

.search .search-extended .search-field i.icon-close:hover {
    color: #05acef;
}

@media (min-width:992px) {
    .search .search-extended .search-field i.icon-close {
        right: 20px;
    }
}

.search .search-extended .search-suggestions {
    background: #616365;
    padding: 20px 50px;
    box-shadow: 0 4px 12px 2px rgba(0, 0, 0, .15);
}

.search .search-extended .search-suggestions h5 {
    color: #bcbdbc;
    font-size: .75rem;
    text-transform: uppercase;
}

.search .search-extended .search-suggestions ul {
    padding: 0;
}

.search .search-extended .search-suggestions ul li {
    list-style-type: none;
    margin-bottom: 10px;
}

.search .search-extended .search-suggestions ul li a {
    font-size: 1rem;
    transition: color .25s ease-in-out;
    color: #fff;
}

.search .search-extended .search-suggestions ul li a:hover {
    color: #05acef;
    text-decoration: none;
}

.search-section .col-xs-12 .search-content h1 {
    display: none;
}

.search-section .col-xs-12 .search-content .info {
    color: #bcbdbc;
}

.search-section .col-xs-12 .search-list h4 {
    display: none;
}

.search-section .col-xs-12 .search-list .no-results {
    font-size: 1.25rem;
}

.search-section .col-xs-12 .search-list .no-results h5 {
    font-size: 1.875rem;
    line-height: 1.2;
}

.search-section .col-xs-12 .search-list .search-results .search-result {
    margin: 1rem 0;
    padding: 1rem 0;
    border-bottom: 1px solid #e6e7e8;
}

.search-section .col-xs-12 .search-list .search-results .search-result h5 {
    font-size: 1.875rem;
    line-height: 1.2;
}

.search-section .col-xs-12 .search-list .search-results .search-result .highlight {
    font-weight: 700;
}

.search-section .col-xs-12 .search-list .paginator {
    text-align: center;
}

.search-section .col-xs-12 .search-list .paginator a {
    height: 45px;
    width: 45px;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 0;
    margin: 0;
    padding: 2px 0 0;
}

@media (min-width:576px) {
    .search-section .col-xs-12 .search-list .paginator a {
        height: 50px;
        width: 50px;
    }
}

.search-section .col-xs-12 .search-list .paginator a.active {
    border: 1px solid #05acef;
    border-radius: 100%;
    background-color: #fff;
    color: #05acef;
}

.search-section .col-xs-12 .search-list .paginator a:hover {
    background-color: #fff;
    color: #05acef;
}

.search-section .col-xs-12 .search-list .paginator a:focus {
    box-shadow: 0 0 0 0 #fff;
    color: #05acef;
}

header {
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

@media (min-width:992px) {
    header {
        height: 140px;
    }
}

header .container {
    height: 100%;
    position: relative;
    display: block !important;
}

header .header__top {
    height: 60px;
    display: flex;
    justify-content: space-between;
}

@media (min-width:992px) {
    header .header__top {
        height: 80px;
    }
}

header .header__top .header__logo {
    height: 80px;
    z-index: 10000;
}

header .header__top .header__meta {
    margin-top: 10px;
}


@media (max-width:991.98px) {
    header .header__top .header__meta {
        margin-top: 10px;
        margin-right: 80px;
    }
}

header .header__top .header__meta .header__countryPicker {
    height: 60px;
}

@media (min-width:992px) {
    header .header__top .header__meta .header__countryPicker {
        height: 40px;
        display: flex;
        justify-content: flex-end;
    }
}

header .header__top .header__meta .header__metaNav {
    height: 60px;
    padding-right: 6px;
}

@media (min-width:992px) {
    header .header__top .header__meta .header__metaNav {
        height: 40px;
    }
}

header .header__top .header__meta .header__metaNav ul {
    list-style-type: none;
    padding: 6px 0;
    margin: 0;
}

header .header__top .header__meta .header__metaNav ul li {
    display: inline-block;
    text-transform: uppercase;
    padding: 0 10px;
    ;
}

header .header__top .header__meta .header__metaNav ul li a {
    color: #747678;
    font-size: .75rem;
    ;
}


header .header__bottom {
    height: 60px;
}

@media (min-width:992px) {
    header .header__bottom {
        height: 60px;
        display: flex;
        justify-content: space-between;

    }

}

header .header__bottom .header__search {
    position: relative;
    ;
}

@media (max-width:991.98px) {
    header .header__bottom .header__search {
        transform: translateY(-60px);
    }

    .nav-item {
        background-color: #fff;
    }
}

footer .footer-columns {
    padding: 20px 0 60px;
}

footer .container {
    max-width: 940px;
}

footer .container h5 {
    color: #fff;
    padding-top: 40px;
    font-weight: 500;
}

footer .container p,
footer .container ul {
    line-height: 2;
    color: #fff;
}

footer .container .footer-links {
    font-size: .75rem;
}

footer a {
    color: #e6e7e8;
}

footer a:hover {
    color: #fff;
}

footer .social-media {
    font-size: 1.5rem;
}

footer .social-media h5 {
    font-size: .75rem;
    margin-bottom: 0;
}

footer .social-media li {
    display: inline-block;
    margin-right: 5px;
}

footer .footer-informations {
    border-top: 4px solid #fff;
    font-size: .75rem;
    line-height: 2;
    min-height: 40px;
    padding: 5px 0;
    color: #fff;
    background-color: #023e6b;
}

footer .footer-informations a,
footer .footer-informations a:hover {
    color: #fff;
}

@media (min-width:768px) {
    footer .footer-informations ul {
        float: right;
    }
}

footer .footer-informations ul li {
    display: inline-block;
    line-height: 2;
}

footer .footer-informations ul li:after {
    content: "";
    height: 20px;
    border-right: 1px solid #fff;
    margin: 0 10px;
}

@media (min-width:768px) {
    footer .footer-informations ul li:after {
        margin: 0 20px;
    }
}

footer .footer-informations ul li:last-child:after {
    margin: 0;
    border: none;
}

.sidebar .sidebar__content {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    position: fixed;
    width: 540px;
    height: 100vh;
    top: 0;
    right: 0;
    z-index: 2000;
    background: #005bbb;
    color: #fff;
    transform: translate3d(540px, 0, 0);
    transition: transform .3s;
    overflow-y: auto;
    background-image: url('/assets/images/backgrounds/Yaskawa_Facettes_BG_Blue.svg?1654597991242');
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width:767.98px) {
    .sidebar .sidebar__content {
        width: 330px;
    }
}

.sidebar .sidebar__content * {
    color: #fff !important;
}

.sidebar .sidebar__content .sidebar__content-bottom,
.sidebar .sidebar__content .sidebar__content-top {
    padding: 2rem;
    flex: 1 1 50%;
}

.sidebar .sidebar__content .sidebar__content-bottom :last-child,
.sidebar .sidebar__content .sidebar__content-top :last-child {
    margin-bottom: 0;
}

.sidebar .sidebar__content .sidebar__content-bottom {
    background-color: rgba(0, 0, 0, .2);
}

.sidebar .sidebar__toggle {
    width: 60px;
    height: 60px;
    background-color: #05acef;
    border-radius: 50%;
    display: block;
    position: fixed;
    top: 50%;
    right: 0;
    transform: translate3d(-1rem, -30px, 0);
    transition: all .3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
    z-index: 2001;
}

@media (max-width:767.98px) {
    .sidebar .sidebar__toggle {
        width: 50px;
        height: 50px;
        transform: translate3d(-1rem, -25px, 0);
    }
}

.sidebar .sidebar__toggle:hover {
    cursor: pointer;
    background-color: #005bbb;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
}

.sidebar .sidebar__toggle .sidebar__icon {
    font-size: 24px;
    position: absolute;
    top: 18px;
    left: 18px;
}

@media (max-width:767.98px) {
    .sidebar .sidebar__toggle .sidebar__icon {
        top: 12px;
        left: 12px;
    }
}

.sidebar .sidebar__toggle .sidebar__icon--phone {
    display: block;
    color: #fff;
}

.sidebar .sidebar__toggle .sidebar__icon--close {
    display: none;
    color: #000;
}

.sidebar .sidebar__overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: #616365;
    z-index: 1999;
    opacity: 0;
    transition: all .3s ease-in-out;
    top: 0;
    left: 0;
}

.sidebar--open .sidebar__toggle {
    transform: translate3d(-510px, -30px, 0);
    background-color: #fff;
}

@media (max-width:767.98px) {
    .sidebar--open .sidebar__toggle {
        transform: translate3d(-305px, -25px, 0);
    }
}

.sidebar--open .sidebar__toggle:hover {
    background-color: #bcbdbc;
}

.sidebar--open .sidebar__toggle .sidebar__icon--close {
    display: block;
}

.sidebar--open .sidebar__toggle .sidebar__icon--phone {
    display: none;
}

.sidebar--open .sidebar__content {
    transform: translateZ(0);
}

.sidebar--open .sidebar__overlay {
    display: block;
    opacity: .2;
}

.reference-grid {
    margin-bottom: -10px;
}

@media (min-width:576px) {
    .reference-grid {
        margin-bottom: -30px;
    }
}

.grid-logo-wrapper {
    margin-bottom: 10px;
    height: calc(100% - 10px);
}

@media (min-width:576px) {
    .grid-logo-wrapper {
        margin-bottom: 30px;
        height: calc(100% - 30px);
    }
}

.grid-logo-wrapper .grid-logo {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #fff;
    transition: background .35s ease;
    padding: 10px;
    height: 100%;
    border: 1px solid #dadada;
}

@media (min-width:576px) {
    .grid-logo-wrapper .grid-logo {
        padding: 30px;
    }
}

.grid-logo-wrapper .grid-logo img {
    filter: grayscale(100%);
    transition: filter .35s ease;
    max-width: 100%;
    width: 100%;
}

.grid-logo-wrapper .grid-logo:hover {
    background: #fff;
}

.grid-logo-wrapper .grid-logo:hover img {
    filter: none;
}

.product-header {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    min-height: 200px;
}

@media (min-width:992px) {
    .product-header {
        min-height: 500px;
    }
}

.product-header>.container>.row {
    flex-direction: column-reverse;
}

@media (min-width:576px) {
    .product-header>.container>.row {
        flex-direction: row;
    }
}


.dropdown-select-products .dropdown-toggle>span:after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.dropdown-select-products .form-control {
    border-radius: 0;
    border: 0;
}

.dropdown-select-products .form-control:focus {
    outline: none;
    box-shadow: none;
}

.sg-label {
    color: #616365;
}

.image-align-center {
    margin: 0 auto;
}

.image-align-right {
    margin-left: auto;
}

/* End yaskawa main page CSS */


.navbar-nav .dropdown-menu {
    position: static;
    left: inherit;
}

.submenu-item {
    font-weight: 700;
    padding: 8px 20px;
    white-space: normal;
    color: #000;
}

.submenu-item a {
    color: #000;
}

.submenu-item a:hover {
    color: var(--primary);
    text-decoration: none;
}

.navbar-toggler-icon {
    color: #fff;
}


.navbar-nav .nav-link.active {
    color: #fff !important;
}



.last_date_temp {
    display: none;
}

.modal-content {
    padding-left: 20px;
    padding-right: 20px;
}

.modal-content a {
    text-decoration: none;
}

.file {
    float: left;
    border: 1px dotted #000;
    width: 200px;
    height: 200px;
    margin-left: 10px;
    margin-bottom: 10px;
}

.file img {
    max-width: 180px;
    max-height: 180px;
    vertical-align: top;
}

.gridview-thumbnail {
    max-width: 200px;
    max-height: 200px;
}

.ui-autocomplete {
    z-index: 999999999;
}

.help-block {
    color: var(--danger);
}

.site-index {
    text-align: center;
}

/* Start Yaliz CSS */
.clear {
    clear: both;
}

/* Software List BEGIN */

.software-index {
    margin-top: 2em;
}

.software-entry {
    margin-top: 0px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 1em;
}


.software-entry .software-image {}

.software-entry .software-image img {
    max-width: 200px;
}

.software-entry .software-text {}

.software-entry .software-title {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.3em;
}

.software-entry .software-model-code {
    font-weight: bold;
    margin-bottom: 0.5em;
}

.software-entry .software-description {}

.software-entry .software-download {
    margin-top: 10px;
}

/* Software List END */


/* Software View BEGIN */

.software-view {
    margin-top: 2em;

}

.software-view h3 {
    font-size: 1.4em;
}

.software-view .software-title {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.5em;
}

.software-view .software-model-code {
    font-weight: bold;
    margin-bottom: 0.5em;
}

.software-view .software-description-image-wrapper {
    display: flex;
    gap: 20px;
}

.software-view .software-image {
    max-width: 20%;
}

.software-view .software-acquire-license {
    border: 1px solid #ccc;
    padding: 1em;
    border-radius: 5px;
}

/* Software View END */


/* License List BEGIN */

.license-entry {
    margin-top: 0px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 1em;
}

.license-entry .license-title {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.3em;
}

.license-entry .license-number {
    font-weight: bold;
    margin-bottom: 0.5em;
}

.license-entry .license-ykey {
    font-weight: bold;
    margin-bottom: 0.5em;
}

table.license-info {
    border: none;
}

table.license-info td {
    border: none;
    padding: 0.3em 1em 0em 0em;
}

table.license-info td.label {
    font-weight: bold;
}

/* License List END */


.category-description {
    padding-top: 10px;
    padding-bottom: 10px;
}

.category-image {
    margin-top: -20px;
    margin-left: 50px;
    overflow: hidden;
    max-width: 100%;
    position: fixed;
}

.category-image-preview {
    margin-left: 50px;
    max-width: 200px;
}



/*
@media (max-width:991.98px){
	.category-image {
		display: none;
	}
}
*/

/* Cookie Consent */
.cookie-consent-popup {
    padding: 20px;
    top: 0px !important;
    height: 100% !important;
    background-color: rgb(255, 255, 255);
    /* fallback for IE 8 and below */
    background-color: rgba(255, 255, 255, 0.85);
}

.cookie-consent-top-wrapper,
.cookie-consent-controls,
.cookie-consent-details {
    width: 400px;
    margin: auto;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: rgb(255, 255, 255);
    border-left: 1px solid #bababa;
    border-right: 1px solid #bababa;
}

.cookie-consent-top-wrapper {
    margin-top: 100px;
    border-top: 1px solid #bababa;
}

.cookie-consent-details {
    border-bottom: 1px solid #bababa;
}



#license-outbound-license-informations,
#license-outbound-license-form,
#license-outbound-no-license,
#license-outbound-license-informations-template {
    display: none;
}

.gridview-preview {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 150px;
}

.fa-ban {
    color: #F00;
}

#address-proposal {
    max-height: 500px;
    overflow-y: scroll;
    display: none;
}

.required:before {
    content: "* ";
    color: red;
}

.ckeditor-html5-video video {
    max-width: 100% !important;
}

.modal-trigger {
    cursor: pointer;
}

.help-trigger,
.help-trigger:hover {
    color: #fff;
    background-color: #015BAA;
    width: 1.8rem;
    height: 1.8rem;
    display: inline-block;
    border-radius: 100%;
    font-size: 1.2rem;
    text-align: center;
    text-decoration: none;
}

.help .card h4 {
    font-size: 12px;
    font-weight: 700;
    color: #747678;
    line-height: 18px;
    text-decoration: none solid #747678;
    text-transform: uppercase;
}

.help .card .h1,
.help .card .h2,
.help .card .h3,
.help .card .h4,
.help .card .h5,
.help .card .h6,
.help .card h1,
.help .card h2,
.help .card h3,
.help .card h4,
.help .card h5,
.help .card h6 {
    color: #005bbb;
}







.staging-marker {
    float: left;
    color: red;
    font-size: 2em;
    margin-right: 200px;
    margin-top: 15px;
}

@media (max-width:992px) {
    .staging-marker {
        margin-top: -5px;
    }
}

@media (max-width:768px) {
    .staging-marker {
        margin-right: 20px;
    }
}



.wide {
    max-width: 100% !important;
}


.help .card {
    transition: box-shadow .25s;
    box-shadow: 0 4px 12px 2px rgba(0, 0, 0, .15);
    border: 0;
    border-radius: 0;
    max-width: 350px;
    margin-top: 30px;
}

.help .card h3 {
    font-size: 1.25rem
}

@media (min-width:992px) {
    .help .card h3 {
        font-size: calc(1.5rem - .1)
    }
}

.help .card .h1,
.help .card .h2,
.help .card .h3,
.help .card .h4,
.help .card .h5,
.help .card .h6,
.help .card h1,
.help .card h2,
.help .card h3,
.help .card h4,
.help .card h5,
.help .card h6 {
    color: #005bbb
}

.help .card li,
.help .card ol,
.help .card p,
.help .card ul {
    color: #747678
}

.help .card:hover {
    box-shadow: 0 1px 4px .5px rgba(0, 0, 0, .15);
    text-decoration: none !important
}

.help .card .help .card__preferred-label {
    display: inline-block;
    background: #05acef;
    position: absolute;
    font-size: 80%;
    font-weight: 600;
    color: #fff;
    padding: .5rem
}

.help .card .help .card-body {
    padding: 15px;
    max-width: 350px;
    min-height: 100px;
}

@media (min-width:992px) {
    .help .card .help .card-body {
        padding: 30px 40px
    }
}

.help .card .help .card-body :last-child {
    margin-bottom: 0
}

.help .card .help .card-body .help .card-attributes {
    margin-bottom: -1rem
}

.help .card .help .card-body .help .card-attributes .help .card-attribute {
    margin-bottom: 1rem
}

.help .card .help .card-body .help .card-attributes .help .card-attribute>li {
    list-style: none
}

.help .card .help .card-footer {
    background: transparent;
    border: 0;
    padding: 0 25px 15px
}

@media (min-width:768px) {
    .help .card .help .card-footer {
        padding: 0 40px 30px
    }
}

.help .card i {
    color: #05acef
}

.help .card i[class*=icon] {
    font-size: 1.5rem
}

@media (min-width:992px) {
    .help .card i[class*=icon] {
        font-size: 2rem
    }
}

.help .card i:before {
    transition: transform .25s;
    display: flex;
    justify-content: flex-end;
    align-items: center
}

.help .card:hover i:before {
    transform: translateX(10px)
}

.icon-next:before {
    content: ">"
}

.help .card-img-top {
    max-width: 350px;
    max-height: 250px;
}

.product-information-login {
    padding: 8px;
    font-family: Calibri, sans-serif;
    font-size: 11pt;
}


a:hover {
    text-decoration: none;
}


.license-bind-note {
    width: 70%;
    padding: 20px;
    border: 3px solid black;
    text-align: center;
    background-color: #efaf4c;
    margin-bottom: 20px;
}

.license-bind-progress-bar {
    width: 70%;
    height: 20px;
    border: 3px solid black;
    margin-bottom: 20px;
}

#license-bind-progress-bar-inner {
    width: 0%;
    height: 14px;
    background-color: #00F;
}

#license-bind-progress-text-part-step2 {
    display: none;
}

#license-bind-progress-text-part-step3 {
    display: none;
}

#license-bind-progress-text-part-step4 {
    display: none;
}

.license-cmlc-details {
    padding: 10px;
}

.bind-history-row td {
    padding-top: 0px;
    border: 0px;
}

.auth-item-matrix-view {
    overflow: auto;
    height: 600px;
}

.auth-item-matrix-view thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: #fff;
}




/*
Xmas animation
*/

.header__top {
    height: 120px !important;
}

@media (min-width: 992px) {
    header .navbar {
        height: 182px !important;
    }
}

.snow-container {
    float: left;
    color: red;
    font-size: 1em;
    margin-right: 40px;
    margin-top: 0;
    border: 1px solid red;
    width: 666px;
    height: 100px;
    display: flex;
    vertical-align: bottom;
    gap: 20px;
    padding: 4px;
    border-radius: 5px;
    background-color: #afbbc7;
}

.xmas-icon {
    font-size: 4em;
}

.xmas-greetings h2 {
    font-size: 1.2em;
}

.xmas-greetings p {
    color: #333;
    font-size: 0.8em;
}

.snow-container {
    position: relative;
    width: 666px;
    height: 100px;
    /* adjust as needed */
    overflow: hidden;
    background: #afbbc7;
    /* demo background */
}

/* Snowflakes using two layered pseudo-elements */
.snow-container::before,
.snow-container::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image:
        radial-gradient(2px 2px at 20px 20px, white 50%, transparent),
        radial-gradient(2px 2px at 50px 50px, white 50%, transparent),
        radial-gradient(3px 3px at 80px 10px, white 50%, transparent),
        radial-gradient(1.5px 1.5px at 120px 70px, white 50%, transparent),
        radial-gradient(2.5px 2.5px at 160px 30px, white 50%, transparent),
        radial-gradient(2px 2px at 200px 90px, white 50%, transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: snow 8s linear infinite;
}

/* Second layer, slower for depth effect */
.snow-container::after {
    animation-duration: 12s;
    opacity: 0.6;
}

@keyframes snow {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

@media (max-width: 1023px) {
    .snow-container {
        display: none;
    }
}




/* MFA Start */
.pin-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 30px 0;
}

.pin-box {
    width: 50px;
    height: 60px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.pin-box:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.pin-box.success {
    border-color: #11998e;
    background: linear-gradient(135deg, rgba(17, 153, 142, 0.1) 0%, rgba(56, 239, 125, 0.1) 100%);
    color: #11998e;
}

.pin-box.error {
    border-color: #eb3349;
    background: linear-gradient(135deg, rgba(235, 51, 73, 0.1) 0%, rgba(244, 92, 67, 0.1) 100%);
    color: #eb3349;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.pin-icon {
    font-size: 12px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pin-icon.show {
    opacity: 0.5;
}

.feedback-message {
    text-align: center;
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    display: none;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.feedback-success {
    background: rgba(17, 153, 142, 0.1);
    color: #11998e;
    border: 1px solid #11998e;
}

.feedback-error {
    background: rgba(235, 51, 73, 0.1);
    color: #eb3349;
    border: 1px solid #eb3349;
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    transition: all 0.3s ease;
}

.step-dot.active {
    background: #667eea;
    transform: scale(1.2);
}

.step-dot.completed {
    background: #11998e;
}

@media (max-width: 768px) {   
    .pin-container {
        gap: 8px;
    }

    .pin-box {
        width: 40px;
        height: 50px;
        font-size: 20px;
    }

    .pin-icon {
        font-size: 10px;
    }
}


.mfa-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.mfa-header {
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.mfa-header h1 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.mfa-header p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.mfa-content {
    padding: 2rem;
}

.qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.qr-container {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.qr-code-wrapper {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.instructions {
    text-align: center;
    margin-bottom: 2rem;
}

.instructions h3 {
    color: #1565c0;
    font-weight: 600;
    margin-bottom: 1rem;
}

.instructions p {
    color: #495057;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.icon-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

.icon-item {
    text-align: center;
}

.icon-item i {
    font-size: 1.5rem;
    color: #1565c0;
    margin-bottom: 0.5rem;
}

.icon-item small {
    color: #6c757d;
    font-size: 0.8rem;
    font-weight: 500;
}

.warning-box {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    padding: 1rem;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.warning-box p {
    margin: 0;
    color: #e65100;
    font-size: 0.9rem;
    font-weight: 500;
}

.mfa-footer {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid #dee2e6;
}

.mfa-footer p {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.spinner-container {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.spinner-container.active {
    display: flex;
}

.success-message {
    display: none;
    text-align: center;
    padding: 2rem;
}

.success-message.active {
    display: block;
}

.success-message i {
    font-size: 3rem;
    color: #4caf50;
    margin-bottom: 1rem;
}

.success-message h3 {
    color: #1565c0;
    margin-bottom: 1rem;
}

@media (max-width: 576px) {
    .mfa-header {
        padding: 1.5rem 1rem;
    }

    .mfa-content {
        padding: 1.5rem 1rem;
    }

    .icon-row {
        gap: 1rem;
    }

    .icon-item i {
        font-size: 1.2rem;
    }
}


/* MFA End */
