@import url('https://unpkg.com/normalize.css') layer(normalize);
@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&display=swap');

*,
*:after,
*:before {
box-sizing: border-box;
}

[x-cloak] { display: none !important; }

body {
    background-image: url(https://cohaul-asset.nyc3.cdn.digitaloceanspaces.com/bg-cross-4.svg);
    background-repeat: repeat; 
    background-size: 30px auto;
    color: #1f2222;
    font-size: 14px;
    line-height: 1.5;
    /* font-family: "Oxygen", sans-serif; */
    font-family: "Oxanium", sans-serif;
    /* font-family: 'BioSans', monospace; */
}

.grey-font {
    color: #7B8A94;
}
.bg-green {
    background-color: #D9F9EF;
}
.bg-yellow {
    background-color: #F9F9D9;
}
.b-font {
    font-weight: 600;
}
.margin-zero {
    margin: 0;
}
.margin-top-10 {
    margin-top: 10px;
}
.margin-top-20 {
    margin-top: 20px;
}
.margin-top-30 {
    margin-top: 30px;
}
.margin-top-40 {
    margin-top: 40px;
}
pre {
    background-color: #F5F8FE;
    padding: 10px;
}
input {
    border: 1px solid #1f2222;
    border-radius: 0;
    padding: 8px 10px;
    width: 100%;
    max-width: 300px;
    font-size: 16px;
}
input, button:focus {
    outline: none;
    box-shadow: none;
}
p {
    margin-top: 6px;
}
video,
img {
    display: block;
}
ol, ul {
    padding-left: 20px;
}
li {
    list-style-type: square;
    margin-bottom: 10px;
}
li p {
    margin-top: 0;
    font-weight: 300;
}
a {
    color: inherit;
    text-decoration: none;
}
a:visited {
    color: inherit;
}
button {
    border: 1px solid #1f2222;
    border-radius: 0;
    font-size: 12px;
    padding: 4px 10px;
}
button:disabled {
    background-color: #F5F8FE !important;
    color: #7B8A94 !important;
}
.highlight {
    color: #1f2222;
    background-color: #D9F9EF;
    padding: 0 2px;
}

.page-width {
    max-width: 1000px;
    width: 94%;
    margin: 0 auto;
}
.page-width-small {
    max-width: 800px;
    width: 94%;
    margin: 0 auto;
}
.page-break {
    width: 100%;
    height: 1px;
    background-color: #1f2222;
    margin: 30px 0;
}
.page-break-header {
    width: 100%;
    background-color: #1f2222;
    margin: 30px 0 10px 0;
    color: #fff;
    font-weight: 500;
    padding: 6px 7px;
    line-height: 25px;
}
.page-break-header svg {
    position: relative;
    top: 1px;
    margin-right: 0px;
}
.page-break-sub-header {
    background-color: #EDF2FA;
    width: 100%;
    padding: 5px 7px;
    margin: 10px 0px 50px 0;
}
.haul-box {
    background-color: #fff;
    border: 1px solid #1f2222;
    box-shadow: 2px 2px 0px 0px rgba(0,0,0,0.6);
}
.haul-box-container {
    padding: 10px 10px 15px 10px;
}
.haul-box-container h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 0;
}
.haul-box-container p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
}
.haul-box-clickable {
    cursor: pointer;
}
.haul-box-clickable:hover {
    background-color: #F5F8FE;
}

