.top-panel-quiz .text {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 15px;
}
.top-panel-quiz .text * {
    color: white;
    z-index: 1;
}
.top-panel-quiz .text span {
    width: calc(100% - 137px);
    max-width: 305px;
}


.top-panel-quiz .layer {
    width: 100%;
    height: 100%;
    position: relative;
    background: #004288;
}
.top-panel-quiz .layer .right {
    position: absolute;
    right: 0;

    width: calc(100% * (477 / 1910));
    height: auto;
}
.top-panel-quiz .layer .left {
    position: absolute;
    left: 0;

    width: calc(100% * (462 / 1910));
    height: auto;
}

.top-panel-quiz a {
    font-weight: normal;
    position: relative;
    padding: 0 20px;
    border: 1px solid #ffffff;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -webkit-transition-duration: 300ms;
    -moz-transition-duration: 300ms;
    -ms-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
    z-index: 1;
    display: inline-block;
    overflow: hidden;
    text-transform: none;
    text-decoration: none !important;
    color: #ffffff;

    height: 35px;
    line-height: 33px;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
    border-radius: 30px;

    width: 257px;
    margin-left: 50px;
}

.top-panel-quiz a:hover {
    color: #004288;
    border-color: transparent;
}

.top-panel-quiz a:before {
    z-index: -1;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition-duration: 300ms;
    -moz-transition-duration: 300ms;
    -ms-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
    height: 0;
    background: #ffffff;
    content: "";
}
.top-panel-quiz a:hover:before {
    height: 100%;
}

@media screen and (max-width: 630px) {

    .top-panel-quiz a {
        width: 127px;
        margin-left: 10px;
    }
}