/*------------------------
	Button default 
--------------------------*/
.btn-primary.focus,
.btn-primary:focus {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

button:focus,
.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

/*------------------------
	Button Learn more
--------------------------*/
.btn-custom {
    position: relative;
    width: 160px;
    display: inline-block;
    height: 48px;
    color: #2c89a0;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0px 1px 21px 0px rgba(0, 0, 0, 0.162);
    padding: 8px 21px;
    z-index: 2;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
}

.btn-custom:after {
    background:#2c89a0;
    width: 100%;
    height: 0%;
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    transform: scale(1);
    z-index: 1;
    border-radius: 4px;
    transition: 0.3s ease-in-out;
    transform: scale(1);
}

.btn-custom:before {
    background: #2c89a0;
    width: 100%;
    height: 0%;
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    transform: scale(1);
    z-index: 1;
    border-radius: 4px;
    transition: 0.3s ease-in-out;
    transform: scale(1);
}

.btn-custom:hover::after {
    height: 100%;
    transform-origin: 0;
}

.btn-custom:hover::before {
    height: 100%;
    transform-origin: 0;
}

.btn-custom i {
    margin-right: 10px;
    position: relative;
    z-index: 2;
}

.btn-custom span {
    position: relative;
    z-index: 2;
}

.btn-custom:hover {
    color: #fff;
}

.btn-login-active {
    color: #fff;
    background: #2c89a0;
    box-shadow: 0px 1px 21px 0px rgba(0, 0, 0, 0.162) !important;
}