@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700&display=swap');
:root{
 --PrimaryColor1: #017bba;
 --PrimaryColor2:#fc0;
 --SecondaryColor: #010b71;
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    direction: rtl;
}
body{
    direction: rtl;
    font-family: 'Tajawal', sans-serif;
}
a{
    text-decoration: none;
    color: black;
}
/********************   start basic styles   *******************/
::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}
.white_space_nowrap{
    white-space: nowrap;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--PrimaryColor1);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #036ba1;
}
.bg-primary-color1{
    background-color:var(--PrimaryColor1) !important; ;
}

.primary-color1{
    color:var(--PrimaryColor1) !important; ;
}
.bg-primary-color2{
    background-color:var(--PrimaryColor2) !important; ;
}

.primary-color2{
    color:var(--PrimaryColor2) !important; ;
}
.bg-secondary-color{
    background-color:var(--SecondaryColor) !important; ;
}
.secondary-color{
    color:var(--SecondaryColor) !important; ;
}
.white{
    color: #ffffff !important;
}
.bg-gray-white{
    background-color: #f1f0f0 !important;
}
.btn-outline-primaryColor1{
    color: var(--PrimaryColor1) !important;
    border:1px solid var(--PrimaryColor1) !important;
    background-color: #ffffff !important;
}
.btn-outline-primaryColor1:hover{
    background-color: var(--PrimaryColor1) !important;
    color: #ffffff !important;
}

.btn-primaryColor1{
    background-color: var(--PrimaryColor1) !important;
    color: #ffffff !important;
}
.btn-primaryColor1:hover{
    color: var(--PrimaryColor1) !important;
    border:1px solid var(--PrimaryColor1)!important;
    background-color: #ffffff !important;
}
.btn-primaryColor2{
    background-color: var(--PrimaryColor2) !important;
    color: #ffffff !important;
}
.btn-primaryColor2:hover{
    color: var(--PrimaryColor2) !important;
    border:1px solid var(--PrimaryColor2)!important;
    background-color: #ffffff !important;
}
.btn-secondary-color{
    background-color: var(--SecondaryColor) !important;
    color: #ffffff !important;
}
.btn-secondary-color:hover{
    color: var(--SecondaryColor) !important;
    border:1px solid var(--SecondaryColor)!important;
    background-color: #ffffff !important;
}

.black-color{
    color: #000000 !important;;
}
.bg-light-gray{
    background-color: #cdc9c9 !important;
}
.bg-light2-gray{
    background-color: #f5f6f7 !important;
}
.border-primary-color1{
    border: 1px solid var(--PrimaryColor1);
}
.border-bottom-primary-color1{
    border-bottom: 1px solid var(--PrimaryColor1);
}
.border-bottom-white{
    border-bottom: 1px solid #ffffff;
}
.form-check-input:checked {
    background-color: var(--PrimaryColor1) !important;
    border-color: var(--PrimaryColor1) !important;
}
::placeholder {
    color: var(--PrimaryColor1);
}
input[type="search"]:-moz-placeholder {
    color: var(--PrimaryColor1);
}
input[type="search"]:-ms-input-placeholder {
    color: var(--PrimaryColor1);
}
input[type="search"]::-webkit-input-placeholder {
    color: var(--PrimaryColor1);
}
input[type=text]:focus {
    border: none;
}
input[type=password]:focus {
    border: none;
}
input:focus-visible {
    outline: none;
}

::-webkit-input-placeholder { /* Edge */
    color: #9692a5;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #9692a5;
}

input[type="email"]:-moz-placeholder {
    text-align: right;
}
input[type="email"]:-ms-input-placeholder {
    text-align: right;
}
input[type="email"]::-webkit-input-placeholder {
    text-align: right;
}
input[type="number"]:-moz-placeholder {
    text-align: right;
    direction: rtl !important;
}
input[type="mumber"]:-ms-input-placeholder {
    text-align: right;
    direction: rtl !important;
}
input[type="number"]::-webkit-input-placeholder {
    text-align: right;
    direction: rtl !important;
}


