/* for hidden page template css */
.hiddenPageWrapper{
    padding: 0px 40px;
}
.templates-SearchSection-Input {
    position: relative;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  input.templates-InputPanel-Input{
    font-size: 16px;
    background-color: rgba(102,102,102,0.15);
    border: 2px solid rgb(255,255,255);
    width: 100%;
    margin: 3px 0;
    height: 50px;
    padding: 5px 20px;
    line-height: normal;
    border-radius: 50px;
    outline: none;
    font-family: 'Montserrat';
  }
  i.templates-InputPanel-Icon{
    transform: translateX(-50px);
    cursor: pointer;
  }
  .templates-ListSection-Panel {
    display: flex;
    border-radius: 5px;
    transition: all .35s ease;
    padding: 30px;
  }
  div.templates-List-Section {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
    
  }
  div.templates-Panel-Left{
      width: 40%;
      font-family: 'Montserrat';
  }
  div.templates-Panel-Right{
      width: 60%;
      margin-left: 20px;
      font-family: 'Montserrat';
  }
  div.templates-Left-Data{
      font-family: 'Montserrat';
      padding: 15px;
      border-bottom: 1px solid #3b3b3b;
      font-size: 15px;
      text-align: left;
      color: #1F2732;
  }
  .templates-Panel-Content{
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  /* a.templates-Panel-Button{
      text-decoration: none;
      width: 150px;
      height: 40px;
      background-color: #ffbf00;
      border-radius: 6px;
      display: flex;
      align-items: center;
      position: relative;
      justify-content: center;
      color: #3b3b3b;
      transition: all .3s ease;
      font-weight: 500;
  } */
  /* a.templates-Panel-Button:hover{
      background-color: #ff9600;
  } */
  .templates-ListSection-Panel:not(:last-child){
      margin-bottom: 20px;
  }
  div.templates-ListSection-Panel:hover{
    box-shadow: 0 4px 12px rgba(76, 76, 76, 0.20); 
  }
  img.templates-Panel-Img{
      width: 100%;
  }
  .templates-Data-Label{
      font-weight: 500;
  }
  .templates-Data-Content {
    position: relative;
    display: block;
    border-bottom: 1px dotted black;
    cursor: pointer;
    font-size: 13px;
  }
  
  .templates-Data-Content .tooltipText {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .templates-Data-Content .tooltipText:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
  }
  
  .templates-Data-Content:hover .tooltipText {
    visibility: visible;
    opacity: 1;
  }
  .templates-Panel-Title{
      font-size: 30px;
      color: #1F2732;
      font-weight: 400;
  }
  div.templates-List-Section{
      margin-top: 20px;
  }
  div.templates-NoList-Section {
    display: block;
    margin: 10px auto 0px;
    font-family: 'Montserrat';
    font-size: 20px;
  }
  
  div.templates-NoList-Section i {
    display: block;
    text-align: center;
    font-size: 60px;
    color: #ff5722;
  }
  
  div.templates-NoList-Section span {
    margin-top: 10px;
    text-transform: uppercase;
    display: block;
  }
  /* end */
  .formHide{
      display:none !important;
  }
  /* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
    div.templates-ListSection-Panel {
        margin: 15px;
        padding: 30px;
        width: 100%;
    }
  }
  
  /* 
    ##Device = Laptops, Desktops
    ##Screen = B/w 1025px to 1280px
  */
  @media (min-width: 1025px) and (max-width: 1280px) {
    div.templates-ListSection-Panel {
        margin: 15px;
        padding: 30px;
        width: 100%;
    }
  
    div.templates-Panel-Content {
        display: block;
    }
  
    div.templates-Panel-Title {
        margin-bottom: 20px;
    }
  }
  
  /* 
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
  */
  @media (min-width: 768px) and (max-width: 1024px) {
    div.templates-ListSection-Panel {
        display: block;
        margin: 10px;
        padding: 20px;
        width: 100%;
    }
  
    div.templates-Panel-Left {
        width: 100%;
    }
  
    div.templates-Panel-Right {
        width: 100%;
        margin-left: 0px;
    }
  
    div.templates-Panel-Left div.templates-Left-Data {
        border-bottom: 1px solid #00000047;
    }
  }
  
  /* 
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
  */
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    div.templates-ListSection-Panel {
        margin: 10px;
        padding: 20px;
        width: calc(50% - 80px);
    }
    
    div.templates-Panel-Left {
        width: 100%;
    }
  
    div.templates-Panel-Right {
        width: 100%;
        margin-left: 0px;
    }
  
    div.templates-Panel-Left div.templates-Left-Data {
        border-bottom: 1px solid #00000047;
    }
  }
  
  /* 
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
  */
  @media (min-width: 481px) and (max-width: 767px) {
    div.templates-ListSection-Panel {
        display: block;
        margin: 30px 10px 10px 10px;
        padding: 20px;
        width: calc(100% - 60px)
    }
  
    div.templates-Panel-Left {
        width: 100%;
    }
  
    div.templates-Panel-Right {
        width: 100%;
        margin-left: 0px;
    }
  
    div.templates-Panel-Left div.templates-Left-Data {
        border-bottom: 1px solid #00000047;
    }
  }
  
  /* 
    ##Device = Most of the Smartphones Mobiles (Portrait)
    ##Screen = B/w 320px to 479px
  */
  @media (min-width: 320px) and (max-width: 480px) {
    div.templates-ListSection-Panel {
        display: block;
        margin: 30px 10px 10px 10px;
        padding: 20px;
        width: 100%;
    }
    .hiddenPageWrapper{
        padding: 0px;
    }
  
    div.templates-Panel-Left {
        width: 100%;
    }
  
    div.templates-Panel-Right {
        width: 100%;
        margin-left: 0px;
    }
  
    div.templates-Panel-Left div.templates-Left-Data {
        border-bottom: 1px solid #00000047;
    }
    .templates-Panel-Title{
        text-align: left;
        font-size: 20px;
    }
    a.templates-Panel-Button{
        width: 120px;
        height: 40px;
    }
  }