/*
/	Solution web ideveloppement
/	http://www.ideveloppement.fr
/
*/

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}

/* Basic HTML
------------------------------------------------------------------------*/
:root {
    --vh: 1vh;
}
body {
    min-width: 360px;
    -webkit-text-size-adjust: 100%;
    /*noinspection CssUnknownProperty*/
    text-size-adjust: 100%;
}
p, h1, h2, h3, h4, h5, h6, ul, ol {
    margin: 0 0 13px;
}
h1 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}
h2 {
    font-size: 14px;
}
h3 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}
a {
    text-decoration: none;
}
a:hover,
a:focus {
    text-decoration: underline;
}
ol {
    list-style: decimal;
    padding: 0 0 0 35px;
}
ul {
    list-style: disc;
    padding: 0 0 0 35px;
}
strong {
    font-weight: bold;
}
em {
    font-style: italic;
}
hr {
    border: 0 #ccc solid;
    border-top-width: 1px;
    clear: both;
    height: 0;
}
table {
    width: 100%;
}
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
input[type="button"],
input[type="reset"],
input[type="submit"],
button,
textarea {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-appearance: none;

    box-shadow: none;
    outline: 0;
}
textarea {
    overflow: auto;
    resize: none;
}
input[type="button"],
input[type="reset"],
input[type="submit"],
button {
    cursor: pointer;
}

html { box-sizing: border-box; }
*, *:before, *:after {
    box-sizing: inherit;
}

img {
    height: auto;
    max-width: 100%;
}

/* clearfix */
.cf { zoom: 1; }
.cf:before, .cf:after { content: ""; display: table; }
.cf:after { clear: both; }

.wrapper {
    padding: 0 10px;
    margin: 0 auto;
    max-width: 998px;
}
.wrapper:after {
    content: '';
    display: table;
    clear: both;
}

.nodisplay {
    display: none;
}
.rte,
.disposition {
    overflow: hidden;
    margin: 0 -15px;
    font-size: 0;
}
.rte .col,
.disposition .col {
    padding: 0 15px;
    display: inline-block;
    vertical-align: top;
    font-size: 13px;
    width: 100%;
}

.caps {
    text-transform: uppercase;
}

.img-left,
.img-right {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.alert {
    position: relative;
    font-size: 12px;
    line-height: 18px;
    min-height: 40px;
    padding: 10px 55px;
    margin: 0 0 20px;
}
.alert:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: url('../img/alert-icons.png') no-repeat;
}
.alert * {
    margin: 0;
}
.alert .label {
    font-size: 14px;
    text-transform: uppercase;
}
.alert-success {
    background: #e9f5cc;
}
.alert-success:before {
    background-color: #91ce00;
    background-position: 0 50%;
}
.alert-warning {
    background: #f7e5cf;
}
.alert-warning:before {
    background-color: #f58c03;
    background-position: -40px 50%;
}
.alert-danger {
    background: #f9cccc;
}
.alert-danger:before {
    background-color: #e00000;
    background-position: -40px 50%;
}

.link-btn,
button {
    display: inline-block;
    vertical-align: middle;
    border: 0;
    padding: 0 25px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
}
.link-btn:hover,
.link-btn:focus {
    text-decoration: none;
}
button.btn-grey,
.link-btn.btn-grey {
    color: #333;
    background: #e8e8e8;
}
.link-btn.link-btn-right {
    background-image: url('../img/btn-arrow-mask.png');
    background-repeat: no-repeat;
    background-position: 100% -30px;
}

.btn-link {
    background: none;
    text-transform: none;
    font-size: inherit;
    padding: 0;
    height: auto;
    line-height: 1.5;
    font-weight: normal;
    display: inline;
    vertical-align: baseline;
    text-align: left;
}
.btn-link:hover,
.btn-link:focus {
    text-decoration: underline;
}

table th,
table td {
    border: 1px solid #ccc;
    padding: 5px 10px;
}
table th {
    background: #eee;
    font-weight: bold;
}

/* Header
------------------------------------------------------------------------*/
.header h1 {
    margin: 0;
}
.header .logo-wrapper {
    text-align: center;
}
.header .logo {
    max-width: 420px;
    width: 100%;
}

.header .main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}
.header .main-nav a {
    display: block;
}

.player-wrapper {
    position: fixed;
    z-index: 20;
    bottom: 0;
    left: 0;
    width: 66.6666666666%;
}
.no-selection-summary .player-wrapper {
    width: 100%;
}
.no-selection-summary .player-wrapper::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
.player {
    text-align: left;
    padding: 10px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}
