@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700');

:root {
    --ar-button-scale: 1;
    --poster-color: transparent;
    --progress-bar-height: 0;
}

.logo-div {
    width: 100%;
    text-align: right;
    padding-top: 5px;
    position: fixed;
    top: 5%;
    margin-top: 10px;
    margin-bottom: 10px;

}

.menu-div {
    text-align: left;
    padding-top: 5px;
    position: fixed;
    bottom: 5%;
    margin-top: 10px;
    margin-bottom: 10px;
  
  /*
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  */
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 500;
    overflow-wrap: break-word;
    padding: 0em;
    width: 100%;
    height: max-content;
    transform: translate3d(0%, 0%, 0);
    --min-hotspot-opacity: 0;
}

.logo-align-left {
    text-align: left;
}


.inside-logo {
    width: 20%;
    margin-left: auto;
    margin-right: 30px;
}


.active {
bottom: 0px;
}

.product-selector-container {
    width: fit-content;
    position: absolute;
    bottom: 70px;
    margin-left: 4px;
}

.solo {
    bottom: 20px !important;
}

.product-selector-images-container {
    width: fit-content;
    position: absolute;
    bottom: 20px;
    margin-left: 4px;
}

.product-selector-images-container-and-texture {
    bottom: 80px;
}

.color-selector-container {
    width: fit-content;
    position: absolute;
    bottom: 20px;
    margin-left: 4px;
}

.texture-selector-container {
    width: fit-content;
    position: absolute;
    bottom: 20px;
    margin-left: 4px;
}

.texture-container-overflow {
    overflow: scroll;
    height: 39px;
    white-space: nowrap;
    width: 90vw;
    padding-top: 1px;
    padding-left: 1px;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.texture-container-overflow::-webkit-scrollbar {
    display: none;
}

.ar-button {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 8px;
    margin: 10px;
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 0.7rem;
    width: fit-content;
    display: flex;
    align-items: center;
    background-color: transparent;
}

.ar-button:active:focus {
    border-color: rgb(126, 126, 126);
    transform: translateY(+1px);
}

.ios-tester {
    color: red;
}

.pulse-button {
    box-shadow: 0 0 0 0 rgb(126, 126, 126);
    cursor: pointer;
    -webkit-animation: pulse 3.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 3.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 3.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 3.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

.pulse-button:hover {
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    animation: none;
}

.project-deactivation-notice {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffffad;
}

.project-deactivation-font {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    font-size: 2rem !important;
    text-align: center;
}

.project-deactivation-font-info {
    margin-top: 10%;
}

.project-deactivation-btn {
    border: 1px solid #101677;
    background: #101677;
    color: white !important;
    border-radius: 6px;
    padding: 8px;
}

.project-deactivation-btn:hover {
    background: #4e56b9;
}

.project-deactivation-hr {
    max-width: 60%;
    margin-top: 16px;
    margin-bottom: 16px;
}

.project-deactivation-action-container {
    display: flex;
    justify-content:center;
    align-items:center;
}

.project-deactivation-logo-container {
    display: flex;
    justify-content:center;
    align-items:center;
    position: absolute;
    bottom: 0;
    margin-bottom: 16px;
}

.project-deactivation-logo {
    width: 30%;
    margin-left: auto;
    margin-right: auto;
}

.project-deactivation-link-align {
    text-align: center;
}


@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 8px rgba(232, 76, 61, 0);
    }
}

@-moz-keyframes pulse {
    to {
        box-shadow: 0 0 0 8px rgba(232, 76, 61, 0);
    }
}

@-ms-keyframes pulse {
    to {
        box-shadow: 0 0 0 8px rgba(232, 76, 61, 0);
    }
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 8px rgba(232, 76, 61, 0);
    }
}


.ar-icon {
    width: 100px;
    margin-bottom: 20px;
    margin-right: 20px;
    border: 0.6px solid #9e9e9e75;
}

.ar-icon-multi {
    margin-bottom: 47px;
    margin-right: 16px;
}

.ar-full-page-selector {
    margin-bottom: 69px;
}

