@font-face {
    font-family: "poppins";
    src: url("../fonts/Poppins-Regular.ttf");
}

@font-face {
    font-family: "poppins-semibold";
    src: url("../fonts/Poppins-SemiBold.ttf");
}

* {
    font-family: "poppins";
}

:root {
    --viewOrange: #ff9c2c;
    --gitcorePurple: #17b4dfc9;
}

.authrow {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.left-side {
    min-height: 100vh;
    background-color: #252b34;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #2c2738;
    padding: 30px;
    padding-top: 150px;
}

.signup-form {
    width: 70%;
    background-color: white;
    border-radius: 24px;
    padding: 30px;
    position: relative;
}

.avatar {
    position: absolute;
    top: 0px;
    right: 0px;
    transform: translate(50%, -50%);
}

.form-heading {
    font-family: "poppins-semibold";
    padding-right: 20px;
}

.custom-link {
    color: #2240da;
    text-decoration: none;
}

.custom-input {
    width: 100%;
    padding: 15px 25px;
    border: 2px solid #dbe2ea;
    outline: none;
    border-radius: 6px;
}

.custom-input-2 {
    width: 100%;
    padding: 9px 15px;
    border: 2px solid #dbe2ea;
    outline: none;
    border-radius: 6px;
}

.text-gitcore {
    color: var(--gitcorePurple);
}

.text-view {
    color: var(--viewOrange);
}

/* Buttons */

.btn-view {
    background-color: var(--gitcorePurple) !important;
}

.btn-gitcore {
    color: #fff;
    background-color: #535ce4 !important;
}

.btn-gitcore:active {
    background-color: #00ccff !important;
}

.btn-purple {
    color: #fff;
    background-color: #d65db1 !important;
}

.btn-pink {
    color: #fff;
    background-color: #ff6f91 !important;
}

.btn-darkorange {
    color: #fff;
    background-color: #ff9671 !important;
}

.btn-orange {
    color: #fff;
    background-color: #ffc75f !important;
}

.btn-red {
    background-color: #f64242 !important;
}

.btn-yellow {
    color: #fff;
    background-color: #f9f871 !important;
}

.alert-view {
    background-color: var(--viewOrange) !important;
}

/* End buttons */

.signup-form label {
    color: #756f86;
    margin-bottom: 10px;
}

.custom-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 2px solid #dbe2ea;
    border-radius: 5px;
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--gitcorePurple);
    border-color: var(--gitcorePurple);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 8px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn {
    max-width: 500px !important;
}

.submit-btn {
    background-color: var(--gitcorePurple);
    padding: 18px;
    color: white;
    width: 100%;
    border-radius: 6px;
    border: none;
}

.footer-links {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 70%;
    margin-top: 25px;
    padding-bottom: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 13px;
}

.footer-links img {
    padding-right: 3px;
}

.verify-text {
    text-align: center;
    margin-top: 55px;
}

