
hr{
    border: 0;
    width: 95%;
    height: 1px;
    background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(255,255,255,0.7), rgba(0,0,0,0)); 
    background-image:    -moz-linear-gradient(left, rgba(0,0,0,0), rgba(255,255,255,0.55),rgba(255,255,255,0.7),rgba(255,255,255,0.55), rgba(0,0,0,0)); 
    background-image:     -ms-linear-gradient(left, rgba(0,0,0,0), rgba(255,255,255,0.7), rgba(0,0,0,0)); 
    background-image:      -o-linear-gradient(left, rgba(0,0,0,0), rgba(255,255,255,0.7), rgba(0,0,0,0)); 
}
/********************** Start: Images ******************************/
@media all and (max-width: 460px){
    .scalable{
        width: 130px;
        height: 130px;
    }
}
@media all and (min-width: 461px){
    .scalable{
        width: 210px;
        height: 210px;
    }
}
@media all and (min-width: 590px){
    .scalable{
        width: 250px;
        height: 250px;
    }
}
@media all and (min-width: 760px){
    .scalable{
        width: 220px;
        height: 220px;
    }
}
@media all and (min-width: 1020px){
    .scalable{
        width: 230px;
        height: 230px;
    }
}
@media all and (min-width: 1280px){
    .scalable{
        width: 290px;
        height: 290px;
    }
}
.bsize{
    width: 220px;
    height: 310px;
}
.square{
    overflow: hidden;
}
.circle{ 
    border-radius: 50%;
}
.shadow{
    box-shadow: 0 0 7px #000;
}
/********************** imgZ *********************/
.imgZ{
    overflow: hidden;    
    background: #000;
    position: relative;   
    border: 2px solid #000;
    transition: border 0.5s linear;
    margin: 5px; 
    display: inline-block;
}
.imgZ_back{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    //border-radius: 50%;
}
.imgZ_front{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    opacity: .35;
    transition: opacity 0.4s linear;
    text-align: center;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.imgZ:hover > .imgZ_front{
    cursor: pointer;
    position: relative;
    opacity: 1;    
    //border-radius: 50%;
}
.imgZ:hover{
    border-color: #fff;     
}
.imgZ_back img{
    width: auto;
    height: 100%;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.imgZ_front img{    
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/*********************** img ***********************/
.img{
    max-width: 600px;
    display: inline-block;
    margin: 3px;
}
.img img{
    width: 100%;
}
.img_border{    
    border: 4px solid #fff;
}
/*********************** imgF ***********************/
.imgF{
    overflow: hidden;
    display: inline-block;
    //margin: 10px;
    //border: 1px solid red; 
    padding: 5px 9px 5px 5px;
    
}
.imgF_border{
    overflow: hidden;
}
.imgF img{    
    width: 100%;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/************************ Flipping Box ***********************/
.flip{ 
   // margin: 5px;       
} 
.flip > .flip_front{ 
    position: absolute; 
    transform: rotateY(0deg);
    -webkit-transform: perspective( 600px ) rotateY( 0deg ); 
    transform: perspective( 600px ) rotateY( 0deg ); 
    -webkit-backface-visibility: hidden; 
    backface-visibility: hidden; 
    transition: -webkit-transform .5s linear 0s; 
    transition: transform .5s linear 0s;
} 
.flip > .flip_back{ 
    position: absolute; 
    transform: rotateY(180deg);
    -webkit-transform: perspective( 600px ) rotateY( 180deg ); 
    transform: perspective( 600px ) rotateY( 180deg ); 
    -webkit-backface-visibility: hidden; 
    backface-visibility: hidden; 
    transition: -webkit-transform .5s linear 0s; 
    transition: transform .5s linear 0s; 
}
.flip:hover > .flip_front{ 
    transform: rotateY(-180deg);
    -webkit-transform: perspective( 600px ) rotateY( -180deg ); 
    transform: perspective( 600px ) rotateY( -180deg ); 
} 
.flip:hover > .flip_back{ 
    transform: rotateY(0deg);
    -webkit-transform: perspective( 600px ) rotateY( 0deg ); 
    transform: perspective( 600px ) rotateY( 0deg ); 
}



/************************** Ends: Images ************************/


/************************* Start: LINKS *************************/
a{
    text-decoration: none;
    color: #ffffff;
}
a:hover{
    text-decoration: none;
}
.link{
    text-decoration: none;
    color: #ffffff;
}
.link:hover{
    text-decoration: underline;
}
/************************* Start: Article *********************/

@media all and (max-width: 600px){
    .two_block{
        width: 100%;
    }
}
@media all and (min-width: 601px){
    .two_block{
        width: 48%;
    }
}
.two_block{
    max-width: 800px;
    display: inline-block;
}
.wide_block{
    width: 100%;
    display: inline-block;
} 
@media all and (max-width: 600px){
    .three_block{
        width: 100%;
    }
}
@media all and (min-width: 601px){
    .three_block{
        width: 48%;
    }
}
@media all and (min-width: 960px){
    .three_block{
        width: 33%;
    }
}
.three_block{
    display: inline-block;
}
.wide_block, .two_block, .three_block{
    text-align: center;
    vertical-align: middle;
}
article{
    text-align: center;
}
article .wrapper{
    max-width: 1300px;
    margin: 0 auto;
}
/*************************** bg Color ***************************/
.wblur{
    background: #fff;
    background: rgba(255,255,255,0.5);
}
.bblur{
    background: #000;
    background: rgba(0,0,0,.5);
}
.white{
    background: #fff;
}
.black{
    background: #000;
}
.grey{
    background: #e6e6e6;
}
.wblur, .bblur, .white, .black, .empty-block, .grey{
    width: 100%;
    padding: 20px 0 10px 0;
}
.scroll {
    background: transparent;
}
@media all and (max-width: 480px){
    .scroll{
        height: 340px;
        padding-top: 80px;
    }
}
@media all and (min-width: 481px){
    .scroll{
        height: 350px;
        padding: 10% 4% 0 4%;
    }
}
@media all and (min-width: 600px){
    .scroll{
        height: 450px;
        padding: 60px 4% 0 4%;
    }
}
/************************* Ends: Article ************************/


/************************* Start: AlbumF ************************/
.albumF{
    display: inline-block;
    padding: 6px;
    cursor: pointer;
}
.albumF h3{
    margin: 7% 5px;
}
.albumF img{
    width: 100%;
}
.albumF_link{
    width: 100%;    
    position: absolute;
    bottom: 0px;
    height: 50%;
    background: rgba(0,0,0,0.7);    
}
.albumF_link span{
    width: 48%;
    display: inline-block;
    font-size: 20px;
}
/************************* Start: Album_Info ********************/
#album_cover{
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
    //box-shadow: 0 0 3px #000;
    //background: rgba(0,0,0,.6);
}
#album_cover img{
    width: 99%;
}
#album_button{
    width: 100%;
    //border: 1px solid red;
}
#album_button td{
    width: 50%;
    height: 100%;
    border-width: 0px;
    background: rgba(0,0,0,.55);
    transition: background .5s;
    height: 90px;
}
#album_button td:hover{
    background: rgba(0,0,0,.4);
}
#album_button img{
    width: 60%;
}
/************************* Start: book **************************/
.book{
    //border: 1px solid red;
    padding: 5px;
    display: inline-block;
}
.book h3{
    padding: 5px 0 5px 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    text-align: center;
}
/************************* Ends: book ***************************/

