﻿.window {
    height: 100%;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    vertical-align: top;
    position: relative;
}

.windowHeader {
    background-color: white;
    width: 100%;
    height: 40px;
    padding: 5px;
    /*    margin-top: 16px;*/
    padding: 16px 33px 45px 33px;
    border-bottom: 1px solid #DBDBDB;
}

    .windowHeader span {
        font-size: large;
        color: black;
        font-weight: bold;
    }

.windowBody {
    padding: 25px;
    background: white;
/*    border: 1px solid #DBDBDB;*/
    margin: 10px;
    color: black;
}

.components {
    display: inline-block;
    border-radius: 5px;
    vertical-align: top;
    height: 100%;
    /*max-height: 700px;*/
    overflow-y: auto;
    word-break: break-word;
    white-space: normal;
    padding: 10px;
}

.component-content {
    box-shadow: 2px 1px 15px RGBA(0,0,0, 0.2);
    border-radius: 5px;
    border: 1px solid #DBDBDB;
}

.btn-close {
    float: right;
}

.textarea {
    min-height: 200px;
}

.modal-backdrop {
    z-index: -1;
}

#fullscreenLoader {
    position: fixed;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: black;
    display: none;
    overflow: hidden;
}

#loaderContent {
    text-align: center;
    top: 50%;
    position: fixed;
    LEFT: 50%;
}

.lds-roller {
    display: inline-block;
    position: fixed;
    width: 80px;
    height: 80px;
    top: 50%
}

    .lds-roller div {
        animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        transform-origin: 40px 40px;
    }

        .lds-roller div:after {
            content: " ";
            display: block;
            position: absolute;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: teal;
            margin: -4px 0 0 -4px;
        }

        .lds-roller div:nth-child(1) {
            animation-delay: -0.036s;
        }

            .lds-roller div:nth-child(1):after {
                top: 63px;
                left: 63px;
            }

        .lds-roller div:nth-child(2) {
            animation-delay: -0.072s;
        }

            .lds-roller div:nth-child(2):after {
                top: 68px;
                left: 56px;
            }

        .lds-roller div:nth-child(3) {
            animation-delay: -0.108s;
        }

            .lds-roller div:nth-child(3):after {
                top: 71px;
                left: 48px;
            }

        .lds-roller div:nth-child(4) {
            animation-delay: -0.144s;
        }

            .lds-roller div:nth-child(4):after {
                top: 72px;
                left: 40px;
            }

        .lds-roller div:nth-child(5) {
            animation-delay: -0.18s;
        }

            .lds-roller div:nth-child(5):after {
                top: 71px;
                left: 32px;
            }

        .lds-roller div:nth-child(6) {
            animation-delay: -0.216s;
        }

            .lds-roller div:nth-child(6):after {
                top: 68px;
                left: 24px;
            }

        .lds-roller div:nth-child(7) {
            animation-delay: -0.252s;
        }

            .lds-roller div:nth-child(7):after {
                top: 63px;
                left: 17px;
            }

        .lds-roller div:nth-child(8) {
            animation-delay: -0.288s;
        }

            .lds-roller div:nth-child(8):after {
                top: 56px;
                left: 12px;
            }

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.subscription-plan-row {
    border-radius: 5px;
    border: 2px solid black !important;
    margin: 10px;
}

.selected-subscription-plan {
    border-radius: 5px;
    background-color: #60bf00 !important;
    color: black !important;
}

.subscription-plan-row:hover {
    background-color: #b2dfdb;
    cursor: pointer;
    color: black;
}

#successfulPayment {
    font-size: 4em;
    color: green;
}

.light-grey-text {
    color: grey;
}

.money-text {
    font-size: 2em;
    font-weight: bolder;
}

.order-card {
    color: black;
    margin: 10px;
}

