.booking-details {
    background: linear-gradient(125deg, rgba(99, 171, 69, 0.1) 0%, rgba(251, 176, 59, 0.1) 100%);
    border-radius: 6px;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1);
    border: solid 1px #d4d4d4;
    padding: 10px;
    margin-bottom: 20px;
}
.b1 {
    border-bottom: 1px dashed #ccc;
    padding-bottom: 10px;
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}
.b1 span {
    background-color: #fff;
    padding: 0px 10px;
    border-radius: 6px;
    color: #000;
    font-size: 14px;
    border: 1px solid var(--primary-color1);
    text-align: center;
}
.booking-details i {
    color: var(--primary-color1);
}
.b2 {
    padding-top: 5px;
}
.b2 h2 {
    font-size: 17px;
    text-transform: capitalize;
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
}
.b3 {
    padding-bottom: 10px;
}
.b3 ul {
    display: flex;
    gap: 10px;
}
.b4 {
    padding-bottom: 10px;
}
.b4 ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.b4 ul li {
    max-width: 49%;
    width: 49%;
    font-size: 15px;
}
.b5 {
    padding-bottom: 10px;
}
.b5 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.b5 ul li {
    font-size: 20px;
    color: #000;
    width: 50%;
}
.b5 ul li span {
    display: block;
    font-size: 20px;
    line-height: 24px;
}
.oldprc {
    text-decoration-line: line-through;
    color: red;
    font-weight: 400;
}
.b1 span b {
    font-weight: 400;
  animation: blinker 1s step-end infinite;
}

.b1 span:nth-of-type(2) {
    border: none;
    color: #fff;
    background: linear-gradient(45deg, #E91E63, #FF5722, #23a6d5, #1ebb0b);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
b.perct {
    font-weight: 400;
    font-size: 13px;
    color: green;
    margin-left: 8px;
    vertical-align: text-top;
}
.b5 ul li:last-child {
    text-align: right;
    color: #1a0dab;
}
span.getprc {
    display: inline-block !important;
}
.b5 ul li:last-child b {
    display: block;
    font-weight: 400;
    font-size: 14px;
    color: #000;
    line-height: 18px;
}
.b6 {
    padding-bottom: 10px;
}
.b6 button:first-child {
    background: #FF9800;
    border-color: #FF9800;
    color: #000;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 6px;
    font-weight: 500;
    display: block;
    width: 100%;
    font-size: 18px;
}
.b6 button:first-child i {
    color: #000;
}
.b7 {
    color: #000;
}
.b7 ul {
    display: flex;
    justify-content: space-between;
}
.b7 ul li b {
    color: #1a0dab;
}
.b7 p {
    text-align: center;
    padding-top: 10px;
    color: #000;
    margin-bottom: 0;
    font-size: 14px;
    letter-spacing: 0;
}
.b3 p {
    color: #000;
    margin-bottom: 0;
    margin-top: 5px;
}
.b6 button:first-child:hover {
    background: var(--primary-color1);
    border-color: var(--primary-color1);
    color: #fff;
}
.b6 button:first-child:hover i {
    color: #fff;
}
.b5 ul li {
    font-size: 14px;
}
@media screen and (min-width: 768px) {
   .booking-details.fixed {
        position: fixed;
        top: 103px;
        z-index: 9999;
        width: 420px;
    }
}