.mw-100px {
  max-width: 100px;
}
.demo-list img {
  max-width: 100%;
}
.bg-sales {
  background: #cdcdcd;
  padding: 10px;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  margin: 0px;
}
.bg-sales .col-md-6:first {
  border-right: 1px solid #aaa;
}
.card-theme .thumbnail img {
  max-width: 100%;
}
.card-theme {
  text-align: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  /* border: 1px solid #e8e7e7; */
  border-radius: 10px;
  min-height: 270px;
  margin-bottom: 15px;
  padding-bottom: 10px;
}
.card-theme-info .action {
  display: none;
}
/* blinker */
.blink {
  animation: blinker 1s linear infinite;
}

.close {
  position: absolute;
  font-size: 15px;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  color: #999;
  right: 20px;
  padding: 11px -1px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.text-left {
  text-align: left;
}
.ml-2 {
  margin-left: 2px;
}
.mr-2 {
  margin-right: 2px;
}
.mt-2 {
  margin-top: 2px;
}
.mb-2 {
  margin-bottom: 2px;
}
.mw-120px {
  max-width: 120px;
}
.mw-80px {
  max-width: 80px;
}

.rung {
  animation: code-pro-rung-lac 2s ease infinite;
}
@-webkit-keyframes code-pro-rung-lac {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
}
.custom-bg {
  background: #dedede;
  padding: 10px;
  border-radius: 12px;
}

.modal-custom {
  background-image: url(https://atpsoftware.vn/wp-content/plugins/ATPSoft-Form/imgs/5-1.png);
  background-size: cover;
  background-position: 50%;
  background-color: #fefefe;
  margin: auto;
  border: 1px solid #888;
  border-radius: 10px;
  width: 100%;
  padding: 10px;
  position: relative;
}

/**
 * placeholder-loading v0.6.0
 * Author: Zalog (https://www.zalog.ro/)
 * License: MIT
 **/
.ph-item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  direction: ltr;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
}
.ph-item,
.ph-item *,
.ph-item ::after,
.ph-item ::before {
  box-sizing: border-box;
}
.ph-item::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  z-index: 1;
  width: 500%;
  margin-left: -250%;
  pointer-events: none;
  content: " ";
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 46%,
      rgba(255, 255, 255, 0.35) 50%,
      rgba(255, 255, 255, 0) 54%
    )
    50% 50%;
  -webkit-animation: ph-animation 0.8s linear infinite;
  animation: ph-animation 0.8s linear infinite;
}
.ph-item > * {
  display: flex;
  flex: 1 1 auto;
  flex-flow: column;
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 15px;
}

.ph-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: -7.5px;
}
.ph-row div {
  height: 10px;
  margin-top: 7.5px;
  background-color: #ced4da;
}
.ph-row .big,
.ph-row.big div {
  height: 20px;
}
.ph-row .empty {
  background-color: rgba(255, 255, 255, 0);
}

.ph-col-2 {
  flex: 0 0 16.6666666667%;
}

.ph-col-4 {
  flex: 0 0 33.3333333333%;
}

.ph-col-6 {
  flex: 0 0 50%;
}

.ph-col-8 {
  flex: 0 0 66.6666666667%;
}

.ph-col-10 {
  flex: 0 0 83.3333333333%;
}

.ph-col-12 {
  flex: 0 0 100%;
}

[class*="ph-col"] {
  direction: ltr;
}
[class*="ph-col"] > * + .ph-row {
  margin-top: 0;
}

[class*="ph-col"] > * + * {
  margin-top: 7.5px;
}

.ph-avatar {
  position: relative;
  width: 100%;
  min-width: 60px;
  overflow: hidden;
  background-color: #ced4da;
  border-radius: 50%;
}
.ph-avatar::before {
  display: block;
  padding-top: 100%;
  content: " ";
}

.ph-picture {
  width: 100%;
  height: 120px;
  background-color: #ced4da;
}

@-webkit-keyframes ph-animation {
  0% {
    transform: translate3d(-30%, 0, 0);
  }
  100% {
    transform: translate3d(30%, 0, 0);
  }
}

@keyframes ph-animation {
  0% {
    transform: translate3d(-30%, 0, 0);
  }
  100% {
    transform: translate3d(30%, 0, 0);
  }
}
.card-theme-info {
  margin-top: 10px;
}
.card-theme-small .thumbnail img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  width: 99%;
}
b.downloads {
  position: absolute;
  top: 10px;
  right: 21px;
  background: #0000009e;
  padding: 2px 5px;
  /* width: 22px; */
  border-radius: 13px;
}

ul.action-signin li a {
  color: #575757;
}

h1 span.text-orange,
h2 span.text-orange {
  background: -webkit-linear-gradient(45deg, #f17024, #e82428);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cyber-testimonial-author-img img {
  max-width: 50px;
}


.price-form-custom {
  border: 8px solid #175cff;
  padding: 30px;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  text-align: center;
  outline: 8px solid #ffd200;
  margin: 0 auto;
}

.border-10 {
  border-radius: 10px;
}
.text-white.so_dien_thoai a, a.va_zalo  {
  color: #FFF;
}