/************************* Start: Instrument ***************************/
.instrument{
    display: inline-block;
    padding: 5px;
}
.instrument .flip_back, .instrument .flip_front{
    border: 0px solid #000;
    background: #000;
}
.instrument img{
    width: 100%;
    height: 100%;
}
/************************* Ends: Instrument ****************************/
.lb-container{
    overflow: hidden;
}
/************************* Rotate **************************************/
.rotate{
    //-webkit-transition-duration: 0.9s;
    -moz-transition-duration: 0.9s;
    -o-transition-duration: 0.9s;
    -ms-transition-duration: 0.9s;
    transition-duration: 0.9s;     
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;     
    //overflow:hidden; 
}   
.rotate:hover  
{
    //-webkit-transform:rotate(0deg);
    -moz-transform:rotate(0deg);
    -o-transform:rotate(0deg);
    -ms-transform:rotate(0deg);
}
.rotate_l{
    -webkit-transform:rotate(-2deg);
    -moz-transform:rotate(-2deg);
    -o-transform:rotate(-2deg);
    -ms-transform:rotate(-2deg);
}
.rotate_r{
    -webkit-transform:rotate(2deg);
    -moz-transform:rotate(2deg);
    -o-transform:rotate(2deg);
    -ms-transform:rotate(2deg);
}
/************************* Rotate Ends *********************************/
.poem{
    width: auto;
    text-align: center;
    margin: 7%;
    position: relative;
}
/********************** Downloader ****************************/
.downloader{
    width: 110px;
    height: 110px;
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
    border: 1px solid #fff;
    transition: border .4s, box-shadow .4s;
    display: inline-block;
    margin: 5px;
}
.d_img, .d_cap{
    width: 100%;
}
.d_img{
    height: 55%;
}
.d_img img{
    height: 100%;
    width: 100%;
}
.d_cap{
    height: 45%;
    background: #000;
    transition: background .5s;
}
.d_cap img{
    width: 100%;
    height: auto;
}
.downloader:hover > .d_cap{
    background: #ff0e5d;
}
.downloader:hover{
    box-shadow: 0 0 15px #ff0e5d;
    border: 1px solid #ff0e5d;
    cursor: pointer;
}
/******************************** Buttons ***************************/
.pink_button{
    color: #fff;
    background-color: #000;
    transition: background-color 0.3s;
    box-shadow: 0 0 2px #000;
}
.pink_button:hover{
    color: #fff;
    background-color: #fe61e2;
    box-shadow: 0 0 2px #fe61e2;
}
.button_container{
    width: 100%;
    height: auto;
    //border: 1px solid blue;
    display: block;
    float: left;    
    padding: 10px;
}
.button_wrapper{
    display: inline-block;
    margin: 10px 30px 10px 30px;
}
.button{
    cursor: pointer;
    text-align: center;
    padding: 6px 17px 6px 17px; ;
}
.img_link{
    height: 33px;
    margin: 5px;
    padding: 0 5px 0 5px;
    display: inline-block;
    border: 1px solid #b5b5b5;
    background: transparent;
    transition: background .7s;
}
.img_link img{
    width: 100%;
}
.img_link:hover{
    background: #fe61e2;
    border: 1px solid transparent;
}

.designer{
    width: 100px;
    height: 35px; 
    border: 1px solid #b5b5b5;
    border-radius: 4px;
    display: inline-block;
    transition: 
                width .6s, 
                border-radius .7s,
                background .6s;
    overflow: hidden;
}
.designer img{
    height: 100%;
    float: left;
}
.designer:hover{
    width: 140px;
    background: #fff;    
    border-radius: 25px;
}
.audiojs{
    display: none;
}
.v_middle{
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); 
}
.social_link{
    width: 60px;
    height: 60px;
    background: #848484;
    border-radius: 50%;
    box-shadow: 0 0 2px #000;
    overflow: hidden;
    transition: background .5s, box-shadow .4s;
    display: inline-block;
    margin: 5px;
}
.social_link img{
    width: 100%;
    height: 100%;
}
.social_link:hover{
    background: #fe61e2;
    box-shadow: 0 0 12px #fe61e2;
}