.container header {
    position: sticky;
    top: 0px;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    background-color: rgb(1, 1, 195);
    color: white;
    align-items: center;
    z-index: 10;
}

.container h1 {
    padding: 10px 10px;
    font-weight: 600;
}

.container .content .products .product_details>form {
    display: flex;
    justify-content: space-between;
}

.container header .search {
    display: flex;
    align-items: center;
    margin: auto 20px;
}

.container header .search input {
    padding: 2px 10px;
    font-size: 20px;
    color: black;
}

.container header .search button {
    color: black;
    font-size: 30px;
    padding: 2px 2px;
    border: none;
    background: none;
    display: flex;
    justify-content: center;
    align-content: center;
    margin-left: 10px;
}

.doctors .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.doctors .content>div.dis {
    border: 2px solid gray;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 2px 2px 5px 2px grey;
    margin: 20px 25px;
    width: 100%;
    /* width: 48%; */
    /* margin: 0px ; */
    /* width: auto; */
}

.doctors h2 {
    padding: 15px 10px;
    font-weight: 600;
}

.doctors .inner {
    display: flex;
}

.doctors .inner img {
    width: 100px;
    height: 100px;
    margin: auto 0px;
}

.doctors .inner div h4,
.doctors .inner div h5,

/* .doctors .outer h5, */

.doctors .inner div h6 {
    font-weight: 600;
    margin: 10px 20px;
}

.doctors .inner div h6 span {
    color: blue;
}

.doctors .outer .fee {
    display: flex;
    justify-content: space-between;
}

.doctors .outer .fee h6 {
    color: blue;
}

.doctors .outer .fee h6.con_fee {
    color: green;
    font-weight: 500;
}

.doctors .outer svg {
    color: #D63C4A;
    margin: -5px 5px 0px 0px;
}

.doctors .outer .bookings {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
    .container header {
        justify-content: left !important;
        align-items: flex-start !important;
        flex-direction: column !important;
    }
    .container header .search {
        margin: 15px 10px !important;
    }
}

@media screen and (max-width: 390px) {
    .container header .search input {
        font-size: unset !important;
    }
    .container header .search button {
        font-size: 24px !important;
    }
}