.player-btn-play {
    float: left;
    border: 0;
    padding: 0;
    width: 35px;
    height: 35px;
}
.player-title {
    margin: 0 0 0 55px;
    font-size: 10px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.player-bar {
    margin: 4px 0 0 55px;
    overflow: hidden;
}
.player-current-time,
.player-total-time {
    font-size: 10px;
    color: #888;
}
.player-current-time {
    float: left;
}
.player-total-time {
    float: right;
}
.player-bar-bg {
    position: relative;
    margin: 5px 35px 5px;
    height: 6px;
    background: #eee;
    cursor: pointer;
    border-radius: 3px;
}
.player-bar-played {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 6px;
    border-radius: 3px;
}
.player-bar-handle {
    position: absolute;
    top: 0;
    left: 0;
    background: #888;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin-left: -6px;
    margin-top: -3px;
}

/* Forms
------------------------------------------------------------------------*/
.hiddenField {
    display: none;
}

::-webkit-input-placeholder {
    color: #888;
    opacity: 1;
}
:-moz-placeholder {
    color: #888;
    opacity: 1;
}
/* Firefox 18- */
::-moz-placeholder {
    color: #888;
    opacity: 1;
}
/* Firefox 19+ */
:-ms-input-placeholder {
    color: #888;
    opacity: 1;
}
.placeholder {
    color: #888;
    opacity: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.select-like {
    clear: both;
    display: block;
    position: relative;
}

.select-like span {
    background: #fff;
    border: 1px solid #ccc;
    display: block;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    padding: 0 30px 0 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.select-like span:after {
    content: '';
    background: url('../img/select-like-arrow.png');
    width: 14px;
    height: 8px;
    position: absolute;
    top: 11px;
    right: 8px;
}
.select-like .default {
    color: #888;
}

.select-like select {
    height: 100%;
    left: 0;
    min-height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.form-row {
    margin: 0 0 13px;
}
.form-row .control-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.form-row .control-label em {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-style: italic;
    font-size: 10px;
    text-transform: none;
}
.form-row input[type="text"],
.form-row input[type="password"],
.form-row input[type="datetime"],
.form-row input[type="datetime-local"],
.form-row input[type="date"],
.form-row input[type="month"],
.form-row input[type="time"],
.form-row input[type="week"],
.form-row input[type="number"],
.form-row input[type="email"],
.form-row input[type="url"],
.form-row input[type="search"],
.form-row input[type="tel"],
.form-row input[type="color"],
.form-row input[type="button"],
.form-row input[type="reset"],
.form-row input[type="submit"],
.form-row textarea {
    border: 1px solid #ccc;
    height: 30px;
    width: 100%;
    padding: 5px 10px;
    font: 13px/20px 'Open Sans', sans-serif;
}
.form-row textarea {
    height: 140px;
}
.submit {
    overflow: hidden;
    margin: 0 0 13px;
}
.submit button {
    float: right;
}

.form-row.error .control-label {
    color: #e00000;
}
.form-row.error input[type="text"],
.form-row.error input[type="password"],
.form-row.error input[type="datetime"],
.form-row.error input[type="datetime-local"],
.form-row.error input[type="date"],
.form-row.error input[type="month"],
.form-row.error input[type="time"],
.form-row.error input[type="week"],
.form-row.error input[type="number"],
.form-row.error input[type="email"],
.form-row.error input[type="url"],
.form-row.error input[type="search"],
.form-row.error input[type="tel"],
.form-row.error input[type="color"],
.form-row.error input[type="button"],
.form-row.error input[type="reset"],
.form-row.error input[type="submit"],
.form-row.error textarea {
    border-color: #e00000;
}

/* Content
------------------------------------------------------------------------*/
.big-wrapper {
    padding-bottom: 85px;
}
.content {
    margin: 0 0 30px;
}
.content:after {
    content: '';
    display: table;
    clear: both;
}
.main-col {
    padding: 40px 0 0;
}
.section-title {
    position: relative;
    overflow: hidden;
    margin: 0 0 13px;
}
.section-title h2 {
    margin: 0;
}

.side-bar {
    margin-top: 30px;
    margin-bottom: -30px;
}
.side-bar a {
    display: block;
}
.side-bar a:hover,
.side-bar a:focus {
    text-decoration: none;
}
.side-bar .block {
    margin: 0 0 30px;
}
.side-bar .block h2,
.side-bar .block-selection .block-selection-toggle {
    color: #fff;

    padding: 10px 15px;
    margin: 0;
}
.side-bar .block-body {
    border: 1px solid #ccc;
    overflow: hidden;
    font-size: 14px;
}
.side-bar .block h2 + .block-body {
    border-top: 0;
}

.side-bar .block-selection {
    position: fixed;
    z-index: 10;
    bottom: 0;
    left: 66.6666666666%;
    width: 33.3333333333%;
    margin-bottom: 0;
}
.side-bar .block-selection::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: -200%;
    right: 0;
    height: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
.side-bar .block-selection .block-selection-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px;
    height: 55px;
    cursor: pointer;
    line-height: 1.5;
}
.side-bar .block-selection .block-selection-open {
    width: 100%;
}
.side-bar .block-selection .block-selection-close {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 33.3333333333%;
}
.side-bar .block-selection .block-selection-inner {
    display: none;

    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.block-selection .block-body {
    padding: 20px 20px 7px;
}
.block-selection .empty {
    font-size: 12px;
    font-weight: bold;
}
.block-selection .items {
    list-style: none;
    padding: 0;
    margin: 0;
}
.block-selection .items li {
    margin: 0 0 20px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
}
.block-selection .items li:first-child {
    padding-top: 0;
    border-top: 0;
}
.block-selection .items .item {
    position: relative;
    padding-right: 70px;
}
.block-selection .items .label {
    display: block;
    text-transform: uppercase;
}
.block-selection .items .name,
.block-selection .items .subname {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
}
.block-selection .items .text-full,
.block-selection .items .text {
    margin: 0;
}
.block-selection .items .text {
    display: none;
}
.block-selection .items .text-full {
    padding-right: 40px;
}
.block-selection .items .actions {
    position: absolute;
    top: 0;
    right: 0;
    line-height: 18px;
}
.block-selection .items .actions button {
    width: 30px;
    height: 30px;
    padding: 0;
    text-indent: -9999em;
    background: url('../img/icons-btn.png');
}
.block-selection .items .actions .btn-play {
    background-position: 0 0;
}
.block-selection .items .actions .btn-play.playing {
    background-position: -120px 0;
}
.block-selection .items .actions .btn-delete-from-selection {
    background-position: -90px 0;
}
.block-selection .btn-continue {
    width: 100%;
    margin: 0 0 13px;
}

.selection-open {
    overflow-y: hidden;
    position: relative;
    height: 100%;
}
.selection-open .side-bar .block-selection {
    bottom: 55px;
    left: 0;
    width: 100%;
    height: calc(100 * var(--vh) - 50px);
    background: #fff;
}
.selection-open .side-bar .block-selection::before {
    content: none;
}
.selection-open .side-bar .block-selection .block-selection-inner {
    display: block;
}
.selection-open .side-bar .block-selection .block-selection-open {
    display: none;
}
.selection-open .side-bar .block-selection .block-selection-close {
    display: block;
}

.block-faq .block-body img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.block-faq .block-body p {
    padding: 15px 20px;
    margin: 0;
    color: #fff;
}
.block-faq .block-body strong {
    display: block;
    text-transform: uppercase;
}

.block-partner .block-body img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.block-partner .block-body p {
    padding: 15px 10px;
    margin: 0;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.block-new-products {
    position: relative;
}
.block-new-products .wrap {
    position: relative;
    overflow: hidden;
}
.block-new-products .wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    transition: transform 0.25s;
}
.block-new-products .wrap li {
    flex: 0 0 auto;
    width: 100%;
    height: 222px;
}
.block-new-products .wrap img {
    display: block;
    width: 222px;
    height: 222px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}
.block-new-products .prev,
.block-new-products .next {
    position: absolute;
    top: 130px;
    width: 30px;
    height: 30px;
    padding: 0;
    text-indent: -9999em;
    background-repeat: no-repeat;
    background-position: 50%;
}
.block-new-products .prev {
    left: 0;
    background-image: url('../img/new-products-nav-prev.png');
}
.block-new-products .next {
    right: 0;
    background-image: url('../img/new-products-nav-next.png');
}

.loader {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 0;
    height: 5px;
}

/* Home
------------------------------------------------------------------------*/
.home-main-banner .img img {
    display: block;
    width: 100%;
}
.home-main-banner .text .link-container {
    margin-bottom: 0;
}

.home-blocks {
    overflow: hidden;
}
.home-blocks .block {
    overflow: hidden;
    margin: 0 0 30px;
}
.home-blocks .block a {
    display: block;
    color: #333;
    overflow: hidden;
}
.home-blocks .block a:hover,
.home-blocks .block a:focus {
    text-decoration: none;
}
.home-blocks .block h3 {
    margin: 0 0 7px;
}
.home-blocks .block p {
    margin: 0;
}

.home-blocks .row {
    margin: 0 -15px -30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.home-blocks .row + .row {
    margin-top: 40px;
}
.home-blocks .row .block {
    flex: 0 0 auto;
    width: calc(100% - 30px);
    margin-left: 15px;
    margin-right: 15px;
}
.home-blocks .row .block img {
    display: block;
    margin: 0 auto 15px;
}
.home-blocks .row-1 .block {
    padding: 15px;
}

/* Steps
------------------------------------------------------------------------*/
.steps-nav {
    margin: 0 0 15px;
}
.steps-nav ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.steps-nav li {
    position: relative;
    margin: 0 0 7px;
    width: 20%;
    min-width: 120px;
}
.steps-nav li:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 12px;
    left: 0;
    bottom: 12px;
    border-left: 1px solid #ccc;
}
.steps-nav li:first-child:before {
    content: none;
}
.steps-nav a {
    display: block;
    position: relative;
    height: 108px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.steps-nav a:hover,
.steps-nav a:focus {
    text-decoration: none;
}
.steps-nav .active a:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    width: 0;
    height: 0;
    border-top: 7px solid;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}
.steps-nav span {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    color: #888;
    text-align: center;

    opacity: 0.4;
}
.steps-nav span:before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto 10px;
    background: url('../img/icons-steps.png') no-repeat 0 0;
}
.steps-nav a:hover span,
.steps-nav a:focus span {
    opacity: 1;
}

.steps-nav li:first-child a {
    border-left: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
}
.steps-nav li:last-child a {
    border-right: 1px solid #ccc;
    border-radius: 0 5px 5px 0;
}

.steps-nav li.active a,
.steps-nav li.past a {
    border: 0;
}
.steps-nav li.active:before,
.steps-nav li.active + li:before {
    content: none;
}
.steps-nav li.active span {
    opacity: 1;
    color: #fff;
}
.steps-nav li.past a {
    background: #eee;
}
.steps-nav li.past span {
    opacity: 1;
}

.steps-nav .intro span:before {
    background-position: 0 0;
}
.steps-nav .voice span:before {
    background-position: -32px 0;
}
.steps-nav .music span:before {
    background-position: -64px 0;
}
.steps-nav .text span:before {
    background-position: -96px 0;
}
.steps-nav .validation span:before {
    background-position: -128px 0;
}
.steps-nav .active.intro span:before {
    background-position: 0 -32px;
}
.steps-nav .active.voice span:before {
    background-position: -32px -32px;
}
.steps-nav .active.music span:before {
    background-position: -64px -32px;
}
.steps-nav .active.text span:before {
    background-position: -96px -32px;
}
.steps-nav .active.validation span:before {
    background-position: -128px -32px;
}

.steps-bottom-nav {
    clear: both;
    margin-top: 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px 10px 0;
    overflow: hidden;
}
.steps-bottom-nav:before { /* clearfix */
    content: '';
    display: table;
    clear: both;
}
.steps-bottom-nav .left {
    margin-bottom: 10px;
}
.steps-bottom-nav .right {
    margin-bottom: 10px;
}
.steps-bottom-nav .left .link-btn,
.steps-bottom-nav .left button {
    background-image: url('../img/btn-arrow-mask.png');
    background-repeat: no-repeat;
    background-position: 0 0;
    width: 100%;
}
.steps-bottom-nav .right .link-btn,
.steps-bottom-nav .right button {
    background-image: url('../img/btn-arrow-mask.png');
    background-repeat: no-repeat;
    background-position: 100% -30px;
    width: 100%;
}

.step-section {
    overflow: hidden;
}
.step-section-side .side-block {
    margin: 0 0 30px;
}

.step-section-side-search-toggler {
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
}
.step-section-side-search-container-inner,
.step-section-side-search-container-open .step-section-side-search-toggler {
    display: none;
}
.step-section-side-search-container-open .step-section-side-search-container-inner,
.step-section-side-search-container-open .step-section-side-search-container-inner .step-section-side-search-toggler {
    display: block;
}

.step-section-main {
    position: relative;
}
.step-section-main:after { /* clearfix */
    content: '';
    display: table;
    clear: both;
}

.step-section-main .back-to-top {
    position: absolute;
    bottom: 0;
    right: 0;
    text-indent: -9999em;
    padding: 0;
    width: 30px;
    background-image: url('../img/icons-btn.png');
    background-repeat: no-repeat;
    background-position: -150px 0;
}

/* Step voice
------------------------------------------------------------------------*/
.step-voice .tags {
    margin: 0 0 30px;
}
.step-voice .tags span {
    display: inline-block;
    margin: 0 10px 0 0;
    height: 20px;
    line-height: 20px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0 10px;
}
.step-voice .tags .tag-close {
    background: #f6c70b;
}

.step-voice-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}
.step-voice-list li {
    overflow: hidden;
    min-height: 40px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding-top: 5px;
    padding-right: 100px;
}
.step-voice-list li:nth-child(2n+1) {
    background: #e5e5e5;
}
.step-voice .step-voice-list .tag-close:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background: #f6c70b;
}
.step-voice-list li strong,
.step-voice-list li span {
    margin-bottom: 5px;
}
.step-voice-list .name {
    flex: 0 0 auto;
    width: calc(100% - 50px);
    font-size: 14px;
    text-transform: uppercase;
}
.step-voice-list .gender {
    order: -1;
    flex: 0 0 auto;
    width: 20px;
    margin-left: 20px;
    margin-right: 10px;
    text-indent: -9999em;
    background: url('../img/icons-genders.png') no-repeat;
}
.step-voice-list .gender.female {
    background-position: 0 50%;
}
.step-voice-list .gender.male {
    background-position: -20px 50%;
}
.step-voice-list .langs {
    margin-left: 20px;
    flex: 1 0 0;
}
.step-voice-list .actions {
    position: absolute;
    top: 5px;
    right: 0;
    flex: 0 0 auto;
    font-size: 0;
    padding-left: 10px;
    padding-right: 5px;
}
.step-voice-list .actions button {
    text-indent: -9999em;
    padding: 0;
    width: 30px;
    margin: 0 0 0 10px;
    background-image: url('../img/icons-btn.png');
    background-repeat: no-repeat;
}
.step-voice-list .actions .btn-play {
    background-position: 0 0;
}
.step-voice-list .actions .btn-play.playing {
    background-position: -120px 0;
}
.step-voice-list .actions .btn-add-to-selection {
    background-position: -30px 0;
}
.step-voice-list .actions .btn-delete-from-selection {
    background-position: -90px 0;
}

/* Step music
------------------------------------------------------------------------*/
.step-music {
    margin-top: 20px;
}
.step-music:after { /* clearfix */
    content: '';
    display: table;
    clear: both;
}

.step-music-side .search .form-submit button {
    padding: 0;
    text-indent: -9999em;
    width: 30px;
    background-image: url('../img/icons-btn.png');
    background-repeat: no-repeat;
    background-position: -60px 0;
}
.step-music-side .fulltext {
    float: left;
    width: calc(100% - 30px)
}
.step-music-side .fulltext input {
    border-right: 0;
}
.step-music-side .categories ul {
    list-style: none;
    padding: 0;
}
.step-music-side .categories li {
    margin: 0 0 10px;
}
.step-music-side .categories button {
    display: block;
    width: 100%;
    background: #e5e5e5;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    padding: 4px 10px 5px;
}
.step-music-side .categories .active button {
    background: #888;
    color: #fff;
}
.step-music-side .tags ul {
    list-style: none;
    padding: 0;
    text-align: center;
}
.step-music-side .tags li {
    display: inline;
}
.step-music-side .tags .btn-link {
    font-size: 12px;
}
.step-music-side .tags .btn-more {
    width: 100%;
    text-align: left;
    padding: 0 10px;
}
.step-music-side .tags .btn-more-wrapper {
    margin-right: 60px;
}

.step-music-main {
    overflow: hidden;
}
.step-music-list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: -34px -15px 0;
}
.step-music-list li {
    display: inline-block;
    border-top: 1px solid #ccc;
    padding: 20px 15px 0;
    width: 168px;
    margin: 13px 0 0;
    text-align: center;
    position: relative;
}

