html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    background: #FCF2F2 !important;
    margin-bottom: 60px;
}

.hide {
    display: none !important;
}

.navbar-light .navbar-toggler {
    border: 0;
    box-shadow: none;
    border: 0;
}

/*.logo {
    background: url(../images/logo-icon.png) no-repeat center left;
    padding-left: 30px;
}*/

h1 {
    color: #2C0606;
    font-size: 24px;
}

.head2 {
    font-size: 24px;
}

.form-box {
    box-shadow: 2px 22px 24px #ccc;
    padding: 15px;
    border-radius: 10px;
}

.btn.orange-btn, input.btn.orange-btn {
    background: #ED6F4F;
    font-weight: 600;
    width: 100%;
    border: none;
    box-shadow: none;
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
}

button#verifyOtpButton {
    background: #ED6F4F;
    font-weight: 600;
    width: 100%;
    border: none;
    box-shadow: none;
    padding: 10px;
    font-size: 12px;
}

input.form-control {
    background: #F9EDED;
    border: 1px solid #F9EDED;
    padding: 10px;
}

.form-control:focus {
    background: #F9EDED !important;
    box-shadow: none !important;
    border: 1px solid #F7B7B7 !important;
}

.profile-list img {
    display: inline-block;
    margin-right: 5px;
    vertical-align: top;
}

.profile-list li p {
    display: block;
    font-weight: bold;
    margin: 0;
}

.list-content {
    display: inline-block;
}

.profile-list li {
    border: 0;
    margin: 0;
    padding: 5px 0;
}

ul.list-group li:hover, ul.list-group.list-li li.active {
    background: #fe5306;
    color: #ffffff;
    cursor: pointer;
}

ul.list-group.ul-no-hover li:hover, ul.list-group.ul-no-hover li.active {
    background: #fff;
    color: inherit;
}



div#appointment_container input.btn {
    border: 1px solid #ccc;
    color: #000;
    border-radius: 5px;
}

#appointment_container [disabled] {
    opacity: .3 !important;
}

#appointment_container [style="margin: 3px; background-color: rgb(10, 245, 242);"] {
    background: #fe5306 !important;
    color: #ffffff !important;
}

.btn:hover, .btn:focus {
    background: #ED6F4F !important;
}


.user-login .btn h2 {
    font-size: 15px;
    padding: 30px;
}

    .user-login .btn h2 i {
        display: block;
        font-size: 40px;
        margin-bottom: 10px;
    }

.media-custom {
    display: flex;
}

    .media-custom img {
        margin-right: 1rem;
        border-radius: 5px;
    }

ul.list-group {
    background: #ffffff;
}

    ul.list-group h3 {
        margin: 15px 15px 5px;
    }

    ul.list-group li {
        border: 0;
        padding: 8px 15px;
        list-style-type: none;
    }

.tab-content {
    background: #fff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 0 10px #ececec;
    overflow: hidden;
    position: relative;
}

/*.price-appointment  { display: flex;}*/
.price-appointment h4 {
    font-size: 30px;
    width: 100%;
}

    .price-appointment h4 span {
        font-size: 12px;
    }

.price-appointment {
    width: 100%;
}


.appointment-details li:hover {
    background: none !important;
    color: inherit !important;
    list-style: none;
}

.appointment-details .upcoming-booking h3 {
    margin: 10px 0;
}

.appointment-details li {
    background: none;
}

.box-heading {
    padding: 4px 15px
}

label.control-label {
    font-size: 16px;
    color: #2c0606;
    margin-bottom: 2px;
}

.other-details span img {
    margin-right: 5px;
    vertical-align: top;
}

.SuccessColor {
    color: #28a745; /* Bootstrap success green */
}

.ErrorColor {
    color: #dc3545; /* Bootstrap danger red */
}

@media screen and (max-width:1920px) {
}

@media screen and (max-width:1920px) {
    /* .main-outer {
        position: absolute;
        top:80px;
        left: 0;
        right: 0;
        max-height: 85vh;
        overflow-y: auto;
    }*/
}

.box-body h2 {
    font-size: 20px;
    color: #585858;
    margin-bottom: 10px;
}

