/* 
    Document   : super-button
    Created on : 2013-03-14, 17:50:34
    Author     : Rafał
    Description:
        Purpose of the stylesheet follows.
*/

#button-container{
    position: relative; /*Important, Keeps the CSS3 Shapes in place*/
    margin: 10px 0;
    width: 175px;
    height: 40px;
}
 
#button{
    float: left;
    /*width: 170px;*/
    /*height: 40px;*/
    /*line-height: 40px;*/
    background-color: #ddd;
    padding-left: 12px;
    text-align: left;
     
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
    border-radius:10px;
 
    -moz-box-shadow:0 2px 0 #4c9434;
    -webkit-box-shadow:0 2px 0 #4c9434;
    box-shadow:0 2px 0 #4c9434;
 
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, #60B842),
        color-stop(0.85, #7FD13D)
    );
    background-image: -moz-linear-gradient(
        center bottom,
        #60B842 0%,
        #7FD13D 85%
    );
 
    color:#fff;
    font-family:arial,helvetica,sans-serif;
    /*font-size:17px;*/
    font-weight:bold;
    text-shadow:1px 1px 1px #4c9434;
}
 
#button:hover{
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, #6DD14B),
        color-stop(0.85, #85DB40)
    );
    background-image: -moz-linear-gradient(
        center bottom,
        #6DD14B 0%,
        #85DB40 85%
    );
    box-shadow:0 2px 0 #5EA839;
}
 
#button:active{
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, #6DD14B),
        color-stop(0.85, #85DB40)
    );
    background-image: -moz-linear-gradient(
        center bottom,
        #6DD14B 0%,
        #85DB40 85%
    );
    box-shadow:0 1px 0 #5EA839;
    margin-top: 1px;
}

/*Animations*/
 
.rotateDown{
    -webkit-transform: rotateZ(90deg) translateX(5px);
    -moz-transform: rotateZ(90deg) translateX(5px);
    transform: rotateZ(90deg) translateX(5px);
}
.rotateDownMore{
    -webkit-transform: rotateZ(90deg) translateX(15px);
    -moz-transform: rotateZ(90deg) translateX(15px);
    transform: rotateZ(90deg) translateX(15px);
}
.rotate{
    -webkit-transform: rotateZ(90deg);
    -moz-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
}
.change{
    -webkit-transform: scale(0.4) rotateZ(-180deg);
    -moz-transform: scale(0.4) rotateZ(180deg);
    transform: scale(0.4) rotateZ(180deg);
}
.widen{
    -webkit-transform: scaleY(2) translateX(10px);
    -moz-transform: scaleY(2) translateX(10px);
    transform: scaleY(2) translateX(10px);
}
 
/*Digg Animations*/
 
.skinny{
    -webkit-transform: scaleY(.5) scaleX(4);
    -moz-transform: scaleY(.5) scaleX(4);
    transform: scaleY(.5) scaleX(4);    
}
#arrow-rectangle-handle.donut{
    -webkit-transform: scale(1.5) translateX(-14px);
    -moz-transform: scale(1.5) translateX(-14px);
    transform: scale(1.5) translateX(-14px);
    height: 5px;
    width: 5px;
    border-width: 2.5px;
}
#arrow-triangle.shovel{
    -webkit-transform: rotateZ(-135deg) translateX(8px) translateY(-8px);
    -moz-transform: rotateZ(-135deg) translateX(8px) translateY(-8px);
    transform: rotateZ(-135deg) translateX(8px) translateY(-8px);
    border-color: transparent transparent #44801c #44801c;
    border-radius: 7px;
}
 
/*Email Animations*/
 
#arrow-triangle.emailRotate{
    -webkit-transform: scale(1.34) scaleY(.7) rotateZ(90deg) translateX(2px) translateY(13.9px);
    -moz-transform: scale(1.34) scaleY(.7) rotateZ(90deg) translateX(2px) translateY(13.9px);
    transform: scale(1.34) scaleY(.7) rotateZ(90deg) translateX(2px) translateY(13.9px);
    border-color: transparent transparent transparent #2A4F11;
}
.emailTranslate{
    -webkit-transform: scale(1.5) scaleX(1.2);
    -moz-transform: scale(1.5) scaleX(1.2);
    transform: scale(1.5) scaleX(1.2);
}
 
/*RSS Animations*/
 
#arrow-triangle.rss{
    -webkit-transform: rotateZ(180deg) translateY(20px);
    -moz-transform: rotateZ(180deg) translateY(20px);
    transform: rotateZ(180deg) translateY(20px);
    border-radius: 30px;
    border-width: 10px;
    border-style: double;
    width: 10px;
    height: 10px;
}
.rssDot{
    -webkit-transform: scaleX(.7) scale(.5) translateX(20px);
    -moz-transform: rotateZ(180deg) translateY(20px);
    transform: rotateZ(180deg) translateY(20px);
    border-radius: 30px;
}

/*Shapes and Components*/
 
#arrow-container{
    position: absolute;
    top:0px;
    right: -2px;
    margin: 11px 7px;
    width: 35px;
    height: 20px;
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
#arrow-rectangle{
    float: left;
    margin-top: 5px;
    width: 15px;
    height: 10px;
    background-color: #44801c;
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
#arrow-rectangle-handle{
    float: left;
    margin-top: 5px;
    border-color: #44801c;
    border-style: solid;
    border-width: 5px;
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
#arrow-rectangle-staff{
    float: left;
    margin-top: 5px;
    width: 5px;
    height: 10px;
    background-color: #44801c;
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
#arrow-triangle{
    float: left;
    border-color: transparent transparent transparent #44801c;
    border-style: solid;
    border-width: 10px;
    height: 0px;
    width: 0px;
    -webkit-transition: -webkit-transform 0.2s ease-out;
    -moz-transition: -moz-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
}