@supports (display: grid) {
    .step-music-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
    }
    .step-music-list li {
        width: auto;
    }
}

.step-music-list .img {
    position: relative;
    max-width: 138px;
    margin-left: auto;
    margin-right: auto;
}
.step-music-list img {
    display: block;
    margin: 0 0 10px;
    width: 138px;
    height: 138px;
}
.step-music-list .artist,
.step-music-list .music-name,
.step-music-list .note {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 4px;
    height: 20px;
}
.step-music-list .artist {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}
.step-music-list .music-name {
    font-size: 12px;
    text-transform: uppercase;
}
.step-music-list .note {
    color: #888;
    font-size: 11px;
}
.step-music-list .price {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 14px;
    color: #fff;
    padding: 2px 5px;
}
.step-music-list li:nth-child(n+4) .price {
    top: 30px;
}
.step-music-list .banner-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 14px;
    color: #fff;
    padding: 2px 5px;
}

.step-music-list .actions {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.step-music-list .actions:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30px;
    right: 30px;
    border-top: 1px solid rgba(255,255,255,0.3);
}
.step-music-list .actions button {
    width: 100%;
    background: none;
    height: 68px;
    line-height: 68px;
    padding: 0;
}
.step-music-list .actions .btn-play.playing {
    position: relative;
    font-size: 0;
    color: transparent;
}
.step-music-list .actions .btn-play.playing:after {
    content: attr(data-playing-text);
    font-size: 14px;
    color: #fff;
}
.step-music-list .actions-toggler {
    background: none;
    padding: 0;
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.step-music-list .actions-toggler[aria-expanded="true"] + .actions {
    display: block;
}

.step-music-main .btn-more {
    width: 100%;
    margin-top: 20px;
}
.step-music-main .btn-more-wrapper {
    margin-right: 60px;
}

/* Step text
------------------------------------------------------------------------*/
.step-text {
    margin-top: 20px;
}
.step-text:after { /* clearfix */
    content: '';
    display: table;
    clear: both;
}
.step-text-side .type ul {
    list-style: none;
    padding: 0;
}
.step-text-side .type li {
    margin: 0 0 10px;
}
.step-text-side .type button {
    display: block;
    width: 100%;
    background: #e5e5e5;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    padding: 5px 10px 4px;
}
.step-text-side .type .active button {
    background: #888;
    color: #fff;
}
.step-text-side .tags ul {
    list-style: none;
    padding: 0;
}

.step-text-main .text-block {
    border-radius: 5px;
    overflow: hidden;
    padding: 10px;
    margin: 0 0 30px;
}
.step-text-main .text-block h2 {
    color: #fff;
}
.step-text-main .text-block .form-row {
    margin: 0;
}
.step-text-main .text-block textarea {
    border: 0;
    border-radius: 5px;
    min-height: 400px;
    height: auto;
    padding: 15px 20px;
    overflow-x: hidden;
}
.step-text-main .text-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.step-text-main .text-suggestions li {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px 20px 7px;
    overflow: hidden;
    margin: 20px 0 0;
}
.step-text-main .text-suggestions li:first-child {
    margin-top: 0;
}
.step-text-main .text-suggestions .title {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0 0 13px;
}
.step-text-main .text-suggestions .hint {
    position: relative;
    font-style: italic;
    color: #fff;
    padding: 10px;
    margin-top: 20px;
}
.step-text-main .text-suggestions .hint:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 15px;
    width: 0;
    height: 0;
    border-bottom: 7px solid;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}
