.custom-icon .icon-normal {
  display: inline-block;
}
.custom-icon .icon-bold {
  display: none;
}

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

html {
  font-size: 10px;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.2rem;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: #000000;
  text-decoration: none;
}

.label1 {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 13px;
}

select,
input[type=date],
input[type=datetime-local],
input[type=text] {
  padding: 0.5rem;
  margin: 0;
  border: unset;
  font-size: 1.2em;
  border-radius: 1px;
  font-family: inherit;
  width: 100%;
  margin-bottom: 1rem;
  min-height: 3rem;
  background-color: #fff;
}
select:focus,
input[type=date]:focus,
input[type=datetime-local]:focus,
input[type=text]:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08), 0 0 8px rgba(102, 175, 233, 0.6);
}

.mb-10 {
  margin-bottom: 10px !important;
}

.btn_submit {
  width: 13.8rem;
  height: 3.8rem;
  background: #ffa602;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  font-size: 1.2em;
  color: #fff;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  transition: all 0.25s ease;
  cursor: pointer;
  -ms-transition: all 0.25s ease;
  outline: unset;
  border: unset;
}

.btn_submit[type=submit] {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.4px;
  font-size: 1.6rem;
}

.switch {
  font-size: 7px;
  position: relative;
  width: 7em;
  height: 2em;
  display: inline-block;
}
.switch * {
  font-size: inherit;
}

.switch input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 34px;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-border-radius: 34px;
  -moz-border-radius: 34px;
  -ms-border-radius: 34px;
  -o-border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 3.6em;
  width: 3.6em;
  left: 0px;
  bottom: -0.9em;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-sizing: border-box;
  border: 1em solid white;
  border-radius: 50%;
}

input[type=checkbox]:checked + .slider {
  background-color: #ffd484;
}

input:checked + .slider:before {
  -webkit-transform: translateX(2.6em);
  -ms-transform: translateX(2.6em);
  transform: translateX(4em);
  background: #ffa602;
  box-sizing: border-box;
  border: 1em solid white;
}

.bookcar {
  position: relative;
  background-color: #ecebea;
  padding: 1rem;
}
.bookcar .btn_submit {
  display: block;
}

.nav-service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.nav-service span {
  position: relative;
  font-size: 1.4em;
  color: #7b7b7b;
}
.nav-service span::after {
  content: "";
  width: 0;
  height: 2px;
  background: #ffa602;
  position: absolute;
  bottom: -2px;
  left: 0;
  -webkit-transition: width 0.25s linear;
  -o-transition: width 0.25s linear;
  transition: width 0.25s linear;
}
.nav-service .active a span {
  color: #000;
}
.nav-service .active a span::after {
  width: 50%;
}
.nav-service li {
  position: relative;
}
.nav-service li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.nav-service li .icon {
  margin-right: 5px;
}

.right {
  margin-left: auto;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.w-100 {
  width: 100%;
}

.form-group {
  position: relative;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -1rem;
}
.form-row .form-group {
  width: 50%;
  padding: 0 1rem;
}

@media screen and (max-width: 550px) {
  .form-row {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .form-row .form-group {
    width: 50%;
    padding: 0 1rem;
  }
}
@media screen and (max-width: 320px) {
  .form-row .form-group {
    width: 100%;
    padding: 0 1rem;
  }

  .btn_submit {
    width: 100%;
  }
}
.tab-pane {
  display: none;
  -webkit-transition: opacity 0.25s linear;
  -o-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
}
.tab-pane.active {
  display: block;
}

.nav-service .icon-s1 {
  width: 29px;
  height: 21px;
  display: inline-block;
  background: url(/themes/gocheapvn/assets/img/icon4.png) no-repeat 0 0/contain;
}

.nav-service .icon-s2 {
  width: 31px;
  height: 12px;
  display: inline-block;
  background: url(/themes/gocheapvn/assets/img/icon3.png) no-repeat 0 0/contain;
}

.nav-service .icon-s3 {
  width: 20px;
  height: 22px;
  display: inline-block;
  background: url(/themes/gocheapvn/assets/img/icon2.png) no-repeat 0 0/contain;
}

.nav-service .icon-s4 {
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url(/themes/gocheapvn/assets/img/icon1.png) no-repeat 0 0/contain;
}

.bookcar form input[type=text] {
  padding-left: 3.5rem;
  padding-right: 3rem;
}
.bookcar form .icon-location {
  width: 16px;
  height: 21px;
  top: 5px;
  left: 10px;
  display: inline-block;
  position: absolute;
  background: url(/themes/gocheapvn/assets/img/icon5.png) no-repeat 0 0/contain;
}
.bookcar form .icon-plane {
  width: 19px;
  height: 17px;
  left: 8px;
  top: 6px;
  display: inline-block;
  position: absolute;
  background: url(/themes/gocheapvn/assets/img/icon11.png) no-repeat 0 0/contain;
}
.bookcar form .icon-destination {
  width: 17px;
  height: 16px;
  top: 7px;
  left: 10px;
  display: inline-block;
  position: absolute;
  background: url(/themes/gocheapvn/assets/img/icon7.png) no-repeat 0 0/contain;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid #bbb;
  margin-bottom: 1rem;
}
.header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}
.header img {
  max-height: 30px;
}

.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.checkbox .label {
  font-size: 1.6rem;
  margin-left: 1rem;
}

.form-1.form-row .form-group {
  width: 50%;
}
.form-1.form-row .form-group .btn_submit {
  width: 10rem;
  height: 2.8rem;
}

.plus,
.close {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.plus svg,
.close svg {
  width: 12px;
  height: 12px;
  display: block;
  filter: invert(44%) sepia(1%) saturate(0%) hue-rotate(219deg) brightness(97%) contrast(90%);
}

.plus:hover svg {
  filter: invert(39%) sepia(100%) saturate(1213%) hue-rotate(89deg) brightness(112%) contrast(112%);
}

.close:hover svg {
  filter: invert(12%) sepia(92%) saturate(7497%) hue-rotate(1deg) brightness(104%) contrast(112%);
}

.diem-don {
  position: relative;
}
.diem-don .plus,
.diem-don .close {
  position: absolute;
  top: 15px;
  right: 3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.diem-don .close {
  display: none;
}
.diem-don.clone .plus {
  display: none;
}
.diem-don.clone .close {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media screen and (max-width: 260px) {
  .nav-service li .icon {
    display: none;
  }

  .form-1.form-row .form-group {
    width: 100%;
  }
  .form-1.form-row .form-group .checkbox {
    margin-bottom: 10px;
  }
  .form-1.form-row .form-group .btn_submit {
    width: 100%;
  }
}