* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --appColor: #1e1e1e;
    --form-control-color: #1e1e1e;
}
 

.app-button {
    background: var(--appColor);
    border: none;
    padding: 6px 12px;
    border-radius: 3px;
    color: #ddd;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}

.app-button-small {
    background: var(--appColor);
    border: none;
    padding: 2px 4px;
    border-radius: 1px;
    color: #ddd;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}

.app-button:hover {
    background: #393a3b;
}

#appLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5em;
    z-index: 999999999999999999999999999999999999;
}

.loader {
    position: relative;
    width: 48px;
    height: 48px;
}

.loader:before,
.loader:after {
    content: "";
    display: block;
    border: 32px solid transparent;
    border-top-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    animation: weld-rotate 2s infinite ease-in;
}

.loader:before {
    border-color: transparent transparent transparent var(--appColor);
    animation-delay: 0.5s;
}

@keyframes weld-rotate {

    0%,
    25% {
        transform: rotate(0deg)
    }

    50%,
    75% {
        transform: rotate(180deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.app {
    user-select: none;
    font-family: 'Lato';
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.app .header {
    position: relative;
    z-index: 1;
    background-color: var(--appColor);
    color: white;
    height: 44px;
    line-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-center {
    display: flex;
    gap: 16px;
}

.app .header .logo {
    margin-top: 7px;
    margin-left: 20px;
}

.app .header #appText {
    margin-left: 10px;
}

.header-right {
    display: flex;
    gap: 8px;
}

.icon-button {
    padding: 8px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}

.icon-button:hover:enabled {
    background: rgba(255, 255, 255, 0.1);
}

.app .sidebar {
    color: #1e1e1e;
    /* flex: 1  400px; */
    display: block;
    width: 100%;
    max-width: 400px
}

.sidebar .sidebarMenuWrapper {
    height: 100%;
    display: flex;
    flex-direction: row;
}

.sidebar .sidebarMenuWrapper .sidebar-menu {
    width: 60px;
    background: #1e1e1e;
    padding: 0;
    padding-top: 20px;
}

.sidebar .sidebarMenuWrapper .sidebar-menu .sidebar-button {
    width: 100%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    
    font-size: 11px;
    color: #9ca3af;
    background: none;
    border: none;
    cursor: pointer;
}

.sidebar .sidebarMenuWrapper .sidebar-menu .sidebar-button:hover,
.sidebar .sidebarMenuWrapper .sidebar-menu .sidebar-button.active {
    color: white;
    background: #101113;
}

.sidebar .sidebarMenuWrapper .sidebar-menu.sidebar-button span {
    font-size: 12px;
}

.sidebar .sidebarMenuWrapper .sidebar-content {
    width: 340px;
    background: #fff;
    overflow-x: auto;
    height: calc(100vh - 70px);
 
 
    color: #202020;
}

.sidebar .sidebarMenuWrapper .sidebar-content .close-btn {
    display: none;
}

.sidebar .sidebarMenuWrapper .sidebar-content .sidebar-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;

}

.sidebar .sidebarMenuWrapper .sidebar-content .sidebar-item .sidebar-item-title {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    padding-left: 15px;
    clear: both;
}

.sidebar .sidebarMenuWrapper .sidebar-content .sidebar-item .sidebar-item-content {
    width: 100%;
    color: #202020;
    margin-top: 15px;
    padding-right: 15px;
    display: block;
    padding-left: 15px;

}

.sidebar .sidebarMenuWrapper .sidebar-content .sidebar-item .sidebar-item-content #product-size-wrapper {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.sidebar .sidebarMenuWrapper .sidebar-content .sidebar-item .sidebar-item-content #product-size-title {
    margin-top: 20px;
    font-weight: bold;
    font-size: 13px !important;
    color: #202020;
}

.sidebar .sidebarMenuWrapper .sidebar-content .sidebar-item .sidebar-item-content #product-size-wrapper .product-size-item {

    display: block;

}

.sidebar .sidebarMenuWrapper .sidebar-content .sidebar-item .sidebar-item-content #printing-type-wrapper {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.sidebar .sidebarMenuWrapper .sidebar-content .sidebar-item .sidebar-item-content #printing-type-title {
    margin-top: 20px;
    font-weight: bold;
    font-size: 13px !important;
    color: #202020;
}


.sidebar .sidebarMenuWrapper .sidebar-content .sidebar-item .sidebar-item-content #printing-type-wrapper .printing-type-item {
    margin-bottom: 20px;
    box-sizing: content-box;
    border: 1px solid #f7f0f0;
    border-radius: 4px;
    cursor: pointer;
    background: #fff;
    padding:5px;
    color: #202020;
    display: flex;
    flex-direction: row;
}

