.polotno-panel-container {
    overflow-y: auto;
  
    & .custom-template-section {
      display: 'flex';
      flex-wrap: 'wrap';
      overflow-y: 'scroll';
  
      & .title {
        & span {
          font-size: 16px;
          font-weight: 600;
          color: #ed5c2f;
        }
      }
      @mixin designCommonStyles {
        width: 320px;
        height: 224px;
        border-radius: 3px;
        border: 0.5px solid var(--border-color);
        margin: 10px auto;
        cursor: pointer;
      }
      & .default-design {
        @include designCommonStyles;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        & p {
          color: #303030;
          font-weight: 600;
          font-size: 12px;
          line-height: 14.52px;
          margin-top: 5px;
        }
      }
      & .design-template {
        @include designCommonStyles;
        & img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }
    }
  
    .dummy-image {
      padding: 85px;
      object-fit: fill !important;
    }
  
    .MuiTabs-indicator {
      background-color: #ed5c2f !important;
    }
  
    .templateTabsWrapper {
      width: 100%;
      max-width: 480px;
  
      @media (width <= 800px) {
        max-width: none !important;
      }
  
      .templateTabs {
        .MuiTabScrollButton-root {
          width: 15px;
          opacity: 1 !important;
          &:hover {
            svg {
              color: #ed5c2f !important;
            }
          }
          .Mui-disabled {
            opacity: 1 !important;
          }
        }
      }
    }
  
    .noTemplateText {
      height: 100%;
      min-height: 200px;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      p {
        color: var(--text-color);
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
      }
    }
  
    .searchWrapper {
      margin: 16px 0;
    }
  }
  
  .topBar-v2 {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    gap: 10px;
    margin: 24px 0 10px;
    padding-right: 40px;
  
    @media (width <= 930px){
      flex-direction: column-reverse;
      justify-content: center;
    }
  
    @media (width <= 768px){
    padding: 0 15px 20px;
    }

    .filters-container {
      display: flex;
      gap: 16px;
      align-items: center;
      flex-wrap: wrap;

      @media (width <= 768px){
        gap: 10px;
      }

      .filter-select {

        @media (width <= 768px){
          min-width: 100%;
        }

        .select-layout-v2 {
          margin: 0;
          gap: 0;
        }
      }
    }
  }
  .selectBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 25px;
    padding: 0 35px;
  
    p {
      color: #6A6565 !important;
      font-weight: 400 !important;
      font-size: 14px !important;
      margin: 0;
      width: 100%;
      text-align: end;
    }
  }
  
  .templatesContent-v2 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    // padding: 15px 35px 0;
    gap: 16px;
    height: 100%;
    max-height: calc(100vh - 248px);
    overflow-y: scroll;
    margin-top: 10px;
    width: 100%;
    padding-right: 30px;
  
     @media (width <= 1340px){
        justify-content: center !important;
      }
  
    @media (width <= 1125px){
      max-height: calc(100vh - 320px);
    }
  
    &::-webkit-scrollbar {
      width: 8px;
    }
  
    &::-webkit-scrollbar-track {
      background: transparent !important;
      border-radius: 1px;
    }
  
    &::-webkit-scrollbar-thumb {
      background: var(--scrollbar-thumb-color) !important;
      border-radius: 10px;
    }
  
    @supports not selector(::-webkit-scrollbar) {
      body {
        scrollbar-color: var(--scrollbar-thumb-color) var(--scrollbar-track-color);
      }
    }
  
    .defaultDesign {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-width: 440px;
      height: 100%;
      min-height: 358px;
      flex: 0 440px;
      cursor: pointer;
      border: 0.36px solid #00000066;
      padding: 20px;
      border-radius: 12px;
      padding: 1.5px;
      position: relative;
  
      p {
        color: var(--text-color);
        font-weight: 600;
        font-size: 12px;
        line-height: 14.52px;
        margin-top: 5px;
      }
      
      .ownHeading-v2{
        color: var(--text-color);
        font-weight: 400 !important;
        font-size: 18px !important;
        line-height: 14.52px;
        position: absolute;
        bottom: 20px;
        left: 20px;
      }
  
    }
  }
  