#galleryImagePopup{
position: absolute;
position: fixed;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
width: 100%;
height: 100%;
z-index: 999;
background: rgba(0, 0, 0, 0.95);
opacity: 1;
transition: hopacity 0.5s ease-out;
-o-transition: opacity 0.5s ease-out;
-moz-transition: opacity 0.5s ease-out;
-webkit-transition: opacity 0.5s ease-out;
}
#galleryImagePopup.hide{
opacity: 0;
display: none;
}

::selection{
background: #a0d4e9 !important;
}

#galleryImagePopup .positionBox{
position: relative;
width: 100%;
height: 100%;
margin: 0;
}

#galleryImagePopup .imageBox{
position: absolute;
top: 80px;
left: 0;
}

#galleryImagePopup .imageBox .image{
opacity: 1;
transition: height 1s ease-out, opacity 0.5s ease-out;
-o-transition: height 1s ease-out, opacity 0.5s ease-out;
-moz-transition: height 1s ease-out, opacity 0.5s ease-out;
-webkit-transition: height 1s ease-out, opacity 0.5s ease-out;
}

#galleryImagePopup .imageBox .image.hide{
opacity: 0;
}

#galleryImagePopup .backArrow{
position: absolute;
top: 350px;
left: 5px;
}

#galleryImagePopup .nextArrow{
position: absolute;
top: 350px;
right: 5px;
}

#galleryImagePopupBack, #galleryImagePopupNext{
font-size: 25px;
font-weight: bold;
color: #a9a9a9;
}

#galleryImagePopup .imageFooter{
position: absolute;
left: 0;
right: 0;
bottom: 0;
width: 100%;
padding: 20px;
text-align: center;
color: white;
font-size: 13px;
border-top: 1px solid rgb(60,60,60);

background: rgb(40,40,40);
}

#galleryImagePopupLoad{
position: absolute;
top: 250px;
left: 0px;
right: 0px;
text-align: center;
font-size: 25px;
font-weight: bold;
color: #a9a9a9;
}

#galleryImagePopup  .topBar{
position: absolute;
left: 0;
right: 0;
top: 0;
width: 100%;
height: 40px;
color: #d3d3d3;
padding: 15px 20px;
font-size: 32px;
font-weight: bold;

background: #222222;
border-bottom: 1px solid #1b1b1b;
}

#galleryImagePopup  .exit{
position: absolute;
top: 10px;
right: 10px;
width: 28px;
height: 28px;
color: lightGrey;
cursor: pointer;
font-size: 25px;
text-align: center;
font-weight: bold;
}

#galleryImagePopup  .exit:hover{
background: #dddddd;
color: #777777;
}

#galleryImagePopup  .rating{
position: absolute;
bottom: 80px;
left: 30px;
width: 175px;
color: #d3d3d3;
font-size: 25px;
transition: hopacity 0.2s ease-out;
-o-transition: opacity 0.2s ease-out;
-moz-transition: opacity 0.2s ease-out;
-webkit-transition: opacity 0.2s ease-out;
}

#galleryImagePopup.loading  .rating{
opacity: 0;
}

#galleryImagePopup  .rating .starsBox{
float: left;
width: 125px;
}

#galleryImagePopup  .rating .starsBg{
opacity: 0.5;
}

#galleryImagePopup  .rating .stars{
margin-top: -29px;
overflow: hidden;
}

#galleryImagePopup  .rating .myStars{
margin-top: -29px;
color: red;
cursor: pointer;
}

#galleryImagePopup  .rating .myStars .star{
display: inline;
opacity: 0;
}

#galleryImagePopup  .rating .myStars .star:hover{
opacity: 1;
}


#galleryImagePopup  .rating .rate{
float: right;
font-size: 20px;
margin-top: 5px;
}

#galleryImagePopup  .rating .tip{
position: absolute;
bottom: 45px;
left: 45px;
background: #282828;
box-shadow: 0 0 8px #31a5ce;
padding: 10px 15px;
color: lightGrey;
font-size: 12px;
width: 250px;
border-radius: 5px;
opacity: 0;
transition: hopacity 0.2s ease-out;
-o-transition: opacity 0.2s ease-out;
-moz-transition: opacity 0.2s ease-out;
-webkit-transition: opacity 0.2s ease-out;
}

#galleryImagePopup  .rating .tip.hover{
opacity: 1;
}