* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
  font-family: dax-light;
  src: url("../font/dax-light.ttf");
}
@font-face {
  font-family: dax-regular;
  src: url("../font/dax-regular.ttf");
}
@font-face {
  font-family: Dax-Medium;
  src: url("../font/Dax-Medium.otf");
}
@font-face {
  font-family: dax-bold;
  src: url("../font/dax-bold.ttf");
}
@font-face {
  font-family: dax-extrabold;
  src: url("../font/dax-extrabold.ttf");
}
@font-face {
  font-family: dax-black;
  src: url("../font/dax-black.ttf");
}
@font-face {
  font-family: angelina;
  src: url("../font/angelina.ttf");
}
body {
    font-family: Dax-Medium;
    background-image: url('../img/body_bg.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    overflow: hidden;
    position: relative;
    touch-action: manipulation;
}

/* Loader Css Start */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 9999999999999999999999999999999;
}

.loader-main {
    position: relative;
    width: 80px;
    height: 50px
}

.loader-main div {
    position: absolute;
    top: 17px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffdc00;
    animation-timing-function: cubic-bezier(0,1,1,0)
}

.loader-main div:nth-child(1) {
    left: 8px;
    animation: circle1 0.6s infinite
}

.loader-main div:nth-child(2) {
    left: 8px;
    animation: circle2 0.6s infinite
}

.loader-main div:nth-child(3) {
    left: 32px;
    animation: circle2 0.6s infinite
}

.loader-main div:nth-child(4) {
    left: 56px;
    animation: circle3 0.6s infinite
}

@keyframes circle1 {
    0% {
        transform: scale(0)
    }

    100% {
        transform: scale(1)
    }
}

@keyframes circle2 {
    0% {
        transform: translate(0,0)
    }

    100% {
        transform: translate(24px,0)
    }
}

@keyframes circle2 {
    0% {
        transform: translate(0,0)
    }

    100% {
        transform: translate(24px,0)
    }
}

@keyframes circle3 {
    0% {
        transform: scale(0)
    }

    100% {
        transform: scale(1)
    }
}
/* Loader Css End */

/* Background doodles */

.header {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.9);
    border-radius: 0 0 50px 50px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.header h1 {
    font-size: 2.5em;
    color: #FFF;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
    margin-bottom: 10px;
}

.header p {
    font-size: 1.2em;
    color: #4ECDC4;
    font-weight: bold;
}


.backpack-preview {
    background: linear-gradient(216deg, rgba(255, 255, 255, 1) 48%, rgba(255, 255, 255, 0.65) 59%);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.backpack-container {
    position: relative;
    width: 330px;
    height: 351px;
    margin: 0 auto;
    cursor: crosshair;
    overflow: hidden;
}

.backpack{
    width: 100%;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    touch-action: none;
}
/* .backpack-container::after{
    background: url('../img/bag_main.webp');
    background-size: contain;
    content: '';
    width: 300px;
    height: 100%;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
} */

.backpack-part {
    position: absolute;
    transition: all 0.3s ease;
}

.main-body {
    width: 248px;
    height: 88%;
    background: #FFF;
    left: 27px;
    top: 39px;
    border-radius: 107px 105px 52px 50px;
}

.flap {
    width: 85px;
    height: 34px;
    background: #FFF;
    left: 110px;
    top: 6px;
    border-radius: 100px 100px 0 0;
}

.pocket {
    width: 63%;
    height: 124px;
    background: #FFF;
    left: 57px;
    bottom: 28px;
    border-radius: 30px;
}

.strap-left, .strap-right {
    width: 20px;
    height: 200px;
    background: #FFF;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.strap-left { 
    border-radius: 100px 100px 0 0;
    width: 97px;
    height: 25px;
    transform: rotate(-89deg) skew(8deg, -5deg);
    top: unset;
    bottom: 70px;
    left: -35px;
}
.strap-right { 
    right: -33px;
    border-radius: 100px 100px 0 0;
    width: 97px;
    height: 20px;
    transform: rotate(89deg) skew(3deg, 3deg);
    top: unset;
    bottom: 70px;
 }

.zipper {
    width: 221px;
    height: 274px;
    left: 40px;
    top: 63px;
    border-radius: 2px;
    border-bottom-left-radius: 41px;
    border-bottom-right-radius: 41px;
    border-top-left-radius: 102px;
    border-top-right-radius: 102px;
    border: 1px solid #000;
    display: no;
}

.sticker {
    position: absolute;
    width: 40px;
    height: 40px;
    cursor: move;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
    z-index: 10;
}

.nobroder{
    box-shadow:none
}

.sticker:hover {
    transform: scale(1.1);
}

.customization-panel {
    flex: 1;
    min-width: 300px;
    background: rgba(255,255,255,0.95);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-height: 600px;
    overflow-y: auto;
}

.section {
    margin-bottom: 30px;
}

.section h3 {
    font-size: 1.5em;
    color: #FFF;
    margin-bottom: 15px;
    text-align: center;
}

.color-grid, .texture-grid, .sticker-grid, .text_picker {
    display: flex;
    /* grid-template-columns: repeat(auto-fit, minmax(60px, 1fr)); */
    gap: 10px;
}

.color-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    position: relative;
    flex-shrink: 0;
}

