
/*----------------------------------- MYProfile --------------*/

.profile-form {
    display: flex;
    flex-direction: column;
}

.profile-label {
    color:#777;
}

.profile-menu {
    display:flex; 
    justify-content: space-between;
    width:50% ;
    margin:auto;

}

/*.profile-menu a {
    text-decoration: none;
    
}*/

.profile-menu-item {
    border: none;
    padding:5px 5px;
    background: none;
    cursor: pointer;
    margin-right: 40px;
}

.active {
    
    border-bottom: 2px solid #66adeb;
}

.profile-col {
    /*flex-basis: 44%;*/
    background: transparent; /*linear-gradient(rgba(251, 251, 252, 0.4), rgba(4,9,30,0.4));*/
    border-radius: 10px;
    border: 1px solid #66adeb;
    margin: auto;
    margin-bottom: 5%;
    /*padding: 20px 12px;*/
    padding-bottom: 5px;
    box-sizing: border-box;
    width: 55%;
    text-align: center;

    padding:10px 10px;
    text-align: left;
    
}

.Tab-menu {
    /*justify-content: space-between;*/
    width: 70%;
    margin: auto;
}

h2 {
    margin-left: 80px;
}


/*---------------------------- Rating-------------------------------*/
.rate {
    /*float: left;
    height: 46px;
    
    padding-right: 70%;
    */
    display:flex;
    flex-direction: row-reverse;
    font-size:3em;
    justify-content:left;
    padding: 0 10px;
}

.rate:not(:checked) > input {
    position:absolute;
    top:-9999px;
}
.rate:not(:checked) > label {
    /*float:right; */   
    width:1em;
    overflow:hidden;
    white-space:nowrap;
    cursor:pointer;
    font-size:30px;
    color:#ccc;
}
.rate:not(:checked) > label:before {
    content: '★ ';
}
.rate > input:checked ~ label {
    color: #ffc700;    
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color:  #deb217;  
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #c59b08;
}



@media(max-width: 860px) {

    .profile-menu {
        width:70% ;

    
    } 

    .profile-col {
        width: 80%;

    }

}


@media(max-width: 700px) {

    h2 {
        margin-left: 5px;
    }

    .profile-menu {
        width:90% ;

    
    }
}