.sidebar .sidebarMenuWrapper .sidebar-content .sidebar-item .sidebar-item-content #printing-type-wrapper .printing-type-item {
    color: #000;
    cursor: pointer;
}

.sidebar .sidebarMenuWrapper .sidebar-content .sidebar-item .sidebar-item-content #printing-type-wrapper .printing_type_input {
    cursor: pointer;
    width: 50px;
    border-right: 1px solid #f7f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar .sidebarMenuWrapper .sidebar-content .sidebar-item .sidebar-item-content #printing-type-wrapper .printing_type_input input{

    appearance: none;
    color:#000;
}

.sidebar .sidebarMenuWrapper .sidebar-content .sidebar-item .sidebar-item-content #printing-type-wrapper .printing-type-item .printing_type_description .printing_type_title {
    cursor: pointer;
    display: block;
    font-weight: bold;
    font-size: 13px;


    color: #202020
}

.sidebar .sidebarMenuWrapper .sidebar-content .sidebar-item .sidebar-item-content #printing-type-wrapper .printing-type-item .printing_type_description {
    cursor: pointer;
    width: 100%;
    cursor: pointer;
    padding: 0 10px;
    font-size: 13px;
    margin-bottom: 10px;
    height: auto;
    margin-top: 10px;
    color: #202020;
    text-align: justify;
}

.sidebar .sidebarMenuWrapper .sidebar-content .sidebar-item .sidebar-item-content select {
    border-radius: 5px;
}

.sidebar .sidebarMenuWrapper .sidebar-content .image-grid {
    display: grid;
    margin-top: 20px;
    grid-template-columns: repeat(3, minmax(90px, 2fr));
    gap: 5px;
}

.text-image-grid {
    display: grid;
    margin-top: 20px;
    grid-template-columns: repeat(3, minmax(90px, 2fr));
    gap: 5px;
}

.sidebar .sidebarMenuWrapper .sidebar-content .image-grid .image-grid-item {
    position: relative;
    height: 85px;
    width: 85px;
    border: 1px solid #f1f1f1
}

.text-image-grid .text-image-grid-item {
    position: relative;
    height: 85px;
    width: 85px;
    border: 1px solid #f1f1f1
}

.showClipartCategoryItems,.showShapeCategoryItems{
    font-size:12px
}

#clipart-category-content-wrapper,#shape-category-content-wrapper{
    position:absolute;
    top:0px;
    z-index:999999;
    left:60px;
    width:340px;
    height: 94.9vh;
    background: #fff;
    display: none;
    overflow-y: scroll;     
}

.sidebar .sidebarMenuWrapper .sidebar-content .image-grid .image-grid-item .badge {
    position: absolute;
    top: 0;
    padding: 0;
    right: 20px;
}

.sidebar .sidebarMenuWrapper .sidebar-content .image-grid img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 4px;
    height: 100px;
    margin-bottom: 10px;
    object-fit: fill;
    opacity: 1;
    cursor: pointer;
    transition: 0.5s;
}

.text-image-grid img {
    transition: 0.5s;
    width: 100% !important;
    height: 100% !important;
    border-radius: 4px;
    height: 100px;
    margin-bottom: 10px;
    object-fit: fill;
    opacity: 1;
    cursor: pointer;   
}

.text-image-grid img.active{
    background: #ddd!important;
}

.text-image-grid img:hover {
    background: #ddd;
    transform: scale(1.2);
}

.sidebar .sidebarMenuWrapper .sidebar-content .image-grid img:hover {
    background: #ddd;
    transform: scale(1.2);
}


#changeProductWrapper {
    display: flex;
    justify-content: center;
    padding-left: 20px;
    text-align: center;
    align-items: center;
}


.sidebar .sidebarMenuWrapper .sidebar-content #selectedProductDetails {
    width: 150px;
    background: transparent;
}

.sidebar .sidebarMenuWrapper .sidebar-content #selectedProductColorsTitle {
    margin-top: 10px;
    color: #202020;
    font-weight: bold;
    font-size: 13px !important;
}

.sidebar .sidebarMenuWrapper .sidebar-content #selectedProductColors {
    display: block;
    margin-top: 10px;
    padding-right: 10px;
}

.sidebar .sidebarMenuWrapper .sidebar-content #selectedProductColors div {
    float: left;
    width: 35px;
    height: 35px;
    border: 4px solid #ddd;
    margin: 5px;
}

