.blog-card .blog-date {
    /*position: absolute;*/
    right: 20px;
    top: 20px;
   /* padding: 13px 5px 16px 5px;
    background-color: var(--white-color);
    font-size: 14px;
    line-height: 1.3;
    width: 60px;
    border-top: 2px solid var(--theme-color);
    text-align: center;
    color: var(--title-color);
    border-radius: 0 0 10px 10px;
    z-index: 3;*/
}

p{
    text-align: justify;
}

/*
.popup-search-box.show {
    opacity: 1;
    visibility: visible;
    width: 100.1%;
    height: 100%;
    transition: all ease 0.4s;
    border-radius: 0;
}



.popup-search-box form button {
    position: unset;
    top: 0px;
    background-color: #07ccec;
    border: none;
    color: #fff;
    font-size: 16px;
    right: 12px;
    color: var(--white-color);
    cursor: pointer;
    width: 305px;
    height: 50px;
    transition: all ease 0.4s;
    transform: scale(1.001);
}

.popup-search-box form {
   /* position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block; ***
    padding-bottom: 0px;
    /*cursor: auto;
    width: 100%;
    max-width: 700px;
    transform: translate(-50%, -50%) scale(0);
    transition: transform ease 0.4s; *****
}*/


.popup-appt-box {
    position: fixed;
    top: 0;
    left: 50%;
    background-color: rgba(0, 0, 0, 0.95);
    height: 0;
    width: 0;
    overflow: hidden;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    border-radius: 50%;
    transform: translateX(-50%);
    transition: all ease 0.4s;
}


.popup-appt-box button.searchClose {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 40px;
    right: 40px;
    border-width: 1px;
    border-style: solid;
    border-color: var(--theme-color);
    background-color: transparent;
    font-size: 22px;
    border-radius: 50%;
    transform: rotate(0);
    transition: all ease 0.4s;
}

.popup-appt-box form {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    padding-bottom: 10px;
    cursor: auto;
    width: 100%;
    max-width: 700px;
    transform: translate(-50%, -50%) scale(0);
    transition: transform ease 0.4s;
}

.popup-appt-box.show {
    opacity: 1;
    visibility: visible;
    width: 100.1%;
    height: 100%;
    transition: all ease 0.4s;
    border-radius: 0;
}

.popup-appt-box.show form {
    transition-delay: 0.5s;
    transform: translate(-50%, -50%) scale(1);
}

.popup-appt-box form .form-title-box {
    padding: 20px;
}

.popup-appt-box form .form-box{
    padding: 30px;
}