﻿/*------------------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;
    background-color: aliceblue;
}


/*-------------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: #faffb1 !important;
    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:992px) {
    .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 */
    }

    .tbl {
        margin-right: 50px !important;
        /*width: 10px !important;*/
        padding: 40px !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .info {
        /*margin-right: 150px !important;*/
        padding: 70px !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .sbar {
        /* margin-right: 150px !important;*/
        width: 260px !important;
        padding: 70px !important;
        justify-content: center !important;
        align-items: center !important;
    }
}

@media (max-width:576px) and (min-width:768px) {
    .tbl {
        margin-right: 50px !important;
        padding: 63px !important;
        justify-content: center !important;
        align-items: center !important;
    }
}

/*
===================================================================*/


/*@media screen and (max-width: 1400px) {
    .headset {
        margin-right: 300px !important;
        padding: 0px !important;
        padding-bottom: 20px !important;
    }
}*/

.blink-soft {
    animation: blinker 3.5s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.blinking-star.fa-star {
    color: red;
    font-size: 30px;
    margin-right: 20px;
}

/* Step 1: Make the stars blink using keyframe animation and opacity*/
.blinking-star {
    -webkit-animation: blink-animation 1s infinite;
    animation: blink-animation 1s infinite;
}

@-webkit-keyframes blink-animation {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes blink-animation {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Step 2: Make the second star blink with delay*/
.star2 {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

/* Step 3: Resize the stars as they blink */
.blinking-star {
    -webkit-animation: blink-animation 1s infinite, scale-animation 1s infinite;
    animation: blink-animation 1s infinite, scale-animation 1s infinite;
}

.star2 {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

@-webkit-keyframes scale-animation {
    0% {
        transform: scale(0.5,0.5);
    }

    50% {
        transform: scale(1,1);
    }

    100% {
        transform: scale(0.5,0.5);
    }
}

@keyframes scale-animation {
    0% {
        transform: scale(0.5,0.5);
    }

    50% {
        transform: scale(1,1);
    }

    100% {
        transform: scale(0.5,0.5);
    }
}
