/* (X) NOT IMPORTANT - COSMETICS */
* {
  font-family: nauman-medium, sans-serif;
  box-sizing: border-box;
}
/* THESE FONT DEFINITIONS GO OUT THREE FOLDERS DEEP*/

@font-face {
    font-family: 'nauman-extrabold';
    src: url('../fonts-nauman/nauman-extrabold-webfont.woff2') format('woff2'),
    url('../fonts-nauman/nauman-extrabold-webfont.woff') format('woff'),
    url('../fonts-nauman/nauman-extrabold-webfont.ttf') format('truetype'),
    url('../fonts-nauman/nauman-extrabold-webfont.svg#naumanextrabold') format('svg');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'nauman-italic';
    src: url('../fonts-nauman/nauman-italic-webfont.woff2') format('woff2'),
    url('../fonts-nauman/nauman-italic-webfont.woff') format('woff'),
    url('../fonts-nauman/nauman-italic-webfont.ttf') format('truetype'),
    url('../fonts-nauman/nauman-italic-webfont.svg#naumanitalic') format('svg');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'nauman-medium';
    src: url('../fonts-nauman/nauman-medium-webfont.woff2') format('woff2'),
    url('../fonts-nauman/nauman-medium-webfont.woff') format('woff'),
    url('../fonts-nauman/nauman-medium-webfont.ttf') format('truetype'),
    url('../fonts-nauman/nauman-medium-webfont.svg#naumanmedium') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'nauman-regular';
    src: url('../fonts-nauman/nauman-regular-webfont.woff2') format('woff2'),
    url('../fonts-nauman/nauman-regular-webfont.woff') format('woff'),
    url('../fonts-nauman/nauman-regular-webfont.ttf') format('truetype'),
    url('../fonts-nauman/nauman-regular-webfont.svg#naumanregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'nauman-bold';
    src: url('../fonts-nauman/nauman-bold-webfont.woff2') format('woff2'),
    url('../fonts-nauman/nauman-bold-webfont.woff') format('woff'),
    url('../fonts-nauman/nauman-bold-webfont.ttf') format('truetype'),
    url('../fonts-nauman/nauman-bold-webfont.svg#naumanbold') format('svg');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'GlassJawBB';
    src: url('../fonts-glassjaw/GlassJawBB.woff') format('woff'),
    url('../fonts-glassjaw/GlassJawBB.ttf') format('truetype'),
    url('../fonts-glassjaw/GlassJawBB.svg') format('svg');
    font-weight: bold;
    font-style: normal;

}
body {
    background: #000;
    padding: 0px; /*was 10*/
    margin:0px;
}
h1{
    font-family:GlassJawBB;
    font-size:24px;
    color:#fff;
}
form {
    padding: 0px; /*10px 20px;*/
    margin-bottom: 20px;
    border: 2px solid #fff;
    border-radius:15px;
    background: rgba(255,255,255, 0.2);
    min-height:124px;     
}
a {
    color:#fff;
}
.reference{
    font-family: nauman-regular;
    font-size: 12px;
}
.reference::before {
    content: " (";
}
.reference::after {
    content: ")";
}
.formheader{
    background:#fff;
    border-top-left-radius:9px;
    border-top-right-radius:9px;
    width:100%;
    height:23px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-family: GlassJawBB;
    color:#000;
    font-size:18px;
    line-height:1;
    margin:0px;
    padding:5px 14px 0px 5px;
    border: 2px solid #fff;
    box-sizing:border-box;
}
.logo-container{
    position:fixed;
    top:0px;
    left:0px;
    width:50vw;
    height:95%;
    background-image:url("../../media/quad-squad.png");
    background-size:65%;
    background-position: center 20%;
    background-repeat:no-repeat;
}
.game-intro{
    font-family:nauman-bold;
    font-size:18px;
    color:#fff;
    position:fixed;
    bottom:0px;
    left:0px;
    width:50vw;
    display: flex; 
    align-items:flex-end; 
    justify-content: center;
    text-align:center;
    padding:0% 10% 70px 10%;
}

.previewvid{ 
    width:100%; 
    height:auto;
    aspect-ratio: 15.85 / 9;
    flex: 0 0 auto;
    border: solid white 2px;
    border-left: 0px;
    border-right:0px;
    z-index:8;
}

/* CONTACT FORM RULES ============================*/
/* --- Normalize input + textarea sizing --- */
.tq-modal-input {
  width: 100%;
  box-sizing: border-box;
  height: 44px;          /* consistent height */
  padding: 10px 12px;
}

/* --- Fix textarea (message field) --- */
textarea.tq-modal-input {
  height: auto;          /* override fixed height */
  min-height: 120px;     /* ~4–5 rows */
  resize: vertical;      /* optional: allow user resize */
}

/* --- Fix label spacing consistency --- */
.tq-modal-label {
  display: block;
  margin-top: 14px;
  margin-bottom: 6px;
}
/* CONTACT PAGE FORM OVERRIDES ============================*/
.tq-contact-form input.tq-modal-input,
.tq-contact-form textarea.tq-modal-input {
  display: block !important;
  float: none !important;
  width: 100% !important;
  max-width: 100%;
  margin: 0 !important;
  box-sizing: border-box;
}

.tq-contact-form input.tq-modal-input {
  height: 46px;
  padding: 0 12px;
}

.tq-contact-form textarea.tq-modal-input {
  height: auto;
  min-height: 150px;
  padding: 12px;
  resize: vertical;
}

.tq-contact-form .tq-modal-label {
  display: block;
  margin: 18px 0 6px 0;
}

.tq-contact-form .tq-modal-label:first-of-type {
  margin-top: 0;
}

/* Remove any weird extra spacing from first label */
.tq-modal-form .tq-modal-label:first-of-type {
  margin-top: 10px;
}

/* SEARCH FORM INPUT =============================*/

.form-container{
    width:45vw; /*35*/
    height:auto;
    position:relative;
    right:50px; /*was 70*/
    top:24px;/*was 50*/
    float:right;
}
input {
    display: block;
    width: 100%;
    padding: 10px;
    float:left;
}
input[type=text] {
    display:flex;
    box-sizing:border-box;
    border: 1px solid #fff;
    width:56%;
    float:left;
    font-size:18px;
    margin-top:25px;
    margin-left:0px;
    height:48px;
}
input[type=submit] {
    position:relative;
    color: #fff;
    background: DodgerBlue;
    cursor: pointer;
    font-family: GlassJawBB;
    font-size:24px;
    width:170px;
    height:97px;
    float:right;
    border: 0px solid #fff;
    border-left: 2px solid #fff;
    border-radius:0px 0px 13px 0px;
    margin:0px;
    margin-right:0px;
    margin-left:-200px;
    margin-top: 0px;/*was 20*/

}

input[type=select] {
    font-family:nauman-medium;  
    font-size:14px;
    float:left;
    background: #2f3ac1;
    cursor: pointer;
    position:fixed;
    left:0px;
}

#results div {
    padding: 0px;/*10px;*/
    margin-bottom: 10px;

}
#results div:nth-child(even) {
    background: transparent;
}
.results-container{
    width:75%;
    float:left;
    margin:0px;

}

 .tq-results-heading {   
   font-family:nauman-bold;
   margin: 32px 0 22px 26px;
   padding: 14px 16px;
   box-shadow: -26px 0 0 0 #ffcb05;
   border-top: 4px solid #a0cae5;
   background: #0f5688;
   color: #fff;
   
 }
 
