/* Inter Font */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px hsl(0deg 0% 67%);
    border-radius: 50px
}

::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background-color: hsl(0deg 0% 67%);
    opacity: 1
}

* {
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: "Inter", "Roboto", "Helvetica", "Arial", sans-serif;
    margin: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

img {
    vertical-align: top;
    max-width: 100%;
    max-height: 100%;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#container {
    margin-right: 360px;
    position: relative;
}

#container.admin:after {
    content: "";
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: red;
    left: 50%;
    top: 50%;
    z-index: 9999999;
    display: block;
    border-radius: 100%;
}

.title span {
    font-weight: normal;
    font-size: 16px;
}

.title {
    margin: 30px 0;
}


.collection-element {
    display: inline-block;
    cursor: pointer;
    opacity: 1;
    transition: 0.15s;
    border-radius: 5px;
    overflow: hidden;
    background-color: white;
    padding: 10px;
    width: 14%;
    margin-right: 1%;
    min-width: 72px;
}

.collection-element:not(:last-child) {
    margin-right: 1%;
}


.collection-element.active,
.collection-element:hover {
    opacity: 1;
}

.collection-element {
    box-shadow: 0 0 0 1px #353535;
}

.collection-element.active {
    box-shadow: 0 0 0 2px inset #D18F51;
}

.config-element:after {
    box-shadow: 0 0 0 1px inset #d4d4d4;
}

.config-element.active:after {
    box-shadow: 0 0 0 2px inset #D18F51;
}

.config-elements:not(.active) {
    display: none;
}



/* Animation */

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0)
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0)
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

#menu-wrapper {
    position: fixed;
    right: 0;
    width: 560px;
    top: 0;
    background-color: white;
    bottom: 0;
    z-index: 50;
    -webkit-transition: transform .5s;
    transition: transform .5s;
}

.menu-wrapper-inner {
    padding: 40px 20px 20px;
    box-sizing: border-box;
    text-align: center;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.config-elements-wrapper {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #353535;
    position: relative;
    overflow: auto;
    margin-right: -5px;
    padding-right: 5px;
}

.config-element:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 5px;
}

.element-thumb {
    width: 130px;
    display: inline-block;
    vertical-align: top;
}

.element-text {
    display: inline-block;
    margin-left: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.element-text span {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    text-transform: capitalize;
}

span.element-company {
    font-weight: 500;
    font-size: 16px;
}

.config-elements {
    text-align: left;
    opacity: 0;
}

.config-elements.active {
    animation: fadeInUp .2s both;
}

.config-element {
    margin-top: 15px;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.element-thumb,
.simple_color {
    width: 110px;
    height: 110px;
}

#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: white;
    left: 0;
    top: 0;
    display: block;
    z-index: 200;
}

.lds-ring {
    position: relative;
    width: 80px;
    height: 80px;
    text-align: center;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 4px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #D18F51 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hotspot {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.hotspot.hidden {
    display: none !important;
}

.logo {
    position: fixed;
    top: 20px;
    left: 15px;
    width: 300px;
    z-index: 9;
}

.hotspot:after {
    content: "";
    background-image: url(../images/icons/plus-icon.png);
    background-size: 40px;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 0;
    top: 0;
}

.hotspot:before {
    content: "";
    width: 30px;
    height: 30px;
    background-color: white;
    display: block;
    border-radius: 100%;
    transition: .3s;
    margin-left: 5px;
    margin-top: 5px;
    pointer-events: none;
    opacity: 0.4;
}

.hotspot.active:before,
.hotspot:hover:before {
    width: 70px;
    height: 70px;
    margin-left: -15px;
    margin-top: -15px;
}

.hotspot[tospin] {
    width: 90px;
    height: 90px;
}

.hotspot[tospin]:after {
    background-image: url(../images/icons/spin-icon.png);
    width: 90px;
    height: 90px;
    background-size: 90px;
}

.hotspot[tospin].active:before,
.hotspot[tospin]:hover:before {
    width: 120px;
    height: 120px;
}

.hotspot[tospin]:before {
    width: 80px;
    height: 80px;
}

.hotspot_helper {
    color: red;
    font-family: auto;
    font-size: 70px;
}

body.admin .hotspot {
    display: none;
}

body.admin #container:after {
    content: "+";
    position: absolute;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    top: 50%;
    font-size: 50px;
    transform: translateY(-50%);
    font-family: auto;
}