.home-bg {
    background: linear-gradient(#252b34bd, #252b34bd), url("../img/hom-bg.png");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.page-btn {
    display: inline-block;
    background: var(--gitcorePurple);
    padding: 5px 25px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    border: 1px solid var(--gitcorePurple);
    font-family: "poppins-semibold";
    transition: all 0.3s;
    margin: 15px 0px;
}

.page-btn:hover {
    color: var(--gitcorePurple);
    border: 1px solid var(--gitcorePurple);
    background: transparent;
}

.navbar-brand {
    color: #17b4dfc9 !important;
    font-size: 38px;
    font-family: "poppins-semibold";
    margin-right: 2rem;
}

.nav-item {
    margin: 0px 10px;
}

.nav-link {
    color: #756f86 !important;
    transition: all 0.3s;
}

.nav-link:hover {
    color: #2fd2d2 !important;
}

.active {
    color: #208391 !important;
}

.table-data {
    background: white;
    padding: 25px;
    border-radius: 10px;
    overflow-x: scroll;
    scrollbar-color: transparent transparent;
    scrollbar-width: thin;
}

.table-data::-webkit-scrollbar {
    height: 0px;
}

.heading {
    font-family: "poppins-semibold";
    color: #2c2738;
}

.actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.actions button {
    width: 100%;
    margin: 3px;
    max-width: 40px;
}

.view-btn {
    background: var(--gitcorePurple);
    border-radius: 3px;
    border: 1px solid var(--gitcorePurple);
    color: white;
    transition: all 0.3s;
}

.view-btn:hover {
    color: var(--gitcorePurple);
    background: transparent;
}

.del-btn {
    background: #af3636;
    border-radius: 3px;
    border: 1px solid #af3636;
    color: white;
    transition: all 0.3s;
}

.del-btn:hover {
    color: #af3636;
    background: transparent;
}

.edit-btn {
    background: #63d463;
    border-radius: 3px;
    border: 1px solid #63d463;
    color: white;
    transition: all 0.3s;
}

.edit-btn:hover {
    color: #63d463;
    background: transparent;
}

.model-btn {
    background: #727272;
    border-radius: 3px;
    border: 1px solid #727272;
    color: white;
    transition: all 0.3s;
    min-width: 70px;
}

.model-btn:hover {
    color: #727272;
    background: transparent;
}

.dataTables_filter input {
    outline: none !important;
}

#ar_table a {
    text-decoration: none;
}

thead th {
    border-color: #cfcfcf !important;
}

.paginate_button {
    padding: 0px 10px !important;
    background: #dbdbdb;
    margin: 0px 5px !important;
    border-radius: 3px !important;
}

.paginate_button:hover {
    background: #ff9d2caf !important;
    border: 1px solid var(--gitcorePurple) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: var(--gitcorePurple) !important;
    color: white !important;
    border: 1px solid var(--gitcorePurple) !important;
}

.dataTables_length select {
    padding: 0px !important;
}

.box {
    padding: 15px;
    border-radius: 10px;
    background: white;
    box-shadow: 1px 2px 10px rgb(71, 71, 71);
    height: 100%;
}

.box a {
    text-decoration: none;
    color: var(--gitcorePurple);
}

.ar-count {
    font-size: 3rem;
    line-height: 2rem;
    color: #2c2738;
}

.box-heading {
    font-size: 14px;
    text-transform: uppercase;
    color: #756f86;
}

.add-ar-box {
    background: #14859e;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.plus-icon {
    font-size: 4rem;
    color: white !important;
    border: none;
    background: transparent;
}

.create-btn {
    background: white;
    border: none;
    color: #2cb9c1 !important;
    border-radius: 25rem;
    padding: 5px 15px;
    font-family: "poppins-semibold";
    text-decoration: none;
}

.upload-model {
    background: white;
    border-radius: 10px;
    padding: 25px;
}

.upload-model h4 {
    color: #2c2738;
}

/* drop zone */

.drop-zone {
    max-width: 100%;
    height: 200px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    color: #cccccc;
    border: 3px dashed var(--gitcorePurple);
    border-radius: 10px;
}

.drop-zone--over {
    border-style: solid;
}

.drop-zone__input {
    display: none;
}

.drop-zone__thumb {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    /* background-color: #cccccc; */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: a;
}

.drop-zone__thumb::after {
    /* content: attr(data-label); */
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 20px;
    width: max-content;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    font-size: 14px;
    text-align: center;
    border-radius: 5px;
}

/* drop zone */

.upload-btn {
    background: var(--gitcorePurple);
    border-radius: 5px;
    color: white;
    padding: 5px 15px;
    cursor: pointer;
    border: 1px solid var(--gitcorePurple);
    transition: all 0.3s;
}

.upload-btn:hover {
    background: transparent;
    color: var(--gitcorePurple);
}

.setting-form {
    background: white;
    border-radius: 10px;
    padding: 25px;
}

.setting-form p {
    color: #756f86;
    margin: 0px;
}

.setting-form label {
    color: #756f86;
    font-size: 14px;
}

.setting-form .change-btn {
    color: var(--gitcorePurple);
    font-size: 14px;
    cursor: pointer;
}

