.button {
    display: inline-block;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    padding: 0 30px;
    position: relative;
    text-transform: uppercase;
    transition: all .15s ease-out;
    text-decoration: none;
}
.button_yellow {
    background: #fedd84;
    color: #5e5e60;
}
.button_yellow:hover {
    background: #333;
    color: #fff;
    text-decoration: none;
}
.button_green {
    background: #888672;
    color: #fff !important;
}
.button_green:hover {
    background: #fff;
    border-color: #888672;
    color: #0b0b0c !important;
    text-decoration: none;
}
a:visited {
	color: #5e5e60;
}

.joinpanel {
    position: fixed;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
    max-width: 900px;
    width: 100%;
    z-index: 10;
    background: #0b0b0c;
    color: #fff;
    padding: 20px 0;
    font-family: FuturaPT, Calibri, 'Trebuchet MS', sans-serif;
}

@media (max-width:803px) {
    .joinpanel {
        left: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

@media (max-width:479px) {
    .joinpanel {
        padding-top: 14px;
        padding-bottom: 12px
    }
}

.joinpanel_close {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    display: block;
    cursor: pointer;
    padding: 7px
}

@media (max-width:479px) {
    .joinpanel_close {
        padding: 3px 0
    }
}

.joinpanel_close svg {
    width: 18px;
    height: 18px;
    display: block;
    -webkit-transition: all .15s ease-out;
    -o-transition: all .15s ease-out;
    transition: all .15s ease-out;
    fill: #FFF
}

.joinpanel_close:hover svg {
    fill: #fedd84
}

.joinpanel_wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 28px;
    padding-right: 54px
}

@media (max-width:1023px) {
    .joinpanel_wrapper {
        padding-right: 20px;
        padding-left: 20px;
        display: block;
        text-align: center
    }
}

@media (max-width:479px) {
    .joinpanel_wrapper {
        padding-right: 15px;
        padding-left: 15px
    }
}

.joinpanel_text {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    padding-right: 15px
}
.joinpanel_text .hide-desktop {
	display: none;
}

.joinpanel_text.mobile {
    display: none
}

@media (max-width:1023px) {
    .joinpanel_text {
        margin-bottom: 12px;
        padding-right: 0;
        font-size: 16px;
        line-height: 24px
    }
}

@media (max-width:767px) {
    .joinpanel_text {
        font-size: 14px;
        line-height: 22px
    }

    .joinpanel_text.desktop {
        display: none
    }

    .joinpanel_text.mobile {
        display: block
    }
}

@media (max-width:479px) {
    .joinpanel_text {
        font-size: 12px;
        line-height: 22px
    }
}

.joinpanel_buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -4px
}

.joinpanel_buttons .button {
    margin: 0 4px;
    height: 40px;
    font-size: 11px;
    line-height: 40px;
    letter-spacing: .25em;
    border: 0
}

.joinpanel_buttons .mobile {
    display: none
}

@media (max-width:1023px) {
    .joinpanel_buttons {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media (max-width:767px) {
    .joinpanel_buttons .mobile {
        display: inline
    }

    .joinpanel_buttons .desktop {
        display: none
    }
}

@media (max-width:479px) {
    .joinpanel_buttons .button {
        height: 36px;
        line-height: 36px;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 -webkit-calc(50% - 12px);
        -ms-flex: 0 0 calc(50% - 12px);
        flex: 0 0 calc(50% - 12px);
        padding-left: 0;
        padding-right: 0
    }
}

body {
    padding-bottom: 88px
}

@media (max-width:1023px) {
    body {
        padding-bottom: 116px
    }
    .joinpanel_text .hide-desktop {
    	display: inline;
    }
    .joinpanel_text .hide-mobile {
    	display: none;
    }
}

@media (max-width:479px) {
    body {
        padding-bottom: 96px
    }
}


