/*
*  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 {
        position: relative;
        color: #323337;
        font-size: 12px;
        font-weight: 500;
        min-width: 200px;
        height: 60px;
        padding: 16px 40px;
        text-align: center;
        letter-spacing: 1px;
        display: inline-block;
        vertical-align: top;
        white-space: nowrap;
        border: 1px solid #e1e4e6;
        text-transform: uppercase;
        background-color: transparent;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .slz-btn:hover {
        background-color: #323337;
        color: #fff;
        border-color: #323337;
    }

    .slz-btn:after, .slz-btn:before {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background-color: #fff;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .slz-btn:before {
        left: 10px;
        top: 7px;
    }

    .slz-btn:after {
        right: 10px;
        bottom: 7px;
    }

    .slz-btn:hover:before, .slz-btn:hover:after {
        width: 50%;
    }

    .slz-btn.btn-absolute:before, 
    .slz-btn.btn-absolute:after,
    .slz-btn.btn-img:before,
    .slz-btn.btn-img:after {
        display: none;
    }


    .slz-btn .btn-text {
        display: inline-block;
        vertical-align: middle;
    }

    .slz-btn > .btn-icon + .btn-text {
        margin-left: 10px;
    }

    .slz-btn > .btn-text + .btn-icon {
        margin-left: 10px;
    }

    .slz-btn.box-shadow {
        border-color: transparent;
        box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.08);
        -webkit-box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.08);
    }

    .slz-btn .icon-box-shadow {
        box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.08);
        -webkit-box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.08);
    }

/*----------  2. Button Image  -----------------*/

    .slz-btn + .slz-btn {
        margin-left: 15px;
    }

    .slz-btn.btn-img {
        width: 200px;
        height: auto;
        padding: 0;
        border: 0;
        background-color: transparent;
    }
    
    .slz-btn.btn-img:hover,
    .slz-btn.btn-img:focus {
        border: none;
        background-color: transparent;
    }

    .btn-img:hover img {
        opacity: 0.8;
    }

    .btn-img img {
        width: 100%;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .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  ---------*/
    
    .slz-btn.btn-absolute {
        border: none;
        padding: 0;
        height: auto;
        min-width: auto;
    }


    .slz-btn.btn-absolute:hover {
        color: #323337;
    }

    .slz-btn.btn-absolute {
        background-color: transparent;
    }

    .slz-btn.btn-absolute.box-shadow {
        box-shadow: none;
    }

    .slz-btn.btn-absolute.box-shadow .btn-text {
        text-shadow: 0px -2px 2px rgba(160, 159, 159, 0.65);
        -webkit-text-shadow: 0px -2px 2px rgba(160, 159, 159, 0.65);
    }

    .slz-btn.btn-absolute .btn-text {
        position: relative;
        z-index: 1;
    }

    .slz-btn.btn-absolute .btn-text::after {
        content: "";
        position: absolute;
        left: -1px;
        bottom: 9px;
        z-index: -1;
        height: 0;
        width: 100%;
        background-color: #c6dfdf;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
    
    .slz-btn .btn-icon {
        font-size: 30px;
        display: inline-block;
        vertical-align: middle;
    }

    .slz-btn.btn-absolute:hover .btn-text::after {
        height: 5px;
    }

/*=====================================
=            n. Responsive            =
=====================================*/

    @media screen and (max-width: 480px) {

        .slz-btn.btn-img {
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        .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;
        }
    }
    
/*=====  End of n. Responsive  ======*/
    