.setting-form h6 {
    color: #2c2738;
}

.setting-form h2 {
    color: var(--gitcorePurple);
    font-family: "poppins-semibold";
}

.add-btn {
    background: var(--gitcorePurple);
    border: 1px solid var(--gitcorePurple);
    border-radius: 5px;
    padding: 5px 15px;
    color: white;
    transition: all 0.3s;
}

.add-btn:hover {
    background: transparent;
    color: var(--gitcorePurple);
}

.table-img {
    max-width: 100px;
}

.save-btn {
    background-color: var(--gitcorePurple);
    border-radius: 5px;
    border: 1px solid var(--gitcorePurple);
    color: white;
    transition: all 0.3s;
    padding: 5px 25px;
}

.save-btn:hover {
    background-color: transparent;
    color: var(--gitcorePurple);
}

.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* border: 2px solid #DBE2EA; */
    overflow: hidden;
    position: relative;
}

.profile-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.profile-img:hover .profile-edit {
    transform: scale(1);
    opacity: 1;
}

.profile-edit {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 100%;
    border-radius: 50%;
    background-color: #ff9d2cd0;
    color: white !important;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.3s, opacity 0.5s;
    cursor: pointer;
    font-size: 1.3rem !important;
}

.product-upload-container {
    background: white;
    border-radius: 25px;
    padding: 24px;
}

#upload-model-form {
    max-height: 400px;
    padding-bottom: 10px;
}

#products-container {
    overflow-y: scroll;
}

#upload-model-form::-webkit-scrollbar {
    width: 8px;
}

#upload-model-form::-webkit-scrollbar-track {
    width: 8px;
    background: transparent;
}

#upload-model-form::-webkit-scrollbar-thumb {
    width: 8px;
    background: var(--gitcorePurple);
    border-radius: 10px;
}

.product-name {
    color: var(--gitcorePurple);
    font-family: "poppins-semibold";
    border: var(--gitcorePurple);
    outline: none;
    padding: 0px;
    position: relative;
}

.product-name span {
    outline: none;
}

.product-description {
    color: black;
    font-size: 15px;
    outline: none;
}

.product-description span {
    outline: none;
}

.product-upload-container label {
    color: #756f86;
    font-size: 13px;
    position: relative;
}

#unique-id,
.custom-input-field {
    width: 200px;
    display: block;
    border: 2px solid #dbe2ea;
    outline: none;
    border-radius: 6px;
    padding: 5px 15px;
    font-size: 13px;
}

.product-upload-box {
    border: 1px solid #707070;
    font-size: 10px !important;
    height: auto;
    padding: 0px;
    padding-bottom: calc(100% - 24px);
    position: relative;
    border-radius: 0px;
    width: calc(100% - 22px);
    margin-right: 2px;
}

.product-upload-box span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    color: #756f86;
}

.add-icon {
    color: var(--gitcorePurple) !important;
    border: 2px solid var(--gitcorePurple);
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    font-size: 12px;
    cursor: pointer;
}

.product-upload-box .drop-zone__thumb {
    position: absolute;
    top: 0px;
    width: 100%;
    /* left: 0px; */
    height: 100%;
    border-radius: 0px;
    /* background-size: cover; */
    /* background-position: center; */
}

.alternate-btn {
    border: 2px solid var(--gitcorePurple);
    padding: 3px 15px;
    background: transparent;
    border-radius: 5px;
    font-size: 14px;
    color: var(--gitcorePurple);
}

.model-heading {
    margin: 0px;
    color: #756f86;
    font-size: 13px;
}

.viewer-container {
    background: white;
    padding: 30px;
    border-radius: 25px;
    min-height: 520px;
}

.viewer-container h2 {
    color: var(--gitcorePurple);
    font-family: "poppins-semibold";
}

.screen-btns button {
    background: transparent;
    border: none;
    color: #756f86;
}

.screen-btns i {
    margin-right: 3px;
}

#refresh-btn,
#annotation-btn {
    background: transparent;
    color: var(--gitcorePurple);
    border: 0px;
    margin-left: 15px;
}

