@charset "UTF-8";
* {
  font-family: Roboto;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

.title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0;
}

.title-box > .main-title {
  font-size: 35px;
  line-height: 35px;
  color: #393939;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 25px;
  text-align: center;
}

.title-box > .underline {
  width: 180px;
  height: 5px;
  background: #184298;
}

main {
  min-height: calc(100vh - 180px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main > section {
  padding-top: 53px;
  padding-bottom: 57px;
}

.mobile-only {
  display: none;
}

@media screen and (max-width: 1024px) {
  main {
    min-height: calc(100vh - 140px);
  }
}
@media screen and (max-width: 480px) {
  main > section {
    position: relative;
    padding-top: 33px;
    padding-bottom: 30px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}
.news-bg, .vendors-bg {
  background: #efeff4;
}

.news-wrapper {
  width: 90vw;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 35px;
  padding: 30px 0;
}

.news-date {
  font-size: 16px;
  color: #8e8e93;
  margin-top: 50px;
  margin-bottom: 10px;
}

.content-title {
  font-size: 25px;
  line-height: 25px;
  font-weight: 500;
}

.separator {
  background-color: #d8d8d8;
  border: 0.5px solid #d8d8d8;
  width: 90vw;
  max-width: 1200px;
  margin: 30px 0;
}

.content-img {
  width: 750px;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 30px;
  background: #8e8e93;
}

.content > p {
  color: #323234;
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 20px;
}

.list-box {
  width: 90vw;
  max-width: 1200px;
  padding: 5px;
  margin-bottom: 15px;
  border-radius: 10px;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 3px 15px #d1d1d6;
}
.list-box:hover .list-title > p {
  color: #184298;
}
.list-box:hover .post-title > a {
  color: #184298;
}

.list-img {
  background-color: #8e8e93;
  width: 16%;
  min-width: 180px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.list-date {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12%;
  min-width: 140px;
}
.list-date > p {
  font-size: 20px;
  color: #8e8e93;
}

.list-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 57%;
  justify-content: flex-start;
  padding: 10px;
}
.list-title > p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 20px;
  color: #1b2335;
}

.list-readmore {
  display: flex;
  justify-content: center;
  align-items: center;
  order: 1;
  width: 15%;
  min-width: 150px;
}
.list-readmore > a {
  display: flex;
}
.list-readmore p {
  font-size: 16px;
  color: #8e8e93;
  margin-right: 10px;
}

.pag-list-bg {
  background: #ffffff;
  padding: 25px 0 35px;
}

.pag-list {
  margin: 0 auto;
  width: 90vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-bg .pag-list {
  max-width: 1200px;
}

.vendors-bg .pag-list {
  max-width: 1440px;
}

#pag-num-list {
  display: flex;
}
#pag-num-list a {
  text-decoration: none;
}

.pag-num-box {
  font-size: 20px;
  color: #1b2437;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
}
.pag-num-box svg {
  height: 32px;
  width: 32px;
  stroke: #1b2437;
  stroke-width: 2;
  fill: none;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.pag-num-box.dots {
  cursor: default;
}
.pag-num-box.active {
  background: #184298;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: default;
}
.pag-num-box.active > svg {
  stroke: #ffffff;
}

.pag-num-box > .disabled {
  cursor: default;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .news-date {
    margin-top: 0;
  }

  .content-title {
    font-size: 20px;
    line-height: 22px;
  }

  .separator {
    margin: 20px;
  }

  .content-img {
    width: 360px;
    height: 200px;
    margin-bottom: 20px;
  }

  .content > p {
    font-size: 14px;
    line-height: 18px;
  }

  .list-box {
    display: grid;
    grid-template-columns: 180px 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-areas: "img date" "img title" "img title" "img readmore";
    width: 100%;
  }

  .list-img {
    grid-area: img;
  }

  .list-date {
    grid-area: date;
    width: 100%;
    justify-content: flex-start;
    padding-left: 10px;
    min-width: 0;
  }

  .list-title {
    grid-area: title;
    width: 100%;
    padding: 0;
    padding-left: 10px;
  }

  .list-readmore {
    grid-area: readmore;
    width: 100%;
    min-width: 0;
  }
  .list-readmore > a {
    width: 100%;
    justify-content: flex-end;
  }

  .news-wrapper {
    margin: 0 auto;
  }
}
@media screen and (max-width: 400px) {
  .list-box {
    grid-template-columns: 140px 1fr;
  }

  .list-img {
    min-width: 140px;
    height: 100px;
  }

  .list-date > p {
    font-size: 16px;
  }

  .list-title > p {
    font-size: 16px;
  }

  .list-readmore p {
    font-size: 14px;
    margin-right: 5px;
  }

  .list-readmore svg {
    transform: scale(0.8);
  }

  .pag-num-box {
    width: 25px;
    height: 25px;
    font-size: 16px;
  }

  .pag-num-box svg {
    transform: scale(0.75);
  }
}
.bidding-wrapper {
  width: 90vw;
  height: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 80px;
}

#clock-title {
  margin: 0 auto 10px;
  color: #8e8e93;
  font-weight: 400;
  font-size: 26px;
}

#clockdiv {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
#clockdiv > span {
  font-size: 28px;
  line-height: 50px;
  color: #8e8e93;
  margin-top: -5px;
  display: block;
}
#clockdiv > div {
  display: flex;
  margin: 0px 5px;
  width: 90px;
  height: 50px;
  border: 2px solid #d1d1d6;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 7px #d1d1d6;
  font-size: 28px;
  line-height: 50px;
}
#clockdiv > div > span {
  color: #282828;
}

.bidding-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 45px 1fr auto;
  -moz-column-gap: 20px;
       column-gap: 20px;
  grid-template-areas: "gallery title title" "gallery product table" "gallery bid table";
  width: 100%;
}

.image-gallery {
  grid-area: gallery;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-gallery #large-image {
  width: 90%;
  height: 330px;
  max-width: 550px;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid #d1d1d6;
  border-radius: 5px;
}