.dot {
    height: 20px;
    width: 20px;
    background-color: #bbbbbb;
    border-radius: 50%;
    display: inline-block;

    margin-right: 10px;
    border: 1px solid #80808052;
    cursor: pointer;

    /*transition: border-width 0.4s ease;*/
}

.dot.active {
    transform: scale(1.05);
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);

    -webkit-transition: transform .5s ease-in-out;
    -moz-transition: transform .5s ease-in-out;
    -ms-transition: transform .5s ease-in-out;
    border-width: 2px;
}

/* Buttons material */
.material-selection {
    height: 20px;
    width: 20px;
    background-color: #bbbbbb;
    background-image: none;
    border-radius: 10%;
    display: inline-block;

    margin-right: 5px;
    margin-bottom: 5px;
    border: 1px solid #80808052;
    cursor: pointer;
}

.material-selection.active {
    transform: scale(1.05);
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);

    -webkit-transition: transform .5s ease-in-out;
    -moz-transition: transform .5s ease-in-out;
    -ms-transition: transform .5s ease-in-out;
    border-width: 2px;
}

/* Buttons material */
.material-selection-circle {
    height: 25px;
    width: 25px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;

    margin-right: 7px;
    border: 1px solid #80805280;
    cursor: pointer;
}

.material-selection-circle.active {
    transform: scale(1.05);
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);

    -webkit-transition: transform .5s ease-in-out;
    -moz-transition: transform .5s ease-in-out;
    -ms-transition: transform .5s ease-in-out;
    border-width: 2px;
}

.material-selection-circle:hover {
    border: 2px solid #3a72a780;
}

.product-selector {
    font-size: 0.8rem;
    max-width: 130px;
    color: #484848 !important;
/*    hack for safari*/
}

.color-container {

    display: inline-block
}

svg {
    font-family: 'Montserrat', sans-serif;
}

.helvetica {
    font-family: 'Montserrat', sans-serif;
    color: #484848;
    margin-bottom: 4px;
    font-size: 0.6rem;
}


.no-bottom-margin {
    margin-bottom: 0;
}

.inline-block {
    display: inline-block
}

.margin-left-font {
    margin-left: 2px;
}

.product-type-text {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

select::-ms-expand {
    display: none;
}

select {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    box-sizing: border-box;
    padding: 0.5em 2em 0.5em 0.5em;
    border: 1px solid #a7a7a7;
    border-radius: 8px;
    line-height: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    background-repeat: no-repeat;
    background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
    background-color: white;
    background-position: right 15px top 1em, right 10px top 1em;
    background-size: 5px 5px, 5px 5px;
}


/* The Modal (background) */
.qr-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 5%; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.qr-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888888;
    width: 80%;
    border-radius: 25px;
}

#qrcode canvas {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    margin-top: 10px;
    width: 100px;
    height: 100px;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 38pt;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
}

.close-permission {
    position: absolute;
    right: 10%;
    font-size: 25pt;
    margin-top: -10px;
}

.close-ar-loading {
    position: absolute;
    right: 10%;
    font-size: 25pt;
    margin-top: -10px;
}

.qr-code-modal-font {
    font-size: 1.0rem !important;
    max-width: 80%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.qr-code-hint-font {
    text-align: center;
    font-size: 0.8rem !important;
    margin-top: 20px;
}

.qr-code-hr {
    max-width: 60%;
}

.qr-code {
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/*userInput {*/
/*    outline: none !important; ABC*/
/*}*/


/* FAILED CONTAINER START*/

.failed-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 5%; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.failed-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888888;
    width: 80%;
    border-radius: 25px;
}

.failed-modal-font {
    font-size: 1.5rem !important;
    max-width: 80%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    line-height: 30px;
}

.failed-hint-font {
    text-align: center;
    font-size: 0.8rem !important;
    margin-top: 20px;
}

.failed-hr {
    max-width: 60%;
}

/* FAILED CONTAINER END*/


/* UNSUPPORTED CONTAINER START*/

.unsupported-browser-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 5%; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.unsupported-browser-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888888;
    width: 80%;
    border-radius: 25px;
}

