
@font-face {
  font-family: trakyaSans_bold;
  src: url("../fonts/trakyaSans_bold.ttf");
}
@font-face {
  font-family: trakyaSans;
  src: url("../fonts/trakyaSans.ttf");
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #fff;
}


.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    padding-right: 12px;
    padding-left: 12px;
}
.row {
    margin-right: -12px;
    margin-left: -12px;
}

.owl-dot:focus { box-shadow: none; outline: none; }
input:focus, button:focus {
    outline: none;
    box-shadow: none;
}
a { transition: .4s; }
a:hover { transition: .4s; }

.btn:focus, .btn:active, .btn:visited { outline: none; box-shadow: none; }

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
    font-family: 'Exo', sans-serif;
}
p {
    color: #4a4a4a;
    font-weight: 300;
}

.ui-tooltip {
    font-size: 12px;
    padding: 3px 10px !important; 
    color: #01b9b1;
}


/* PROFILE USER */
.user {
    display: inline-block;
    text-align: left;
}
.user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0px 3px 8px 1px rgb(0 0 0 / 20%);
    margin-right: 6px;
}
.user span {
    display: inline-block;
    vertical-align: middle;
}
.user h5 {
    margin-bottom: 2px;
    font-size: 15px;
    color: #8FB03F;
}
.user p {
    font-size: 13px;
    color: #D3D3D3;
    margin-bottom: 0;
    line-height: 1.2em;
}
/* PROFILE USER -E */


/* == FORM STYLE == */
.btn {
    font-size: 14px;
    background: #8FB03F;
    color: #fff;
    padding: 6px 15px 4px;
    cursor: pointer;
}
.btn:hover {
    background: #809F37;
    color: #fff;
}

.formBox {
    margin-bottom: 10px;
}
.formBox h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.form-group {
    position: relative;
    margin-bottom: 18px;
}
.form-group label {
    font-family: Exo, sans-serif;
    font-size: 15px;
    margin-bottom: 7px;
    font-weight: 500;
    width: 100%;
}
.form-control {
    border-radius: 4px;
    background: transparent;
    border-color: #8FB03F;
    font-size: 14px;
    color: #8FB03F;
    height: 42px;
}
.form-control:hover {
    background-color: rgb(143 176 63 / 5%);
}
.form-control:focus {
    color: #8FB03F;
    border-color: #8FB03F;
    background-color: rgb(143 176 63 / 5%);
    box-shadow: none;
    outline: none;
}
textarea.form-control {
    height: 75px;
    resize: none;
}
.form-control::-webkit-input-placeholder {
  color: rgb(143 176 63 / 0.65);
}
.form-control::-moz-placeholder {
  color: rgb(143 176 63 / 0.65);
}
.form-control:-ms-input-placeholder {
  color: rgb(143 176 63 / 0.7);
}
.form-control:-moz-placeholder {
  color: rgb(143 176 63 / 0.65);
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 25px;
    background: url(../images/icons/drop.svg);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 8px) 18px;
}

.formIco {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #8FB03F;
}

.formBtn {
    padding-top: 12px;
}
.formBtn .btn {
    min-width: 125px;
    text-transform: uppercase;
    padding: 7px 15px 5px;
    font-size: 15px;
    margin-right: 12px;
}
.formBtn .btn.cancel {
    background: #D9D9D9;
    color: #808080;
    min-width: 100px;
}

.form-group .check {
    width: auto;
    margin-right: 14px;
    margin: 11px 15px 0 0;
}

/* CHECK-BOX */
.check {
    display: inline-block;
    cursor: pointer;
    width: 100%;
}
.check input {
    display: none;
}
.check small {
    display: inline-block;
    vertical-align: top;
    width: 18px;
    height: 18px;
    border: 2px solid #8FB03F;
    position: relative;
    top: 2px;
    transition: .3s;
}
.check input:checked ~ small:after {
    content: "";
    width: 10px;
    height: 10px;
    background: #8FB03F;
    position: absolute;
    left: 2px;
    top: 2px;
    transition: .3s;
}
.check span {
    display: inline-block;
    vertical-align: top;
    font-family: 'Exo', sans-serif;
    font-size: 14px;
    color: #8FB03F;
    width: calc(100% - 25px);
    padding-left: 5px;
}
.check span a {
    color: #4BB6CD;
}

.check.radio small {
    border-radius: 50%;
}
.check.radio input:checked ~ small:after {
    border-radius: 50%;
}

/* CHECK-BOX -E */



.uploadFile {
    display: inline-block;
    cursor: pointer;
}
.uploadFile input {
    display: none;
}
.uploadFile .user img {
    width: 100px;
    height: 100px;
    border-width: 2px;
    margin-right: 10px;
}
.uploadFile p {
    color: #7C7C7C;
    margin-top: 10px;
    font-size: 11px;
}
.uploadFile .btn {
    min-width: 205px;
}

/* FILE UPLOAD WITH PREVIEW */
.UploadedFileBox {
    margin: 15px 0 10px;
}
.UploadedFile {
    display: inline-block;
    width: 85px !important;
    height: 85px;
    border: 1px solid #C3C3C3;
    background-image: url(../images/icons/plus.svg);
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    margin-right: 10px;
    overflow: hidden;
}
.UploadedFile input {
    display: none;
}
.UploadedFile img {
    width: 103%;
    height: 103%;
    position: relative;
    top: -1px;
    left: -1px;
}
/* FILE UPLOAD WITH PREVIEW -E */

/* == FORM STYLE -E == */










.title {
    font-size: 26px;
    font-family: 'Exo', sans-serif;
    color: #8FB03F;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: .4px;
    text-transform: uppercase;
}
.title span {
    font-weight: 300;
}

.title2 {
    color: #4BB6CD;
    font-size: 20px;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
}


.BgTitle {
    color: rgb(255, 255, 255);
    font-family: Exo, sans-serif;
    font-size: 19px;
    font-weight: 500;
    background: rgb(143, 176, 63);
    padding: 10px 15px;
    border-radius: 5px 5px 0px 0px;
    position: relative;
    margin-bottom: 30px;
}
.BgTitle .shortDrop {
    padding-right: 20px;
    background-image: url(../images/icons/drop-w.svg);
    background-repeat: no-repeat;
    background-position: 100% 10px;
    background-size: 14px;
    cursor: pointer;
    float: right;
}