.sidebar .sidebarMenuWrapper .sidebar-content #selectedProductColors div:hover {
    cursor: pointer;
}
 
.app .main {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: row;
}

.main .content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #ebeaea;
    user-select: none;
    border-bottom: 1px solid #f5f5f5;
}

.main .content #layoutSizePicker {
    cursor:pointer;
    position: fixed;
    z-index: 5;
    bottom: 25px;
    border-radius: 1px;
    left: 430px;
    width: 60px;
    height: 60px;
    background-image: url("../images/size-picker.png");
    background-color: #f5f5f5;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main .content #layoutSizePickerContent {
    display: none;
    position: fixed;
    border:4px solid #000;
    z-index: 5; 
    bottom: 95px; 
    border-radius: 1px;
    background: #fff;
    left: 430px;
}

.main .content #layoutSizePickerContent:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 30px;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
  }

.main .content #layout3dViewer {
    display: none;
    position: absolute;
    z-index: 5;
    bottom: 5px;
    border-radius: 1px;
    left: 70px;
    width: 50px;
    height: 50px;
    background-image: url("../images/color-picker.png");
    background-color: #cccccc;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.main .content #canvas-main-wrapper {
    width: 100%;
    background:transparent!important;
    margin: 0 auto;
    margin-top:20px;
}

#appProductCustomizerArea {
    margin-top: 100px;
    width: 100%;
}
 
.uploader {
    border: 2px dashed #6c757d;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    background-color: none;
    transition: background-color 0.3s, border-color 0.3s;
    cursor: pointer;
}

.uploader.dragover {
    background-color: #e9ecef;
    border-color: #007bff;
}

.uploader i {

    color: #6c757d;
}

.uploader p {
    margin: 0;
    font-size: 16px;
    color: #6c757d;
}

.uploader span {
    color: #000;
    font-weight: bold;

    cursor: pointer;
}

.preview-container {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;

}

.preview-container img {
    width: 90px;
    height: 90px;
}
 

.main .layoutPicker {
    position: absolute;
    z-index: 9;
    top: 250px;
    right: 35px;
}

.main .layoutPicker ul {
    display: flex;
    flex-direction: column;
    background: none;
    width: 62px;
    list-style-type: none;
}

.main .layoutPicker ul li {
    text-align: center;
    border: 2px solid #f5f5f5;
    cursor: pointer;
    height: 70px;
    width: 60px;
    background: #fff;
    margin-bottom: 10px;
}

.main .layoutPicker ul li img {
    margin-top: 10px;
    width: 45px;
    height: 56px;
}

.main .layoutPicker ul li:hover {
    border: 2px solid var(--appColor);
    cursor: pointer;
    width: 60px;
    height: 70px;
    padding: 0;

    margin-bottom: 10px;
    list-style-type: none;
}

.main .layoutPicker ul li.active {
    border: 2px solid var(--appColor);
}

.content .toolbar { 
    z-index: 5; 
    width: 100%; 
    background-color: #f5f5f5;
    color: black; 
    height: 45px;
 
    display: flex; 
    flex-direction: row;
}

.close-content-btn{
    display: block;
    float:right;
}

.toggle-content-btn {
    position: relative;
}

.toggle-sub-content {
    display: none;
    text-align: left;
    position: absolute;
    top: 100%;
    left: 0px; 
    width: 330px;
    border: 1px solid #c1c0c0; 
    padding: 15px;
    background-color: #fff;
    z-index: 99999;
    height:  auto!important;
    max-height: 300px;
    overflow-y: scroll; 
    overflow-x: hidden; 
}

#image-editor-area{
    border:0;
    top:0px;
    left:-340px;
    height:  89.9vh!important;
    max-height: 89.9vh!important;
}

#text-editor-area{
    border:0;
    top:0px;
    left:-340px;
    height:  89.9vh!important;
    max-height: 89.9vh!important;
}

.toggle-sub-content .sub-content-title {
    font-weight: bold;
    font-size: 12px;
}
 
.toolbar #imageEditor {
    display: flex;
    flex-direction: row; 
}

.toolbar #imageEditor button { 
    color: #000;
    margin-top:1px;
    border: 1px solid #ccc;
    margin-right: 2px !important;
    width: 40px !important;
    height: 40px !important;
    cursor: pointer !important;
}

.toolbar #imageEditor button:hover {
    background: #ddd;
}
 


.toolbar #fontEditor {
    display: flex;
    flex-direction: row; 
}