.bg-c-blue {
    background: linear-gradient(45deg,#4099ff,#73b4ff);
}

.bg-c-green {
    background: linear-gradient(45deg,#2ed8b6,#59e0c5);
}

.bg-c-yellow {
    background: linear-gradient(45deg,#FFB64D,#ffcb80);
}

.bg-c-pink {
    background: linear-gradient(45deg,#FF5370,#ff869a);
}

.bg-c-red {
    background: linear-gradient(45deg,#FF5370,#ff869a);
}


.card {
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 2.94px 0.06px rgba(4,26,55,0.16);
    box-shadow: 0 1px 2.94px 0.06px rgba(4,26,55,0.16);
    border: none;
    margin-bottom: 30px;
}

    .card .card-block {
        padding: 25px;
        color: black !important;
    }

.order-card i {
    font-size: 36px !important;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.label-success-green {
    color: #fff;
    background-color: #2ed8b6; /*,#59e0c5*/
    border: 2px solid #2ed8b6;
}

.label-success-blue {
    color: #fff;
    background-color: #4099ff; /*,#73b4ff);*/
    border: 2px solid #4099ff;
}

.label-success-red {
    color: #fff;
    background-color: #FF5370; /*,#ff869a);*/
    border: 2px solid #FF5370;
}

.label-success-yellow {
    color: #fff;
    background-color: #FFB64D; /*,#ffcb80);*/
    border: 2px solid #FFB64D;
}

.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}

.selectable-row {
    cursor: pointer;
}

.card-block a {
    color: black !important;
}

.outer-flex-block {
    display: flex;
    flex-direction: row;
}

.inner-flex-block {
    flex: 1;
    justify-content: center
}

.label-bg {
    font-size: 30px;
}


.profile-image {
    float: left;
    width: calc(50% - 1rem);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0px;
}

.icon-temp {
    font-size: 5rem !important;
}

.custom-file-input::-webkit-file-upload-button {
    visibility: hidden;
}

.custom-file-input::before {
    content: 'Select a Document';
    display: inline-block;
    background: linear-gradient(top, #f9f9f9, #e3e3e3);
    border: 1px solid #999;
    border-radius: 3px;
    padding: 5px 8px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    text-shadow: 1px 1px #fff;
    font-weight: 700;
    font-size: 10pt;
}

.custom-file-input:hover::before {
    border-color: black;
}

.custom-file-input:active::before {
    background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}

.test {
    background-color: orange;
}

.red-text {
    color: red;
}

.dashboard-time {
    line-height: 6em;
}

.border-gray {
    border: 1px solid gray !important;
    border-right: 5px solid gray !important;
    border-left: 5px solid gray !important;
}

.border-orange {
    border: 1px solid orange !important;
    border-right: 5px solid orange !important;
    border-left: 5px solid orange !important;
}

.border-maroon {
    border: 1px solid maroon !important;
    border-right: 5px solid maroon !important;
    border-left: 5px solid maroon !important;
}

.border-red {
    border: 1px solid red !important;
    border-right: 5px solid red !important;
    border-left: 5px solid red !important;
}

.border-green {
    border: 1px solid #11f100 !important;
    border-right: 5px solid #11f100 !important;
    border-left: 5px solid #11f100 !important;
}

.active-subscription {
    background: #b2dfdb;
    color: white;
}

.expired-subscription {
    background: #FF0000;
    color: white !important;
}

    .expired-subscription > td {
        background: #FF0000;
        color: white !important;
    }

.appointmentNotes {
    padding: 5px;
    text-align: center;
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .component {
        width: 350px !important;
    }
}



body, .left_col, .nav_title {
}

.theme1 {
    color: black !important;
    background-color: darkorange;
    font-family: "Helvetica Neue", Roboto, Arial, "Droid Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.471
}

    .theme1 .side-menu-item {
        color: black !important;
    }

        .theme1 .side-menu-item:hover {
            background-color: orange !important;
            color: black;
            transition: background-color 0.5s;
        }

.theme2 {
    color: black !important;
    background-color: lightblue;
    font-family: "Helvetica Neue", Roboto, Arial, "Droid Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.471
}

    .theme2 .side-menu-item {
        /*        color: black !important;*/
    }

        .theme2 .side-menu-item:hover {
            background-color: black !important;
            color: white;
            transition: background-color 0.5s;
        }


.theme3 {
    color: black !important;
    background-color: seagreen;
    font-family: "Helvetica Neue", Roboto, Arial, "Droid Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.471
}

    .theme3 .side-menu-item {
        color: white !important;
    }

        .theme3 .side-menu-item:hover {
            background-color: seagreen !important;
            color: black;
            transition: background-color 0.5s;
        }

.active-menu {
    background-color: black;
    color: white !important;
}

    .active-menu:hover {
        background-color: #00897b !important;
        color: white
    }

.container-card {
    box-shadow: 2px 1px 15px RGBA(0,0,0, 0.2);
    margin: 10px;
    border-radius: 5px;
    border: 1px solid #DBDBDB;
}

.teal {
    color: #004d40;
}

.asterisk {
    color: red;
    content: '*'
}

.fg-white {
    color: white;
}

.tile-blue {
    background-color: lightblue;
    color: black;
}

.tile-red {
    background-color: mediumvioletred;
    color: white;
}

.tile-green {
    background-color: lightcyan;
    color: black;
}

.tile-yellow {
    background-color: greenyellow;
    color: black;
}

.meddiary {
    background-color: #479DC2;
}

.btn-meddiary:hover {
    background-color: #00aeef;
}

.logo {
    display: inline-block;
    height: 65px;
    background-color: black
}

    .logo > img {
        vertical-align: middle
    }

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .logo {
        height: 55px;
    }
}

.input-field label {
    pointer-events: all;
}

.menu_fixed {
    overflow-y: scroll !important;
}

.content-spacer-b {
    margin-bottom: 16px;
}

.content-spacer-r {
    margin-right: 16px;
}

.content-spacer-l {
    margin-left: 16px;
}

.content-spacer-t {
    margin-top: 16px;
}

.content-spacer-b-24 {
    margin-bottom: 24px;
}

.content-spacer-t-24 {
    margin-top: 24px;
}

p {
    word-wrap: break-word;
}
@import url('https://fonts.googleapis.com/css?family=Roboto');

body {
    font-family: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
}

i {
    margin-right: 10px;
}

/*------------------------*/
input:focus,
button:focus,
.form-control:focus {
    outline: none;
    box-shadow: none;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #fff;
}
/*----------step-wizard------------*/
.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

/*---------signup-step-------------*/
.bg-color {
    background-color: #333;
}

.signup-step-container {
    padding: 150px 0px;
    padding-bottom: 60px;
}




.wizard .nav-tabs {
    position: relative;
    margin-bottom: 0;
    border-bottom-color: transparent;
}

.wizard > div.wizard-inner {
    position: relative;
}

.connecting-line {
    height: 2px;
    background: #e0e0e0;
    position: absolute;
    width: 75%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 50%;
    z-index: 1;
}

.wizard .nav-tabs > li.active > a, .wizard .nav-tabs > li.active > a:hover, .wizard .nav-tabs > li.active > a:focus {
    color: #555555;
    cursor: default;
    border: 0;
    border-bottom-color: transparent;
}

span.round-tab {
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    z-index: 2;
    position: absolute;
    left: 0;
    text-align: center;
    font-size: 16px;
    color: #0e214b;
    font-weight: 500;
    border: 1px solid #ddd;
}

    span.round-tab i {
        color: #555555;
    }

.wizard li.active span.round-tab {
    background: #2596be;
    color: #fff;
    border-color: #2596be;
}

    .wizard li.active span.round-tab i {
        color: #5bc0de;
    }

.wizard .nav-tabs > li.active > a i {
    color: #2596be;
}

.wizard .nav-tabs > li {
    width: 20%;
}

.wizard li:after {
    content: " ";
    position: absolute;
    left: 46%;
    opacity: 0;
    margin: 0 auto;
    bottom: 0px;
    border: 5px solid transparent;
    border-bottom-color: red;
    transition: 0.1s ease-in-out;
}



.wizard .nav-tabs > li a {
    width: 30px;
    height: 30px;
    margin: 20px auto;
    border-radius: 100%;
    padding: 0;
    background-color: transparent;
    position: relative;
    top: 0;
}

    .wizard .nav-tabs > li a i {
        position: absolute;
        top: -15px;
        font-style: normal;
        font-weight: 400;
        white-space: nowrap;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 12px;
        font-weight: 700;
        color: #000;
    }

    .wizard .nav-tabs > li a:hover {
        background: transparent;
    }

.wizard .tab-pane {
    position: relative;
    padding-top: 20px;
}


.wizard h3 {
    margin-top: 0;
}

.prev-step,
.next-step {
    font-size: 13px;
    padding: 8px 24px;
    border: none;
    border-radius: 4px;
    margin-top: 30px;
}


.step-head {
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 20px;
}

.term-check {
    font-size: 14px;
    font-weight: 400;
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 40px;
    margin-bottom: 0;
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 40px;
    margin: 0;
/*    opacity: 0;*/
}

.footer-link {
    margin-top: 30px;
}

.all-info-container {
}

.list-content {
    margin-bottom: 10px;
}

    .list-content a {
        padding: 10px 15px;
        width: 100%;
        display: inline-block;
        background-color: #f5f5f5;
        position: relative;
        color: #565656;
        font-weight: 400;
        border-radius: 4px;
    }

        .list-content a[aria-expanded="true"] i {
            transform: rotate(180deg);
        }

        .list-content a i {
            text-align: right;
            position: absolute;
            top: 15px;
            right: 10px;
            transition: 0.5s;
        }




@media (max-width: 767px) {
    .sign-content h3 {
        font-size: 40px;
    }

    .wizard .nav-tabs > li a i {
        display: none;
    }

    .signup-logo-header .navbar-toggle {
        margin: 0;
        margin-top: 8px;
    }

    .signup-logo-header .logo_area {
        margin-top: 0;
    }

    .signup-logo-header .header-flex {
        display: block;
    }
}

/*Home*/
.home h3 {
}
.bolder{
    font-weight: 800;
}
.md-blue {
    color: #479DC2;
}
.icon-enlarge > i{
    font-size: 50px;
}

.height25 {
    height: 25%;
}

.square-parent{
    display: flex;
    justify-content:center;
}
.square {
    background-color: #479DC2;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}


p {
    font-size: 18px;
}

.row{
/*    border: 1px solid black;*/
}
h5{
    font-weight: 700;
}