.transaction-alert {
    border-radius: 18px;
    z-index: 999999999999;
    display: none;
    position: fixed;
    color: #eee;
    left: 0;
    bottom: 20%;
    width: 260px;
    padding: 12px 15px;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #1A5C96;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
    /*box-shadow: rgba(225, 225, 225, 0.25) 0px 25px 50px -12px;*/
}
.transaction-alert p {
    font-size: 10px;
    font-weight: bolder;
    line-height: 15px;
}
.transaction-alert .info {
    margin-left: 15px;
    font-size: 11px;
    color: #fff;
    line-height: 4px;
    padding-top: 10px;
    font-weight: bold;
}
.float-right {
    float: right;
}
.small {
    line-height: 15px;
}
small {
    color: #fff;
}

.user-steps p {
    display: block;
    border: 1px dotted #1A5C96;
    border-radius: 18px;
    box-sizing: border-box;
    padding: 8px;
}
.price__list {
    font-size: 10px;
    list-style-type: none;
    text-align: left;
}
/*
.price__list {
    margin-top: 15px;
    line-height: 20px;
}
.price__list, li {
    padding: 0;
    list-style-type: none;
}
.price__list li
{
    color: #fff;
    float: left;
    display: block;
    font-size: 12px;
    margin-left: 15px;
    line-height: 20px;
    margin-top: .6rem;

}
*/

/*==============================
    Price
==============================*/
.price {
  display: block;
  background-color: #eee;
  margin-top: 30px;
  position: relative;
  border-radius: 16px;
  text-align: center;
  overflow: hidden;
  padding: 30px 0;
  width: 100%;
  border: 1px solid #444;
  box-shadow: 0 16px 56px 0 rgba(0,0,0,0.1);
}
.price__title {
  display: block;
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  font-family: 'Montserrat', sans-serif;
  color: #444;
  margin-bottom: 0;
  margin-top: 5px;
}
.price__list {
  display: block;
  padding: 30px 5px;
  margin: 0;
}
.price__list li {
  font-size: 12px;
  line-height: 26px;
  color: #707070;
  margin-bottom: 5px;
  margin-left: 15px;
}
.price__list li b {
  font-weight: 500;
}
.price__list li:last-child {
  margin-bottom: 0;
}
.price__value {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  color: #fff;
  font-weight: 500;
  background-color: #1A5C96;
  height: 66px;
  margin-bottom: 20px;
}
.price__text {
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: #707070;
  margin-bottom: 20px;
}
.price--best:before {
  content: '';
  position: absolute;
  display: block;
  width: 110px;
  height: 110px;
  top: -55px;
  left: -55px;
  transform: rotate(45deg);
  background-color: #1A5C96;
}
.price--best:after {
  content: '\f004';
  position: absolute;
  display: block;
  font-family: 'themify';
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  color: #fff;
  text-align: center;
  font-size: 24px;
}
.header-button .btn {
    border-radius: 18px;
}

@media only screen and (max-width: 600px){
    .media-mobile-not-visible {
        display: none;
    }
}
@media (min-width: 768px) {

  .price {
    display: block;
    width: 50%;
    max-width: none;
    margin: 0;
    border-radius: 0;
  }
  .price:first-child {
    margin-top: 30px;
    border-radius: 16px 0 0 0;
    z-index: 4;
  }
  .price:nth-child(2) {
    margin-top: 30px;
    border-radius: 0 16px 0 0;
    z-index: 3;
  }
  .price:nth-child(3) {
    border-radius: 0 0 0 16px;
    z-index: 2;
  }
  .price:last-child {
    border-radius: 0 0 16px 0;
    z-index: 1;
  }
  .price--single {
    border-radius: 16px !important;
    margin-top: 30px !important;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .price {
    width: 25%;
    margin-top: 30px !important;
  }
  .price:first-child {
    border-radius: 16px 0 0 16px;
  }
  .price:last-child {
    border-radius: 0 16px 16px 0;
  }
  .price:nth-child(2),
  .price:nth-child(3) {
    border-radius: 0;
  }
  .price--single {
    width: 100%;
    border-radius: 16px !important;
  }
}
@media (min-width: 768px) {
  .price-wrap {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}