/* The switch - the box around the slider */
.tiktokfeed-switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 32px;
}
  
.tiktokfeed-switch input {display:none;}
  
.tiktokfeed-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ddd;
    -webkit-transition: .4s;
    transition: .4s;
    border-bottom: 0px solid #aaa;
}
  
.tiktokfeed-slider:before {
    position: absolute;
    content: "";
    height: 32px;
    width: 35px;
    left: 0px;
    bottom: 0px;
    background-color: #aaa;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .tiktokfeed-slider:before {
    background-color: #6BBD6E;
}
  
input:checked + .tiktokfeed-slider {
    background-color: #c3e6c4;
    border-bottom: 0px solid #559c58;
}
  
input:checked + .tiktokfeed-slider:before {
    -webkit-transform: translateX(35px);
    -ms-transform: translateX(35px);
    transform: translateX(35px);
}
  
.tiktokfeed-slider.tiktokfeed-round {
    border-radius: 0px;
}
  
.tiktokfeed-slider.tiktokfeed-round:before {
    border-radius: 0px;
}
  
.tiktokfeed-containter .dashicons, .tiktokfeed-metabox .dashicons {
	font-size: 32px;
	margin-top: -5px;
	margin-right: 1px;
}
.tiktokfeed-area {
    width: 100%;
    height: 150px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #999;
    background-color: #fff;
    box-sizing: border-box;
}
.tiktokfeed-area.disabled {
    background-color: #eee;
    color: #999;
}
/* Tooltip container */
.tiktokfeed-tooltip {
      position: relative;
      display: inline-block;
}
  
  /* Tooltip text */
  .tiktokfeed-tooltip .tiktokfeed-tooltiptext {
      visibility: hidden;
      width: 570px;
      background-color: #444444;
      font-size: 14px;
      color: #fff;
      text-align: left;
      padding: 10px 15px;
      border-radius: 6px;
      position: absolute;
      top: -12px;
      left: 190%; 
      z-index: 1;
  }
  .tiktokfeed-tooltip:hover .tiktokfeed-tooltiptext {
      visibility: visible;
  }
  .tiktokfeed-tooltip .tiktokfeed-tooltiptext::after {
      content: " ";
      position: absolute;
      top: 50%;
      right: 100%; /* To the left of the tooltip */
      margin-top: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: transparent #444444 transparent transparent;
  }
  .tiktokfeed-tooltip a {
      color: #fff;
  }
  
  /* The alert message box */
  .tiktokfeed-alert {
      padding: 15px;
      border-radius: 0px;
      margin: 10px 0 5px;
      font-size: 15px;
      line-height: 150%;
      color: #fff;
  }
  .tiktokfeed-alert a {
      color: #fff;
      font-weight: 700;
      text-decoration: none;
      border-bottom: 1px dotted;
  }
  .tiktokfeed-alert.tiktokfeed-success {
      background-color: #6BBD6E;
  }
  .tiktokfeed-alert.tiktokfeed-warning {
      background-color: #FFAA2C;
  }
  .tiktokfeed-alert.tiktokfeed-info {
      background-color: #47A8F5;
  }
  .tiktokfeed-alert.danger {
      background-color: #6BBD6E;
  }
  .tiktokfeed-note {
    background-color: #eee;
    padding: 10px 20px;
    margin: 10px 0;
}
.tiktokfeed-note p {
    font-size: 16px;
    font-weight: 500;
    line-height: 160%;
}
.tiktokfeed-note.border {
    border: 2px dashed #fff;
}
.tiktokfeed-note .note-link {
    color: red;
    font-style: italic;
    border-bottom: 1px solid;
    border-top: 1px solid;
    padding-bottom: 3px;
}
#poststuff .tiktokfeed-note h2 {
    padding: 10px 0;
    font-size: 20px;
}
ul.tiktokfeed-params li strong {
    border: 1px solid #ccc;
    padding: 3px 10px;
}
ul.tiktokfeed-params li {
    list-style-type: none!important;
    margin: 10px 0;
}
.tiktokfeed-note a {
    text-decoration: none;
}
.tiktokfeed-note.btn a {
    color: #fff;
    padding: 10px 15px;
    background-color: #6BBD6E;
    border-bottom: 3px solid #559c58;
    text-decoration: none;
    line-height: 330%;
}
.tiktokfeed-note.btn a:hover {
    background-color: #559c58;
}
.tiktokfeed-note-white {
    background-color: #fff;
    padding: 5px 20px;
    border-radius: 4px;
    font-weight: 500;
    border: 1px solid #ddd;
}
.tiktokfeed-note-white a {
    text-decoration: none;
}
  /* The close button */
  .closebtn {
      margin-left: 15px;
      color: white;
      font-weight: bold;
      float: right;
      font-size: 22px;
      line-height: 12px;
      cursor: pointer;
      transition: 0.3s;
  }
  .closebtn:hover {
      color: black;
  }
  .tiktokfeed-containter {
      font-size: 15px;
  }
  .tiktokfeed-containter p {
      font-size: 15px;
  }