.small-image-list {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  width: 90%;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.small-image-list::-webkit-scrollbar {
  display: none;
}

.image-gallery .small-image {
  width: 76px;
  flex: 1;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
  border: 1px solid #d1d1d6;
  border-radius: 4px;
}
.description {
  width: calc(66.7% - 10px);
  margin-left: 10px;
}

.des-title {
  grid-area: title;
  border-bottom: 1px solid #c7c7cc;
  padding-bottom: 15px;
  height: 100%;
}
.des-title a {
  text-decoration: underline;
}
.des-title h3 {
  font-size: 28px;
  color: #282828;
  line-height: 28px;
  text-align: left;
}

.des-content {
  display: flex;
  justify-content: space-between;
}

.product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 10px;
}

.product-box {
  grid-area: product;
  margin-top: 20px;
}

.product-box h5 {
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 10px;
  color: #282828;
}

.bidding-box h5 {
  margin-bottom: 15px;
}

.product-box > p {
  font-size: 18px;
  line-height: 22px;
  color: #808080;
}

span.bidding-price {
  font-size: 25px;
  color: #184298;
  font-weight: bold;
}

span.current-bidder {
  color: #8e8e93;
  margin-left: 12px;
}

.bidding-box {
  grid-area: bid;
  align-self: end;
  margin-top: 20px;
}

.bidding-box h5 {
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 10px;
  color: #282828;
}

.bidding-box .input-box {
  display: flex;
  justify-content: space-between;
}
.bidding-box .input-box form {
  width: 100%;
}

.bidding-input {
  width: 75%;
  height: 40px;
  font-size: 18px;
  border-radius: 5px;
  border: 1px solid #c7c7cc;
  background: rgba(142, 142, 147, 0.09);
  padding: 10px;
}

.bidding-btn {
  width: 21%;
  height: 40px;
  border-radius: 5px;
  border: none;
  background: #184298;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
}
.bidding-btn.disabled {
  border: 1px solid #979797;
  background: #8e8e93;
  cursor: default;
}

.table {
  grid-area: table;
  margin-top: 20px;
  margin-left: 10px;
}

.table h5 {
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 10px;
  color: #282828;
}

.table table {
  font-size: 18px;
  border-spacing: 0;
  box-shadow: 0 6px 10px #e5e5ea;
}

.table tr,
.table th {
  height: 50px;
}

.table tr th:first-child {
  border-top-left-radius: 5px;
}
.table tr th:last-child {
  border-top-right-radius: 5px;
}

.table th,
.table td {
  width: 155px;
  text-align: center;
}

.table thead {
  background: #3e577e;
  color: #ffffff;
}

.tbody {
  max-height: 300px;
  overflow: auto;
}

tbody tr:nth-child(odd) {
  background: #fff;
}
tbody tr:nth-child(even) {
  background: #e9ecf0;
}
tbody tr:last-child td:first-child {
  border-bottom-left-radius: 5px;
}
tbody tr:last-child td:last-child {
  border-bottom-right-radius: 5px;
}

.login-wrapper {
  position: absolute;
  top: 20px;
  right: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

svg#loginSVG {
  display: block;
}

svg#logoutSVG {
  transform: translateX(2px);
  display: none;
}

.login svg#loginSVG {
  display: none;
}

.login svg#logoutSVG {
  display: block;
}

#login-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
  background: none;
  cursor: pointer;
}

#login-btn {
  width: 70px;
  height: 70px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(180deg, #3577c9, #184298);
  display: flex;
  justify-content: center;
  align-items: center;
}

.login #login-btn {
  background: linear-gradient(180deg, #afafb5, #77777e);
}

.login-title {
  color: #8e8e93;
  font-size: 15px;
  font-weight: normal;
  margin-top: 5px;
}

.login-wrapper > #bubble {
  display: none;
  position: relative;
  width: 180px;
  padding: 10px 25px;
  margin-top: 30px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background: #ffffff;
  filter: drop-shadow(0 5px 10px rgba(199, 199, 204, 0.5));
}
.login-wrapper > #bubble:after {
  content: "";
  position: absolute;
  top: -25px;
  right: 0;
  width: 25px;
  height: 25px;
  background: #ffffff;
  -webkit-clip-path: path("M 25 25 L 25 0 A 50 50 0 0 1 0 25 L 25 25");
          clip-path: path("M 25 25 L 25 0 A 50 50 0 0 1 0 25 L 25 25");
}

.login-wrapper > #bubble > p {
  font-size: 18px;
  line-height: 20px;
  color: #808080;
}

.login-wrapper > #bubble > button {
  font-size: 18px;
  line-height: 20px;
  width: 100%;
  background: #184298;
  margin-top: 10px;
  border: 0;
  color: #ffffff;
  padding: 5px 0;
  border-radius: 5px;
  cursor: pointer;
}

#bubble.active,
#block.active,
#login.active,
#create.active {
  display: block !important;
}

#block {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

#login,
#create {
  display: none;
  width: 500px;
  background: #ffffff;
  border-radius: 10px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 38px 45px;
}
#login > .title-box,
#create > .title-box {
  margin-top: 0;
}

.login-input-wrapper {
  margin-top: 30px;
}
.login-input-wrapper .input-box {
  display: block;
  margin: 20px auto 0;
  width: 100%;
  height: 50px;
  border: 1px solid #adadad;
  font-size: 16px;
  border-radius: 5px;
  padding: 0 16px;
}
.login-input-wrapper .input-box:focus {
  border: 2px solid #184298;
  outline: none;
}
.login-input-wrapper .input-box:focus + .input-label {
  display: block;
}

.input-label {
  padding: 3px 8px;
  position: absolute;
  font-size: 12px;
  color: #184298;
  background: #ffffff;
  top: -12px;
  left: 10px;
  text-transform: capitalize;
  display: none;
}

