/** 
 * UI Buttons CSS
 * 
 * CSS rules for different buttons
 * 
 */
/* default UI Button */
.ui-button {
    display: inline-block;
    padding: 6px 16px;
    min-width: 140px;
    -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    
    /* IE7 hack to mimic inline-block */
    *display: inline;
    *zoom: 1;
}
.ui-button,
.ui-button:hover,
.ui-button:focus,
.ui-button:active,
.ui-button a:hover,
.ui-button a:focus,
.ui-button a:active {
    text-decoration: none;
}

.ie7 .ui-button {
    border:none;
}

.ie7 .ui-button:hover {
    border:none;
}

/* Call-To-Action UI Button */
.ui-buttonCta {
    /* see theme.css */
}
.ie8 .ui-buttonCta {
    min-width: 106px;
}
/* Don't-Click-Here UI Button */
.ui-buttonDch {
    /* see theme.css */
}
/* Delete UI Button */
.ui-buttonDel {
    /* see theme.css */
}
/* Cart button on product detail page */
.ui-buttonCart {
    display: block;
    width: 100%;
    min-width: 1%; /* overwrite default min-width from .ui-button */
    padding: 0;
    font-size: 14px; /* <= IE8 */
    font-size: 1.4rem;
    height: 40px;
    line-height: 25px;
}
.ui-buttonCart .cartTxt {
    height: 100%;
    text-align: left;
}

/* Scroll-top button */
.ui-buttonScrollTop {
    position: fixed;
    bottom: 30px;
    padding: 3px 7px;
    z-index: 1000;
}

/* buttons for slideshow */
.ui-buttonPrevSlide,
.ui-buttonNextSlide {
    padding: 0;
}
.ui-buttonPrevSlide {}
.ui-buttonNextSlide {}

/* no rounded border on left or right side */
.ui-buttonFit-l {
       -webkit-border-top-left-radius: 0 !important;
    -webkit-border-bottom-left-radius: 0 !important;
           -moz-border-radius-topLeft: 0 !important;
        -moz-border-radius-bottomLeft: 0 !important;
               border-top-left-radius: 0 !important;
            border-bottom-left-radius: 0 !important;
}
.ui-buttonFit-r {
       -webkit-border-top-right-radius: 0 !important;
    -webkit-border-bottom-right-radius: 0 !important;
           -moz-border-radius-topRight: 0 !important;
        -moz-border-radius-bottomRight: 0 !important;
               border-top-right-radius: 0 !important;
            border-bottom-right-radius: 0 !important;
}