.color-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.color-btn.active {
    border-color: #FFD700;
    transform: scale(1.2);
}

.texture-btn {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    border: 3px solid #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    background-size: cover;
    background-position: center;
}

.texture-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.texture-btn.active {
    border-color: #FFD700;
    transform: scale(1.2);
}

.sticker-btn, .text-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    flex-shrink: 0;
}

.sticker-btn:hover, .text-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.part-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    position: absolute;
    right: 20px;
    top: 80px;
    flex-direction: column;
}

.part-btn {
    border: none;
    background: #fff;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    width: 50px;
    height: 50px;
    padding: 5px;
    border-radius: 10px;
}
.part_icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.part-btn:last-child {
    margin-bottom: 0px;
}

.part-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.part-btn.active {
    background: #FFF !important;
    transform: scale(1.05);
}

.sparkle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #FFD700;
    border-radius: 50%;
    pointer-events: none;
    animation: sparkle 0.8s ease-out forwards;
}

@keyframes sparkle {
    0% {
        opacity: 1;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(360deg);
    }
}

.fun-button {
    border: none;
    transition: all 0.3s ease;
    background: transparent;
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.fun-button:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 6px 12px rgba(0,0,0,0.3); */
}

/* New Css Start */
.bag_canva_main_wrapper, .bag_canva_main_wrapper .container, .bag_canva_main_wrapper .backpack-preview {
    height: 100%;
}
.bag_canva_main_wrapper .container {
    padding: 15px;
}
.bag_canva_main_wrapper{
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 999999999;
}
.main_title {
    position: absolute;
    top: 24px;
    margin: 0px;
    z-index: 99;
    font-weight: 600;
}
.file_save_btn_wrapper {
    position: absolute;
    left: 20px;
    display: flex;
    flex-direction: column;
    top: 69px;
}
.color-grid, .sticker-grid, .text_picker{
    position: absolute;
    bottom: 17%;
    display: flex;
    overflow-x: auto;
    padding: 15px 10px;
    scroll-behavior: smooth;
    width: 44%;
    margin: 0 auto;
    justify-content: flex-start;
}
.flap:after {
    content: '';
    width: 51px;
    height: 20px;
    background: #fff;
    left: 17px;
    top: 10px;
    /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); */
    border-radius: 100px 100px 0 0;
    position: absolute;
}
.color-grid::-webkit-scrollbar, .sticker-grid::-webkit-scrollbar, .text_picker::-webkit-scrollbar {
    width: 0;
}
.bag_options_list {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0px;
    margin: 0;
}
.bag_options_wrapper {
    position: absolute;
    bottom: 12%;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}
