@charset "UTF-8";

/*
 * Breakpoint mixins to ease development conditions
 */
form.slideform-form {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

form.slideform-form .slideform-track {
    overflow: hidden;
    flex: 1;
}

form.slideform-form .slideform-wrapper {
    transition: all 0.5s ease;
}

form.slideform-form .slideform-slide {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    transition: opacity 0.5s ease;
    overflow: auto;
    box-sizing: border-box;
}

form.slideform-form .slideform-slide.active {
    opacity: 1;
}

/* @media screen and (max-width: 767px) {
    form.slideform-form .slideform-slide {
        display: block;
    }
} */

form.slideform-form .slideform-group {
    max-width: 600px;
    padding: 0 15px;
    box-sizing: border-box;
    margin: auto;
    text-align: center;
}

@media screen and (max-width: 767px) {
    form.slideform-form .slideform-group {
        margin: auto;
    }
}

form.slideform-form .slideform-btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 60px;
    padding: 5px 10px;
    font-size: 23px;
    margin-top: 20px;
    border-radius: 6px;
    background: #1864ab;
    border: 1px solid #1864ab;
    color: #fff;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
}

form.slideform-form .slideform-btn:active {
    border-color: #dd6600;
    background: #dd6600;
}

form.slideform-form .slideform-btn:disabled {
    background: #f6f6f6;
    border: 1px solid #f6f6f6;
    color: #E0E0CE;
}

form.slideform-form input:not([type=checkbox]):not([type=radio]):not([type=submit]),
form.slideform-form textarea {
    width: 100%;
    padding: 15px;
    font-size: 20px;
    box-sizing: border-box;
    outline: none;
    border-radius: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

form.slideform-form input[type=text],
form.slideform-form input[type=email],
form.slideform-form input[type=tel],
form.slideform-form input[type=number] {
    height: 50px;
}

form.slideform-form input[type=text].small,
form.slideform-form input[type=email].small,
form.slideform-form input[type=tel].small,
form.slideform-form input[type=number].small {
    height: 40px;
    padding: 10px 15px;
    font-size: 16px;
}

form.slideform-form .options-list label {
    display: block;
    margin: 0;
    padding: 10px 0;
}

form.slideform-form .options-list input[type=checkbox],
form.slideform-form .options-list input[type=radio] {
    position: absolute;
    z-index: -1;
    visibility: hidden;
    width: auto;
    height: auto;
}

form.slideform-form .options-list input[type=checkbox]:checked+span:after,
form.slideform-form .options-list input[type=radio]:checked+span:after {
    opacity: 1;
    transform: scale(1);
}

form.slideform-form .options-list input[type=checkbox]+span,
form.slideform-form .options-list input[type=radio]+span {
    display: inline-block;
    position: relative;
    font-weight: 600;
}

form.slideform-form .options-list input[type=checkbox]+span:before,
form.slideform-form .options-list input[type=radio]+span:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    border: 1px solid #E0E0CE;
}

form.slideform-form .options-list input[type=checkbox]+span:after,
form.slideform-form .options-list input[type=radio]+span:after {
    font-family: "slideform" !important;
    display: inline-block;
    content: "\F00C";
    font-size: 22px;
    color: #05b6c3;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    text-align: center;
    line-height: 30px;
    opacity: 0;
    transform: scale(3);
    transition: all 0.3s ease;
}

form.slideform-form .options-list input[type=radio]+span:before {
    border-radius: 50%;
}

form.slideform-form .options-list input[type=radio]+span:after {
    content: "";
    width: 16px;
    height: 16px;
    background: #05b6c3;
    border-radius: 50%;
    top: 8px;
    left: 8px;
}

form.slideform-form .options-buttons label {
    width: 100%;
    margin: 0 5px 15px 0;
    display: inline-block;
    text-transform: none;
}

form.slideform-form .options-buttons input[type=radio],
form.slideform-form .options-buttons input[type=checkbox] {
    position: absolute;
    left: -9999px;
}

form.slideform-form .options-buttons input[type=radio]:checked+span,
form.slideform-form .options-buttons input[type=checkbox]:checked+span {
    background: #05b6c3;
    border: 1px solid #05b6c3;
    color: #fff;
}

