/* =============================================================================================================================
                                                        Font Connectivity
=============================================================================================================================*/

@font-face {
    font-family: NotoSans-Regular;
    src: url(../../public/fonts/NotoSans-Regular.ttf);
}

@font-face {
    font-family: NotoSans-Medium;
    src: url(../../public/fonts/NotoSans-Medium.ttf);
}

@font-face {
    font-family: NotoSans-SemiBold;
    src: url(../../public/fonts/NotoSans-SemiBold.ttf);
}

@font-face {
    font-family: NotoSans-Bold;
    src: url(../../public/fonts/NotoSans-Bold.ttf);
}

/* =============================================================================================================================
                                                        Default Css
=============================================================================================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --regular: NotoSans-Regular;
    --medium: NotoSans-Medium;
    --semi: NotoSans-SemiBold;
    --bold: NotoSans-Bold;
}

body {
    font-family: var(--regular);
    overflow-x: hidden;
    background-image: url(../images/background.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    /* height: 98.9vh; */
    background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-decoration: none;
}


.mainDiv {
    box-shadow: 0 3px 5px #0000000b;
    background-color: #fff;
    /* border: 1px solid #c90a11; */
    border-radius: 0.8rem;
    position: relative;
    margin: 10px;
}

.mainDiv:before {
    content: "";
    height: 100%;
    position: absolute;
    left: 0.875rem;
    right: 0.875rem;
    top: 0;
    margin-top: 0.85rem;
    box-shadow: 0 3px 5px #0000000b;
    background: #ddd;
    --tw-bg-opacity: 1;
    background: #ffffff8f;
    border-radius: 0.8rem;
    border: 1px solid #c90a11;
}

.jconfirm .jconfirm-box.jconfirm-animation-news {
    transform: rotate(400deg) scale(0);
}

.mainDiv nav {
    border-radius: 0.8rem;
    background-color: #c90a11 !important;
}
.navbar-light .navbar-nav .nav-link{
    color: rgba(255,255,255,.55);
}
.active_menu {
    color: #fff !important;
}
.header_fixed{
        position: fixed;
    width: 100%;
    top: -10px;
    z-index: 9999;
}
.container{
    margin-top: 100px;
}


/* =============================================================================================================================
                                                        Login page Css
=============================================================================================================================*/

.wrap-login100 {
    width: 400px;
    border-radius: 10px;
    position: relative;
    padding: 54px 25px 64px;
    background: linear-gradient(45deg, rgb(239 68 77) -200%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 75%, rgb(240 72 74) 200%);
    border: 2px dashed #bcbcbc;
}

.login100-form {
    width: 100%
}

.wrap-input100 {
    width: 100%;
    position: relative;
    background-color: #e6e6e6;
    border: 1px solid transparent;
    border-radius: 10px
}

.input100 {
    color: #403866;
    line-height: 1.2;
    font-size: 18px;
    display: block;
    width: 100%;
    background: 0 0;
    height: 55px;
    padding: 0 20px 0 38px;
    border-radius: 10px;
}

.focus-input100 {
    position: absolute;
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    pointer-events: none;
    border: 1px solid #c90a11;
    border-radius: 10px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    -webkit-transform: scaleX(1.1) scaleY(1.3);
    -moz-transform: scaleX(1.1) scaleY(1.3);
    -ms-transform: scaleX(1.1) scaleY(1.3);
    -o-transform: scaleX(1.1) scaleY(1.3);
    transform: scaleX(1.1) scaleY(1.3)
}