.box {
    background: #fff;
    box-shadow: 0px 0px 10px 2px rgb(0 0 0 / 6%);
    border-radius: 5px;
    border: 1px solid #f5f5f5;
    padding: 15px;
    margin-bottom: 18px;
    min-height: 85px;
}
.box:last-child {
    margin-bottom: 0;
}

.box .BgTitle {
    left: -15px;
    top: -15px;
    width: calc(100% + 30px);
    margin-bottom: 15px;
}




/* TABLE DESIGN */
.tableSec {
    display: table;
    width: 100%;
    border: 1px solid #E6EEEE;
    border-radius: 5px 5px 0 0;
}
.tableRow {
    display: table-row;
    width: 100%;
    min-height: 35px;
    border-bottom: 1px solid #E6EEEE;
}
.tableRow:last-child {
    border-bottom: none;
}
.tableRow.rowHead {
    border-radius: 5px 5px 0 0;
    min-height: 40px;
    background: #F4F7F7;
}
.rowHead .tableCell {
    padding: 12px 5px 10px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Exo', sans-serif;
    color: #8FB03F;
}
.rowHead .tableCell:last-child {
    border-right: none;
}
.tableCell {
    color: #585858;
    display: table-cell;
    padding: 8px 5px;
    vertical-align: middle;
    text-align: center;
    font-size: 13px;
    word-break: break-word;
    word-wrap: break-word;
}
.tableCell .user img {
    border-width: 2px;
    width: 55px;
    height: 55px;
}
.tableCell .date {
    margin-bottom: 0;
    color: #4BB6CD;
    text-align: center;
}


.confTxt, .cancelTxt, .pandingTxt {
    font-size: 13px;
    font-weight: 600;
}
.confTxt {
    color: #6BE096;
}
.cancelTxt {
    color: #EE5746;    
}
.pandingTxt {
    color: #F5AB41;
}


.tableCell:last-child {
    border-right: none;
}

.tableCell.check {
    width: 50px;
}
.rowHead .checkbox small {
    border-color: #fff;
}
.rowHead .checkbox input:checked ~ small:after {
    color: #fff;
}
.tableCell.sn {
    width: 50px;
}
.tableCell.roundImg {
    width: 75px;
}
.tableCell.roundImg img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0,0,0,0.15);
}
.tableCell.viewImg {
    width: 100px;
}
.tableCell.viewImg img {
    width: 75px;
    height: auto;
    box-shadow: 0 0 12px rgba(0,0,0,0.15);
}
/* TABLE DESIGN -END */








/* == HEADER -START == */

header {

}
.headerTop {
    background: #4BB6CD;
    padding: 7px 0 6px;
}
.headContact {
    color: #fff;
}
.headContact span {
    display: inline-block;
    margin-right: 15px;
    font-size: 12px;
}
.headContact span i, .headContact span img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
.headContact span i {
    font-size: 16px;
}
.headContact span img {
    width: 16px;
}


.headSocial {
    text-align: right;
}
.headSocial a {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    background: #fff;
    color: #4BB6CD;
    border-radius: 50%;
    text-align: center;
    font-size: 13px;
    margin-left: 2px;
}



.headerMain {
    padding: 5px 0;
    height: 65px;
}

.logoBox {
    margin-top: 11px;
}
.logoBox a {
    display: inline-block;
}
.logoBox a img {
    height: 35px;
}


.headBtn {
    text-align: right;
    margin-top: 12px;
}
.headBtn .btn {
    margin-left: 6px;
}
.headBtn .login {
    background: #4BB6CD;
}


.headerMenu {
    background: #8FB03F;
}

.navBox .navbar {
    padding: 0;
}
.navBox .nav-item {
    border-right: 1px solid #809F37;
}
.navBox .nav-link {
    color: #fff !important;
    padding: 9px 20px 7px !important;
    text-transform: uppercase;
    font-size: 14px;
}
.navBox .nav-item.active .nav-link, .navBox .nav-link:hover {
    background: #809F37;
}