form.slideform-form .options-buttons input[type=checkbox]+span,
form.slideform-form .options-buttons input[type=radio]+span {
    font-size: 16px;
    line-height: 20px;
    display: inline-block;
    /*   box-shadow: 0 12px 15px rgb(140 152 164 / 10%);
 */
    background-clip: border-box;
    background-color: #fff;
    background-color: #f7faff;
    border: .0625rem solid rgba(231, 234, 243, .7);
    border-radius: .75rem;
    padding: 5px 20px;
    width: auto;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-weight: 600;
}

form.slideform-form .options-buttons input[type=checkbox]+span:not(.active):hover,
form.slideform-form .options-buttons input[type=radio]+span:not(.active):hover {
    background: #1864ab;
    color: #fff;
}

form.slideform-form label.error {
    color: #fff;
    background-color: #e26771;
    border-color: #e26771;
    position: relative;
    padding: .25rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    text-align: center;
    font-size: 14px;
    text-transform: none;
    top: 5px;
    left: 0;
    display: none;
}

form.slideform-form .slideform-condition {
    display: none;
}

form.slideform-form .slideform-footer {
    width: 100%;
    background: #fff;
    padding: 0 15px;
    border-top: 1px solid #f6f6f6;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    position: fixed;
    bottom: 0;
}

form.slideform-form .slideform-footer .slideform-btn {
    height: 30px;
    display: inline-block;
    line-height: 30px;
    font-size: 20px;
    margin: 0 5px;
}

form.slideform-form .slideform-progress-bar {
    height: 10px;
    border-radius: 5px;
    max-width: 200px;
    background: #f6f6f6;
    display: inline-block;
    overflow: hidden;
    line-height: 0;
    flex: 1;
}

form.slideform-form .slideform-progress-bar span {
    display: inline-block;
    width: 0%;
    height: 100%;
    background: #1864ab;
    transition: all 0.5s ease;
}

@font-face {
    font-family: "slideform";
    src: url("../fonts/slideform.eot?p7vt47");
    src: url("../fonts/slideform.eot?p7vt47#iefix") format("embedded-opentype"), url("../fonts/slideform.ttf?p7vt47") format("truetype"), url("../fonts/slideform.woff?p7vt47") format("woff"), url("../fonts/slideform.svg?p7vt47#slideform") format("svg");
    font-weight: normal;
    font-style: normal;
}



.icon-check:before {
    content: "\F00C";
}

.icon-close:before {
    content: "\F00D";
}

.icon-remove:before {
    content: "\F00D";
}

.icon-times:before {
    content: "\F00D";
}

.icon-chevron-left:before {
    content: "\F053";
}

.icon-chevron-right:before {
    content: "\F054";
}

.icon-chevron-up:before {
    content: "\F077";
}

.icon-chevron-down:before {
    content: "\F078";
}

.icon-paper-plane:before {
    content: "\F1D8";
}

.icon-send:before {
    content: "\F1D8";
}



.card {
    border: none;
    position: relative;
    width: 700px;
    height: 700px;
    overflow: hidden;
    background-color: transparent;
    box-shadow: none;
}

.disc-placeholder {
    position: relative;
}

.play-button {
    left: 50%;
    background: #1864ab;
    border-radius: 5px;
    padding: 5px 10px;
    border: 0;
    outline: 0;
    cursor: pointer;
    color: white;
    font-size: 24px;
    text-align: center;
    transition: all 0.5s ease-in-out;
}

.play-button:hover {
    background: #2600d1;
}

.playing .play-button {
    background: #292735;
    color: #383749;
}

.info {
    position: relative;
    padding: 0 20px;
    font-weight: 300;
    float: left;
    width: 280px;
    z-index: 20;
}

.info__band {
    font-weight: bold;
}

.progress {
    width: 500px;
    height: 420px;
    top: 0;
    left: 100px;
    z-index: 0;
    background-color: transparent;
}

.progress__bar {
    background-color: #24232f;
    position: absolute;
    top: 0;
    left: 100px;
    width: 0%;
    height: 420px;
    transition: width 0.95s linear;
}