#download {
    position: fixed;
    right: 66px;
    width: 39px;
    background-color: rgb(255 255 255 / 75%);
    padding: 8px 12px;
    cursor: pointer;
    z-index: 100;
    border-radius: 0px 0 0 5px;
}

#hamburger {
    width: 33px;
    height: 25px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    position: fixed;
    right: 17px;
    top: 15px;
    z-index: 100;
    display: none;
}

#hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #353535;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#hamburger:before {
    content: "";
    background-color: rgb(255 255 255 / 75%);
    width: 63px;
    height: 55px;
    display: block;
    position: fixed;
    right: -15px;
    top: -15px;
    border-radius: 0;
}

#hamburger span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#hamburger span:nth-child(2) {
    top: 10px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#hamburger span:nth-child(3) {
    top: 20px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

body.menu-open #hamburger span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
    left: 5px;
}

body.menu-open #hamburger span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

body.menu-open #hamburger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 24px;
    left: 5px;
}

.lds-ring.small {
    position: fixed;
    right: 10px;
    top: 5px;
    transform: none;
    width: 50px;
    height: 50px;
    margin: 0;
    display: none;
    z-index: 999;
    -webkit-transition: right 0.51s;
    transition: right 0.51s;
}

.lds-ring.small div {
    border-width: 3px;
    width: 30px;
    height: 30px;
}

.collection-element:not(.active) img:last-child,
.collection-element.active img:first-child {
    display: none;
}

#container.hidden-menu {
    margin-right: 0;
}

#container.hidden-menu #hamburger {
    display: block;
}

body:not(.menu-open) #container.hidden-menu #menu-wrapper {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

#container.hidden-menu .lds-ring.small {
    top: 3px;
    right: 49px;
}

.disclamer-wrapper {
    position: fixed;
    bottom: 0px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
}

.disclamer-wrapper .disclamer-text-wrapper {
    background-color: rgb(255 255 255 / 75%);
    padding: 7px 10px;
    margin: 0;
    font-size: 12px;
    display: flex;
    border-radius: 0 5px 0 0;
    justify-content: center;
    align-items: center;
}


.disclamer-wrapper .disclamer-text {
    opacity: 1;
    font-style: italic;
    color: #66666D;
    font-weight: 500;
    font-size: 1em;
    z-index: 2;
}

.preset-element {
    display: inline-block;
    margin-right: 2%;
    transition: 0.15s;
}

.preset-element:last-child {
    margin-right: 0;
}

.preset-title {
    margin-bottom: 5px;
}

.preset-element .preset-img {
    box-shadow: 0 0 0 1px #353535;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    box-sizing: border-box;
}

.preset-element.active img.preset-img {
    box-shadow: 0 0 0 2px inset #D18F51;
}

#custom-selection {
    overflow: hidden;
}

#custom-selection.active {
    animation: fadeInUp .2s both;
}

#custom-selection:not(.active) {
    display: none;
}

@media screen and (min-width: 999px) {
    body.menu-open #container.hidden-menu .lds-ring.small {
        left: auto;
        right: 505px;
    }
}

@media screen and (max-width: 1200px) {
    #hamburger {
        display: block;
        right: 15px;
    }

    #download {
        right: 64px;
    }

    .logo {
        width: 200px;
    }

    .lds-ring.small div:nth-child(2) {
        border-color: white;
    }

    #container {
        margin-right: 0;
    }

    body:not(.menu-open) #menu-wrapper {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    .menu-wrapper-inner {
        padding-top: 30px;
    }
}


@media screen and (max-width: 550px) {
    .collection-element {
        width: 20%;
        margin-bottom: 1%;
    }

    .preset-element {
        margin-right: 1%;
        width: 23%;
    }
}

@media screen and (max-width: 1024px) {
    #menu-wrapper {
        width: 100%;
    }

    .lds-ring.small {
        right: auto;
        z-index: 9999;
        top: 3px;
        position: fixed;
    }

    #container.hidden-menu .lds-ring.small {
        top: 3px;
        left: auto;
        right: 133px;
    }

    .disclamer-wrapper .disclamer-text-wrapper {
        margin: 0 !important;
    }
}

@media only screen and (orientation: landscape) and (max-width: 1024px) {
    #menu-wrapper {
        width: 100%;
    }
}