@charset "utf-8";

:root {
    --primary: #e30613;
    --primary-color: #FFF
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100;
    src: url(./fonts/roboto-v20-latin-100.eot);
    src: local('Roboto Thin'), local(Roboto-Thin), url(./fonts/roboto-v20-latin-100.eot?#iefix) format("embedded-opentype"), url(./fonts/roboto-v20-latin-100.woff2) format("woff2"), url(./fonts/roboto-v20-latin-100.woff) format("woff"), url(./fonts/roboto-v20-latin-100.ttf) format("truetype"), url(./fonts/roboto-v20-latin-100.svg#Roboto) format("svg")
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url(./fonts/roboto-v20-latin-300.eot);
    src: local('Roboto Light'), local(Roboto-Light), url(./fonts/roboto-v20-latin-300.eot?#iefix) format("embedded-opentype"), url(./fonts/roboto-v20-latin-300.woff2) format("woff2"), url(./fonts/roboto-v20-latin-300.woff) format("woff"), url(./fonts/roboto-v20-latin-300.ttf) format("truetype"), url(./fonts/roboto-v20-latin-300.svg#Roboto) format("svg")
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url(./fonts/roboto-v20-latin-regular.eot);
    src: local(Roboto), local(Roboto-Regular), url(./fonts/roboto-v20-latin-regular.eot?#iefix) format("embedded-opentype"), url(./fonts/roboto-v20-latin-regular.woff2) format("woff2"), url(./fonts/roboto-v20-latin-regular.woff) format("woff"), url(./fonts/roboto-v20-latin-regular.ttf) format("truetype"), url(./fonts/roboto-v20-latin-regular.svg#Roboto) format("svg")
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url(./fonts/roboto-v20-latin-700.eot);
    src: local('Roboto Bold'), local(Roboto-Bold), url(./fonts/roboto-v20-latin-700.eot?#iefix) format("embedded-opentype"), url(./fonts/roboto-v20-latin-700.woff2) format("woff2"), url(./fonts/roboto-v20-latin-700.woff) format("woff"), url(./fonts/roboto-v20-latin-700.ttf) format("truetype"), url(./fonts/roboto-v20-latin-700.svg#Roboto) format("svg")
}

body {
    font-family: 'Roboto', -apple-system, system-ui, BlinkMacSystemFont, san-serif;
    color: #565656;
    font-size: 18px
}

.mybg,
body {
    background-color: #f8f8f8;
    background-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: #e30613
}

.header {
    text-align: center;
    padding: 20px 5px;
    color: #e30613;
    background: #e30613;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 0, 0, 0.1) 100%);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
}

input,
button,
.btn,
textarea,
select {
    font-size: 22px;
    min-height: 46px;
    line-height: 30px;
    vertical-align: middle;
    box-shadow: 0 2px 5px #e7e7e7;
    border: 2px solid transparent;
}

input,
textarea,
select {
    color: #e30613;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #fff inset !important;
    -webkit-text-fill-color: #e30613 !important;
    transition: background-color 5000s ease-in-out 0
}

input,
textarea,
select {
    color: #636364
}

.btn,
btn,
input.submit,
form .btn {
    font-family: inherit;
    background-color: #e30613;
    background-color: var(--primary);
    color: #FFF;
    color: var(--primary-color);
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(240, 107, 158, 0.3);
    flex: 1;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #fff inset !important;
    -webkit-text-fill-color: #e30613 !important;
    transition: background-color 5000s ease-in-out 0
}

.btn,
btn,
form .btn {
    font-family: inherit;
    background-color: #e30613;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(227, 6, 19, 0.4);
    min-height: 42px;
    border: 2px solid transparent;
}

.btn.secondary {
    background: #f0f1f6;
    color: #636364;
    box-shadow: none;
}

.btn.red {
    background-color: #e16666;
    box-shadow: 0 2px 8px rgba(225, 102, 102, 0.4)
}

.btn.success {
    background-color: #5cb16b;
    box-shadow: 0 2px 8px rgba(92, 177, 107, 0.4)
}

.btn.grey {
    background-color: #828282;
    box-shadow: 0 2px 8px #d4d4d4
}

.btn.giant {
    padding: 15px 25px
}

form .btn.full {
    margin: 0;
    width: 100%;
    flex: 1
}

label.oneline b {
    background-color: transparent;
    color: #636364;
    font-size: 20px;
    top: -13px;
}

input[type="checkbox"]:checked:before,
input[type="radio"]:checked:before {
    background: #e30613
}

@keyframes fadeinmodal {
    0% {
        opacity: 0;
        transform: scale(1.1)
    }

    100% {
        opacity: 1;
        transform: scale(1)
    }
}

.modal .content {
    opacity: 0;
    background: #f4f9f9;
    animation: fadeinmodal .3s;
    animation-fill-mode: forwards
}

.modal .nav-header {
    text-align: left;
    font-size: 17px;
    color: #71b6af;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    margin: 0
}

.modal .icon.close {
    float: right;
    margin: -4px -4px 0 0;
    cursor: pointer;
    width: 34px;
    height: 34px;
    background-color: rgba(227, 6, 19, 0.1);
    color: #e30613;
    border-radius: 8px
}

.modal-header {
    background: #fff5f5;
    color: red
}

.spinner::before,
.spinner::after {
    border-left-color: #e30613;
    border-right-color: #e30613
}

.user_logo img {
    width: 60%;
    max-width: 200px;
    display: block;
    margin: 0 auto
}

label.avatar {
    text-align: center
}

label.avatar img {
    border-radius: 100%;
    border: 10px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    width: 200px;
    height: 200px;
    background: #a4a4a4;
}

.nav-header .logo {
    position: absolute;
    bottom: 9px;
    left: 50%;
    width: 164px;
    margin-left: -82px;
}

.nav-header .logo img {
    height: auto
}

.app-navigation .nav-header {
    padding: 20px;
    text-align: center;
    background: #ffffff;
    color: #000000;
    font-size: 24px;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    box-shadow: none;
}

.mymenu {
    display: flex;
    flex-direction: column;
    height: 100%
}

.menu_items {
    font-size: 0
}

.menu_items .item {
    margin: 20px;
    position: relative;
    display: block
}

@media (min-width: 700px) {
    .menu_items .item {
        width: 46%;
        margin: 2%;
        display: inline-block
    }
}

.menu_items .item:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 14px;
    z-index: -1;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05)
}

.menu_items .item .name {
    background: #e30613;
    padding: 10px 15px;
    color: #fff;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px
}

.menu_items .item .image {
    padding: 69% 0 0;
    border-radius: 10px 10px 0 0;
    background-size: 100%;
    background-size: cover;
    background-position: center;
    background-color: #d2d2d2
}

.menu_items .item.has_image .name {
    border-radius: 0 0 10px 10px
}

/* - - - - - - - - - - - - - - - - - NOT REAUSABLE - - - - - - - - - - - - - - - - -  */
/* - - - - - - - - - - - - - - - - - NOT REAUSABLE - - - - - - - - - - - - - - - - -  */
/* - - - - - - - - - - - - - - - - - NOT REAUSABLE - - - - - - - - - - - - - - - - -  */
html.camera-preview-on,
.camera-preview-on body,
.camera-preview-on .current_page {
    background: transparent;
}

.capture {
    width: 100%;
    height: 100%;
}

.logo-solo,
.capture .actions {
    width: 70%;
    margin: 15px 15%;
    text-align: center;
}

.capture .analyze {
    box-shadow: 0 5px 10px 0 rgba(255, 0, 0, 0.2)
}

.capture .btn {
    margin: 0 5px
}

.capture .photo-area {
    width: 60%;
    padding: 0 0 120% 0;
    margin: 0 20%;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 500px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: -2;
}

.capture .photo-area .ray {
    content: '';
    width: 110%;
    height: 2px;
    background: red;
    display: block;
    top: 50%;
    left: -5%;
    position: absolute;
    animation: scanner 8s infinite linear;
    perspective: 200px;
}

.capture .screws {
    padding: 19px 6px 0 6px;
    overflow: auto;
    white-space: nowrap;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    width: 100%;
}

.capture .screws img {
    margin: 5px;
    width: 40px;
    border-radius: 10px
}

@keyframes scanner {

    0%,
    100% {
        top: 10%;
    }

    50% {
        top: 90%
    }
}

.capture .photo-area .ray:after {
    content: '';
    display: block;
    margin-top: 1px;
    margin-left: -5%;
    width: 110%;
    height: 20px;
    border-radius: 45px 45px 0 0;
    background: rgba(255, 255, 255, 0.5);
    background: linear-gradient(to bottom, rgb(227, 6, 19) 0%, rgb(227, 6, 19) 20%, rgba(227, 6, 19, 0) 100%);
    transform: rotateX(90deg);
    transform-origin: top center;
    animation: raylight 8s infinite linear;
}

.capture .btn.analyze,
.capture .btn.instructions {
    position: absolute;
    bottom: -21px;
    right: 50%;
    font-size: 15px;
    margin-right: -95px;
    width: 190px;
    padding: 0;
    min-height: auto;
    height: 40px;
    line-height: 33px;
    border-radius: 30px;
}

.capture .btn.instructions {
    top: -15px;
    background: #bebebe;
    box-shadow: none;
    color: white;
    height: 30px;
    line-height: 27px;
    width: 140px;
    font-size: 14px;
    margin-right: -70px;
    line-height: 1.7;
}

@keyframes raylight {
    0% {
        transform: rotateX(135deg)
    }

    25% {
        transform: rotateX(90deg)
    }

    50% {
        transform: rotateX(45deg)
    }

    75% {
        transform: rotateX(90deg)
    }

    100% {
        transform: rotateX(135deg)
    }
}

.capture .guide-x {
    position: absolute;
    top: 50%;
    left: 15%;
    width: 70%;
    height: 1px;
    margin: -1px;
    background-image: -moz-linear-gradient(left, #FFF 0%, #FFF 50%, rgba(0, 0, 0, 0.2) 51%);
    background-image: -webkit-linear-gradient(left, #FFF 0%, #FFF 50%, rgba(0, 0, 0, 0.2) 51%);
    background-image: linear-gradient(to left, #FFF 0%, #FFF 50%, rgba(0, 0, 0, 0.2) 51%);
    background-repeat: repeat;
    background-size: 10px 10px;
    background-position: center
}

.capture .guide-y {
    position: absolute;
    top: 15%;
    left: 50%;
    width: 1px;
    height: 70%;
    margin: -1px;
    background: -moz-linear-gradient(top, #FFF 0%, #FFF 50%, rgba(0, 0, 0, 0.2) 51%);
    background: -webkit-linear-gradient(top, #FFF 0%, #FFF 50%, rgba(0, 0, 0, 0.2) 51%);
    background: linear-gradient(to bottom, #FFF 0%, #FFF 50%, rgba(0, 0, 0, 0.2) 51%);
    background-repeat: repeat;
    background-size: 10px 10px;
    background-position: center;
}

.photo-area .zoom-in,
.photo-area .zoom-out {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #e30613;
    top: 50%;
    left: -20px;
    border-radius: 20px;
    border: 2px solid #aa000a;
    color: #FFF;
    text-align: center;
    line-height: 32px;
    margin: -20px -1px 0 -1px;
    cursor: pointer;
}

.photo-area .zoom-out {
    right: -20px;
    left: auto;
}

.detected {
    white-space: nowrap;
    padding: 15px 0 15px 15px;
    background: #868686;
    color: #FFF;
    text-align: center;
    overflow: hidden;
    overflow-y: auto;
    min-height: 114px;
}

.detected--implant {
    width: 56px;
    margin: 0 15px 0 0;
    display: inline-block;
    vertical-align: middle;
    background: black;
    border-radius: 10px;
    min-height: 84px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    position: relative;
}

.detected--implant .preview {
    padding: 25%;
}

.detected--implant .accuracy {
    display: block;
    display: none;
    line-height: 1;
    padding: 2px 0;
    position: absolute;
    width: 26px;
    background: red;
    font-size: 9px;
    top: -6px;
    left: 50%;
    margin: 0 0 0 -13px;
    border-radius: 50px;
    font-weight: 800;
}

.ai-results {
    display: flex;
    flex-direction: column;
    height: 100%
}

.implant-info {
    font-size: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.implant-info h3 {
    text-align: left;
    width: 100%;
    padding: 15px 0 5px 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 20px;
}

.implant-info--center {
    flex: 1;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding: 15px;
}

.implant-info--main {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.implant-info--images {
    width: 30%;
    max-width: 120px;
    display: inline-block;
    vertical-align: middle;
    padding: 0 0 10px 0;
}

.implant-info--implant .top {
    border: 2px solid #f7f7f7;
    z-index: 6;
    position: absolute;
    top: -12%;
    width: 50%;
    left: 25%;
    border-radius: 10px;
}

.implant-info--implant {
    background: #ffffff;
    padding: 200% 0 0 0;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 10px 3px rgb(0 0 0 / 10%);
}

.implant-info--implant .main_image {
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.implant-info--data {
    width: 70%;
    display: inline-block;
    padding: 5px 0 10px 10px;
    vertical-align: middle;
    font-size: 14px;
}

.implant-info--data .keyval {
    display: block;
    padding: 5px 0
}

.implant-info--data .keyval:first-of-type {
    border-top: none
}

.implant-info--data .key {
    padding: 0;
    letter-spacing: 2px;
    color: #b7b7b7;
}

.implant-info--data .val {
    color: black;
    font-size: 18px;
    display: block;
    text-align: left;
    padding: 5px 0;
}

.implant-info--data h2 {
    text-align: left;
    padding: 10px 0
}

.quality-question {
    font-size: 20px;
    padding: 0 0 0 0;
    text-align: center;
}

.modal.implant .quality-question {
    display: none
}

.scrollpicker {
    white-space: nowrap;
    overflow: auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.scrollpicker label {
    width: auto;
    text-align: center;
}

.figure {
    display: inline-block;
    margin: 5px;
    vertical-align: middle;
    border-radius: 15px;
    padding: 5px 5px 3px 5px;
    background: #ffffff;
    box-shadow: 0 2px 5px #e7e7e7;
    color: #494949;
}

.figure.checked {
    background: #e20613;
    color: #FFF;
}

.search_options .checkbox.inline {
    margin: 10px 10px 10px 0;
    border-radius: 15px;
    padding: 10px 15px 10px 13px;
    background: #ffffff;
    box-shadow: 0 2px 5px #e7e7e7;
}

.search_options .checkbox.inline.checked {
    background: #ffc9cc
}

.figure img {
    width: 100px;
    min-width: 100px;
    height: 100px;
    display: block;
    border-radius: 10px;
    background: #bebebe;
}

.big .figure img {
    width: 120px;
    min-width: 120px;
    height: 120px;
}

.figure b {
    background: none;
    color: inherit;
    margin: 0;
    font-size: 11px;
    padding: 5px 0 4px 0;
}

.figure input {
    display: none
}

.search h2 {
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    margin-top: 20px;
}

.search .info {
    font-size: 16px;
    line-height: 1.2;
    padding: 0 0 5px 0
}

.implantinfo {
    display: flex;
    align-items: center;
    padding: 20px;
    width: 100%;
    position: relative
}

/* .implantinfo::after {
    content: 'id: 'attr(data-id) ' - ordine: 'attr(data-order);
    font-size: 14px;
    position: absolute;
    opacity: 0.2;
    right: 25px;
    top: 6px;
} */

.implantinfo:nth-child(2n) {
    background: #ececec;
}

.implantinfo .main_image {
    width: 50px;
    height: 100px;
    background: white;
    border-radius: 8px;
    margin: 0 20px 0 0;
    object-fit: contain;
    object-position: center;
    box-shadow: 0 3px 5px 0 #00000024;
}

.implantinfo .info {
    flex: 1
}

.implantinfo .chars {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.implantinfo .char {
    margin: 2px 0 0 5px;
    background: #000;
    border-radius: 7px;
    overflow: hidden;
}

.implantinfo .char img {
    padding: 0;
    width: 30px;
    height: 30px;
}

span.beta {
    position: absolute;
    bottom: -10px;
    right: 10%;
    background: black;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 10px;
    line-height: 1;
}

.implant-info__screw {
    display: table;
    width: 100%;
    min-width: 100%;
    padding: 0 0;
}

.implant-info__screw .char {
    display: table-cell;
    padding: 10px;
    line-height: 1;
    font-size: 26px;
    vertical-align: middle;
}

.implant-info__screw .screw_image {
    width: 69px;
    font-size: 0;
    padding: 0;
    background: black;
    border-radius: 10px;
    padding: 5px;
}

.implant-info__screw b {
    display: block;
    color: #b2b2b2;
    font-size: 16px;
    font-weight: 400;
}

.implant-info__chars {
    display: flex;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
}

.implant-info__chars .char_cell {
    margin: 5px;
    font-size: 13px;
    flex: 1;
    padding: 10px;
    border: 2px dashed rgb(0 0 0 / 10%);
    border-radius: 10px;
    line-height: 1.2;
}

.implant-info__chars .char_cell.large {
    width: 100%;
    flex: auto;
    display: flex;
    align-items: center;
}

.implant-info__infotext {
    text-align: left;
}

.implant-info__chars .char_cell.large img {
    height: auto;
    width: 100px;
    margin: 0 10px 0 0;
}

.implant-info__chars .char_cell b {
    white-space: nowrap;
    display: block;
}

.implant-info__chars img {
    width: 60px;
    display: inline-block;
    border-radius: 10px;
}

.request-history .card {
    border-left: 5px solid var(--color)
}

.requestview .images {
    margin: 0 -5px;
    text-align: center
}

.requestview .images img {
    border-radius: 10px;
    margin: 10px 5px;
    width: 120px
}

.requestview .results {
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    padding: 20px
}

.status-priority_review.card {
    border-left: 5px solid #e30613;
    background: #fffcef
}

.select-popup--img img {
    margin: 0;
    height: 70px;
}

.select-popup--label {
    padding: 5px;
    font-weight: 400;
    line-height: 1.2;
}

.name-brand_id .select-popup--option {
    text-align: center;
    justify-content: center;
    flex-direction: column;
    padding: 15px;
    font-size: 24px
}

.name-brand_id .select-popup--img {
    width: 200px;
}

.name-brand_id .select-popup--option.has-img {
    padding: 0
}

.name-brand_id .select-popup--option.has-img .select-popup--label {
    display: none
}

.camera-preview {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.select-popup--option {
    margin: 5px 10px 5px 10px;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 5px;
    border: 2px solid #e2e2e2;
    justify-content: space-between;
}

.select-popup--option img {
    width: 100px;
    min-width: 100px;
    margin: -5px 0;
}

.select-popup--option b {
    padding: 5px;
    font-weight: 400;
    line-height: 1.2;
}

.search-options {
    border-bottom: 2px dashed #ff0000;
}

.search-options input {
    border-radius: 0;
    box-shadow: none;
    background: #fff2f2;
    border-radius: 10px 10px 0 0;
    color: #f00;
    padding: 5px 15px;
}

.premium-info {
    font-size: 16px;
    padding: 5px;
}

.premium-info .val {
    font-weight: 800;
}

.profile-buy-button {
    padding: 10px 10px;
    border-radius: 10px;
    background: #c3f4ce;
    color: #0d6c0e;
    text-align: center;
    margin: 10px 0 0 0;
}

.text-search-note {
    margin: 0 20px;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    background: #f1f1f1;
    border: 2px dashed #cacaca;
    color: #8a8a8a;
}

.text-search-note.show {
    background: #fff2f3;
    border: 2px dashed #e30613;
    color: #e30613;
}

.text-search-note .text {
    font-size: 15px
}

body .cropper-modal {
    background-color: #7d7d7d;
    opacity: 0.5;
}



.cropme-wrapper .viewport {
    border-radius: 10px
}

.cropme-wrapper .viewport:after,
.cropme-wrapper .viewport:before {
    z-index: 999;
    content: '';
    display: block;
    position: absolute;
    pointer-events: none;
    top: 15%;
    left: 50%;
    width: 1px;
    height: 70%;
    margin: -1px;
    background: -moz-linear-gradient(top, #FFF 0%, #FFF 50%, rgba(0, 0, 0, 0.2) 51%);
    background: -webkit-linear-gradient(top, #FFF 0%, #FFF 50%, rgba(0, 0, 0, 0.2) 51%);
    background: linear-gradient(to bottom, #FFF 0%, #FFF 50%, rgba(0, 0, 0, 0.2) 51%);
    background-repeat: repeat;
    background-size: 10px 10px;
    background-position: center;
}

.cropme-wrapper .viewport:before {
    width: 70%;
    top: 50%;
    left: 15%;
    height: 1px;
    background-image: -moz-linear-gradient(left, #FFF 0%, #FFF 50%, rgba(0, 0, 0, 0.2) 51%);
    background-image: -webkit-linear-gradient(left, #FFF 0%, #FFF 50%, rgba(0, 0, 0, 0.2) 51%);
    background-image: linear-gradient(to left, #FFF 0%, #FFF 50%, rgba(0, 0, 0, 0.2) 51%);
}

form h3 {
    padding: 30px 3px 5px 3px;
    font-weight: 800
}