.headUser {
    text-align: right;
    margin-top: 3px;
}
.headUser .user {
    padding-right: 20px;
    position: relative;
    cursor: pointer;
}
.headUser .user:after {
    content: "";
    background-image: url(../images/icons/drop.svg);
    background-repeat: no-repeat;
    background-size: 15px;
    width: 14px;
    height: 11px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.headUser .user img {
    width: 48px;
    height: 48px;
    border: 2px solid #fff;
}
.headUser .user h5 {
    font-size: 13px;
}


.dropList {
    position: absolute;
    right: 0;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    text-align: left;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 175px;
    box-shadow: 0px 0px 8px 3px rgb(0 0 0 / 10%);
    z-index: 2;
    display: none;
}
.dropList li {
    border-bottom: 1px solid #EBEBEB;
}
.dropList li:last-child {
    border-bottom: none;
}
.dropList li a {
    background: #fff;
    padding: 8px 12px;
    display: block;
    width: 100%;
    font-size: 13px;
    color: #626262;
}
.dropList li a:hover {
    background: #F7F7F7;
    text-decoration: none;
}

.dropList li a img {
    margin-right: 5px;
    height: 15px;
    position: relative;
    top: -1px;
}
.dropList li .logout {
    background: #4BB6CD;
    color: #fff;
}
.dropList li .logout:hover {
    background: #4BB6CD;
}
/* == HEADER -END == */





/* == BANNER == */
.bannerSection {
    width: 100%;
    height: 600px;
    background-image: url(../images/bannerImg-1.png);
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.bannerContent {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: linear-gradient(-90deg, rgb(75 182 205 / 0.9) 0%, rgb(30 136 159 / 0.9) 100%);
}

.sliderVideo {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.bannerContent .container {
    height: 100%;
}
.bannerText {
    color: #fff;
    max-width: 600px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.bannerText h4 {
    font-weight: 500;
    font-size: 24px;
    margin: 0;
    padding: 5px 0;
    line-height: 1.3em;
}


.emergencyCall {
    width: 100%;
    height: 100px;
    background-image: url(../images/bannerImg-1.png);
    background-size: cover;
    background-position: center 250px;
    position: relative;
}
.emergencyInner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgb(0 47 121 / 0.85);
}
.emergencyText {
    margin-top: 13px;
}
.emergencyText span {
    display: inline-block;
    vertical-align: middle;
}
.emergencyText span img {
    margin-right: 6px;
}
.emergencyText h4 {
    font-size: 18px;
    margin: 0 0 6px;
    color: #fff;
}
.emergencyText p {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

.emergencyImg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 600px;
}
/* == BANNER -END == */





.featuresSection {
    padding: 65px 0;
}
.featuresImg img {
    width: 100%;
    border: 2px solid #e8e8e8;
}
.featuresContent {
    padding-left: 10px;
}
.featuresContent p {
    font-size: 15px;
    color: #000;
    letter-spacing: .4px;
    line-height: 1.7em;
    margin-bottom: 30px;
}
.featureBox {
    margin-bottom: 22px;
}
.featureBox span {
    display: inline-block;
    vertical-align: middle;
}
.featureBox .text {
    width: calc(100% - 75px - 5px );
    padding-left: 6px;
}
.featureBox h5 {
    font-size: 18px;
    margin-bottom: 4px;
}
.featureBox p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.4em;
}





.howItwork_section {
    padding: 0 0 65px;
}
.howItwork_section .title {
    text-align: center;
    margin-bottom: 5px;
}
.howItwork_section .titletext {
    text-align: center;
    max-width: 715px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.4em;
}

.howWorkBox {
    background: #fff;
    padding: 30px 10px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0px 0px 20px 4px rgb(0 0 0 / 0.1);
    border: 1px solid #efefef;
}
.howWorkImg {
    margin-bottom: 30px;
}
.howWorkImg img {
    height: 100px;
    width: auto;
}
.howWorkBox h4 {
    color: #8FB03F;
    margin-bottom: 12px;
    font-size: 17px;
    text-transform: uppercase;
}
.howWorkBox p {
    font-size: 13px;
    margin-bottom: 0;
}




.testiMSection {
    /*margin-bottom: 45px;*/
    background-image: url(../images/testimonialsBg.png);
    background-size: cover;
}
.testiMSection .row {
    margin-right: 0;
    margin-left: 0;
}
.testiMSection .testiM_col {
    padding-right: 0;
    padding-left: 0;
    position: relative;
    height: 600px;
    padding: 65px 0;
}

.testiM_box {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 65px 0 65px 50px;
    text-align: center;
    background: #fff;
    border-radius: 5px 0 0 5px;
    z-index: 2;
}
.testiM_box:after {
    content: "";
    position: absolute;
    background-image: url(../images/testimonialTextBg.png);
    background-size: 100% 100%;
    width: calc(100% + 75px);
    height: 100%;
    border-radius: 8px;
    top: 0;
    left: 0;
    z-index: -1;
}

.testiM_box .user img {
    width: 60px !important;
}


.testiM_text {
    position: relative;
    padding: 10px 35px;
    padding-right: 0;
}
.testiM_text p {
    font-size: 17px;
    color: #000;
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    line-height: 1.8em;
    margin-bottom: 35px;
}

.testiM_text:before {
    content: "";
    background-image: url(../images/icons/quotes.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 45px;
    height: 45px;
    top: -2px;
    left: 2px;
}
.testiM_text:after {
    content: "";
    background-image: url(../images/icons/quotes.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 45px;
    height: 45px;
    transform: rotate(180deg);
    right: 10px;
    bottom: 45px;
}


/*.testiM_box .owl-dots {
    margin: 0 !important;
    position: relative;
    top: -5px;
}*/
.testiM_box .owl-dots .owl-dot span {
    margin: 0 4px;
    width: 11px;
    height: 11px;
    background: #fff;
    border: 2px solid #8FB03F;
    border-radius: 0;
}
.testiM_box .owl-dots .owl-dot.active span {
    background: #8FB03F;
}




.membershipSection {
    padding: 75px 0;
}

.membership_img {
    padding-right: 15px;
}
.membership_img img {
    width: 100%;
}

.benifits {

}
.benifits .title {
     margin-bottom: 2px;
}
.benifits p {
    font-size: 14px;
    color: #000;
}
.benifitsBox {
    padding: 12px;
    background: #8FB03F;
    border-radius: 5px;
    margin-bottom: 12px;
    width: 400px;
}
.benifitsBox:nth-child(2n) {
    margin-left: 60px;
}

.benefitIcon {
    width: 80px;
    height: 80px;
    background: #fff;
    display: inline-block;
    vertical-align: middle;
    line-height: 80px;
    text-align: center;
    border-radius: 4px;
}
.benefitIcon img {
    width: 52px;
}

.benefitText {
    width: calc(100% - 80px - 5px);
    display: inline-block;
    vertical-align: middle;
    padding-left: 10px;
}
.benefitText h4 {
    margin-bottom: 7px;
    color: #fff;
    font-size: 20px;
}
.benefitText p {
    margin-bottom: 0;
    color: #fff;
}












/* == LOGIN AND REGISTER == */

.regSection {
    padding: 50px 0;
    min-height: calc(100vh - 40px);
    background-image: url(../images/login_Bg.png);
    background-attachment: fixed;
    background-size: cover;
}

.loginLogo {
    text-align: center;
    margin-bottom: 35px;
}
.loginLogo a {
    display: inline-block;
}
.loginLogo img {
    width: 265px;
}

.regImg { width: 100%; padding-right: 35px; }
.regImg img { width: 100%; height: auto; }

.regContent {
    padding: 50px 0;
}
.regContent p {
    font-size: 15px;
    color: #8FB03F;
    margin-bottom: 20px;
}
.regForm {
    margin-top: 12px;
    display: inline-block;
    width: 100%;
}

.regForm .formBox {
    background: rgb(143 176 63 / 0.2);
    border: 1px solid rgb(143 176 63 / 0.35);
    display: inline-block;
    width: 100%;
    border-radius: 10px;
    height: 70px;
    position: relative;
    transition: .3s;
    margin-bottom: 20px;
}
.regForm .formBox .formIcon {
    display: inline-block;
    width: 75px;
    line-height: 70px;
    height: 100%;
    text-align: center;
    font-size: 16px;
    color: #8FB03F;
    border-right: 1px solid rgb(143 176 63 / 0.35);
    vertical-align: middle;
}
.regForm .formBox input {
    vertical-align: middle;
    height: 100%;
    width: calc(100% - 80px);
    border: none;
    background: transparent;
    color: #898989;
    padding: 0 10px;
}

.formBox .placeText {
    position: absolute;
    left: 90px;
    top: 25px;
    display: inline-block;
    font-size: 15px;
    color: #898989;
    transition: .3s;
    cursor: text;
}


.inputFocusOn {
    border: 1px solid #8FB03F;
    transition: .3s;
}
.inputFocusOn .formIcon {
    color: #8FB03F;
}

.inputFocusOn .placeText {
    color: #8FB03F;
    transform: translateY(-20px);
    font-size: 13px;
    transition: .3s;
}

.formBtnBox {
    margin: 18px 0 0;
}
.formBtnBox .btn {
    min-width: 90px;
    margin-right: 12px;
    padding: 7px 25px;
    font-size: 15px;
}
.formBtnBox .btn.loginLink {
    background: #fff;
    border: 1px solid #8FB03F;
    color: #8FB03F;
}


.formBtnBox .btn:focus, .formBtnBox .btn:active, .formBtnBox .btn:visited {
    box-shadow: none;
    outline: none;
}
/* == LOGIN AND REGISTER -end == */








/* ==== FOOTER SECTION ==== */

.subscribe-sec {
    background: #4BB6CD;
    padding: 10px 0 14px;
}
.subscribeText {
    font-size: 25px;
    font-weight: 500;
    color: #fff;
    font-family: 'Exo', sans-serif;
    margin: 8px 0 0;
}
.subscribe-form {
    padding-top: 5px;
}
.subscribe-form input {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 0px;
    padding: 5px 15px;
    height: 40px;
    font-size: 13px;
    width: 375px !important;
    margin-right: 10px;
}
.subscribe-form input:focus {
    border: 1px solid #fff;
    color: #fff;
    box-shadow: none;
}
.subscribe-form input::-webkit-input-placeholder {
    color: #fff;
}
.subscribe-form input::-moz-placeholder {
    color: #fff;
}
.subscribe-form input:-ms-input-placeholder {
    color: #fff;
}
.subscribe-form input::-moz-placeholder {
    color: #fff;
}
.subscribe-form button {
    background: #fff;
    color: #4BB6CD !important;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 0px !important;
    min-width: 140px;
    padding: 9px;
    height: 40px;
}
.subscribe-form button:hover {
    background: #fff;
}
/* --- bottom footer --- */

footer {
    background: #fdfdfd;
    padding: 45px 0 30px;
}
.footer-logo {
    margin-bottom: 20px;
}
.footer-logo img {
    width: 185px;
    height: auto;
}
.footer-logoSec p {
    font-size: 14px;
    line-height: 1.8em;
}

.footerHed {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'Exo', sans-serif;
}
.footerLink {
    padding: 0;
    margin: 0;
}
.footerLink li {
    list-style: none;
    margin-bottom: 3px;
    padding: 0;
}
.footerLink li a {
    color: #000;
    font-size: 14px;
}
.footerLink li a:hover {
    text-decoration: none;
    color: #8FB03F;
}
.contact-list {
    padding: 0;
    margin: 0 0 25px;
}
.contact-list li {
    list-style: none;
    margin-bottom: 5px;
    padding: 0;
    font-size: 20px;
    position: relative;
    word-break: break-all;
    padding-left: 30px;
}
.contact-list li a {
    text-decoration: none;
    color: #000;
    word-break: break-all;
    font-size: 14px;
}
.contact-list li i, .contact-list li a i {
    position: absolute;
    left: 0;
    top: 8px;
    width: 25px;
    text-align: center;
    font-size: 18px;
    color: #8FB03F;
}
.footSocial a {
    display: inline-block;
    font-size: 16px;
    padding: 0 4px;
    color: #000;
}
.footSocial a:hover {
    color: #8FB03F;
}


.footerBottam {
    background: #8FB03F;
    padding: 12px 0 8px;
    height: 40px;
}
.copyRtext {
    text-align: center;
    color: #fff;
    font-size: 14px;
}
/* ==== FOOTER SECTION -E ==== */





/* ==== DASHBOARD ==== */
.dashboardSection {
    padding: 50px 0;
}

.sidebar {
    background: #fff;
    box-shadow: 0px 0px 13px 4px rgb(0 0 0 / 6%);
    border-radius: 5px;
    border: 1px solid #efefef;
    padding: 15px 0;
    min-height: 300px;
}
.dashboard_SB {
    background: #fff;
    box-shadow: 0px 0px 13px 4px rgb(0 0 0 / 6%);
    border-radius: 5px;
    border: 1px solid #efefef;
    padding: 15px 0;
    min-height: 250px;
}

.dashboard_SB .user {
    padding: 0 15px;
    width: 100%;
    margin-bottom: 15px;
}
.dashboard_SB .user img {
    width: 70px;
    height: 70px;
}
.dashboard_SB ul {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Exo', sans-serif;
}
.dashboard_SB ul li {

}
.dashboard_SB ul li a {
    display: inline-block;
    width: 100%;
    padding: 6px 15px;
    font-size: 16px;
    font-weight: 500;
    color: #8FB03F;
}
.dashboard_SB ul li a:hover, .dashboard_SB ul li a.active {
    background: #F5F5F5;
    color: #4BB6CD;
    text-decoration: none;
}
.dashboard_SB ul li a:hover > .DB-icon, .dashboard_SB ul li a.active .DB-icon {
    fill: #4BB6CD;
    /*background: red;*/
}
.dashboard_SB ul object {
    margin-right: 8px;
    position: relative;
    top: 2px;
    width: 19px;
}
/* ==== DASHBOARD -E ==== */



/* ==== FIND DENTIST ==== */
.findContent {
    
}

.findDentist .serch {
    width: 345px;
    margin-right: 10px;
    display: inline-block;
}
.findDentist .location {
    width: 180px;
    margin-right: 10px;
    display: inline-block;
}
.findDentist .btn {
    width: 150px;
    height: 42px;
    line-height: 30px;
    font-size: 16px;
    margin-right: 10px;
}
.findDentist .serchAdvance {
    display: inline-block;
    color: #8FB03F;
    vertical-align: middle;
    line-height: 1em;
}
.findDentist .serchAdvance:hover {
    text-decoration: none;
    color: #8FB03F;
}
.findDentist .serchAdvance img {
    vertical-align: middle;
    margin-right: 4px;
}
.findDentist .serchAdvance span {
    display: inline-block;
    vertical-align: middle;
}


.filter {
    margin-top: 45px;
}

.filter p {
    color: #C3C3C3;
    margin: 4px 0 0;
}
.short {
    text-align: right;
}
.short .form-control {
    display: inline-block;
    width: 125px;
    text-align: left;
    margin-left: 6px;
    color: #999999;
    border-color: #999999;
    background-image: url(../images/icons/drop2.svg);
    height: 35px;
    background-size: 14px;
    background-position: calc(100% - 6px) 14px;
}
.short .btn {
    background: transparent;
    border: 1px solid #999999;
    color: #868686;
    padding: 6px;
    width: 45px;
}
.short .btn svg {
    fill: #868686;
}


.dentistList {
    margin-top: 25px;
}

.dentistBox {
    border: 1px solid #eee;
    margin-bottom: 22px;
    transition: .3s;
}
.dentistBox:hover {
    border-color: #8FB03F;
    box-shadow: 0px 3px 8px 2px rgb(0 0 0 / 8%);
    transition: .3s;
}
.dentistBox:hover .detailCol {
    border-color: #8FB03F;
    transition: .3s;
}

.dentistBox .detailCol {
    border-right: 1px solid #EBEBEB;
    transition: .3s;
}
.dentistBox .detail {
    padding: 15px;
    padding-right: 0;
}
.dentistBox .detail .drImg {
    display: inline-block;
    vertical-align: top;
}
.dentistBox .detail .drImg  img {
    width: 150px; 
    height: 150px;
    border-radius: 5px;
    border: 1px solid #EBEBEB;
}

.dentistBox .detail .drDetail {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 150px - 5px);
    padding-left: 8px;
}

.dentistBox .drDetail p {
    font-size: 13px;
    color: #919191;
    margin: 0 0 5px;
}
.dentistBox .drDetail p span {
    color: #8FB03F;
    font-weight: 400;
    font-size: 14px;
}
.dentistBox .drDetail h4 {
    font-size: 18px;
    color: #8FB03F;
    margin-bottom: 0;
}
.dentistBox .drDetail h5 {
    font-size: 12px;
    text-transform: uppercase;
    color: #4BB6CD;
    font-weight: 400;
}

.dentistBox .drDetail .feedback {
    margin-bottom: 10px;
    font-size: 14px;
    color: #CBCBCB;
}
.dentistBox .drDetail .feedback .rate {
    margin-right: 10px;
}


.rate {
    display: inline-block;
}
.rate i {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    color: #DDDDDD;
}
.rate i.rated {
    color: #F5C250;
}

.tagsBox .tag {
    display: inline-block;
    padding: 3px 10px;
    color: #989898;
    font-size: 10px;
    background: #EDEDED;
    margin: 0 2px 3px 0;
    border-radius: 4px;
}
.tagsBox .tag:hover {
    text-decoration: none;
}
.tagsBox .vAll {
    font-size: 11px;
    color: #8FB03F;
    text-decoration: underline;
    margin-left: 6px;
}



.drImages {
    width: 100%;
    margin-top: 12px;
}
.drImages a, .drImages span {
    display: inline-block;
    margin-right: 3px;
}
.drImages a:last-child, .drImages span:last-child {
    margin-right: 0;
}
.drImages img {
    width: 48px;
    height: 48px;
    border-radius: 4px;
}


.dentistBox .info {
    padding: 15px 15px 15px 5px;
}
.dentistBox .infoList {
    font-size: 14px;
    color: #767676;
    margin-bottom: 10px;
}
.dentistBox .infoList:last-child {
    margin-bottom: 0;
}

.dentistBox .infoList img {
    margin-right: 3px;
    width: 15px;
    position: relative;
    top: -2px;
}
.dentistBox .infoList.avail {
    color: #4BB6CD;
}
.dentistBox .btnBox {
    margin-top: 25px;
}

.dentistBox .btn {
    height: 40px;
    line-height: 28px;
    font-size: 15px;
    width: 130px;
    line-height: 25px;
    margin-right: 4px;
    background: transparent;
    border: 2px solid #8FB03F;
    color: #8FB03F;
    text-align: center;
}
.dentistBox .btn:hover {
    background: #8FB03F;
    color: #fff;
}


.dentistBox .btn.chat {
    width: 45px;
    padding: 6px;
}
.dentistBox .btn.chat svg {
    fill: #8FB03F;
}
.dentistBox .btn.chat:hover {
    background: #8FB03F;
    color: #fff;
}
.dentistBox .btn.chat:hover svg {
    fill: #fff;
}

.dentistBox .btn.fav {
    width: 45px;
    margin-right: 0;
    padding: 6px;
    border-color: #E85858;
}
.dentistBox .btn.fav svg {
    fill: #E85858;
}
.dentistBox .btn.fav:hover {
    background: #E85858;
    color: #fff;
}
.dentistBox .btn.fav:hover svg {
    fill: #fff;
}


/* ==== FIND DENTIST -E ==== */





/* ==== DENTIST DETAIL ==== */


.dentistDetail {

}

.dentistDetail .dentistBox {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 3px rgb(0 0 0 / 10%);
}
.dentistDetail .dentistBox:hover {
    border-color: #eee;
    box-shadow: 0px 0px 10px 3px rgb(0 0 0 / 10%);
}
.dentistDetail .dentistBox:hover .detailCol {
    border-color: #eee;
}


.dentistTab {
    background: #fff;
    box-shadow: 0px 0px 10px 3px rgb(0 0 0 / 10%);
    border-radius: 6px;
    overflow: hidden;
}

.dentistTab .nav {
    background: #8FB03F;
}
.dentistTab .nav-item {
    width: 20%;
    border-right: 1px solid #809F37;
}
.dentistTab .nav-link {
    text-align: center;
    width: 100%;
    color: #fff;
    font-family: 'Exo', sans-serif;
    font-size: 17px;
    padding: 12px 10px 11px;
}
.dentistTab .nav-link.active {
    background: #809F37;
}


.dentistTab .tab-pane {
    min-height: 200px;
    padding: 25px;
}
.dentistTab .detailText {
    margin-bottom: 25px;
}

.dentistTab .tab-pane h4 {
    font-size: 17px;
    font-family: 'Exo', sans-serif;
    margin-bottom: 8px;
}
.dentistTab .tab-pane p {
    color: #808080;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.65em;
}
.dentistTab .tab-pane ul {
    padding-left: 30px;
    font-size: 14px;
    margin: 15px 0 0;
}
.dentistTab .tab-pane ul li {
    margin-bottom: 0;
    counter-increment: note-counter;
}

.dentistTab .tab-pane ul.discList {
    list-style: circle;
}
.dentistTab .tab-pane ul li::marker {
    font-size: 22px;
}


.dentistSB {
    padding: 0;
    overflow: hidden;
    min-height: auto;
}
.dentistSB .head {
    background: #8FB03F;
    color: #fff;
    padding: 10px;
    text-align: center;
}
.dentistSB .head h4 {
    font-size: 18px;
    margin-bottom: 4px;

}
.dentistSB .head p {
    color: #fff;
    font-size: 13px;
    margin-bottom: 0;
}

.dentistSB .bookForm {
    padding: 20px 15px;
}
.dentistSB .bookForm .form-group {
    margin-bottom: 10px;
}

.bookForm .btnBox {
    margin-top: 15px;
    display: inline-block;
    width: 100%;
}
.bookForm .btn {
    width: 100%;
    padding: 8px 15px;
}

.dr_location {

}
.dr_location iframe {
    width: 100%;
    height: 345px;
    border: 3px solid #E0E0E0 !important;
}


/* REVIEW SECTION */
.reviewSection {
    margin: 25px 0;
}
.reviewSection:after {
    content: "";
    clear: both;
    display: block;
}
.reviewPoints {
    text-align: center;
    width: 140px;
    height: 140px;
    background: #8FB03F;
    color: #fff;
    border-radius: 4px;
    padding: 12px 0;
    float: left;
}
.reviewPoints h2 {
    margin-bottom: 0;
    font-size: 34px;
}
.reviewPoints p {
    color: #fff !important;
    margin-bottom: 0;
    line-height: 1.4em !important;
    margin-top: 6px;
}



.rateGraphBox {
    padding: 0 25px;
    float: left;
}

.rateGraph {
    margin-bottom: 6px;
}
.rateGraph:last-child {
    margin-bottom: 0;
}
.rateProgressBar {
    width: 415px;
    height: 16px;
    border-radius: 3px;
    overflow: hidden;
    background: rgb(143 176 63 / 50%);
    display: inline-block;
    vertical-align: middle;
}
.progressBar {
    height: 100%;
    background: #8FB03F;
    font-size: 11px;
    line-height: 17px;
    color: #fff;
    padding: 0 10px;
}

.rateGraph .rateType {
    display: inline-block;
    margin-left: 30px;
    font-size: 14px;
    vertical-align: middle;
}
.rateGraph .rateType i {
    color: #F5C250;
    margin-right: 6px;
}




.commetsBox {
    margin: 25px 0;
}
.commetsBox:last-child {
    margin-bottom: 0 !important;
}
.commetsHed {
    font-size: 20px;
    color: #252525;
    font-weight: 600;
    padding: 0 0 10px;
    font-family: 'Exo', sans-serif;
}
.userImg {
    overflow: hidden;
    background: #ccc;
    border-radius: 5px;
}
.userImg img {
    width: 100%;
    height: auto;
}
.comment-singleBox {
    margin: 8px 0 20px;
}
.userNm {
    font-size: 16px;
    color: #111111;
    font-weight: 500;
}
.userComment {
    font-size: 14px;
    color: #5a5a5a;
    margin: 10px 0;
    font-weight: 300;
}
.replayLink a {
    font-size: 14px;
    color: #8FB03F;
    font-weight: 600;
}
.replayLink a:hover {
    text-decoration: none;
}
.commentDate {
    font-size: 13px;
    color: #C9C9C9;
    font-weight: 400;
    margin-left: 20px;
}
.commentForm input {
    height: 40px;
    background: #fbfbfb;
    border-radius: 0px;
    border: 1px solid #8FB03F;
}
.commentForm input:focus {
    box-shadow: none;
    outline: none;
}
.commentForm textarea {
    height: 100px;
    background: #fbfbfb;
    border-radius: 0px;
    border: 1px solid #8FB03F;
}
.commentForm textarea:focus {
    box-shadow: none;
    outline: none;
}
.commentForm-box .btn {
    min-width: 125px;
    margin-top: 10px;
}
.commentForm-box .form-group {
    margin-bottom: 18px;
}

.drPrice li p {
    display: inline-block;
    width: 225px;
}
.drPrice li span {
    color: #8FB03F;
    display: inline-block;
}


/* ==== DENTIST DETAIL -E ==== */






/* ==== ABOUT PAGE ==== */

.aboutSection {
    padding: 65px 0;
}
.aboutImgBox {
    position: relative;
}
.aboutImg {
    border: 3px solid #8FB03F;
    box-shadow: 0px 3px 15px 0px rgb(0 0 0 / 20%);
    position: relative;
}
.aboutImg img {
    width: 100%;
    height: 100%;
}

.aboutImg.aboutImg1 {
    width: 400px;
    height: 500px;
}
.aboutImg.aboutImg2 {
    width: 325px;
    height: 300px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.aboutImg.aboutImg1:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 89%;
    border: 3px solid #8FB03F;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    background-image: url(../images/testimonialsBg2.png);
    background-position: center;
}


.aboutText p {
    font-size: 16px;
    color: #707070;
    line-height: 1.6em;
    margin-bottom: 8px;
}
.aboutText p:last-child {
    margin-bottom: 0;
}


.teamSection {
    padding: 0 0 65px;
}

.teamSection .title {
    margin-bottom: 25px;
    text-align: center;
}
.teamBox {
    text-align: center;
}
.teamImgBox {
    width: 150px;
    height: 150px;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0px 3px 15px 0px rgb(0 0 0 / 20%);
    margin: 0 auto 15px;
    position: relative;
    transition: .5s;
}
.teamImgBox img {
    width: 100%;
    height: 100%;
}
.teamHover {
    background: rgb(143 176 63 / 0.65);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    line-height: 150px;
    transition: .5s;
    cursor: pointer;
    opacity: 0;
}
.teamHover img {
    width: 45px;
    height: 45px;
}
.teamBox:hover .teamHover {
    opacity: 1;
    transition: .5s;
}


.teamBox h2 {
    font-size: 16px;
    text-transform: uppercase;
    color: #8FB03F;
    margin-bottom: 3px;

}
.teamBox h4 {
    color: #585858;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 12px;
}
.teamBox p {
    font-size: 13px;
    color: #909090;
    margin-bottom: 0;
}

.teamBox .footSocial {
    margin: 15px 0 0;
}




.modal-backdrop {
    background-color: rgb(143 176 63 / 15%);
    opacity: 1 !important;
}

.teapPopupContent {
    background-image: linear-gradient(-90deg, rgb(75 182 205 / 0.9) 0%, rgb(30 136 159 / 0.9) 100%);
    padding: 22px;
    border: none;
}

.teapPopupContent .close {
    position: absolute;
    right: 12px;
    color: #fff;
    top: 12px;
    opacity: 1;
}
.teapPopupContent .close img {
    width: 27px;
    transform: rotate(45deg);
}

.teapPopupContent .close span {
    color: #fff;
}

.teamPopImgSec .teamImgBox {
    margin: 0;
    display: inline-block;
    vertical-align: middle;
}
.teamPopImgSec .teamBox {
    text-align: left;
    margin-bottom: 15px;
}
.teamPopImgSec .teamNameBox {
    display: inline-block;
    width: calc(100% - 150px - 5px);
    vertical-align: middle;
    padding-left: 12px;
}
.teamPopImgSec .teamBox h2 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 5px;
}
.teamPopImgSec .teamBox h4 {
    color: #fff;
    font-size: 15px;
}
.teamPopImgSec .footSocial a {
    font-size: 20px;
    padding: 0 5px;
    color: #fff;
}
.teamPopImgSec .footSocial a:hover {
    color: #8FB03F;
}



.teamPopImgBox { 
    display: inline-block; 
    vertical-align: middle; 
}
.teamPopImg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.teamPopImg img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.teamPopNm { 
    display: inline-block; 
    vertical-align: middle; 
    width: 75%;
    padding-left: 10px;
}
.teamPopNm h2 {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0;
}
.teamAboutText {
    margin-top: 12px;
}
.teamAboutText p {
    font-size: 15px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 10px;
    line-height: 1.6;
}
.teamAboutText ul {
    color: #fff;
    font-size: 14px;
    margin: 15px 0 5px;
}
.teamAboutText ul li {
    font-weight: 300;
    margin-bottom: 5px;
}

/* ==== ABOUT PAGE -E ==== */




/* ==== CONTACT US ==== */
.contactSection {
    padding: 75px 0;
}
.contactSection .title2 {
    font-size: 16px;
    text-transform: uppercase;
    padding-bottom: 5px;
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
    color: #8FB03F;
    font-weight: 500;
}
.contactSection .title2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #8FB03F;
}


.addressBox {
    margin-bottom: 22px;
}
.addressBox span {
    vertical-align: top;
    display: inline-block;
}
.addressBox img {
    width: 18px;
}
.addressBox .addText {
    width: calc(100% - 50px);
    padding-left: 10px;
}
.addressBox h5 {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 16px;
}
.addressBox p a {
    color: #8FB03F;
}
.contactForm .title2 {
    margin-bottom: 10px;
}

.contactForm p {
    color: #696969;
    font-size: 15px;
    margin-bottom: 30px;
}
.contactForm .btn {
    text-transform: uppercase;
    font-size: 15px;
    min-width: 125px;
}
.addressBox p {
    color: #696969;
    font-size: 15px;
}
/* ==== CONTACT US -E ==== */




/* ==== USER-PROFILE ==== */

.profileSection {
    padding: 65px 0;
}

.userSB {
    padding: 0;
}
.userSB .userNm {
    width: 100%;
    height: 155px;
    background: #4BB6CD;
    text-align: center;
    padding: 15px;
    color: #fff;
    margin-bottom: 65px;
}
.userSB .userNm h4 {
    font-size: 26px;
    margin: 8px 0 15px;
    font-weight: 500;
}
.userSB .userNm .user img {
    width: 140px;
    height: 140px;
    border-width: 2px;
}

.userSocial {
    text-align: center;

}
.userSocial a {
    display: inline-block;
    font-size: 24px;
    color: #8FB03F;
    margin: 0 6px;
}
.userSocial a:hover {
    color: #4BB6CD;
}


.userSB .SBdetail {
    padding: 0 15px;
}

.userSB .intro {
    font-size: 14px;
    color: #808080;
    margin: 10px 0;
    text-align: center;
}


.userDetail {
    margin: 15px 0;
}
.userDetail p {
    margin: 0 0 3px;
    font-size: 14px;
}
.userDetail b, .userDetail span {
    display: inline-block;
}
.userDetail b {
    color: #424242;
}
.userDetail span {
    color: #808080;
    margin-left: 10px;
}


.userContact {
    text-align: center;
    padding: 15px 0;
}

.contactBox {
    padding: 15px 0;
}
.contactBox:last-child {
    border-top: 2px solid #e6e6e6;
}
.contactBox h5 {
    font-size: 16px;
    color: #424242;
    margin-bottom: 2px;
}
.contactBox p {
    font-size: 14px;
    color: #808080;
    margin-bottom: 0;
}


.userMembership {
    text-align: center;
    padding: 25px 0;
}
.userMembership .title {
    font-size: 21px;
}
.userMembership .benifitsBox {
    text-align: left;
    width: 100%;
}
.userMembership .benifitsBox:nth-child(2n) {
    margin-left: 0;
}
.userMembership .benefitIcon {
    width: 62px;
    height: 62px;
    line-height: 62px;
}
.userMembership .benefitIcon img {
    width: 38px;
}
.userMembership .benefitText h4 {
    margin-bottom: 5px;
    font-size: 16px;
}
.userMembership .benefitText p {
    font-size: 13px;
    line-height: 1.3em;
}
.userMembership .btn {
    min-width: 115px;
}


.userContent .userText {
    margin-bottom: 15px;
}
.userContent .userText h5 {
    font-size: 16px;
    margin-bottom: 2px;
}
.userContent .userText p {
    font-size: 14px;
    color: #808080;
    margin-bottom: 0;
}


.userContent .discList {
    padding-left: 25px;
    list-style: circle;
    margin: 10px 0;
    font-size: 15px;
    font-weight: 300;
    color: #808080;
}
.userContent .discList li {
    /*margin-bottom: 5px;*/
}
.userContent .discList li::marker {
    font-size: 22px;
}


.patientProgressBox h5 {
    font-size: 16px;
    padding: 20px 0 2px;
}
.followupBox {
    /*padding-left: 35px;*/
    margin-left: 25px;
    position: relative;
}

.followupBox:before {
    content: "";
    position: absolute;
    left: 0;
    height: 88%;
    width: 2px;
    background: #8FB03F;
    top: 50%;
    transform: translateY(-50%);
}

.followup {
    position: relative;
    padding: 12px 0;
    padding-left: 35px;
}
.followup:before {
    content: "";
    position: absolute;
    left: -8px;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    border: 2px solid #8FB03F;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
}
.followup p {
    color: #5A5A5A;
    font-size: 15px;
    margin: 2px 0;
}
.followup p a {
    display: inline-block;
    color: #8FB03F;
    margin-left: 4px;
}

/* ==== USER-PROFILE -E ==== */



/* ==== MESSAGES PAGE ==== */

.messageSection .box {
    padding: 25px 15px;
}

.messagRow {
    border: 1px solid #E6EEEE;
    border-radius: 5px 5px 0 0;
    margin-right: 0;
    margin-left: 0;
    height: 615px;
    overflow: hidden;
}
.messageCol {
    padding: 0;
    border-right: 1px solid #E6EEEE;
}
.messageCol:last-child {
    border-right: none;
}

.messagRow .BgTitle {
    left: 0;
    top: 0;
    width: 100%;
    margin-bottom: 0;
    border-radius: 0;
    height: 48px;
}

.msgUsersList {
    overflow-y: auto;
    height: calc(615px - 48px);
}
.msgUserBox {
    padding: 10px 15px;
    border-bottom: 1px solid #E6EEEE;
    position: relative;
}
.msgUserBox:last-child {
    border-bottom: none;
}

.msgUserBox .msgTime {
    position: absolute;
    color: #4BB6CD;
    font-size: 12px;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 65px;
    text-align: right;
}
.msgUserBox .user img {
    border-width: 2px;
}
.msgUserBox .user {
    width: calc(100% - 65px);
}


.chatMsgTitle {
    background: rgb(250 250 250 / 90%);
    border-bottom: 1px solid #E6EEEE;
    padding: 10px 15px;
    height: 76px;
}
.chatMsgTitle .user {
    width: calc(100% - 100px);
}
.chatMsgTitle .user img {
    width: 55px;
    height: 55px;
    border-width: 2px;
}
.chatMsgTitle .callBtn {
    float: right;
    width: 100px;
    text-align: right;
    padding-top: 7px;
    margin-bottom: 15px;
}
.chatMsgTitle .callBtn a {
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 38px;
    border-radius: 50%;
    border: 2px solid #8FB03F;
    text-align: center;
    margin-left: 5px;
}
.chatMsgTitle .callBtn a:first-child {
    margin-left: 0;
}



.chatMsg {
    height: 100%;
}
.chatSection {
    display: inline-block;
    width: 100%;
    height: calc(615px - 76px - 60px);
    overflow-y: auto;
    position: relative;
}
.chatBox {
    padding: 10px 15px;
}
.chatBox:after {
    content: "";
    display: block;
    clear: both;
}

.chatBox .user img {
    width: 55px;
    height: 55px;
    border-width: 2px;
} 
.chat {
    width: calc(100% - 65px);
    float: right;
    padding-left: 15px;
}
.chatBox .chatText {
    background: #EEF3E2;
    padding: 10px;
    border-radius: 5px;
    font-size: 13px;
    position: relative;
}
.chatBox .chatText:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-right: 24px solid #EEF3E2;
    left: -28px;
    top: 17px;
    transform: rotate(-20deg);
}
.chatBox .chatTime {
    color: #434343;
    font-size: 13px;
    padding: 4px 0 0 5px;
}



