﻿/*------------------Professional Login---------------------------*/


img {
    display: inline-block;
    margin: 3px 10px;
}

/*.logincontainer {
    background-image: url('../Images/Login_view.png');;*/
/*overflow: auto; 
    display: none;
    visibility: hidden;*/
/*background-size: cover;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    overflow-y: hidden;
    overflow-x: hidden;
    opacity: 100%; 
}*/

.profcard {
    color: #015B99 !important;
    margin-top: 1em;
    padding: 1.5em 0.5em 0.5em;
    box-shadow: 0 -20px 150px -20px rgba(0, 0, 2, 0.5);
    opacity: 100%;
    border: 1px solid #015B99;
    border-radius: 5px;
    font-family: Rubik;
}

.profbtn {
    background-color: #015B99 !important;
}

/*---------------ContactUs Page-------------------------*/

.contactcard {
    color: #015B99 !important;
    margin-top: 2em;
    padding: 1.5em 0.5em 0.5em;
    text-align: center;
    box-shadow: 0 -20px 150px -20px rgba(0, 0, 0, 0.5);
    opacity: 75%;
    border: 2px solid #015B99;
    border-radius: 0.8rem;
    font-family: Rubik;
}


/*-------------Registration popup---------------------*/

.popupcard {
    color: #015B99 !important;
    padding: 1.5em 0.5em 0.5em;
    box-shadow: 0 -20px 150px -20px rgba(0, 0, 0, 0.5);
    font-family: Rubik;
}

.popupbtn {
    border: 2px solid white !important;
    background-color: #015B99 !important;
    border-radius: 8px;
}

/*------------PT Dashboard--------------*/

.sidebarcard {
    box-shadow: 0 -20px 150px -20px rgba(0, 0, 0, 0.5);
    font-family: Rubik;
    text-align: center;
    opacity: 75%;
    border-radius: 15px;
    border: solid 5px #333333;
}

.h {
    height: 195% !important;
}

.min-vh-100 {
    /*min-height: 20vh !important;*/
}

@media (min-width: 576px) {
    .pb-4 {
        margin-bottom: 3rem !important;
    }
}

@media (max-width: 576px) {
    .h {
        height: 100% !important;
        width: 60% !important;
        padding-left: 20px;
    }
}

@media (max-width: 576px) {
    .flex-column {
        height: 100% !important;
        flex-wrap: nowrap !important;
    }
}

@media (max-width:576px) {
    .sidebar {
        position: relative;
        overflow: auto;
    }

    .ul {
        position: relative;
        margin-left: 50px;
        position: absolute;
        top: 0;
        bottom: 0;
        height: 100%;
        left: 0;
        overflow: hidden;
    }
}

#navbarsExample {
    padding: 45px;
    margin-inline: -19px;
    line-height: 45px;
    font-size: 20px;
}

li:hover a {
    color: #fab718 !important;
}

@media (min-width: 576px) {
    .navbar-toggle {
        display: none;
    }

    .sidebarnav {
        display: block;
    }
}

body {
    background-color: #F9FAFF;
    line-height: 1.5;
    color: #54555B;
    overscroll-behavior-y: none !important;
}