.button-box {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
.button-box button {
  width: calc((100% - 20px) / 2);
  height: 50px;
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
}

.button-box > .button-cancel {
  border: 1px solid #979797;
  color: #282828;
  background: #ffffff;
}

.button-box > .button-sign {
  color: #ffffff;
  background: #184298;
  border: 1px solid #184298;
}

.login-p {
  font-size: 14px;
  color: #9ea0a5;
}
.login-p > #sign-up,
.login-p > #sign-in {
  cursor: pointer;
  color: #184298;
  text-decoration: underline;
}

.checkbox {
  margin-top: 18px;
  font-size: 14px;
  line-height: 18px;
  display: flex;
}
.checkbox > input {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}
.checkbox span {
  color: #9ea0a5;
}
.checkbox a {
  color: #56575a;
}

.no-bidding-text {
  color: #8e8e93;
  font-size: 20px;
  line-height: 28px;
  margin-top: 25px;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .title-box > .main-title {
    font-size: 25px;
    margin-bottom: 15px;
  }

  #clock-title {
    font-size: 24px;
  }

  #clockdiv {
    margin-bottom: 30px;
  }

  .bidding-content {
    display: block;
  }

  .image-gallery {
    margin-bottom: 30px;
  }

  .des-title {
    padding-bottom: 10px;
  }

  .des-title h3 {
    font-size: 22px;
    text-align: center;
  }

  .product-box {
    margin-top: 18px;
  }

  .product-box h5 {
    font-size: 18px;
  }

  .product-box > p {
    font-size: 16px;
  }

  .table {
    margin-left: 0;
    margin-bottom: 30px;
  }

  .table h5 {
    font-size: 18px;
  }

  .table th,
.table td {
    width: 30vw;
  }

  .tbody {
    max-height: none;
  }

  .input-box {
    flex-direction: column;
  }

  .bidding-box h5 {
    font-size: 18px;
  }

  span.bidding-price {
    font-size: 20px;
  }

  span.current-bidder {
    margin-left: 8px;
  }

  .bidding-input {
    width: 100%;
    margin-bottom: 20px;
  }

  .bidding-btn {
    width: 100%;
  }

  .login-wrapper {
    top: 10px;
    right: 8px;
  }

  #login-btn {
    transform: scale(calc(5 / 7), calc(5 / 7));
  }

  .login-title {
    font-size: 14px;
    margin-top: -5px;
  }

  .login-wrapper > #bubble {
    margin-top: 15px;
    width: 120px;
    padding: 8px 12px;
  }

  .login-wrapper > #bubble:after {
    top: -16px;
    width: 16px;
    height: 16px;
    -webkit-clip-path: path("M 16 16 L 16 0 A 50 50 0 0 1 0 16 L 16 16");
            clip-path: path("M 16 16 L 16 0 A 50 50 0 0 1 0 16 L 16 16");
  }

  .login-wrapper > #bubble > p {
    font-size: 16px;
  }

  .login-wrapper > #bubble > button {
    font-size: 16px;
    margin-top: 8px;
    padding: 3px 0;
  }

  #login,
#create {
    max-width: 90vw;
    padding: 25px 20px;
    max-height: 90vh;
    overflow: auto;
  }

  .login-input-wrapper .input-box {
    margin-top: 15px;
  }

  .no-bidding-text {
    font-size: 18px;
    line-height: 24px;
  }
}
@media screen and (max-width: 480px) {
  .image-gallery #large-image {
    height: 250px;
  }
}
* {
  box-sizing: border-box;
}
*:before, *:after {
  box-sizing: border-box;
}
*:focus, *:active {
  outline: none;
}

html {
  font-size: 20px;
}

body,
ul,
p,
input,
button,
figure {
  margin: 0;
  padding: 0;
}

body {
  padding-top: 100px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-progress-appearance: none;
}

input {
  border: none;
}

button {
  background-color: initial;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

h1,
h2,
h3,
h4 {
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 3.5rem;
  font-family: Raleway;
  line-height: 4rem;
  text-align: center;
  text-shadow: 0 6px 6px rgba(5, 24, 75, 0.65);
}

h2 {
  font-size: 1.75rem;
  font-weight: 400;
  font-family: Raleway;
  line-height: 2rem;
  margin-bottom: 50px;
  text-align: center;
  color: #393939;
}
h2:after {
  content: "";
  display: block;
  margin: 14px auto 0;
  width: 160px;
  height: 5px;
  background-color: #184298;
}

h3 {
  font-size: 1.5rem;
  font-weight: 400;
  font-family: Roboto;
  line-height: 1.95rem;
  text-align: center;
}

h4 {
  font-size: 1rem;
  font-weight: 400;
  font-family: Roboto;
  line-height: 1.3rem;
}

.root-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 100px);
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}
.form-group:last-child {
  margin-bottom: 0;
}
.form-group input {
  font-size: 1.1rem;
  line-height: 40px;
  border-radius: 5px;
  padding-left: 16px;
  border: 1px solid #c7c7cc;
}
.form-group input.focus {
  border-color: #184298;
}
.form-group input.focus + label {
  top: 0;
  font-size: 0.6rem;
  opacity: 1;
  color: #184298;
}
.form-group .form-input-wrapper {
  display: flex;
}

.append-icon-wrapper {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0, -50%);
  cursor: pointer;
}
.append-icon-wrapper .dmt-eye-blocked {
  display: none;
}
.append-icon-wrapper.visible .dmt-eye-blocked {
  display: block;
}
.append-icon-wrapper.visible .dmt-eye {
  display: none;
}

#q-type {
  font-size: 1.1rem;
  color: #8e8e93;
  line-height: 40px;
  width: 100%;
  padding-left: 16px;
  border-color: #c7c7cc;
  border-radius: 5px;
  cursor: pointer;
}