.assettitle{
    font-family:nauman-bold;
    font-size:18px;
    /*font-weight:bolder;*/
    color: #fff;
    margin:0px 0px 0px 20px;
}
.description{
    font-size:13px;
    color:#fff;
    margin:0px 0px 0px 20px;
}

.assetdetails{
    padding:0px;
    font-size:12px;
}
.assetdescription{
    margin:0px;
    padding:15px 15px 15px 30px;
    column-count: 2;
    column-gap: 35px;
    font-size:12px;
    list-style-position:outside;
}
.type-access-wrap {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.asset-type-label {
  font-family:GlassJawBB;
  display: inline-flex;
  align-items: center;
  padding-top: 10px;
}

.tq-access-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 18px;
  padding: 0 4px 0 4px;
  border-radius: 999px;
  margin: 7px 0px 0px 0px;
  box-sizing: border-box;
  white-space: nowrap;
  vertical-align: middle;
}

.tq-access-pill-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('../key.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex: 0 0 auto;
}

.tq-access-pill-text {
  font-family: nauman-bold;
  font-size: 0.62rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  line-height: 1;
  display: inline-block;
  position: relative;
  top: -1px;
}

/* Access colors */
.tq-badge-free {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
}

.tq-badge-core {
  background: rgba(52, 128, 72, 0.88);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}

.tq-badge-complete {
  background: rgba(125, 42, 42, 0.9);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}
ul {
        margin: 0;
        padding: 0;
    }
li{
    list-style-position:outside;
}

.url{
    font-size:14px;
    color:#fff;
    margin:0px 0px 0px 20px;
}

.version{
    background-color:#fff;
    color:#000;
    font-family:nauman-bold;
    font-size: 14px;
    border-radius:20px;
}

.duration{
    height:100%;
    width:162px;
    flex:0 0 162px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    font-family: nauman-bold;
    font-size:12px;
    line-height:1;
    background-color:transparent;
    margin:10px 8px 0 0;
    padding:0;
    float:none;
    margin-left:auto;
    box-sizing:border-box;
    white-space:nowrap;
}

.or{
    width:100%;
    font-family: nauman-extrabold;
    font-size:24px;
    text-align:center;
    color:#fff;
    margin:-25px 0px 5px 0px;

}


input.play {
    font-family: GlassJawBB;
    font-size:24px;
    background-color:red;
    padding:8px;
    margin-top:-15px;
    margin-left:-100px;
}


input.preview {
    font-family: GlassJawBB;
    font-size:24px;
    background-color:red;
    background-image:url("../stopwatch.png");
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center;
    margin-top:-10px;
    margin-left:-100px;
    height:97px;
}
input.search{
    background-color:dodgerblue;
    background-image:url("../magnifier.png");
    background-repeat:no-repeat;
    background-position:center;
    background-size:contain;
    
}

.assetDetails{
    box-sizing: border-box; 
    position:fixed;
    width:46%; 
    height:90%; 
    background-color:#000; 
    top:42px; 
    left:0; 
    color:#fff; 
    margin: 50px 25px 50px 50px; 
    border: solid white 2px; 
    border-radius: 15px;
}
#versionSelect{
  margin-top:0px;
}


/*this is the styling for the dropdown select menu in the form*/
select{
    background-color:dodgerblue;
    color:#FFF;
    font-family:nauman-medium;
    font-size:18px;
    border:0px;
    -webkit-border-radius:0px;
    border-radius:0px;
    float:left;
    margin-left:20px;
    margin-top:25px;
    width:15%;
    height:48px; /*was 47 */
    padding-left:10px;
    padding-bottom:2px;
    -webkit-appearance: none; /* For WebKit browsers */
    -moz-appearance: none; /* For Mozilla browsers */
    appearance: none; /* Standard property */
    background-image:url("select-arrow.png");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    
}