.unsupported-browser-modal-font {
    font-size: 1rem !important;
    max-width: 80%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    line-height: 20px;
}

.unsupported-browser-modal-hint-font {
    text-align: center;
    font-size: 0.8rem !important;
    margin-top: 20px;
}

.unsupported-browser-modal-hr {
    max-width: 60%;
}

.copy-container {
    display: flex;
    flex-direction: row;
    border: 1px solid grey;
    padding: 2px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 6px;
}

.copy-btn {
    border: 1px solid #101677;
    background: #101677;
    color: white;
    border-radius: 6px;
    padding: 8px;
}

.copy-link {
    flex-grow: 2;
    border: none;
}

.copy-link:focus {
    outline: none;
}

/* FAILED CONTAINER END*/


.hotspot-dot {
    background: #ffffff;
    border-radius: 32px;
    border: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    cursor: pointer;
    height: 20px;
    width: 20px;
    padding: 8px;
    position: relative;
    transition: opacity 0.3s;
}

.hotspot-dot:not([data-visible]) {
    background: transparent;
    border: 4px solid #ffffff;
    box-shadow: none;
    height: 32px;
    pointer-events: none;
    width: 32px;
}

.hotspot-dot:focus {
    border: 2px solid #101777;
    height: 22px;
    outline: none;
    width: 22px;
}

.hotspot-dot > * {
    opacity: 1;
    transform: translateY(-50%);
}

.hotspot-text-container {
    display: block;

    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    left: calc(100% + 1em);
    overflow-wrap: break-word;
    padding: 0.5em 1em;
    position: absolute;
    top: 50%;
    width: max-content;
    max-width: 130px;
}

.hotspot-text-headline {
    color: rgba(0, 0, 0, 0.8);
    display: block;
    font-size: 14px;
    padding-bottom: 6px;
}

.hotspot-text-subline {
    border-top: .45px solid #80808040;
    padding-top: 4px;
    color: rgba(0, 0, 0, 0.8);
    display: block;
    font-size: 12px;
}

.hotspot-text:not([data-visible]) > * {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(-50% + 4px));
    transition: transform 0.3s, opacity 0.3s;
}


.no-highlight-click {
    -webkit-tap-highlight-color: #00000080;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.no-highlight-click.active {
    border: 2px solid #000000;
}

.no-highlight-click select {
    border: 2px solid #000000;
}

.no-highlight-click:hover {
    border: 2px solid #000000;
}

.no-highlight-click:focus {
    border: 2px solid #000000;
}


@media only screen and (min-height: 300px) and (min-width: 330px) {

    .ar-icon {
        width: 120px;
    }

    .qr-modal-content {
        margin-top: 0px;
    }

    .product-selector {
        font-size: 1rem;
        max-width: 164px;
    }

    .material-selection {
        height: 30px;
        width: 30px;
    }

    .helvetica {
        font-size: 0.8rem;
    }

    .product-selector-container {
        bottom: 80px;
    }

    .dot {
        height: 30px;
        width: 30px;
    }

    .product-type-text {
        font-size: 1.4rem;
    }

    .ar-icon-multi {
        margin-bottom: 40px;
        margin-right: 20px;
    }

    .ar-full-page-selector {
        margin-bottom: 78px;
    }

    .hotspot-text-container {
        max-width: 140px;
    }
}

@media only screen and (min-width: 400px) {
    .product-selector {
        max-width: 220px;
    }
}

@media only screen and (min-height: 400px) {
    #qrcode canvas {
        width: 150px;
        height: 150px;
    }
}

@media only screen and (min-height: 500px) {
    #qrcode canvas {
        width: 250px;
        height: 250px;
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .unsupported-browser-modal-font {
        font-size: 1.2rem !important;
        line-height: 30px;
    }
}

@media only screen and (min-width: 500px) {
    .ar-full-page-selector {
        margin-bottom: 40px;
        margin-right: 20px;
    }
}

@media only screen and (min-width: 600px) {

    .inside-logo {
        width: 10%;
    }

    .ar-button {
        font-size: 1rem;
    }

    .ar-icon {
        width: 140px;
    }

    .qr-modal-content {
        width: 50%;
    }
}

