.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}

.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate3d(0, -25%, 0);
  transform: translate3d(0, -25%, 0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  /*background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;*/
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10040;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
/*
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px;*/
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-dialog {
    margin: 63px auto 0px auto;
    width:600px;
}

.product-added-modal {
  
}

.product-added-modal .modal-dialog {
  background-color: #f1f1f1;
  border: 4px solid #272727;
}

.product-added-modal .modal-content {
  padding: 30px;
}

.product-added-modal .modal-body {
  padding: 30px 0 0;
}

.product-added-modal .modal-header {
  padding: 0 0 15px;
  border-bottom: 2px solid #272727;
  position: relative;
}

.product-added-modal .modal-header .page-title.title-small {
  padding: 0;
}

.product-added-modal .modal-body .image, .product-added-modal .modal-body .details {
  width: 180px;
  float: left;
}
.product-added-modal .modal-body .details {
  width: 330px;
  padding-left: 30px;
}

.product-added-modal .modal-body .details h1 {
  font-size: 40px;
  font-family: "brandon-grotesque";
  font-weight: normal;
  font-style: normal;
  line-height: 39px;
  margin: 0;
}

.product-added-modal .modal-body .details h2 {
  font-size: 17px;
  font-family: "brandon-grotesque";
  font-weight: normal;
  font-style: normal;
  line-height: 39px;
  padding-bottom: 8px;
}

.product-added-modal .old-price {
    color: #999999;
    font-size: 32px;
    font-family: "brandon-grotesque";
    font-weight: normal;
    font-style: normal;
    text-decoration: line-through;
}

.product-added-modal .modal-body .image img {
  width: 100%;
}

.product-added-modal .modal-footer {
  padding: 30px 0 0;
  border-top: 2px solid #272727;
  margin-top: 30px;
  display: flex;
}

.product-added-modal .modal-footer .btn {
  letter-spacing: 1px;
  width: 100%;
  display: block;
}

.product-added-modal .modal-close {
  position: absolute;
  color: #000;
  top: -12px;
  right: -15px;
  font-size: 40px;
  line-height: 20px;
  padding: 15px;
  height: 20px;
  width: 20px;
}

@media (max-width: 767px) {
  .product-added-modal .modal-dialog {
    width: calc(100% - 30px);
    margin: 30px auto 0;
    max-width: 492px;
  }

  .product-added-modal .modal-body {
    display: flex;
  }

  .product-added-modal .modal-body .details {
    flex-shrink: 1;
    width: auto;
  }

  .product-added-modal .modal-body .details h1 {
    font-size: 28px;
  }

  .product-added-modal .old-price {
    font-size: 20px;
  }

  .product-added-modal .modal-footer {
    display: block;
  }

  .product-added-modal .modal-footer .btn {
    width: 100%;
    display: block;
    margin: 0 0 10px;
    box-sizing: border-box;
  }

  .product-added-modal .modal-footer .btn:last-child {
    margin: 0;
  }
}

.product-added-modal .clear {
  display: block !important;
}
