/* primary button */
.primary-btn {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--white);
    padding: 18px 5em 14px;
    background: var(--primary);
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
    display: inline-block;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.primary-btn img {
  margin-left: 20px;
  padding-bottom: 2px;
}

.primary-btn:hover {
  color: var(--white);
  background: #184030;
}

.small {
    padding: 0.5em 1em;
}

.normal {
  padding: 1.2em 5.2em;
}

.medium {
  font-size: 20px;
}

.large {
  font-size: 20px;
  padding: 1.2em 5.2em;
}

.full-width {
  width: 100%;
}

.active {
  background-color: rgba(61, 124, 106, 0.6);
}

.disable,
.disable:hover {
    background: #E0E0E0;
}

/* ghost button */
.ghost-btn {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--primary) !important;
    padding: 18px 5em 14px;
    background: var(--white);
    border-radius: 4px;
    text-align: center;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s ease-in-out;
    border: 2px solid var(--primary);
    box-sizing: border-box;
    border-radius: 2px;
}

.ghost-btn img {
    margin-left: 20px;
}

.ghost-btn:hover {
    color: var(--white) !important;
    background: #184030;
}

/* secondary button */
.secondary-btn {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--white);
    padding: 1em 5em;
    background: var(--primary);
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
    display: inline-block;
    transition: 0.3s ease-in-out;
}

.secondary-btn img {
    margin-left: 20px;
}

.secondary-btn:hover {
    color: var(--white);
    background: #184030;
}