::-moz-selection { /* Code for Firefox */
    color: #FFFFFF !important;
    background: var(--PrimaryColor1)!important;
}

::selection {
    color: #FFFFFF !important;
    background: var(--PrimaryColor1)!important;
}
input[type="number"],input[type="text"],input[type="email"],input[type="date"]{
    text-align: right;
    direction: rtl !important;
}

.cursor-pointer{
    cursor: pointer;
}
.required-star{
    color: red;
    font-size: 1.5rem;
    font-weight: bold;
}
.font-size-1rem{
    font-size: 1rem !important;
}
.font-size-1-halfrem{
    font-size: 1.5rem !important;
}
.font-size-2rem{
    font-size: 2rem !important;
}
.font-size-half-1rem{
    font-size: 0.5rem !important;
}
.pr-1{
    padding-right: 1rem!important;
}
.pl-1{
    padding-left: 1rem!important;
}
.pt-1{
    padding-top: 1rem!important;
}
.pb-1{
    padding-bottom: 1rem!important;
}
.mr-1{
    margin-right: 1rem!important;
}
.ml-1{
    margin-left: 1rem!important;
}
.mt-1{
    margin-top: 1rem!important;
}
.mb-1{
    margin-bottom: 1rem!important;
}
.mr-2{
    margin-right: 2rem!important;
}
.ml-2{
    margin-left: 2rem!important;
}
.mt-2{
    margin-top: 2rem!important;
}
.mb-2{
    margin-bottom: 2rem!important;
}
.mr-3{
    margin-right: 3rem!important;
}
.ml-3{
    margin-left: 3rem!important;
}
.mt-3{
    margin-top: 3rem!important;
}
.mb-3{
    margin-bottom: 3rem!important;
}
.full-width{
    width: 100% !important;
}
.full-height{
    height: 100% !important;
}
.overflow-y{
    overflow-y:auto !important;
}
#eye{
    position: absolute;
    right: 90%;
}
/********************   end basic styles   *******************/

/********************   start header styles   *******************/



/* Dropdown Button */
.dropbtn {
    background-color: #ffffff;
    border: 1px solid var(--PrimaryColor1);
    color: var(--PrimaryColor1);
    padding: 0.2rem 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    text-transform: capitalize;
    border-radius: 5%;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color:  #f1f1f1;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    color: var(--PrimaryColor1);
    background-color: #ffffff;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

.custom-select,.custom-select:focus {
    border: 1px solid var(--PrimaryColor1) !important;
    color: var(--PrimaryColor1);
    padding: 0.2rem 0.5rem;
    font-size: 1rem;
    min-width: 7rem;
    margin-right: 1rem;
}
.custom-select option:hover {
    color: var(--PrimaryColor1);
    background-color: #ffffff;
}
.country-btn{
    font-size: 0.7rem !important;
}
.search-form{
    position: relative;
}
.input-search{
    border-radius: 15px;
}
.btn-search{
    position: absolute;
    right: 85%;
    top: 20%;
    cursor: pointer;
    background: none !important;
}
.btns{
  font-size: 1.2rem;
}
.navbar-nav li a{
    font-size: 1.2rem;
    white-space: nowrap;
}
.navbar-nav li a:hover{
    color: var(--PrimaryColor2) !important;
}
.navbar-nav li a span{
   margin-right: 1rem;
}
.btns-mobile{
    font-size: 1.2rem;
    margin-right: 10%;
}
.mobile-header .custom-select{
    margin-left: 0.5rem !important;
}
@media (min-width : 992px) {
    .offcanvas {
        visibility      : visible;
        position        : relative;
        background      : none;
        border          : none;
        justify-content : end;
        color           : var(--PrimaryColor1);
    }
}
@media (max-width : 992px) {
    .offcanvas-start-lg {
        top          : 0;
        left         : 0;
        border-right : 1px solid rgba(0, 0, 0, .2);
        transform    : translateX(-100%);
    }
}
.header-link:hover{
    color: var(--PrimaryColor2) !important;
}
.fixed-header{
    box-shadow: 0 4px 2px -2px var(--PrimaryColor1);
}
.header-bx{
    font-size: 1.7rem;
}
.icon-btn{
    padding: 0.15rem 0.5rem;
    margin: 0rem 0.5rem !important;
    background-color: var(--PrimaryColor1) !important;
    color: #ffffff !important;
}
.icon-btn:hover{
    color: var(--PrimaryColor1) !important;
    background-color: #ffffff !important;
}
.bell {
    display: inline-block;
    position: relative;
    text-align: center;
    padding-top: 6px;
}
.bell i {
    padding-top: 10px;
}
.bellnumbers {
    font-size:12px;
    background-color:red;
    width:16px;
    line-height: 16px;
    text-align: center;
    color:#fff;
    z-index: 2;
    border-radius: 3px;
    position: absolute;
    right: 30px;
    top: 1px;
}
.message {
    display: inline-block;
    position: relative;
    text-align: center;
    padding-top: 6px;
}
.message i {
    padding-top: 10px;
}
.messagenumbers {
    font-size:12px;
    background-color:red;
    width:16px;
    line-height: 16px;
    text-align: center;
    color:#fff;
    z-index: 2;
    border-radius: 3px;
    position: absolute;
    right: 30px;
    top: 1px;
}
#mobile , #question ,#package ,#email{
    display: none;
}
.phone_container{
    position: relative;
    display: flex;
}
.phone_container input[type='number']{
    width: 85%;
    border: none !important;
}
.phone_container select{
    width: 15%;
}
/********************   end header styles   *******************/

