.viwse-hidden{
  display: none !important;
}
.vi-ui.dropdown{
  min-height: 38px;
}
.viwse-shortcode-info{
  font-size: 18px;
  cursor: grabbing;
  &:hover{
    background: #ccc;
  }
}
.viwse-button-action-wrap{
  position: sticky;
  bottom: 30px;
  z-index: 9;
}
.viwse-placeholder{
  background: white;
  border: 1px dashed rgba(1, 1, 1, .3);
  height: 40px !important;
  border-radius: 5px;
  visibility: visible;
}
.vi-ui.viwse-search-ajax-button{
  box-shadow: 0 0 0 2px #8d8d8d inset!important;
  color: #8d8d8d !important;
}
.viwse-background-render-status{
  font-weight: 500;
}
.viwse-search-result-position{
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  .viwse-search-result-item-wrap{
    cursor: all-scroll;
    border-radius: 0.28571429rem;
    background: #fff;
    box-shadow: 0 1px 2px 0 rgb(34 36 38 / 15%), 0 0 0 1px rgb(34 36 38 / 15%);
    padding: 10px 8px;
    &:not(:hover){
      color: #b3b2b0;
    }
  }
}
.viwse-suggestion-for-pages{
  .viwse-suggestion-wrap {
    &:not(.viwse-suggestion-wrap-enable):not(:hover){
      opacity: .25;
    }
    .viwse-suggestion-action-wrap {
      cursor: pointer;
      color: #8b8b8b;
    }
  }
}
html.viwse-noscroll {
  overflow-y: hidden !important;
  width: 100%;
  body {
    position: fixed;
    overflow-y: hidden;
    width: 100%;
  }
}
.viwse-warning-wrap{
  border: 1px solid red !important;
  border-radius: 4px;
}
.viwse-popup-wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 9;

  &:not(.viwse-popup-wrap-show) {
    left: 100%;
  }

  &.viwse-popup-wrap-loading {
    .viwse-overlay {
      &.viwse-overlay-loading {
        left: 0;
      }
    }
  }

  &.viwse-popup-wrap-hidden {
    left: 100%;
    animation-duration: .35s;
    animation-name: viwse_hidden_right_out;
  }

  &.viwse-popup-wrap-show {
    left: 0;
    animation-duration: .35s;
    animation-name: viwse_hidden_right_in;
  }

  .viwse-overlay {
    width: 100%;
    height: 100%;
    background: #222;
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    &.viwse-overlay-loading {
      left: 100%;
      z-index: 10;
      background: #fff;
      opacity: .65;

      &:before {
        position: absolute;
        top: 40%;
        left: calc(50% - 25px);
        content: "" !important;
        border: 5px solid #ffffff;
        border-top: 5px solid #1db7b1;
        border-bottom: 5px solid #1db7b1;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        animation: viwse 1s linear infinite;
      }
    }
  }

  .viwse-popup {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 99999;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

    .viwse-popup-container-wrap {
      display: flex;
      justify-content: center;
      position: relative;
      max-height: 80%;
      width: 600px;
      max-width: 80%;
      z-index: 2;

      .viwse-popup-close {
        position: absolute;
        z-index: 1;
        top: -45px;
        right: -35px;
        font-size: 35px;
        line-height: 35px;
        cursor: pointer;
        color: #fff;
        transform: scale(2) rotate(45deg);
        font-family: "Times New Roman";
      }

      .viwse-popup-container {
        position: relative;
        width: 100%;
        max-width: 100%;
        max-height: 100%;
        background: #fff;
        margin: 0;
        overflow: hidden;
        height: auto;
        border-radius: 5px;

        .viwse-popup-bt {
          margin: auto;
        }

        .viwse-popup-header-wrap {
          text-align: left;
          font-size: 20px;
          font-weight: 600;
          color: #000000d9;
          padding: 18px;
          border-bottom: 1px solid #e6e6e6;
        }

        .viwse-popup-content-wrap {
          text-align: left;
          padding: 20px;
          color: #222;
          overflow: auto;
          height: auto;
          max-height: calc(100% - 165px);
          /* scrool bar */
          &::-webkit-scrollbar {
            width: 7px;
          }

          &::-webkit-scrollbar-track {
            background: #f1f1f1;
            margin-top: 2px;
            margin-bottom: 2px;
          }

          &::-webkit-scrollbar-thumb {
            background: #cecece;
            border-radius: 20px;
            &:hover {
              background: #a6a6a6;
            }
          }

          .viwse-popup-content:last-child {
            margin-bottom: 0;
          }

          .viwse-popup-content {
            display: inline-flex;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 15px;
            width: 100%;
            .viwse-popup-content-full-row {
              width: 100%;

              .viwse-popup-receipt-select-wrap {
                display: grid;
                grid-template-columns: max-content auto;
                grid-gap: 20px;

                div {
                  align-self: center;
                }
              }
            }

            .viwse-popup-content-half-row {
              width: 50%;
            }

            .viwse-popup-content-horizontal {
              display: inline-grid;
              justify-content: space-between;
              align-items: center;
              grid-template-columns: 2.5fr 7.5fr;
            }

            .viwse-popup-content-vertical {
              display: inline-grid;
              justify-content: flex-start;
              align-items: center;
              grid-template-columns: 100%;
              grid-gap: 5px;
            }
            .viwse-popup-content-value {
              display: inline-flex;
              justify-content: flex-start;
              width: 100%;
              padding-left: 10px;
              gap: 10px;
              &.viwse-popup-content-field-options{
                padding: 0;
              }
              div{
                width: 100%;
                &.viwse-edit-field-option-checkbox-wrap{
                  width: auto;
                }
              }
            }
            .viwse-popup-content-tooltip{
              i{
                margin-left: 6px;
                cursor: pointer;
                font-size: 13px;
                color: #707070;
              }
            }
            .select2-container{
              width: 100% !important;
            }
            .select2-container--default {
              .select2-selection--single {
                height: 39px !important;
                border: none !important;
                .select2-selection__rendered {
                  line-height: 34px !important;
                  li{
                    width: 100% !important;
                  }
                }
              }
              .select2-selection--multiple {
                .select2-selection__rendered {
                  white-space: break-spaces;
                  li {
                    &.select2-search--inline {
                      width: 100% !important;
                    }
                    .select2-search__field {
                      width: 100% !important;
                      border: 0 !important;
                      min-height: 20px !important;
                    }
                  }
                }
                border: 1px solid rgba(34, 36, 38, .15) !important;
              }
            }
            .input label{
              font-weight: 400 !important;
            }

            input:not([type=checkbox]):not(.viwse-shortcode-cols),textarea {
              border: 1px solid #ccc !important;
              width: 100%;
              line-height: 1;
              min-height: 35px;
              &.search{
                border: none !important;
              }
              &:focus, &:active{
                outline: unset;
                box-shadow: none;
              }
            }
          }
        }

        .viwse-popup-footer-wrap {
          text-align: right;
          padding: 14px 18px;
          border-top: 1px solid #e6e6e6;
          .viwse-popup-wrap-field-info-bt-save{
            background: #2185d0;
            color: #fff;
          }
        }
      }
    }
  }
}
.rtl{
  .viwse-popup-wrap{
    .viwse-popup .viwse-popup-container-wrap {
      .viwse-popup-close{
        right: auto;
        left: -35px;
      }
      .viwse-popup-container {
        .viwse-popup-header-wrap, .viwse-popup-content-wrap {
          text-align: right;
        }
        .viwse-popup-footer-wrap{
          text-align: left;
        }
      }
      .vi-ui.dropdown,
      .menu.transition.visible{
        .item{
          text-align: right;
        }
      }
    }
  }
}
@keyframes viwse_hidden_right_out {
  from {
    left: 0;
    opacity: 1;
  }
  to {
    left: 100%;
    opacity: 0;
  }
}

@keyframes viwse_hidden_right_in {
  from {
    left: 100%;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
@keyframes viwse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}