/* Dashboard Css */
.common_head {
    font-size: 14px;
    font-weight: bold;
}

.heading {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 8px;
}
.statistics_text {
    font-weight: bold;
    font-size: 16px;
}

.statistics_count {
    font-size: 26px;
    font-weight: bold;
    margin-top: 5px;
}

.statistics_info {
    margin-top: 12px;
    font-weight: bold;
}

.section_text {
    margin-top: 10px;
    margin-bottom: 15px;
}

/* Editor Css */
.card_margin {
    margin: 15px 0px;
}

.editor {
    background: #757575;
    margin: -20px -24px;
}

.sub_editor {
    margin: 15px;
    background: #fff;
    border-radius: 10px;
}

.save_btn {
    text-align: end;
    padding: 10px 15px;
    background: #F3F3F3;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom: 1px solid #c1c1c1;
}

.name_status_div {
    padding: 15px;
    border-bottom: 1px solid #c1c1c1;
}

.set_prv {
    display: flex;
    height: 100vh;
    overflow-y: auto;
    margin-bottom: 30px;
    scrollbar-width: none; 
}

.settings {
    width: 60%;
    padding: 10px;
}

.preview {
    width: 40%;
    margin-top: 10px;
    padding: 10px;
    position: sticky;
    top: 0;
}

.settings_head {
    font-size: 15px;
    font-weight: bold;
    border-bottom: 1px solid #c1c1c1;
    padding: 12px;
}

.settings_opt_content {
    padding: 15px;
}

.color-picker-div {
    display: flex;
    align-items: center;
    width: 100%; 
    position: relative;
}

.color-btn {
    width: 35px;
    height: 35px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 22px;
    margin-left: 10px;
}

.color-picker-pop-up {
    position: absolute; 
    z-index: 99;
    right: 5px;
    top: 100%;
    pointer-events: auto;
    margin-top: 8px;
}

.shape_list .Polaris-Box--listReset {
    padding: 0 !important;
}

.Polaris-Tag--removable {
    margin-right: 8px !important;
    margin-top: 10px !important;
}

.coll_page_preview, 
.prod_page_preview {
    padding: 10px;
    margin-bottom: 25px;
}

.coll_page_preview_img {
    background: #f2f2f2;
}

.coll_page_preview_img img {
    height: 350px;
    width: 350px;
    object-fit: contain;
    margin: auto;
    display: block;
}

.coll_page_preview .prd_name {
    margin-top: 10px;
    font-weight: 500;
    font-size: 14px;
}

.coll_page_preview .prd_price {
    margin-top: 4px;
    font-size: 18px;
    font-weight: bold;
}

.prod_page_preview_img {
    display: flex;
}

.prod_page_preview_img img {
    height: 250px;
    width: 220px;
    object-fit: contain;
}

.pre_detl .prd_name {
    margin-top: 10px;
    font-weight: 500;
    font-size: 14px;
}

.pre_detl .prd_price {
    margin-top: 6px;
    font-size: 18px;
    font-weight: bold;
}

.pre_detl {
    margin-left: 10px;
}

.error {
    margin-top: -12px;
    display: flex;
    color: #8E1F0B;
}

.error span {
    margin-left: 3px;
}

.error .Polaris-Icon {
    margin: 0;
}

.search-input-div {
    border-bottom: 1px solid #E3E3E3;
}

.search-input-div .Polaris-TextField__Backdrop {
    border: none;
    outline: none !important;
    background-color: transparent !important;
}

.search-input-div input {
    height: 50px;
}

.setup-div {
    padding: 15px; 
}

.setup-div-active {
    padding: 15px;
    background: rgba(247, 247, 247, 1);
    border-bottom: 1px solid #e3e3e3;
}

.setup-head-p {
    font-weight: bold;
    margin-bottom: 4px;
}

.setup-head-p span {
    font-weight: normal;
    font-size: 13px;
    padding-left: 10px;
    margin-bottom: 15px;
    display: block;
}

.setup-text-p {
    font-size: 13px;
}

/* Switch Css */
.switch {
    position: relative;
    display: inline-block;
    width: 2.25rem;
    height: 1.35rem;
}
  
.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}
  
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s cubic-bezier(0,1,0.5,1);
    border-radius: 25px;
}
  
.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s cubic-bezier(0,1,0.5,1);
    border-radius: 10px;
}
  
input:checked + .slider {
    background-color: #000;
}
  
input:checked + .slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}

@media only screen and (max-width: 992px) {
    .set_prv {
        display: block;
    }

    .settings {
        width: 100%;
    }

    .preview {
        width: 100%;
    }
}