/* HEADER */
.banner {
    background-color: #1f2222;
    line-height: 32px;
    height: 32px;
    font-weight: 400;
    width: 100%;
    color: #fff;
    position: relative;
    z-index: 100;
    box-shadow: 2px 2px 0px 0px rgba(0,0,0,0.6);
}
.banner a {
    color: #fff;
}
.banner-container {
    padding: 0 20px;
}
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 100;
    /* background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); */
    padding: 20px 0;
}
.paper-header {
    width: 100%;
    padding: 10px 20px;
    margin-top: 0;
    display: flex;
    align-items: center;
    line-height: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.paper-header-logo-word {
    margin: 0;
    padding: 0;
    display: inline-block;
}
.paper-header-logo-word img {
    width: auto;
    height: 27px;
}
.paper-header-menu {
    margin-left: auto;
}
.paper-header-menu-item {
    display: inline-block;
    padding: 10px 10px;
    position: relative;
    cursor: pointer;
}
.dropdown-menu {
    padding-top: 17px;
    position: absolute;
    min-width: 150px;
    z-index: 10;
    top: 16px;
    border-top: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}
.dropdown-menu .haul-box {
    border-top: none;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    padding: 15px 10px;
    transition: background 0.3s ease;
}

.dropdown-item:hover {
    background: #f5f5f5;
}

.paper-header-menu-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.header-btn {
    margin: 0 0 0 10px;
    height: 27px;
    line-height: 25px;
    font-size: 14px;
}

.paper-container-section {
    margin: 48px 0;
}

.paper-container {
  color: #1f2222;
  padding: 20px 20px 30px 20px;
  margin: 16px 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.paper-container-small {
    max-width: 495px;
}

.paper-container h1, 
.paper-container h2 {
  font-weight: 400;
}

.paper-container h1 {
    font-size: 34px;
    margin-top: 0;
    margin-bottom: 0;
}

.paper-container h2 {
    font-size: 24px;
    margin-bottom: 0px;
    margin-top: 5px;
}

.paper-container h2 span {
    float: right;
    font-size: 14px;
    color: #838B94;
}

.paper-container p {
    margin-bottom: 0;
    font-size: 16px;
}

.page-form-container p {
    margin: 15px 0 5px 0;
    font-size: 14px;
}
.page-form-container-button {
    margin: 30px 0 30px 0;
    font-size: 16px;
}
.page-form-container-button button {
    font-size: 16px;
    cursor: pointer;
}

button {
    display: inline-block;
    font-size: 16px;
    line-height: 28px;
    padding: 0px 10px;
    cursor: pointer;
    background-color: #fff;
    margin-right: 10px;
    color: #1f2222;
    border: 1px solid #1f2222;
    box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.6);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

button:focus {
    outline: none;
}

button.btn-green:active,
button.btn-orange:active,
button:active {
    background-color: #89929F;
    color: #fff;
    border: 1px solid #FFF;
}
button.btn-orange {
    background-color: #F6DFCA;
}
button.btn-green {
    background-color: #7CF2A4;
}

.paper-container h2.page-sub-title {
    border-bottom: 1px solid #1f2222;
    padding-bottom: 3px;
}
.paper-container h2.page-sub-title-highlight {
    background-color: #1F2222;
    color: #fff;
    font-weight: 500;
    padding: 5px;
}
.paper-container h2.page-link-title {
    margin-top: 26px;
}

.haul-btn-small {
    font-size: 12px;
    line-height: 22px;
    margin-bottom: 10px;
    max-width: 240px;
    text-align: left;
    width: 100%;
}
.haul-btn-small span {
    float: right;
}

/* HERO */
.hero-video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 550px;
    max-height: 600px;
    overflow: hidden;
    margin-top: -110px; /* Negative margin to pull video up behind header */
    padding-top: 110px; /* Padding to prevent content overlap */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 34, 34, 0.8) 0%, rgba(31, 34, 34, 1) 100%);
    display: flex;
    padding-top: 130px;
    justify-content: flex-start;
}

.hero-overlay.hero-dark {
    background: #1f2222;
}

.hero-img-container {
    margin-top: 60px;
    max-width: 270px;
    width: 75%;
}
.hero-img-container img {
    width: 100%;
}

.hero-content {
    color: #fff;
    max-width: 600px;
    padding: 0 20px 20px 20px;
}

.hero-content .hero-title {
    font-size: 56px;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 600;
}

