:root {
     --ok-color: #f3d33a;
}

@keyframes opc {
     to {
          opacity: 1;
     }
}
#sectionWaitForCamera {
     text-align: right;
     width: 100%;
     height: 100%;
     z-index: 200;
     padding: 2rem 1rem;
     color: #ccc;
     font-size: 1.17rem;
     font-family: sans-serif;
}
.section-wrap {
     display: flex;
     gap: 1.3rem;
}
.section-wrap :is(.mobile-qr, .web-cam, #paramsText, #videoContainer) {
     border: 1px solid #ccc;
     background-color: #f0f0f0;
     border-radius: 0.3rem;
     padding: 0.6rem;
     display: flex;
     flex-direction: column;
     align-items: center;
     flex: 1;
}
.section-wrap #paramsText {
     padding: 1.1rem;
}
.section-wrap :is(.mobile-qr, .web-cam) {
     text-align: center;
}
.section-wrap :is(.mobile-qr, .web-cam) div {
     display: flex;
     align-items: center;
     height: 100%;
     width: max-content;
}
.section-wrap :is(.mobile-qr, .web-cam) p {
     text-align: center;
}
.section-wrap :is(.mobile-qr, .web-cam) p:empty {
     display: none;
}
.section-wrap .mobile-qr .qr-image {
     flex: 1;
     aspect-ratio: 1;
     border: 1px solid #eeeeee;
     border-radius: 0.36rem;
     background-color: #ffffff;
     padding: 0.6rem;
     margin: 1rem;
}
.section-wrap .mobile-qr .qr-image img {
     width: 280px;
}
#sectionEnrollSuccess {
     padding: 1rem 0.2rem;
     font-size: 1.18rem;
     color: var(--ok-color);
     max-width: 96vw;
     display: flex;
     flex-direction: column;
     gap: 1rem;
     min-height: 300px;
     justify-content: center;
     text-align: center;
     font-family: sans-serif;
     align-items: center;
}
#sectionEnroll #paramsText {
     flex: 0 1 36%;
     max-width: 96%;
     white-space: wrap;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     justify-content: space-around;
     gap: 1rem;
}
#sectionEnroll #paramsText span {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     gap: 0.5rem;
}
#sectionEnroll #paramsText img {
     max-width: 75px;
     border-radius: 0.5rem;
}
#sectionEnroll #videoContainer {
     flex: 1 0 60%;
     display: grid;
     grid-template-columns: 1fr;
     grid-template-rows: 3fr 90px;
     padding: 0;
     gap: 0;
     justify-items: center;
     background-color: #222222;
}
#sectionEnroll #videoContainer img {
     grid-column: 1;
     grid-row: 1/3;
     width: 100%;
     z-index: 98;
     transform: scaleX(-1);
}
#sectionEnroll #videoContainer video {
     background-color: #222222;
     grid-column: 1;
     grid-row: 1/3;
     border-radius: 0.4rem;
     width: 100%;
     transform: scaleX(-1);
}
#sectionEnroll #processResult {
     grid-column: 1;
     grid-row: 1;
     color: #eeeeee;
     font-size: 1.05rem;
     grid-column: 1;
     grid-row: 1;
     background-color: hsl(0 0% 10% /0.8);
     padding: 0.2rem 0.8rem;
     z-index: 102;
     justify-self: end;
     margin: 5px 5px auto;
     font-family: sans-serif;
     font-weight: 300;
}
#sectionEnroll #processResult[notok] {
     color: #ff5454;
}
#sectionEnroll .faceOverlay {
     grid-column: 1;
     grid-row: 1/3;
     width: 100%;
     height: 100%;
     z-index: 99;
     background-repeat: no-repeat;
     background-position: center;
     background-size: 45%;
     opacity: 0.45;
}
.faceOverlayOk {
     background-image: url("https://robostaticcontent71830.s3.eu-central-1.amazonaws.com/Content/Images/overlayOK.png");
     transition: all 0.3s ease-in-out;
}
.faceOverlayNotOk {
     background-image: url("https://robostaticcontent71830.s3.eu-central-1.amazonaws.com/Content/Images/overlayNotOK.png");
     transition: all 0.3s ease-in-out;
}
#sectionEnroll #buttons {
     grid-column: 1;
     grid-row: 2;
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     align-items: center;
     gap: 0.5rem;
     max-width: 90%;
     z-index: 100;
}
#sectionEnroll #buttons button {
     border: 0;
}
:is(#buttons, #buttons-footer) {
     padding: 1rem 0.3rem;
}
.btn-ro {
     display: flex;
     align-items: center;
     gap: 0.7rem;
     border-radius: 0.4rem;
     padding: 0.4rem 1.6rem;
     height: 52px;
     font-size: 1.17rem;
     transition: all 0.3s ease-in-out;
     width: max-content;
     font-family: sans-serif;
     border: 0;
}
.btn-ro .material-symbols-outlined {
     font-size: 38px;
}
a {
     text-decoration: none;
     /* color: #cccccc; */
}
.btn-std-trsp {
     border: 1px solid #cccccc;
     height: 64px;
     background-color: #ffffff;
     border-radius: 0.88rem;
}
.btn-std-trsp:hover {
     border-color: #555555;
}
.btn-std {
     background-color: var(--ok-color);
     color: #222222;
}
.btn-std:disabled {
     background-color: #cccccc;
}
.btn-std:enabled {
     background-color: #fff666;
}
.btn-std-2 {
     background-color: #aaaaaa;
     color: #222222;
}
.btn-std-2:hover {
     background-color: #ffffff;
}
.btn-std-2:active {
     background-color: #fff666;
}
.btn-std-ok {
     background-color: var(--ok-color);
     color: #222222;
}
.btn-std-ok:hover {
     background-color: #ffffff;
}
.btn-back:hover {
     background-color: #eeeeee;
}
.face-img {
     text-align: center;
     padding: 0;
}
.face-img img {
     width: 60%;
     border-radius: 0.3rem;
     margin-top: 1rem;
}

