/*=============================
	01. Button style
===============================*/
.btn {
    user-select: none;
    -moz-user-select: none;
    background: var(--sjm-secondary-color) none repeat scroll 0 0;
    border: medium none;
    border-radius: 4px;
    color: var(--sjm-white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 0;
    padding: 18px 45px;
    text-align: center;
    text-transform: capitalize;
    touch-action: manipulation;
    transition: all 0.3s ease 0s;
    vertical-align: middle;
    white-space: nowrap;
    font-family: var(--sjm-heading-font-family);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    width: 200%;
    height: 200%;
    top: 110%;
    left: 50%;
    background: var(--sjm-primary-color);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: -1;
}
.btn:hover {
    color: var(--sjm-white);
}
.btn:hover::before {
    top: -40%;
}
.btn-two {
    padding: 10px 25px;
    background: var(--sjm-primary-color);
}
.btn-two::before {
    background: var(--sjm-secondary-color);
}
.breadcrumb > .active {
	color: var(--sjm-primary-color);
}

/* cav-btn */
.cav-btn {
    width: auto; 
    height: 40px;
    line-height: 40px;
    position: fixed;
    bottom: -10%;
    right: 30px;
    font-size: var(--sjm-body-font-size);
    border-radius: 6px;
    z-index: 9999;  
    color: var(--sjm-white);
    text-align: center;
    cursor: pointer;
    background: var(--sjm-primary-color);
    transition: 1s ease;
    border: none;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.cav-btn.open {
  bottom: 30px;     
}
.cav-btn::after {
	position: absolute;
	z-index: -1;
	content: '';
	top: 100%;
	left: 5%;
	height: 10px;
	width: 90%;
	opacity: 1;
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}
.cav-btn:hover {  
	background: var(--sjm-secondary-color);
}