.hero-content .hero-subtitle {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-content .hero-pretitle {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 10px;
    opacity: 0.9;
    letter-spacing: 1px;
}

.hero-button {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-weight: 400;
    line-height: 40px;
    font-size: 22px;
    height: auto;
    margin-top: 30px;
}

.paper-container .hero-title {
    font-size: 40px;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.3;
}
.paper-container .hero-title-small {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.3;
}
.paper-container .hero-subtitle {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 20px;
}
.paper-container .hero-pretitle {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: 500;
    color: #838B94;
}
.paper-container .hero-screenshot {
    width: 100%;
    height: auto;
}
.paper-container .hero-screenshot img {
    width: 100%;
    height: auto;
}

.paper-manual table {
    text-align: left;
    margin: 25px 0;
}
.paper-manual table th {
    padding: 1px 4px;
    font-weight: 500;
}
.paper-manual table th,
.paper-manual table td {
    padding: 1px 4px;
}

/* TICKER */
.ticker-container {
    background-color: #1f2222;
    color: #fff;
    overflow: hidden;
    min-height: 34px;
}
    
.ticker-wrap {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.ticker {
    display: inline-block;
    padding-left: 100%;
}

.animate-ticker {
    animation: ticker 50s linear 4.6;  /* 3.6 iterations = 180 seconds (3 minutes) */
}

.ticker-item {
    display: inline-block;
    font-weight: 500;
    padding: 6px 24px;
    font-size: 12px;
}
.ticker-item-down {
    color: #F9D3D3;
    font-weight: 800;
}
.ticker-item-up {
    color: #D9F9EF;
    font-weight: 800;
}
.ticker-image {
    display: inline-block;
    font-weight: 500;
    padding: 6px 35px 0px 35px;
    font-size: 12px;
}
.ticker-image img {
    width: 20px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.paper-table-md,
.paper-table-mini {
    display: inline-block;
}
.paper-table-md td,
.paper-table-mini td {
    padding: 5px 10px;
    border: 1px solid #1f2222;
}
.paper-table-mini td:first-child {
    width: 170px;
}
.paper-table-mini td:last-child {
    width: 100px;
}
.paper-table-mini .paper-table-input {
    padding: 0;
}
.paper-table-mini .paper-table-input input {
    font-size: 14px;
}

.controls button {
    margin-right: 10px;
}
.status-container {
    padding: 6px 0;
}

.play-video-container {
    max-width: 372px;
    width: 100%;
    margin: 30px 0;
    border: 1px solid #1f2222;
    box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.6);
}
.play-video-container .video-js {
    width: 100%;
    height: 209px;
}

.paper-image-container,
.video-container {
    max-width: 400px;
    width: 100%;
    margin: 30px 0;
}
.paper-image-container-left,
.video-container-left {
    margin: 0 0 0 auto;
}
.video-container .video-js {
    width: 100%;
    height: 209px;
}
.paper-image-container img,
.video-container .video-default {
    width: 100%;
}

.video-container .video-js .vjs-big-play-button {
    top: 20px;
    right: 0;
    left: auto;
    bottom: auto;
    border-radius: 0;
    width: 40px;
    height: 25px;
    color: #1f2222;
    background-color: #fff;
    font-size: 16px;
    line-height: 23px;
    border: 1px solid #1f2222;
    box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.6);
}

.video-container .video-js .vjs-control-bar {
    background-color: #1f2222;
}

.u-box-shadow {
    border: 1px solid #1f2222;
    box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.6);
}

.message-text {
    background-color: #F5F8FE;
    padding: 6px 10px;
    margin-top: 10px;
    margin-bottom: 0;
    font-weight: 500;
    min-height: 30px;
    line-height: 1.5;
    color: #F5F8FE;
    word-wrap: break-word;
    overflow-wrap: break-word;
    
}
.message-text.error {
    background-color: #D16B6B;
    color: #fff;
}
.message-text.success {
    background-color: #45C099;
    color: #fff;
}

.section-image-container {
    display: flex;
    flex-direction: column;
    height: 100%; 
}
.section-image {
    width: 100%;
    margin-top: auto;
}
.link-submit-button {
    text-align: right;
    margin: 20px 0 10px 0;
    font-size: 14px;
}
.link-submit-button button {
    margin: 0;
}

input[type=checkbox]{
	height: 0;
	width: 0;
	visibility: hidden;
}

.haul-checkbox-container {
    padding-left: 50px;
    position: relative;
}
.haul-checkbox-container p {
    border: 1px solid #1f2222;
    padding: 5px 10px;
}
.haul-checkbox {
    position: absolute;
    left: 0;
    top: 0;
}
.haul-checkbox-label {
    cursor: pointer;
    text-indent: -9999px;
    width: 44px;
    height: 24px;
    background: #7B8A94;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid #1f2222;
}

.haul-checkbox-label:after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 16px;
	height: 16px;
	background: #fff;
	transition: 0.3s;
    border: 1px solid #1f2222;
}

input:checked + label {
	background: #7CF2A4;
}

input:checked + label:after {
	left: calc(100% - 3px);
	transform: translateX(-100%);
}

