/*
Template Name: Button css
Version:1.0
*/


/*COMMON BUTTON STYLE*/


/*
==========================
PRIMARY GRADIENT BUTTON
*/

a.gradient__btn,
.qomodo-blog-post-comment .btn-comments, 
button.gradient__btn{
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 19px;
	color: #fff;
	padding: 17px 36px;
	display: inline-block;
	border-radius: 5px;
	border: none;

    background: linear-gradient(to right, #9114C3, #431EFF);
    
	position: relative;
	z-index: 2;
	-webkit-transition: all .6s;
	-o-transition: all .6s;
	transition: all .6s;
}

a.gradient__btn:before,
.qomodo-blog-post-comment .btn-comments:before,
button.gradient__btn:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 0;
    background: #fff;
    right: 0;
    top: 0;
    z-index: -1;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
    border-radius: 5px;
}

a.gradient__btn:hover:before, 
.qomodo-blog-post-comment .btn-comments:hover:before,
button.gradient__btn:hover:before{
	width: 100%;
	-webkit-transition: all .6s;
	-o-transition: all .6s;
	transition: all .6s;
    left: 0;
    right: auto;
}

a.gradient__btn:hover, 
.qomodo-blog-post-comment .btn-comments:hover,
button.gradient__btn:hover{
	color: #FF5E63;
	-webkit-box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.1);
	        box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.1);
}

.full_btn{
    width: 100%;
    text-align: center;
}

a.sign__btn, 
button.sign__btn{
	color: #181C21;
	font-size: 16px;
	background: none;
    border: none;
    font-weight: 500;
	text-transform: capitalize;
}


/*
====================
GO TO TOP BUTTON
*/


a.go_top {
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid #fff;
    padding: 7px 18px;
    border-radius: 30px;
}

a.go_top i {
    padding-left: 5px;
}

a.go_top {
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid #fff;
    padding: 7px 18px;
    border-radius: 30px;
}

a.go_top i {
    padding-left: 5px;
}

/*
====================
PRICE BUTTON
*/

a.price__btn {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 19px;
    color: #FF5E63;
    padding: 17px 30px;
    display: inline-block;
    border-radius: 5px;
    border: 1px solid #FF5E63;

    position: relative;
    z-index: 2;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

a.price__btn:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 0;
    top: 0;
    right: 0;
    background: linear-gradient(to right, #9114C3, #431EFF);
    z-index: -1;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
    border-radius: 5px;
}

a.price__btn:hover:before{
	width: 100%;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
    left: 0;
    right: auto;
}

a.price__btn:hover{
	color: #fff;
	border-color: transparent;
}

a.full__btn, 
button.full__btn{
	width: 100%;
	text-align: center;
}


a.readmore__btn {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

a.readmore__btn:before,
a.readmore__btn:after {
    position: absolute;
    content: "";
    height: 1px;
    width: 100%;
    background: #181C21;
    bottom: 0;
    left: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

a.readmore__btn:hover:before{
    width: 0;
    right: 0;
    left: auto;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}
a.readmore__btn:after{
    background:#FF153C;
    width:0;
    left: auto;
    right: 0;
    transition-delay: 0.2s;
}
a.readmore__btn:hover:after {
    width:100%;
    right: auto;
    left: 0;
    opacity: 1;
}

.simple_btn{
    border: none;
    background: none;
}

/*Button2*/

button.cbtn2,
a.cbtn2{
    display: inline-block;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #FF5E63;
    font-size: 16px;
    text-transform: uppercase;
    position: relative;
    padding: 12px 36px;
    z-index: 2;
    font-weight: 600;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s
}

button.cbtn2:after,
a.cbtn2:after{
    position: absolute;
    content:"";
    height: 100%;
    width: 0;
    background: linear-gradient(to right, #9114C3, #431EFF);
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s
}

button.cbtn2:hover:after,
a.cbtn2:hover:after{
   width: 100%;
   -webkit-transition: all .6s;
   -o-transition: all .6s;
   transition: all .6s
}


button.cbtn2:hover,
a.cbtn2:hover{
   color: #fff;
   -webkit-transition: all .6s;
   -o-transition: all .6s;
   transition: all .6s;
}


.btn__group a:nth-child(2), 
.btn__group button:nth-child(2) {
    margin-left: 15px;
}