:root {
    --back-color: #D2D3FF;
    --text-color: #1f1f1f;
}

a {text-decoration: none; color: rgb(0, 0, 0);}
a:hover {text-decoration: underline;}

@font-face {
	font-family: 'Manrope-Bold';
    src: url('/static/fonts/Manrope-Bold.ttf');
}
 
@font-face {
	font-family: 'Manrope-Medium';
    src: url('/static/fonts/Manrope-Medium.ttf');
}

* { font-family: 'Manrope-Medium' !important; }

.header{
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.header-menu{
    display:flex;
    width: 100%;
    justify-content: space-between;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-transform: uppercase;
}

.header-menu a{
    transition: all 0.1s linear;
}

.header-menu a:hover{
    transform: scale(1.02, 1.02);
}

.menu{
	min-width: 100%;
  margin-bottom: 10px;
}

.profile{
    padding-bottom: 5vh;
}

.pag-colors{
    display: flex;
    height: 40px;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    padding: 0;
}

.page-link:hover{
    transform: scale(1.01, 1.01);
}

.active{
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: 3px;
}

body {
    background-color: var(--back-color);
    margin: 0 3.4%;
    display: flex;
    flex-direction: column;
}

.container-header {
	background-color: #373b3e;
	padding-top: 15px;
	padding-bottom: 15px;
}

.admin-center{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
    border: 10px;
    border-radius: 15px;
    width: 60%;
    margin: auto;
}

.admin-center label{
    float: left;
}

th{
    padding: 1vw;
}

td{
    padding: 1vw;
}

.vizhu-search{
    width: 30%;
    float: left;
}

.vizhu-search input::-webkit-search-cancel-button {
    margin-right: 25px;
}

.vizhu-search input{
    border-radius: 20px;
}

.vizhu-search input:focus{
    box-shadow: 0 0 0 !important;
}

.vizhu-search button, .vizhu-search button:hover{
    padding: 0 20px;
    background-color: black;
    color: white;
    border-radius: 20px;
    margin-left: -30px;
}

.desktop{
    --bs-gutter-x: 0;
    gap: 20px;
}

.vizhu-button,
.vizhu-button:hover,
.vizhu-button:active{
    border-radius: 30px;
    background-color: black;
    color: white;
    padding: 10px 4vw;
    border: none;
}

.vizhu-radio, .vizhu-radio:hover{
    font-family: 'Manrope-Bold' !important;
    border: solid 1px;
    border-radius: 30px;
    padding: 5px 47px;
    font-size: larger;
    text-transform: uppercase;
    background-color: transparent;
}

.vizhu-radio:hover{
    box-shadow: 1px 2px 20px 0px rgb(169 170 229);
}

.vizhu-btn-check{
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.vizhu-btn-check:checked+.btn{
    background-color: #C5FA6A;
}

.user-card{
    display: flex;
    background-color: white;
    border-radius: 30px;
}

.user-avatar{
    width: 40%;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 1;
}

.user-avatar img{
    width: 100%;
    max-width: 232px;
    aspect-ratio: 1;
    object-fit: cover;
}

.user-info{
    width: 53%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5%;
    height: 110px;
    margin: auto;
}

.vizhu-grid{
    position: relative;
}

.vizhu-grid > ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 1rem;
  padding: 0;
}

li {
  list-style-type: none;
}

.icon-container{
    display: none;
}

.logo{
    width: 52%
}

.dropdown-mobile{
    width: max-content;
    border-radius: 20px;
    padding: 0 10px 0 20px;
    background-color: #C5FA6A;
    height: 40px;
    border: solid 1px;
    }

.dropdown-mobile > option{
    background-color: white;
}

.profile-main{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 0 0 30px;
    align-items: flex-start;
    margin: auto 0;
}

.profile-main p{
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-img img{
    width: 70%;
    height: 100%;
}
.profile-img .file {
    position: relative;
    overflow: hidden;
    margin-top: -20%;
    width: 70%;
    border: none;
    border-radius: 0;
    font-size: 15px;
    background: #212529b8;
}
.profile-img .file input {
    position: absolute;
    opacity: 0;
    right: 0;
    top: 0;
}
.profile-head h5{
    color: black;
}
.profile-head h6{
    color: black;
}
.profile-work p{
    color: #000000;
    font-weight: 600;
}
.profile-work a{
    text-decoration: none;
    color: #495057;
    font-weight: 600;
    font-size: 14px;
}
.profile-work ul{
    list-style: none;
}

.profile-tab p{
    font-weight: 500;
}

.ui-datepicker-calendar {
    display: none;
    }

.designation{
    text-align: left;
    background:none;
    border:none;
    margin:0;
    padding:0;
    color: black;
    font-size: calc(12px + 0.25vw);
}

.login-form{
    width: 60%;
    display:flex;
    align-items: stretch;
    flex-direction: column;
    margin: 30vh auto;
    gap:10px;
}

.login-form input{
    border-radius: 50px;
    border: 1px solid;
    font-size: 26px;
    padding: 4px 35px;
}

.login-form button{
    border-radius: 50px;
    border: 1px solid;
    margin: 0;
    padding: 10px 20px;
    font-size: 26px;
}

@media only screen and (max-width: 575px) {
    .vizhu-search{
        width: 100%;
    }

    .logo{
        width: 72%
    }

    .profile-main{
        padding: 0;
        align-items: flex-start;
        margin: auto;
        width: 90%;
        margin-bottom: 5%;
    }
}

@media only screen and (max-width: 1100px) {
    .header-menu{
        display:none;
    }

    .icon-container{
        display: block;
    }
}

@media only screen and (min-width: 1400px) {
    body{
        width: 1250px;
        margin: auto;
    }
}