@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;600&family=Work+Sans:wght@300;400&display=swap');
*,p,a,html{
  font-family: 'Work Sans', sans-serif;
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
}
html,
*,
a,
input{
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -.5px;
}
.caClearfix::after{
  content: "";
  clear: both;
  display: table;
}
html{
  font-size: 14px;
}
/*** The new CSS Reset - version 1.4.5 (last updated 13.1.2022) ***/

/*
  Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
  - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}
*{
	scroll-behavior: smooth;
}
/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]){
  display:none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly. */
:where([contenteditable]){
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
  -webkit-user-drag: element;
}

input[type="checkbox"],
input[type="radio"] {
  all: revert;
}

 input,
 textarea,
 select {
  all: revert;
 }
[data-splitting] .char{
  opacity: 0;
}

button,
textarea,
input,
select{
  box-sizing: border-box;
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  box-shadow: none;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  /* Remove excess padding and border in Firefox 4+ */
  border: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-family: 'Work Sans', sans-serif;
}

.caWrapper{
  width: 90%;
  margin: auto;
  max-width: 65rem;
}
h1{
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: -1px;
  line-height: 1.1;
}
h2{
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.2;
}
h3{
  font-size: 1.8rem;
  font-weight: bold;
}
p{
  color: #000;
  font-size: 1.1rem;
  line-height: 1.4;
}
h5{
  font-weight: 600;
  font-size: 1.2rem;
}
h6{
  font-size: 1.3rem;
  font-weight: 600;
}
section .caLogo {
    width: 6rem;
    margin: 1.5rem auto;
}
header .caLogo {
    width: 6rem;
    margin: 1.5rem 0;
}
small{
    color: #666666;
    display: block;
    font-size: .8rem;
}
.caCompanyName small,
.caCompanyName h6{
  text-align: center;
}
.caCompanyName h6 {
    color: #4d4d4d;
    margin-bottom: 1.5rem;
}
.caTitle {
    background-color: #666666;
    box-sizing: border-box;
    padding: .5rem 1.5rem;
    position: relative;
}
.caTitle > div{
  float: right;
}
.caTitle strong{
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFF;
}
.caTitle small{
    color: #f6b500;
    text-align: right;
    font-weight: 600;
    margin-bottom: -0.2rem;
}
.caTitle h5{
    font-weight: 400;
    color: #FFF;
    position: relative;
    padding: .1rem 0;
    float: left;
}
.caTitle h5::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0.7rem;
    height: 2px;
    background-color: #fabe00;
}
.caTable table{
  width: 90%;
  margin: auto;
}
.caTable {
    padding: 0.5rem 0 1rem 0;
    overflow-x: auto;
}
.caTable td,
.caTable th{
  padding: .5rem;
  vertical-align: middle;
  text-align: left;
}
.caTable th{
  padding: 1rem .5rem;
}  
.caTable th {
    color: #808080;
    font-size: .9rem;
    font-weight: 400;
}
.caTable td{
  color: #000;
  font-weight: 300;

}
.caTable .caInput input {
    padding: 0.5rem 0 0.5rem 1.5rem;
    border-bottom: 1px solid #afafaf;
    width: 100%;
    box-sizing: border-box;
    max-width: 19rem;
}
.caTable .caInput {
    position: relative;
    min-width: 15rem;
}
.caTable .caInput::before {
  content: "$";
  display: block;
  position: absolute;
  left: 0;
  color: #000;
  font-weight: 600;
  padding: 0.4rem;
}
.caTotal {
    border-top: 1px dashed #000;
    padding: 1rem 1.5rem;
    text-align: right;
}
.caTotal strong{
    font-weight: bold;
    font-size: 1.6rem;
    letter-spacing: -1px;
}
.caTotal small{
    font-weight: 600;
    margin-bottom: -0.2rem;
}
.caButton {
    display: inline-block;
    text-align: center;
    background-color: black;
    color: #FFF;
    font-weight: 500;
    box-sizing: border-box;
    padding: 0.8rem 3rem;
    position: relative;
    overflow: hidden;
    transition: .3s ease all;
}
.caButton:hover{
  color: transparent;
  background-color: #363636;
}
.caButton::before {
    content: attr(data-name);
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    -webkit-transform: scale(3.5);
    -moz-transform: scale(3.5);
    -ms-transform: scale(3.5);
    transform: scale(3.5);
    transition: .3s ease all;
    opacity: 0;
}
.caButton:hover::before{
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  color: #FFF;
  opacity: 1;
}
.caListOfElem {
    text-align: center;
    max-width: 55rem;
    margin: auto;
}
.caListOfElem .caTitle h5{
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.caCallTo .caButton{
  position: relative;
  z-index: 5;
}
.caCallTo{
  margin-top: 1rem;
  position: relative;
  display: inline-block;
}
.caCallTo::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 70%;
    height: 1rem;
    background-color: #000;
    filter: blur(10px);
    z-index: 0;
    opacity: .6;
    bottom: 0;
}
.caTable input::placeholder,
.caAccordeon input::placeholder{
  color: #808080;
  font-weight: 500;
  letter-spacing: -1px;
  font-style: italic;
  opacity: 1; /* Firefox */
}
.caTable  input:-ms-input-placeholder,
.caAccordeon input:-ms-input-placeholder{ /* Internet Explorer 10-11 */
 color: #808080;
 font-weight: 500;
 letter-spacing: -1px;
 font-style: italic;
}
.caTable  input::-ms-input-placeholder,
.caAccordeon input::-ms-input-placeholder{ /* Microsoft Edge */
 color: #808080;
 font-weight: 500;
 letter-spacing: -1px;
 font-style: italic;
}
.caCheckout {
    padding-top: 1rem;
    max-width: 35rem;
    margin: auto;
}
.caCheckout h5 {
    position: relative;
    margin-bottom: 1rem;
}
.caCheckout h5::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0.7rem;
    height: 2px;
    background-color: #d73223;
}
.caAccordeon ul{
  padding: 1rem 0 0 2rem;
}
.caAccordeon input {
  background-color: #f7f7f7;
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem 1rem;
  font-size: .9rem;
  margin-bottom: 1rem;
}
.caAccordeon label {
  color: #666666;
  font-size: .9rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.3rem;
}
.caAccordeon ul li .caExpiration {
  float: left;
  width: 50%;
}
.caAccordeon ul li .caExpiration input {
  float: left;
  width: calc(50% - 0.8rem);
}
.caAccordeon ul li .caExpiration input:first-of-type{
  margin-right: 1rem;
}
.caAccordeon ul li .caExpiration50{
  float: left;
  width: calc(50% - 0.5rem);
  margin-left: 0.5rem;
}
.caAccordeon .caPaymentOption{
  position: relative;
}
.caAccordeon .caPaymentOption .caAccBody{
  height: 0;
  overflow: hidden;
  -webkit-transform: translate(-100%,0);
  -moz-transform: translate(-100%,0);
  -ms-transform: translate(-100%,0);
  transform: translate(-100%,0);
  opacity: 0;
  transition: .3s ease all;
}
.caAccordeon .caPaymentOption > input {
    position: absolute;
    width: 100%;
    height: 3rem;
    opacity: 0;
    z-index: 5;
    margin: 0;
    padding: 0;
    cursor: pointer;
}
.caAccordeon .caPaymentOption h4 {
    font-size: 1.1rem;
    display: block;
    position: relative;
    padding: 1rem;
    padding-left: 2rem;
    border-bottom: 1px solid #eeeeee;
}
.caAccordeon .caPaymentOption h4::after {
    content: "";
    display: block;
    position: absolute;
    width: 17px;
    height: 17px;
    background-color: #b3b3b3;
    border-radius: 6px;
    left: 0.3rem;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid #b3b3b3;
    transition: .3s ease all;
}
.caAccordeon .caPaymentOption h4::before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 6px solid #4d4d4d;
    right: 0.3rem;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 10rem;
}
.caAccordeon .caPaymentOption > input:checked + h4::before{
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  border-top: 6px solid #d73223;
}
.caAccordeon .caPaymentOption > input:checked + h4::after,
.caAccordeon .caPaymentOption > input:hover + h4::after{
  border: 3px solid #000;
  background-color: #f6b500;
}
.caAccordeon .caPaymentOption > input:checked ~ .caAccBody{
  height: auto;
  opacity: 1;
  -webkit-transform: translate(0,0);
  -moz-transform: translate(0,0);
  -ms-transform: translate(0,0);
  transform: translate(0,0);
}
.caAccordeon .caPaymentOption .caAccBody span {
    display: block;
    margin: 0.5rem 0;
    color: #666666;
    font-size: 1rem;
}
.caAccordeon .caPaymentOption .caCodi{
  position: relative;
}
.caAccordeon .caPaymentOption .caCodi img {
    position: relative;
    width: 9rem;
}
.caAccordeon .caPaymentOption .caCodi .caInputSide{
    
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    left: 10rem;
    width: calc(100% - 10rem);
}
.caAccordeon .caPaymentOption .caButton {
    padding: 0.4rem 1.5rem;
    font-size: .9rem;
}
.caAccordeon .caPaymentOption .caCallTo{
    margin: 0.5rem 0 2rem 2rem;
}
.caAccordeon .caCodi .caCallTo{
  margin: 0;
}
.caOptions{
  margin: 4rem 0 4rem 0;
}
.caTicket {
    margin: 0rem 0 3rem 0;
}
.caTicket .caContent {
    border: 1px solid #e6e6e6;
    padding: 1rem 2rem 2rem 2rem;
    position: relative;
    box-shadow: 0 10px 15px rgb(0 0 0 / 10%);
}
.caTicket .caTotal{
  position: relative;
}
.caTicket .caTotal::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 40px;
    background-color: #ffffff;
    top: -20px;
    right: -2.1rem;
    -webkit-border-top-left-radius: 300px;
    -webkit-border-bottom-left-radius: 300px;
    -moz-border-radius-topleft: 300px;
    -moz-border-radius-bottomleft: 300px;
    border-top-left-radius: 300px;
    border-bottom-left-radius: 300px;
    border-left: 1px solid #e6e6e6;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    background: rgb(241,241,241);
    background: -moz-linear-gradient(90deg, rgba(241,241,241,1) 0%, rgba(246,246,246,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(241,241,241,1) 0%, rgba(246,246,246,1) 100%);
    background: linear-gradient(90deg, rgba(241,241,241,1) 0%, rgb(246 246 246) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f1f1f1",endColorstr="#f5f5f5",GradientType=1);
}
.caTicket .caTotal::before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 40px;
    background-color: #ffffff;
    top: -20px;
    left: -2.1rem;
    -webkit-border-top-right-radius: 300px;
    -webkit-border-bottom-right-radius: 300px;
    -moz-border-radius-topright: 300px;
    -moz-border-radius-bottomright: 300px;
    border-top-right-radius: 300px;
    border-bottom-right-radius: 300px;
    border-right: 1px solid #e6e6e6;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    background: rgb(241,241,241);
background: -moz-linear-gradient(270deg, rgba(241,241,241,1) 0%, rgba(245,245,245,1) 100%);
background: -webkit-linear-gradient(270deg, rgba(241,241,241,1) 0%, rgba(245,245,245,1) 100%);
background: linear-gradient(270deg, rgba(241,241,241,1) 0%, rgba(245,245,245,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f1f1f1",endColorstr="#f5f5f5",GradientType=1);
}
.caTicket .caTitle h5{
  margin-bottom: 0;
}
.caTicket .caTitle {
    padding: 1rem 1.5rem;
}
.caTicket .caTable table {
    width: 100%;
}
.caTicket .caTable {
    padding: 0 0 1rem 0;
    overflow-x: unset;
}
.caThankyou{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 90%;
  margin: auto;
  left: 0;
  right: 0;
}
.caThankyou{
  text-align: center;
}
.caThankyou h5{
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
}
.caThankyou h5::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0.7rem;
    height: 2px;
    background-color: #d73223;
}
.caThankyou .caIcon {
    position: relative;
    width: 6rem;
    background-color: #000;
    box-sizing: border-box;
    padding: 1rem;
    border-radius: 100rem;
    margin: 2rem auto;
}
.caThankyou .caIcon::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 4rem;
    height: 1rem;
    background-color: #000;
    filter: blur(10px);
    opacity: .5;
}
.caThankyou p{
    color: #666666;
    max-width: 20rem;
    margin: auto;
}
.caThankyou p a{
  color: #000;
  text-decoration: underline;
  font-style: italic;
}
.caThankyou p a:hover{
  text-decoration: none;
}
@media screen and (min-width: 700px) {
    html{
    font-size: 15px;
  }
  .caCheckout {
    padding-top: 3rem;
  }
}
@media screen and (min-width: 800px) {
  .caTicket {
    width: 23rem;
    float: right;
  }
  .caOptions {
    float: left;
    width: calc(100% - 26rem);
    margin-top: 1rem;
  }
  .caCheckout {
    padding-top: 0;
    max-width: 65rem;
  }
}
@media screen and (min-width: 900px) {
    html{
    font-size: 16px;
  }
}
@media screen and (min-width: 1000px) {
.caTicket {
    width: 25rem;
}
.caOptions {
    width: calc(100% - 30rem);
}
.caAccordeon ul li .caFullName input {
    float: left;
    width: calc(50% - 0.5rem);
}

.caAccordeon ul li .caDiv2 {
  float: left;
  width: calc(50% - 0.5rem);
}

.caAccordeon ul li .caDiv2:nth-of-type(2) {
  margin-left: 1rem;
}

.caAccordeon ul li .caFullName input:first-of-type {
    margin-right: 1rem;
}
}

.select {
  background-color: #f7f7f7;
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0.5rem 1rem;
    font-size: .9rem;
    margin-bottom: 1.1rem;
}

.typeCard{
  width: 20%;
  height: 4rem;
  float: left;
}

.mastercard {
  background-image: url(https://upload.wikimedia.org/wikipedia/commons/7/72/MasterCard_early_1990s_logo.png);
    width: 40%;
    height: 2rem;
    margin-top: 1.5rem;
    margin-left: 0.5rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    float: left;
}

.visacard {
  background-image: url(https://static.vecteezy.com/system/resources/previews/020/975/567/non_2x/visa-logo-visa-icon-transparent-free-png.png);
    width: 40%;
    height: 2rem;
    margin-top: 1.5rem;
    margin-left: 0.5rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    float: left;
}

.caInputTypeCard{
  width: 80%;
  float: left;
}