@font-face {
    font-family: 'AssistantBold';
    src: url('Assistant-Bold.ttf');
}

@font-face {
    font-family: 'AssistantSemiBold';
    src: url('Assistant-SemiBold.ttf');
}

@font-face {
    font-family: 'AssistantRegular';
    src: url('Assistant-Regular.ttf');
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

#toc_click_area {
    background-color: white;
    width: 1200px;
    height: 140px;
    position: absolute;
    bottom: -650px;
    left: 170px;
    opacity: 0;
}

.form-group {
    margin: 0.3rem 0;
}

.settingsPanel{
    width: 20rem;
    background-color: #eeeeee;
    margin: 1rem;
    padding: 1rem;
}

.purchase-status-change-btn {
    width: 6rem;
    display: flex;
    height: 1.8rem;
    padding: 0;
    margin: 0.3rem;
    font-size: 0.8rem;
    align-items: center;
    justify-content:center;
    font-weight: bold;
}


#main-wrapper{
    width: 2640px;
    position:fixed;
}

.shop-content {   
    width: 2640px;
    height: 3840px;
    position: relative;
}

#popup-welcome {
    background-image: url("/shop/popup_welcome.png");
    width: 1810px;
    height: 1148px;
    position: absolute;
    left: 455px;
    top: 1700px;
}

#btn-enter {
    position: absolute;
    left: 810px;
    top: 2970px;
    border: 0;
    background-color: transparent;
}

.welcome-text {
    font-size: 180px;
    font-weight: bold;
    color: #ffffff;
    position: absolute;
    transform: translate(-50%, -30px);
    font-family: AssistantRegular;
}

.welcome-text-name {
    width: 90%;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}

#toc_checkbox {
    position: absolute;
    left: 1380px;
    top: 1650px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 156px;
    height: 156px;
    background: url("/shop/check.png") no-repeat right 10px top 10px;
    cursor: pointer;
}

#toc_checkbox:checked {
    background: url("/shop/check_checked.png") no-repeat right 10px top 10px;
}

.main-credits-text {
    font-size: 110px;
    font-weight: bold;
    color: #032d9d;
    margin: 0px 20px;
}

#shop-credits-row {
    display: flex;
    position: absolute;
    right: 50%;
    top: 1105px;
    width: 100%;
    justify-content: center;
    transform: translate(50%, 0) skew(0, -16deg);
    font-family: AssistantBold;
}

#cart {
    background-image: url("/shop/btn_cart.png");
    width: 328px;
    height: 386px;
    position: absolute;
    left: 50%;
    top: 234px;
    transform: translate(-50%, 0);
    transition: transform 0.2s ease;
    cursor: pointer;
}

#cart:hover {
    transform: translate(-50%, 0) scale(1.1);
}


#cart_products_count {
    color: white;
    font-weight: bold;
    font-size: 105px;
    position: absolute;
    width: 300px;
    text-align: center;
    left: 50%;
    top: 234px;
    transform: translate(-50%, 0);
    font-family: AssistantBold
}

#products_root {
    position: absolute;
    top: 1520px;
    width: 1733px;
    left: 437px;
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 850px 850px;
    grid-gap: 120px 0px;
    justify-items: center;
    height: 1940px;
    overflow-y: auto;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 33px;
}

::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 40px;
    border-radius: 40px;
    background: rgba(0, 0, 0, 0.3);
}

.products-row {
    margin-bottom: 180px;
}

.product {
    width: 100%;
    height: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product img
{
    max-height: 650px;
    min-height: 550px;
    transition: transform 0.2s ease;
    margin-bottom: 0.5rem;
}


.product img:hover {
    transform: scale(1.1);
}


.gridProductName {
    font-family: AssistantRegular;
    color: white;
    font-size: 65px;
    width: 780px;
    text-align: center;
    font-weight: 300;
    text-align: center !important;
    height: 180px;
}

.gridProductPrice {
    font-family: AssistantBold;
    color: white;
    font-size: 62px;
    font-weight: bold;
    width: 100%;
    text-align: center;
}

#arrowPrevPage {
    position: absolute;
    left: 290px;
    top: 2350px;
    transition: transform 0.2s ease;
}

#arrowPrevPage:hover {
    transform: scale(1.1);
}

#arrowNextPage {
    position: absolute;
    left: 2190px;
    top: 2350px;
    transition: transform 0.2s ease;
}

#arrowNextPage:hover {
    transform: scale(1.1);
}

.overlay_darken{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00000055;
    left:0;
    top:0;
}

#product_popup {
    background-image: url("/shop/popup_product_detailst.png");
    width: 1955px;
    height: 2046px;
    position: absolute;
    left: 382px;
    top: 1060px;
}

#cart_popup {
    background-image: url("/shop/popup_cart.png");
    width: 1955px;
    height: 2426px;
    position: absolute;
    left: 382px;
    top: 1060px;
}

#product_popup_image
{
    position:absolute;
    left: 47.5%;
    transform: translate(-50%, -0%);
    top: 50px;
    max-height: 1000px;
    min-height: 600px;
}