@media screen and (max-width: 680px) {
     .face-img img {
          width: 90%;
     }
}

body[mobile] {
     background-color: #222222;
}
body[mobile] #sectionEnroll {
     flex-direction: column;
     align-items: center;
     width: 96vw;
     height: calc(var(--vh, 1vh) * 100);
}
body[mobile] #sectionEnroll #videoContainer {
     align-items: center;
}
body[mobile] #sectionEnroll .faceOverlay {
     background-size: 80%;
}
body[mobile] #sectionEnroll #buttons {
     display: flex;
     flex: 1;
     padding: 0.3rem;
     gap: 1rem;
}
body[mobile] #sectionWaitForCamera {
     display: flex;
     flex-direction: column;
     text-align: center;
     width: 95vw;
     height: 96svh;
     padding: 1rem 0.5rem;
     margin: auto;
     position: absolute;
     justify-content: space-between;
     box-sizing: border-box;
     background-color: #eeeeee;
     border-radius: 0.5rem;
     align-items: center;
}
body[mobile] #sectionEnroll #processResult {
     justify-self: unset;
}
body[mobile] #paramsText {
     overflow: hidden;
     display: flex;
     flex-direction: column;
     justify-content: space-around;
     gap: 0.7rem;
     color: #222222;
}
body[mobile] #paramsText span {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     gap: 0.4rem;
}
body[mobile] #paramsText img {
     max-width: 75px;
     border-radius: 1rem;
}
/*
.btns-footer.transaction-nav {
     background-color: white;
     padding: 1rem;
}

.transaction-summary {
     padding: 1rem !important;
}

.transaction-footer-fan .transaction-summary > div {
     display: flex;
}
div[transaction-numbers] {
     display: grid;
     grid-auto-flow: row;
     padding: 0 calc(0.7rem + 2vw);
}
div[transaction-numbers] > div {
     display: grid;
     grid-template-columns: 1fr 1fr auto;
     width: 100%;
     justify-items: end;
     align-items: center;
}
div[transaction-numbers] > div * {
     width: max-content;
}
div[transaction-numbers] div p {
     font-size: clamp(1.1rem, 1rem + 1vw, 1.3rem);
}
:is(div[transaction-numbers], #additionalCharges) .read-only-value {
     font-size: clamp(1.3rem, 1.3rem + 2vw, 1.56rem);
     justify-content: flex-end;
}
[transaction-id] {
     display: flex;
     gap: 0.7rem;
     justify-content: flex-end;
     padding: 0.7rem calc(0.7rem + 2vw);
}
:is(.std, .std-2, .btn-trsp, .std-trsp, .btn-std-trsp) {
     min-width: 11ch;
     border-radius: var(--btn-radius);
     font-size: var(--btn-std-txt-size);
}
.btn-ro.std-trsp-large {
     min-width: 15ch;
     font-size: calc(var(--btn-std-txt-size) * 1.2);
     color: var(--btn-trsp-txt), #666666;
     border: 1px solid hsl(var(--first-base) 3% 65%);
     border-radius: calc(var(--btn-radius) * 2);
}
.container .btns-footer .std-2 {
     background: 0.5rem 1rem;
     background: #000000;
     color: #ffffff;
     border-radius: 2rem;
}
.btns-footer {
     display: flex;
     gap: 0.3rem 1rem;
     padding: 1rem 1.8rem;
     width: 100%;
     min-height: 110px;
     height: max-content;
     max-width: 98vw;
     align-items: center;
     justify-content: space-around;
}
#aSubmit,
#aMobileSubmit {
     margin: 0;
     background: #000000;
     color: #ffffff;
}

.active.transaction-total-price {
     display: flex;
     gap: 1rem;
     align-items: center;
     justify-content: flex-end;
     font-size: 1.5rem;
}
.active.transaction-number {
     display: flex;
     gap: 1rem;
     font-size: 1.2rem;
}*/