.select-type-wrapper {
  position: relative;
  flex: 1 1 600px;
}
.select-type-wrapper:after {
  content: "";
  position: absolute;
  right: 17px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 7px solid #c7c7c7;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  transform: translate(0, -50%);
  pointer-events: none;
}
.select-type-wrapper option {
  border-color: #c7c7cc;
}
.select-type-wrapper option[disabled] {
  display: none;
}

.form-error-message {
  font-family: NotoSansCJKtc-Medium;
  font-size: 0.8rem;
  color: red;
}

.g-recaptcha > div {
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  body {
    padding-top: 60px;
  }
}
@media screen and (max-width: 480px) {
  html {
    font-size: 16px;
  }

  body {
    padding-top: 60px;
  }

  h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  h2 {
    font-size: 1.56rem;
    line-height: 1.875rem;
    margin-bottom: 40px;
  }
  h2:after {
    margin-top: 10px;
  }

  h3 {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  h4 {
    font-size: 1.1rem;
  }
}
.header {
  position: fixed;
  left: 0;
  top: 0;
  background-color: white;
  width: 100%;
  z-index: 2;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.25);
}
.header .top-bar {
  background: linear-gradient(#3e577e, #1d2c48);
}
.header .top-bar .top-bar-wrapper {
  display: flex;
  justify-content: flex-end;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 20px;
}
.header .quick-search-wrapper {
  position: relative;
  padding: 5px 0;
  margin-right: 20px;
}
.header .quick-search-wrapper input {
  font-family: Roboto;
}
.header .icon-srch {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 1;
}
.header .lang-select-wrapper {
  display: flex;
  align-items: center;
}
.header .lang-select-wrapper div {
  font-family: Roboto;
  color: white;
}
.header .lang-select-wrapper .icon {
  margin-right: 14px;
}
.header .lang-select-wrapper select {
  position: relative;
  font-size: 1rem;
  font-family: Roboto;
  color: white;
  background-color: transparent;
  border: none;
  padding-right: 17px;
  cursor: pointer;
}
.header .lang-select-wrapper select option {
  color: #3e577e;
}
.header .lang-select-wrapper form {
  position: relative;
}
.header .lang-select-wrapper form:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  border-top: 6px solid white;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  pointer-events: none;
}
.header .nav {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  background-color: white;
}
.header .nav .logo {
  width: 150px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .nav .logo a {
  padding: 0;
}
.header .nav li {
  font-size: 1rem;
}
.header .nav li:after {
  content: "/";
  color: #d8d8d8;
}
.header .nav li:last-child::after {
  display: none;
}
.header .nav a {
  font-family: Roboto;
  padding: 11px 36px;
  color: #323232;
}
.header ul {
  display: flex;
}

.quick-search {
  font-family: Roboto;
  height: 30px;
  padding-left: 36px;
  border-radius: 5px;
}
.quick-search::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #8e8e93;
  opacity: 1;
  /* Firefox */
}
.quick-search:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #8e8e93;
  opacity: 1;
  /* Firefox */
}
.quick-search::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #8e8e93;
  opacity: 1;
  /* Firefox */
}
.quick-search:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #8e8e93;
}
.quick-search::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #8e8e93;
}

.quick-search-form {
  display: none;
}

@media screen and (max-width: 1280px) {
  .header .nav a {
    padding: 11px 25px;
  }
}
@media screen and (max-width: 1024px) {
  .header .top-bar {
    display: none;
  }
  .header .nav-btn {
    display: block;
  }
  .header ul {
    flex-direction: column;
  }
  .header .quick-search-wrapper {
    display: block;
  }
  .header .quick-search-wrapper .icon-srch {
    cursor: pointer;
  }
  .header .nav {
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.25);
  }
  .header .nav li:after {
    content: "";
    display: block;
    width: calc(100% - 120px);
    height: 1px;
    padding: 10px;
    margin: 0 auto;
    background-color: #d1d1d6;
    padding: 0;
  }
  .header .nav a {
    display: block;
    text-align: center;
    padding: 16px 10px;
  }
  .header .nav a.active {
    color: #184298;
  }

  .nav nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    display: none;
    z-index: 2;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    display: none;
  }
  .nav nav.active {
    display: block;
  }

  .quick-search-form {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 20px 10px;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 2;
  }
  .quick-search-form.active {
    display: block;
  }
  .quick-search-form input {
    padding-left: 42px;
    width: 100%;
    font-size: 0.7rem;
    color: #8e8e93;
    font-family: Roboto;
  }
  .quick-search-form input::-moz-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #8e8e93;
    opacity: 1;
    /* Firefox */
  }
  .quick-search-form input:-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #8e8e93;
    opacity: 1;
    /* Firefox */
  }
  .quick-search-form input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #8e8e93;
    opacity: 1;
    /* Firefox */
  }
  .quick-search-form input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #8e8e93;
  }
  .quick-search-form input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #8e8e93;
  }
  .quick-search-form .search-btn {
    line-height: 40px;
    width: 100%;
    border-radius: 5px;
    background-color: #184298;
    text-align: center;
    font-size: 0.8rem;
    font-family: Roboto;
    border: none;
    color: white;
  }

  .lang-selector.mobile-only {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .header:after {
    height: calc(100% + 5px);
  }
  .header .nav {
    position: fixed;
    top: 0;
    z-index: 1;
    justify-content: space-between;
  }
  .header .nav .logo {
    width: 120px;
  }
  .header .nav .logo a {
    padding: 0;
  }
  .header .quick-search-wrapper {
    margin-right: 0;
    padding: 8px;
  }
  .header .quick-search-wrapper svg {
    position: static;
    transform: none;
  }

  .nav svg {
    display: block;
  }
  .nav .lang-selector {
    display: flex;
    padding: 16px 10px;
    justify-content: space-between;
    width: 50%;
    margin: 0 auto;
  }
  .nav .lang-selector a {
    padding: 0;
  }
  .nav .lang-selector .active {
    color: #184298;
  }
}
.banner {
  position: relative;
  height: calc(100vw / 2.7);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#00f3ff, #0039ff);
  opacity: 0.3;
}
.banner .slogan {
  position: relative;
  color: white;
  text-align: center;
  text-shadow: 0 6px 6px rgba(5, 24, 75, 0.65);
}