/********************   start footer styles   *******************/

.footer{
    box-shadow: 0 -5px 5px -5px var(--PrimaryColor1);
    /*border-right: 1rem solid #efefef;*/
    /*border-left: 1rem solid #efefef;*/
    /*border-top: 1rem solid #efefef;*/
}
.footer footer{
    padding-top: 0.25rem !important;
}
.footer footer div div a{
}
.footer footer div div a:hover {
    color: var(--PrimaryColor2) !important;
    transform: scale(1.1);
    transition: all ease 500ms;
}
.dollar-sign{
    padding: 0.1rem 0.5rem !important;
}

/* Zoom In #1 */
.app-download-link img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.app-download-link:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}
.bottom-link{
    margin-right: 0.5rem;
    margin-left: 0.5rem;
}
.bottom-link:hover{
    color: var(--PrimaryColor2) !important;
}
/********************   end footer styles   *******************/
/********************   start join expert section   ******************/
.join-expert{
    box-shadow: 0 1px 7px var(--PrimaryColor1);
}

/********************   end join expert section   ******************/

/********************  start category details        *******************/
.duration-btn{
    width: 10rem;
    padding: 0.3rem 0.2rem;
    margin: 0.1rem 0.2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}
.btn-duration-active{
    background-color: #036ba1;
    color: #ffffff;
}
.filter-select,.filter-select:focus {
    border: 1px solid var(--PrimaryColor1) !important;
    color: var(--PrimaryColor1);
    padding: 0.2rem 0.5rem;
    font-size: 1rem;
    min-width: 7rem;
}
.filter-select option:hover {
    color: var(--PrimaryColor1);
    background-color: #ffffff;
}
.filter-select2,.filter-select2:focus {
    border: 1px solid var(--PrimaryColor1) !important;
    color: var(--PrimaryColor1);
    padding: 0.2rem 0.5rem;
    font-size: 1rem;
    max-width: 15rem;
}
.filter-select2 option:hover {
    color: var(--PrimaryColor1);
    background-color: #ffffff;
}
.info-section{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.expert-img{
    height: 5rem;
    width: 5rem;
}
.category-desc{
    font-size: 0.9rem;
}
.category-info-right{
    border-left: 1px solid #c2bebe;
    padding-left: 3rem;
}
.date-section{
    border: 1px solid #c2bebe;
}
.date-section .day{
    border-bottom: 1px solid #b6b6b6;
}
.date-section div .day-number{
    margin-left: 0.5rem;
}
.time span{
    font-size: 0.9rem;
}
.time .split{
    margin-right: 0.1rem;
    margin-left: 0.1rem;
}
.search-form2{
    position: relative;
    min-width: 20rem;
}
.input-search2{
    border-radius: 5px;
}
.btn-search2{
    position: absolute;
    right: 93%;
    top: 20%;
    cursor: pointer;
}
.split-span{
    margin-left: 0.5rem;
}
/********************* end category details *******************************/

/********************* start expert details *******************************/

/************ calender *************/
.calender-container{
    box-shadow: var(--PrimaryColor1) 0px 1px 8px 0px;
    padding: 1rem;
    /* border: 1px solid var(--PrimaryColor1); */
    border-radius: 10px;
}
.fc-view-harness{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.fc .fc-col-header-cell-cushion {
    color: var(--SecondaryColor);
    font-weight: bold;
}
.fc .fc-daygrid-day-number {
    cursor: pointer;
    text-align: center;
    padding: 0.3rem 0.7rem;
    background-color: #f7f3f3;
    border-radius: 50%;
    border:1px solid #cfcccc;
    color: var(--PrimaryColor1);
    font-weight: bold;
}
.fc .fc-daygrid-day-number:hover {
    background-color: var(--PrimaryColor1);
    border:1px solid var(--SecondaryColor);
    color: #FFFFFF;
}
.fc .fc-daygrid-day-top {
    padding: 4px;
}
.fc .fc-daygrid-day.fc-day-today {
    background-color: #dfe6ff;
}
.fc .fc-button-primary {
    background-color: var(--SecondaryColor);
    border-color: var(--SecondaryColor);
}
.fc .fc-button-primary:hover {
    background-color: #00044e;
    border-color: #00044e;
}
.fc .fc-toolbar-title {
    color: var(--SecondaryColor);
    text-transform: capitalize;
}
#calender-section {
    display: none;
}
/******************** end calender **********/
.expert-img-container{
    position: relative;
    height: 11rem;
}
.expert-img-container .active-icon{
    position: absolute !important;
    top: 77% !important;
    right: 5% !important;
}
.expert-img2{
    height: 10rem;
    width: 10rem;
}
.accordion-btn{
    box-shadow: var(--PrimaryColor1) 0px 1px 8px 0px;
}
.review{
    box-shadow: var(--PrimaryColor1) 0px 1px 5px 0px;
    border-radius: 15px;
}
.checked {
    color: #FFD700;
    border-color: #d9b804;
}
.unchecked{
    color: #cecece;
    border-color: #a8a8a8;
}
.review-img{
    width: 3rem;
    height: 3rem;
}
.review-text{
    padding-right: 3rem;
}
#more-section{
    display: none;
}

