body{
    color: #dee2e6;
    font-family: 'Montserrat', sans-serif;
}

.btn{
    outline: none;
    border: none;
    border-radius: 0;
}
.navbar-brand{
    color: #dee2e6;
    font-family: 'Vollkorn SC', serif;
}
.vote-card{
    background-image: url(./images/vote-bg.png);
    width: 200px;
    height: 140px;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    background-position: center;
    position: relative;
    font-weight: bold;
}

.attr-val{
    position: absolute;
    top: 15px;
    right: 0;
    left: 0;
}

.vote-down-btn {
    position: absolute;
    top: 54px;
    height: 34px;
    left: 26px;
    width: 67px;
    background-image: url(./images/vote-down.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.6;
}

.vote-down-btn:hover{
    opacity: 1;
}

.vote-down-btn:active {
    transform: translateX(-4px);
}

.vote-up-btn {
    position: absolute;
    top: 54px;
    height: 34px;
    right: 26px;
    width: 67px;
    background-image: url(./images/vote-up.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.6;
}

.vote-up-btn:hover{
    opacity: 1;
}

.vote-up-btn:active {
    transform: translateX(4px);
}

.vote-up-btn.active, .vote-down-btn.active{
    opacity: 1;
}

.num-of-votes {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
}

.middle-content {
    max-width: 470px;
    margin: 0 auto;
}

.gallery-img-wrap{
    background-image: url("./images/middle_section_without_gray.png");
    height: 595px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    max-width: 470px;
    position: relative;
    width: 100%;
}

.img-inner {
    position: absolute;
    top: 54px;
    left: 58px;
    right: 57px;
    bottom: 53px;
    background-size: 100% 100%;
}

.reload-btn{
    background-image: url("./images/reload-btn-bg.png");
    width: 225px;
    height: 75px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    opacity: 0.7;
}

.reload-btn:hover{
    color: #000;
    opacity: 1;
}

.img-num-input{
    width: 100px !important;
    font-size: 22px;
    min-height: 0px;
    line-height: 1;
    font-weight: bold;
    padding: 0 8px;
    border-radius: 0;
}

.comments-list{
    background-image: url("./images/comment_section.png");
    height: 400px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 25px;
}
#comments-list{
    overflow: auto;
    height: 100%;
}

/* width */
#comments-list::-webkit-scrollbar {
    width: 6px;
}

/* Track */
#comments-list::-webkit-scrollbar-track {
    background: #4d0d00;
}

/* Handle */
#comments-list::-webkit-scrollbar-thumb {
    background: #854213;
}

/* Handle on hover */
#comments-list::-webkit-scrollbar-thumb:hover {
    background: rgba(133, 66, 19, 0.82);
}

.comment-item{
    line-height: 1;
    color: #000;
}

.new-comment {
    background-image: url("./images/text_area.png");
    height: 150px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 25px;
}

.new-comment textarea {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    height: 100%;
}

.new-comment-btn {
    background-image: url("./images/comment_button.png");
    width: 81px;
    height: 44px;
    background-size: 100% 100%;
    opacity: 0.7;
}

.new-comment-btn:hover {
    opacity: 1;
}

.dark-form input{
    background: #323538 !important;
    color: #dee2e6 !important;
    border: 0;
    box-shadow: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}
.my-vote-card .card-body{
    background: #1b1e21;
}
.my-vote-card:hover .card-body{
    background: #151719;
}
.my-vote-card img{
    opacity: 0.7;
}

.my-vote-card img:hover{
    opacity: 1;
}

.page-link {
    background: #212529;
    color: #6c757d;
    font-weight: bold;
    border-color: #6c757d;
}

.active>.page-link, .page-link.active{
    background: #6c757d;
    border-color: #6c757d;
}

.page-link:hover{
    background: #6c757d;
    color: #fff;
    border-color: #6c757d;
}

.comment-card{
    background: #1b1e21;
}

.comment-card:hover{
    background: #151719;
}