/* ACCOUNT STRIP STYLING ==============================================*/

.tq-account-strip {
  width: 100%;
  background: rgba(255, 255, 255, 0.18);
  border-bottom: 2px solid #fff;
  position: relative;
  z-index: 20;
}

.tq-account-strip-inner {
  width: 100%;
  padding: 10px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.tq-account-left {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.tq-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.tq-brand-logo {
  height: 55px;
  width: auto;
  display: block;
  margin:-10px 0px -12px 0px;
}
.tq-brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.tq-brand-link .tq-brand-logo {
  display: block;
}

.tq-divider {
  width: 6px;
  height: 50px;
  margin:-2px 0px -2px 0px;
  background-image: url(../divider.png);
  background-size: contain;
  background-repeat:no-repeat;
}

.tq-user-name-block {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
}

.tq-user-name {
  font-family: nauman-bold;
  font-size: 2rem;
  line-height: 1.08;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 420px;
  display: inline-block;
  padding-bottom: 3px;
}

.tq-user-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  align-items: flex-start;
}

.tq-user-meta-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #fff;
  line-height: 1.05;
  white-space: nowrap;
}

.tq-meta-label {
  font-family: nauman-regular;
  font-size: 1rem;
  color: rgba(255,255,255,0.95);
  text-transform: lowercase;
}

.tq-meta-value {
  font-family: nauman-bold;
  font-size: 1rem;
  color: #fff;
}

.tq-account-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  flex: 0 0 auto;
}

.tq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 28px;
  border-radius: 6px;
  border: 2px solid #fff;
  font-family: nauman-medium;
  font-size: 1rem;
  font-weight:bolder;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.18s ease;
}

.tq-btn-primary {
  background: transparent;
  color: #fff;
}

.tq-btn-primary:hover {
  background: dodgerblue;
}

.tq-btn-secondary {
  background: #f3f3f3;
  color: #222;
  border-color: #fff;
}

.tq-btn-secondary:hover {
  background: rgba(255,255,255,0.5);
  background:#ffd84d;
  border-color: #fff;
}
.tq-btn-third {
  background: #ffd84d;
  color: #222;
  border-color: #fff;
}
.tq-btn-third:hover {
  background: dodgerblue;
  color: #fff;
  border-color: #fff;
}