fieldset {
    margin: 20px 0 40px;
}

#rating-label{
    float: right;
}
.rating {
    border: none;
    float: right;
}

.rating > input { display: none; }
.rating > label:before {
    margin: 5px;
    font-size: 30px;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005";
}

.rating > .half:before {
    content: "\f089";
    position: absolute;
}

.rating > label {
    color: #ddd;
    float: left;
}


.rating > input:checked ~ label, /* show gold star when clicked */
.rating:not(:checked) > label:hover, /* hover current star */
.rating:not(:checked) > label:hover ~ label { color: #FFD700;  } /* hover previous stars in list */

.rating > input:checked + label:hover, /* hover current star when changing rating */
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.rating > input:checked ~ label:hover ~ label { color: #FFED85;  }

input, label {
    cursor: pointer;
}
#book-session{
    display: none;
}
/***************************** start profile styles **************/
.profile-header2 .logout-icon{
    margin-top: 0.3rem;
}
.expert-profile{
    margin-top: 13%;
    margin-right: 20%;
}
.profile-info{
    padding-top: 3.5%;
}
.profile-info .number{
    margin: auto;
}
/***************************** end profile styles ***************/

/***************************** start chats styles **************/
#chat3 .form-control {
    border-color: transparent;
}

#chat3 .form-control:focus {
    border-color: transparent;
    box-shadow: inset 0px 0px 0px 1px transparent;
}