.step-text-main .text-suggestions .actions-toggler {
    background: none;
    padding: 0;
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.step-text-main .text-suggestions .actions {
    display: none;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.step-text-main .text-suggestions .btn-add {
    background: none;
    width: 100%;
    height: 100%;
    line-height: 1.5;
}

.step-text-main .text-suggestions .actions-toggler[aria-expanded="true"] + .actions {
    display: block;
}

.step-text-main .text-suggestions .btn-more {
    width: 100%;
    margin-top: 20px;
}
.step-text-main .text-suggestions .btn-more-wrapper {
    margin-right: 60px;
}

/* Step validation
------------------------------------------------------------------------*/
.step-music-list-validation {
    list-style: none;
    padding: 0;
}
.step-music-list-validation li {
    overflow: hidden;
    min-height: 40px;
    position: relative;
    display: flex;
    padding-top: 5px;
    padding-right: 100px;
}
.step-music-list-validation li:nth-child(2n+1) {
    background: #e5e5e5;
}
.step-music-list-validation img {
    flex: 0 0 auto;
    width: 69px;
    margin-left: 5px;
    margin-bottom: 5px;
}
.step-music-list-validation .text {
    flex: auto;
    margin-left: 20px;
    margin-bottom: 5px;
    min-width: 0;
}
.step-music-list-validation .artist,
.step-music-list-validation .music-name,
.step-music-list-validation .note {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 5px;
}
.step-music-list-validation .artist {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}
.step-music-list-validation .music-name {
    font-size: 12px;
    text-transform: uppercase;
}
.step-music-list-validation .note {
    font-size: 11px;
}

.step-music-list-validation .actions {
    position: absolute;
    top: 5px;
    right: 0;
    flex: 0 0 auto;
    font-size: 0;
    padding-left: 10px;
    padding-right: 5px;
}
.step-music-list-validation .actions button {
    text-indent: -9999em;
    padding: 0;
    width: 30px;
    margin: 0 0 0 10px;
    background-image: url('../img/icons-btn.png');
    background-repeat: no-repeat;
}
.step-music-list-validation .actions .btn-play {
    background-position: 0 0;
}
.step-music-list-validation .actions .btn-play.playing {
    background-position: -120px 0;
}
.step-music-list-validation .actions .btn-add-to-selection {
    background-position: -30px 0;
}
.step-music-list-validation .actions .btn-delete-from-selection {
    background-position: -90px 0;
}

.step-text-list-validation {
    list-style: none;
    padding: 0;
}
.step-text-list-validation li {
    padding: 5px 5px 5px 20px;
    overflow: hidden;
}
.step-text-list-validation li:nth-child(2n+1) {
    background: #e5e5e5;
}
.step-text-list-validation p {
    margin: 0;
}
.step-text-list-validation .actions {
    text-align: right;
    font-size: 0;
    margin: 0 0 5px;
}
.step-text-list-validation .actions a,
.step-text-list-validation .actions button {
    margin-bottom: 5px;
}
.step-text-list-validation .actions a + a,
.step-text-list-validation .actions a + button,
.step-text-list-validation .actions button + button,
.step-text-list-validation .actions button + a {
    margin-left: 10px;
}
.step-text-list-validation .actions .btn-delete-from-selection {
    text-indent: -9999em;
    padding: 0;
    width: 30px;
    background-image: url('../img/icons-btn.png');
    background-repeat: no-repeat;
    background-position: -90px 0;
}

.step-validation .contact-information {
    margin: 40px 0 0;
    border-top: 1px solid #ccc;
    padding: 25px 0 0;
}

/* Contact
------------------------------------------------------------------------*/
.contact-info {
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
    overflow: hidden;
}
.contact-info .col {
    margin-bottom: 30px;
}
.contact-section {
    overflow: hidden;
}

/* FAQ
------------------------------------------------------------------------*/
.section-faq .faq-block {
    margin: 0 0 40px;
}
.section-faq .faq-list {
    list-style: none;
    padding: 0;
}

.section-faq .faq-list .question {
    margin: 0 0 13px;
}
.section-faq .faq-list .answer {
    overflow: hidden;
    display: none;
}
.section-faq .faq-list .answer-wrap {
    padding: 20px;
    border: 1px solid #ccc;
    margin: 0 0 13px;
}
.section-faq .faq-list .answer p {
    margin: 0;
}

/* Footer
------------------------------------------------------------------------*/
.footer {
    padding: 13px 0;
}
.footer .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer .copy {
    margin: 0;
    color: #fff;
}
.footer .footer-nav {
    margin-bottom: 13px;
}
.footer .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.footer .footer-nav li {
    float: left;
    margin: 0 0 0 20px;
}
.footer .footer-nav li:first-child {
    margin-left: 0;
}
.footer .footer-nav a {
    color: #fff;
    text-transform: uppercase;
}

@media (min-width: 600px) {

    /* Basic HTML
    ------------------------------------------------------------------------*/
    .disposition_1-1 {
        margin: 0 -27px;
    }
    .disposition_1-1 .col {
        width: 50%;
        padding: 0 27px;
    }
    .disposition_1-1-1 .col {
        width: 33.333333%;
    }

    .img-left {
        float: left;
        margin: 0 30px 20px 0;
    }
    .img-right {
        float: right;
        margin: 0 0 20px 30px;
    }

    /* Home
    ------------------------------------------------------------------------*/
    .home-main-banner {
        position: relative;
    }
    .home-main-banner .img {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    .home-main-banner .img img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        object-position: top right;
        object-fit: cover;
    }
    .home-main-banner .text {
        position: relative;
    }
    .home-blocks .row-1 .block {
        padding: 0;
    }
    .home-blocks .row-1 .block > a {
        display: flex;
        align-items: flex-start;
    }
    .home-blocks .row-1 .block img {
        flex: 0 0 auto;
        margin: 0 5px 0 0;
    }
    .home-blocks .row-1 .block .text {
        flex: auto;
        padding: 15px;
    }
    .home-blocks .row-2 .block {
        width: calc((100% - 30px * 2) / 2);
    }
    .home-blocks .row-3 .block {
        width: calc((100% - 30px * 3) / 3);
        max-width: 222px;
    }

    /* Content
    ------------------------------------------------------------------------*/
    .block-faq .block-body,
    .block-partner .block-body {
        display: flex;
    }
    .block-faq .block-body .img,
    .block-partner .block-body .img {
        flex: 0 0 auto;
        padding: 0;
    }
    .block-faq .block-body p,
    .block-partner .block-body p {
        flex: auto;
        display: flex;
        flex-flow: column;
        justify-content: center;
    }

    /* Steps
    ------------------------------------------------------------------------*/
    .steps-bottom-nav .left {
        float: left;
        margin-right: 10px;
    }
    .steps-bottom-nav .right {
        float: right;
        margin-left: 10px;
    }
    .steps-bottom-nav .left .link-btn,
    .steps-bottom-nav .left button,
    .steps-bottom-nav .right .link-btn,
    .steps-bottom-nav .right button {
        width: auto;
    }

    /* Step voice
    ------------------------------------------------------------------------*/
    .step-voice-list li {
        align-items: center;
    }
    .step-voice-list .name {
        width: 150px;
        padding-left: 20px;
    }
    .step-voice-list .gender {
        order: 0;
        margin-right: 0;
    }
    .step-voice-list .langs {
        margin-left: 65px;
    }

    /* Step music
    ------------------------------------------------------------------------*/
    .step-music-side form {
        display: flex;
        flex-wrap: wrap;
        margin-left: -15px;
        margin-right: -15px;
    }
    .step-music-side .side-block {
        flex: 0 0 auto;
        width: 33.3333333333%;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Step text
    ------------------------------------------------------------------------*/
    .step-text-side form {
        display: flex;
        flex-wrap: wrap;
        margin-left: -15px;
        margin-right: -15px;
    }
    .step-text-side .side-block {
        flex: 0 0 auto;
        width: 33.3333333333%;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Footer
    ------------------------------------------------------------------------*/
    .footer .footer-inner {
        flex-direction: row-reverse;
        justify-content: space-between;
    }
    .footer .footer-nav {
        margin-bottom: 0;
    }
}

@media (min-width: 960px) {

    /* Basic HTML
    ------------------------------------------------------------------------*/
    h1 {
        font-size: 24px;
    }

    /* Header
    ------------------------------------------------------------------------*/
    .player-wrapper,
    .no-selection-summary .player-wrapper {
        position: static;
        width: 290px;
    }
    .no-selection-summary .player-wrapper::before {
        content: none;
    }
    .player {
        max-width: 290px;
    }

    /* Content
    ------------------------------------------------------------------------*/
    .big-wrapper {
        padding-bottom: 0;
    }
    .bars-wrapper {
        display: flex;
        align-items: flex-start;
    }
    .main-col {
        padding-top: 30px;
        flex: auto;
    }
    .side-bar {
        flex: 0 0 auto;
        width: 222px;
        margin-left: 30px;
        position: sticky;
        top: 30px;
    }

    .side-bar .block-selection {
        position: static;
        width: auto;
        margin-bottom: 30px;
    }
    .side-bar .block-selection::before {
        content: none;
    }
    .side-bar .block-selection .block-selection-toggle {
        display: none;
    }
    .side-bar .block-selection .block-selection-inner {
        display: block;
        height: auto;
        overflow-y: visible;
    }
    .block-selection .items .item {
        padding-right: 0;
    }
    .block-selection .items .text-full {
        display: none;
    }
    .block-selection .items .text {
        display: block;
    }
    .block-selection .items .actions button {
        width: 14px;
        height: 14px;
        background: url('../img/icons-btn-mini.png');
    }
    .block-selection .items .actions .btn-play {
        background-position: 0 0;
    }
    .block-selection .items .actions .btn-play.playing {
        background-position: -28px 0;
    }
    .block-selection .items .actions .btn-delete-from-selection {
        background-position: -14px 0;
    }

    .selection-open {
        overflow-y: visible;
        position: static;
        height: auto;
    }
    .selection-open .side-bar .block-selection {
        width: auto;
        height: auto;
        background: none;
    }
    .selection-open .side-bar .block-selection .block-selection-close {
        display: none;
    }

    .block-faq .block-body,
    .block-partner .block-body {
        display: block;
    }
    .block-faq .block-body p,
    .block-partner .block-body p {
        display: block;
    }

    .block-new-products .prev,
    .block-new-products .next {
        width: 15px;
    }

    /* Home
    ------------------------------------------------------------------------*/
    .home-blocks .row + .row {
        margin-top: 30px;
    }

    /* Steps
    ------------------------------------------------------------------------*/
    .steps-nav a {
        height: 127px;
        padding-top: 34px;
    }

    .step-section-side {
        float: left;
        width: 222px;
    }

    .step-section-side-search-toggler,
    .step-section-side-search-container-open .step-section-side-search-container-inner .step-section-side-search-toggler {
        display: none;
    }
    .step-section-side-search-container-inner {
        display: block;
    }

    .step-section-main {
        margin-left: 252px;
    }

    /* Step music
    ------------------------------------------------------------------------*/
    .step-music-side .side-block {
        width: 100%;
    }
    .step-music-list li:hover .actions,
    .step-music-list li:focus .actions {
        display: block;
    }

    /* Step text
    ------------------------------------------------------------------------*/
    .step-text-side .side-block {
        width: 100%;
    }
    .step-text-main .text-suggestions li:hover .actions,
    .step-text-main .text-suggestions li:focus .actions {
        display: block;
    }
}