/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 11px 24px 13px;
    border: 2px solid #0055FF;
    border-radius: 34px;
    font-weight: 700;
    font-size: 0.875rem;
    text-align: center;
    color: #FFF;
    background-color: #0055FF;
    cursor: pointer;
    transition: .3s background-color, .3s border-color, .2s color;
    line-height: 1.5;
}
.btn:active,
.btn:focus {
    outline: none;
}
.btn:hover,
.btn:focus {
    text-decoration: none;
    color: #0055FF;
    background-color: #fff;
}

/* Modifiers */
.accordion--open .btn--ghost:hover,
.btn--ghost {
    border: 2px solid #0055FF;
    color: #0055FF;
    background-color: transparent;
}
.accordion__header:hover .btn--ghost,
.accordion--open .btn--ghost,
.btn--ghost:hover,
.btn--ghost:focus {
    color: #fff;
    background-color: #0055FF;
}
.btn--ghost-white:focus,
.btn--ghost-white {
    border: 2px solid #fff;
    color: #fff;
    background-color: transparent;
}
.btn--ghost-white:hover {
    color: #0055FF;
    background-color: #fff;
}
.btn--white {
    border: 2px solid #fff;
    background-color: #fff;
    color: #0055FF;
}
.btn--white:hover,
.btn--white:focus {
    border-color: #0055FF;
    background-color: #0055FF;
    color: #fff;
}
.btn--small {
    padding: 7px 20px 8px;
    font-size: 0.75rem;
}
.btn--block {
    display: block;
    padding: 12px;
}

.btn--lightblue {
    border: 2px solid #A5CCD7;
    background-color: #A5CCD7;
    color: #153D8A;
}
.btn--lightblue:hover,
.btn--lightblue:focus {
    border-color: #A5CCD7;
    background-color: #FFFFFF;
    color: #153D8A;
}

.btn--red {
    border: 2px solid #e63312;
    background-color: #e63312;
    color: white;
}
.btn--red:hover,
.btn--red:focus {
    border-color: #e63312;
    background-color: #FFFFFF;
    color: #e63312;
}

/* disabled */
.btn--disabled,
.btn[disabled] {
    border-color: #808080;
    background-color: #808080;
    color: #fff;
    opacity: 0.75;
    cursor: default;
    pointer-events: none;
}

/* icons in buttons */
.btn[class^="icon-"],
.btn[class*=" icon-"] {
    position: relative;
    padding-left: 50px;
}
.btn[class*=" icon-"]::before {
    position: absolute;
    top: 50%;
    left: 22px;
    margin: 0;
    font-size: 20px;
    transform: translateY(-50%);
}
.btn--icon,
.btn--control {
    padding: 0;
    justify-content: center;
    width: 48px;
    height: 48px;
}
.btn.btn--icon::before,
.btn.btn--control::before {
    font-size: 20px;
    margin: 0;
    left: 50%;
    transform: translate(-50%,-50%);
}
.btn.btn--icon {
    padding: 0;
}

.btn--m {
    margin-right: 20px;
}


/* --- ICON BUTTONS --- */
.icon-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: none;
}
.icon-btn::before {
    font-size: 24px;
}



/* ==========================================================================
   Media Queries
   ========================================================================== */

/* --- DESKTOP (MD) --- */
@media ( min-width: 768px ) {

    .btn {
        padding: 17px 32px 19px;
        font-size: 1rem;
    }
    .btn--small {
        padding: 11px 24px 13px;
        font-size: 0.875rem;
    }

}


/* --- DESKTOP (LG) --- */
@media ( min-width: 992px ) {

    /* icons in buttons */
    .btn--control {
        padding: 12px 20px;
        width: auto;
        height: auto;
    }
    .btn--control::before {
        margin-right: 0.25em;
        margin-left: -0.25em;
    }

}



/* --- DESKTOP (XL) --- */
@media ( min-width: 1200px ) {



}



/* --- DESKTOP (XXL) --- */
@media ( min-width: 1440px ) {

    .btn--icon,
    .btn--control {
        width: 64px;
        height: 64px;
    }

}