@media only screen and (min-width: 1000px) {
    .qr-modal-content {
        width: fit-content;
    }

    .qr-code-modal-font {
        font-size: 1.5rem !important;
        max-width: 60%;
    }
}

/* The Modal (background) */
.loading-modal {
    display: block;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 5%; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
}

.loading-modal-cta {
    margin-top: 50px;
}

.swipe-btn {
    width: 30px;
}


.autostart-loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-right: 16px solid #030551;
    width: 100px;
    height: 100px;
    -webkit-animation: autostartspin 3s linear infinite;
    animation: autostartspin 3s linear infinite;

    margin-left: auto;
    margin-right: auto;
}

@-webkit-keyframes autostartspin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes autostartspin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.autostart-loading-container {
    background: #808080ad;
    width: 100%;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 10%;
    left: 0;
    top: 0;
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
}

.autostart-loading-modal {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888888;
    width: 80%;
    border-radius: 25px;
}

.autostart-wait-text-container {
    padding-top: 20px;
}

.autostart-wait-text-p {
    text-align: center;
    color: #6f6f6f;
}


.permission-container {
    background: #808080ad;
    width: 100%;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 10%; /* Location of the box */
    left: 0;
    top: 0;
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    display: none;
}

.permission-modal {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888888;
    width: 80%;
    border-radius: 25px;
}

.permission-inner-container {
    padding-top: 20px;
    text-align: center;
}

.permission-wait-text-p {
    text-align: center;
    color: #6f6f6f;
    font-size: 1.1rem;
}

.permission-btn {
    margin-top: 16px;
    margin-bottom: 16px;
    width: 200px;
    height: 48px;
    border-width: 0;
    outline: none;
    border-radius: 7px;
    box-shadow: 0 1px 4px #0000007a;
    background-color: #0277bd;
    color: #ecf0f1;
    transition: background-color .3s;
    font-weight: 600;
    right: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 12pt;
}

.permission-hint-font {
    text-align: center;
    font-size: 0.8rem !important;
    margin-top: 0px;
}

.usdz-loading-container {
    display: none;
    background: #808080ad;
    width: 100%;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 10%;
    left: 0;
    top: 0;
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
}

.usdz-loading-modal {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888888;
    width: 80%;
    border-radius: 25px;
}

.usdz-wait-text-container {
    padding-top: 20px;
}

.usdz-wait-text-p {
    text-align: center;
    color: #6f6f6f;
}


.ar-loading-container {
    display: none;
    background: #808080ad;
    width: 100%;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 10%;
    left: 0;
    top: 0;
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
}

.ar-loading-modal {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888888;
    width: 80%;
    border-radius: 25px;
}

.ar-wait-text-container {
    padding-top: 20px;
}

.ar-wait-text-p {
    text-align: center;
    color: #6f6f6f;
}

.cta-btn {
    top: 5%;
    position: fixed;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: 19px;
    padding: 11px;
    overflow: hidden;
    border-width: 0;
    outline: none;
    border-radius: 7px;
    box-shadow: 0 1px 4px #0000007a;
    background-color: #0277bd;
    color: #ecf0f1;
    transition: background-color .3s;
    font-weight: 600;
    right: 0;
    letter-spacing: 1.5px;
    width: fit-content;
    text-transform: uppercase;
    font-size: 12pt;
}


.call-to-action-icon {
    height: 18pt;
    display: inline-block;
}

#call-to-action-headline {
    float: right;
    margin-top: 1px;
    margin-left: 9px;
    display: inline-block;
}


.mazing-viewer-standard {
    width: 100%;
    height: 90%;
}

.mazing-viewer-high-elements {
    width: 100%;
    height: 80%;
    top: 10%;
}


@keyframes circle {
    from {
        transform: translateX(-50%) rotate(0deg) translateX(-20px) rotate(0deg);
    }
    to {
        transform: translateX(-50%) rotate(360deg) translateX(-20px) rotate(-360deg);
    }
}

@keyframes elongate {
    from {
        transform: translateX(-50px);
    }
    to {
        transform: translateX(50px);
    }
}