.toggle-sub-content .editor-object-button {
    display: inline-block;
    color: #000;
    text-align: center;
    border: 1px solid #ccc;
    margin-top: 3px;

    position: relative;
    margin-right: 2px !important;
    width: 40px !important;
    line-height: 40px;
    height: 40px !important;
    cursor: pointer !important;

}

.toggle-sub-content .editorItemTable{
  
    font-size:14px;
 
}


.toggle-sub-content .color-picker-object {
    display: block;
 
    margin-right: 2px;
 

}

.toolbar #fontEditor input { 
 
 
    margin-top:4px;
    margin-right: 2px !important;
 
    cursor: pointer !important;
}


.toolbar #fontEditor button { 
    color: #000;
    margin-top:1px;
    border: 1px solid #ccc;
    margin-right: 2px !important;
    width: 40px !important;
    height: 40px !important;
    cursor: pointer !important;
}

.toolbar #fontEditor button:hover {
    background: #ddd;
}

.toolbar #objectEditor {
    display: flex;
    flex-direction: row;

    margin-top: 0;
}

.toolbar #objectEditor button:hover {
    background: #ddd;
}

.toolbar #objectEditor button {
    margin-top:2px;
    color: #000;
    margin-top: 1px;
    border: 1px solid #ccc;
    margin-right: 2px !important;
    width: 40px !important;
    height: 40px !important;
    cursor: pointer !important;
}

.app .footer {
    position: relative;
    z-index: 4;

    border-bottom: 1px solid #f5f5f5;
    background: var(--appColor);
    color: #fff;
    text-align: left;
    height: 35px;
    font-size: 12px;
    line-height: 30px;
}

.app  #zoomPicker { 
    position: fixed;
    z-index: 5;
    bottom: 10px;
    border-radius: 5px;
    right: 10px;
    height: 25px;
}


 
 


.app .footer #appFooterText {
    font-size: 12px;
    color: #fff;
    margin-left: 5px !important;
}



.notification {
    position: fixed;
    padding: 5px 5px 5px 15px;
    margin: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 100000000;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}


.notification .icon {
    margin-right: 10px;
    font-size: 24px;
}


.success {
    background-color: #4CAF50;
    color: white;
}

.success .icon::before {
    content: "\2713";
}

/* Warning */
.warning {
    background-color: #FFC107;
    color: black;
}

.warning .icon::before {
    content: "\26A0";
}


.error {
    background-color: #F44336;
    color: white;
}

.error .icon::before {
    content: "\2716";
}


.top-left {
    top: 10px;
    left: 10px;
}

.top-right {
    top: 10px;
    right: 10px;
}

.bottom-left {
    bottom: 30px;
    left: 5px;
}

.bottom-right {
    bottom: 30px;
    right: 5px;
}

.notification .close-btn {
    margin-left: auto;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    background: none;
    border: none;
    padding: 0;
    font-weight: bold;
}

#product-size-wrapper .container {
    width: 100%; 
    padding:0;

} 

.size-container {
    width: 100%;
    
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 2px;
}

.size-item {
    background: #fff;
    border-radius: 4px;
    padding: 4px 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    border: 1px solid #f7f0f0;
}

.size-btn {
    width: 44px;
    height: 34px;
    border: 1px solid #919090;
    background: white;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
    font-size: 13.5px;
    transition: all 0.2s ease;
    color: #333;
    padding: 0;
}

.size-btn.selected {
    background: #000000;
    color: white;
    border-color: #000000;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1px;
    background: #f8f9fa;
    padding: 1px;
    border-radius: 3px;
    width: 95%;
    justify-content: center;
}

.quantity-decrement-btn,.quantity-increment-btn {
    width: 18px;
    height: 18px;
    border: none;
    background: white;
    border-radius: 2px;
    cursor: pointer;
    font-weight: bold;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    padding: 0;
}


.quantity-input {
    width: 40px;
    height: 25px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    font-size: 12px;
    color: #333;
    padding: 0;
}

 
.product-info {
    text-align: center;
    margin-top: 8px;
    padding: 4px;
    background: #f8f9fa;
    border-radius: 4px;
    font-size: 12.5px;
    color: #333;
}

.total-label {
    color: #666;
    margin-right: 3px;
}

#total-quantity {
    color: #000000;
    font-weight: bold;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.size-label {
    font-size: 0.6rem;
    color: #666;
}

@media (max-width: 320px) {
    .size-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .container {
        max-width: 100%;
    }
}

