.schedule_1 {
    position: relative;
}

.schedule_1 .img_area {
    width: 100%;
}

.schedule_1 .img_area img {
    width: 100%;
}

.schedule_1 .text_area {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 3rem 3rem 0 3rem;
}

.schedule_1 .text_area .heading {
    padding: 1rem 0;
}

.schedule_1 .text_area .heading h1 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 50px;
}

.schedule_1 .text_area .heading p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #615D5D;
    line-height: 30px;
}

.schedule_1 .text_area .box {
    padding: 2rem 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.schedule_1 .text_area .box input[type="text"],
.schedule_1 .text_area .box input[type="email"],
.schedule_1 .text_area .box input[type="number"] {

    padding: 0.8rem 1rem;
    border: 1px solid #000;
    width: 100%;
    margin-top: 1rem;
}

.schedule_1 .text_area .box select {
    padding: 0.8rem 1rem;
    border: 1px solid #000;
    width: 100%;
    margin-top: 1rem;
}

.schedule_1 .text_area .box textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #000;
    /* width: 100%; */
    margin-top: 1rem;
}

.schedule_1 .text_area .box p {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 0;
    color: #615D5D;
    line-height: 30px;
}
.schedule_1 .text_area #selected-date-display {
    margin: 0 1rem !important;
}

.schedule_1 .text_area .box .btn-box {
    display: flex;
    align-items: center;
    justify-content: start;
    padding-left: 1rem;
    margin-top: 1rem;

}

.schedule_1 .text_area .box .btn-box button {
    border: 1px solid #000;
    padding: 0.4rem 1.5rem;
    background: transparent;
    font-size: 0.8rem;
}

.schedule_1 .text_area .box .btn-box button:nth-child(2) {
    margin-left: 1rem;
}

.schedule_1 .text_area .box .date-time-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
}


.schedule_1 .text_area .box .date-time-box .time {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.schedule_1 .text_area .box .date-time-box .time .time_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.schedule_1 .text_area .box .date-time-box .time .time_box .radio_box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule_1 .text_area .box .date-time-box .time .time_box .radio_box span {
    width: 60%;
    font-size: 1.1rem;
    font-weight: 500;
}

/* .schedule_1 .text_area .box .date-time-box .time .time_box .radio_box input{
    accent-color: #BB5327; 
} */
.schedule_1 .text_area .box .s_btn {
    border: 1px solid transparent;
    background-color: #BB5327;
    color: #fff;
    padding: 1rem;
    font-weight: 500;
}

.schedule_1 .text_area .box .date-time-box .time .time_box .radio_box input[type='radio'] {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    outline: none;
    margin-right: 1rem;
    box-shadow: 0 0 0 2px #BB5327;
}

.schedule_1 .text_area .box .date-time-box .time .time_box .radio_box input[type='radio']:before {
    content: '';
    display: block;
    width: 70%;
    height: 70%;
    margin: 14% auto;
    border-radius: 50%;
}

.schedule_1 .text_area .box .date-time-box .time .time_box .radio_box input[type='radio']:checked:before {
    background: #BB5327;
}

@media(max-width:768px) {
   
    .schedule_1 .text_area .box .date-time-box {
        display: flex;
      flex-direction: column-reverse;
    }
    .schedule_1 .text_area .box .date-time-box .time .time_box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
}
@media(max-width:758px) {
    .schedule_1 .text_area {
        padding: 3rem 1rem 0 1rem;
    }

    .schedule_1 .img_area {
        display: none;
    }
    .schedule_1 .text_area .box .date-time-box .time {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    
    .schedule_1 .text_area .box .date-time-box .time .time_box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        width: 100%;
    }
    
}




/* ----------------------------calender------------------------ */

.wrapper {
    width: 350px;
    background: transparent;
    border: 1px solid #BB5327;
    border-radius: 10px;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); */
    /* padding-bottom: 1rem; */
}

.wrapper header {
    display: flex;
    align-items: center;
    padding: 0.4rem;
    justify-content: center;
}

.wrapper header .current-date {
    text-align: center;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    background-color: #BB5327;
    color: #fff !important;
    padding: 0.1rem 1rem!important;
    border-radius: 10px !important;
    margin: 0 !important;
}

header .icons {
    /* display: none; */
}

header .icons span {
    cursor: pointer;
    color: #878787;
    text-align: center;
    line-height: 38px;
    font-size: 1.9rem;
}

.icons span:last-child {
    /* margin-right: -10px; */
}

header .icons span:hover {
    background: #f2f2f2;
}

header .current-date {
    font-size: 1.45rem;
    font-weight: 500;
}

.calendar {
    padding: 5px;}

.calendar ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    text-align: center;
}

.calendar .days {
    margin-bottom: 20px;
}

.calendar li {
    color: #333;
    width: calc(100% / 7);
    font-size: 1.07rem;
}

.calendar .weeks li {
    font-weight: 500;
    cursor: default;
}

.calendar .days li {
    z-index: 1;
    cursor: pointer;
    position: relative;
    margin-top: 10px;
}

.days li.inactive {
    color: #aaa;
}

.days li.active {
    color: #fff;
}

.days li::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    height: 40px;
    width: 40px;
    z-index: -1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.days li.active::before {
    background: #BB5327;
}

.days li:not(.active):hover::before {
    background: #f2f2f2;
}