mazing-viewer > #web-ar-prompt-container {
    display: none;
    width: 100%;
    height: 100%;
    background-color: #efefef5e;
}

mazing-viewer[ar-status="session-started"] > #web-ar-prompt-container {
    display: block;
}

#web-ar-prompt {
    position: absolute;
    left: 50%;
    bottom: 175px;
    animation: elongate 2s infinite ease-in-out alternate;
}

#web-ar-prompt > img {
    animation: circle 4s linear infinite;
}


mazing-viewer > #web-ar-footer-container {
    justify-content: center;
    display: flex;
    width: 100%;
    display: none;
}


mazing-viewer[ar-status="object-placed"] > #web-ar-footer-container {
    display: block;
}

#web-ar-footer {
    position: absolute;
    width: 80%;
    bottom: 10px;
    border-radius: 15px;
    padding: 12px;
    margin-right: auto;
    margin-left: auto;
    background-color: #efefef99;
}


.web-ar-product-detail {
    width: 50%;
    float: left;
    position: fixed;
}

#web-ar-product-button {
    width: fit-content;
    float: right;
    color: #0277bd;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: right;
    margin-top: 12px;
    margin-bottom: 12px;
}


#web-ar-product-title {
    margin: 0;
    color: #0b2e13;
    font-weight: bold;
    font-size: 0.9rem;
}

#web-ar-product-subtitle {
    margin-top: 2px;
    font-size: 0.7rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.web-ar-hand {
    width: 80%;
}


.web-ar-movement-hint-container {
    justify-content: center;
    display: flex;
    bottom: 80px;
    position: absolute;
    width: 100%;
}

.web-ar-movement-hint-text {
    text-align: center;
    width: fit-content;
    font-weight: bold;
    font-size: 1rem;
    color: white;
}


.scroll-hint-text-container {
    visibility: hidden;
    position: fixed;
    top: 45%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    cursor: grab;
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
.scroll-hint-text-container.show {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

.copy-paste-container {
    visibility: hidden;
    position: fixed;
    top: 30%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    cursor: grab;
    z-index: 1000;
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
.copy-paste-container.show {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}


/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

.scroll-hint-text-p {
    text-align: center;
    border: 1px solid gray;
    border-radius: 25px;
    width: fit-content;
    width: -moz-max-content;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    background: #9a9a9aa3;
    font-size: 1.4rem;
    color: #ffffff;
    text-transform: uppercase;

    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}


.copy-paste-container-p {
    text-align: center;
    border: 1px solid gray;
    border-radius: 6px;
    width: fit-content;
    width: -moz-max-content;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    background: #101677;
    font-size: 1.4rem;
    color: #ffffff;
    text-transform: uppercase;

    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}


.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
        supported by Chrome, Edge, Opera and Firefox */
}

.ar-btn-icon {
    width: 26%;
    height: auto;
    margin-right: 4%
}

.ar-btn-text-container {
    text-align: center;
    width: 70%;
    margin-right: 4%
}

.ar-btn-text-1 {
    font-weight: 400;
    margin-top: 0;
    margin-bottom: -4%;
}

.ar-btn-text-2 {
    font-weight: 400;
    margin-top: 0;
}

/*https://codepen.io/sosuke/pen/Pjoqqp*/
.svg-color-blue {
    filter: invert(0%) sepia(100%) saturate(20%) hue-rotate(346deg) brightness(103%) contrast(104%);
}

.font-color-blue {
    color: #000000;
}

.svg-color-white {
    filter: invert(100%) sepia(11%) saturate(7430%) hue-rotate(275deg) brightness(118%) contrast(111%);
}

.font-color-white {
    color: #FFFFFF;
}


/* Scroll for product*/

div.scrollmenu {
  background-color: transparent;
  overflow: auto;
  white-space: nowrap;
}

div.scrollmenu a {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px;
  text-decoration: none;
}

div.scrollmenu a:hover {
  background-color: transparent;
}


/* Not Scroll for product*/

div.not-scrollmenu {
  background-color: transparent;
  display: grid;
  max-width: 370px;
  padding: 4px;
  height: auto;
}