.screen-btns button.active {
    color: var(--gitcorePurple);
}

.responsive-img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s;
}

.menu-btn {
    background: transparent;
    color: var(--gitcorePurple);
    border: none;
    display: none;
}

.screen-btns-2 {
    position: absolute;
    width: 50px;
    height: auto;
    background: white;
    box-shadow: -1px 2px 10px rgb(221, 221, 221);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    right: 10px;
    top: 35px;
    transform: scale(0);
    transform-origin: top right;
    transition: all 0.3s;
    z-index: 99999999;
}

.screen-btns-2 button {
    background: transparent;
    border: none;
    color: #756f86;
    margin: 5px 0px;
}

.mobile-btn {
    color: #756f86;
    background: transparent;
    border: none;
}

.progress-section {
    width: 80%;
    height: 10px;
    border: 1px solid var(--gitcorePurple);
    border-radius: 25rem;
    position: absolute;
    top: 65%;
    padding: 1px;
}

.progress-bar {
    width: 0%;
    background-color: var(--gitcorePurple);
    border-radius: 25rem;
    height: 100%;
}

#model-preview {
    margin: auto;
    max-width: 100%;
    background-color: white;
}

.prewiew-container {
    width: 100%;
    overflow-x: scroll;
    padding-bottom: 5px;
}

.prewiew-container::-webkit-scrollbar {
    height: 8px;
}

.prewiew-container::-webkit-scrollbar-track {
    height: 8px;
    background: transparent;
}

.prewiew-container::-webkit-scrollbar-thumb {
    height: 8px;
    background: var(--gitcorePurple);
    border-radius: 10px;
}

.small-preview {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 1px solid grey;
    margin: 1px;
    margin-right: 5px;
    border-radius: 10px;
    overflow: hidden;
    float: left;
}

.small-preview .img-fluid {
    width: 100px !important;
    height: 100px !important;
    object-fit: cover;
    height: auto;
    cursor: pointer;
}

.preview-alt-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.prew-scroll {
    width: max-content;
    display: flex;
}

.product-name .pencil-icon {
    font-size: 20px;
    color: var(--gitcorePurple);
    display: inline-block;
    transform: translateY(5px);
    margin-left: 15px;
    cursor: pointer;
}

.product-description .pencil-icon {
    font-size: 15px;
    color: black;
    transform: translateY(5px);
    margin-left: 15px;
    display: inline-block;
    cursor: pointer;
}

.contact-line a {
    color: #756f86;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 12px;
}

.contact-line {
    color: #756f86;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 12px;
}

.contact-line a:hover {
    color: var(--gitcorePurple);
    text-decoration: none;
}

.mark {
    display: inline-flex;
    width: 12px;
    height: 12px;
    background: #756f86;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 8px;
    transform: translateY(-7px);
}

.mark:hover~.mark-text {
    opacity: 1;
    visibility: visible;
}

.mark-text {
    position: absolute;
    display: inline-block;
    width: 200px;
    background: #756f86;
    border-radius: 5px;
    padding: 10px;
    color: white;
    top: 0px;
    left: 130px;
    font-size: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.generate-btn {
    border: none;
    padding: 5px 15px;
    background: var(--gitcorePurple);
    border-radius: 5px;
    color: white;
    height: 33.5px;
    font-size: 14px;
}

#check_popup {
    color: #756f86;
}

.footer-btn1 {
    padding: 5px 15px;
    background: var(--gitcorePurple);
    border-radius: 5px;
    color: white;
    border: none;
}

.footer-btn2 {
    padding: 5px 15px;
    background: #756f86;
    border-radius: 5px;
    color: white;
    border: none;
}