#product_popup_description {
    color: white;
    font-size: 66px;
    position: absolute;
    width: 75%;
    text-align: right;
    top: 1055px;
    left: 105px;
    height: 450px;
    overflow-y: auto;
    overflow-x: clip;
    line-height: 69px;
    font-family: AssistantRegular;
}

#product_popup_price {
    color: white;
    font-size: 160px;
    font-weight: bold;
    direction: rtl;
    position: absolute;
    width: 85%;
    left: 100px;
    text-align:center;
    top: 1470px;
    font-family: AssistantBold

}

#product_popup_btn_want_it {
    position: absolute;
    left: 540px;
    top: 1726px;
    border: 0;
    background-color: transparent;
}

#cart_popup_btn_confirm {
    position: absolute;
    left: 538px;
    bottom: 140px;
    border: 0;
    background-color: transparent;
}

#cart_popup_products_count {
    color: #032d9d;
    font-size: 100px;
    font-weight: bold;
    position: absolute;
    right: 475px;
    bottom: 287px;
    font-family:AssistantRegular;
}

#cart_popup_cost_total {
    color: #032d9d;
    font-size: 95px;
    font-weight: bold;
    position: absolute;
    left: 565px;
    bottom: 298px;
    transform: translate(-50%, 0);
    font-family: AssistantBold;
}

#cart_popup_products_count_header {
    color: #032d9d;
    font-size: 100px;
    font-weight: bold;
    position: absolute;
    left: 378px;
    top: 263px;
    font-family: AssistantBold;
}

#cart_popup_products_container {
    width: 94%;
    height: 1455px;
    position: absolute;
    left: 18px;
    top: 494px
}

.cart_entry {
    width: 100%;
    height: 485px;
    position:relative;
}

.cart_entry_img {
    position: absolute;
    left: 1360px;
    top: 270px;
    max-width: 400px;
    min-width: 300px;
    transform: translate(-50%, -50%);
}

.cart_entry_text {
    position: absolute;
    right: 780px;
    top: 200px;
    font-size: 105px;
    font-weight: bold;
    color: white;
    font-family: AssistantSemiBold;
}

.cart_entry_btn {
    position: absolute;
    left: 333px;
    top: 224px;
    border: 0;
    background-color: transparent;
}

#message_popup {
    background-image: url("/shop/popup_message.png");
    width: 1551px;
    height: 994px;
    position: absolute;
    left: 577px;
    top: 1560px;
}

#message_popup_btn_ok {
    position: absolute;
    left: 380px;
    top: 670px;
}

#message_popup_text {
    color: white;
    font-weight: bold;
    font-size: 105px;
    width: 90%;
    transform: translate(-52.5%, 0);
    position: absolute;
    text-align: center;
    top: 100px;
    left: 50%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
    font-family: AssistantRegular;
}

#purchase_popup {
    background-image: url("/shop/popup_purchase.png");
    width: 1955px;
    height: 2046px;
    position: absolute;
    left: 382px;
    top: 1060px;
}

#purchase_popup_btn_send {
    position: absolute;
    left: 590px;
    bottom: 324px;
    border: 0;
    background-color: transparent;
}

#purchase_popup_input_container {
    height: 1112px;
    margin-left: 98px;
    margin-right: 175px;
    margin-top: 320px;
}

#purchase_popup_input_container > * {
    width: 100%;
}

.placeholder-span {
    pointer-events: none;
    position: absolute;
    top: 87px;
    transition: 0.2s;
    transition-timing-function: ease;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
    font-size: 100px;
    color: #032d9d;
    width: 100%;
    right: 45px;
    font-weight: bold;
    font-family: AssistantRegular;
    transform: translate(0, -50%);
    opacity: 0.7;
}

.puchase_popup_text_input {
    height: 152px;
    margin-bottom: 40px;
    font-size: 96px;
    color: #032d9d;
    width: 100%;
    font-weight: 600;
    padding-inline-start: 42px;
    padding-top: 30px;
    position: relative;
    font-family: AssistantSemiBold;
}

.puchase_popup_text_input_date_placeholder {
    height: 152px;
    margin-bottom: 40px;
    font-size: 100px;
    color: #032d9d;
    width: 100%;
    font-weight: 600;
    padding-inline-start: 42px;
    padding-top: 30px;
    position: absolute;
    z-index: 100;
    text-align: right;
    bottom: 15px;
    opacity: 0.7;
    pointer-events: none;
    font-weight: bold;
    font-family: AssistantRegular;
}

input:focus + span, input:not(:placeholder-shown) + span {
    font-size: 0px;
    opacity: 0;
}

#thanks_popup {
    background-image: url("/shop/popup_thanks.png");
    width: 1446px;
    height: 1399px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#thanks_popup_btn_close{
    width: 150px;
    height: 150px;
    position: absolute;
    left: 150px;
    top: 150px;
    border: 0;
    background-color: #ffffff01;
}

.purchase_popup_input_group{
    position: relative;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 85%;
    left: 400px;
    right: 0;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
    font-size: 70px;
    text-align:right;
    font-family: AssistantRegular;
}

.autocomplete-items div:hover {
    /*when hovering an item:*/
    background-color: #e9e9e9;
}

.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
}