.baseline {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    position: absolute;
    top: 120px;
    left: 120px;
    opacity: 0;
    background: magenta;
}

.playing .baseline {
    -webkit-animation: bounce 8275.8620689655ms linear 32;
    animation: bounce 8275.8620689655ms linear 32;
}


.min-height {
    min-height: 570px
}

.riffs {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    position: absolute;
    top: 120px;
    left: 120px;
    opacity: 0;
    background: cyan;
}

.playing .riffs {
    -webkit-animation: bounce 1034.4827586207ms linear 32 17068.9655172414ms, bounce 1034.4827586207ms linear 16 74482.7586206897ms, bounce 1034.4827586207ms linear 16 107586.2068965517ms, bounce 1034.4827586207ms linear 60 157241.3793103448ms;
    animation: bounce 1034.4827586207ms linear 32 17068.9655172414ms, bounce 1034.4827586207ms linear 16 74482.7586206897ms, bounce 1034.4827586207ms linear 16 107586.2068965517ms, bounce 1034.4827586207ms linear 60 157241.3793103448ms;
}

.page-link {
    margin-left: 0;
    border: none;
    background-color: transparent;
    padding: .5rem .80rem;
    color: #1864ab;
}

.page-link:hover {
    background-color: transparent;
    color: #1864ab;
}

.page-item {
    margin-left: 0;
    margin-right: 0;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #1864ab;
    border-color: #000;
    border-radius: 20px;
    margin-right: 5px;
}

.kicks {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    position: absolute;
    top: 120px;
    left: 120px;
    opacity: 0;
    background: yellow;
}

.navigation {
    margin: 0 auto;
}

.playing .kicks {
    -webkit-animation: bounce 517.2413793103ms linear 64 33103.4482758621ms, bounce 517.2413793103ms linear 64 91034.4827586207ms, bounce 517.2413793103ms linear 64 190344.8275862069ms;
    animation: bounce 517.2413793103ms linear 64 33103.4482758621ms, bounce 517.2413793103ms linear 64 91034.4827586207ms, bounce 517.2413793103ms linear 64 190344.8275862069ms;
}

.piano {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    position: absolute;
    top: 120px;
    left: 120px;
    opacity: 0;
    background: transparent;
    border: 2px solid #fff;
}

.playing .piano {
    -webkit-animation: bounce 2068.9655172414ms linear 128, color-rhythm 8275.8620689655ms linear infinite;
    animation: bounce 2068.9655172414ms linear 128, color-rhythm 8275.8620689655ms linear infinite;
}

.slideform-webhook {
    margin: auto;
}

form.slideform-form .slideform-group.slideform-webhook {
    padding-top: 0;
    margin: 0 auto;
}

.slideform-webhook h2 {
    margin: 20px 0;
}

.test-start {
    display: none;
}

.cover {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    position: absolute;
    top: 120px;
    left: 120px;
    opacity: 0;
    background: transparent;
    overflow: hidden;
    opacity: 0.5;
    transition: all 0.5s ease-in-out;
}

.cover img {
    width: 100%;
    height: auto;
}

.playing .cover {
    opacity: 1;
    -webkit-animation: around-the-world 8275.8620689655ms linear 128;
    animation: around-the-world 8275.8620689655ms linear 128;
}