/* Logged-out promo area, if used */
.tq-account-strip-promo {
  width: 100%;
  padding: 0 28px 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.tq-account-strip-promo-text {
  font-size: 0.95rem;
  color: #fff;
}

.tq-account-strip-promo-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tq-alert {
  width: 100%;
  padding: 12px 28px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-family: nauman-medium;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.tq-account-message {
  display: flex;
  align-items: center;
  font-family: nauman-medium;
  font-size: 1.05rem;
  color: #fff;
  white-space: nowrap;
  animation-name:account-stat;
  animation-duration:4s;
}
@keyframes account-stat {
    0% {color:#ffd84d}
    20% {color:#fff}
    40% {color:#ffd84d}
    60% {color: #fff}
    80% {color:#ffd84d}
    100% {color:#fff}
}

/* account strip hamburger menu ==============*/
.tq-menu-wrap {
  position: relative;
  display: inline-block;
}

.tq-menu-button {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 2px solid #fff;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.2;
  cursor: pointer;
}

.tq-menu-button:hover {
  background: #0f5688;
}

.tq-menu-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 50px;
  min-width: 210px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 12px;
  background: rgba(0,0,0,0.92);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  z-index: 9999;
}

.tq-menu-dropdown.tq-menu-open {
  display: block;
}

.tq-menu-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}

.tq-menu-dropdown a:hover {
  background: rgba(255,255,255,0.14);
}


/* END ACCOUNT STRIP ==================================================*/

/* LOGIN MODAL ========================================================*/
.tq-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.tq-modal-overlay.tq-modal-open {
  display: flex;
}

.tq-modal {
  width: 100%;
  max-width: 520px;
  background: rgba(0,0,0,0.3);
  border-radius: 14px;
  border:solid 2px #fff;
  padding: 30px 28px 26px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  position: relative;
}

.tq-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #fff;
  padding: 6px 10px;
}

.tq-modal-title {
  font-family: nauman-bold;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 6px;
}

.tq-modal-subtitle {
  font-family: nauman-regular;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 20px;
}

.tq-modal-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border:none;
  background-color:transparent;
}

.tq-modal-label {
  font-family: nauman-bold;
  font-size: 0.95rem;
  color: #fff;
}
.tq-modal-logo {
  background-image:url(../truthquest-logo-white.svg);
  background-size:contain;
  background-repeat:no-repeat;
  height:80px;
  width:220px;
}

.tq-modal-input {
  display: block;
  float: none;
  width: 100%;
  height: 46px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid #9eb0c2;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}
textarea.tq-modal-input {
  height: auto;
  min-height: 150px;
  padding: 12px;
  resize: vertical;
}

.tq-modal-form .tq-modal-label {
  display: block;
  margin: 0 0 6px 0;
}

.tq-modal-form .tq-modal-input + .tq-modal-label {
  margin-top: 18px;
}

.tq-modal-input:focus {
  outline: none;
  border-color: #0f5688;
  box-shadow: 0 0 0 3px rgba(31,102,173,0.15);
}

.tq-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.tq-modal-links {
  margin-top: 10px;
  font-size: 0.92rem;
}

.tq-modal-links a {
  color: #ffd84d;
  text-decoration: none;
}
.tq-legacy-login{
  font-size:0.8em;
  color:#ffd84d;
}
.tq-modal-error {
  background: rgba(180, 20, 20, 0.22);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  padding: 10px 12px;
  border-radius: 6px;
  font-family: nauman-medium;
  font-size: 0.95rem;
  line-height: 1.3;
  margin-bottom: 6px;
}
/* END LOGIN MODAL==================================*/

/* REGISTER PAGE ======================================================*/

.tq-register-body {
  margin: 0;
  padding: 0;
  background: #000;
}

.tq-register-page {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 28px 60px;
  color: #fff;
}

.tq-register-header {
  margin-bottom: 28px;
}

.tq-register-logo {
  background-image: url(../truthquest-logo-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  width: 350px;
  height: 110px;
  margin-bottom: 0px;
}

.tq-register-header h1 {
  font-family: nauman-bold;
  font-size: 2.6rem;
  line-height: 1.05;
  margin: 0 0 10px;
  color: #fff;
}

.tq-register-header p {
  font-family: nauman-regular;
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0;
  color: rgba(255,255,255,0.92);
  max-width: 900px;
}

.tq-register-error {
  margin-bottom: 24px;
  background: rgba(180, 20, 20, 0.35);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: nauman-medium;
  font-size: 0.98rem;
  color: #fff;
}

.tq-register-form {
  border: 2px solid #fff;
  border-radius: 14px;
  background: rgba(0,0,0,0.7);
  padding: 28px;
  box-sizing: border-box;
}
.tq-register-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px; /* controls label-to-input spacing */
  margin-bottom: 18px; /* controls space between fields */
}

.tq-register-fields {
  margin-bottom: 28px;
}

.tq-field-row {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.tq-register-page-bg {
  position: fixed;
  inset: 0;
  background-image: url('/resources/resources/preview/general.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0.75;
  filter: blur(4px);
  transform: scale(1.10);
  z-index: 0;
  animation: tqKenBurnsSlow 22s ease-in-out alternate infinite;
  will-change: transform, background-position;
}

.tq-register-page-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.tq-plan-trial-copy {
  font-family: nauman-bold;
  font-size: 1.3rem;
  line-height: 1.3;
  color: #ffd84d;
  margin: -15px 0 14px 0;
}

.tq-register-page {
  position: relative;
  z-index: 2;
}

.tq-field {
  flex: 1 1 300px;
}

.tq-field label {
  display: block;
  font-family: nauman-bold;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 7px;
}

.tq-field input {
  width: 100%;
  height: 48px;
  box-sizing: border-box;
  padding: 0 12px;
  border: 1px solid #cfd6df;
  border-radius: 6px;
  font-size: 1rem;
  background: #fff;
  color: #111;
}

.tq-field input:focus {
  outline: none;
  border-color: #0f5688; 
  box-shadow: 0 0 0 3px rgba(31,102,173,0.18);
}

.tq-field input[type="text"],
.tq-field input[type="email"],
.tq-field input[type="password"] {
  margin-top: 0;
  margin-left: 0;
  float: none;
  display: block;
  width: 100%;
  font-size: 1rem;
}

.tq-plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.tq-plan-card {
  border: 2px solid rgba(255,255,255,0.70);
  border-radius: 12px;
  padding: 24px 22px;
  background: rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-sizing: border-box;
}

.tq-plan-card-featured {
  background: rgba(255,255,255,0.16);
}

.tq-plan-card-selected {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.18);
}

.tq-plan-title {
  font-family: nauman-bold;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 14px;
}

.tq-plan-price-toggle {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.tq-pill-toggle input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tq-pill-toggle label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 10px 16px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: nauman-bold;
  font-size: 1rem;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: all 0.18s ease;
  box-sizing: border-box;
  white-space: nowrap;
}

.tq-pill-toggle label span {
  margin-left: 6px;
  font-family: nauman-medium;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

.tq-pill-toggle label:hover {
  background: #ffd84d;
  color:#000;
}

.tq-pill-toggle input[type="radio"]:checked + label {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.tq-pill-toggle input[type="radio"]:checked + label span {
  color: #333;
}

.tq-pill-monthly {
  min-width: 150px;
}

.tq-pill-annual {
  min-width: 235px;
}
.tq-plan-body {
  flex: 1 1 auto;
}

.tq-plan-subhead {
  font-family: nauman-bold;
  font-size: 1rem;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 10px;
}

.tq-plan-plus {
  margin-top: 14px;
}

.tq-plan-body ul {
  margin: 0;
  padding-left: 20px;
}

.tq-plan-body li {
  font-family: nauman-regular;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.95);
  margin-bottom: 4px;
}

.tq-plan-button {
  margin-top: 22px;
  min-height: 54px;
  padding: 0 18px;
  border: 2px solid #fff;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-family: nauman-bold;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.18s ease;
}

.tq-plan-button:hover {
  background: #ffd84d;
  color:#000;
  
}

.tq-register-login-note {
  margin-top: 24px;
  text-align: center;
  font-family: nauman-regular;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.92);
}

.tq-register-login-note a {
  color: #fff;
  text-decoration: underline;
}


/* END REGISTER PAGE ==================================================*/

/* TRUTHOPOLIS PHP PAGE ================================================*/

.tq-truthopolis-levels {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tq-truthopolis-levels .tq-btn {
  width: 100%;
  justify-content: center;
}

/* END TRUTHOPOLIS PHP PAGE ============================================*/

/* ASSET GATE PAGE ====================================================*/

.tq-asset-gate-layout {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
}

.tq-asset-gate-preview {
  flex: 1 1 0;
  min-width: 0;
  order: 1;
  height: calc(100vh - 120px);
  min-height: 760px;
  max-height: 980px;
}

.tq-asset-gate-panel {
  flex: 1 1 0;
  min-width: 0;
  order: 2;

  border: 2px solid #fff;
  border-radius: 14px;
  background:rgba(0,0,0,0.7);
  padding: 30px 32px;
  box-sizing: border-box;
  color: #fff;
}

/* ONLY change the preview panel when it is inside asset.php */
.tq-asset-gate-preview .assetDetails{
  position: relative;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.tq-custom-locked-preview {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  border: 2px solid #fff;
  border-radius: 15px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 18px 18px 20px 18px;
}
.tq-custom-locked-preview > * {
  max-width: 100%;
  box-sizing: border-box;
}

.tq-custom-locked-preview table {
  width: 100% !important;
  max-width: 100%;
  table-layout: fixed;
}

.tq-custom-locked-preview img {
  max-width: 100%;
  height: auto;
  display: block;
}
.tq-asset-page {
  max-width: 1800px;
  width: calc(100vw - 70px);
  padding: 30px 20px 40px;
}

.tq-asset-gate-preview #assetImage{
  flex: 0 0 30%;
}

.tq-asset-gate-preview .previewvid{
  flex: 0 0 54%;
  width: 100%;
  height: 54%;
  aspect-ratio: auto;
  object-fit: cover;
}

.tq-asset-gate-preview .assetdescription{
  flex: 1 1 auto;
  overflow-y: auto;
  margin:0;
  padding:15px 15px 15px 30px;
  column-count: 2;
  column-gap: 35px;
  font-size:12px;
  list-style-position:outside;
}

.tq-asset-gate-header {
  margin-bottom: 22px;
}

.tq-asset-gate-header .tq-register-logo {
  margin-bottom: 14px;
}

.tq-asset-gate-header h1 {
  font-family: nauman-bold;
  font-size: 2.6rem;
  line-height: 1.05;
  margin: 0 0 10px 0;
  color: #fff;
}

.tq-asset-gate-reference {
  font-family: nauman-bold;
  font-size: 1.1rem;
  line-height: 1.35;
  margin: 0;
  color: rgba(255,255,255,0.92);
}

.tq-asset-gate-lock-message {
  margin-bottom: 20px;
}

.tq-asset-gate-description {
  margin-bottom: 20px;
  color: #fff;
  font-family: nauman-regular;
  font-size: 1.08rem;
  line-height: 1.5;
}

.tq-asset-gate-upgrade-copy {
  margin-bottom: 24px;
  color: #ffd84d;
  font-family: nauman-bold;
  font-size: 1.2rem;
  line-height: 1.5;
}

.tq-asset-gate-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.tq-asset-page-bg {
  position: fixed;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0.75;
  filter: blur(4px);
  transform: scale(1.10);
  z-index: 0;
  animation: tqKenBurnsSlow 22s ease-in-out alternate infinite;
  will-change: transform, background-position;
}

.tq-asset-page-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}
@keyframes tqKenBurnsSlow {
  0% {
    transform: scale(1.10) translate3d(75px, 50px, 0);
    background-position: center center;
  }
  100% {
    transform: scale(1.30) translate3d(-150px, -100px, 0);
    background-position: center center;
  }
}

@keyframes tqKenBurnsSlowMobile {
  0% {
    transform: scale(1.16) translate3d(20px, 20px, 0);
  }
  100% {
    transform: scale(1.24) translate3d(-30px, -20px, 0);
  }
}

.tq-asset-page {
  position: relative;
  z-index: 2;
}

/* END ASSET GATE PAGE ================================================*/

/* ASSET GATE VBS PREVIEW-SPECIFIC STYLES =============================*/

.contentbox{
  border: solid 1px #fff;
  border-radius: 8px;
  box-sizing:border-box;
  padding:0px;
  margin-bottom:15px;
}

.tq-custom-locked-preview .vbs-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.tq-custom-locked-preview .vbs-topbar-logo img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 110px;
}

.tq-custom-locked-preview .vbs-topbar-action {
  flex: 0 0 auto;
}

.tq-custom-locked-preview .vbs-sample-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 2px solid #fff;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-family: nauman-bold;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.18s ease;
}

.tq-custom-locked-preview .vbs-sample-button:hover {
  background: #ffd84d;
  color: #000;
}

.tq-custom-locked-preview h1{
  border-radius: 8px;
  background-color:#fff;
  color: #000;
  padding:5px 5px 5px 10px;
}

.tq-custom-locked-preview .contentbox h2 {
  font-family:nauman-bold;
  background-color:rgba(255, 255, 255, 0.8);
  margin:0px;
  padding:8px;
  border-radius:7px 7px 0 0;
  color:#000;
}

.tq-custom-locked-preview .contentbox h3, .tq-custom-locked-preview .contentbox h3.notransform {
  margin:10px 10px -10px 15px;
  padding:5px 0 0 0;
}

.tq-custom-locked-preview .contentbox h5{
  font-size: 1.2em;
  background-color:rgba(255, 255, 255, 0.5);
  border:1px solid #fff;
  border-radius:50px;
  padding:3px 10px 3px 10px;
  margin:8px 0px 8px -10px;
}

.tq-custom-locked-preview .contentbox table.table-standard {
  box-sizing:border-box;
  width:100%;
  margin: 0px;
  padding:0px;
}

table.table-standard{
  margin-top:65px;
}

.tq-custom-locked-preview .spacer {
  height: 15px;
}

table.table-standard h3.noindent{
   margin:15px 8px 5px 0px;
}

.tq-custom-locked-preview .contentbox tr {
  margin:0px;
  padding:10px;
}

.tq-custom-locked-preview .contentbox tr.colorrow {
  background-color:rgba(255,255,255,0.2);
  margin:0px;
  padding:10px;
}

.tq-custom-locked-preview .contentbox td.data{
  padding:8px 8px 8px 20px;
}

.tq-custom-locked-preview .contentbox td.leftcol{
  padding:8px 8px 8px 10px;
}

.tq-custom-locked-preview .contentbox tr.toprow td {
  background-color: rgba(255,255,255,0.7);
  color: #000;
  padding: 8px 8px 8px 10px;
  
}.contentbox p{
  margin:15px 8px 15px 10px;
}

hr.line{
  display:none;
}

h6{
  font-size:1em;
}


/* END VBS PREVIEW STYLES ==============================================*/

/* FORGOT PASSWORD ==========================================*/
.tq-register-success {
  background: rgba(0, 200, 0, 0.15);
  border: 1px solid rgba(0, 200, 0, 0.5);
  color: #d4ffd4;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
}

/* INFO / ABOUT US / WHAT WE BELIEVE / CONTACT US ===================*/
.tq-info-page-panel {

  width: min(960px, calc(100vw - 32px));
  margin: 48px auto;
  padding: 28px;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 18px;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  color: #fff;

}

.tq-info-section {

  margin-top: 28px;

}

.tq-info-section h2 {
  font-family:GlassJawBB;
  margin: 40px 0 18px 0;
  padding: 8px 14px;
  border-radius: 10px;
  background: #fff;
  color: #000;

}

.tq-info-section h3 {

  margin: 20px 0 6px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 1.15rem;

}

.tq-info-section p {

  margin: 0 0 14px;
  line-height: 1.55;

}

/* HOMEPAGE INDEX.PHP STYLES ===================================*/
.tq-home-page {
  width: min(1180px, calc(100vw - 32px));
  margin: 42px auto 64px;
  color: #fff;
}

.tq-home-page h2{
  font-family:nauman-bold;
}

.tq-home-hero,
.tq-home-section {
  border: 2px solid #fff;
  border-radius: 18px;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.tq-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 30px;
  align-items: center;
  padding: 34px;
}

.tq-home-hero h1 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.tq-home-subtext,
.tq-home-section-copy {
  font-size: 1.12rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
}

.tq-home-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.tq-home-preview-card {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
}

.tq-home-preview-img {
  display: block;
  width: 100%;
  height: auto;
}

.tq-home-preview {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.tq-home-preview-card {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

#homePreviewImg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  box-sizing: border-box;
}

.tq-home-preview-copy {
  padding: 18px;
}

.tq-home-preview-copy h2 {
  margin: 0 0 8px;
}

.tq-home-preview-copy p {
  margin: 0;
  line-height: 1.45;
}

.tq-home-section {
  margin-top: 28px;
  padding: 30px;
  text-align: center;
}

.tq-home-section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.tq-home-preview-card h2{
  margin: 15px 15px 5px 15px;
}

.tq-home-preview-card p {
  margin: 0px 15px 15px 15px;
}
/* HOME PAGE FEATURE + SAMPLE CARDS =======================*/

.tq-home-features,
.tq-home-sample-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
  text-align: center;
}

.tq-home-feature-card,
.tq-home-sample-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 14px;
  background: rgba(255,255,255,0.09);
  color: #fff;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease;
}

.tq-home-feature-card:hover,
.tq-home-sample-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.16);
}

.tq-home-feature-card img,
.tq-home-sample-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
}

