@font-face {
    font-family: "SFProDisplay-Medium";
    font-style: normal;
    font-format: opentype;
    font-weight: 500;
    src: url("/fonts/sf-pro-display-medium.otf") ;
}
@font-face {
    font-family: "SFProDisplay-Light";
    font-style: normal;
    font-format: opentype;
    font-weight: 300;
    src: url("/fonts/sf-pro-display-light.otf") ;
}
@font-face {
    font-family: "SFProDisplay-Thin";
    font-style: normal;
    font-format: opentype;
    font-weight: 200;
    src: url("/fonts/sf-pro-display-thin.otf") ;
}
@font-face {
    font-family: "SFProDisplay-Regular";
    font-style: normal;
    font-format: opentype;
    font-weight: 400;
    src: url("/fonts/sf-pro-display-regular.otf") ;
}
@font-face {
    font-family: "SFProDisplay-Ultralight";
    font-style: normal;
    font-format: opentype;
    font-weight: 100;
    src: url("/fonts/sf-pro-display-ultralight.otf") ;
}
@font-face {
    font-family: "SFProDisplay-Black";
    font-style: normal;
    font-format: opentype;
    font-weight: 900;
    src: url("/fonts/sf-pro-display-black.otf") ;
}
@font-face {
    font-family: "SFProDisplay-Bold";
    font-style: normal;
    font-format: opentype;
    font-weight: 700;
    src: url("/fonts/sf-pro-display-bold.otf") ;
}
:root {
    --dl-size-size-large: 144px;
    --dl-size-size-small: 48px;
    --dl-size-size-medium: 96px;
    --dl-size-size-xlarge: 192px;
    --dl-size-size-xsmall: 16px;
    --dl-space-space-unit: 16px;
    --dl-size-size-xxlarge: 288px;
    --dl-size-size-maxwidth: 1400px;
    --dl-color-theme-accent1: #FFFFFF;
    --dl-color-theme-accent2: #F5D1B0;
    --dl-radius-radius-round: 50%;
    --dl-color-theme-primary1: #BF4408;
    --dl-color-theme-primary2: #E65103;
    --dl-space-space-halfunit: 8px;
    --dl-space-space-sixunits: 96px;
    --dl-space-space-twounits: 32px;
    --dl-radius-radius-radius2: 2px;
    --dl-radius-radius-radius4: 4px;
    --dl-radius-radius-radius8: 8px;
    --dl-space-space-fiveunits: 80px;
    --dl-space-space-fourunits: 64px;
    --dl-color-theme-secondary1: #FFFFFF;
    --dl-color-theme-secondary2: #FBF1EB;
    --dl-space-space-threeunits: 48px;
    --dl-color-theme-neutral-dark: #191818;
    --dl-radius-radius-cardradius: 8px;
    --dl-color-theme-neutral-light: #FBFAF9;
    --dl-radius-radius-imageradius: 8px;
    --dl-radius-radius-inputradius: 24px;
    --dl-radius-radius-buttonradius: 24px;
    --dl-space-space-oneandhalfunits: 24px;
}
input {
  -webkit-appearance: none; /* For Safari */
  -moz-appearance: none;    /* For Firefox */
  appearance: none;         /* Standard */
}

