@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* @import url('https://fonts.googleapis.com/css2?family=Sriracha&display=swap'); */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans Thai', sans-serif;
    /* font-family: 'Sriracha', cursive; */
}

body {
    color: #303144;
    font-weight: 300;
    font-size: 14px;
}

.bg {
    width: 100%;
    height: 100vh;
    z-index: -2;
    position: absolute;
}

p.error {
  color: #aa141e;
  font-weight: 600;
}

.overlay {
    width: 100%;
    height: 100vh;
    background-color: black;
    position: absolute;
    z-index: -1;
    opacity: 0.4;
    position: fixed;

}

.bg img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: fixed;

}

.navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  background-color: #ffffff70;
  padding: 4px 40px;
  backdrop-filter: blur(10px);
  z-index: 100;
  height: 48px;

}

.navbar .nav-menu {
  display: flex;
  list-style: none;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  max-width: 700px;
  
}

.navbar .nav-menu li {
  text-align: center;
}

.navbar .nav-menu li::after {
  content: '';
  width: 0px;
  height: 2px;
  display: block;
  background: #aa141e9a;
  transition: 300ms;
}

.navbar .nav-menu li:hover::after {
  width: 100%;
}

.navbar .nav-menu a {
  text-decoration: none;
  color: #303144;
  font-weight: 500;

}

.head-logo {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 100;
  right: 0;
  top: 2%;
  padding: 2px 40px;
}

.head-logo img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.head-logo .logo1 {
    height: 38px;
    width: 38px;
    margin-right: 10px;
    object-fit: cover;
    
}

.count-down-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 20px;
    color: #fff;
    flex: 1 1 0;
    /* flex-shrink: 7; */

}

.count-down-container img {
    height: auto;
    max-width: 80%;
    margin-top: 60px;
}

.count-down-container .activity-date {
    font-size: 22px;
    width: 100%;
    max-width:520px;
    border-radius: 5px;
    padding: 4px 0;
    font-weight: 600;
    background: none;
    border: 1px solid #fff;
    color: #fff;
    margin-top: 20px;

}

.count-down-container h1 {
    font-size: 50px;
    text-align: center;

}

.count-down-container p {
    font-size: 16px;
    text-align: center;
}

.countdown-box {
    display: flex;
    align-items: center;
}

.countdown-box.bottom {
    /* margin-bottom: 30px; */
    margin-top: 10px;

}



.countdown-box.top .time-box .number {
    font-size: 100px;
    /* color: #EDD361; */
}


.countdown-box .time-box {
    margin: 0 16px;
    width: 100px;
}

.countdown-box.top .time-box {
    width: 100%;
    padding: 0 40px;
}

.countdown-box .time-box p {
    color: #fff;
}

.countdown-box .time-box .number {
    font-size: 60px;
    font-weight: bold;
}

.countdown-box.top .time-box .unit {
    margin-top: -34px;
}

.countdown-box.bottom  .time-box .unit  {
    margin-top: -16px;
}

#seconds {
    /* background: -webkit-linear-gradient(330deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 60%, rgba(252,176,69,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: #EDD361;
}

.register-box {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  max-width:400px;
  font-size: 20px;
  margin-bottom: 20px;
  align-items: center;
}

.register-box header {
    margin-bottom: 16px;
}


.register-box input{
    padding: 10px 20px;
    border: 1px solid #fff;
    background: none;
    border-radius: 5px;
    width: 300px;
    margin-right: 10px;
}

.register-box input::placeholder {
    color: #dfdfdf;
}

.register-box a {
    background: #AA141F;
    padding: 14px 40px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: ease-in 100ms;
}

.register-box a:hover {
  background: #96111a;
  transition: ease-in 100ms;
  transform: scale(1.02);
}

.status-check {
  margin-top: 20px;
  display: flex;
  border: 1px solid #ffffff84;
  padding: 5px 30px;
  border-radius: 50px;
  background-color: #ffffff20;
  /* width: 100%; */
  /* max-width: 340px; */
}

.register-status-check {
  display: flex;
  width: 100%;
  justify-content: end;
}

.status-check.confirm {
  border-color: #303144;

}

.status-check.confirm a {
  color: #303144;
}

.status-check.confirm svg {
  margin-right: 10px;
  margin-top: 3px;
}

.register-box .status-check a {
  background: none;
  padding: 0;
  /* text-decoration: underline; */
}

