/* bootstrap variables */
.btn {
    --bs-btn-padding-x: 1.25rem;
    --bs-btn-padding-y: 10px;
    --bs-btn-border-radius: 2px;
    --bs-btn-font-size: 14px;

	text-decoration: none !important;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: .3rem;
    font-weight: 600;
}

.card-link::after,
.btn::after {
    content: '\f061';
    font-family: var(--w3-font-family-icons);
    font-weight: 400;
    margin-left: .5rem;
    vertical-align: middle;
}

.btn.no-icon::after {
    display: none;
}

.btn-primary {
    --bs-btn-color: var(--w3-petrol);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: var(--w3-petrol);
    --bs-btn-hover-color: var(--w3-white);
    --bs-btn-hover-bg: var(--w3-petrol);
    --bs-btn-hover-border-color: var(--w3-petrol);
    --bs-btn-focus-shadow-rgb: 125, 137, 133;
    --bs-btn-active-color: var(--w3-white);
    --bs-btn-active-bg: var(--w3-petrol);
    --bs-btn-active-border-color: var(--w3-petrol);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-secondary {
    --bs-btn-color: var(--w3-white);
    --bs-btn-bg: var(--w3-petrol);
    --bs-btn-border-color: var(--w3-petrol);
    --bs-btn-hover-color: var(--w3-white);
    --bs-btn-hover-bg: var(--w3-petrol-dark);
    --bs-btn-hover-border-color: var(--w3-petrol-dark);
    --bs-btn-focus-shadow-rgb: 130, 138, 145;
    --bs-btn-active-color: var(--w3-body-bg);
    --bs-btn-active-bg: var(--w3-petrol);
    --bs-btn-active-border-color: var(--w3-petrol);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-white {
    --bs-btn-bg: var(--w3-white);
    --bs-btn-color: var(--w3-primary-color);
    --bs-btn-hover-color: var(--w3-white);
    --bs-btn-hover-bg: var(--w3-primary-color);
    --bs-btn-focus-shadow-rgb: 130, 138, 145;
    --bs-btn-active-color: var(--w3-white);
    --bs-btn-active-bg: var(--w3-primary-color);
    --bs-btn-active-border-color: var(--w3-white);
    --bs-btn-hover-border-color: var(--w3-white);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-outline-white {
    --bs-btn-color: var(--w3-white);
    --bs-btn-border-color: var(--w3-white);
    --bs-btn-hover-color: var(--w3-primary-color);
    --bs-btn-hover-bg: var(--w3-white);
    --bs-btn-hover-border-color: var(--w3-white);
    --bs-btn-focus-shadow-rgb: 220, 53, 69;
    --bs-btn-active-color: var(--w3-primary-color);
    --bs-btn-active-bg: var(--w3-white);
    --bs-btn-active-border-color: var(--w3-white);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--w3-white);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--w3-white);
    --bs-gradient: none;
}

/* .btn::before {
    content: '\f178';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    margin-right: .5rem;
    vertical-align: middle;
} */

.w3media-buttons-wrapper {
	display: flex;
}

.align-inline {
	display: inline-flex;
}

.align-left {
	justify-content: flex-start;
}

.align-center {
	justify-content: center;
}

.align-right {
	justify-content: flex-end;
}


/* FAQ custom btn */
.form-toggle .vc_toggle_title i,
.form-toggle .vc_toggle_title::after {
    display: none;
}

.form-toggle .vc_toggle_title h4 {
    font-family: var(--w3-font-family-text) !important;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    border: 1px solid var(--w3-petrol);
    border-radius: 2px;
    padding: 10px 1.25rem;
    background-color: var(--w3-petrol);
    color: var(--w3-white);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: left;
    text-decoration: none;
    vertical-align: middle;
    margin-bottom: 1rem;
}

.form-toggle .vc_toggle_title h4:hover {
    background-color: var(--w3-petrol-dark);
    border-color: var(--w3-petrol-dark);
    color: var(--w3-white);
}