﻿@charset "UTF-8";
/* Insert your custom CSS styles */
/* Massive replacement of all #4c6b99 to #034f84 */

@media (min-width: 1200px) {
    .container {
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* Expample of custom font configuration */
/*https://fonts.googleapis.com/css2?family=Helvetica%20Neue*/
/*url("fonts/AvenirNextLTPro-Regular.otf") format("truetype")*/

/*@font-face {
    font-family: 'CustomFont';
    src: url("https://fonts.gstatic.com/l/font?kit=jAnfgHBgCsv4eNLTaMECf8DQsNS_exA&skey=4ad46dd97873f7d7&v=v16");
    font-style: normal;
    font-weight: normal;
}*/

@font-face {
    font-family: 'Aleo';
    src: url("fonts/Aleo-Regular.otf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

html * {
    font-family: 'CustomFont';
}

/* GLOBAL */
body {
/*    padding-top: 10px;
    padding-right: 40px;
    padding-left: 40px;
    padding-bottom: 10px;*/
    font-size: 16px;
    overflow-x: hidden;
}

.title {
    font-size: 26px;
    padding-top: 10px;
    font-weight: bold;
    text-rendering: optimizelegibility;
    /*padding-bottom: 10px;*/
}

.subtitle {
    font-size: 18px;
    padding-top: 10px;
    text-rendering: optimizelegibility;
    /*padding-bottom: 10px;*/
}

.title-mobile {
    margin: 0 0 5px;
    text-rendering: optimizelegibility;
    font-size: 22px;
    font-weight: bold;
}

.subtitle-mobile {
    margin: 0 0 5px;
    text-rendering: optimizelegibility;
    font-size: 16px;
}

p, .list li {
    font-size: 16px;
    color: #999999;
}

h3 {
    font-weight: normal !important;
    color: #555 !important;
    font-size: 34px !important;
}

h4 {
    font-weight: normal;
    color: var(--main-color);
    font-size: 28px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 5px;
    text-rendering: optimizelegibility;
}

h5, .h5 {
    font-size: 18px;
}

.form-control {
    font-size: 14px;
}

.top-arrow-banner {
    background-image: url("https://www.neocheck.com/sites/default/files/fondo-proceso-inicio.jpg");
    height: 67px;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-color: #FFFFFF;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.bottom-arrow-banner {
    background-image: url("https://www.neocheck.com/sites/default/files/fondo-proceso-fin.jpg");
    height: 69px;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-color: #FFFFFF;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.work .description {
    font-size: 11px;
    font-style: italic;
    line-height: 16px;
    text-align: center;
}

* {
  border-color: #e1e1e1;
  border-style: solid;
  border-width: 0;
  zoom: 1;
  -webkit-tap-highlight-color: transparent;
}

/* line 41, ../sass/_main.scss */
.title-box {
  border-bottom-width: 1px;
  margin-bottom: 10px;
  position: relative;
}
.title-box:before {
  background: #1e1e1e;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  margin: 0 0 -1px;
  position: absolute;
  width: 40px;
}
/* line 57, ../sass/_main.scss */
.title-box.text-right:before {
  left: auto;
  right: 0;
}
/* line 61, ../sass/_main.scss */
.title-box.text-center:before {
  left: 50%;
  margin-left: -20px;
}
/* line 65, ../sass/_main.scss */
.title-box .title {
  color: #7f7f7f;
  font-size: 25px;
  font-weight: normal;
  margin: 0 0 1px 0;
  padding: 1px 0 0;
}

.form-box {
    background: #f2f2f2;
    border-radius: 5px;
    margin: 0 0 0 0;
    padding: 15px;
}

.alert {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid transparent;
  border-radius: 0;
}

.alert .alert-icon {
  display: block;
  float: left;
  margin: -5px 20px 0 0;
}
/* line 1040, ../sass/_typography.scss */
.alert .alert-icon:before {
  font-size: 34px;
}
/* line 1044, ../sass/_typography.scss */
.alert.alert-default {
  background-color: #555;
  border: 1px solid #555;
  color: #fff;
}

.text-unknown,
a.text-unknown:hover,
.icon.text-unknown {
  color: #777;
}

td.ok
{
   color: green;
}

td.failed
{
  color: red;
}

td.warning
{
  color: orange;
}

td.not_executed
{
  color: gray;
}

.input-text {
    margin-bottom: 0px !important;
}

.textBoxAsLable {
    background-color: #fff;
    background: transparent;
}

.transition {
    color: grey;
}


/* Image magnifier*/
* {
    box-sizing: border-box;
}

.img-magnifier-container {
    position: relative;
}

.img-magnifier-glass {
    position: absolute;
    border: 3px solid #000;
    border-radius: 50%;
    cursor: none;
    /*Set the size of the magnifier glass:*/
    width: 250px;
    height: 250px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #7f7f7f;
    -webkit-transition: .4s;
    transition: .4s;
    padding: 0px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: var(--main-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--main-color);
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 25px;
}

    .slider.round:before {
        border-radius: 50%;
    }


/* Slider Mobile*/
.switchMobile {
    position: relative;
    display: inline-block;
    width: 140px;
    height: 65px;
}

    .switchMobile input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.sliderMobile {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #7f7f7f;
    -webkit-transition: .4s;
    transition: .4s;
    padding: 0px;
}

    .sliderMobile:before {
        position: absolute;
        content: "";
        height: 50px;
        width: 50px;
        left: 8px;
        bottom: 8px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .sliderMobile {
    background-color: var(--main-color);
}

input:focus + .sliderMobile {
    box-shadow: 0 0 1px var(--main-color);
}

input:checked + .sliderMobile:before {
    -webkit-transform: translateX(72px);
    -ms-transform: translateX(72px);
    transform: translateX(72px);
}

/* Rounded sliders */
.sliderMobile.round {
    border-radius: 50px;
}

    .sliderMobile.round:before {
        border-radius: 50%;
    }



/* Popup container - can be anything you want */
.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* The actual popup */
    .popup .popuptext {
        visibility: hidden;
        width: 160px;
        background-color: #555;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 8px 0;
        position: absolute;
        z-index: 1;
        bottom: 125%;
        left: 50%;
        margin-left: -80px;
    }

        /* Popup arrow */
        .popup .popuptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #555 transparent transparent transparent;
        }

    /* Toggle this class - hide and show the popup */
    .popup .show {
        visibility: visible;
        -webkit-animation: fadeIn 1s;
        animation: fadeIn 1s;
    }

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}











/*Styles from legacy VideoIdentification project*/

.text-unknown,
a.text-unknown:hover,
.icon.text-unknown {
    color: #777;
}

.btn.disabled {
    color: #ccc;
}

.label-title {
    margin-left: 5px;
    margin-top: 1px;
    font-size: 22px;
    vertical-align: top;
    color: #999999;
}

.background-color {
    color: #999999;
}

.main-color {
    color: #999999;
}

.secondary-color {
    color: #999999;
}

.button-color {
    color: var(--button-color);
}

.button-text-color {
    color: var(--button-text-color);
}

.rotate-180 {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg); /* Safari and Chrome */
    -moz-transform: rotateY(180deg); /* Firefox */
}

.outer {
    display: table;
    position: absolute;
    width: 100%;
}

.middle {
    display: table-cell;
    vertical-align: middle;
}

.inner {
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    /*whatever width you want*/
}

@keyframes lds-double-ring {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes lds-double-ring {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes lds-double-ring_reverse {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@-webkit-keyframes lds-double-ring_reverse {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

.lds-double-ring {
    position: relative;
}

    .lds-double-ring div {
        position: absolute;
        width: 176px;
        height: 176px;
        top: 12px;
        left: 12px;
        border-radius: 50%;
        border: 20px solid #000;
        border-color: #777777 transparent #777777 transparent;
        -webkit-animation: lds-double-ring 1.4s linear infinite;
        animation: lds-double-ring 1.4s linear infinite;
    }

        .lds-double-ring div:nth-child(2) {
            width: 132px;
            height: 132px;
            top: 34px;
            left: 34px;
            border-color: transparent #cccccc transparent #cccccc;
            -webkit-animation: lds-double-ring_reverse 1.4s linear infinite;
            animation: lds-double-ring_reverse 1.4s linear infinite;
        }

.lds-double-ring {
    width: 200px !important;
    height: 200px !important;
    -webkit-transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
    transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
}

.img-thumbnail-scan {
    border-radius: 0;
    display: inline-block;
    line-height: 0;
    position: relative;
    -webkit-transition: opacity .2s ease-in;
    transition: opacity .2s ease-in;
    width: auto;
    max-width: 400px;
    max-height: 400px;
}

.customCheckbox {
    height: 0;
    width: 0;
    visibility: hidden;
}

.checkboxLabel {
    cursor: pointer;
    text-indent: -9999px;
    width: 60px;
    height: 30px;
    background: #7f7f7f;
    display: inline-block;
    border-radius: 40px;
    position: relative;
    margin-bottom: 20px;
}

    .checkboxLabel:after {
        content: '';
        position: absolute;
        top: 5px;
        left: 5px;
        width: 20px;
        height: 20px;
        background: var(--button-text-color);
        border-radius: 20px;
        transition: 0.3s;
    }

input:checked + .checkboxLabel {
    background: var(--main-color);
}

    input:checked + .checkboxLabel:after {
        left: calc(100% - 5px);
        transform: translateX(-100%);
    }

.checkboxLabel:active:after {
    width: 50px;
}



.label-edit-mrz {
    border-width: 2px;
    border-color: #ccc;
    border-style: none solid none none;
    font-weight: bold;
    height: 30px;
    width: 16px;
    text-align: center;
    color: #ccc;
    font-size: 11px;
}

.input-edit-mrz {
    height: 45px;
    font-size: 32px;
    font-family: 'MyWebFont';
    text-transform: uppercase;
}


.img-scale-double {
    transform-origin: top left;
    transform: scale(2);
}

.h-5 {
    height: 5% !important;
}

.h-8 {
    height: 8% !important;
}

.h-10 {
    height: 10% !important;
}

.h-15 {
    height: 15% !important;
}

.h-20 {
    height: 20% !important;
}
.h-25 {
    height: 25% !important;
}
.h-30 {
    height: 30% !important;
}
.h-35 {
    height: 35% !important;
}
.h-40 {
    height: 40% !important;
}
.h-45 {
    height: 45% !important;
}
.h-50 {
    height: 50% !important;
}
.h-55 {
    height: 55% !important;
}
.h-60 {
    height: 60% !important;
}
.h-65 {
    height: 65% !important;
}
.h-68 {
    height: 68% !important;
}
.h-70 {
    height: 70% !important;
}
.h-75 {
    height: 75% !important;
}
.h-80 {
    height: 80% !important;
}
.h-85 {
    height: 85% !important;
}
.h-90 {
    height: 90% !important;
}
.h-95 {
    height: 95% !important;
}
.dvh-100 {
    height: 100vh;
    height: 100dvh !important;
}
@media (min-width: 576px) and (orientation:landscape) {
    .btn-block {
        padding: 10px;
    }

    .fa-40x {
        font-size: 20em !important;
    }

    .fa-9x {
        font-size: 4em !important;
    }
}

@media (min-width: 576px) and (orientation:portrait) {
    .btn-block {
        padding: 5%;
    }

    .fa-40x {
        font-size: 40em;
    }

    .fa-9x {
        font-size: 9em !important;
    }
}

.btn-warning {
    background-color: var(--warning-color);
    border-color: var(--warning-color);
    color: white;
}

.color-warning {
    color: var(--warning-color);
}

.color-valid {
    color: var(--valid-color);
}

.required:after {
    content: " *";
    color: red;
}

/* Phone Number control */
.iti__flag {
    background-image: url("/lib/intl-tel-input/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("/lib/intl-tel-input/img/flags@2x.png");
    }
}



#arrowAnim {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow {
    width: 5vw;
    height: 5vw;
    border: 2.5vw solid;
    border-color: black transparent transparent black;
    transform: rotate(-45deg);
}


.arrowSliding {
    position: absolute;
    -webkit-animation: slide 4s linear infinite;
    animation: slide 4s linear infinite;
}

.delay1 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.delay2 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.delay3 {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

@-webkit-keyframes slide {
    0% {
        opacity: 0;
        transform: translateX(15vw);
    }

    20% {
        opacity: 1;
        transform: translateX(9vw);
    }

    80% {
        opacity: 1;
        transform: translateX(-9vw);
    }

    100% {
        opacity: 0;
        transform: translateX(-15vw);
    }
}

@keyframes slide {
    0% {
        opacity: 0;
        transform: translateX(15vw);
    }

    20% {
        opacity: 1;
        transform: translateX(9vw);
    }

    80% {
        opacity: 1;
        transform: translateX(-9vw);
    }

    100% {
        opacity: 0;
        transform: translateX(-15vw);
    }
}



/* Custom Checkbox*/

/* The container */
.custom-checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    /*font-size: 22px;*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .custom-checkbox-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Custom checkbox */
.custom-checkbox-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #ccc;
    border-radius: 0.30em;
}

/* On mouse-over, add a grey background color */
.custom-checkbox-container:hover input ~ .custom-checkbox-checkmark {
    background-color: #999;
}

/* When the checkbox is checked, add a blue background */
.custom-checkbox-container input:checked ~ .custom-checkbox-checkmark {
    background-color: var(--button-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.custom-checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.custom-checkbox-container input:checked ~ .custom-checkbox-checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox-container .custom-checkbox-checkmark:after {
    left: 9px;
    top: 3px;
    width: 8px;
    height: 15px;
    border: solid;
    border-color: var(--button-text-color);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* Styles for rounded controls */
.btn {
    border-radius: 5px;
    border-width: 2px;
}

.btn-mobile {
    border-radius: 5px;
    border-width: 2px;
}


/* Style for button with only border (for secondary actions)*/
.btn-only-border {
    background-color: white;
    color: #3a3a3a;
    border-color: var(--main-color);
}


/* Style the tab */
.tab {
    overflow: hidden;
    border: 2px solid var(--main-color);
    background-color: #fff;
    border-radius: 5px 5px 0px 0px;
    display:flex;
    margin:auto;
}

/* Style the buttons inside the tab */
.tab button.tablinks {
    border: 2px solid var(--main-color);
    background-color: var(--main-color);
    float: left;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
    color: #fff;
    margin: auto;
    width: 100%;
    opacity: .9;
}

/* Change background color of buttons on hover */
.tab button.tablinks:hover {
    color: #fff;
    background-color: var(--main-color);
    opacity: 1;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: var(--main-color);
    text-transform: uppercase;
    opacity: 1;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 2px solid var(--main-color);
    border-top: none;
    border-radius: 0px 0px 5px 5px;
}



/*Styles from KYC.NeoCheck*/
.form-outline .form-control {
    background: #FFFFFF;
    border: 0px;
    box-shadow: 0 1px #fff, inset 0 1px 4px rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    height: 40px;
    line-height: 22px;
    margin-bottom: 22px;
    min-height: 40px;
    padding: 8px 12px;
    width: 100%;
}

.mx-7percent {
    margin-left: 7%;
    margin-right: 7%;
}

.tooltip {
    display: none; /* Oculto por defecto */
    background-color: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    position: absolute;
    font-size: 14px;
    z-index: 1000;
    white-space: nowrap; 
    pointer-events: none;
    transform: translateY(-50%); 
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

    .tooltip.show {
        display: block;
        opacity: 1;
    }