#productSelectLoader{
 
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination a { 
    color: var(--appColor); 
}

.pagination a:hover, a:active {

    background: var(--appColor);
    border: 1px solid #ddd; 
    color: #ddd; 
    cursor: pointer;
    transition: background 0.2s; 
}

.pagination a.active {

    background: var(--appColor);
    border: 1px solid #ddd; 
    color: #ddd; 
    cursor: pointer;
    transition: background 0.2s; 
}

.clipart-category-wrapper {
    width: 100%; 
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 2px;
}

 
 
.app-progress-bar {
    margin-top:10px;
    width: 100%;
    height: 12px;
    background: #f0f0f0;
    border-radius: 10px;
    padding: 2px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.app-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #3c3e41 0%, #000000 100%);
    border-radius: 8px;
    transition: width 0.5s ease;
    position: relative;
    animation: shimmer 2s infinite linear;
    background-size: 200% 100%;
}

.app-progress-success {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #085701 0%, #128508 100%);
    border-radius: 8px;
    transition: width 0.5s ease;
    position: relative;
    animation: shimmer 2s infinite linear;
    background-size: 200% 100%;
}

.percentage {
    min-width: 45px;
    color: #333;
    font-weight: 600;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
 
.showOnlyMobile {
    display: none;
}
 

@media (max-width: 768px) {

    #appProductCustomizerArea {
        margin-top: 0 !important;
    }

    .hideOnMobile {
        display: none;
    }

    .showOnlyMobile {
        display: block;
    }

    .app .main {

        flex-direction: column;
    }

    .content .toolbar { 
 
        justify-content: center;
        align-items: center;
        
    }


    .header-left {
        display: none;
    }

    #text-editor-area{
        height:  unset!important;
        max-height: 400px!important;
        overflow-y: scroll; 
        border:unset;
        top:41px;
        left:unset; 
    }

    #image-editor-area{
        height:  unset!important;
        max-height: 400px!important;
        overflow-y: scroll; 
        border:unset;
        top:41px;
        left:unset; 
    }
 
    .toggle-sub-content::before {
        content: "";
        position: absolute;
        top: -5px;
        left: 5px;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #fff;
    }
    

    .sidebar {

        position: fixed;
        z-index: 99999;
        bottom: 5px;
        background: #0000;
        display: flex;
        max-height: 55px;
        max-width: 100% !important;
        order: 2;
    }


    .sidebar .sidebarMenuWrapper {
 
        overflow-x: scroll;
        width: 100% !important;
        height: 60px !important;
        background: #1e1e1e;
        display: flex;
   
    }

    .sidebar .sidebarMenuWrapper .sidebar-menu {
        width: 100% !important; 
        height: 60px !important; 
        display: flex;
        flex-direction: row !important;
        padding:0;
    }

    .sidebar .sidebarMenuWrapper .sidebar-menu .bi {
        font-size: 23px !important;
    }

    .sidebar-content .sidebar-item {
        position: relative !important;
    }

    .sidebar .sidebarMenuWrapper .sidebar-content .close-btn {
        display: block !important;
        position: absolute;
        top: 15px;
        right: 15px;
        width: 30px;
        border: 0;

        color: #000;
        height: 30px;
        border-radius: 5px;
        line-height: 30px;
        font-size: 20px;
        cursor: pointer;
        z-index: 1000;
    }



    .sidebar .sidebarMenuWrapper .sidebar-content {
        position: fixed;
        box-sizing: border-box;
        overflow-y: auto;
        z-index: 99999;
        top: 44px;
        left: 0px;
        background: #cccccc;
        height: calc(100vh - 89px - 125px);
        width: 100%;
    }

    #clipart-category-content-wrapper,#shape-category-content-wrapper{
        left:0;
        width:100%;
    }

    .sidebar-content.hidden {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        top: -9999px;
    }

    .sidebar .sidebarMenuWrapper .sidebar-menu .sidebar-button {

        width: 75px;
        height: 60px;
        padding: 4px;

        border: none;
        cursor: pointer;
    }


    #canvas-main-wrapper {
        /* transform: scale(0.9); */
        margin-top: 30px !important;
        width: 100% !important;
    }

    #canvasContainer {

        width: 100% !important;

    }


    .content {
        background: transparent;
        border-bottom: 0 !important;
        order: 1;
    }

    .app .footer {
        display: none;
    }

    .main .content #zoomPicker {
        display: none;
    }

    #infoText {
        display: none;
    }

    .bottom-right {
        bottom: 100px !important;
        right: 10px;
    }
 
}