footer {
  background-color: #2b2b2b;
  width: 100%;
}
footer .wrapper {
  max-width: 1365px;
  height: 80px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer ul {
  display: flex;
}
footer ul li {
  margin-right: 25px;
}
footer ul li:last-child {
  margin-right: 0;
}
footer ul a {
  font-size: 14px;
  color: white;
}
footer .copyright {
  font-size: 12px;
  color: #8e8e93;
}

.scroll-top {
  position: absolute;
  top: 50%;
  right: 52px;
  transform: translate(0, -50%);
  cursor: pointer;
}

@media screen and (max-width: 480px) {
  footer .wrapper {
    flex-direction: column;
    justify-content: center;
  }
  footer ul {
    margin-bottom: 20px;
  }
}
.news {
  position: relative;
  background-color: #2a2652;
  background-position: center center;
  background-size: cover;
}
.news .more-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: white;
  font-size: 0.9rem;
  font-family: Roboto;
  line-height: 1.2rem;
  padding: 0 20px;
}
.news .more-btn svg {
  display: block;
  margin-left: 10px;
}
.news h2 {
  color: white;
}

.news-carousel {
  margin-bottom: 55px;
}
.news-carousel .slick-track {
  padding: 20px 0;
}

.news-item {
  transform: translateZ(0);
  transition: 0.3s;
}
.news-item h4 {
  color: #1B2335;
}
.news-item:first-child {
  padding-left: 0;
}
.news-item:last-child {
  padding-right: 0;
}
.news-item .news-item-wrapper {
  margin: 0 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  overflow: hidden;
}
.news-item .news-cover {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-item time {
  color: #8E8E93;
  font-size: 0.9rem;
  line-height: 1.2rem;
}
.news-item .content {
  padding: 20px 13px;
  background-color: white;
}
.news-item.slick-current {
  transform: translate(0, -18px);
}

@media screen and (max-width: 1024px) {
  .news-item .news-item-wrapper {
    margin: 0 10px;
  }
}
@media screen and (max-width: 480px) {
  .news-item:first-child {
    padding-left: 0;
  }
  .news-item:last-child {
    padding-right: 0;
  }
  .news-item .news-item-wrapper {
    margin: 0 10px;
  }
  .news-item .news-cover {
    height: 170px;
  }
  .news-item.slick-current {
    transform: none;
  }

  time {
    font-size: 0.77rem;
  }
}
.search-area {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.search-area > div {
  margin-bottom: 40px;
}

.input-area {
  display: grid;
  grid-template-columns: 3fr 3fr 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
  width: 100%;
}

.select-area {
  width: 100%;
  height: 50px;
  font-size: 20px;
  padding-left: 56px;
  border: 1px solid #979797;
  border-radius: 5px;
  color: #1f2f4c;
}
.select-area > div {
  display: flex;
}
.select-area > div > p {
  padding-left: 10px;
}

.select-bar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  pointer-events: none;
}

.select-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  pointer-events: none;
}

.search-input {
  width: 100%;
  height: 50px;
  font-size: 20px;
  line-height: 20px;
  padding: 15px 20px 15px 56px;
  border: 1px solid #979797;
  border-radius: 5px;
  color: #1f2f4c;
}

.icon-search {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  pointer-events: none;
}

.search-btn {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background: #184298;
  color: #ffffff;
  font-size: 20px;
  border: none;
}

.pagination-area {
  display: flex;
  justify-content: center;
  font-size: 25px;
}
.pagination-area > p {
  margin: 0 25px;
  color: #c3c3c3;
}
.pagination-area > a {
  color: #c3c3c3;
}
.pagination-area > a.current {
  color: #393939;
}

.keyword-area {
  width: calc( 100% + 20px );
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: -20px 0 0 -20px;
}

.keyword-area > div {
  border: 1px solid #979797;
  border-radius: 5px;
  padding: 10px 44px 10px 15px;
  background: #efeff4;
  margin: 20px 0 0 20px;
}
.keyword-area > div > p {
  color: #8e8e93;
  font-size: 20px;
  line-height: 20px;
}
.keyword-area > div > svg {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  cursor: pointer;
}
.keyword-area > div > div {
  color: #8e8e93;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  line-height: 24px;
  font-weight: 900;
  cursor: pointer;
}

.clear-all-btn {
  display: flex;
  background: #ffffff !important;
}

.vendor-wrapper {
  margin: 0 auto;
  padding: 50px 0;
  max-width: 1440px;
  width: 90%;
}

.vendor-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -40px 0 0 -20px;
}

.not-found {
  font-size: 24px;
  text-align: center;
}

.vendor-card {
  background: #ffffff;
  width: 345px;
  margin: 40px 0 0 20px;
  border-radius: 10px;
  padding: 30px 20px 25px;
  transition: 0.3s;
}
.vendor-card:hover {
  box-shadow: 0 0 10px #ccc;
}

.vendor-logo {
  width: 100%;
  height: 220px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 5px;
}

.vendor-title {
  text-align: left;
  font-size: 20px;
  line-height: 22px;
  color: #184298;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.vendor-subtitle {
  text-align: left;
  font-size: 18px;
  line-height: 22px;
  color: #8e8e93;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.vendor-description {
  font-size: 16px;
  line-height: 18px;
  height: 54px;
  color: #8e8e93;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 20px;
}

.contact-vendor-btn {
  display: block;
  width: 178px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 10px;
  margin: 0 auto;
  border: 1px solid #184298;
  color: #184298;
  transition: 0.3s;
}
.contact-vendor-btn:hover {
  background: #184298;
  color: #ffffff;
}