.bag_option_item h6 {
    margin: 0;
    font-weight: bold;
}
.bag_option_item {
    margin: 0 5px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
}
.bag_option_item.active {
    background: #fee445;
}
.bag_option_item:first-child {
    margin-left: 0;
}
.bag_option_item:last-child {
    margin-right: 0px;
}
.grid-section {
    display: none;
}
.grid-section.active {
    display: flex;
}
.sticker img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.sticker-btn img, .text-btn img {
    width: 100%;
    height: 100%;
    padding: 10px;
    object-fit: contain;
}
.sticker img {
  touch-action: none;
  transition: transform 0.1s ease-out;
  transform-origin: center center;
}
#stickerSizeSlider {
    transform: rotate(-90deg) translate(-62px, -43px);
}
.select_mf_main_wrapper {
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 999999999;
}
.select_mf_main_wrapper .container, .select_mf_main_wrapper .select_mf_inner_wrapper {
    height: 100%;
}
.select_mf_main_wrapper .container, .select_mf_main_wrapper .select_mf_inner_wrapper {
    height: 100%;
}
.select_mf_inner_wrapper {
    background: linear-gradient(216deg, rgba(255, 255, 255, 1) 48%, rgba(255, 255, 255, 0.65) 59%);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.select_mf_main_wrapper .container {
    padding: 15px;
}
.select_icon_box img {
    filter: drop-shadow(2px 4px 6px black);
}
.select_logo_box {
    padding-bottom: 50px;
}
.select_logo_box .main_title {
    position: unset;
    margin-top: 10px;
}
.select_icon_box{
    cursor: pointer;
}
.select_icon_box:hover {
    transform: scale(1.1) !important;
}
.design_save_btn {
    position: absolute;
    bottom: 3%;
}
.save_button {
    background: #FFD700;
    border: 0;
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    color: #ed2641;
    line-height: 1;
    background-color: #ffdc00;
    box-shadow: 0px 16px 21px 0px rgba(255, 220, 0, 0.25), inset 0.523px -9.986px 0px 0px rgba(1, 25, 13, 0.09);
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 35px;
    padding: 15px 20px 18px;
    border: 0;
    outline: 0;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
}
#removeSelectedSticker.active svg path {
    fill: red;
}
/* #color-grid {
    justify-content: center;
} */
.switch_bt {
    background: #FFD700;
    border: 0;
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    color: #ed2641;
    line-height: 1;
    background-color: #ffdc00;
    box-shadow: 0px 16px 21px 0px rgba(255, 220, 0, 0.25), inset 0.523px -9.986px 0px 0px rgba(1, 25, 13, 0.09);
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 35px;
    padding: 15px 20px 18px;
    border: 0;
    outline: 0;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
    position: absolute;
    top: 70px;
    right: 20px;
}
.modal{
    z-index: 999999999999999999;
}
.modal-backdrop{
    z-index: 999999999;
}
.tc_btn {
    position: absolute;
    bottom: 0;
    right: 0;
    background: transparent !important;
    color: #000 !important;
    border: 0;
    box-shadow: none !important;
    bottom: 10px;
    right: 10px;
}
/* #nahool_form_modal .modal-dialog {
    max-width: 100%;
} */
#canvasPreview {
    display: flex;
    justify-content: center;
}
.form-control {
    border: 0px;
    border-bottom: 2px solid #000;
    border-radius: 0px;
    outline: none !important;
    box-shadow: none !important;
    padding: 16px 0px;
}
.form-label {
    display: none;
}
.form_submit_btn{
    background: #FFD700;
    border: 0;
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    color: #ed2641;
    line-height: 1;
    background-color: #ffdc00;
    box-shadow: 0px 16px 21px 0px rgba(255, 220, 0, 0.25), inset 0.523px -9.986px 0px 0px rgba(1, 25, 13, 0.09);
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 35px;
    padding: 15px 20px 18px;
    border: 0;
    outline: 0;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
}
.successf_box {
    font-size: 20px;
    font-weight: bold;
    width: fit-content;
    margin: 0 auto;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.succ_ID {
    color: #ed2641;
    padding-left: 10px;
    font-size: 40px;
    font-family: angelina;
    letter-spacing: 1.5px;
    font-weight: unset;
}
.active_modal {
    z-index: 999999999;
}
.tnc_list li ul li {
    color: #5d5b5b;
    font-size: 14px;
}
.tnc_list b {
    font-size: 16px;
}
.tnc_list {
    padding-left: 10px;
}
#agreeTermsBtn {
    background: #FFD700;
    border: 0;
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    color: #ed2641;
    line-height: 1;
    background-color: #ffdc00;
    box-shadow: 0px 16px 21px 0px rgba(255, 220, 0, 0.25), inset 0.523px -9.986px 0px 0px rgba(1, 25, 13, 0.09);
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 35px;
    padding: 15px 30px 18px;
    border: 0;
    outline: 0;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
}
#closeTermsBtn {
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 35px;
    padding: 15px 30px 15px;
    border: 0;
    outline: 0;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
}
.submit_modal_btn_box {
    text-align: center;
    margin-top: 20px;
}
#stiker_bg_box {
    position: absolute;
    width: 120px;
    height: 70px;
    /* border: 2px dashed #000; */
    display: block;
    top: 113px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateX(-1px);
}
#alpha_stiker_bg_box {
    position: relative;
    width: 120px;
    height: 55px;
    white-space: nowrap;
    display: block;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translate(0px, -57px);
    /* border: 2px dashed #000; */
}
/* #successMessage {
    height: 100%;
} */
.bg_main_img {
    width: 100%;
    height: 100%;
}
.color-btn_img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    flex-shrink: 0;
}
#blue_print {
    width: 100%;
    height: 100%;
}