@media (max-width: 850px) {

}
@media (max-width: 768px) {

    .hero-video-container {
        height: 80vh;
        min-height: 500px;
    }
    .hero-button {
        font-size: 18px;
        line-height: 30px;
        margin-top: 20px;
    }
    
    .hero-content .hero-title {
        font-size: 32px;
    }

    .paper-container h1 {
        font-size: 26px;
    }
    .paper-container h2 {
        font-size: 18px;
    }
    .paper-container p {
        font-size: 14px;
    }
    
    .hero-content .hero-subtitle {
        font-size: 16px;
    }
    
    .sticky-header {
        padding: 15px 0;
    }
    .hero-content {
        padding: 0 15px;
    }
    
    .paper-container .hero-title {
        font-size: 26px;
    }
    .paper-container {
        padding: 10px 10px 20px 10px;
    }
    .banner-container {
        padding: 0 10px;
    }
    .paper-header {
        padding: 10px 10px;
    }
}

@media (max-width: 580px) {
    .paper-header-menu-item {
        display: none;
    }
}

/* = Security
-------------------------------------------------------------- */
.security-title-letter {
    font-size: 43px;
    display: inline-block;
    vertical-align: top;
    border: 3px solid #1f2222;
    padding: 5px 12px 0 12px;
    line-height: 66px;
    font-weight: 300;
    margin: 10px 6px 40px 0;
}

/* = Test Drive
-------------------------------------------------------------- */
.u-btn-option {
    text-align: center;
    width: 100%;
    line-height: 30px;
    font-weight: 700;
    cursor: pointer;
}
.u-btn-option.active {
    color: #fff;
    background-color: #1f2222;
}


/* = TABLE
-------------------------------------------------------------- */
table {
text-align: center;
line-height: 22px;
width: 100%;
}
.table-col-data {
    width: 160px;
    padding-top: 3px;
}
th {
font-weight: 500;
border-bottom: 1px solid #EDF2F5;
}
td {
border-left: 3px solid #EDF2F5;
border-bottom: 1px solid #EDF2F5;
/*  border-bottom: 2px solid #1f2222;*/
}
.table-left-header {
font-weight: 500;
text-align: left;
border: none;
border-bottom: 1px solid #EDF2F5;
}
.table-col-yes {
font-weight: 500;
}
.table-col-no {
border-left: 3px solid #BE4F4F;
color: #838B94;
background-color: #EDF2F5;
}
.table-col-black {
background-color: #1f2222;
color: #fff;
}

/* = BLUR
-------------------------------------------------------------- */
.blur-card {
    filter: blur(4px);
    opacity: 0.6;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.blur-card.in-view {
    filter: blur(0px);
    opacity: 1;
    transform: translateY(0);
}

.blur-card:nth-child(1) { transition-delay: 0.1s; }
.blur-card:nth-child(2) { transition-delay: 0.2s; }
.blur-card:nth-child(3) { transition-delay: 0.3s; }
.blur-card:nth-child(4) { transition-delay: 0.4s; }
.blur-card:nth-child(5) { transition-delay: 0.5s; }
.blur-card:nth-child(6) { transition-delay: 0.6s; }

/* = PROCESS
-------------------------------------------------------------- */
.process-col {
    border: none;
    border-bottom: 3px solid #1f2222;
    font-size: 16px;
    padding: 5px 0;
    font-weight: 500;
}
.process-col p {
    vertical-align: bottom;
    margin-bottom: 0;
}
.process-col-highlight {
border-bottom: 3px solid #00DA76;
}
.process-col-bottom {
padding: 5px 0;
}
.process-col-bottom span {
float: right;
color: #838B94;
padding-right: 3px;
border-right: 2px solid #EDF2F5;
}
.process-col-trim {
    border-bottom: 3px dashed #1f2222;
}

/* = Media Queries
-------------------------------------------------------------- */

@media (max-width: 768px) {
    .table-col-data {
        width: 120px;
    }
}


@media (max-width: 590px) {
    .table-col-data {
        width: 100px;
    }
}

/* Phones and down */
@media (max-width: 515px) {
  td {
    border-left: 2px solid #EDF2F5;
  }
  .table-col-no {
    border-left: 2px solid #BE4F4F;
  }
  .table-col-data {
    width: 70px;
}
}


@media (max-width: 421px) {
  table {
    font-size: 9px;
  }
}