@media screen and (max-width: 1160px) {
  .vendor-wrapper {
    padding: 20px 10px;
    width: 100%;
  }

  .vendor-list {
    margin: -10px 0 0 -10px;
  }

  .vendor-card {
    margin: 10px 0 0 10px;
  }
}
@media screen and (max-width: 780px) {
  .input-area {
    display: block;
  }

  .select-area,
.search-input,
.search-btn {
    width: 100%;
    height: 40px;
    font-size: 16px;
  }

  .dropdown-wrapper,
.input-wrapper {
    margin-bottom: 15px;
  }

  .select-bar,
.icon-search {
    width: 19px;
    height: 19px;
  }

  .search-area > div {
    margin-bottom: 30px;
  }

  .select-arrow {
    width: 16px;
    height: 8px;
  }

  .pagination-area {
    font-size: 20px;
  }
  .pagination-area > p {
    margin: 0 20px;
  }

  .keyword-area {
    justify-content: center;
    margin: -16px 0 0 -16px;
  }

  .keyword-area > div {
    padding: 8px 34px 8px 14px;
    margin: 16px 0 0 16px;
  }
  .keyword-area > div p {
    font-size: 16px;
  }
  .keyword-area > div svg {
    width: 14px;
    height: 14px;
  }

  .vendor-card {
    width: 300px;
  }

  .vendor-logo {
    height: 180px;
  }

  .vendor-title {
    font-size: 15px;
    line-height: 16px;
  }

  .vendor-subtitle {
    font-size: 14px;
    line-height: 14px;
  }

  .vendor-description {
    font-size: 12px;
    line-height: 12px;
    height: 36px;
    margin-bottom: 16px;
  }

  .contact-vendor-btn {
    width: 90%;
    height: 25px;
    font-size: 15px;
    line-height: 25px;
    border-radius: 5px;
  }
}
@media screen and (max-width: 480px) {
  .vendor-card {
    width: 170px;
    padding: 6px;
  }

  .vendor-logo {
    height: 120px;
  }

  .vendor-title {
    -webkit-line-clamp: 2;
    min-height: 32px;
  }

  .vendor-subtitle {
    -webkit-line-clamp: 2;
    min-height: 28px;
  }

  .vendor-description {
    display: none;
  }
}
@media screen and (max-width: 350px) {
  .vendor-list {
    flex-direction: column;
  }

  .vendor-card {
    width: calc( 100% - 10px );
  }

  .vendor-title {
    -webkit-line-clamp: 1;
    min-height: 16px;
  }

  .vendor-subtitle {
    -webkit-line-clamp: 1;
    min-height: 14px;
  }
}
.product-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1480px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}
.product-list .product-item {
  position: relative;
  width: calc((100% - 15px) / 2);
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}
.product-list .product-item:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 75%;
}
.product-list .product-item:hover .mask {
  background-color: rgba(0, 22, 69, 0.81);
}
.product-list .product-item .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}
.product-list .product-item h3 {
  position: absolute;
  left: 50%;
  top: 50%;
  color: white;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 481px) {
  .product-list .product-item {
    width: calc((100% - 60px) / 3);
    margin-right: 30px;
    margin-bottom: 30px;
  }
  .product-list .product-item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .product-list .product-item:nth-child(2n) {
    margin-right: 0;
  }
}
@font-face {
  font-family: "diamts";
  src: url("/themes/diamts/assets/fonts/diamts.eot");
  src: url("/themes/diamts/assets/fonts/diamts.eot") format("embedded-opentype"), url("/themes/diamts/assets/fonts/diamts.ttf") format("truetype"), url("/themes/diamts/assets/fonts/diamts.woff") format("woff"), url("/themes/diamts/assets/fonts/diamts.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.icon {
  /* use !important to prevent issues with browser extensions that change ../fonts */
  font-family: "diamts" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.dmt-facebook:before {
  content: "";
}

.dmt-line:before {
  content: "";
}

.dmt-twitter:before {
  content: "";
}

.dmt-phone:before {
  content: "";
}

.dmt-location:before {
  content: "";
}

.dmt-printer:before {
  content: "";
}

.dmt-spinner11:before {
  content: "";
}

.dmt-search:before {
  content: "";
}

.dmt-sphere:before {
  content: "";
}

.dmt-eye:before {
  content: "";
}

.dmt-eye-blocked:before {
  content: "";
}

.dmt-enlarge:before {
  content: "";
}

.light-box {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  z-index: 999;
}
.light-box.hide {
  display: none;
}
.light-box .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
}
.light-box .box-content-wrapper {
  position: relative;
  width: 100%;
  max-width: 850px;
  background-color: white;
}
.light-box .box-content-wrapper img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.light-box .box-content-wrapper .close-btn {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(calc(100% + 10px));
  cursor: pointer;
  fill: white;
}
.light-box .box-content {
  position: relative;
  padding-top: 65%;
  overflow: hidden;
}
.light-box .box-content > div, .light-box .box-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.light-box-slider .slick-list {
  padding: 0 !important;
}

.light-box-slider {
  display: block;
  z-index: 0;
  height: 552.5px;
  width: 100%;
}
.light-box-slider.slick-list,
.light-box-slider .slick-track,
.light-box-slider .slide,
.light-box-slider .slide-image {
  height: 552.5px;
  width: 100%;
  background-position: 50% 50%;
}

.slide-image {
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-content {
  display: none;
}

@media screen and (max-width: 890px) {
  .light-box .box-content-wrapper .close-btn {
    transform: translateY(calc(-100% - 10px));
  }

  .light-box-slider {
    height: calc(calc(100vw - 52px) * 0.65);
  }
  .light-box-slider.slick-list,
.light-box-slider .slick-track,
.light-box-slider .slide,
.light-box-slider .slide-image {
    height: calc(calc(100vw - 52px) * 0.65);
  }
}
.type-vr {
  background-color: #f5f5fa;
}

.vr-wrapper {
  width: 100%;
  height: 850px;
}
.vr-wrapper iframe {
  width: 100%;
  height: 100%;
}

.enlarge-vr {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  color: #555;
  z-index: 1;
  background: #fff;
  border-radius: 3px;
  height: 1.5rem;
  width: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}
.enlarge-vr:hover {
  opacity: 1;
}

.exhibitor-info {
  padding-top: 111px;
}
.exhibitor-info.vr {
  padding-top: 40px;
}
.exhibitor-info .utility-list-wrapper {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  transform: translate(-50%, -50%);
}
.exhibitor-info .utility-list-wrapper .utilities {
  display: flex;
  justify-content: center;
}
.exhibitor-info .utility-list-wrapper li {
  margin-right: 25px;
}
.exhibitor-info .utility-list-wrapper li:last-child {
  margin-right: 0;
}
.exhibitor-info .utility-list-wrapper svg {
  width: 100px;
  height: 100px;
}
.exhibitor-info .info-wrapper {
  max-width: 1480px;
  padding: 0 20px;
  display: flex;
  margin: 0 auto;
}
.exhibitor-info .logo-wrapper {
  flex: 1 1 33.333%;
  max-width: 400px;
  max-height: 350px;
  margin-right: 75px;
}
.exhibitor-info .info-content {
  flex: 1 1 66.666%;
}
.exhibitor-info .content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d1d1d6;
  padding-bottom: 6px;
}
.exhibitor-info .content {
  display: flex;
  padding-top: 24px;
}
.exhibitor-info .content > div {
  flex: 1 1 50%;
}
.exhibitor-info h3 {
  color: #184298;
  text-align: left;
}
.exhibitor-info .contact-btn {
  font-family: Roboto;
  width: 100%;
  font-size: 1.1rem;
  color: #184298;
  line-height: 58px;
  border: 1px solid #184298;
  border-radius: 10px;
}
.exhibitor-info .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 10px;
}