.right_side_btn .btn {
    margin-bottom: 10px;
}
.right_side_btn {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 69px;
    right: 10px;
}
.boxes_btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.boxes_btn {
    background: #fff;
    border: 0px;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 4px #00000047;
    padding: 7px;
    border-radius: 10px;
}
.boxes_btn.active {
    outline: 3px dashed #fee445 !important;
}
.edit-design-mode {
    opacity: 0.6;
}
#yesBtn {
    background: #FFD700;
    border: 0;
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    color: #ed2641;
    line-height: 1;
    background-color: #ffdc00;
    box-shadow: 0px 16px 21px 0px rgba(255, 220, 0, 0.25), inset 0.523px -9.986px 0px 0px rgba(1, 25, 13, 0.09);
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 35px;
    padding: 10px 20px 10px;
    border: 0;
    outline: 0;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
}
button#noBtn {
    order: 0;
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    color: #fedc33;
    line-height: 1;
    background-color: #ed2641;
    box-shadow: 0px 16px 21px 0px rgba(255, 220, 0, 0.25), inset 0.523px -9.986px 0px 0px rgba(1, 25, 13, 0.09);
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 35px;
    padding: 10px 20px 10px;
    border: 0;
    outline: 0;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
}
.tnc_list li {
    margin-bottom: 20px;
}
#sticker-resize-container{
    display: none;
}
.main_title_wrapper {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
}
#rest_btn {
    position: absolute;
    top: 100px;
    margin: 0px;
}
.main_title_wrapper {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
}
#rest_btn {
    position: absolute;
    top: 100px;
    margin: 0px;
    width: fit-content;
    background: #ed2c45;
    color: #fff;
    padding: 14px 20px 30px 20px !important;
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    background-color: #ed2c45;
    box-shadow: 0px 16px 21px 0px #ed2c451a, inset 0.523px -9.986px 0px 0px rgba(1, 25, 13, 0.09);
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 35px;
    border: 0;
    outline: 0;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
    font-size: 14px;
}
#formLoader img {
    width: 100%;
    height: 100%;
}
#formLoader {
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 15px;
    left: 23%;
}
.scroll-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff373;
    flex-shrink: 0;
}
.left-btn {
    position: fixed;
    transform: translate(-70px, 2px);
}
.right-btn {
    position: fixed;
    transform: translate(35rem, -2px);
}
/* New Css End */
/* Arabic Css Start */
[dir="rtl"] .file_save_btn_wrapper{
    right: 20px;
    left: unset;
}
[dir="rtl"] #stickerSizeSlider{
    transform: rotate(90deg) translate(62px, -43px);
}
[dir="rtl"] .switch_bt{
    right: unset;
    left: 20px;
}
[dir="rtl"] .btn-close {
    margin-left: 0;
}
[dir="rtl"] .form-control {
    text-align: right;
}
[dir="rtl"] .form-check .form-check-input {
    margin-left: 10px;
    margin-right: -1.5em;
    margin-top: 2px;
}
[dir="rtl"] .form-check {
    display: flex;
    padding-left: 0;
    padding-right: 20px;
}
[dir="rtl"] .form-check .form-check-input {
    margin-left: 10px;
    margin-right: -1.5em;
    margin-top: 2px;
}
[dir="rtl"] .tnc_list li ul {
    padding-left: 0px;
    padding-right: 20px;
}
[dir="rtl"] .tnc_list {
    padding-left: 0;
    padding-right: 10px;
}
[dir="rtl"] .right_side_btn{
    right: unset;
    left: 10px;
}
[dir="rtl"] .left-btn{
    transform: translate(76px, 2px);
}
[dir="rtl"] .right-btn {
    transform: translate(-35.2rem, -2px);
}
/* Arabic Css Start */
/* Responsive Css Start */
@media(max-width:1399px){
    .right-btn{
        transform: translate(31rem, -2px);
    }
    [dir="rtl"] .right-btn {
        transform: translate(-31.2rem, -2px);
    }
}
@media(max-width:1199px){
    .right-btn {
        transform: translate(25.2rem, -2px);
    }
    [dir="rtl"] .right-btn {
        transform: translate(-25.2rem, -2px);
    }
}
@media(max-width:991px){
    .scroll-btn{
        display:none;
    }
}
@media(max-width:580px){
    .part-btn{
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    .color-grid, .sticker-grid, .text_picker{
        width: 84%;
        bottom: 20%;
    }
    .backpack-container{
        zoom: 0.8;
        margin-top: -100px;
    }
    body{
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height:100% !important;
        background-image: none;
    }
    .bag_canva_main_wrapper .container {
        padding: 10px;
    }
    body:before {
        background-image: url('../img/body_bg.webp');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        content: '';
        width: 100%;
        height: 100%;
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999999999;
    }
    .select_mf_main_wrapper {
        z-index: 999999999;
    }
    .save_button{
        font-size: 14px;
    }
    .tc_btn{
        font-size: 12px;
    }
    #canvasPreview{
        margin-top: 50px;
    }
}
@media(max-width:414px){
    .save_button{
        margin-bottom: 20px;
    }
    .save_button:last-child {
        margin-bottom: 0;
    }
}
@media(max-width:390px){
    .bag_options_wrapper{
        bottom: 15%;
    }
    .design_save_btn{
        bottom: 7%;
    }
}