.tq-home-feature-copy,
.tq-home-sample-copy {
  padding: 0;
}

.tq-home-feature-copy h3,
.tq-home-sample-copy h3,
.tq-home-feature-copy strong,
.tq-home-sample-card h3 {
  font-family: nauman-bold;
  display: block;
  margin: 10px 12px 0;
  font-size: 1.08rem;
  color: #fff;
}

.tq-home-feature-copy p,
.tq-home-sample-copy p,
.tq-home-sample-card p {
  margin: 0 12px 10px;
  color: rgba(255,255,255,0.84);
  line-height: 1.35;
}
.tq-home-section ul {
  text-align:left;
}

/* WHY TRUTHQUEST =====================================*/

.tq-home-why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  text-align: left;
}

.tq-home-why-video {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
}

.tq-home-why-video video {
  display: block;
  width: 100%;
  height: auto;
}

.tq-home-why-copy {
  display: flex;
  align-items: center;
}

.tq-home-why {
  margin: 0;
  padding-left: 22px;
  line-height: 1.7;
}

.tq-home-why li {
  margin-bottom: 8px;
}


/* HOME PAGE PRICING ========================== */
.tq-home-pricing {
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}

.tq-home-price-featured {
  background: rgba(255,255,255,0.18);
  margin: 20px -30px -30px -30px;
  padding:15px 15px 25px 15px;
  border-top:solid 2px #fff;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.tq-home-price {
  font-size: 2rem;
  font-weight: bold;
  margin: 8px 0 !important;
}

