/*==========================================================
 OMAI UI Kit v1.0

 Button

==========================================================*/


/*==================================================
 Standard Button
==================================================*/

.om-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 34px;

font-size:16px;

font-weight:700;

text-decoration:none !important;

border-radius:6px;

cursor:pointer;

transition:all .25s ease;

border:2px solid transparent;

}


/*==================================================
 Green
==================================================*/

.om-btn--primary{

background:#556B2F;

border-color:#556B2F;

color:#fff !important;

}

.om-btn--primary:hover{

background:#445426;

border-color:#445426;

color:#fff !important;

}


/*==================================================
 Gold
==================================================*/

.om-btn--gold{

background:#B89B5E;

border-color:#B89B5E;

color:#fff !important;

}

.om-btn--gold:hover{

background:#9D8145;

border-color:#9D8145;

color:#fff !important;

}


/*==================================================
 Outline
==================================================*/

.om-btn--outline{

background:#fff;

border-color:#556B2F;

color:#556B2F !important;

}

.om-btn--outline:hover{

background:#556B2F;

color:#fff !important;

}


/*==================================================
 Large
==================================================*/

.om-btn--large{

width:100%;

padding:18px 20px;

font-size:18px;

}


/*==================================================
 Small
==================================================*/

.om-btn--small{

padding:10px 18px;

font-size:14px;

}