h1.preReg {
    background: #ED6F4F;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: #fff;
    text-align: center;
}

ul.profile li {
    border-bottom: 1px solid #d9d9d9;
}

    ul.profile li:nth-child(even) {
        background: #f9f9f9;
    }

    ul.profile li:hover, ul.profile li.active {
        background: #fe5306;
    }

.checkmark-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #4caf50;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popIn 0.3s ease-out forwards;
    margin: 0 auto 10px;
}

.checkmark {
    width: 20px;
    height: 40px;
    border-right: 5px solid white;
    border-bottom: 5px solid white;
    transform: rotate(45deg) scale(0);
    animation: drawCheck 0.5s ease-out 0.3s forwards;
}

@keyframes drawCheck {
    to {
        transform: rotate(45deg) scale(1);
    }
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* for Close Animated */

.close-ani {
    width: 80px;
    height: 80px;
    background-color: #f44336;
    border-radius: 50%;
    position: relative;
    animation: popIn 0.3s ease-out;
    margin: auto;
}

.line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 6px;
    background: white;
    border-radius: 3px;
    transform-origin: center;
    opacity: 0;
}

.line1 {
    transform: translate(-50%, -50%) rotate(45deg) scaleX(0);
    animation: drawLine 0.3s ease-out 0.3s forwards;
}

.line2 {
    transform: translate(-50%, -50%) rotate(-45deg) scaleX(0);
    animation: drawLine 0.3s ease-out 0.5s forwards;
}

@keyframes drawLine {
    to {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(var(--rotate)) scaleX(1);
    }
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.Disclaimer {
    font-size: 12px;
}

.msg-pos {
    display: inline-block;
    margin-top: 40px;
    text-align: center;
}

#serviceTable tbody tr:nth-child(e) {
    background: #fbfbfb;
}

.consent-row {
    display: inline-flex;
    align-items: baseline;
}

    .consent-row .form-check-label {
        font-size: 13px;
        margin: 0 5px;
    }

@media screen and (max-width: 767px) {
    .navbar-collapse a.btn.orange-btn {
        width: auto;
        position: absolute;
        top: 0;
    }

    .main-outer {
        max-width: 100%;
    }
}

table#serviceTable td + td {
    width: 85%;
    padding: .5rem 0;
}

    table#serviceTable td + td + td {
        width: 5%;
    }

.box-footer .table td {
    background: #b7b7b7;
    border: 0;
    color: #fff;
}

/* Alternate colors for 2-row service blocks */
/*#serviceTable tbody tr:nth-child(4n+1) {
    background-color: #fff5f2;*/ /* light orange */
/*}

#serviceTable tbody tr:nth-child(4n+2) {
    background: #ffe5de;
}

    #serviceTable tbody tr:nth-child(4n+2) td {
        border-bottom: 1px solid #ccc;
    }

        #serviceTable tbody tr:nth-child(4n+2) td + td {
            text-align: center !important;
        }

#serviceTable tbody tr:nth-child(4n+4) td + td {
    text-align: center !important;
}

    #serviceTable tbody tr:nth-child(4n+3), #serviceTable tbody tr:nth-child(4n+4) {
    background-color: #ffffff;*/ /* white */
/*}



#serviceTable tbody tr:nth-child(4n+3) {
    background: #f9f9f9;
}

#serviceTable tbody tr:nth-child(4n+4) {
    background: #ededed;
}

#serviceTable tbody tr:nth-child(4n+3) td { border: 0;}

table#serviceTable th {
    background: #ED6F4F;
    color: #fff;
}*/

table#serviceTable th {
    border-top: 1px solid #212529;
}

.service-list li {
    border-bottom: 1px solid #dbdbdb !important;
    padding: 15px 20px !important;
}

    .service-list li .media-custom {
        align-items: center;
    }

.head2 {
    font-size: 20px;
}



header, footer {
    color: #fff;
    text-align: center;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 100;
}

header {
    top: 0;
}

footer {
    bottom: 0;
}

.main-outer {
    flex: 1;
    overflow-y: auto; /* scrolling enabled */
    margin-top: 80px;
    margin-bottom: 10px;
    max-height: 75vh;
}

/*section {
    background: #e6e6e6;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}*/
