@charset "UTF-8";
/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

.show {
  display: block !important;
}

.popup-sty {
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 10000;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.4);
  color: #000;
}
.popup-sty .p-block {
  display: block;
  top: 0;
  width: calc(100% - 32px);
  vertical-align: middle;
  text-align: center;
  position: relative;
}
.popup-sty .p-paper {
  width: 100%;
  max-width: 768px;
  height: 100%;
  margin: 50% auto;
  background-color: #fff;
  border-radius: 16px;
}
@media only screen and (max-width: 767px) {
  .popup-sty .p-paper {
    margin: 50% 16px;
  }
}
.popup-sty .p-paper table {
  margin: 0 auto;
  text-align: left;
}
.popup-sty .img-popup {
  position: relative;
  background-color: unset;
}
.popup-sty .order {
  font-size: 30px;
}
.popup-sty .title-sty {
  display: inline-block;
  width: 100%;
  max-width: 120px;
}

.card {
  position: relative;
}
.card .x-btn {
  top: 0;
  right: 0;
  padding: 16px;
  text-align: right;
  position: absolute;
}
.card .x-btn img {
  max-width: 24px;
}
.card .x-img {
  position: absolute;
  right: 0;
  top: 0;
}
.card .card-body {
  padding: 0 64px 64px;
}
@media only screen and (max-width: 767px) {
  .card .card-body {
    padding: 0 16px 32px;
  }
}
.card .card-body .title {
  padding: 16px 0;
  font-size: 16px;
  font-weight: bold;
}
.card .card-body .info {
  display: flex;
  flex-wrap: wrap;
}
.card .card-body .info .info-box {
  width: calc(100% / 3);
  padding-bottom: 24px;
  text-align: left;
}
.card .card-body .info .info-box div:nth-child(1) {
  color: #6D6D6D;
  font-size: 16px;
}
.card .card-body .info .info-box-4 {
  width: calc(100% / 4);
}
.card .card-body .info-text {
  padding-bottom: 44px;
  font-size: 16px;
  text-align: center;
}
.card .card-body .input-sty {
  padding-bottom: 32px;
  text-align: left;
}
.card .card-body .input-sty label {
  padding: 0;
  font-size: 16px;
  font-weight: bold;
}
.card .card-body .input-sty input {
  padding: 8px;
  border-radius: 0;
  font-size: 14px;
  position: relative;
}
.card .card-body .input-sty .input-select-before {
  display: none;
  color: #E02828;
}
.card .card-body .table {
  padding-bottom: 16px;
  color: #4A4A4A;
}
.card .card-body .table table {
  width: 100%;
}
.card .card-body .table table thead, .card .card-body .table table .bg-b {
  color: #fff;
  background-color: #484848;
}
.card .card-body .table table th, .card .card-body .table table td {
  width: 50%;
  padding: 12px 20px;
  border: 1px solid #9E9E9E;
}
.card .card-body .table table th:nth-child(2), .card .card-body .table table td:nth-child(2) {
  text-align: right;
}
.card .card-body .table table td {
  background: #fff;
}
.card .card-body .list {
  padding-bottom: 32px;
}
.card .card-body .list ul {
  text-align: left;
}
.card .card-body .list ul li {
  padding-left: 20px;
  position: relative;
}
.card .card-body .list ul li:before {
  content: "";
  top: 7px;
  left: 5px;
  width: 8px;
  height: 8px;
  position: absolute;
  border-radius: 50px;
  background-color: #D89A39;
}
.card .card-body button {
  margin: 0 auto;
}
.card .card-body .btn-block {
  display: flex;
  justify-content: center;
}
.card .card-body .btn-block button {
  margin: 12px 16px 0;
}

@media only screen and (max-width: 359px) {
  .popup-title {
    display: block !important;
  }
}

.is-active.p-paper {
  animation: popup 0.35s;
}

.p-paper {
  transition: .3s;
}

@keyframes popup {
  0% {
    transform: scale(0);
  }
  40% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
