﻿*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body {
    background-image: url('../Images/contour.jpg');
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position:relative;
}
.shadow {
    background: linear-gradient(360deg,rgba(60,60,60,0.4)1%,rgba(25,25,25,0.48)10%,rgba(25,25,25,0.6)15%,rgba(25,25,25,0.75)25%,rgba(25,25,25,0.85)35%,rgba(25,25,25,0.95)47%,rgba(25,25,25,1)84%);
    width: 100vw;
    height: 100vh;
    z-index: -1;
}
.content {
    width: fit-content;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: space-around;
    margin: 0 auto;
    position: relative;
}
.titleName {
    font-size: 3em;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 5px #000, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #c1c1c1, 0 0 30px #c1c1c1, 0 0 40px #c1c1c1;
    cursor:default;
}
.linkimg {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
    
}
    .linkimg a:hover, .linkimg:hover > *, a:hover {
        color: #c1c1c1;
    }
    .linkimg:hover img {
        transform: translateY(-10px);
        transition: transform linear 0.5s;
    }
    .nameDepartment {
        font-size: 1.5em;
        color: #fff;
        text-shadow: 0 0 5px #000, 0 0 8px #fff, 0 0 10px #fff, 0 0 15px #c1c1c1, 0 0 20px #c1c1c1, 0 0 30px #c1c1c1;
    }

.linkimg2 {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

    .linkimg2 i {
     color:#a7f7ff;
    }

    .linkimg2:hover i {
        transform: translateX(-10px);
        transition: transform linear 0.2s;
        transform:scale(1.25);
    }

#rating {
    position: absolute;
    bottom: 0;
    right: -400px;
    width: 440px;
    transition: right ease 0.1s 0.2s;
    display: flex;
    height: 155px;
}
#ToAdmin {
    position: absolute;
    right: 0;
    bottom: 160px;
    height: 155px;
}
.ratingActive {
    right: 0 !important;
    transition: all ease 0.2s 0.1s;
}

#btnTabside, #ToAdmin {
    background: rgba(0,0,0,0.3);
    color: #fff;
    font-size: 2em;
    cursor: pointer;
    padding: 10px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    width: 40px;
    display: flex;
    align-items: center;
}

    #btnTabside:hover {
        filter: blur(0.5px);
        color: #ffc700
    }

.containerRating {
    padding: 0 10px 10px;
    width: 100%;
    background: rgba(232,232,232,0.8);
}

.headRating {
    background: rgba(94,94,94);
    color: #fff;
    margin: 0 -10px 5px;
    padding: 0 10px;
}

.contentRating {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.rowCon {
    display: flex;
    align-content: center;
    align-items: flex-start;
}

#comentRating {
    resize: none;
    padding: 2px 10px;
    outline: none;
    overflow-y: overlay;
}

    #comentRating::-webkit-scrollbar {
        display: none;
    }

.sentRating {
    padding: 3px 20px;
    margin-left: 5px;
    cursor: pointer;
}

.rate {
    float: left;
    height: 46px;
    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: #5e5e5e;
    }

        .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;
    }
