@charset "UTF-8";

.btn,
a.btn,
a.btn-small {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    min-height: 60px;
    padding: 8px 20px;
    margin: 0;
    outline: 0;
    border: none;
    cursor: pointer;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    text-align: center;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 120%;
    color: white;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .btn,
  a.btn,
  a.btn-small {
        padding: 0 32px;
    }
}

.btn::before,
a.btn::before,
a.btn-small::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-width: 2px;
    border-style: solid;
    border-color: #E73230;
    background: #E73230;
    z-index: -1;
    border-radius: 6px;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.btn:hover,
a.btn:hover,
a.btn-small:hover {
    color: white !important;
}

.btn:hover::before,
a.btn:hover::before,
a.btn-small:hover::before {
    background: #BD1E1D;
    border-color: #BD1E1D;
    width: calc(100% + 12px);
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
}

.btn__linear,
a.btn__linear,
a.btn-small__linear {
    color: #000000 !important;
}

.btn__linear::before,
a.btn__linear::before,
a.btn-small__linear::before {
    background: transparent;
    border-color: #E73230;
}

.btn__linear:hover,
a.btn__linear:hover,
a.btn-small__linear:hover {
    color: white !important;
}

.btn__linear:hover::before,
a.btn__linear:hover::before,
a.btn-small__linear:hover::before {
    background: #BD1E1D;
    border-color: #BD1E1D;
}

.btn__green,
a.btn__green,
a.btn-small__green {
    color: white !important;
}

.btn__green::before,
a.btn__green::before,
a.btn-small__green::before {
    border-color: #249F59;
    background: #249F59;
}

.btn__green:hover::before,
a.btn__green:hover::before,
a.btn-small__green:hover::before {
    background: #0F753B;
    border-color: #0F753B;
}

.btn__green_linear,
a.btn__green_linear,
a.btn-small__green_linear {
    color: black;
}

.btn__green_linear::before,
a.btn__green_linear::before,
a.btn-small__green_linear::before {
    background: transparent;
    border-color: #249F59;
}

.btn__green_linear:hover,
a.btn__green_linear:hover,
a.btn-small__green_linear:hover {
    color: white !important;
}

.btn__green_linear:hover::before,
a.btn__green_linear:hover::before,
a.btn-small__green_linear:hover::before {
    background: #0F753B;
    border-color: #0F753B;
}

.btn__blue,
a.btn__blue,
a.btn-small__blue {
    color: white !important;
}

.btn__blue::before,
a.btn__blue::before,
a.btn-small__blue::before {
    border-color: #2f91b7;
    background: #2f91b7;
}

.btn__blue:hover::before,
a.btn__blue:hover::before,
a.btn-small__blue:hover::before {
    background: #1a7294;
    border-color: #1a7294;
}

.btn__blue_linear,
a.btn__blue_linear,
a.btn-small__blue_linear {
    color: black;
}

.btn__blue_linear::before,
a.btn__blue_linear::before,
a.btn-small__blue_linear::before {
    background: transparent;
    border-color: #2f91b7;
}

.btn__blue_linear:hover,
a.btn__blue_linear:hover,
a.btn-small__blue_linear:hover {
    color: white !important;
}

.btn__blue_linear:hover::before,
a.btn__blue_linear:hover::before,
a.btn-small__blue_linear:hover::before {
    background: #1a7294;
    border-color: #1a7294;
}

.btn__white,
a.btn__white,
a.btn-small__white {
    color: black !important;
}

.btn__white::before,
a.btn__white::before,
a.btn-small__white::before {
    border-color: #FFFFFF;
    background: #FFFFFF;
}

.btn__white:hover,
a.btn__white:hover,
a.btn-small__white:hover {
    color: black !important;
}

.btn__white:hover::before,
a.btn__white:hover::before,
a.btn-small__white:hover::before {
    background: #FFFFFF;
    border-color: #FFFFFF;
}

.btn__white_linear,
a.btn__white_linear,
a.btn-small__white_linear {
    color: white;
}

.btn__white_linear::before,
a.btn__white_linear::before,
a.btn-small__white_linear::before {
    background: transparent;
    border-color: #FFFFFF;
}

.btn__white_linear:hover,
a.btn__white_linear:hover,
a.btn-small__white_linear:hover {
    color: black !important;
}

.btn__white_linear:hover::before,
a.btn__white_linear:hover::before,
a.btn-small__white_linear:hover::before {
    background: #FFFFFF;
    border-color: #FFFFFF;
}

.btn__black,
a.btn__black,
a.btn-small__black {
    color: white !important;
}

.btn__black::before,
a.btn__black::before,
a.btn-small__black::before {
    border-color: #000000;
    background: #000000;
}

.btn__black:hover::before,
a.btn__black:hover::before,
a.btn-small__black:hover::before {
    background: #000000;
    border-color: #000000;
}

.btn__black_linear,
a.btn__black_linear,
a.btn-small__black_linear {
    color: #000000;
}

.btn__black_linear::before,
a.btn__black_linear::before,
a.btn-small__black_linear::before {
    background: transparent;
    border-color: #000000;
}

.btn__black_linear:hover,
a.btn__black_linear:hover,
a.btn-small__black_linear:hover {
    color: white !important;
}

.btn__black_linear:hover::before,
a.btn__black_linear:hover::before,
a.btn-small__black_linear:hover::before {
    background: #000000;
    border-color: #000000;
}

.btn__disabled,
a.btn__disabled,
a.btn-small__disabled {
    color: #646464 !important;
    background: #CCCCCC;
    border-radius: 6px;
}

