.pageTitle{
    color: #000;
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 40px;
}
.page-desc{
    color: #F6F6F6;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 40px;
}
.border-container{
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 24px;
}
@media only screen and (max-width: 600px){
    .page-desc{
        font-size: 16px;
    }
}
/**************************************LOGIN CSS****************************************/
.login-container{
    padding: 32px 16px;
}
/**************************************CUSTOM FORM CSS****************************************/
.sectionTitle{
    color: #E6E6E6;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    font-weight: 400;
}
.cf-row {
    grid-column-gap: 2%;
    -ms-grid-columns: (1fr 2%) (12);
    grid-row-gap: 20px;
    display:grid;
    grid-template-columns:repeat(12, 1fr);
    grid-template-rows:repeat(auto-fill, auto);
    width: 100%;
    margin-bottom: 44px;
}
.cfield-label {
    color: #E6E6E6;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
}
.cfield-label.option{
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    margin-bottom: 16px;
}
.radio-label{
    color: #E6E6E6;
    font-size: 12px;
    line-height: 12px;
    text-align: center;
}
.half-row{
    grid-column: span 6;
}
.full-row{
    grid-column: span 12;
}
.cf-field {
    margin-top: 8px!important;
}
/* feedback page */
.rate-wrapper{
    padding: 12px 13px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
}
.radio-wrapper{
    display: flex;
    flex-direction: column;
}
.roption{
    /* width: 25%;
    text-align: center; */
    margin-bottom: 12px;
}
.roption .radio-field{
    margin-right: 8px;
}
/* login page */
.login-row{
    box-sizing: border-box;
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}
#loginBtn {
    box-sizing: border-box;
	width: auto;
	float: left;
    margin: 0;
    vertical-align: middle;
    overflow: hidden;
}
.login_label{
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 8px;
}

.hide {display: none!important;}
.show{
    display: block;
}
/* error text */
input.invalid, input.invalid:focus, textarea.invalid, textarea.invalid:focus, .rate-wrapper.invalid {
    border: 2px solid #B91C1C !important;
}
/* input[type=radio], input[type=checkbox] {
    margin-bottom: 5px;
} */
.appear {
    display: block;
    color: #B91C1C;
    font-size: 16px !important;
    line-height: 22px !important;
    font-weight: 500 !important;
    margin-top: 7px;
}

@media only screen and (max-width: 600px) {
    .half-row{
        grid-column: 1 / -1;
    }
    .cf-row{
        width: 100%;
    }
    /* .radio-label{
        font-size: 12px;
        line-height: 35px;
    } */
    .appear {
        font-size: 12px !important;
        line-height: 18px !important;
    }
}
/* custom form css END */

/**************************************CHECK IN QR****************************************/
.ticket{
    position: relative;
    background: #f3f4f6;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 400px;
    border-radius: 16px;
    z-index: 1;
}
.ticket-top, .ticket-bottom{
    padding: 30px 50px;
}
.ticket-divider {
    height: 1px;
    border-top: 2px dashed #ccc;
    margin: 0 20px;
}
.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  top: 180px;
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: -1; 
}

.ticket::before {
  left: -20px; 
}

.ticket::after {
  right: -20px;
}
.user-name{
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}
.user-company{
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin-bottom: 21px;
}
#qrcode img{
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    width: 100%
}
.whiteBg{
    background: url(https://www.dynatraceinnovateroadshowthailand-eventapp.com/wp-content/uploads/2025/08/white-e1754276377570.jpg);
    padding: 15px;
    border-radius: 20px;
}
.fakeQr{
    position: relative;
    text-align: center;
}
.centeredText{
    color: #000000;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 600px) {
    
}
@media only screen and (min-device-width: 600px) and (max-device-width: 1024px) and (orientation:portrait) {
    .cf-row{
        width: 80%;
    }
}
/* checkin css END */


/*************************************************MODAL CSS****************************************************/
.popup-container {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s visibility ease-in, opacity 0.3s ease-out;
    visibility: hidden;
    opacity: 0;
}
.popup-container.show {
    visibility: visible;
    opacity: 1;
}
.popup {
    position: relative;
    width: 354px;
    min-height: 200px;
    border-radius: 23px;
    background-color: #1D1E21;
    padding: 27px;
    text-align: center;
}
.close-btn{
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}
.close-btn img{
    width: 15px;
}
header.cc-popup{
    font-size: 14px;
    padding: 5px 10px 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
main.cc-popup {
    /* padding: 0 40px 33px; */
    display: flex;
    flex-direction: column;
    align-items: unset;
    justify-content: unset;
    gap: 8px;
}
main.cc-popup p{
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin-top: 23px;
    margin-bottom: 0;
}
footer.cc-popup {
    padding: 40px 40px 0;
}
  /* .middleLine{
    width: 100%;
    height: 2px;
    background: radial-gradient(at center bottom, #FFFFFF, #668AB4);
  } */
  @media only screen and (max-width: 600px){
    .popup{
      width: 80vw;
      margin: auto;
    }
  }
  /* modal css END*/
/*************************************************QUEST CSS****************************************************/
.center-16{
    color: #F6F6F6;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 16px;
}
.center-16.counter{
    color: #94D8FF;
    font-weight: 600;
}
#completeIcon{
    text-align: center;
    width: 90px;
    margin: auto;
}
.booth-container{
    border-radius: 8px;
    padding: 24px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 12px;
}

.top-status{
    color: #FFFFFF;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 8px;
}
.top-status .status-incomplete{
    color: #A5A5A5;
}
.bottom-status{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  align-items: center;
}
.bottom-status p{
  font-size: 14px;
  font-weight: 500;
  color: #94D8FF;
  text-align: left;
  margin-bottom: 0;
}
.left-side{
  max-width: 60%;
}
.activityName{
  color: #FFFFFF!important;
  font-weight: 700!important;
  font-size: 18px!important;
  line-height: 24px!important;
  margin-bottom: 8px!important;
}
.stamp-container{
  width: 94px;
  height: 94px;
  border: 1px solid rgba(174, 174, 174, 0.5);
  border-radius: 50%;
  background: rgba(19, 2, 29, 0.8);
  display: inline-block;
  padding: 10px;
  overflow: hidden;
}
/* .stamp-container img{
  max-width: 70px;
  height: auto;
  transition: opacity 0.3s ease;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */
.stamp-container.fail .letter-logo{
  display: none;
}
.letter-logo{
    color: #343738!important;
    font-weight: 400!important;
    font-size: 40px!important;
    text-align: center!important;
    line-height: 100%;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.stamp-container .scan-text{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
  color: #E1E4F2;
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 0;
  width: max-content;
  cursor:pointer;
}
.stamp-container.success .scan-text {
  display: none;
}
.stamp-container.success{
    border: 1px solid #232324;
    background: #FFFFFF;
}
/* .sponsorName{
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 8px;
} */
/* .instruction{
    color: #C0D6FF;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 0;
} */

.flex{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}