.register-box .status-check svg {
  margin-top: 3px;
  margin-right: 10px;
}


.register-box .status-check:hover {
  transition: ease-in 100ms;
  transform: scale(1.02);
}


.register-box .register-text {
  margin-top: 20px;
  font-size: 14px;
}

.register-box .register-header .register-number {
  font-weight: 600;
}




/* MFU Homecoming Gallery CSS */

.gallery-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}




.mfu-homecoming-2016 {

    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1400px;


}

.mfu-homecoming-2016 .gallery-header {
    margin: 20px 0;
    display: flex;
    justify-content: center;


}


img {
    block-size: auto;
    max-inline-size: 100%;
    vertical-align: middle;
}
  
/* Embed */
  
.embed {
    overflow: hidden;
    padding-block-start: 100%;
    position: relative;
}

.embed--1-2 {
  padding-top: calc(100% / (1 / 2));
}

.embed--2-1 {
  padding-top: calc(100% / (2 / 1));
}

.embed--2-3 {
  padding-top: calc(100% / (2 / 3));
}

.embed > * {
  height: 100%;
  left: 0;
  object-fit: cover;
  padding: 0.25em;
  position: absolute;
  top: 0;
  width: 100%;
}

/* Gallery  */

.gallery {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(5, 1fr);
}

.gallery__item--h-2 {
  grid-column-end: span 2;
}

.gallery__item--h-3 {
  grid-column-end: span 3;
}

.gallery__item--v-2 {
  grid-row-end: span 2;
}

.gallery__item--v-3 {
  grid-row-end: span 3;
}
  







