/*
*  STYLE FOR BUTTON
*
*
*  [Table of contents]
*
*  [&. Content / #key]
*  [Let press Ctrl + f and type of paste the key, then press Enter to search the content ]
*
*  Summary:
*
*
*  1. Button
*  2. Button Image
*  3. Group Button
*  4. Button Icon Absolute
*  n. Responsive
*
*
*/


/*----------  1. Button  ----------*/
    .slz-btn {
        color: #fff;
        height: 45px;
        position: relative;
        line-height: 45px;
        padding: 0 30px;
        font-weight: 700;
        text-align: center;
        letter-spacing: 1px;
        display: inline-block;
        overflow: hidden;
        vertical-align: top;
        position: relative;
        z-index: 1;
        text-transform: uppercase;
        background-color: #26bbec;
        border-radius: 30px;
        -webkit-border-radius: 30px;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .slz-btn:before{
        content: "";
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0.6;
        pointer-events: none;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
        background: -moz-linear-gradient(top, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 100%);
        background: -webkit-linear-gradient(top, rgba(255,255,255,0.6) 0%,rgba(255,255,255,0) 100%);
        background: linear-gradient(to bottom, rgba(255,255,255,0.6) 0%,rgba(255,255,255,0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99ffffff', endColorstr='#00ffffff',GradientType=0 );
    }
    .slz-btn + .slz-btn {
        margin-left: 15px;
    }

    .slz-btn:hover,
    .slz-btn:focus {
        //border: 1px solid;
        background-color: #ffffff;
        background-image: none;
        color: #2b3a58;
        box-shadow: inset 0 0 0 2px #26bbec;
        -webkit-box-shadow: inset 0 0 0 2px #26bbec;
    }
    .slz-btn:hover:before{
        opacity: 0;
    }
    .slz-btn > .btn-icon + .btn-text {
        margin-left: 10px;
    }

    .slz-btn > .btn-text + .btn-icon {
        margin-left: 10px;
    }

    .slz-btn.box-shadow {
        box-shadow: 3px 5px 10px 0px rgba(0, 0, 0, 0.08);
        -webkit-box-shadow: 3px 5px 10px 0px rgba(0, 0, 0, 0.08);
    }

    .slz-btn.box-shadow:hover,
    .slz-btn.box-shadow:focus {
        box-shadow: inset 0 0 0 2px #26bbec,
                    3px 5px 10px 0px rgba(0, 0, 0, 0.08);
        -webkit-box-shadow: inset 0 0 0 2px #26bbec,
                    3px 5px 10px 0px rgba(0, 0, 0, 0.08);
    }

    .slz-btn .icon-box-shadow {
        box-shadow: 3px 5px 10px 0px rgba(0, 0, 0, 0.08);
        -webkit-box-shadow: 3px 5px 10px 0px rgba(0, 0, 0, 0.08);
    }

    .slz-btn .icon-box-shadow:hover,
    .slz-btn .icon-box-shadow:focus {
        box-shadow: inset 0 0 0 2px #26bbec,
                    3px 5px 10px 0px rgba(0, 0, 0, 0.08);
        -webkit-box-shadow: inset 0 0 0 2px #26bbec,
                    3px 5px 10px 0px rgba(0, 0, 0, 0.08);
    }

/*----------  2. Button Image  -----------------*/
    .btn-img {
        width: 200px;
        height: auto;
        padding: 0;
        margin: 0;
        border: 0;
        background-color: transparent !important;
    }

    .btn-img:hover,
    .btn-img:focus {
        border: none;
        background-color: transparent;
    }

    .btn-img:hover img,
    .btn-img:focus img {
        opacity: 0.9;
    }

    .btn-img img {
        width: 100%;
        margin: 0;
    }

    .btn-img .btn-text {
        display: none;
    }

/*----------  3. Group Button  -----------------*/
    .slz-group-btn .slz-btn {
        margin-left: 15px;
    }

    .slz-group-btn .slz-btn:first-child {
        margin-left: 0;
    }

/*----------  4. Button Icon Absolute  ---------*/
    .btn-absolute .btn-text {
        margin-left: 0 !important;
    }

    .btn-absolute .btn-icon {
        position: absolute;
        opacity: 0;
        right: 50%;
        top: 50%;
        border: none;
        font-size: 14px;
        margin-left: 0;
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

    .btn-absolute:hover {
        padding-right: 50px;
    }

    .btn-absolute:hover .btn-icon {
        right: 20px;
        opacity: 1;
    }


/*=====================================
=            n. Responsive            =
=====================================*/

    @media screen and (max-width: 480px) {
        .slz-group-btn .slz-btn,
        .slz-group-btn .slz-btn:first-child {
            margin-left: auto;
            margin-right: auto;
        }

        .slz-group-btn .slz-btn + .slz-btn,
        .slz-btn + .slz-btn {
            margin-top: 15px;
            margin-left: auto;
        }
    }
    
/*=====  End of n. Responsive  ======*/
    