h3 {
    color: #070A26;
    font-size: 1.5em;
    margin: 0;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card--settings {
    padding: 25px 60px 50px;
    margin: 50px 25px;
    background-color: #F3C8C8;
    width: 15px !important;
    height: 250px;
    border-radius: 30px 30px 30px 30px;
    border: 2px solid #F3F6FF;
    transition: box-shadow 0.1s ease;
}

    .card--settings:hover {
        border: 2px solid #E4EFFA;
        background-color: #E4EFFA;
        box-shadow: -15px 20px 50px -2px #ccc;
    }

.card-title {
    color: #6a0bf3;
}

/*------------------------------------------------------------------*/


:root {
    --white: #fff;
    --bg_color1: #9fcc26;
    --bg_color2: #e2374a;
    --bg_color3: #A8198B;
    --bg_color4: #FE9901;
}

.demo {
    background-color: #e7e7e7;
}

.counter {
    font-family: 'Roboto', sans-serif;
    text-align: center;
    width: 200px;
    padding: 0 0 30px;
    margin: 0 auto 30px; /* Add margin to the bottom for separation */
    position: relative;
    z-index: 1;
    display: inline-block; /* Make each counter element inline-block to ensure they are placed side by side */
    margin-right: 20px; /* Adjust the right margin for separation */
}

    .counter:after {
        content: '';
        background-color: var(--bg_color1);
        height: 180px;
        width: 180px;
        border-radius: 50%;
        box-shadow: 0 0 5px #999 inset;
        transform: translateX(-50%);
        position: absolute;
        left: 50%;
        bottom: 0;
        z-index: -1;
    }

    .counter .counter-content {
        background: var(--white);
        width: 200px;
        height: 200px;
        padding: 10px 15px;
        box-shadow: 10px 15px 10px -10px rgba(0, 0, 0, 0.8);
        border-radius: 50%;
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

        .counter .counter-content:before {
            content: "";
            background: var(--bg_color1);
            width: 200px;
            height: 100px;
            border-radius: 50%;
            transform: translateX(-50%);
            position: absolute;
            top: -35px;
            left: 50%;
            z-index: -1;
        }

    .counter .counter-icon {
        color: var(--white);
        font-size: 35px;
        margin-bottom: 25px;
        transition: all 0.3s ease-in-out;
    }

    .counter:hover .counter-icon {
        transform: rotateY(180deg) rotateX(360deg);
    }

    .counter .counter-value {
        color: var(--bg_color1);
        font-size: 35px;
        font-weight: 700;
        line-height: 20px;
        display: block;
    }

    .counter h3 {
        color: #555;
        font-size: 22px;
        font-weight: 600;
        padding: 0 10px;
        margin-top: 30px;
        display: inline-block;
    }

    .counter.red:after,
    .counter.red .counter-content:before {
        background-color: var(--bg_color2);
    }

    .counter.red .counter-value {
        color: var(--bg_color2);
    }

    .counter.purple:after,
    .counter.purple .counter-content:before {
        background-color: var(--bg_color3);
    }

    .counter.purple .counter-value {
        color: var(--bg_color3);
    }

    .counter.orange:after,
    .counter.orange .counter-content:before {
        background-color: var(--bg_color4);
    }

    .counter.orange .counter-value {
        color: var(--bg_color4);
    }

@media screen and (max-width:1200px) {
    .counter { /* Reset the right margin for smaller screens */
        justify-content: start;
        margin-bottom: 20px;
        /* margin-left:30%;*/
        margin-left: auto;
        margin-right: auto;
        /*margin-right:10px;*/ /* Add bottom margin for separation */
        display: block; /* Ensure each counter is on a new line on smaller screens */
    }
}

/*=========================Datepicker=========================================*/

/*body {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background: #DEE0E1;
    font-family: "Ubuntu", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
}

*, *::before, *::after {
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    outline: none;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out, margin 0.3s ease;
    -webkit-transition: all 0.3s ease-in-out, margin 0.3s ease;
}*/

/* RESET FORM ELEMENTS */
/*.input-container input[type="date"],
.input-container input[type="text"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
}*/

/* INPUT CONTAINER  */
/*.input-container {
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    min-width: 217px;
    height: 60px;
    padding: 5px 10px 10px 10px;
    background: #fff;
    border-radius: 8px;
    filter: drop-shadow(0px 0px 3px #000);
    -webkit-filter: drop-shadow(0px 0px 3px #000);
    overflow: hidden;
    cursor: pointer;
}

    .input-container:hover,
    .input-container:focus,
    .input-container:active {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
    }

    .input-container label {
        position: relative;
        width: 100%;
        font-family: "Segoe UI";
        font-weight: 600;
        font-size: 11px;
        letter-spacing: 0.1em;
        line-height: 20px;
        color: #09f;
        margin-left: 2px;
        text-transform: uppercase;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .input-container input {
        position: relative;
        align-items: center;
        width: auto;
        height: auto;
        font-family: "Lekton", Arial, sans-serif;
        font-weight: 600;
        font-size: 22px;
        letter-spacing: 0.05em;
        line-height: 21px;
        text-transform: uppercase;
        margin-left: 0px;
    }*/

/* BUTTON CONTAINER */
/*.button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 197px;
    height: 65px;
    padding: 1px;
    padding-bottom: 2px;
    background: #09f;
    border-radius: 8px;
    filter: drop-shadow(0px 0px 3px #000);
    -webkit-filter: drop-shadow(0px 0px 3px #000);
    overflow: hidden;
    cursor: pointer;
}

    .button-container:hover,
    .button-container:focus {
        background: #09f;
        filter: drop-shadow(0px 0px 3px #09f);
        -webkit-filter: drop-shadow(0px 0px 3px #09f);
    }*/
    /* -- button -- */
    /*.button-container .button {
        position: relative;
        width: 100%;
        min-height: 63px;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 7px;
        background: #fff;
        color: #000;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 700;
    }

    .button-container:hover .button:hover {
        background: #000;
        color: #fff;
    }

    .button-container:hover .button:active {
        background: #000;
        color: #fff;
        background: #09f;
        filter: drop-shadow(0px 0px 3px #09f);
        -webkit-filter: drop-shadow(0px 0px 3px #09f);
    }*/
    /* -- button ok -- */
    /*.button-container .button.ok {
        background: #131313;
        color: #fff;
    }

    .button-container:hover .button.ok:hover {
        background: #131313;
        color: #09f;
        text-shadow: 0px 0px 10px #09f;
        -webkit-text-shadow: 0px 0px 10px #09f;
    }

    .button-container:hover .button.ok:active {
        color: #fff;
        background: #09f;
        filter: drop-shadow(0px 0px 3px #000);
        -webkit-filter: drop-shadow(0px 0px 3px #000);
    }*/

/* RESERVATION BOX */
/*.reservation-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    height: auto;
    padding: 20px;
    border-radius: 7px;
    background-color: rgba(255,255,255,1);
}

    .reservation-box .static {
        position: relative;
        display: flex;
        align-items: center;
        float: left;
        width: auto;
        margin-right: 20px;
    }

    .reservation-box .flex {
        position: relative;
        display: flex;
        float: left;
        flex-direction: table;
        align-items: center;
        gap: 20px;
        width: auto;
    }

    .reservation-box .top {
        display: flex;
        flex-direction: table;
    }

    .reservation-box .bottom {
        position: relative;
        width: 100%;
        text-align: right;
    }

    .reservation-box .info {
        width: auto;
        color: #000;
        font-weight: 500;
        text-decoration: none;
        text-align: right;
        cursor: pointer;
        border-bottom: 2px solid transparent;
    }

        .reservation-box .info:hover,
        .reservation-box .info:focus,
        .reservation-box .info:active {
            color: #000;
            border-bottom: 2px solid #09f;
        }*/

    /* RESERVATION BOX SMALL */
    /*.reservation-box.small, .reservation-box.small .flex {
        flex-direction: column;
    }

        .reservation-box.small .top {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .reservation-box.small .static {
            margin-right: 0px;
        }

        .reservation-box.small .bottom {
            text-align: center;
        }

        .reservation-box.small .button-container {
            min-width: 217px;
        }*/

/* ------------ Testkit ------------ */
/*.test {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #000;
    border-radius: 50%;
    cursor: pointer;
}

    .test svg {
        rotate: 0deg;
    }

        .test svg path {
            fill: #000;
        }

    .test:hover {
        background: rgba(255,255,255,1);
    }

    .test.small svg {
        rotate: 90deg;
    }*/







