html,
body {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
}

h1 {
    text-align: center;
    margin: 1.5em 0;
    font-size: 20px;
    letter-spacing: 0.07em;
    line-height: 29px;
    text-transform: uppercase;
    color: #363a3f;
}

.container {
    margin-top: 0px;
}

.page-header {
    padding-top: 5px;
}

.header-text {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    letter-spacing: 0.07em;
    line-height: 29px;
    text-transform: uppercase;
    color: #363a3f;
}

#voxygen_logo {
    width: 120px;
    float: left;
    position: absolute;
}

.btn-generic,
.btn-generic:hover {
    border-collapse: collapse;
    color: #333333;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    -webkit-appearance: button;
    background: #ffffff;
    border: 2px solid #ffffff;
    box-sizing: border-box;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
    border-radius: 124px;
    padding: 6px 12px 6px 12px;
    vertical-align: middle;
    font-weight: bold;
    cursor: pointer;
    height: 35px;
    padding-left: 20px;
    padding-right: 20px;
    text-decoration: none;
}

.btn-generic-simple,
.btn-generic-simple:hover {
    border-collapse: collapse;
    color: #41A62B;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    -webkit-appearance: button;
    background: #ffffff;
    border: 2px solid #ffffff;
    box-sizing: border-box;
    box-shadow: 0px 0px 3px rgba(65, 166, 43, 1);
    border-radius: 6px;
    padding: 2px 6px 2px 6px;
    vertical-align: middle;
    font-weight: bold;
    cursor: pointer;
    height: 32px;
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
}

.token-colored-link {
    cursor: pointer;
    text-decoration: none;
    color: #41A62B;
}

.token-colored-link:hover {
    text-decoration: underline;
    color: #41A62B;
}

.errorlist {
    width: 100%;
    text-align: center;
    font-family: 'Roboto', sans-serif, arial;
    letter-spacing: 0.8px;
    font-size: 16px;
    color: #E8511E;
    padding-top: 10px;
    padding-bottom: 16px;
    line-height: 32px;
    vertical-align: middle;
}

.col {
    margin: 0px;
}

.btn-cancel,
.btn-cancel:hover,
.btn-ok,
.btn-ok:hover {
    text-align: center;
    font-size: 0.9rem;
    color: inherit;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    line-height: 1.92em;
    border: 2px solid #ffffff;
    background-color: #FFFFFF;
    box-sizing: border-box;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.9);
    border-radius: 124px;
    font-weight: bold;
    padding: 5px;
    padding-left: 35px;
    padding-right: 20px;
    text-decoration: none;
    background: no-repeat 15px 50%;
    outline: none;
}

.btn-cancel,
.btn-cancel:hover {
    background-image: url(../img/cancel_red.png);
}

.btn-ok,
.btn-ok:hover {
    background-image: url(../img/confirm_green.png);
}

.phoneme_button {
    background: #ffffff;
    border: 2px solid #ffffff;
    box-sizing: border-box;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.7);
    border-radius: 6px;
    padding: 0px;
    vertical-align: middle;
    height: 30px;
    font-weight: bold;
    margin: 1.6px;
}

.remove-form-row {
    width: 32px;
}

table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc_disabled:before {
    margin-bottom: -9px;
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
    margin-bottom: -9px;
}

.jumbotron {
    background-color: #FFFFFF;
}

.required {
    color: red;
    margin-left: 2px;
}

/* Clearable text inputs */

.clearable {
    position: relative;
    display: inline-block;
}

.clearable input[type=text] {
    padding-right: 24px;
    width: 100%;
    box-sizing: border-box;
}

.clearable__clear {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 8px;
    font-size: 1.8em;
    user-select: none;
    cursor: pointer;
    color: gray;
}

.clearable input::-ms-clear {
    /* Remove IE default X */
    display: none;
}

.btn-ripple {
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all ease-in-out .5s;
}

.btn-ripple::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 25%;
    height: 100%;
    width: 50%;
    background-color: #000;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transition: all ease-in-out 1s;
    transform: scale(5, 5);
}

.btn-ripple:active::after {
    padding: 0;
    margin: 0;
    opacity: .2;
    transition: 0s;
    transform: scale(0, 0);
}

#contact {
    font-weight: 400;
    text-align: left;
    line-height: 14px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: transparent;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    color: black;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}