@import url('https://fonts.googleapis.com/css?family=Archivo+Black|Lato:300,400,700,700i,900,900i&display=swap');

.btn {
    height: 40px;
    display: inline-block;
    /* border-radius: 5px; */
    font-size: 14px;
    line-height: 36px;
    vertical-align: middle;
    font-weight: 900;
    cursor: pointer;
    padding: 0 2em;
    border-width: 2px;
    border-style: solid;
    min-width: 120px;
    text-align: center;
    align-items: center;
    background-color: #fff;
    border-color: #7448FF;
    color: #7448FF;
    font-family: 'Roobert-SemiBold';
    transition-property: color, background-color, border-color;
    transition-duration: 0.3s;
}

.btn:hover {
    background-color: #9478ff;
    border-color: #9478ff;
    color: #fff;
}

/**********************************************************\
    CTA
\**********************************************************/

.btn--cta {
    background-color: #7448FF;
    border-color: #7448FF;
    color: #fff;
}

/**********************************************************\
    WHITE
\**********************************************************/

.btn--white {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn--white:hover {
    background-color: #fff;
    color: #7448FF;
    border-color: #fff;
}

/**********************************************************\
    BLACK
\**********************************************************/

.btn--black {
    background-color: black;
    color: #fff;
    border-color: black;
}
.btn--black:hover {
    background-color: #666;
    border-color: #666;
}

/**********************************************************\
    MINT
\**********************************************************/

.btn--mint {
    border-color: #4ACFBC;
}

.btn--mint:hover {
    background-color: #fff;
    color: #4ACFBC;
    border-color: #4ACFBC;
}

.btn--mint.btn--cta {
    background-color: #4ACFBC;
    border-color: #4ACFBC;
    color: #fff;
}

.btn--mint.btn--cta:hover {
    background-color: #24D8BF;
    border-color: #24D8BF;
    color: #fff;
}

/**********************************************************\
    DISABLED
\**********************************************************/

.btn--disabled {
    background-color: #888;
    border-color: #888;
    color: #fff;
    cursor: not-allowed;
    pointer-events: none;
}

.btn--disabled:hover {
    background-color: #888;
    border-color: #888;
    color: #fff;
}

/**********************************************************\
    MISC
\**********************************************************/

.btn i {
    margin-left: 0.5em;
    margin-right: -0.5em;
    transition-property: transform;
    transition-duration: 0.3s;
}

/**********************************************************\
    CONTAINERS
\**********************************************************/

.btn-container-h {
    display: flex;
    justify-content: space-between;
}

.btn-container-h > :only-child
{
    margin-left: auto;
    margin-right: auto;
}

/**********************************************************\
    ICON BUTTON
\**********************************************************/

.icobtn {
    height: 35px;
    width: 35px;
    font-size: 16px;
    border-radius: 99px;
    text-align: center;
    background-color: #fff;
    border: solid 1.5px #000;
    color: #000;
    flex-shrink: 0;
    cursor: pointer;

    transition-property: all;
    transition-duration: 0.3s;
}

.icobtn:hover {
    background-color: #555;
    color: #fff;
}

.icobtn.icobtn--active {
    color: #fff;
    background-color: #000;
}

.icobtn i {
    position: relative;
    line-height: 35px;
    vertical-align: middle;
}

.svg-icobtn {
    height: 35px;
    width: 35px;
    cursor: pointer;
}

/**********************************************************\
    ICON BUTTON PIXEL CORRECTIONS
\**********************************************************/

.icobtn .fa-paper-plane {
    bottom: 1px;
    right: 1px;
}


/**********************************************************\
    BUTTON WITH QUESTION MARK
\**********************************************************/

.btn--with-question {
    position: relative;
}
.btn__question {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 1px solid white;
    border-radius: 100%;
    background: #4FDFCB;
    right: -8px;
    top: -8px;
    font-size: 8px;
    justify-content: center;
    line-height: 14px;
    align-items: center;
    display: flex;
}