﻿#cover-spin {
    display: flex;
}

/*=============================================
=            SITE RATING            =
=============================================*/
.vote-sec {
    display: block;
    width: 320px;
    height: 200px;
    position: fixed;
    right: -270px;
    bottom: 150px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    z-index: 99999;

}

.vote-sec-open {
    right: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;

}

.vote {
    float: right;
    margin: auto;
    width: 270px;
    text-align: center;
    background-color: #f3f6f9;
    border-radius: 20px 0 0 20px;
    padding-bottom: 10px;

}

.vote-links {
    display: block;
    margin: auto;
    text-align: center;
    padding: 10px;

}

.vote-title {
    text-align: center;
    margin: 10px auto 5px auto;
    font-size: 20px;
    border-bottom: 4px solid var(--accent);
    width: 100%;
    padding: 10px 0;
}

.vote-links span {
    display: inline-block;
    margin: 0 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 52px;
    vertical-align: top;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.vote-links span:hover {
    padding-top: 20px;
    padding-bottom: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.vote-links span.vote1 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.vote-links span.vote1:hover {
    padding-top: 0;
    padding-bottom: 20px;
    transform: rotate(40deg);
    padding-top: 10px;
    padding-bottom: 10px;
}

.vote-links span.vote2 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.vote-links span.vote2:hover {
    padding-top: 0px;
    padding-bottom: 20px;
}

.vote-links span.vote3:hover {
    transform: rotate(-40deg);
    padding-top: 10px;
    padding-bottom: 10px;
}

.vote-text {
    padding-bottom: 5px;
}

.vote-open {
    width: 50px;
    float: left;
    height: 52px;
    background-color: black;
    background-color: #f3f6f9;
    margin-top: 37px;
    padding-top: 5px;
    border-radius: 15px 0 0 15px;
    padding-right: 4px;
    cursor: pointer;
}

/*=====  End of SITE RATING  ======*/