.button-site {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    border: none;
    text-align: center;
    display: inline-block;
    background-image: none;
    background-color: transparent;
    outline: none;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    color: #fff;
    line-height: 1;
    border-width: 0 0 5px 0;
    border-style: solid;
    padding: .5em 1.1em;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;

    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;

    color: #fff !important;
    cursor: pointer;
}

.button-site:active {
    -webkit-transform: translateY(4px);
    -moz-transform: translateY(4px);
    -ms-transform: translateY(4px);
    -o-transform: translateY(4px);
    transform: translateY(4px);
}


.button--blue {
    background-color: #0354d9;
    border-color: #022d74;
}
.button--blue:hover,
.button--blue:focus,
.button--blue:active {
    background-color: #0241a7;
    color: #fff;
}


.button--red {
    background-color: #ff3974;
    border-color: #d2003f;
}
.button--red:hover,
.button--red:focus,
.button--red:active {
    background-color: #fb004b;
    color: #fff;
}


.button--green {
    background-color: #9ac432;
    border-color: #6d8b23;
}
.button--green:hover,
.button--green:focus,
.button--green.active {
    background-color: #7a9b28;
    color: #fff;
}

.button--blue-dark {
    background-color: #2885ab;
    border-color: #154558;
}
.button--blue-dark:hover,
.button--blue-dark:focus,
.button--blue-dark.active {
    background-color: #1e6582;
    color: #fff;
}

.signup-button-welcome {
    background: #fb4977;
    padding: 8px;
    display: inline-block;
    font-size: 24px;
    color: #fff;
    text-align: center;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 5px 0 #cd0e3f;
    -moz-box-shadow: 0 5px 0 #cd0e3f;
    -ms-box-shadow: 0 5px 0 #cd0e3f;
    -o-box-shadow: 0 5px 0 #cd0e3f;
    box-shadow: 0 5px 0 #cd0e3f;
}

.signup-button-welcome span {
    border: 3px dotted #fff200;
    display: inline-block;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    padding-left: 50px;
    padding-right: 50px;
    text-shadow: 0 2px #cd0e3f;
    line-height: 2.2;
}


.button-site.disabled {
    background-color: #9E9E9E !important;
    border-color: #6d6262 !important;


}
.button-site.disabled:active {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}


.btn-v {
    z-index: 99;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.62);
    background: #f44336;
    cursor: pointer;
    transition: all .3s;
    color: #fff !important;


    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 18px;
}