.info-block {
  margin-bottom: 23px;
}
.info-block h4 {
  color: #000000;
  margin-bottom: 10px;
}
.info-block p {
  font-size: 0.9rem;
  font-family: Roboto;
  color: #808080;
  line-height: 1.2rem;
}
.info-block li {
  align-items: center;
  display: flex;
  font-size: 0.9rem;
  font-family: Roboto;
  color: #808080;
  line-height: 1.2rem;
  margin-bottom: 6px;
}
.info-block .icon {
  margin-right: 10px;
}

.social-login {
  display: flex;
  font-size: 0.9rem;
  font-family: Roboto;
  color: #8e8e93;
}
.social-login.mobile-only {
  display: none;
}
.social-login ul {
  margin-left: 10px;
  display: flex;
  align-items: center;
}
.social-login li {
  margin-right: 5px;
}
.social-login li:last-child {
  margin-right: 0;
}
.social-login .dmt-line {
  background-color: #00b901;
  padding: 5px;
  border-radius: 50%;
  color: #fff;
}
.social-login .dmt-facebook {
  background-color: #3765a3;
  padding: 5px;
  border-radius: 50%;
  color: #fff;
}
.social-login .dmt-twitter {
  background-color: #33bcfd;
  padding: 5px;
  border-radius: 50%;
  color: #fff;
}

.product-wrapper {
  position: relative;
  padding: 0 20px;
  margin: 0 auto;
}

.product-carousel {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 100px;
}
.product-carousel .image-wrapper {
  position: relative;
  padding-top: 75%;
  background-color: white;
  margin-bottom: 22px;
  border-radius: 10px;
  overflow: hidden;
}
.product-carousel .image-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  padding: 20px;
}
.product-carousel figure {
  margin: 0 35px;
}
.product-carousel figcaption {
  font-size: 0.8rem;
  font-family: Roboto;
  font-weight: 500;
  color: #1b2335;
  text-align: center;
  transform: translateZ(0);
}
.product-carousel .slick-list {
  border-radius: 10px;
}

.slick-arrow {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  cursor: pointer;
}

.slick-next {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  z-index: 1;
}

.slick-prev {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  z-index: 1;
}

.product-banner {
  position: relative;
  padding: 0 20px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-banner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0.81;
}
.product-banner .banner-list {
  width: 100%;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}
.popup .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.15;
  z-index: -1;
}
.popup.active {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease-in-out;
}

.contact-exb-wrapper {
  width: 100%;
  max-width: 600px;
  padding: 40px 30px 25px;
  background-color: white;
  border-radius: 10px;
  border: 1px solid #979797;
}
.contact-exb-wrapper h2 {
  margin-bottom: 26px;
}
.contact-exb-wrapper p {
  font-size: 1.1rem;
  line-height: 1.3rem;
  margin-bottom: 21px;
  text-align: center;
  color: #8e8e93;
}
.contact-exb-wrapper p .exb-name {
  color: #393939;
  margin-left: 6px;
}
.contact-exb-wrapper input {
  flex: 1 1 auto;
}

.popup label {
  font-size: 0.8rem;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translate(0, -50%);
  background-color: white;
  line-height: calc(100% - 2px);
  transition: 0.2s ease-in-out;
  opacity: 0.5;
}