.tiktokfeed-field {
    min-width: 200px;
    background-color: #fff;
    box-sizing: border-box;
}
input[type=text].tiktokfeed-field, input[type=textarea].tiktokfeed-field {
    border-radius: 0;
    padding: 10px;
    border: 1px solid #ddd;
}
select.tiktokfeed-field {
    padding: 5px 10px!important;
    border: 1px solid #ddd!important;
    border-radius: 0!important;
}
.tiktokfeed-field.readonly {
      background: #eee;
}
.tiktokfeed-metabox input[type="color"] {
    width: 180px;
    height: 35px;
    padding: 0 2px;
}

input[type="text"]:disabled{
    background-color: #eee;
}
  .tiktokfeed-faq {
      margin-top: 20px;
  }
  .tiktokfeed-faq-container {
      margin: 8px 0;
      padding: 12px 20px;
      border-radius: 0px;
      background-color: #fff;
      border-bottom: 3px solid #ddd;
      box-sizing: border-box;
  }
  .tiktokfeed-q {
      font-weight: 700;
      line-height: 140%;
      margin: 10px 0;
  }
  .tiktokfeed-a {
      line-height: 140%;
      margin: 10px 0;
  }
  
.tiktokfeed-row {
    margin: 10px 0;
}
.tiktokfeed-row:after {
    content: "";
    display: table;
    clear: both;
}
.tiktokfeed-column {
    float: left;
    padding: 10px 0;
}
.tiktokfeed-column.col-10 {
    width: 83%;
}
.tiktokfeed-column.col-9 {
    width: 75%;
}
.tiktokfeed-column.col-8 {
    width: 66.66666666666667%;
}
.tiktokfeed-column.col-6 {
    width: 50%;
}
.tiktokfeed-column.col-4 {
    width: 33.33333333333333%;
}
.tiktokfeed-column.col-3 {
    width: 25%;
}
.tiktokfeed-column.col-2 {
    width: 17%;
}
.tiktokfeed-column.col-12 {
    width: 100%;
}

.tiktokfeed-label {
    font-size: 16px;
    font-weight: 700;
    line-height: 180%;
}
.tiktokfeed-label:after {
    content: ":";
}
  