.btn__disabled:hover,
a.btn__disabled:hover,
a.btn-small__disabled:hover {
    color: #646464 !important;
}

.btn__disabled::before,
a.btn__disabled::before,
a.btn-small__disabled::before {
    display: none;
}

.btn__disabled_linear,
a.btn__disabled_linear,
a.btn-small__disabled_linear {
    color: #CCCCCC;
    background: transparent;
    border-color: #CCCCCC;
}

.btn__yellow,
a.btn__yellow,
a.btn-small__yellow {
    color: black !important;
}

.btn__yellow::before,
a.btn__yellow::before,
a.btn-small__yellow::before {
    border-color: #ffe52a;
    background: #ffe52a;
}

.btn__yellow:hover,
a.btn__yellow:hover,
a.btn-small__yellow:hover {
    color: black !important;
}

.btn__yellow:hover::before,
a.btn__yellow:hover::before,
a.btn-small__yellow:hover::before {
    background: #fbff0a;
    border-color: #fbff0a;
}

.btn__yellow_linear,
a.btn__yellow_linear,
a.btn-small__yellow_linear {
    color: #ffe52a;
}

.btn__yellow_linear::before,
a.btn__yellow_linear::before,
a.btn-small__yellow_linear::before {
    background: transparent;
    border-color: #ffe52a;
}

.btn__yellow_linear:hover,
a.btn__yellow_linear:hover,
a.btn-small__yellow_linear:hover {
    color: black !important;
}

.btn__yellow_linear:hover::before,
a.btn__yellow_linear:hover::before,
a.btn-small__yellow_linear:hover::before {
    background: #fbff0a;
    border-color: #fbff0a;
}

a.btn-small {
    font-size: 1rem;
    padding: 0 16px;
    min-height: 40px;
}

.icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(../img/2020-buttons/icons.svg);
    -webkit-transform: translateX(-9px);
    transform: translateX(-9px);
    position: relative;
}

.icon:after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(../img/2020-buttons/icons.svg);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out;
}

.btn__icon > .icon-downloads {
    background-position: 0 0;
}

.btn .icon.icon-downloads,
.btn .icon.icon-downloads:after {
    background-position: 0 0;
}

.btn__linear .icon.icon-downloads {
    background-position: -18px 0;
}

.btn__linear .icon.icon-downloads:after {
    background-position: 0 0;
}

.btn__linear:hover {
    background-position: 0 0;
}

.btn__white_linear .icon.icon-downloads {
    background-position: 0 0;
}

.btn__white_linear .icon.icon-downloads:after {
    background-position: 0 0;
}

.btn__white_linear:hover > .icon.icon-downloads:after {
    background-position: 0 0;
}

.btn__red_linear .icon.icon-downloads {
    background-position: -18px 0;
}

.btn__red_linear .icon.icon-downloads:after {
    background-position: 0 0;
}

.btn__red_linear:hover > .icon.icon-downloads:after {
    background-position: 0 0;
}

.btn__green_linear .icon.icon-downloads {
    background-position: -36px 0;
}

.btn__green_linear .icon.icon-downloads:after {
    background-position: 0 0;
}

.btn__green_linear:hover > .icon.icon-downloads:after {
    background-position: 0 0;
}

.btn__blue_linear .icon.icon-downloads {
    background-position: -54px 0;
}

.btn__blue_linear .icon.icon-downloads:after {
    background-position: 0 0;
}

.btn__blue_linear:hover > .icon.icon-downloads:after {
    background-position: 0 0;
}

.btn__disabled_linear .icon.icon-downloads {
    background-position: -72px 0;
}

.btn__disabled_linear .icon.icon-downloads:after {
    background-position: -72px 0;
}

.btn__icon > .icon-lock {
    background-position: 0 -18px;
}

.btn .icon.icon-lock,
.btn .icon.icon-lock:after {
    background-position: 0 18px;
}

.btn__linear .icon.icon-lock {
    background-position: -18px 18px;
}

.btn__linear .icon.icon-lock:after {
    background-position: 0 18px;
}

.btn__linear:hover {
    background-position: 0 18px;
}

.btn__white_linear .icon.icon-lock {
    background-position: 0 18px;
}

.btn__white_linear .icon.icon-lock:after {
    background-position: 0 18px;
}

.btn__white_linear:hover > .icon.icon-lock:after {
    background-position: 0 18px;
}

.btn__red_linear .icon.icon-lock {
    background-position: -18px 18px;
}

.btn__red_linear .icon.icon-lock:after {
    background-position: 0 18px;
}

.btn__red_linear:hover > .icon.icon-lock:after {
    background-position: 0 18px;
}

.btn__green_linear .icon.icon-lock {
    background-position: -36px 18px;
}

.btn__green_linear .icon.icon-lock:after {
    background-position: 0 18px;
}

.btn__green_linear:hover > .icon.icon-lock:after {
    background-position: 0 18px;
}

.btn__blue_linear .icon.icon-lock {
    background-position: -54px 18px;
}

.btn__blue_linear .icon.icon-lock:after {
    background-position: 0 18px;
}

.btn__blue_linear:hover > .icon.icon-lock:after {
    background-position: 0 18px;
}

.btn__disabled_linear .icon.icon-lock {
    background-position: -72px 18px;
}

.btn__disabled_linear .icon.icon-lock:after {
    background-position: -72px 18px;
}

.btn:hover > .icon:after {
    opacity: 1;
}