.badge-dot {
    border-radius: 50%;
    height: 10px;
    width: 10px;
    margin-left: 2.9rem;
    margin-top: -.75rem;
}
#chat-section{
    height: 120vh;
}
.right-chat{
    height: 70vh;
    position: relative;
}
.left-chat{
    height: 70vh;
    position: relative;

}
/***************************** end chats styles *************/

/***************************** start notification styles **************/

#notification-section{
    height: 100vh;
}
.notification-container{
    height: 70vh;
    position: relative;
}

/***************************** end notification styles *************/
/***************************** start blog styles  ************/
.blog-body:hover{
    width: 100%;
    height: 220px;
    margin: 0.5rem auto;
    transition: 500ms linear;
}
.card-text{
    display: none;
}
.blog-body:hover > p {
    display: block;
}
.blog-col{
    position: relative;
    width: 100%;
    height: 35vh;
}
.blog-col img{
    width: 100%;
    height: 100% !important;
    max-height: 100% !important;
}
.blog-header{
    position: absolute;
    top: 88%;
    z-index: 2;
}
/***************************** end blog styles  ************/

/***************************** start faqs styles  ************/
.accordion-header{
    position: relative;
}
.faqs-btn:after{
    position: absolute;
    right: 92%;
}
/***************************** end faqs styles  ************/

/***************** start testimonials styles ***************/

.testimonials-body:hover{
    width: 100%;
    height: 220px;
    margin: 0.5rem auto;
    transition: 500ms linear;
}
.testimonials-body >p{
    display: none;
}
.testimonials-body:hover > p {
    display: block;
}

/***************** end testimonials styles ***************/
/***************** start active experts    ***************/
.active-expert-img-container{
    position: relative;
}
.active-expert-img-container .active-icon{
    position: absolute !important;
    top: 77% !important;
    right: 5% !important;
}
/***************** end active experts    ***************/

/***************** start trends page     ***************/

.trend-img{
    height: 30vh;
}
.cover-img{
    height: 50vh;
}

/***************** end trends page     ***************/

/***************** start expert auth    *************/

.input_image{
    display: none;
}
.border-dashed{
    border: 2px dashed #4778EC66;
    background-color: rgb(71 120 236 / 10%);
}
.planning_img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
}
.input_image{
    display: none;
}

.upload_img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
}
.gallery{
    width: 100% !important;
    max-width: 100% !important;
}
.container_image{
    position: relative;
}
.imagelabel{
    position: absolute;
    top: 85%;
}
.images-label{
    width: 100% !important;
    max-width: 100% !important;
}
.multiple-images ,.file_preview{
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 5px;
    color: var(--PrimaryColor1);
    padding: 0.5rem 1rem !important;
    border: 0.5px solid var(--PrimaryColor1);
    background-color: rgb(71 120 236 / 10%);
}
.multiple-images:hover ,.file_preview:hover{
    background-color: #eaeaea;
    opacity: 0.9;
}
.document-img{
    width: 50%;
    height: 100px;
}
#field_name_ar,#field_name_en{
    display: none;
}
.number_sessions_container{
    width: fit-content;
    display: flex;
    justify-content: space-between;
}
.number_sessions{
    background-color: var(--PrimaryColor2);
    color: white;
    border: 1px solid var(--PrimaryColor2);
    padding: 0.1rem 0.6rem;
    border-radius: 50%;
    cursor: pointer;
    margin-right: 0.5rem;
}
.number_sessions:hover{
    color: var(--PrimaryColor2);
    border: 1px solid var(--PrimaryColor2);
    background-color: #ffffff;
}
/***************** end expert auth    *************/

/***************** start payment *****************/
.book_session_card{
    min-height: 10vh;
}
.book_session_container{
    position: relative;
}
.book_session_btn{
    position: absolute;
    right: 25%;
    width: 50%;
}

/***************** end payment *****************/