.button {
    fill: #fff;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    padding: 16px 40px;
    font-size: 20px;
    font-family: "SFProDisplay-Bold";
    border-color: var(--dl-color-theme-neutral-dark);
    border-width: 0px;
    border-radius: 4px;
    background-color: #FFC500;
}
.textarea {
    color: var(--dl-color-theme-neutral-dark);
    cursor: auto;
    padding: 0.5rem;
    border-color: var(--dl-color-theme-neutral-dark);
    border-width: 1px;
    border-radius: 4px;
    background-color: var(--dl-color-theme-neutral-light);
}
.list {
    width: 100%;
    margin: 1em 0px 1em 0px;
    display: block;
    padding: 0px 0px 0px 1.5rem;
    list-style-type: none;
    list-style-position: outside;
}
.list-item {
    display: list-item;
}
.teleport-show {
    display: flex !important;
    transform: none !important;
}
.thq-input {
    color: var(--dl-color-theme-neutral-dark);
    cursor: auto;
    outline: none;
    padding: 0.5rem 1rem;
    align-self: stretch;
    text-align: center;
    border-color: var(--dl-color-theme-neutral-dark);
    border-width: 1px;
    border-radius: var(--dl-radius-radius-inputradius);
    background-color: var(--dl-color-theme-neutral-light);
}
.thq-input:focus {
    outline: 1px solid var(--dl-color-theme-primary1);
}
.thq-button-filled {
    gap: var(--dl-space-space-halfunit);
    fill: var(--dl-color-theme-secondary1);
    color: var(--dl-color-theme-secondary1);
    cursor: pointer;
    display: flex;
    transition: 0.3s;
    align-items: center;
    font-weight: bold;
    padding-top: var(--dl-space-space-halfunit);
    white-space: nowrap;
    border-color: var(--dl-color-theme-primary1);
    border-width: 1px;
    padding-left: var(--dl-space-space-oneandhalfunits);
    border-radius: var(--dl-radius-radius-buttonradius);
    padding-right: var(--dl-space-space-oneandhalfunits);
    padding-bottom: var(--dl-space-space-halfunit);
    justify-content: center;
    background-color: var(--dl-color-theme-primary1);
}
.thq-button-filled:hover {
    fill: var(--dl-color-theme-secondary2);
    color: var(--dl-color-theme-secondary2);
    border-color: var(--dl-color-theme-primary2);
    background-color: var(--dl-color-theme-primary2);
}
.thq-button-outline {
    gap: var(--dl-space-space-halfunit);
    fill: var(--dl-color-theme-primary1);
    color: var(--dl-color-theme-primary1);
    border: 1px solid;
    cursor: pointer;
    display: flex;
    transition: 0.3s;
    align-items: center;
    font-weight: bold;
    padding-top: var(--dl-space-space-halfunit);
    white-space: nowrap;
    border-color: var(--dl-color-theme-primary1);
    padding-left: var(--dl-space-space-oneandhalfunits);
    border-radius: var(--dl-radius-radius-buttonradius);
    padding-right: var(--dl-space-space-oneandhalfunits);
    padding-bottom: var(--dl-space-space-halfunit);
    justify-content: center;
}
.thq-button-outline:hover {
    fill: var(--dl-color-theme-secondary2);
    color: var(--dl-color-theme-secondary2);
    border-color: var(--dl-color-theme-primary2);
    background-color: var(--dl-color-theme-primary2);
}
.thq-button-flat {
    gap: var(--dl-space-space-halfunit);
    fill: var(--dl-color-theme-primary1);
    color: var(--dl-color-theme-primary1);
    cursor: pointer;
    display: flex;
    transition: 0.3s;
    align-items: center;
    font-weight: bold;
    padding-top: var(--dl-space-space-halfunit);
    white-space: nowrap;
    border-color: transparent;
    border-width: 1px;
    padding-left: var(--dl-space-space-oneandhalfunits);
    border-radius: var(--dl-radius-radius-buttonradius);
    padding-right: var(--dl-space-space-oneandhalfunits);
    padding-bottom: var(--dl-space-space-halfunit);
    justify-content: center;
}
.thq-button-flat:hover {
    fill: var(--dl-color-theme-secondary1);
    color: var(--dl-color-theme-secondary1);
    border-color: var(--dl-color-theme-primary2);
    background-color: var(--dl-color-theme-primary2);
}
.thq-heading-1 {
    font-size: 48px;
    font-family: STIX Two Text;
    font-weight: 700;
    line-height: 1.5;
}
.thq-heading-2 {
    font-size: 35px;
    font-family: STIX Two Text;
    font-weight: 600;
    line-height: 1.5;
}
.thq-heading-3 {
    font-size: 26px;
    font-family: STIX Two Text;
    font-weight: 600;
    line-height: 1.5;
}
.thq-body-large {
    font-size: 18px;
    font-family: Noto Sans;
    line-height: 1.5;
}
.thq-body-small {
    font-size: 16px;
    font-family: Noto Sans;
    line-height: 1.5;
}
.thq-team-image-round {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}
.thq-section-padding {
    width: 100%;
    display: flex;
    padding: var(--dl-space-space-fiveunits);
    position: relative;
    align-items: center;
    flex-direction: column;
}
.thq-section-max-width {
    width: 100%;
    max-width: var(--dl-size-size-maxwidth);
}
.thq-img-ratio-1-1 {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: var(--dl-radius-radius-imageradius);
}
.thq-img-ratio-16-9 {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    border-radius: var(--dl-radius-radius-imageradius);
}
.thq-img-ratio-4-3 {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    border-radius: var(--dl-radius-radius-imageradius);
}
.thq-img-ratio-4-6 {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/6;
    border-radius: var(--dl-radius-radius-imageradius);
}
.thq-img-round {
    width: 100%;
    border-radius: var(--dl-radius-radius-round);
}
.thq-flex-column {
    gap: var(--dl-space-space-twounits);
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: center;
    flex-direction: column;
}
.thq-flex-row {
    gap: var(--dl-space-space-twounits);
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: center;
}
.thq-grid-6 {
    display: grid;
    grid-gap: var(--dl-space-space-twounits);
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.thq-grid-5 {
    display: grid;
    grid-gap: var(--dl-space-space-twounits);
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.thq-card {
    gap: var(--dl-space-space-oneandhalfunits);
    display: flex;
    padding: var(--dl-space-space-twounits);
    align-items: stretch;
    border-radius: var(--dl-radius-radius-cardradius);
    flex-direction: column;
}
.thq-box-shadow {
    box-shadow: 0px 0px 5px -2px var(--dl-color-theme-neutral-dark);
}
.thq-grid-3 {
    display: grid;
    grid-gap: var(--dl-space-space-twounits);
    grid-template-columns: 1fr 1fr 1fr;
}
.thq-grid-4 {
    display: grid;
    grid-gap: var(--dl-space-space-twounits);
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.thq-grid-2 {
    width: 100%;
    display: grid;
    grid-gap: var(--dl-space-space-twounits);
    grid-template-columns: 1fr 1fr;
}
.thq-checkbox {
    width: var(--dl-size-size-xsmall);
    height: var(--dl-size-size-xsmall);
}
.thq-select {
    cursor: pointer;
    appearance: none;
    padding-top: var(--dl-space-space-halfunit);
    padding-left: var(--dl-space-space-unit);
    border-radius: var(--dl-radius-radius-inputradius);
    padding-right: var(--dl-space-space-twounits);
    padding-bottom: var(--dl-space-space-halfunit);
    background-color: var(--dl-color-theme-neutral-light);
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg width%3D%2220%22 height%3D%2220%22 xmlns%3D%22http%3A//www.w3.org/2000/svg%22 viewBox%3D%220 0 20 20%22 fill%3D%22%23000%22%3E%3Cpath d%3D%22M4.293 7.293a1 1 0 011.414 0L10 11.586l4.293-4.293a1 1 0 111.414 1.414l-5 5a1 1 0 01-1.414 0l-5-5a1 1 0 010-1.414z%22/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 8px center;
}
.thq-divider-horizontal {
    width: 100%;
    height: 1px;
    background-color: var(--dl-color-theme-neutral-dark);
}
.thq-icon-small {
    width: 24px;
    height: 24px;
}
.thq-button-icon {
    fill: var(--dl-color-theme-secondary1);
    padding: 3px;
    transition: 0.3s;
    border-radius: var(--dl-radius-radius-round);
}
.thq-button-icon:hover {
    fill: var(--dl-color-theme-secondary2);
}
.thq-icon-medium {
    width: var(--dl-size-size-small);
    height: var(--dl-size-size-small);
}
.thq-icon-x-small {
    width: var(--dl-size-size-xsmall);
    height: var(--dl-size-size-xsmall);
}
.thq-link {
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    background: linear-gradient(to right, var(--dl-color-theme-primary1) 50%, var(--dl-color-theme-neutral-dark) 50%);
    transition: background-position 300ms ease;
    font-weight: 600;
    background-clip: text;
    background-size: 200% 100%;
    background-position: 100%;
    -webkit-text-fill-color: transparent;
}
.thq-link:hover {
    background-position: 0 100%;
}
.thq-grid-auto-300 {
    display: grid;
    grid-gap: var(--dl-space-space-oneandhalfunits);
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.thq-animated-group-vertical-reverse {
    gap: var(--dl-space-space-unit);
    width: 100%;
    display: flex;
    animation: scroll-y 20s linear infinite;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-around;
    animation-direction: reverse;
}
.thq-animated-group-horizontal-reverse {
    gap: var(--dl-space-space-unit);
    display: flex;
    animation: scroll-x 20s linear infinite;
    min-width: 100%;
    align-items: center;
    flex-shrink: 0;
    justify-content: space-around;
    animation-direction: reverse;
}
.thq-animated-group-vertical {
    gap: var(--dl-space-space-unit);
    width: 100%;
    display: flex;
    animation: scroll-y 20s linear infinite;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-around;
}
.thq-animated-group-horizontal {
    gap: var(--dl-space-space-unit);
    display: flex;
    animation: scroll-x 20s linear infinite;
    min-width: 100%;
    align-items: center;
    flex-shrink: 0;
    justify-content: space-around;
}
.thq-animated-group-container-vertical {
    gap: var(--dl-space-space-unit);
    display: flex;
    overflow: hidden;
    flex-direction: column;
}
.thq-animated-group-container-horizontal {
    gap: var(--dl-space-space-unit);
    display: flex;
    overflow: hidden;
}
.thq-mask-image-vertical {
    mask-image: linear-gradient(to bottom, transparent, black 1%, black 99%, transparent);
}
.thq-mask-image-horizontal {
    mask-image: linear-gradient(to right, transparent, black 1%, black 99%, transparent);
}
.thq-img-scale {
    transition: 0.3s;
}
.thq-img-scale:hover {
    scale: 1.05;
}
.thq-animated-card-bg-1 {
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
    border-radius: var(--dl-radius-radius-cardradius);
    background-color: var(--dl-color-theme-accent1);
}
.thq-animated-card-bg-2 {
    transition: transform 0.3s;
    border-radius: var(--dl-radius-radius-cardradius);
    background-color: var(--dl-color-theme-accent2);
}
.thq-button-animated {
    outline: none;
    z-index: 1;
    overflow: hidden;
    position: relative;
    border-width: 2px;
}
.thq-input::placeholder {
    text-align: center;
    vertical-align: middle;
}
.thq-animated-group-container-vertical:hover div {
    animation-play-state: paused;
}
.thq-animated-group-container-horizontal:hover div {
    animation-play-state: paused;
}
.thq-animated-card-bg-2:has([data-animated="true"]:hover) {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(3deg) skew(0deg, 0deg);
}
.thq-animated-card-bg-1:has([data-animated="true"]:hover) {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(-6deg) skew(0deg, 0deg);
}
.thq-button-animated:before {
    top: 0;
    left: -20%;
    color: var(--dl-color-theme-neutral-light);
    width: 200%;
    height: 101%;
    content: "";
    z-index: 1;
    position: absolute;
    transform: scaleX(0);
    transition: transform 0.5s;
    border-radius: var(--dl-radius-radius-buttonradius);
    background-color: var(--dl-color-theme-neutral-dark);
    transform-origin: 0 0;
    transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
}
.thq-button-animated:hover::before {
    color: var(--dl-color-theme-neutral-light);
    z-index: -1;
    transform: scaleX(1);
}
.container {
    gap: 16px;
    display: flex;
    padding: 40px;
    max-width: 480px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    align-items: center;
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}
.choices {
    gap: 24px;
    display: flex;
    align-self: stretch;
    flex-direction: column;
}
.question {
    fill: #777;
    color: #777;
    font-size: 18px;
    text-align: center;
    font-family: "SFProDisplay-Medium";
    line-height: 1.6;
}
.progress-dot {
    flex: 0 0 auto;
    width: 12px;
    border: 2px dashed rgba(120, 120, 120, 0.4);
    height: 12px;
    display: flex;
    border-style: hidden;
    border-radius: var(--dl-radius-radius-round);
    background-color: #94AFF0;
}
.active-dot {
    background-color: #0142E9;
}
.title {
    fill: #333;
    color: rgb(51,51,51);
    font-family: "SFProDisplay-Regular";
    text-align: center;
}
.subtitle {
    fill: #888;
    color: rgb(136, 136, 136);
    font-size: 16px;
    text-align: center;
    font-family: "SFProDisplay-Regular";
    line-height: 1.6;
    margin-bottom: var(--dl-space-space-twounits);
}
form#quiz-form {
    display: flex;
    flex-direction: column;
    gap: 32px;

}
.choice {
    color: rgb(85, 85, 85);
    cursor: pointer;
    height: 80px;
    display: flex;
    padding: 8px 16px;
    box-shadow: 0px 2px 20px 0px rgba(99, 117, 194, 0.25);
    text-align: center;
    font-family: "SFProDisplay-Regular";
    transition: 0.3s;
    border-radius: 8px;
    flex-direction: column;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s;
}

.choice:hover, .choice.selected {
    background-color: #0142e9;
    color: white;
}

.choice input[type="radio"], .choice input[type="checkbox"] {
    display: none; /* Hide the radio buttons */
}

.short-choice {
    font-size: 20px;
    text-align: center;
    font-family: "SFProDisplay-Bold";
}
.button-group {
    gap: var(--dl-space-space-unit);
    display: flex;
    margin-top: var(--dl-space-space-twounits);
    align-items: center;
    flex-direction: row;
    justify-content: center;
}
.secondary-btn {
    fill: #FFC500;
    color: #FFC500;
    border: 2px solid #FFC500;
    background-color: white;
}
.progress-wrapper {
    gap: var(--dl-space-space-unit);
    flex: 0 0 auto;
    display: flex;
    margin-top: var(--dl-space-space-unit);
    align-items: flex-start;
    justify-content: center;
}
.long-choice {
    fill: #555;
    font-size: 14px;
    text-align: center;
    font-family: "SFProDisplay-Regular";
}
.video-wrapper {
    display: flex;
    position: relative;
    align-self: stretch;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.main-logo {
    width: 100px;
    margin-bottom: var(--dl-space-space-oneandhalfunits);
}
.congratulations-img {
    width: 200px;
    margin-top: var(--dl-space-space-twounits);
    object-fit: cover;
    margin-bottom: var(--dl-space-space-twounits);
}
.review-title {
    font-size: 24px;
    font-family: "SFProDisplay-Bold";
}
.ratings {
    fill: #94AFF0;
    color: #94AFF0;
    font-size: 18px;
    font-family: "SFProDisplay-Bold";
}
.video {
    width: 100%;
    height: auto;
    box-shadow: 0px 2px 20px 0px rgba(99, 117, 194, 0.25);
}
.poor-rating {
    color: rgb(247, 0, 0);
}
.bad-review-logo {
    width: 100%;
    height: 100%;
}
.bad-review-img-wrapper {
    flex: 0 0 auto;
    width: 150px;
    height: 150px;
    display: flex;
    margin-top: var(--dl-space-space-twounits);
    align-items: flex-start;
    margin-bottom: var(--dl-space-space-twounits);
    justify-content: center;
}
.Content {
    font-size: 16px;
    font-family: Inter;
    font-weight: 400;
    line-height: 1.15;
    text-transform: none;
    text-decoration: none;
}
.form {
    gap: var(--dl-space-space-unit);
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.form-group {
    gap: 8px;
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.label {
    font-family: "SFProDisplay-Regular";
    font-size: 16px;
    color: rgb(85, 85, 85);
}

.input {
    font-family: "SFProDisplay-Regular";
    color: var(--dl-color-theme-neutral-dark);
    cursor: auto;
    padding: 14px 16px;
    align-self: stretch;
    border: 1px solid #ccc;  /* Apply the same color to all sides */
    border-radius: 8px;
    background-color: transparent;
    box-shadow: none;
    font-size: 16px;
}

.disclaimer {
    font-family: "SFProDisplay-Light";
    font-size: 14px;
}

.last-button-group {
    display: flex;
    flex-direction: column;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper.fullscreen {
    position: fixed;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw; /* Full viewport width */
    background-color: black; /* Optional: black background for a better viewing experience */
    z-index: 1000; /* Bring it to the top */
}

.video-wrapper.fullscreen .video {
    object-fit: cover; /* Adjust to maintain aspect ratio if needed */
    height: 100vh;
    width: auto;
}

.video-wrapper.fullscreen .controls {
    position: fixed;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 12px;
    width: 90vw; /* Make controls stretch across the width */
    z-index: 1001; /* Ensure controls stay on top of the video */
}


.video {
    width: 100%;
    /* Explicitly hide any default video controls */
    -webkit-appearance: none;
    appearance: none;
}

/* Custom controls container */
.controls {
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: opacity 0.3s ease;
    opacity: 1;
    color: #FFC500;
    fill: #FFC500; 
}


/* Hide controls when the .hide class is applied */
.controls.hide {
    opacity: 0;
}

/* Show controls on hover or when .show class is added */
.controls,
.controls.show {
    opacity: 1;
}

.top-controls {
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 95%;
}

.center-controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;

}

/* Time display above progress bar */
.time-display {
    font-size: 16px;
    display: flex;
    width: auto;
    color: white;
}

/* Center play button styling */
.play-button {
    font-size: 20px;
    color: #FFC500;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Skip forward/backward button styling */
.skip-button {
    font-size: 12px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Bottom control buttons */
.bottom-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    margin-top: 8px;
}

/* Custom Progress bar styling */
.progress-bar {
    appearance: none;
    width: 100%;
    height: 6px;
    background: #555;
    border-radius: 3px;
    outline: none;
    margin: 0 10px;
}

.progress-bar::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

/* Mute and fullscreen button styling */
.mute-button,
.fullscreen-button {
    font-size: 12px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


/* Ensure default controls are hidden on all browsers */
.video {
    /* Basic settings */
    width: 100%;
    -webkit-appearance: none;
    appearance: none;

    /* Hide any default controls */
    outline: none;
    overflow: hidden; /* Prevents hover effects from showing controls */
}

.video::-webkit-media-controls,
.video::-webkit-media-controls-enclosure,
.video::-webkit-media-controls-panel,
.video::-webkit-media-controls-overlay-play-button,
.video::-webkit-media-controls-start-playback-button {
    display: none !important; /* Specifically hides controls in WebKit browsers */
}

/* Ensure other potential pseudo-elements for controls are hidden */
.video::-webkit-media-controls-play-button,
.video::-webkit-media-controls-mute-button,
.video::-webkit-media-controls-timeline,
.video::-webkit-media-controls-volume-slider,
.video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}


@media (orientation: portrait) {
    /* Your styles for portrait orientation */

    .video-wrapper.fullscreen .video {
        object-fit: cover; /* Adjust to maintain aspect ratio if needed */
        height: auto;
        width: 100vw;
    }
}


@media(max-width: 991px) {
    .thq-grid-4 {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media(max-width: 767px) {
    .thq-section-padding {
        padding: var(--dl-space-space-threeunits);
    }
    .thq-flex-column {
        gap: var(--dl-space-space-oneandhalfunits);
    }
    .thq-flex-row {
        gap: var(--dl-space-space-oneandhalfunits);
    }
    .thq-grid-6 {
        grid-gap: var(--dl-space-space-oneandhalfunits);
        grid-template-columns: 1fr 1fr 1fr;
    }
    .thq-grid-5 {
        grid-gap: var(--dl-space-space-oneandhalfunits);
        grid-template-columns: 1fr 1fr 1fr;
    }
    .thq-card {
        padding: var(--dl-space-space-oneandhalfunits);
    }
    .thq-grid-3 {
        grid-gap: var(--dl-space-space-oneandhalfunits);
        grid-template-columns: 1fr 1fr;
    }
    .thq-grid-4 {
        grid-gap: var(--dl-space-space-oneandhalfunits);
        flex-direction: row;
        grid-template-columns: 1fr 1fr;
    }
    .thq-grid-2 {
        grid-gap: var(--dl-space-space-oneandhalfunits);
        grid-template-columns: 1fr;
    }
    .thq-img-scale {
        width: 100%;
    }
}
@media(max-width: 479px) {
    .thq-section-padding {
        padding: var(--dl-space-space-oneandhalfunits);
    }
    .thq-flex-column {
        gap: var(--dl-space-space-unit);
    }
    .thq-flex-row {
        gap: var(--dl-space-space-unit);
    }
    .thq-grid-6 {
        grid-gap: var(--dl-space-space-unit);
        grid-template-columns: 1fr 1fr;
    }
    .thq-grid-5 {
        grid-gap: var(--dl-space-space-unit);
        grid-template-columns: 1fr 1fr;
    }
    .thq-grid-3 {
        grid-gap: var(--dl-space-space-unit);
        align-items: center;
        grid-template-columns: 1fr;
    }
    .thq-grid-4 {
        grid-gap: var(--dl-space-space-unit);
        align-items: center;
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    .thq-grid-2 {
        grid-gap: var(--dl-space-space-unit);
    }
    .thq-grid-auto-300 {
        grid-template-columns: 1fr;
    }
    .container {
        box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0);
        align-items: center;
        padding-left: 40px;
        padding-right: 40px;
    }
    .video-wrapper {
        position: relative;
    }
}