@media (max-width: 1366px) {
    .avatar {
        width: 150px;
    }

    .screen-btns {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .avatar {
        right: 50%;
        top: -100px;
    }

    .custom-input {
        padding: 10px 20px;
    }

    .responsive-img {
        height: 450px;
    }

    .menu-btn {
        display: block;
    }
}

@media (max-width: 569px) {
    .signup-form {
        width: 90%;
    }

    .footer-links {
        width: 90%;
    }

    .left-side {
        padding: 0px;
        padding-top: 200px;
    }

    .custom-input {
        padding: 5px 15px;
        font-size: 10px;
    }

    .custom-input-2 {
        padding: 3px 10px;
        font-size: 10px;
    }

    .footer-links a {
        font-size: 8px;
    }

    .footer-links img {
        width: 20px;
    }

    .signup-form label {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .custom-checkbox {
        padding-left: 25px;
    }

    .checkmark {
        width: 15px;
        height: 15px;
        border-radius: 3px;
    }

    .custom-checkbox .checkmark:after {
        width: 4px;
        height: 8px;
        left: 3px;
        top: 1px;
    }

    .submit-btn {
        padding: 8px;
        font-size: 10px;
    }

    .navbar-collapse {
        position: absolute;
        width: 100%;
        left: 0px;
        top: 83px;
        background: white;
        padding-left: 15px;
    }

    .setting-form label {
        font-size: 10px;
    }

    .save-btn {
        font-size: 12px;
        padding: 5px 15px;
    }

    .upload-model h4 {
        font-size: 16px;
    }

    .drop-zone {
        font-size: 12px;
    }

    .upload-btn {
        font-size: 12px;
    }

    .heading {
        font-size: 18px;
    }

    .table-img {
        max-width: 50px;
    }

    .table-data {
        font-size: 12px;
    }

    .setting-form h6 {
        font-size: 12px;
        margin-bottom: 0px;
        margin-top: 15px;
    }

    .setting-form .change-btn {
        font-size: 10px;
    }

    .setting-form p {
        font-size: 12px;
    }

    .profile-img {
        width: 50px;
        height: 50px;
    }

    .profile-img img {
        width: 50px;
        height: 50px;
    }

    .viewer-container {
        border-radius: 0px;
        padding: 15px;
    }

    .product-upload-container {
        padding: 15px;
        border-radius: 0px;
    }

    .menu-btn {
        display: none;
    }

    .alternate-btn {
        font-size: 12px;
    }

    .mark-text {
        top: 20px;
        left: 60px;
    }
}

@media (min-width: 991px) {
    .dropdown-menu.user-image.show {
        left: -80px !important;
    }
}

.colored-top {
    background-color: var(--viewOrange) !important;
    height: 15px;
    width: 100%;
}

#watermark {
    position: absolute;
    right: 20px;
    bottom: 20px;
    max-width: 65px;
    max-height: 65px;
}

#darkening {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1020;
    /* Navbar is 1020 */
    background-color: rgba(0, 0, 0, 0.5);
}

.hotspot {
    display: block;
    position: absolute;
    z-index: 100;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    border: none;
    background-color: var(--gitcorePurple);
    box-sizing: border-box;
    opacity: 80%;
    transition: 0.2s;
    border: rgb(0, 0, 0, 0.15) 4px solid;
}

.hotspot:not([data-visible]) {
    opacity: 50%;
}

.hotspot:hover {
    width: 24px;
    height: 24px;
}

.annotation {
    background-color: #d4d4d4;
    position: absolute;
    transform: translate(10px, 10px);
    border-radius: 10px;
    padding: 10px;
    width: max-content;
    height: max-content;
    max-width: 350px;
    word-break: keep-all;
    text-align: left;
    z-index: 110;
    opacity: 100%;
}

#annotation-notice {
    background-color: white;
    text-align: center;
    border-radius: 15px;
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    padding: 5px;
    z-index: 101;
}

.top-product {
    padding: 20px;
}

.top-product-1 {
    background-color: #17b4dfc9;
}

.top-product-2 {
    background-color: rgba(31, 170, 177, 0.502);
}

.top-product-3 {
    background-color: rgba(20, 112, 117, 0.502);
}

.product-alternative-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.custom-viewer {
    background: white;
    padding: 30px;
    border-radius: 25px;
}

.custom-viewer h2 {
    color: var(--gitcorePurple);
    font-family: "poppins-semibold";
}