/*accordion*/

button.accordion {
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    padding: 30px 20px;
    font-size: 18px;
    color: var(--primary-color);
    cursor: pointer;
    transition: background-color 0.2s linear;
    background-color: unset;
    border-bottom: 1px solid var(--gray-color);
}

button.accordion:after {
    content: "\f107";
    position: absolute;
    top: 50%;
    right: 0;
    font-family: "fontawesome";
    font-size: 18px;
    float: right;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 500px;
    height: 20px;
    width: 20px;
    text-align: center;
}

button.accordion.is-open:after {
    content: "\f106";
    color: var(--accent-color);
}

button.accordion:hover,
button.accordion.is-open {
    background-color: var(--light-color);
}

.accordion-content {
    border-left: 1px solid whitesmoke;
    border-right: 1px solid whitesmoke;
    padding: 0 20px 20px 40px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-in-out;
    font-size: 18px;
    line-height: 28px;
}

.accordion .job-location {
    font-size: 14px;
    padding-top: 8px;
}


.section-title.top-title-bar .title-line, .section-title.side-title-bar .title-line, .news-card:hover {
    background-color: #045de9;
    background-image: linear-gradient(315deg, #045de9 0%, #09c6f9 74%);
}

.clinical-future-plans .images-area .image {
    height: 300px;
    width: 300px;
}

.plans-list ol {
    padding: unset;
}

.departments-list .department-card {
    height: 200px;
    width: 300px;
    background-image: url("../images/department-card-bg.706d6102f576.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    margin: 0 20px 20px 0;
    cursor: pointer;
}

.departments-list .department-card:hover {
    color: white;
    background-color: #045de9;
    background-image: linear-gradient(315deg, #045de9 0%, #09c6f9 74%);
}

.departments-list {
    justify-content: center;
}

.doctors-grid .doctor .image-area {
    background-color: #045de9;
    background-image: linear-gradient(315deg, #045de9 0%, #09c6f9 74%);
}

.message-whole-area .doc-detail-card {
    padding: 20px;
    color: white;
    background-color: #045de9;
    background-image: linear-gradient(315deg, #045de9 0%, #09c6f9 74%);
    margin: 0 20px 20px 0;
    width: 250px;

}

.one-clinical-service.admin-dept {
    width: 100%;
}

/* building blocks blocks */
.block-content {
    width: 300px;
    height: 300px;
    border-radius: 0.313em;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.5);
    background-image: url("../images/service.deafe2d5963b.png");
    background-size: cover;
    margin: 30px;
}

.ribbon {
    position: relative;
    padding: 20px;
    font-size: 16px;
    top: 30px;
    left: -10px;
    color: var(--light-color);
    border-radius: 0 0.156em 0.156em 0;
    box-shadow: -1px 2px 3px rgba(0, 0, 0, 0.5);
    min-width: 100px;
    max-width: 200px;
    text-transform: uppercase;
}

.ribbon:before, .ribbon:after {
    position: absolute;
    content: '';
    display: block;
    width: 18px;
}

.ribbon:before {
    height: 100%;
    padding: 0 0 0.438em;
    top: 0;
    left: -0.469em;
    background: inherit;
    border-radius: 0.313em 0 0 0.313em;
}

.ribbon:after {
    height: 0.313em;
    background: rgba(0, 0, 0, 0.35);
    bottom: -0.313em;
    left: -0.313em;
    border-radius: 0.313em 0 0 0.313em;
    box-shadow: inset -1px 2px 2px rgba(0, 0, 0, 0.3);
}

.pkg-details {
    background-color: white;
}

.pkg-details .blue-gradient-text.price {
    font-size: 32px;
    margin: 20px 0;
}

.topics-grid .pkg-service-icon {
    height: 30px;
    width: 30px;
}

.clinical-form-overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    cursor: pointer;
}

.clinical-form {
    background-color: white;
    padding: 50px;
    width: 80%;
    transform: scale(0.8);
    margin: 0 auto;
}

.clinical-form-overlay .icon {
    height: 40px;
    width: 40px;
}

.clinical-form-overlay .form-area .form-divider {
    height: 0.5px;
    width: 100%;
    background-color: gray;
    margin: 15px 0;
}

.clinical-form-overlay .form-area .price, .clinical-form-overlay .form-area .title {
    font-size: 22px;
}

.clinical-form-overlay input, select {
    outline: unset;
    border: none;
    border-bottom: 1px solid gray;
    background-color: unset;
    padding: 10px;
    width: 25%;
    margin: 20px 0;
}

input:focus, select:focus {
    border: 1px solid #045de9 !important;
}

.clinical-form-overlay .text-area {
    font-size: 30px;
    margin: 20px 0;
}

.clinical-form .form-area {
    margin-top: 30px;
}

.clinical-form-overlay .cross {
    right: 50px;
    font-size: 30px;
    color: red;
}