.tq-home-price-card .tq-btn
{
  margin-top:18px;
}

.tq-home-centered-cta {
  justify-content: center;
}

.tq-home-final {
  margin-bottom: 40px;
}

/* VBS SAMPLER PAGE ============================================*/
.tq-vbs-sample-buttons {

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tq-vbs-sample-buttons .tq-btn {
  width: 100%;
}

/* LEGACY LOGIN NOTICE ==========================*/

.tq-legacy-notice {
  margin: 14px 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  font-size: 0.92rem;
  line-height: 1.45;
  text-align: left;
}

.tq-legacy-notice strong {
  color: #fff;
}


/* ===========================================================
   MEDIA QUERY FOR MOBILE PHONES
   ===========================================================*/

@media (max-width: 900px) {

  /* GLOBAL PHONE SAFETY */
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    padding: 0;
    margin: 0;
  }

  /* =========================================================
     ACCOUNT STRIP
     ========================================================= */
  .tq-account-strip-inner {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  
  .tq-account-left {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    min-width: 0;
  }
  
  .tq-brand {
    flex: 0 0 auto;
  }
  
  .tq-brand-logo {
    height: 52px;
    width: auto;
    display: block;
    margin: -4px 0 -6px 0;
  }
  
  .tq-divider {
    display: none;
  }
  
  .tq-user-name-block {
    flex: 1 1 auto;
    min-width: 0;
  }
  
  .tq-user-name {
    font-size: 1.5rem;
    line-height: 1.06;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 0;
  }
  
  .tq-user-summary {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    min-width: 0;
    align-items: flex-start;
  }
  
  .tq-user-meta-line {
    white-space: nowrap;
    flex-wrap: nowrap;
    gap: 4px;
    line-height: 1.05;
  }
  
  .tq-meta-label,
  .tq-meta-value {
    font-size: 1.05rem;
    display:none;
  }
  
  .tq-account-message {
    width: 100%;
    font-size: 0.82rem;
    line-height: 1.2;
    white-space: normal;
    margin: 0 0 4px 0;
    display:none;
  }
  
  .tq-account-actions {
    width: 100%;
    margin-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  /* hamburger menu --------------------*/
  .tq-account-actions {
    position: static;
    padding-top: 0;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 44px;
    align-items: stretch;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }
  .tq-account-actions .tq-btn {
    min-width: 0;
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
  }
  
  .tq-menu-wrap {
    position: relative;
    top: auto;
    right: auto;
    width: 44px;
  }
  
  .tq-menu-button {
    width: 44px;
    height: 40px;
  }
  
  .tq-menu-dropdown {
    top: 46px;
    right: 0;
  }
  
  /* =========================================================
     REGISTER PAGE
     ========================================================= */
  .tq-register-page {
    width: 100vw;
    max-width: 100%;
    padding: 16px 12px 24px;
  }
  
  .tq-register-form {
    padding: 20px 14px 22px;
  }
  
  .tq-register-logo {
    width: 230px;
    height: 72px;
  }
  
  .tq-register-header h1 {
    font-size: 2rem;
    line-height: 1.08;
  }
  
  .tq-register-header p {
    font-size: 1rem;
    line-height: 1.35;
  }
  
  .tq-field-row {
    gap: 12px;
    margin-bottom: 12px;
  }
  
  .tq-field {
    flex: 1 1 100%;
  }
  
  .tq-plan-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .tq-plan-card {
    padding: 16px 12px 18px;
  }
  
  .tq-plan-title {
    font-size: 1.75rem;
    margin-bottom: 10px;
  }
  
  .tq-plan-trial-copy {
    font-size: 1.05rem;
    margin: -8px 0 10px 0;
  }
  
  .tq-plan-price-toggle {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
  }
  
  .tq-pill-monthly,
  .tq-pill-annual {
    min-width: 0;
    width: 100%;
  }
  
  .tq-pill-toggle label {
    width: 100%;
    min-height: 46px;
    font-size: 0.95rem;
    padding: 8px 12px;
    justify-content: center;
  }
  
  .tq-plan-body li {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  /* =========================================================
     INDEX / SEARCH PAGE
     ========================================================= */
  .search-page-preview {
    display: none !important;
  }
  
  .form-container {
    width: 100%;
    max-width: 100%;
    height: auto;
    position: relative;
    right: 0;
    top: 0;
    float: none;
    padding: 12px 10px 18px;
  }
  
  .form-container form {
    width: 100%;
    margin: 0;
    padding: 0;
    min-height: 0 !important;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border-radius: 15px;
    overflow: hidden;
  }
  
  /* HEADER ALWAYS FIRST */
  .form-container .formheader {
    order: 0;
    flex: 0 0 100%;
    width: 100%;
    height: 26px;
    min-height: 26px;
    margin: 0;
    padding: 4px 10px 2px 10px;
    display: flex;
    align-items: center;
    font-size: 15px;
    line-height: 1;
    box-sizing: border-box;
  }
  
  /* BOTH SELECTS SHARE ONE FULL ROW */
  .form-container form select {
    order: 1;
    flex: 0 0 50% !important;
    width: 50% !important;
    min-width: 0;
    height: 44px;
    margin: 0 !important;
    padding: 0 36px 0 12px;
    float: none !important;
    display: block;
    box-sizing: border-box;
    font-size: 16px;
    border: 0;
    border-radius: 0;
    background-position: right 12px center;
  }
  
  /* TEXT FIELD + SEARCH BUTTON */
  .form-container form input[type="text"] {
    order: 2;
    flex: 1 1 calc(100% - 76px);
    width: calc(100% - 76px) !important;
    min-width: 0;
    height: 44px;
    margin: 0 !important;
    padding: 0 12px;
    float: none !important;
    display: block;
    box-sizing: border-box;
    font-size: 16px;
    border-top: 2px solid #fff;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0 0 0 13px;
  }
  
  .form-container form input.search {
    order: 2;
    flex: 0 0 76px;
    width: 76px !important;
    height: 44px;
    margin: 0 !important;
    padding: 0;
    float: none !important;
    display: block;
    box-sizing: border-box;
    border-top: 2px solid #fff;
    border-right: 0;
    border-bottom: 0;
    border-left: 2px solid #fff;
    border-radius: 0 0 13px 0;
    background-size: 34px;
    background-position: center center;
  }

  /* result cards */

 
  .asset-result {
    min-height: 0;
    margin: 12px 0 0 0 !important;
    overflow: hidden;
  }
  
  .asset-result + .asset-result {
    margin-top: 12px !important;
  }
  
  .asset-result .formheader {
    height: 26px !important;
    min-height: 26px !important;
    margin: 0 !important;
    padding: 4px 10px 2px 10px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px !important;
    line-height: 1 !important;
    box-sizing: border-box;
  }
  
  .asset-result .type-access-wrap {
    gap: 4px;
    min-width: 0;
    flex-wrap: nowrap;
    display: inline-flex;
    align-items: center;
    position: relative;
    top: 3px;
  }
  
  .asset-result .asset-type-label {
    font-size: 15px;
    padding-top: 0 !important;
    line-height: 1;
    display: inline-flex;
    align-items: center;
  }
  
  .asset-result .tq-access-pill {
    margin: 0 !important;
    height: 18px;
  }
  
  .asset-result .duration {
    width: 124px;
    flex: 0 0 124px;
    margin: 0;
    font-size: 11px;
    display: none;
  }
  
  .asset-result .results-container {
    width: calc(100% - 110px);
  }
  
  .asset-result .assettitle {
    font-size: 16px;
    margin: 0 0 0 12px;
    line-height: 1.15;
  }
  
  .asset-result .description {
    font-size: 12px;
    margin: 0 0 0 12px;
    line-height: 1.35;
  }
  
  .asset-result .reference {
    font-size: 11px;
  }
  
  .asset-result input.preview {
    width: 110px;
    height: 94px;
    margin: 0;
    border-left: 2px solid #fff;
    border-radius: 0 0 13px 0;
    background-size: cover;
    background-position: center center;
    font-size: 20px;
  }

  /* =========================================================
   TRUTHOPOLIS PAGE
   ========================================================= */

.tq-truthopolis-levels {
     display: flex;
     flex-direction: column;
     gap: 10px;
  }
   
   .tq-truthopolis-levels .tq-btn {
     width: 100%;
}

  /* =========================================================
     ASSET GATE PAGE
     ========================================================= */
  .tq-asset-page {
    width: 100vw;
    max-width: none;
    padding: 16px 12px 24px;
  }

  .tq-asset-page-bg {
    background-position: center center;
    transform: scale(1.16);
    animation: tqKenBurnsSlowMobile 18s ease-in-out alternate infinite;
  }

  .tq-asset-gate-layout {
    flex-direction: column;
    gap: 18px;
  }

  .tq-asset-gate-preview,
  .tq-asset-gate-panel {
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
  }

  .tq-asset-gate-panel {
    order: 1;
    padding: 20px 18px;
  }

  .tq-asset-gate-preview {
    order: 2;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .tq-asset-gate-preview .assetDetails {
    height: auto;
    min-height: 0;
  }

  .tq-asset-gate-preview #assetImage {
    flex: 0 0 auto;
    height: 150px !important;
    min-height: 150px;
    background-size: cover !important;
    background-position: center center !important;
  }

  .tq-asset-gate-preview .previewvid {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 15.85 / 9;
    object-fit: cover;
  }

  .tq-asset-gate-preview .assetdescription {
    column-count: 1;
    column-gap: 0;
    font-size: 13px;
    overflow: visible;
    padding: 14px 14px 16px 22px;
  }

  .tq-asset-gate-header {
    margin-bottom: 16px;
  }

  .tq-asset-gate-header .tq-register-logo {
    width: 230px;
    height: 72px;
    margin-bottom: 8px;
  }

  .tq-asset-gate-header h1 {
    font-size: 2rem;
    margin-bottom: 8px;
  }

  .tq-asset-gate-reference {
    font-size: 1rem;
  }

  .tq-asset-gate-lock-message {
    margin-bottom: 14px;
  }

  .tq-asset-gate-description {
    font-size: 1rem;
    line-height: 1.45;
  }

  .tq-asset-gate-upgrade-copy {
    font-size: 1.08rem;
    line-height: 1.4;
  }

  .tq-asset-gate-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .tq-asset-gate-actions .tq-btn {
    width: 100%;
    justify-content: center;
  }
  
  .tq-custom-locked-preview .vbs-topbar {
    flex-direction: column;
    align-items: stretch;
  }
  
  .tq-custom-locked-preview .vbs-topbar-action {
    width: 100%;
  }
  
  .tq-custom-locked-preview .vbs-sample-button {
    width: 100%;
  }
  
/* INFO / ABOUT US / WHAT WE BELIEVE / CONTACT US ===================*/

  .tq-info-page-panel {
  
    width: calc(100vw - 20px);
    margin: 24px auto;
    padding: 18px;
  }
  .tq-info-section h2 {
    font-size: 1.35rem;
  }
  .tq-info-section h3 {
    font-size: 1.05rem;
  }
  
/* HOME PAGE MOBILE STYLES ============================================*/
.tq-home-page {

  width: calc(100vw - 20px);
  margin: 24px auto;
}
.tq-home-hero {
  grid-template-columns: 1fr;
  padding: 22px;
}
.tq-home-section {
  padding:22px;
}

.tq-home-hero-text h1 {
  font-size: 2.6rem;
}
.tq-home-features,
.tq-home-sample-grid,
.tq-home-pricing,
.tq-home-why {
  grid-template-columns: 1fr;
}
.tq-home-cta {
  display: grid;
  grid-template-columns: 1fr;
} 
.tq-home-price-featured {
  margin: 20px -24px -24px -24px; 
}

.tq-home-why-layout {
  grid-template-columns: 1fr;
}
  
}

/* TABLETS ======================================================*/
@media (min-width: 701px) and (max-width: 1000px) {
  .tq-home-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

