@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,500;1,600;1,700;1,800;1,900&family=Oswald:wght@200;300;400;500;600;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');



/* variables */
:root
{
    --primary-color: rgb(0, 143, 156);
    --secondary-color: #E34186;
    --secondary-color-2: rgb(28, 189, 116);
    --field-text-color: rgb(24,24,24);
    --text-color: rgb(88, 88,88);
    --field-color: rgb(244,244,244);
}
body
{
    font-family: "Jost";
    width: 100%;
    position: relative;
    min-height: 100vh;
    background-image: url(../images/bg.jpg);
    width: 100%;
    background-size: cover;
    padding: 40px 50px;
    padding-bottom: 100px;


    
}
.logo
{
    display: flex;
    align-items: center;
    height: auto;
}
.logo-icon
{
    width: auto;
}

.logo-text
{
    font-size: 37px;
    font-family: "Oswald";
    color: var(--field-text-color);
    font-weight: bold;
    margin-left: 3px;
}
main
{
    position: relative;
    height: 100%;
    min-height: 500px;
}

.step-type
{
    position: absolute;
    bottom: 0;
    left: 0;
}
.step-type-single
{
    text-align: center;
}
.step-type-single .circle
{
    border-radius: 50%;
    background-color: rgb(155, 160, 164);
    width: 19px;
    height: 19px;
    margin: 0 auto;
    margin-bottom: 10px;
    margin-top: 5px;
    transition: 0.3s;
}
.step-type-single .step-text
{
    color: rgb(155, 160, 164);
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    line-height: normal;
    transition: 0.3s;
}
.step-type-single::after
{
    display: block;
    content: "";
    background-color: rgb(155, 160, 164);
    margin: 10px auto;
    width: 3px;
    height: 37px;
    transition: 0.3s;
}
.step-type-single.no-line::after  
{
    display: none;
}
.step-type-single.active .circle
{
    background-color: var(--primary-color);
}
.step-type-single.active .step-text
{
    color: var(--primary-color);
}
.step-type-single.active::after
{
    background-color: var(--primary-color);
}
.main-content
{
    height: auto;
    width: 88%;
    margin: 0 auto;
    position: relative;
    margin-top: 45px;

}
.content-inner
{
    background-color: rgb(255,255,255);
 
}
.step-bar
{
    position: absolute;
    left: 0;
    bottom: -40px;
    width: auto;
    width: 100%;
      
}
.step-bar-inner
{
    height: 23px;
    width: 35%;
    background-color: rgb(255,255,255);
    border-radius: 50px;
}
.step-bar-inner .step-bar-move
{
    background-color: var(--primary-color);
    width: 0%;
    border-radius: inherit;
    height: inherit;
    text-align: right;
    font-size: 14px;
    font-family: "Oswald";
    padding-right: 15px;
    line-height: 23px;
    transition: 0.5s;
    color: rgb(255, 255, 255); 
}
.side-area
{
    width: 100%;
    height: 100%;
}
.side-area img
{
    width: 100%;
    height: -webkit-fill-available;
}
.steps-icon
{
    position: absolute;
    top: 40px;
    right: 50px;
    width: auto;
}
.steps-icon img
{
    width: 100%;
}
.wrapper
{
    width: 64%;
    margin-left: 100px;
    height: 100%;
    display: grid;
    align-content: center;
    padding: 70px 0px;
}
.form-text .main-heading
{
    font-size: 38px;
    color: var(--field-text-color);
    font-weight: bold;
}
.form-text .main-text
{
    font-size: 18px;
    font-family: "Roboto";
    color: var(--text-color); 
}
.steps-inner
{
    margin-top: 30px;
}
.radio-field
{
    width: 100%;
    background-color: var(--field-color);
    min-height: 73px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding-left: 50px;
    margin-bottom: 14px;
    border: solid 2px transparent;
}
.radio-field input, .radio-select-single input
{
    -webkit-appearance: none;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: 0.3s;
}
.radio-field label, .radio-select-single label
{
    font-size: 18px;
    color: var(--field-text-color);
    font-weight: bold;
    margin-left: 12px;   
}
.radio-field input:checked, .radio-select-single input:checked
{
    background-color: var(--secondary-color);
}
.checked
{
    border-color: var(--secondary-color);
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 3px 35px 0px rgba(0, 0, 0, 0.14);
    transition: 0.3s;
}
.next-prev
{
    margin-top: 50px;
    width: 100%;
    display: flex;
    height: 65px;  
}
.next-prev .inner
{
    background-color: #5896D4;
    display: flex;
    width: 78%;
    border-radius: 50px;
    height: 100%;

}
#step1 .next-prev button
{
    width: 100% !important;

}
#step5 .next-prev
{
    background-color: #5896D4;
    border-radius: 50px;
}
.next-prev button
{
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}
.next-prev .prev
{
    color: rgb(255,255,255);
    width: 35%;
    border: 0;
    background-color: transparent;
}
.next-prev .next, .next-prev .apply
{
    width: -webkit-fill-available;
    background-color: var(--secondary-color);
    height: 100%;
    border-radius: 50px;
    border: solid 2px transparent;
}
.next-prev .skip
{
    color: var(--primary-color);
    text-decoration: underline;
    background: transparent;
    width: 22%;
    border: 0;
    text-align: right;


}
.text-field, .select-field
{
    width: 100%;
    min-height: 73px;
    /* background-color: var(--field-color); */
    border-radius: 50px;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.bottom-line
{
    border-bottom: solid 2px var(--field-color);
    margin-bottom: 20px;
}

.text-field input, .select-field select
{

    background-color: var(--field-color);
    width: 100%;
    height: 100%;
    border: solid 2px transparent;
    border-radius: inherit;
    color: var(--text-color);
    padding-left: calc(35px + 25px);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}
.text-field i, .select-field i
{
    font-size: 16px;
    color: var(--secondary-color-2);
    position: relative;
    z-index: 10;
    pointer-events: none;
    margin-left: 35px;
    transition: 0.3s;
}

.select-field select
{
    -webkit-appearance: none;
    cursor: pointer;
    padding-left: 35px;
}
.text-field.p-custom input
{
    padding-left: 35px;
}
.select-field select+span::after
{
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    color: var(--secondary-color-2); 
    position: absolute;
    top: 35%;
    right: 25px;
    transition: 0.3s;
    pointer-events: none;
}
.text-field input:focus, .select-field select:focus
{
    outline: none;
    border-color: var(--secondary-color);
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 3px 35px 0px rgba(0, 0, 0, 0.14);
}
.text-field input:focus+i, .select-field select:focus+i
{
    color: var(--secondary-color);
}
.select-field select:focus+span::after
{
    color: var(--secondary-color);
}
.radio-field-2
{
    display: flex;
    align-content: center;
}
.radio-single
{
    display: flex;
    align-items: center;
    width: 15%;
}
.radio-single input
{
    -webkit-appearance: none;
    border: solid 2px rgb(201, 210, 228);
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    width: 21px;
    height: 21px;
    cursor: pointer;
    position: relative;
    transition: 0.3S;
}
.radio-single input:checked::before
{
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 9px;
    color: rgb(255, 255, 255);
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    top: 10%;
    margin: 0 auto;
    width: 13px;
    border-radius: 50%;
    height: 13px;
    background-color: var(--secondary-color-2);

}
.radio-single input:checked
{

    transition: 0.3s;

}

.radio-single label
{
    font-size: 18px;
    color: var(--field-text-color);
    font-weight: bold;
    margin-left: 6px;
}
.field-heading
{
    font-size: 20px;
    color: var(--field-text-color);  
    font-weight: bold;
}
.radio-select
{
    border-radius: 30px;
    background-color: var(--field-color);
    min-height: 100px;
    margin-top: 20px;
    overflow: hidden;
}
.radio-heading
{
    font-size: 18px;
    color: var(--field-text-color);
    font-weight: bold;
    background-color: rgb(250, 250, 250);
    min-height: 55px;
    line-height: 55px;
    padding-left: 35px;
}
.radio-select-inner
{

    padding: 25px 25px;
    display: flex;
    flex-wrap: wrap;
}
.radio-select-single
{
    display: flex;
    width: 33.3333%;
    align-items: center;
    margin-bottom: 20px;
}
.radio-select-single label
{
    font-size: 16px;
    font-weight: 500;
}  
.residence-single
{
    width: 100%;
    height: 150px;
    position: relative;
    margin-top: 20px;
    text-align: center;
    display: grid;
    align-content: center;
    justify-content: center;
}
.residence-single input
{
    -webkit-appearance: none;
    border-radius: 20px;
    border: solid 2px transparent;
    background-color: var(--field-color);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    transition: 0.3s;
}
.residence-single img , .residence-single label
{
    position: relative;
    z-index: 100;
    pointer-events: none;
}
.residence-single label
{
    font-size: 16px;
    color: var(--field-text-color);
    font-weight: bold;
    margin-top: 15px;
      
}
.residence-single input:checked
{
    border-color: var(--secondary-color);
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 3px 35px 0px rgba(0, 0, 0, 0.14);

}
.profile
{
    border-radius: 20px;
    background-color: var(--field-color);
    width: 100%;
    min-height: 160px;
    height: 100%;
    position: relative;
}
.profile .profile-img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.profile label
{
    background-color: rgb(255, 255, 255);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 15px;
    text-align: center;
    display: grid;
    place-content: center;
}
.profile label img
{
    pointer-events: none;
    width: auto;
}
.profile label input[type=file]
{
    display: none;
}
::-webkit-calendar-picker-indicator
{
    display: none;
}  
#step5 .radio-field-2 .radio-single
{
    width: 50%;
}
.gender
{
    font-size: 15px;
    font-weight: bold;
    color: var(--field-text-color);
    margin-bottom: 20px;
}
.file span
{
    font-size: 15px;
    color: rgb(135, 135, 135);
}

.file .file-inner
{
    background-color: rgb(77, 77, 224);
    width: 155px;
    height: 52px;
    border-radius: 50px;
    margin-top: 5px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    margin-top: 15px;
}
.file .file-inner span
{
    font-size: 18px;
    color: rgb(255, 255, 255);
    font-weight: 500; 
}
.file .file-inner i
{
    margin-left: 8px;
}
.file label[for=file] input
{
    display: none;
}  




















.thankyou-page .logo
{
    justify-content: center;
    margin-top: 60px;
}
.thankyou-page .logo-icon
{
    width: 55px;
    margin-right: 10px;
}
.thankyou-page .logo .logo-icon img
{
    width: 100%;
}
.thankyou-page .logo-text
{
    font-size: 65px;
}
.thankyou-page .main-inner
{
    background-image: url(../images/thankyou-bg.png) !important;
    background-color: var(--text-color-hover);

}
.thankyou-page article
{
    text-align: center;
    margin-top: 80px;
}
.thankyou-page article h1
{
        font-size: 75px;
        font-weight: bold;
        text-transform: uppercase; 
}
.thankyou-page article h1 span
{
    display: block;
    font-size: 80px;
    font-weight: 900;
    color: var(--primary-color);
}
.thankyou-page article span
{
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 500;
}
.thankyou-page article p
{
    font-size: 18px;
    font-family: "Myriad Pro";
    color: var(--secondary--text-color);
    margin: 0 auto;
    margin-top: 45px;
    width: 39%;
}
.social-media
{
    text-align: center;
    margin: 40px auto;
    background-color: var(--text-color-hover);
    width: 30%;
    padding: 6px 10px;
}
.social-media a
{
    border: solid 1px rgb(244, 244, 244);
    border-radius: 5px;
    background-color: transparent;
    text-decoration: none;
    display: inline-block;
    color: var(--secondary--text-color);
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
}
.social-media a i
{
    margin-right: 10px;
    font-size: 20px;
}
.back-home
{
    width: 188px;
    height: 63px;
    margin: 0 auto;
}
.back-home a
{
    background-color: var(--primary-color);
    border-radius: 50px;
    color: var(--text-color-hover);
    width: 100%;
    height: 100%;
    line-height: 63px;
    display: block;
    text-decoration: none;
    text-align: center;
    font-size: 17px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    border: 0;

}







#sub img
{
    width: 60px;
}

.highlight
{
    border-top: solid 3px var(--primary-color) !important;
    border-bottom: solid 3px var(--primary-color) !important;

}













#error
{
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 20;
}



.invalid
{
  border: solid 2px #ff4444 !important;
  position: relative;
}

/* theme default button */
.button-example .btn,
.button-example .site-button,
.button-example .site-button-link{
	margin:0 5px 10px 0;
}

/* Bootstrap button */
.btn {
    -moz-user-select: none;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 4px;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    padding: 8px 16px;
    text-align: center;
    transition: all 0.2s ease-in-out 0s;
    vertical-align: middle;
    white-space: nowrap;
}
.btn-success {
    background-color: #5cb85c;
    border-color: #5cb85c;
    color: #ffffff;
}
.btn-primary {
    background-color: #0275d8;
    border-color: #0275d8;
    color: #ffffff;
}
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover{
	background-color: #025aa5;
    border-color: #01549b;
}
.btn-info {
    background-color: #5bc0de;
    border-color: #5bc0de;
    color: #ffffff;
}
.btn-danger {
    background-color: #d9534f;
    border-color: #d9534f;
    color: #ffffff;
}
.btn-secondary {
    background-color: #ffffff;
    border-color: #cccccc;
    color: #292b2c;
}
/* Outline */
.btn-outline-danger {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    border-color: #d9534f;
    color: #d9534f;
}
.btn-outline-primary {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    border-color: #0275d8;
    color: #0275d8;
}
.btn-outline-secondary {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    border-color: #cccccc;
    color: #cccccc;
}
.btn-outline-success {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    border-color: #5cb85c;
    color: #5cb85c;
}
.btn-outline-info {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    border-color: #5bc0de;
    color: #5bc0de;
}
.btn-outline-warning {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    border-color: #f0ad4e;
    color: #f0ad4e;
}
/* Outline Hover */
.btn-outline-primary:hover {
    background-color: hsl(208, 98%, 43%);
    border-color: hsl(208, 98%, 43%);
    color: hsl(0, 0%, 100%);
}
.btn-outline-secondary:hover {
    background-color: hsl(0, 0%, 80%);
    border-color: hsl(0, 0%, 80%);
    color: hsl(0, 0%, 100%);
}
.btn-outline-success:hover {
    background-color: hsl(120, 39%, 54%);
    border-color: hsl(120, 39%, 54%);
    color: hsl(0, 0%, 100%);
}
.btn-outline-info:hover {
    background-color: hsl(194, 66%, 61%);
    border-color: hsl(194, 66%, 61%);
    color: hsl(0, 0%, 100%);
}
.btn-outline-warning:hover {
    background-color: hsl(35, 84%, 62%);
    border-color: hsl(35, 84%, 62%);
    color: hsl(0, 0%, 100%);
}
.btn-outline-danger:hover {
    background-color: hsl(2, 64%, 58%);
    border-color: hsl(2, 64%, 58%);
    color: hsl(0, 0%, 100%);
}
/* Bootstrap Btn Size */
.btn-group-lg > .btn, 
.btn-lg {
    border-radius:4px;
    font-size:20px;
    padding: 12px 24px;
}
.btn-group-sm > 
.btn, .btn-sm {
    border-radius: 3px;
    font-size: 12px;
    padding: 4px 8px;
}
.site-button,
.site-button-secondry {
    color: #fff;
    padding: 10px 20px;
    display: inline-block;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    outline: none;
    border-width: 0;
    border-style: solid;
    border-color: transparent;
    line-height: 1.42857;
	border-radius: 3px;
	font-weight: 600;
	text-align:center;
}
.site-button {
    background-color: #E34186;
}
.site-button:active,
.site-button:hover,
.site-button:focus,
.active > .site-button {
    background-color: #5896D4;
    color: #fff;
}
.site-button-secondry {
    background-color: #282A3C;
}
.site-button-secondry:active,
.site-button-secondry:hover,
.site-button-secondry:focus,
.active > .site-button-secondry {
    background-color: #3c3e4e;
    color: #fff;
}
/* button text uppercase */

.site-button.text-uppercase {
    text-transform: uppercase;
}
/* button size */

.button-sm {
    padding: 5px 10px;
    font-size: 12px;
}
.button-lg {
    padding: 15px 35px;
    font-size: 20px;
	font-weight:500;
}
.button-xl {
    font-size: 22px;
    padding: 25px 35px;
}
/* button rounded */

.radius-no {
    border-radius: 0;
    -webkit-border-radius: 0;
}
.radius-sm {
    border-radius: 3px;
    -webkit-border-radius: 3px;
}
.radius-xl {
    border-radius: 100px;
    -webkit-border-radius: 100px;
}
/* button colors */
/* white */

.site-button.white {
    background-color: #fff;
    color: #777;
}
.site-button.white:hover,
.site-button.white:active,
.site-button.white:focus {
    background-color: #F4F4F4;
    color: #555;
}
/* black */

.site-button.black {
    background-color: #171717;
    color: #fff;
}
.site-button.black:hover,
.site-button.black:active,
.site-button.black:focus {
    background-color: #000;
    color: #fff;
}
/* Gray */

.site-button.gray {
    background-color: #666666;
    color: #fff;
}
.site-button.gray:hover,
.site-button.gray:active,
.site-button.gray.active,
.site-button.gray:focus {
    background-color: #555555;
    color: #fff;
}
/* pink */

.site-button.pink {
    background-color: #ff3c85;
    color: #fff;
}
.site-button.pink:hover,
.site-button.pink:active,
.site-button.pink.active,
.site-button.pink:focus {
    background-color: #ef2c75;
    color: #fff;
}
/* Blue */

.site-button.blue {
    background-color: #00c5dc;
    color: #fff;
}
.site-button.blue:hover,
.site-button.blue:active,
.site-button.blue.active,
.site-button.blue:focus {
    background-color: #00b5cc;
    color: #fff;
}
/* Green */

.site-button.green {
    background-color: #34bfa3;
    color: #fff;
}
.site-button.green:hover,
.site-button.green:active,
.site-button.green.active,
.site-button.green:focus {
    background-color: #24af93;
    color: #fff;
}
/* Orange */

.site-button.orange {
    background-color: #EF9800;
    color: #fff;
}
.site-button.orange:hover,
.site-button.orange:active,
.site-button.orange.active,
.site-button.orange:focus {
    background-color: #df8800;
    color: #fff;
}
/* Red */

.site-button.red {
    background-color: #f0526d;
    color: #fff;
}
.site-button.red:hover,
.site-button.red:active,
.site-button.red.active,
.site-button.red:focus {
    background-color: #F22D4E;
    color: #fff;
}
/* Brown */

.site-button.brown {
    background-color: #484a5c;
    color: #fff;
}
.site-button.brown:hover,
.site-button.brown:active,
.site-button.brown.active,
.site-button.brown:focus {
    background-color: #383a4c;
    color: #fff;
}
/* Yellow */

.site-button.yellow {
    background-color: #ffb822;
    color: #fff;
}
.site-button.yellow:hover,
.site-button.yellow:active,
.site-button.yellow.active,
.site-button.yellow:focus {
    background-color: #efa812;
    color: #fff;
}
/* purple */

.site-button.purple {
    background-color: #8862B9;
    color: #fff;
}
.site-button.purple:hover,
.site-button.purple:active,
.site-button.purple.active,
.site-button.purple:focus {
    background-color: #7852a9;
    color: #fff;
}
/* Button Gradiyant  */
/* white */

.site-button.white {
    background-color: #fff;
    color: #777;
}
.site-button.white:hover,
.site-button.white:active,
.site-button.white:focus {
    background-color: #F4F4F4;
    color: #555;
}
/* black */

.site-button.black.gradient {
    background: #000000; /* Old browsers */
	background: -moz-linear-gradient(45deg, #000000 0%, #727272 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg, #000000 0%,#727272 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg, #000000 0%,#727272 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#727272',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    color: #fff;
}
.site-button.black.gradient:hover,
.site-button.black.gradient:active,
.site-button.black.gradient:focus {
    background: #1e1e1e; /* Old browsers */
	background: -moz-linear-gradient(45deg,  #1e1e1e 0%, #727272 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg,  #1e1e1e 0%,#727272 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg,  #1e1e1e 0%,#727272 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e1e1e', endColorstr='#727272',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

    color: #fff;
}
/* Gray */

.site-button.gradient.gray {
    background: #666666; /* Old browsers */
	background: -moz-linear-gradient(45deg,  #666666 0%, #999999 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg,  #666666 0%,#999999 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg,  #666666 0%,#999999 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#666666', endColorstr='#999999',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

    color: #fff;
}
.site-button.gradient.gray:hover,
.site-button.gradient.gray:active,
.site-button.gradient.gray:focus {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#4f4f4f+0,999999+100 */
	background: #4f4f4f; /* Old browsers */
	background: -moz-linear-gradient(45deg,  #4f4f4f 0%, #999999 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg,  #4f4f4f 0%,#999999 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg,  #4f4f4f 0%,#999999 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4f4f4f', endColorstr='#999999',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

    color: #fff;
}
/* pink */

.site-button.gradient.pink {
    background: #ff3c85; /* Old browsers */
	background: -moz-linear-gradient(45deg,  #ff3c85 0%, #ff93bb 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg,  #ff3c85 0%,#ff93bb 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg,  #ff3c85 0%,#ff93bb 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff3c85', endColorstr='#ff93bb',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    color: #fff;
}
.site-button.gradient.pink:hover,
.site-button.gradient.pink:active,
.site-button.gradient.pink:focus {
    background: #ff3d81; /* Old browsers */
	background: -moz-linear-gradient(45deg,  #ff3d81 0%, #ff7fae 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg,  #ff3d81 0%,#ff7fae 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg,  #ff3d81 0%,#ff7fae 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff3d81', endColorstr='#ff7fae',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	color: #fff;
}
/* Blue */

.site-button.gradient.blue {
	background: #00c5db; /* Old browsers */
	background: -moz-linear-gradient(45deg,  #00c5db 0%, #6dff9e 99%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg,  #00c5db 0%,#6dff9e 99%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg,  #00c5db 0%,#6dff9e 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00c5db', endColorstr='#6dff9e',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    color: #fff;
}
.site-button.gradient.blue:hover,
.site-button.gradient.blue:active,
.site-button.gradient.blue:focus {
    background: #00a9bc; /* Old browsers */
	background: -moz-linear-gradient(45deg,  #00a9bc 0%, #54ea86 99%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg,  #00a9bc 0%,#54ea86 99%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg,  #00a9bc 0%,#54ea86 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00a9bc', endColorstr='#54ea86',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    color: #fff;
}
/* Green */

.site-button.gradient.green {
	background: #84ba3f; /* Old browsers */
	background: -moz-linear-gradient(45deg,  #84ba3f 0%, #b7ff59 99%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg,  #84ba3f 0%,#b7ff59 99%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg,  #84ba3f 0%,#b7ff59 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#84ba3f', endColorstr='#b7ff59',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	color: #fff;
}
.site-button.gradient.green:hover,
.site-button.gradient.green:active,
.site-button.gradient.green:focus {
    background: #6dad1a; /* Old browsers */
	background: -moz-linear-gradient(45deg,  #6dad1a 0%, #90ff00 99%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg,  #6dad1a 0%,#90ff00 99%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg,  #6dad1a 0%,#90ff00 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6dad1a', endColorstr='#90ff00',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

    color: #fff;
}
/* Orange */

.site-button.gradient.orange {
	background: #ef940b; /* Old browsers */
	background: -moz-linear-gradient(45deg,  #ef940b 0%, #ffd754 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg,  #ef940b 0%,#ffd754 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg,  #ef940b 0%,#ffd754 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ef940b', endColorstr='#ffd754',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	color: #fff;
}
.site-button.gradient.orange:hover,
.site-button.gradient.orange:active,
.site-button.gradient.orange:focus {
    background: #d68000; /* Old browsers */
	background: -moz-linear-gradient(45deg,  #d68000 0%, #ffbf00 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg,  #d68000 0%,#ffbf00 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg,  #d68000 0%,#ffbf00 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d68000', endColorstr='#ffbf00',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	color: #fff;
}
/* Red */

.site-button.gradient.red {
	background: #ff1437; /* Old browsers */
	background: -moz-linear-gradient(45deg,  #ff1437 0%, #ff5982 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg,  #ff1437 0%,#ff5982 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg,  #ff1437 0%,#ff5982 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff1437', endColorstr='#ff5982',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	color: #fff;
}
.site-button.gradient.red:hover,
.site-button.gradient.red:active,
.site-button.gradient.red:focus {
    background: #ff0022; /* Old browsers */
	background: -moz-linear-gradient(45deg,  #ff0022 0%, #ff3866 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg,  #ff0022 0%,#ff3866 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg,  #ff0022 0%,#ff3866 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0022', endColorstr='#ff3866',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	color: #fff;
}
/* Brown */

.site-button.gradient.brown {
    background: #303451; /* Old browsers */
	background: -moz-linear-gradient(45deg,  #303451 0%, #7e8196 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg,  #303451 0%,#7e8196 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg,  #303451 0%,#7e8196 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#303451', endColorstr='#7e8196',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	color: #fff;
}
.site-button.gradient.brown:hover,
.site-button.gradient.brown:active,
.site-button.gradient.brown:focus {
    background: #1d213f; /* Old browsers */
	background: -moz-linear-gradient(45deg,  #1d213f 0%, #777c9b 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg,  #1d213f 0%,#777c9b 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg,  #1d213f 0%,#777c9b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1d213f', endColorstr='#777c9b',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	color: #fff;
}
/* Yellow */

.site-button.gradient.yellow {
    background: #ffb52d; /* Old browsers */
	background: -moz-linear-gradient(45deg,  #ffb52d 34%, #ffd684 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg,  #ffb52d 34%,#ffd684 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg,  #ffb52d 34%,#ffd684 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffb52d', endColorstr='#ffd684',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

    color: #fff;
}
.site-button.gradient.yellow:hover,
.site-button.gradient.yellow:active,
.site-button.gradient.yellow:focus {
    background: #e2a336; /* Old browsers */
	background: -moz-linear-gradient(45deg,  #e2a336 34%, #ffc656 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg,  #e2a336 34%,#ffc656 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg,  #e2a336 34%,#ffc656 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2a336', endColorstr='#ffc656',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	color: #fff;
}
/* purple */

.site-button.gradient.purple {
	background: #62369b; /* Old browsers */
	background: -moz-linear-gradient(45deg,  #62369b 0%, #b37cff 87%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg,  #62369b 0%,#b37cff 87%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg,  #62369b 0%,#b37cff 87%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#62369b', endColorstr='#b37cff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	color: #fff;
}
.site-button.gradient.purple:hover,
.site-button.gradient.purple:active,
.site-button.gradient.purple:focus {
	background: #814ec4; /* Old browsers */
	background: -moz-linear-gradient(45deg,  #814ec4 0%, #9e4aba 87%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg,  #814ec4 0%,#9e4aba 87%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg,  #814ec4 0%,#9e4aba 87%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#814ec4', endColorstr='#9e4aba',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	color: #fff;
}
/* Skew */
.button-skew {
    position: relative;
    text-align: center;
    margin-right: 21px;
    -moz-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    transform: skewX(-20deg);
}
.button-skew span {
    display: inline-block;
    -moz-transform: skewX(20deg);
    -webkit-transform: skewX(20deg);
    -o-transform: skewX(20deg);
    -ms-transform: skewX(20deg);
    transform: skewX(20deg);
}
.button-skew i {
    background-color: inherit;
    position: absolute;
    height: 100%;
    margin-right: -32px;
    right: 0;
    top: 0;
    padding: 12px 12px;
    line-height: normal;
}
.button-skew i:before {
    display: inline-block;
    -moz-transform: skewX(20deg);
    -webkit-transform: skewX(20deg);
    -o-transform: skewX(20deg);
    -ms-transform: skewX(20deg);
    transform: skewX(20deg);
}
.button-skew.button-sm i {
    padding: 7px 10px;
    margin-right: -27px;
}
.button-skew.button-lg i {
    padding: 25px 15px;
    margin-right: -40px;
}
.button-skew.button-xl i {
    padding: 35px 22px;
    margin-right: -55px;
}
/* Graphical */

.site-button.graphical {
    color: #fff;
    border-radius: 3px;
    text-shadow: 0 -1px rgba(0, 0, 0, 0.4);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 1px 3px -1px rgba(45, 60, 72, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.15);
}
.site-button.graphical:active {
    box-shadow: 0 2px 2px rgba(0, 0, 0, .25) inset
}
/* 3D */

.site-button.button-3d {
    color: #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    border-bottom: 4px solid rgba(0, 0, 0, 0.2);
    border-left: none;
    border-right: none;
    border-top: none;
}
/* Outline */


.site-button.outline {
    color: #888;
    background: none;
    border-width: 1px;
    border-style: solid;
    border-color: inherit;
}
.site-button.outline-2 {
	border-width: 2px;
}
.site-button.outline.radius-xl,
.site-button.outline-2.radius-xl {
	border-radius:100px;
}
/* white */

.site-button.outline.white {
    color: #e7e7e7;
    border-color: #e7e7e7;
}
.site-button.outline.white:hover {
    color: #666666;
}
/* black */

.site-button.outline.black {
    color: #171717;
    border-color: #171717;
}
/* gray */

.site-button.outline.gray {
    color: #666666;
    border-color: #666666;
}
/* pink */

.site-button.outline.pink {
    color: #e63f75;
    border-color: #e63f75;
}
/* blue */

.site-button.outline.blue {
    color: #42b8d4;
    border-color: #42b8d4;
}
/* green */

.site-button.outline.green {
    color: #35b494;
    border-color: #35b494;
}
/* orange */

.site-button.outline.orange {
    color: #e56713;
    border-color: #e56713;
}
/* red */

.site-button.outline.red {
    color: #d93223;
    border-color: #d93223;
}
/* brown */

.site-button.outline.brown {
    color: #69441f;
    border-color: #69441f;
}
/* yellow */

.site-button.outline.yellow {
    color: #E34186;
    border-color: #E34186;
}
/* purple */

.site-button.outline.purple {
    color: #ae1af7;
    border-color: #ae1af7;
}
/* hover */

.site-button.outline:hover {
    border-color: rgba(0, 0, 0, 0);
    color: #fff;
}
/* button text link */

.site-button-link {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 0 none;
    display: inline-block;
    font-weight: 400;
	padding: 3px 5px;
}
/* white */

.site-button-link.white {
    color: #e7e7e7;
}
.site-button-link.white:hover,
.site-button-link.white:active,
.site-button-link.white:focus {
    color: #CCC;
}
/* black */

.site-button-link.black {
    color: #171717;
}
.site-button-link.black:hover,
.site-button-link.black:active,
.site-button-link.black:focus {
    color: #000;
}
/* Gray */

.site-button-link.gray {
    color: #666666;
}
.site-button-link.gray:hover,
.site-button-link.gray:active,
.site-button-link.gray:focus {
    color: #555555;
}
/* pink */

.site-button-link.pink {
    color: #e63f75;
}
.site-button-link.pink:hover,
.site-button-link.pink:active,
.site-button-link.pink:focus {
    color: #EF2C75;
}
/* Blue */

.site-button-link.blue {
    color: #42b8d4;
}
.site-button-link.blue:hover,
.site-button-link.blue:active,
.site-button-link.blue:focus {
    color: #00B5CC;
}
/* Green */

.site-button-link.green {
    color: #35b494;
}
.site-button-link.green:hover,
.site-button-link.green:active,
.site-button-link.green:focus {
    color: #26a585;
}
/* Orange */

.site-button-link.orange {
    color: #E56713;
}
.site-button-link.orange:hover,
.site-button-link.orange:active,
.site-button-link.orange:focus {
    color: #d55703;
}
/* Red */

.site-button-link.red {
    color: #D93223;
}
.site-button-link.red:hover,
.site-button-link.red:active,
.site-button-link.red:focus {
    color: #c51e0f;
}
/* Brown */

.site-button-link.brown {
    color: #69441F;
}
.site-button-link.brown:hover,
.site-button-link.brown:active,
.site-button-link.brown:focus {
    color: #5f3a15;
}
/* Yellow */

.site-button-link.yellow {
    color: #ecc731;
}
.site-button-link.yellow:hover,
.site-button-link.yellow:active,
.site-button-link.yellow:focus {
    color: ##d4af19;
}
/* purple */

.site-button-link.purple {
    color: #ae1af7;
}
.site-button-link.purple:hover,
.site-button-link.purple:active,
.site-button-link.purple:focus {
    color: #9804e1;
}
/* Dropdown */
.dropdown-menu > li > a{
	padding:10px 20px;
}
/* Box Shadow */

/* black */
.site-button.box-shadow.black {
	box-shadow:0 5px 10px 2px rgba(0, 0, 0, 0.19);
}

/* gray */
.site-button.box-shadow.gray {
	box-shadow:0 5px 10px 2px rgba(85, 85, 85, 0.19);
}

/* pink */
.site-button.box-shadow.pink {
	box-shadow:0 5px 10px 2px rgba(239, 44, 177, 0.19);
}

/* blue */
.site-button.box-shadow.blue {
	box-shadow:0 5px 10px 2px rgba(0, 181, 104, 0.19);
}

/* green */
.site-button.box-shadow.green {
	box-shadow:0 5px 10px 2px rgba(36, 176, 147, 0.19);
}

/* orange */
.site-button.box-shadow.orange {
	box-shadow:0 5px 10px 2px rgba(223, 136, 0, 0.19);
}

/* red */
.site-button.box-shadow.red {
	box-shadow:0 5px 10px 2px rgba(242, 45, 78, 0.19);
}

/* brown */
.site-button.box-shadow.brown {
	box-shadow:0 5px 10px 2px rgba(56, 58, 76, 0.19);
}

/* yellow */
.site-button.box-shadow.yellow {
	box-shadow:0 5px 10px 2px rgba(239, 168, 18, 0.19);
}

/* purple */
.site-button.box-shadow.purple {
	box-shadow:0 5px 10px 2px rgba(120, 82, 169, 0.19);
}
/* Circle */
.site-button.circle-sm {
	width:28px;
	height:28px;
	padding: 0;
	border-radius:40px;
	font-size:12px;
	line-height: 27px;
}
.site-button.circle {
	width:40px;
	height:40px;
	padding: 0;
	border-radius:40px;
	line-height: 39px;
}
.site-button.circle-lg {
	border-radius: 40px;
    font-size: 20px;
    height: 55px;
    padding: 0;
    width: 55px;
	line-height: 54px;
}

.site-button.sharp-sm {
	width:28px;
	height:28px;
	padding: 0;
	font-size:12px;
	line-height: 27px;
}
.site-button.sharp {
	width:40px;
	height:40px;
	padding: 0;
	line-height: 39px;
}
.site-button.sharp-lg {
    font-size: 20px;
    height: 55px;
    padding: 0;
    width: 55px;
	line-height: 54px;
}
/* Social Icon */
/* .site-button.facebook,
.site-button.google-plus,
.site-button.instagram,
.site-button.linkedin,
.site-button.twitter,
.site-button.youtube,
.site-button.whatsapp{
	border-radius:3px;
} */
/* Social icon link */
.site-button-link.facebook{
	color:#3B5998;
}
.site-button-link.google-plus{
	color:#DE4E43;
}
.site-button-link.linkedin{
	color:#007BB6;
}
.site-button-link.instagram{
	color:#8A5A4E;
}
.site-button-link.twitter{
	color:#1EA1F3;
}
.site-button-link.youtube{
	color:#CE201F;
}
.site-button-link.whatsapp{
	color:#01C854;
}

.site-button-link.facebook.hover,
.site-button-link.google-plus.hover,
.site-button-link.linkedin.hover,
.site-button-link.instagram.hover,
.site-button-link.twitter.hover,
.site-button-link.youtube.hover,
.site-button-link.whatsapp.hover{
	color:inherit;
}

.site-button-link.facebook.hover:hover,
.site-button-link.facebook.hover:focus,
.site-button-link.facebook.hover:active{
	color:#3b5998;
}
.site-button-link.google-plus.hover:hover,
.site-button-link.google-plus.hover:focus,
.site-button-link.google-plus.hover:active{
	color:#de4e43;
}
.site-button-link.linkedin.hover:hover,
.site-button-link.linkedin.hover:focus,
.site-button-link.linkedin.hover:active{
	color:#007bb6;
}
.site-button-link.instagram.hover:hover,
.site-button-link.instagram.hover:focus,
.site-button-link.instagram.hover:active{
	color:#8a5a4e;
}
.site-button-link.twitter.hover:hover,
.site-button-link.twitter.hover:focus,
.site-button-link.twitter.hover:active{
	color:#1ea1f3;
}
.site-button-link.youtube.hover:hover,
.site-button-link.youtube.hover:focus,
.site-button-link.youtube.hover:active{
	color:#ce201f;
}
.site-button-link.whatsapp.hover:hover,
.site-button-link.whatsapp.hover:focus,
.site-button-link.whatsapp.hover:active{
	color:#01c854;
}



.site-button.facebook{
	background-color:#3B5998;
}
.site-button.facebook:hover,
.site-button.facebook:focus,
.site-button.facebook:active{
	background-color:#4b69a8;
}
.site-button.google-plus{
	background-color:#DE4E43;
}
.site-button.google-plus:hover,
.site-button.google-plus:focus,
.site-button.google-plus:active{
	background-color:#fe6e63;
}
.site-button.linkedin{
	background-color:#007BB6;
}
.site-button.linkedin:hover,
.site-button.linkedin:focus,
.site-button.linkedin:active{
	background-color:#209bd6;
}
.site-button.instagram{
	background-color:#8A5A4E;
}
.site-button.instagram:hover,
.site-button.instagram:focus,
.site-button.instagram:active{
	background-color:#aa7a6e;
}
.site-button.twitter{
	background-color:#1EA1F3;
}
.site-button.twitter:hover,
.site-button.twitter:focus,
.site-button.twitter:active{
	background-color:#0e91e3;
}
.site-button.youtube{
	background-color:#CE201F;
}
.site-button.youtube:hover,
.site-button.youtube:focus,
.site-button.youtube:active{
	background-color:#ee403f;
}
.site-button.whatsapp{
	background-color:#01C854;
}
.site-button.whatsapp:hover,
.site-button.whatsapp:focus,
.site-button.whatsapp:active{
	background-color:#00a834;
}

/* Social Icon Outline */
.site-button.facebook.outline,
.site-button.google-plus.outline,
.site-button.instagram.outline,
.site-button.linkedin.outline,
.site-button.twitter.outline,
.site-button.youtube.outline,
.site-button.whatsapp.outline{
	background-color:rgba(0,0,0,0);
	border: 1px solid;
}
.site-button.facebook.outline{
	color:#3B5998;
}
.site-button.google-plus.outline{
	color:#DE4E43;
}
.site-button.linkedin.outline{
	color:#007BB6;
}
.site-button.instagram.outline{
	color:#8A5A4E;
}
.site-button.twitter.outline{
	color:#1EA1F3;
}
.site-button.youtube.outline{
	color:#CE201F;
}
.site-button.whatsapp.outline{
	color:#01C854;
}
/* Outline Hover */
.site-button.facebook.outline:hover,
.site-button.facebook.outline:focus,
.site-button.facebook.outline:active{
	background-color:#4b69a8;
	color:#fff;
}
.site-button.google-plus.outline:hover,
.site-button.google-plus.outline:focus,
.site-button.google-plus.outline:active{
	background-color:#fe6e63;
	color:#fff;
}
.site-button.linkedin.outline:hover,
.site-button.linkedin.outline:focus,
.site-button.linkedin.outline:active{
	background-color:#209bd6;
	color:#fff;
}
.site-button.instagram.outline:hover,
.site-button.instagram.outline:focus,
.site-button.instagram.outline:active{
	background-color:#aa7a6e;
	color:#fff;
}
.site-button.twitter.outline:hover,
.site-button.twitter.outline:focus,
.site-button.twitter.outline:active{
	background-color:#0e91e3;
	color:#fff;
}
.site-button.youtube.outline:hover,
.site-button.youtube.outline:focus,
.site-button.youtube.outline:active{
	background-color:#ee403f;
	color:#fff;
}
.site-button.whatsapp.outline:hover,
.site-button.whatsapp.outline:focus,
.site-button.whatsapp.outline:active{
	background-color:#00a834;
	color:#fff;
}







/* filter buttons css */

.site-filters {
    margin-bottom: 30px;
}
.site-filters ul {
    margin: 0;
    list-style: none;
}
.site-filters li {
    display: inline;
    padding: 0;
}
.site-filters li.btn {
    box-shadow: none;
    -webkit-box-shadow: none;
    outline: none !important;
}
.site-filters li input {
    display: none;
}
.site-filters a {
    margin: 0 15px 5px 0;
}
.site-filters .active > [class*="site-button"] {
    color: #fff;
    background-color: #E34186;
}
.site-filters.center {
    text-align: center;
}
.site-filters.center ul {
    display: inline-block;
    margin: auto;
}
.site-filters.center [class*="site-button"] {
    display: inline-block;
    margin: 0 5px 10px;
    text-transform: uppercase;
}
@media only screen and (max-width: 480px) {
    .site-filters.center [class*="site-button"] {
        margin: 0 1px 5px;
        padding: 5px 10px;
        font-size: 12px;
    }
}
/*== >Title separators ====== */

.dez-separator-outer {
    overflow: hidden;
}
.dez-separator {
    display: inline-block;
    height: 2px;
    width: 80px;
    margin-bottom: 10px;
    position: relative;
}
.dez-separator.style-liner {
    width: 20px;
}
.dez-separator.style-icon {
    width: 30px;
    height: auto;
    text-align: center;
    font-size: 20px;
}
.dez-separator.style-icon.bg-primary {
	color:#fff;
}
.dez-separator[class*="style-"]:after,
.dez-separator[class*="style-"]:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 40px;
    width: 70px;
    height: 2px;
    background: #eee;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.dez-separator[class*="style-"]:before {
    left: auto;
    right: 40px;
}
.dez-separator.style-skew {
    width: 15px;
    height: 10px;
    margin-left: 1px;
    margin-right: 1px;
    -moz-transform: skewX(-10deg);
    -webkit-transform: skewX(-10deg);
    -o-transform: skewX(-10deg);
    -ms-transform: skewX(-10deg);
    transform: skewX(-10deg);
}
.dez-separator.style-skew[class*="style-"]:after,
.dez-separator.style-skew[class*="style-"]:before {
    width: 80px;
    height: 4px;
    left: 20px;
    -moz-transform: translateY(-50%) skewX(-10deg);
    -webkit-transform: translateY(-50%) skewX(-10deg);
    -o-transform: translateY(-50%) skewX(-10deg);
    -ms-transform: translateY(-50%) skewX(-10deg);
    transform: translateY(-50%) skewX(-10deg);
}
.dez-separator.style-skew[class*="style-"]:before {
    right: 20px;
    left: auto;
}
.dez-separator.bnr-title{
	height:1px;
	width: 155px;
	opacity: 0.5;
}
.dez-separator.bnr-title:before {
    height: inherit;
    right: -80px;
    width: 25px;
}
.dez-separator.bnr-title:after {
    height: inherit;
    right: -90px;
    top: 0;
    width: 6px;
}
.dez-separator.bnr-title:before,
.dez-separator.bnr-title:after{
	position:absolute;
	content:"";
	background-color:inherit;
}
.dez-separator.bnr-title i {
    background-color: inherit;
    display: block;
    height: inherit;
    position: absolute;
    right: -50px;
    width: 45px;
}