@-webkit-keyframes bounce {
    0% {
        transform: scale(0.2);
        opacity: 0;
    }

    20% {
        opacity: 0.33;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

@keyframes bounce {
    0% {
        transform: scale(0.2);
        opacity: 0;
    }

    20% {
        opacity: 0.33;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

@-webkit-keyframes color-rhythm {
    0% {
        border-color: cyan;
    }

    25% {
        border-color: magenta;
    }

    50% {
        border-color: yellow;
    }

    100% {
        border-color: lime;
    }
}

@keyframes color-rhythm {
    0% {
        border-color: cyan;
    }

    25% {
        border-color: magenta;
    }

    50% {
        border-color: yellow;
    }

    100% {
        border-color: lime;
    }
}

@-webkit-keyframes around-the-world {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes around-the-world {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}




/* CUSTOM CSS */

.audio-control-desc {
    text-align: center;
    width: 100%;
}

.row h1 {
    font-size: 2rem;
}

html,
body {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

form.slideform-form .slideform-progress-bar {
    max-width: 100%;
}

.container-sm {
    max-width: 750px;
    height: 700px;
    position: relative;
}


.gist .gist-file {
    margin-top: 40px;
}

.gist .gist-meta {
    display: none !important;
}

.options.options-buttons {
    margin-top: 20px;
}


form.slideform-form {
    opacity: 1;
}

form.slideform-form .options-buttons input[type=checkbox]+span,
form.slideform-form .options-buttons input[type=radio]+span {
    width: 100%;
    font-size: 22px;
    line-height: 45px;
}

form.slideform-form .slideform-slide.slideform-center {
    margin-left: 0%;
    margin-top: -50px;
    position: relative;
    height: 100vh !important;
}


form .slideform-btn-submit {
    display: none;
}

.slideform-group .slideform-btn-next {
    display: none;
}

#slide-start .slideform-btn-next {
    display: block !important;
}

.slide-description {
    text-align: center;
}

.slideform-hide {
    display: none;
}

.slideform-wrapper {
    align-items: center;
    justify-content: center;
}

.slide-question {
    opacity: 0;
}

.slide-question h5 {
    text-align: center;
}

.slideform-show {
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 1s;
}

.fa-play {
    margin-top: 18px;
    margin-left: 5px;
}

.fa-pause {
    margin-top: 19px;
    margin-left: 0px;
}

.slide-volume {
    margin: 0 auto;
}

#test-start {
    border-radius: 5px;
    margin: 100px 0 auto;
    width: 350px;
    height: 60px;
    z-index: 9999;
}

.waves {
    position: absolute;
    width: 650px;
    height: 700px;
    margin: 0 auto;
    z-index: -1;
    margin-top: 100px;
}

.waves>div {
    left: 200px;
    top: 200px;
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


@media only screen and (min-width: 1025px) {
    .container-hearing-test {
        max-width: 550px;
        height: 500px;
        position: relative;
    }
}

@media only screen and (max-width: 1024px) {

    * {
        overflow: hidden !important;
    }

    h1 {
        font-size: 1.5rem;
    }

    .audio-control-desc {
        padding: 0 30px 0 60px;
    }

    .form-control {
        height: 20px !important;
    }

    .form-group label {
        margin-bottom: 0;
    }

    .slideform-group {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;
        margin-top: -20px !important;
    }

    form.slideform-form label.error {
        color: #e26771 !important;
        height: 17px;
        background: #fff;
        color: #000;
        top: 0;
        width: 100%;
        font-size: 10px;
        margin-bottom: 0 !important;
    }

    form.slideform-form .options-buttons input[type=checkbox]+span,
    form.slideform-form .options-buttons input[type=radio]+span {
        width: 100%;
        font-size: 20px;
        line-height: 30px;
    }

    .form-group {
        margin-bottom: 0;
        margin-top: 10px;
    }

    .container-sm {
        padding: 0px;
    }

    form.slideform-form .slideform-progress-bar {
        max-width: 100%;
    }

    .slideform-webhook {
        width: auto;
    }

    .slideform-group #privacy-error {
        width: 100%;
        position: absolute;
        top: 20px;
    }

    .slideform-group #send-form-hearing-test {
        margin-top: 20px !important;
    }

    .waves>div {
        left: 60px;
        top: 150px;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
    }

    #start-button {
        bottom: 0;
        position: absolute;
    }

    button.slideform-btn.slideform-btn-next {
        bottom: 0;
        left: 0;
        border-radius: 0;
    }

    .navigation {
        position: absolute;
        top: 20px;
        width: 175px;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .slideform-slide {
        background-size: contain !important;
        background-position: bottom;
        background-repeat: no-repeat;
    }

    form.slideform-form .options-buttons label {
        margin: 0 5px -15px 0;
        min-height: 1px;
        padding: 0.25rem 0.55rem 0.80rem 0.55rem;
    }

    #test-start {
        margin: 0 0 auto;
    }

}