.chatBox.right .chatText {
    background: #E6F4F7;
}
.chatBox.right .chatText:before {
    border-right-color: #E6F4F7;
}

.chatBox.right .chat {
    float: left;
    padding-left: 0;
    padding-right: 15px;
}

.chatBox.right .user {
    float: right;
}
.chatBox.right .user img {
    margin-right: 0;
}
.chatBox.right .chatText:before {
    border-right-color: #E6F4F7;
    left: initial;
    right: -19px;
    border-right: transparent;
    border-left: 24px solid #E6F4F7;
    transform: rotate(20deg);
}



.chatInputSec {
    height: 60px;
    border-top: 1px solid #E6EEEE;
    padding: 10px 15px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
}

.chatInput {
    width: calc(100% - 50px);
    height: 100%;
    border: 1px solid #8FB03F;
    border-radius: 25px;
    overflow: hidden;
    float: left;
}

.chatInput label {
    display: inline-block;
    width: 50px;
    height: 100%;
    border-right: 1px solid #8FB03F;
    text-align: center;
    line-height: 35px;
    cursor: pointer;
}
.chatInput label input {
    display: none;
}
.chatInput input {
    height: 100%;
    width: calc(100% - 55px);
    border: none;
    color: #8FB03F;
    font-size: 13px;
    padding: 2px 10px;
}
.chatInput input::-webkit-input-placeholder { color: #8FB03F; }
.chatInput input::-moz-placeholder { color: #8FB03F; }
.chatInput input:-ms-input-placeholder { color: #8FB03F; }
.chatInput input:-moz-placeholder { color: #8FB03F; }

.chatInputSec .btn {
    padding: 0;
    width: 39px;
    height: 39px;
    line-height: 39px;
    text-align: center;
    border-radius: 50%;
    margin-left: 10px;
}

/* ==== MESSAGES PAGE -E ==== */




/* =========================================== DENTIST PANEL =========================================== */


.edit {
    position: relative;
    top: -2px;
    margin-left: 3px;
}

.sBtn {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    text-align: center;
    background: #6BE096;
    border-radius: 4px;
    margin: 0 2px;
}
.sBtn:hover {
    background: #58D084;
}
.sBtn.remove {
    background: #EE5746;
}
.sBtn.remove:hover {
    background: #DB4534;
}






.scheduleBox h5 {
    font-size: 16px;
}
.scheduleSelect {
    margin-bottom: 20px;
}
.scheduleSelect label {
    display: inline-block;
    margin-right: 4px;
}
.scheduleSelect label input {
    display: none;
}
.scheduleSelect label .btn {
    text-transform: uppercase;
    padding: 5px 13px 3px;
    background: #D9D9D9;
    color: #808080;
    font-size: 13px;
}
.scheduleSelect label input:checked ~ .btn {
    background: #8FB03F;
    color: #fff;
}

.addMore {
    font-size: 13px;
    color: #8FB03F;
}







