:root {
    --theme-main-color: #0678be;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--theme-main-color);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--theme-main-color);
}

* {
    box-sizing: border-box;
}

@font-face {
    font-family: "Nexa";
    src: url('../fonts/NexaBold.otf');
}

html {
    min-height: 100%;
    position: relative;
}

body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: "Nexa", sans-serif;
    background: #89bed5;
    /* background-image: url('../img/bg-desktop.jpg'); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: border-box;
}

.wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.text-blue-color {
    color: var(--theme-main-color);
}

.theme-blue-btn {
    color: #fff;
    background-color: var(--theme-main-color);
    border: 2px solid var(--theme-main-color);
    transition: all ease-in-out .2s;
}

.theme-blue-btn:hover {
    color: var(--theme-main-color);
    background-color: #fff;
    border: 2px solid var(--theme-main-color);
}

.theme-blue-border-btn {
    color: var(--theme-main-color);
    background-color: #fff;
    border: 2px solid var(--theme-main-color);
    transition: all ease-in-out .2s;
}

.theme-blue-border-btn:hover {
    color: #fff;
    background-color: var(--theme-main-color);
    border: 2px solid var(--theme-main-color);
    transition: all ease-in-out .2s;
}

.form-control {
    border-color: var(--theme-main-color);
}

.form-select{
    border-color: var(--theme-main-color);
}

.form-control:focus {
    box-shadow: 0px 0px 0px 1px var(--theme-main-color);
}

.form-select:focus {
    box-shadow: 0px 0px 0px 1px var(--theme-main-color);
}

.select2-container--bootstrap-5 .select2-selection {
       border: var(--theme-main-color);
   }

/* Data Tables Css */
table.dataTable>thead>tr>th,
table.dataTable>thead>tr>td {
    padding: 10px;
    border-bottom: 1px solid rgb(6 120 190) !important;;
    background: #0678be !important;;
    color: #fff !important;;
}

div.dt-container .dt-paging .dt-paging-button.current,
div.dt-container .dt-paging .dt-paging-button.current:hover {
    border: 1px solid rgb(6 120 190);
    color: rgb(6 120 190) !important;
}

/* Data Tables Css */

/* Add Doctor Image Css */
.avatar-upload {
    position: relative;
    max-width: 200px;
    margin: 0px auto;
}

.avatar-upload .avatar-edit {
    position: absolute;
/*    right: 16px;*/
    z-index: 1;
/*    top: 4px;*/
}

.avatar-upload .avatar-edit input {
    display: none;
}

.avatar-upload .avatar-edit input+label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #FFFFFF;
    border: 1px solid rgb(6 120 190 / 25%);
    box-shadow: 0px 2px 4px 0px rgb(185 233 247);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
}

.avatar-upload .avatar-edit input+label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
}

.avatar-upload .avatar-edit input+label:after {
    content: "\f303";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #757575;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}

.avatar-upload .avatar-preview {
    width: 200px;
    height: 200px;
    position: relative;
    border-radius: 100%;
    border: 4px solid rgb(6 120 190 / 25%);
    box-shadow: 0px 2px 4px 0px rgb(185 233 247);
}

.avatar-upload .avatar-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Add Doctor Image Css */

/* Patient Leaflet Css */
.radio-card {
    width: 100%;
}

.card-input-element {
    display: none;
}

.card-input:hover {
    cursor: pointer;
}

.share-icons {
    text-decoration: none;
    font-size: 2.25rem;
    color: #ffffff;
    background: #212529;
    margin: 0 10px;
    width: 60px;
    height: 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.share-icons.emailShare {
    color: #ff0000;
    background: #ffd9dc;
}

.share-icons.emailShare:hover {
    background-color: #ff0000;
    color: #ffd9dc;
    transition: background-color 0.3s cubic-bezier(0.47, 0, 0.75, 0.72);
}

.share-icons.facebookShare {
    color: #3b5998;
    background-color: #eceff5;
}

.share-icons.facebookShare:hover {
    background-color: #3b5998;
    color: #eceff5;
    transition: background-color 0.3s cubic-bezier(0.47, 0, 0.75, 0.72);
}

.share-icons.whatsappShare {
    color: #25D366;
    background-color: #cef5dc;
}

.share-icons.whatsappShare:hover {
    background-color: #25D366;
    color: #cef5dc;
    transition: background-color 0.3s cubic-bezier(0.47, 0, 0.75, 0.72);
}

/* Patient Leaflet Css */

.gallery-title
{
    font-size: 36px;
    color: var(--theme-main-color);
    text-align: center;
    font-weight: 500;
    margin-bottom: 70px;
}
.gallery-title:after {
    content: "";
    position: absolute;
    width: 7.5%;
    left: 46.5%;
    height: 45px;
    border-bottom: 1px solid #5e5e5e;
}
.filter-button
{
    font-size: 18px;
    border: 1px solid var(--theme-main-color);
    border-radius: 5px;
    text-align: center;
    color: var(--theme-main-color);
    margin-bottom: 30px;

}
.filter-button:hover
{
    font-size: 18px;
    border: 1px solid var(--theme-main-color);
    border-radius: 5px;
    text-align: center;
    color: #ffffff;
    background-color: var(--theme-main-color);

}
.btn-default:active .filter-button:active
{
    background-color: var(--theme-main-color);
    color: white;
}

.port-image
{
    width: 100%;
}

.gallery_product
{
    margin-bottom: 30px;
}

.btn-success{
    background-color: #d33b44;
    border: none;
}


.btn-success:hover{
    background-color: #d33b44;
    border: none;
}