/* Appointment Popup Styles */
.appointment-popup {
    position: fixed;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.80);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.appointment-popup.popup-visible {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.appointment-popup .popup-inner {
    position: relative;
    max-width: 600px;
    margin: 80px auto;
    background-color: #ffffff;
    padding: 0px;
    border-radius: 8px;
}

.appointment-popup .upper-box {
    position: relative;
    padding: 30px 30px;
    border-bottom: 1px solid #ebebeb;
}

.appointment-popup .overlay-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgba(0, 0, 0, 0.03);
}

.appointment-popup .close-popup {
    position: relative;
    font-size: 16px;
    color: #222;
    cursor: pointer;
    z-index: 1;
    transition: all 500ms ease;
}

.appointment-popup .close-popup:hover {
    color: #03382e;
}

.appointment-popup .appointment-form {
    position: relative;
    padding: 40px 30px;
}

.appointment-popup .appointment-form h3 {
    font-size: 24px;
    line-height: 1.2em;
    color: #222;
    font-weight: 700;
    margin-bottom: 30px;
}

.appointment-popup .form-group {
    position: relative;
    margin-bottom: 20px;
}

.appointment-popup .form-group input {
    width: 100%;
    height: 50px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 400;
    color: #222;
    background-color: #f4f4f4;
    border: 1px solid #c5c5c5;
    border-radius: 5px;
    transition: all 300ms ease;
}

.appointment-popup .form-group input:focus {
    border-color: #03382e;
    background-color: #ffffff;
}