.tiktokfeed-main {
    padding: 5px 20px 15px;
    background-color: #fcfcfc;
    border-radius: 0px;
    font-size: 15px;
}
.tiktokfeed-main h2 {
    padding: 10px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.tiktokfeed-sidebar {
    width: 100%;
    padding: 0 0 0 7px;
    box-sizing: border-box;
}
.tiktokfeed-sidebar .box {
    background-color: #fcfcfc;
    padding: 5px 20px;
    margin-bottom: 7px;
    box-sizing: border-box;
    border-radius: 0px;
  }
  .tiktokfeed-sidebar .box p {
      font-size: 14px;
  }
  .tiktokfeed-btn {
      background-color: #6BBD6E;
      border: none;
      color: #fff;
      width: 100%;
      padding: 12px 20px;
      box-sizing: border-box;
      text-align: center;
      text-decoration: none;
      display: inline-block;
  }
  .tiktokfeed-btn:hover {
      background-color: #3c963f;
      color: #fff;
  }
  .tiktokfeed-a ul li {
     list-style-type: square;
  }
  .tiktokfeed-a li {
    margin-left: 18px;
    padding: 5px;
 }
  .tiktokfeed-tooltip-link {
      color: #fff;
      /* display: inline-block; */
      float: right!important;
  }
  
  /* Notice */
  .tiktokfeed-notice {
      padding: 10px;
  }
  .tiktokfeed-p, .tiktokfeed-form-notice, .tiktokfeed-field-notice, .tiktokfeed-btn-notice, .tiktokfeed-clear-notice {
      display: inline-block;
  }
  .tiktokfeed-field-notice {
      padding: 7px;
      border: 2px solid #ddd;
      border-radius: 0px;
      background-color: #fff;
      box-sizing: border-box;
  }
  .tiktokfeed-btn-notice {
      background-color: #6BBD6E;
      border: none;
      color: #fff;
      padding: 8px;
      border-radius: 0px;
  }
  
 
  .tiktokfeed-switch-radio {
      overflow: hidden;
      display: inline;
  }
  .tiktokfeed-switch-radio:after {
      content: "";
      display: table;
      clear: both;
  }
  
  .switch-title {
    margin-bottom: 6px;
  }
  
  .tiktokfeed-switch-radio input {
      position: absolute !important;
      clip: rect(0, 0, 0, 0);
      height: 1px;
      width: 1px;
      border: 0;
      overflow: hidden;
  }
  
  .tiktokfeed-switch-radio label {
    float: left;
    background-color: #ddd;
    color: rgba(0, 0, 0, 0.9);
    font-size: 14px;
    font-weight: 700;
    color: #777;
    text-align: center;
    text-shadow: none;
    padding: 10px 15px;
    border-right: 1px solid #c9c9c9;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition:    all 0.1s ease-in-out;
    -ms-transition:     all 0.1s ease-in-out;
    -o-transition:      all 0.1s ease-in-out;
    transition:         all 0.1s ease-in-out;
  }
  .tiktokfeed-switch-radio label:hover {
      cursor: pointer;
  }
  
  .tiktokfeed-switch-radio input:checked + label {
    background-color: #6BBD6E;
    color: #fff;
      
  }
  
  .tiktokfeed-switch-radio label:first-of-type {
    border-radius: 0;
    border-left: 1px solid #ddd;
  }
  .tiktokfeed-switch-radio label:last-of-type {
    border-radius: 0;
    border-right: 1px solid #ddd;
  }
  .tiktokfeed-switch-radio input:checked + label:last-of-type {
    background-color: #999;
  }
  .tiktokfeed-switch-radio label.tiktokfeed-disabled {
      background-color: #cbcbcb;
      color: #666;
  }
  
  .tiktokfeed-switch-radio .tiktokfeed-tooltip {
      margin-top: 8px;
      margin-left: 3px;
      
  }
  .tiktokfeed-switch-radio .tiktokfeed-tooltip .tiktokfeed-tooltiptext {
      width: 400px;
      font-size: 12px;
      padding: 10px 15px;
  }
  .link-box {
      /*background-color: #60dabf;*/
      background-color: #fff;
      margin: 5px;
      padding: 5px 20px 20px;
      border-radius: 4px;
  }
  .link-box h3 {
      font-size: 14px;
      text-transform: uppercase;
      border-bottom:  1px solid;
      padding-bottom:  15px;
      margin-bottom: 0;
  }
  .link-box img {
      float: left; 
      width: 75px; 
      margin-right: 8px; 
      /*border: 1px solid #ddd;*/
  }
  .link-btn {
      display: block;
      background-color: #0073aa;
      padding: 15px;
      color: #fff;
      text-align: center;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 500;
      border-radius: 4px;
  }
  .tiktokfeed-overlay {
      position: relative;
      display: block;
      margin-bottom: 4px
  }
  .tiktokfeed-overlay-bg {
      position: absolute;
      /*background-color: rgba(20, 111, 91, 0.8);*/
      background-color: rgba(70, 70, 70, 0.8);
      width: 99%;
      height: 100%;
      border-radius: 4px;
      margin-left: 5px;
  }
  .tiktokfeed-overlay-bg h2 {
      font-size: 30px;
      color: #f1f1f1;
      text-transform: uppercase;
      text-align: center;
      margin-top: 210px;
  }
  .tiktokfeed-overlay-bg h2 span {
      padding-right: 10px;
      font-size: 36px!important;
  }
.ctvf-shortcode-view {
    background-color: #eee;
    padding: 15px;
    margin: 15px 0;
    border: 2px solid #ccc;
    font-size: 20px;
    color: #222;
}