@media screen and (min-width: 601px) {
  .product-banner {
    height: 545px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .product-banner .banner-list {
    padding: 0 80px;
  }
  .product-banner .slick-list {
    max-width: 1440px;
    margin: 0 auto;
  }
  .product-banner .slick-track {
    height: 420px;
  }
  .product-banner .slick-slide {
    display: flex;
    align-items: center;
    margin: 0 60px;
    opacity: 0.5;
    transition: 0.3s ease-in-out;
  }
  .product-banner .slick-slide.slick-current {
    opacity: 1;
  }
  .product-banner .slick-slide.slick-current img {
    transform: scale(1.15);
  }
  .product-banner img {
    transition: 0.3s ease-in-out;
  }
}
@media screen and (max-width: 1024px) {
  .exhibitor-info .logo-wrapper {
    margin-right: 30px;
  }
}
@media screen and (max-width: 600px) {
  .vr-wrapper {
    padding: 20px 20px 0;
    height: 375px;
  }

  section.exhibitor-info {
    padding-top: 60px;
    padding-bottom: 55px;
  }

  .social-login {
    display: none;
  }

  .exhibitor-info .utilities svg {
    width: 60px;
    height: 60px;
  }
  .exhibitor-info .info-wrapper {
    flex-direction: column;
  }
  .exhibitor-info .logo-wrapper {
    width: 100%;
    height: 175px;
    max-width: 200px;
    margin: 0 auto 30px;
  }
  .exhibitor-info .content {
    flex-direction: column;
    padding-top: 22px;
  }
  .exhibitor-info h3 {
    font-size: 1.375rem;
    line-height: 1.81rem;
    width: 100%;
  }
  .exhibitor-info .right {
    padding-left: 0;
  }

  .info-block {
    margin-bottom: 16px;
  }
  .info-block li,
.info-block p {
    font-size: 1rem;
  }

  .product-wrapper {
    padding: 0;
  }

  .product-carousel {
    padding: 0;
  }
  .product-carousel figure {
    margin: 0 7.5px;
  }
  .product-carousel .image-wrapper img {
    padding: 10px;
  }

  .product-banner .banner-list {
    padding: 0 60px;
  }
  .product-banner .slick-slide {
    margin: 0 20px;
  }

  .social-login.mobile-only {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
    margin-top: 30px;
  }
  .social-login.mobile-only ul {
    margin-top: 11px;
    margin-left: 0;
  }

  .slick-arrow {
    width: 40px;
    height: 40px;
  }

  .contact-exb-wrapper {
    padding: 20px 10px 10px;
  }
  .contact-exb-wrapper .form-group {
    flex-direction: column;
  }
  .contact-exb-wrapper label {
    margin-bottom: 5px;
  }
}
.contact-block {
  padding-bottom: 0;
}
.contact-block .contact-btns {
  padding: 30px 20px;
}

.contact-subtitle {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  font-size: 1.1rem;
  font-family: Roboto;
  color: #8E8E93;
  text-align: center;
}

.contact-form {
  background-color: #EFEFF4;
  margin-top: 30px;
}
.contact-form .contact-form-wrapper {
  max-width: 840px;
  padding: 30px 20px;
  margin: 0 auto;
}
.contact-form label {
  flex: 1 1 200px;
  color: #282828;
}
.contact-form input {
  flex: 1 1 600px;
}
.contact-form .contact-btns {
  padding: 30px 20px;
  background-color: white;
}

.contact-btns .contact-btns-wrapper {
  max-width: 800px;
  display: flex;
  margin: 0 auto;
}
.contact-btns button {
  flex: 1 1 50%;
  font-size: 1.1rem;
  text-align: center;
  line-height: 60px;
  border-radius: 10px;
}
.contact-btns button:first-child {
  border: 1px solid #979797;
}
.contact-btns button + button {
  margin-left: 20px;
}
.contact-btns .clear-btn {
  border: 1px solid #8E8E93;
  color: #282828;
}
.contact-btns .contact-submit {
  background-color: #184298;
  color: white;
  border: none;
}

@media screen and (max-width: 800px) {
  .contact-form .form-input-wrapper {
    flex-direction: column;
  }
  .contact-form label, .contact-form input, .contact-form .select-type-wrapper {
    flex: none;
  }
  .contact-form label {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 480px) {
  .form-group {
    margin-bottom: 10px;
  }

  .contact-block h2 {
    margin-bottom: 20px;
  }
  .contact-block .contact-btns {
    padding: 15px 10px;
  }
  .contact-block .form-group {
    flex-direction: column;
  }

  .contact-form .contact-form-wrapper {
    padding: 15px 10px;
  }

  .contact-subtitle {
    padding: 0 10px;
  }

  .contact-btns button {
    line-height: 40px;
  }
}
.user-funcs .form-wrapper {
  width: 100%;
  max-width: 500px;
  background-color: white;
  padding: 37px 40px 20px;
  border-radius: 10px;
  display: none;
}
.user-funcs .form-wrapper.active {
  display: block;
}
.user-funcs h2 {
  margin-bottom: 30px;
}
.user-funcs label {
  position: absolute;
  left: 11px;
  top: 50%;
  font-size: 0.8rem;
  font-family: Roboto;
  color: rgba(0, 0, 0, 0.6);
  transform: translate(0, -50%);
  pointer-events: none;
  padding: 0 5px;
}
.user-funcs input {
  width: 100%;
  padding-left: 16px;
}
.user-funcs input[type=checkbox] {
  width: auto;
  margin-right: 8px;
  border-color: #979797;
}
.user-funcs p {
  font-size: 0.7rem;
  font-family: Roboto;
  margin-top: 25px;
}
.user-funcs .agreement {
  margin: 20px 0;
}
.user-funcs .agreement a {
  text-decoration: underline;
}
.user-funcs .signup-btn, .user-funcs .signin-btn {
  margin-left: 7px;
  color: #184298;
}

@media screen and (max-width: 375px) {
  .user-funcs .form-wrapper {
    padding: 30px 20px 20px;
  }
}
.home-slider {
  z-index: 0;
  height: calc(100vw / 2.7);
}
.home-slider.slick-list,
.home-slider .slick-track,
.home-slider .slide,
.home-slider .slide-image {
  height: calc(100vw / 2.7);
}

.slide-image {
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-content {
  display: none;
}

.slick-dots {
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
  position: absolute;
  bottom: 0;
  display: flex;
  left: 0;
  width: 100%;
}
.slick-dots li {
  margin: 0 0.3rem;
}
.slick-dots button {
  border: 0;
  background-color: #fff;
  height: 0.8rem;
  width: 0.8rem;
  border-radius: 50%;
  color: rgba(0, 0, 0, 0);
  opacity: 0.5;
}
.slick-dots .slick-active button {
  opacity: 1;
}

@media screen and (max-width: 480px) {
  .home-slider::after {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
