:root{
    --dark-blue: #02294E;
    --blue: #053764;
    --light-blue: #F7F9FA;
    --pastel-blue: #EBEFF3;
    --orange: #FC8602;
    --light-orange: #fff2e5;
    --pastel-orange: #fff9f2;
    --gray: #757272;
}

.profile-section{
    padding: 60px 0;
}

.profile-wrapper{
    background-color: #fff;
    
    box-shadow: 0px 0px 12px #00000015;
    border-radius: 10px;
}

.account{
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 0;
   padding: 30px;
   padding-bottom: 10px;
}

.account-list{
    list-style: none;
    padding-left: 0;
    font-size: 1.08rem;
    font-weight: 600;
}

.account-list li{
    padding: 12px 25px;
    color: var(--dark-blue);
    transition: all 0.1s;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.account-list li:hover{
    background-color: var(--pastel-orange);
    border-left: 5px solid var(--orange);
}


.account-list-icon{
    padding: 15px ;
    background-color: var(--blue);
    color: #fff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
}

.profile-view-wrapper{
    padding: 30px;
    padding-bottom: 60px;
}

.profile-form-wrapper{
    max-width: 450px;
    width: 100%;
    padding: 10px;
}

.profile-container{
    display: flex;
    justify-content: space-between;
    display: none;
}

.add-product-container{
    display: none;
}

.add-product-container-edit{
    display: none;
}

.update-password-container{
    display: none;
}

.active-container{
    display: block !important;
}

.profile-form-wrapper input{
    padding: 7px;
    border-radius: 4px;
    border: 1px solid var(--gray) !important;
    width: 100%;
}

.addProduct-form-wrapper{
   display: none;
}

/*.active-container{
    display: block;
}*/

.hide-container{
    display: none !important;
}

.addProduct-form-wrapper input,textarea,select{
    padding: 7px;
    border-radius: 4px;
    border: 1px solid var(--gray) !important;
    width: 100%;
   
}

.addProduct-form-wrapper h3{
    color: var(--blue);
}

 label{
  
    font-weight: 600;
}


.profile-form-btn-wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.profile-form-btn-wrapper button{
    width: 100%;
}

.edit-btn{
    background-color: #fff;
    border: 1px solid var(--gray);
    outline: none;
    padding: 12px;
    border-radius: 5px;
    color: var(--gray);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.6s;
}

.edit-btn:hover{
    background-color: var(--blue);
    border: 1px solid var(--blue);
    color: #fff;
   
}


.add-product-img-wrapper{
    max-width: 450px;
    width: 100%;
    animation: bounceImg 5s infinite linear;
}

@keyframes bounceImg {
    0% {
        transform: translateY(0);
    }
    
    50% {
        transform: translateY(-30px);
    }
    100% {
        transform: translateY(0);
    }
}
.add-product-img-wrapper img{
    max-width: 100%;
}

.add-product-content{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.add-product-content p {
    margin: 0;
    opacity: 0.8;
}

.from-price-input-container {
    width: 100%;
}


.active-link{
    background-color: var(--pastel-orange);
    border-left: 5px solid var(--orange); 
}

.select2{
  
}

.add-product-from-edit{
    display: none;
}


.add-product-from-edit input,textarea,select{
    padding: 7px;
    border-radius: 4px;
    border: 1px solid var(--gray) !important;
    width: 100%;
   
}

.add-product-from-edit h3{
    color: var(--blue);
}


/*.select-input {
    height: 50px !important;
}*/

.error-message{
    
}

