/*
* Default modal design
*/
@-webkit-keyframes show-fadein {
    0% {
      opacity: 0; }
    100% {
      opacity: 1; } }
  
  @keyframes show-fadein {
    0% {
      opacity: 0; }
    100% {
      opacity: 1; } 
  }
  
  @-webkit-keyframes hide-fadeout {
    0% {
      opacity: 1; }
    100% {
      opacity: 0; } 
  }
  
  @keyframes hide-fadeout {
    0% {
      opacity: 1; }
    100% {
      opacity: 0; } 
  }
  
  /* show animation */
  @-webkit-keyframes show-animation {
    0% {
      -webkit-transform: translateY(20px);
      transform: translateY(20px);
      opacity: 0; }
    100% {
      -webkit-transform: translateY(0px);
      transform: translateY(0px); 
      } 
  }
  
  @keyframes show-animation {
    0% {
      -webkit-transform: translateY(20px);
      transform: translateY(20px);
      opacity: 0; }
    100% {
      -webkit-transform: translateY(0px);
      transform: translateY(0px); 
      } 
  }
  
  /* hide animation */
  @-webkit-keyframes hide-animation {
    0% {
      -webkit-transform: translateY(0px);
      transform: translateY(0px); }
    100% {
      -webkit-transform: translateY(20px);
      transform: translateY(20px);
      opacity: 0;
      } 
  }
  
  @keyframes hide-animation {
    0% {
      -webkit-transform: translateY(0px);
      transform: translateY(0px); }
    100% {
      -webkit-transform: translateY(20px);
      transform: translateY(20px);
      opacity: 0; 
      } 
  }
  
  .modal-content {
    position: fixed;
    overflow: hidden;
    width: 100%;
    /* height: 100%; */
    height: auto;
    -webkit-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
    top: 50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 9999;
    max-width: 700px;
    background-color: #FFFFFF;
    border-radius: 5px;
    -webkit-box-shadow: 17.678px 17.678px 90px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 17.678px 17.678px 90px 0px rgba(0, 0, 0, 0.07);
  }
  
  .nxcam__popup_render_wrap .modal-content.nextloading .next-modal-content {
    opacity: .4;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none; 
  }
  .nxcam__popup_render_wrap .modal-content.nextloading .next-modal-content .next-modal-footer button {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none; 
  }
  
  .nxcam__popup_render_wrap{
    opacity: 0;
    visibility: hidden;
  }
  .nxcam__popup_render_wrap.is-open{
    opacity: 1;
    visibility: visible;
    z-index: 999;
  }
  .nxcam__popup_render_wrap.is-open .modal-content{
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    
    overflow-x: hidden !important;
    overflow-y: auto !important; 
    z-index: 999;
  }
  
  
  .nxcam__popup_render_bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    -webkit-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden; 
    z-index: 991;
  }
  
  .nxcam__popup_render_bg.is-open {
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    opacity: 1;
    visibility: visible; 
    max-width: 100% !important;
  }
  
  .next-modal-content {
    overflow: hidden; 
   }
   .next-modal-header {
    border-bottom: 1px solid #f7f7f7;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.03);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.03);
    padding-left: 14px;
    padding-right: 10px;
    display: flex;
    justify-content: space-between;
  }
  .next-modal-header > .tabHeader {
    padding: 0px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 0 0 94%;
  }
  .next-modal-header > .tabHeader h4, .next-modal-header > .tabHeader h4 {
    font-size: 1em;
    margin-right: 10px;
  }
  .next-modal-header > .tabHeader .dashicons {
    margin: -1px;
    border: 1px solid #d4cfcf;
    padding: 4px;
    border-radius: 0px;
    min-width: 48px;
    border-right-width: 0px;
  }
  .next-modal-header > .tabHeader .dashicons:last-child {
    border-right: 1px solid #d4cfcf;
  }
  .next-modal-header > .tabHeader .dashicons:hover{
    color: #ccc;
  }
  .next-btn {
      cursor: pointer;
      border: 0px;
      display: inline-block;
      font-weight: 400;
      text-align: center;
      vertical-align: middle;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      font-size: 1rem;
      border-radius: .25rem;
      -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
      transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
      -o-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
      transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
      transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
      color: #fff;
      background-color: #0073aa;
      text-decoration: none;
  }
  
  .next-modal-body {
    padding: 20px; 
  }
  .clear-both::after {
      display: block;
      clear: both;
      content: "";
  }
  
  @media only screen and (min-width: 991px) {
      .next-modal-body {
        max-height: calc(100vh - 210px);
        overflow-y: auto; 
        display: block;
      } 
  }
  
  .next-modal-footer {
    padding: 20px;
    border-top: 1px solid #f5f5f5;
  }
  
  
  
  .next-btn.btn-special {
      font-size: 14px;
      border-radius: 5px;
      background-color: #0085ba;
      padding: 6px 32px;
  }
  .next-btn.btn-special.small {
      padding: 9px 20px;
  }
  .nxcam__popup_render_wrap .next-btn {
    background-color: #FF2F2F;
    color: #fff;
    max-width: none;
    font-size: 14px;
    line-height: 14px;
    border-radius: 5px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    border: none;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    -webkit-font-smoothing: antialiased;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    white-space: nowrap;
  }
  
  .nxcam__popup_render_wrap .next-btn.btn-special {
    font-size: 12px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0px;
    text-transform: uppercase;
    -webkit-transition: all, .15s;
    -o-transition: all, .15s;
    transition: all, .15s;
    padding: 8px 10px;
  }
  
  .nxcam__popup_render_wrap .next-modal-header > .next-btn {
    color: #fa3f6b;
    background: transparent;
    line-height: 3em;
  }
  
  
  .nxcam__popup_render_wrap .next-section-blog {
    display: block;
    position: relative;
  }
  .nxcam__popup_render_wrap .next-section-blog.nxdisabled:before{
    content: "";
    position: absolute;
    width: 100%;
    z-index: 999;
    background: #eeeeee6b;
    height: 100%;
    cursor: no-drop;
  }
  .nxcam__popup_render_wrap .next-section-blog.inlinesection {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
  }
  
  .nxcam__popup_render_wrap .next-section-blog > div {
    padding: 7px 0px;
  }
  
  .nxcam__popup_render_wrap .next-section-blog.inlinesection > div.setting-label-wraper {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 25%;
    text-align: right;
    padding-right: 9px;
  }
  
  .nxcam__popup_render_wrap .setting-label {
    line-height: 3em;
    display: inline-block;
  }
  
  .nxcam__popup_render_wrap .setting-label-wraper .setting-label {
    font-weight: bold;
  }
  
  .nxcam__popup_render_wrap .next-section-blog > div.setting-label-wraper-right {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
  }
  
  .nxcam__popup_render_wrap .next-regular-text {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 6px 20px 0px rgb(194 204 222 / 30%);
    box-shadow: 0px 6px 20px 0px rgb(194 204 222 / 30%);
    background-color: #fff;
    color: #32373c;
    outline: 0;
    -webkit-transition: 50ms border-color ease-in-out;
    -o-transition: 50ms border-color ease-in-out;
    transition: 50ms border-color ease-in-out;
    display: block;
    width: 100%;
    max-width: 25rem;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
  }
  
  
  .nxcam__popup_render_wrap .next-regular-textarea{
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 6px 20px 0px rgb(194 204 222 / 30%);
    box-shadow: 0px 6px 20px 0px rgb(194 204 222 / 30%);
    background-color: #fff;
    color: #32373c;
    outline: 0;
    -webkit-transition: 50ms border-color ease-in-out;
    -o-transition: 50ms border-color ease-in-out;
    transition: 50ms border-color ease-in-out;
    display: block;
    width: 100%;
    max-width: 100rem;
    min-height: 150px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
  }

  .nxcam__popup_render_wrap .nx-import-tabs  .tab__list{
    list-style: none;
    padding-left: 0px;
    margin: 0px;
  }
  
  
  .nxcam__popup_render_wrap .nx-import-tabs .tab__list > .tab__list__item {
    display: block;
    float: left;
    font-size: 14px;
    color: #7d7b7b;
    border: none;
    padding: 21px 0;
    cursor: pointer;
    background-color: #FFFFFF;
    margin: 0;
    font-weight: 500;
  }
  .nxcam__popup_render_wrap .nx-import-tabs .tab__list > .tab__list__item:not(:last-child) {
    margin-right: 30px;
  }
  .nxcam__popup_render_wrap .nx-import-tabs .tab__list > .tab__list__item.active {
    color: #000;
    background-color: transparent;
    border-bottom: 2px solid #0073aa;
  }
  
  .nxcam__popup_render_wrap .nx-import-body .tabItem {
    display: none;
    -webkit-animation: hide-fadeout 600ms ease-out;
    animation: hide-fadeout 600ms ease-out;
  }
  
  .nxcam__popup_render_wrap .nx-import-body .tabItem.active {
    display: block;
    -webkit-animation: show-fadein 600ms ease-in;
    animation: show-fadein 600ms ease-in;
  }
  
  .nxcam__popup_render_wrap  .nx-import-body .copy-and-paste-field {
    overflow: auto;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.018em;
    line-height: 1.5;
    box-shadow: rgb(0 0 0 / 3%) 0px 1px 1px 0px;
    width: 100%;
    font-size: 18px;
    color: rgb(0, 0, 0);
    resize: none;
    border-width: 1px;
    border-style: solid;
    border-image: initial;
    transition: border-color 0.36s ease-in-out 0s;
    padding: 15px;
    border-radius: 4px;
    border-color: rgb(226, 226, 226);
    min-height: 278px;
    margin: 10px 0 0;
  }
  
  
  .nxcam__popup_render_wrap .import-files-contract {
    position: relative;
    min-height: 100px;
    width: 100%;
    border: 1px solid #ccc;
    padding: 4px;
  }
  
  .nxcam__popup_render_wrap .import-files-contract {
    text-align: center;
  }
  
  .import-files-contract .import-icons {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  
  .import-files-contract .import-icons .dashicons{
      display: inline-block;
      font-size: 40px;
      animation: 0s ease 0s 1 normal none running none;
      margin-bottom: 23px;
  }
  
  .import-files-contract .import-text span {
    color: rgb(121, 144, 161);
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.018em;
    line-height: 1;
    margin-bottom: 2px;
  }
  
  .import-files-contract .import-text1 span{
    color: rgb(121, 144, 161);
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
  }
  
  .import-files-contract .import-text2 span{
    font-family: Roboto, Helvetica, Arial, sans-serif;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    height: 32px;
    line-height: 32px;
    cursor: pointer;
    color: rgb(0, 186, 255);
    font-size: 13px;
    text-decoration: none;
    padding: 0px 20px;
    margin: 0px;
    outline: none;
  }
  
  .import-files-contract > input {
    margin: 0px auto;
    width: 100%;
    position: absolute;
    top: 0px;
    height: 100%;
    opacity: 0;
    visibility: visible;
    z-index: 9;
    left: 0;
  }
  
  .nxcam__popup_render_wrap .nxeaild-email-span {
    display: inline-block;
    margin-right: 6px;
  }