.input100:focus+.focus-input100 {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.eff-focus-selection {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.input-checkbox100 {
    display: none
}

.label-checkbox100 {
    font-size: 16px;
    color: #999;
    line-height: 1.2;
    display: block;
    position: relative;
    padding-left: 26px;
    cursor: pointer
}

.label-checkbox100::before {
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 13px;
    color: transparent;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    background: #fff;
    border: 2px solid #c90a11;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}

.input-checkbox100:checked+.label-checkbox100::before {
    color: #c90a11
}

input {
    outline: none;
    border: none;
}

.login100-form-btn {
    width: 100%;
    padding: 12px 20px;
    background-color: #c90a11;
    color: #fff;
    outline: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
}

.loader-div {
    position: fixed;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: relative;
  background: #c90a11 ;
  box-sizing: border-box;
  animation: flipX 1s linear infinite;
}

@keyframes flipX {
  0% {
    transform: perspective(200px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(200px) rotateX(-180deg) rotateY(0deg);
  }
  100% {
    transform: perspective(200px) rotateX(-180deg) rotateY(-180deg);
  }
}

/* .loader {
    width: 40px;
    aspect-ratio: 1;
    color: #fff;
    position: relative;
    background: radial-gradient(10px, currentColor 94%, #c90a11 );
}

.loader:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(9px at bottom right, #c90a11  94%, currentColor) top left,
        radial-gradient(9px at bottom left, #c90a11  94%, currentColor) top right,
        radial-gradient(9px at top right, #c90a11  94%, currentColor) bottom left,
        radial-gradient(9px at top left, #c90a11  94%, currentColor) bottom right;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    animation: l18 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
}

@keyframes l18 {
    33% {
        inset: -10px;
        transform: rotate(0deg)
    }

    66% {
        inset: -10px;
        transform: rotate(90deg)
    }

    100% {
        inset: 0;
        transform: rotate(90deg)
    }
} */

/* =============================================================================================================================
                                                        home page Css
=============================================================================================================================*/

.box_btn_home {
    background-color: #fff6f6;
    border-radius: 10px;
    height: 170px;
    width: 50%;
    /* position: relative;
    z-index: 0; */
}
/* .box_btn_home::before{
    content: '';
    background: url(../images/abstract.png);
    background-size: cover;
    position: absolute;
    top: 0;
    z-index: -1;
    left: 0;
    bottom: 0;
    right: 0;
} */

.button-text {
    font-size: 30px;
    color: #0D325C;
    pointer-events: none;
    font-weight: 700;
}

/* =============================================================================================================================
                                                        Doctor ai Dashboard page Css
=============================================================================================================================*/

.counter {
    color: #c90a11;
    text-align: center;
    width: 210px;
    height: 210px;
    padding: 25px;
    margin: 0 auto;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.counter:before,
.counter:after,
.counter .counter-content:before,
.counter .counter-content:after {
    content: '';
    background-color: #c90a11;
    opacity: .7;
    height: 75%;
    width: 75%;
    border-radius: 50%;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.7);
    position: absolute;
    left: 7px;
    top: 7px;
    z-index: -1;
}

.counter:after,
.counter .counter-content:after {
    background-color: #c90a11;
    opacity: 0.3;
    left: auto;
    right: 7px;
}

.counter .counter-content:before,
.counter .counter-content:after {
    top: auto;
    bottom: 7px;
}

.counter .counter-content:before {
    background-color: #c90a11;
    opacity: 0.3;
}

.counter .counter-content:after {
    background-color: #c90a11;
    opacity: 0.1;
    z-index: -2;
}

.counter .counter-content {
    background-color: #fff;
    height: 160px;
    padding: 20px 12px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.counter .counter-icon {
    font-size: 30px;
    margin: 0 0 5px;
}

.counter h3 {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 7px;
    font-weight: 900;
}

.counter .counter-value {
    font-size: 27px;
    font-weight: 600;
    display: block;
}

/* =============================================================================================================================
                                                        Doctor Details page Css
=============================================================================================================================*/

.box_doctor_details {
    background-color: #fff9fa;
    padding: 30px;
    border-radius: 10px;
}

.title_doctor_details {
    font-weight: 700;
    color: #c90a11;
}

.title_doctor_details::before {
    content: '';
    width: 33%;
    height: 2px;
    background-color: #ccc;
    position: absolute;
    top: 50%;
    left: 0;
}

.title_doctor_details::after {
    content: '';
    width: 33%;
    height: 2px;
    background-color: #ccc;
    position: absolute;
    top: 50%;
    right: 0;
}

.doctor_details_form .form-control {
    border: none;
    outline: none;
    padding: 12px 20px;

}

.doctor_details_form label {
    font-weight: 600;
}

.doctor_details_form .form-control:focus {
    background-color: #ffeaeb;
    outline: none;
    box-shadow: none;
}

.doctor_details_form .custom-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: #ffeaeb;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
    margin-right: 6px;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.doctor_details_form .custom-checkbox:checked {
    background-color: #c90a11;
}

.doctor_details_form .custom-checkbox:checked::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
    position: absolute;
    top: -7px;
    left: 7px;
    color: #fff;
}

.doctor_details_form label {
    cursor: pointer;
}

.doctor_details_form .btn_next, .btn_next_last, .btn_next_preview {
    background-color: #c90a11;
    color: #fff;
    font-weight: 600;
    padding: 10px 40px;
    border-radius: 10px;
}

.from-theme-1-20 {
    background: radial-gradient(#c90a11 -77%, transparent);
}

.to-theme-2-40 {
    background: radial-gradient(#c90a11 -49%, transparent);
}

.to-theme-2-60 {
    background: radial-gradient(#c90a11 0%, transparent);
}

.profile-main-div {
    width: fit-content;
}

.profile-div {
    width: fit-content;
}

.image-fit>img {
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    width: 100%;
    height: 100%;
}

.w-24 {
    width: 7rem;
}

.h-24 {
    height: 7rem;
}

.image-fit {
    position: relative;
}

.file-input {
    position: absolute;
    top: 0;
    right: 0;
    background: #ffffff;
    border-radius: 35px;
    color: #fff;
    border: 1px dashed #c90a11;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps input,
.steps textarea,
.steps select {
    border-style: dashed;
    border-width: 1px;
    border-color: #ddd;
    border-radius: 10px;
    padding: 11px 19px;
    height: 45px;
    display: flex;
    align-items: center;
}

.file-input__input {
    width: 100%;
    height: 100%;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
    right: 0;
    left: 0;
    margin: auto;
    top: 0;
    padding: 0px !important;
}

.file-input__label {
    cursor: pointer;
    padding: 0 !important;
    height: 100%;
    width: 100%;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.actions {
    padding: 0.375rem 0.25rem;
    background: #c90a11;
    border-color: #c90a11;
}

.preview2 {
    overflow: hidden !important;
    width: 250px !important;
    height: 250px !important;
    border-radius: 50%;
    border: 1px dashed #c90a11;
}

.preview-div {
    height: 328px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-slide {
    position: relative;
    display: inline-block;
    height: 50px;
    width: 200px;
    line-height: 50px;
    padding: 0;
    border-radius: 50px;
    background: #fdfdfd;
    border: 2px solid #c90a11;
    margin: 10px auto;
    transition: 0.5s;
}

.btn-slide:hover {
    background-color: #c90a11;
}

.btn-slide span.circle{
    display: flex;
    background-color: #c90a11;
    color: #fff;
    position: absolute;
    float: left;
    margin: 3px 3px;
    line-height: 42px;
    height: 40px;
    width: 40px;
    top: 0;
    left: 0;
    transition: 0.5s;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.btn-slide:hover span.title {
  left: 40px;
  opacity: 0;
}

.btn-slide:hover span.title-hover {
  opacity: 1;
  left: 40px;
  color: #fff;
}
.btn-slide:hover span.circle {
    left: 100%;
    margin-left: -43px;
    background-color: #fdfdfd;
    color: #c90a11;
}
.btn-slide span.title, .btn-slide span.title-hover {
    position: absolute;
    left: 80px;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
    font-weight: bold;
    color: #c90a11;
    top: -2px;
    transition: 0.5s;
}
.btn-slide span.title-hover {
    left: 80px;
    opacity: 0;
}

/* =============================================================================================================================
                                                        Thank You page Css
=============================================================================================================================*/

.box_thankyou{
    padding: 30px;
    background-color: #FFF9FA;
    border-radius: 10px;
    position: absolute;
    z-index: -1;
}
.btn_thank{
    padding: 12px 20px;
    background-color: #c90a11;
    color: #fff;
    border-radius: 5px;
    border: none;
    outline: none;
}
.thank_doctor_img{
    background-color: #fff;
    border-radius: 10px;
}
.title_doc_name{
    font-size: 32px;
    color: #c90a11;
    font-weight: 700;
}
.thank_doctor_img::before{
    content: '';
    width: 100%;
    height: 100%;
    border: 1px solid #c90a11;
    border-radius: 10px;
    position: absolute;
    top: 10%;
    right: -10%;
    z-index: -1;
}
.edit_icon{
    background-color: #c90a11;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    border: 1px dashed #c90a11;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -20px;
    right: -20px;
}
.edit_icon:hover i{
    color: #fff;
}


@media screen and (max-width: 991px) {
    .title_doctor_details::after, .title_doctor_details::before{
        width: 23%;
    }
}
@media screen and (max-width: 767px) {
    .title_doctor_details::after, .title_doctor_details::before{
        width: 13%;
    }
    .box_btn_home{
        width: 100% !important;
    }
    .btn_not{
        width: 134px !important;
        font-size: 14px !important;
    }
}
@media screen and (max-width: 400px) {
    .title_doctor_details::after, .title_doctor_details::before{
       display: none;
    }
}

/* =============================================================================================================================
                                                        Rxn create page Css
=============================================================================================================================*/

.rxn_create_box, .approvel_page{
    background-color: #FFF9FA;
    border-radius: 10px;
}
.rxn_create_box .title_doctor_details::after, .rxn_create_box .title_doctor_details::before{
    width: 29%;
}

.approvel_page .title_doctor_details::after, .approvel_page .title_doctor_details::before{
    width: 29%;
}
