:root {
    --dark-orange: #F33B07;
    --light-orange: #FC5F13;
    --blue: #12E1FF;
    --white: #fff;
    --off-white: #FFEADE;
    --grey: #333;
    --black: #222;
}

body {
    padding: 0;
    margin: 0;
    margin: auto;
    font-family: 'Commissioner', poppins;
}

h1 {
    font-size: 4rem;
    font-family: 'Commissioner', poppins;
    font-weight: 700;
    line-height: 5rem;
}

h3 {
    font-size: 2rem;
    font-family: Commissioner;
    font-weight: 700;
    line-height: 5rem;
}

h4 {
    font-size: 1.5rem;
    font-family: Commissioner;
    font-weight: 700;
    /* line-height: 5rem; */
}

h5 {
    font-size: 1rem;
    font-family: Commissioner;
    font-weight: 700;
    line-height: 0.875rem;
}

p {
    font-size: 1.5rem;
    font-family: Commissioner;
    line-height: 2rem;
}

.pad-3 {
    padding: 3px 0;
}

.pad-5 {
    padding: 5px 0;
}

.pad-10 {
    padding: 10px 0;
}

.pad-15 {
    padding: 15px 0;
}

.pad-20 {
    padding: 20px 0;
}

.pad-25 {
    padding: 25px 0;
}

.pad-30 {
    padding: 30px 0;
}

.pad-40 {
    padding: 40px 0;
}

.pad-50 {
    padding: 50px 0;
}

.pad-60 {
    padding: 60px 0;
}


.img {
    width: 100%;
}

input {
    outline: none;
}

a {
    text-decoration: none;
}
   /* edit profile design  */
   .profile-input-container{
    padding: 0.6rem 0.5rem;
}
input.form-control{
    padding: 0.6rem;
}
.profile-input-container .form-select{
    padding: 0.6rem;
}
img.edit-icon {
    position: absolute;
    top: 110px;
    left: 120px;
}
.profile-page-container .col-lg-12.col-md-12 {
    position: relative;
}

#profile_image{
    width: 150px; 
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
  }

.profile-img {
    width: 140px; 
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
  }

.overlay {
    width: 0%;
    height: 100%;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    overflow-y: hidden;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    /* top: 25%; */
    width: 100%;
    /* margin-top: 10px; */
}

.overlay .closebtn {
    position: absolute;
    z-index: 3;
    top: 10px;
    right: 10px;
    text-decoration: none;
    font-size: 40px;

    color: var(--black)
}


.poverlay {
    width: 0%;
    height: 100%;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    overflow-y: hidden;
    transition: 0.5s;
}

.poverlay-content {
    position: relative;
    width: 100%;

}

.poverlay .closebtn {
    position: absolute;
    z-index: 3;
    /* top: 5px; */
    right: 10px;
    top: 10px;
    text-decoration: none;
    font-size: 40px;
    line-height: 25px;
    color: var(--black)
}