.gallery-of-memories-container {
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-of-memories-container .gallery-of-memories {
  width: 100%;
  max-width: 1400px;
}
.gallery-of-memories .header-and-year {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.gallery-of-memories .header-and-year select {
  padding: 4px 40px;
  border-radius: 5px;
  border: 1px solid #E0E0E0;
  font-size: 16px;
  font-weight: 600;
  color: #303144;
}

.gallery-of-memories .picture-container {
  text-align: center;

}


.gallery-of-memories .picture-container img {
  width: 218px;
  height: 160px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: all .2s ease-in-out;
}
.gallery-of-memories .picture-container img:hover {
  transform: scale(1.04);
}

.gallery-of-memories-container .more-picture {
  padding: 10px 20px;
  background-color: #fff;
  border: 1px solid #3E3E3E;
  border-radius: 5px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.gallery-of-memories-container .more-picture a {
  text-decoration: none;
  color: #3E3E3E;
  font-weight: 500;
}




.content-container {
  padding: 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.content-container .accommodation-container  {
  width: 100%;
  max-width: 1400px;
}

.content-container .accommodation-container h1 {
  margin: 30px 0 20px 0;
}


.accommodation-container .accommodation-swipper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.accommodation-container .accommodation-swipper .accommodation-card {
  width: 340px;
  margin-right: 10px;
  margin-bottom: 30px;
  cursor: pointer;
  transition: all .2s ease-in-out;
}

.accommodation-container .accommodation-swipper .accommodation-card:hover {
  transform: scale(1.02);
}

.accommodation-container .accommodation-swipper .accommodation-card.attraction {
  width: 240px;
}

.accommodation-container .accommodation-swipper .accommodation-card img {
  width: 340px;
  height: 340px;
  object-fit: cover;
  border-radius: 5px;
}

.accommodation-container .accommodation-swipper .accommodation-card.attraction img {
  width: 240px;
  height: 240px;
}

.accommodation-container .accommodation-swipper .accommodation-card .title1 {
  font-weight: 600;
  font-size: 18px;
  margin-top: 10px;
}

.accommodation-container .accommodation-swipper .accommodation-card .distance {
  font-weight: 600;
  margin-top: 5px;
}




/* Footer CSS */


.footer-container {
  background: url('src/footer-bg.png');
  color: #E3E3E3;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 300px;

}


.footer-container ul {
  display: flex;
  list-style: none;
  justify-content: center;
  margin-top: 20px;
}

.footer-container a {
  text-decoration: none;
  margin: 0 16px;
  font-weight: 500;
  color: #E3E3E3;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin-top: 70px;
}

.contact-detail2 {
  text-align: center;

  margin-bottom: 40px;

}

.contact-detail2 p, a {
  font-size: 13px;
  color: #cdcdcd;
  margin-bottom: 4px;
}

.contact-detail2 i {
  width: 20px;
  height: 20px;
  font-size: 20px;
  margin: 10px 5px;
  
}

.footer-content .social-icon {
  margin-top: 10px;
}

.footer-content .social-icon i {
  margin-right: 10px;
}

.footer-content p {
  font-size: 13px;
}

.footer-content .contact-detail {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.powered-by p{
  font-size: 12px;
  color: #959595;

}

.powered-by {
  display: flex;
  align-items: end;
  justify-content: center;
  
  margin-bottom: 10px;

}

.powered-by2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* background-color: #303144b3; */
  /* width: 100%; */
  /* position: fixed; */
  /* bottom: 0; */
  /* padding: 4px 0; */
}

.logo-img {
  display: flex;
  height: 30px;
}

.powered-by2 p {
  font-size: 13px;
  opacity: 0.7;

}

.powered-by2 a {
  text-decoration: none;
}

.powered-by2 .footer-img {
  height: 20px;
  margin: 0 10px;
}






/* Register CSS */

.register-header-container .header-bg {
  width: 100%;
  height: 360px;
  position: absolute;
  z-index: -1;

}

.register-header-container .header-bg.search {
  height: 200px;
}

.register-header-container {
  width: 100%;
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 10px;
}

.register-header-container.search {
  height: 200px;
  
}

.language-btn {
  display: flex;
  width: 100%;
  justify-content: end;
  align-items: center;
  margin: 20px 0;
  max-width: 1048px;
}

.language-btn button {
  border: none;
  background: none;
  padding: 6px 10px;
  margin-right: 14px;
  color: #303144;
}

.language-btn a {
  color: #303144;
}
.language-btn .bth {

  color: #303144;
}

.language-btn .language {
  padding: 10px 40px;
  border-radius: 8px;
  border: 1px solid #303144;
  color: #303144;
  background: none;
  cursor: pointer;
}

.language-btn .language.active {
  background: #303144;
  padding: 10px 40px;
  border: none;
  color: #fff;
  border-radius: 8px;
}

.language-btn .language.left {
  margin-right: 10px;
}

.register-header-container h1 {
  font-size: 40px;
  text-align: center;
}

.register-header-container h2 {
  font-size: 17px;
  margin-top: -14px;
  font-weight: 500;
}

.register-header-container .logo2 {
  max-width: 240px;
  margin-bottom: 12px;
}

.register-header-container .header-bg img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  
}

.register-header-container .header-bg.search img {
  height: 200px;
}

.register-header-container .activity-date {
  font-size: 20px;
  margin: 10px 0;
  width: 100%;
  max-width:420px;
  border-radius: 10px;
  padding: 4px 0;
  background: #aa141e;
  font-weight: 600;
  text-align: center;
}

.register-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.register-container.mfu-run-2023 {
  background: rgb(172,5,35);
  background: linear-gradient(90deg, rgba(172,5,35,1) 0%, rgba(41,17,67,1) 100%);
  margin-top: 30px;
  border-radius: 10px;
  padding: 10px;
  position: relative;
}

.card-title-header.mfu-run-2023 {
  background: rgb(172,5,35);
  background: linear-gradient(90deg, rgba(172,5,35,1) 0%, rgba(41,17,67,1) 100%);
  color: #fff;
}

.fill-info-card.mfu-run-2023 {
  background: rgb(172,5,35);
  background: linear-gradient(90deg, rgba(172,5,35,1) 0%, rgba(41,17,67,1) 100%);
  color: #fff;
}

.card-title-header.confirm {
  margin-top: 60px;
}

.card-title-header.confirm.search {
  margin: 0;
}

.card-title-header.confirm.full {
  margin-top: 20px;
}

.register-container .message2 {
  font-size: 14px;
}

.register-container .card-title-header {
  width: 100%;
  max-width: 1048px;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  border-bottom: 2px solid #F5F5F5;
  padding: 14px 20px;
  font-size: 20px;
  font-weight: 600;
}

.register-container .fill-info-card {
  width: 100%;
  background-color: #fff;
  max-width: 1048px;
  border-radius: 0 0 10px 10px;
  padding: 20px;
}

.register-container.mfu-run-2023 .fill-info-card .bold {
  font-weight: 600;
}


.package-container {
  padding: 5px 10px 20px 10px;
  background-color: #30314410;
  border-radius: 10px;
  border: 1px dashed #303144;
  margin-top: 14px;

}

.package-container.bottom {
  margin-top: 20px;
  padding-top: 20px;
}

.preview-box {
  margin-top: 16px;
}

.preview-box img {
  border-radius: 8px;
  border: 1px solid #E0E0E0;
}

.preview-box.mfu-shirt {
display: flex;
justify-content: center;
}

.preview-box.mfu-shirt img {
  width: 100%;
}

.register-container .fill-info-card .route {
  background-color: #a0434820;
  text-align: center;
  padding: 6px 0;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
}

.register-container .fill-info-card .route.two {
  background-color: #4360a020;
  margin-top: 40px;
}

.register-container .fill-info-card .box-full {
  margin: 20px 0;
}

.register-container .fill-info-card .box-half {
  margin: 20px 0;
}



.register-container .fill-info-card .box .fill-title {
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 500;
}

.register-container .fill-info-card .fill-title.out {
  font-size: 16px;
  font-weight: 500;
  margin: 30px 0 10px 0;
}

.register-container .fill-info-card .box input {
  border: 1px solid #E0E0E0;
  width: 100%;
  padding: 6px 10px;
  border-radius: 5px;
}

.register-container .fill-info-card .box p {
  margin-top: 5px;
}

.register-container .fill-info-card .box input::placeholder{
  color: #979797;
  font-size: 12px;
  font-weight: 300;
}

.box-half {
  display: flex;
  width: 100%;
}

.box-half .box {
  width: 100%;
}

.box-half .box.left {
  margin-right: 10px;
}

.register-container .fill-info-card .box-half.top {
  margin-top: 0px;
}

.register-container .fill-info-card .box.radio {
  margin-top: 20px;
}

.register-container .fill-info-card .box.radio .choices-radio {
  display: flex;
  width: 100%;

}

.register-container .fill-info-card .box.radio .choices-radio div {
  margin-bottom: 5px;
}

.register-container .fill-info-card .box.radio .choices-radio input {
  margin-right: 8px;
  width: 16px;
}

.register-container .fill-info-card .box.radio .choices-radio label {
  margin-right: 30px;
}


.input-and-remove-box {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.input-and-remove-box .input-remove {
  border: 1px solid #E0E0E0;
  padding: 6px 10px;
  border-radius: 3px;
  color: #9F4347;
  background-color: #fff;
  margin-left: 10px;
  cursor: pointer;
}

.add-btn {
  background-color: #fff;
  padding: 8px 30px;
  border-radius: 5px;
  border: 1px solid #9F4347;
  color: #9F4347;
  font-weight: 500;
  cursor: pointer;
  margin-top: 10px;
}

.box .form-control {
  border: 1px solid #E0E0E0;
  width: 100%;
  padding: 6px 10px;
  border-radius: 5px;
}

.submit-form-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.submit-form-container .submit-form {
  width: 100%;
  max-width: 1048px;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.submit-form-container .submit-form p {
  text-align: end;
}

.submit-form-container .submit-form .term-of-condition {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.submit-form-container .submit-form .term-of-condition input {
  margin-right: 10px;
  width: 16px;
  height: 16px;
  
}

.submit-form-container .submit-form .term-of-condition label {
  margin-right: 5px;
  font-weight: 500;
}

.submit-form-container .submit-form button {
  background-color: #9E4348;
  padding: 8px 0;
  width: 50%;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  
}

.submit-form-container .submit-form button:hover {
  background-color: #8e3d41;
  cursor: pointer;
}

.box .choices-radio.package {
  display: flex;
  flex-direction: column;
  align-items: start;
  /* padding: 5px 0; */
}


.box .choices-radio.package .list-item {
  display: flex;
  margin-top: 6px;
  align-items: center;
  width: 100%;
  padding-right: 10px;
}

.box .choices-radio.package .list-item input {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  

}

.choices-radio.package .price-tag {
  font-weight: 600;
}

.choices-radio.package .dash {
  text-decoration: line-through;
  font-weight: 300;
}

.choices-radio.mfu-run label {
  margin-top: 6px;
}



.add-follower {
  border: 2px dotted #E0E0E0;
  border-radius: 8px;
  padding: 0 20px;
  margin: 10px 0;

}

.box .over-12-years-old {
  display: flex;
  align-items: center;
  width: 100%;
  height: 34px;
  padding-bottom: 20px;


}

.box .over-12-years-old div {
  width: 16px;
  height: 16px;
  display: flex;
  margin-right: 10px;
}

.box .over-12-years-old label {
  font-weight: 500;
}

.box.shirt-size {
  width: 100%;
}

.form-control.shirt {
  margin-bottom: 5px;
}

.box.shirt-size.full {
  width: 80%;
  margin-top: 20px;
}

.box.shirt-size.full.mfu {
  width: 100%;
  margin-top: 30px;
}

.merchandise {
  width: 200px;
  border-radius: 5px;
  
}



.package-container.merchandises-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-weight: 500;
  padding: 10px 20px;
  margin-top: 10px;
}

.package-container.merchandises-box .number {
  width: 20px;
}

.package-container.merchandises-box .merchandise-picture {
  width: 25%;
  text-align: center;
  padding: 10px;
}

.package-container.merchandises-box .merchandise-img {
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.package-container.merchandises-box .merchandise-name {
  width: 30%;
  font-weight: 500;
  padding: 0 10px;
}

.package-container.merchandises-box .merchandise-price {
  width: 20%;
  padding: 0 10px;
  
}

.package-container.merchandises-box .number-and-size {
  width: 25%;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.package-container.merchandises-box input {
  background-color: #fff;
  padding: 5px;
  width: 50%;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-top: 5px;
}


.total-price {
  padding: 16px 20px;
  display: flex;
  justify-content: center;
  align-items: end;
  background-color: #303144;
  color: #fff;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  position: sticky;
  bottom: 0;

}

.hilight-price {
  font-weight: 600;
  font-size: 18px;
}

.total-price.top {
  margin: 20px 0;
  border-radius: 10px;
  justify-content: end;
  max-width: 1048px;
}

.customer-info {
  display: flex;
  width: 100%;
  padding: 0 30px;
}

.info-box.left {
  width: 42%;
}

.info-box {
  width: 58%;
}

.info-box.summary {
  width: 100%;
}

.table-box {
  display: flex;
  text-align: center;
  font-weight: 600;
  /* margin-top: 10px; */
}

.table-box.header div {
  font-size: 14px;
}

.summary-table {
  margin: 10px 0;
}

.table-box.data {
  font-weight: 300;
  padding-left: 10px;
}


.table-box .box1 {
  width: 45%;
}

.table-box .box2, .box3, .box4 {
  width: 18%;
}

.table-box.data {
  margin-bottom: 8px;
}

.table-box.data .box1 {
  text-align: start;
}

.table-box.data .box1.sub {
  font-size: 13px;
}

.table-box .box3, .table-box .box4 {
  text-align: end;
}

.main-title {
  font-weight: 600;
  background-color: #6464641a;
  padding: 3px 10px;
  margin: 10px 0;
}

.main-title.total {
  display: flex;
  justify-content: space-between;
  padding-right: 5px;
}


.watermark {
  position: absolute;
  width: 80%;
  transform: rotate(-30deg);
  /* top: 10%; */
  opacity: 0.03;
  z-index: 0;
}

.payment-date {
  text-align: end;
  font-size: 13px;
  padding-right: 5px;
}

.info-box .header {
  font-size: 18px;
  margin: 20px 0 10px 0;
}

.highlight {
  font-weight: 600;
}

.highlight.color {
  background-color: #ff21212a;
  padding: 0 40px 0 10px;
}

.ref-box2 {
  margin-top: 5px;
}



.barcode {
  margin-bottom: 20px;
}

.remark {
  text-align: center;
}


.service-code {
  margin-top: 24px;
}

.ref-box {
  margin: 20px 0;
}

.info.address {
  margin-top: 20px;
}

.submit-btn2 {
  display: flex;
  width: 100%;
  max-width: 1048px;
  justify-content: end;
  flex-direction: row;
  align-items: center;
  margin: 20px 0;
}

.submit-btn2 a {
  padding: 0 20px;
  text-decoration: none;
  color: #303144;

}

.submit-btn2 .print {
  background-color: #9E4348;
  padding: 8px 80px;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  
}

.print:hover {
  background-color: #8e3d41;
  cursor: pointer;
}


.search-title {
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 500;
}

.fill-info-card hr {
  border: 1px solid #F5F5F5;
  margin: 20px 0;
}

.search-input {
  background-color: #fff;
  padding: 5px;
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-top: 5px;
}

.search-input::placeholder {
  color: #dfdfdf;
}

.fill-info-card.search-page p {
  font-size: 13px;
  margin-bottom: 10px;
}

.fill-info-card.search-page a {
  margin-left: 20px;
  color: #303144;
}

.fill-info-card.search-page button {
  background-color: #9E4348;
  padding: 5px 40px;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-weight: 500;
}

.fill-info-card.search-page button:hover {
  opacity: 0.9;
  cursor: pointer;
}



.result-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 40px 0;


}

.result-box.scroll {
  display: flex;
  align-items: start;
  overflow-x: scroll;
  overflow: scroll;
  background-color: rgba(0, 0, 0, 0.056);
  padding: 10px;
  border-radius: 5px;
}

.result-box table {
  width: 800px;
}

.result-box table .center {
  text-align: center;
}

.result-box table .status {
  font-weight: 600;
}

.result-box table .end {
  text-align: end;
}

.result-box table td {
  padding: 5px 0;
}

.fill-info-card.search-page .contact-btn {
  background-color: #303144;
  font-size: 15px;
  /* width: 50%; */
  padding: 6px 60px;

}

.alumni-link {
  text-decoration: none;
  font-weight: 600;
  color: #fff;
}

.width40 {
  width: 80%;
  margin-top: 14px;
}

.overlay2 {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.403);
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preload {
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-weight: 400;

}

.preload img {
  margin-bottom: 10px;
}

.promotion-tag {
  position: absolute;
  top: -18px;
  right: -30px;
  background: rgb(172,5,35);
  background: linear-gradient(90deg, rgba(172,5,35,1) 0%, rgba(41,17,67,1) 100%);
  color: #fff;
  padding: 10px 40px;
  border-radius: 5px;
  rotate: 14deg;
}

.fill-title.shuttle-bus {
  margin-top: -20px;
}

.fill-title.shuttle-bus label {
  font-size: 18px;
}




@media (max-width: 480px) {


  .countdown-box.top .time-box .number {
    font-size: 74px;
    /* color: #EDD361; */
}

.unit {
  padding-top: 5px;
}

.countdown-box.bottom .number {
  font-size: 44px;
}

  .register-box {
    margin-top: 14px;
  }

  .register-box header {
    display: none;
  }



  .box-half {
    display: block;
    width: 100%;
  }

  .register-container .fill-info-card .box.radio .choices-radio {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .box.post {
    margin-top: 24px;
  }

  .box .choices-radio.package .list-item {
    margin-bottom: 14px;
    /* background-color: red; */
    align-items: first baseline;
    /* padding: 0; */
    margin: 0;
  }

  .box.shirt-size.full {
    width: 100%;
    margin-top: 5px;
  }

  .width40 {
    width: 100%;
  }

  .package-container.merchandises-box {
    flex-direction: column;
    width: 100%;
  }

  .package-container.merchandises-box .merchandise-picture {
    width: fit-content;
  }

  .package-container.merchandises-box .merchandise-name {
    width: 100%;
    text-align: center;
  }

  .package-container.merchandises-box .merchandise-price {
    width: 100%;
    text-align: center;
  }

  .package-container.merchandises-box .number-and-size {
    width: 100%;
  }

  .package-container.merchandises-box .number-and-size input {
    width: 100%;
  }

  .footer-content {
    display: block;
    text-align: center;
    padding: 0;
    margin: 10px;
  }

  .footer-content .contact-detail {
    display: none;
  }

  .powered-by2 {
    margin-top: -10px;
  }

  .header-contact::before {
    content:'สมาคมนักศึกษาเก่า มหาวิทยาลัยแม่ฟ้าหลวง' ;
    font-size: 20px;
    font-weight: 600;
  }

  .fill-info-card .customer-info.confirmation {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .fill-info-card .customer-info.confirmation .info-box.left {
    width: 100%;
  }


  .fill-info-card .customer-info.confirmation .info-box.right {
    width: 100%;
    margin-top: 30px;
  }

  .table-box.header {
    display: none;
  }

  .submit-btn2 {
    flex-direction: column
  }

  .submit-btn2 div {
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
  }


  .submit-btn2 .print {
    /* width: 100%; */
    padding: 5px 40px;
  }

  .register-status-check {
    justify-content: center;
    margin-top: 0;

  }

  .register-status-check .status-check.confirm {
    margin: 0;
  }
}