:root {
    --placeholder-color: #B9C2C8;
}

#migration-request {

}

#migration-request .loadingSection {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#creation-request #mainNavContainer,
#migration-request #mainNavContainer {
    background: white;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: row;
}

#migration-request #mainNavContainer {
    display: none;
    background-color: var(--wlprimary-color);
}

#creation-request #formPart,
#migration-request #formPart{
    display: flex;
    flex: 1 1 0%;
}

#migration-request #formPart .selectingTypePart {
    padding: 100px 50px 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}

#creation-request #formPart .container,
#migration-request #formPart .container{
    align-self: center;
    max-width: 600px;
}

#migration-request #formPart .accountInformation {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 50px;
}

#migration-request #formPart .steps {
    color: #fff;
}

#migration-request #formPart .steps .stepContainer {
    display: flex;
    cursor: pointer;
    user-select: none;
}

#migration-request #formPart .steps .stepContainer .leftPart {
    border-right: 2px solid #fff;
    width: 15px;
    position: relative;
    padding-bottom: 65px;
    margin-right: 30px;
}

#migration-request #formPart .steps .stepContainer .leftPart.withoutBorder {
    border-right: none;
}

#migration-request #formPart .steps .stepContainer .leftPart .point {
    background-color: var(--wlprimary-color);
    -webkit-box-shadow: 0 0 0 4px var(--wlprimary-color);
    box-shadow: 0 0 0 4px var(--wlprimary-color);
    width: 26px;
    height: 26px;
    border-radius: 13px;
    position: absolute;
    left: 0px;
    top: -3px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

#migration-request #formPart .steps .stepContainer .leftPart .point svg {
    display: none;
}

#migration-request #formPart .steps .stepContainer .leftPart .point::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background-color: #fff;
}

#migration-request #formPart .steps .stepContainer.active .leftPart .point,
#migration-request #formPart .steps .stepContainer.completed .leftPart .point {
    background-color: #fff;
}

#migration-request #formPart .steps .stepContainer.completed .leftPart .point svg {
    width: 18px;
    display: block;
}

#migration-request #formPart .steps .stepContainer.completed .leftPart .point svg .checkIcon {
    stroke: green;
}

#migration-request #formPart .steps .stepContainer.completed .leftPart .point::before {
    display: none;
}

#migration-request #formPart .steps .stepContainer.active .leftPart .point::before {
    background-color: var(--wlprimary-color);
    width: 10px;
    height: 10px;
    border-radius: 5px;
}

#migration-request #formPart .steps .stepTitle {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
}

#migration-request #formPart .steps .stepDescription {
    font-size: 15px;
    opacity: 0.6;
}

#migration-request #formPart .logoContainer {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff center center;
    background-size: cover;
    border: 1px solid #ffffff26;
    flex-shrink: 0;
}

#migration-request #formPart .nameLabel {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}

#migration-request .actionCentered {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center !important;
}

#migration-request .actionCentered .stepContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#migration-request .actionCentered .stepApp .qrCode {
    max-width: 180px;
}

#migration-request .actionCentered h2 {
    color: #000;
    font-size: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 30px;
}

#migration-request .actionCentered p {
    font-size: 15px;
    color: #555;
    text-align: center;
    line-height: 17px;
}

#migration-request .actionCentered .emailInput {
    margin-top: 30px;
    min-width: 360px;
    width: inherit;
    margin-bottom: 25px;
}

#migration-request .actionCentered button.uibtn {
    min-width: 360px;
    justify-content: center;
}

#migration-request .footerElements {
    color: #fff;
    font-size: 14px;
    opacity: 0.7;
    display: flex;
    gap: 100px;
}

#migration-request .footerElements a {
    color: #fff;
}

#migration-request #bgPart .logoBrand {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #fff center center;
    background-size: cover;
    -webkit-box-shadow: 0px 2px 32px 0px rgba(0,0,0,0.26);
    box-shadow: 0px 2px 32px 0px rgba(0,0,0,0.26);
}

.alreadyAnAccountContainer {
    display: none;
    background-color: #ffecd1;
    color: #bc4900;
    padding: 10px;
    font-size: 14px;
    line-height: 17px;
    border-radius: 7px;
    margin-top: 25px;
}

#creation-request #formPart .choice {
    font-size: 22px;
    font-weight: bold;
    display: flex;
    gap: 25px;
}

#creation-request #formPart .choice li {
    cursor: pointer;
    padding-bottom: 5px;
    border-bottom: 2px solid #fff;
    transition: color 0.2s, border-bottom-color 0.2s;
}

#creation-request #formPart .choice li.active {
    color: #F25C62;
    border-color: #F25C62;
}

#creation-request #formPart .choice li:hover {
    color: #b23e43;
    border-color: #b23e43;
}

#creation-request #formPart .choicePart {
    margin-bottom: 40px;
}

#creation-request #formPart .choicePart p {
    color: #3b3b3b;
    line-height: 20px;
    margin-top: 40px;
    font-size: 15px;
}

#creation-request #formPart .choicePart p b {
    font-weight: 500;
}

#creation-request #formPart h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 40px;
}

#creation-request #formPart label {
    font-size: 15px;
    margin-bottom: 8px;
    color: #5E5E5E;
}

#creation-request #formPart input, #creation-request #formPart select {
    border: none;
    box-shadow: 0 0 0 1px #e0e0e0, 0 2px 4px 0 rgb(0 0 0 / 5%), 0 1px 1.5px 0 rgb(0 0 0 / 3%);
}

#creation-request select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background: url(../img/icons/icon-dropdown.svg);
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 8px 5px;
    background-position-x: calc(100% - 15px);
    background-position-y: calc(50%);
}

.form-control.middle {
    border-radius: 0;
}

.form-control.top {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.form-control.bottom {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.form-control.bottomLeft {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.form-control.bottomRight {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}

#creation-request #formPart .firstRow {
    margin-top: 40px;
}

#creation-request #formPart .form-group {
    margin-bottom: 25px;
}

#creation-request #formPart button.validationButton {
    outline: none;
    margin-top: 40px;
    border-radius: 9px;
    background-color: #000;
    color: #fff;
    height: 50px;
    width: 100%;
    user-select: none;
    position: relative;
}

#creation-request #formPart button.validationButton.positive {
    background-color: #28713a;
}

#creation-request #formPart button.validationButton.positive:hover {
    background-color: #206430;
}

#password_20211013{
    -webkit-text-security:disc;
}

#creation-request.signup #languagePicker,
#migration-request.migration #languagePicker {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px;
    border-radius: 6px;
}

#creation-request.signup #languagePicker.active,
#migration-request.migration #languagePicker.active {
    box-shadow: rgb(0 0 0 / 7%) 0 1px 20px -2px;
    background-color: #fff;
}

#creation-request.signup #languagePicker .list,
#migration-request.migration #languagePicker .list{
    display: flex;
    flex-direction: column;
    gap: 2px;
}

#creation-request.signup #languagePicker img,
#migration-request.migration #languagePicker img{
    width: 32px;
    height: 32px;
    cursor: pointer;
    border-radius: 50%;
    padding: 4px;
}

#creation-request #formPart input.input-error, #creation-request .profileImage.input-error {
    box-shadow: 0 0 0 1px #d43d3d, 0 2px 4px 0 rgb(223 25 25 / 8%), 0 1px 1.5px 0 rgb(255 2 2 / 3%) !important;
}

#creation-request #formPart .successBtn {
    background-color: #1C9B5C;
}

#creation-request .datepicker {
    border-radius: 0.25rem !important;
}

#creation-request .profileImage {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #F9F9F9 center center;
    background-size: cover;
    /*border: 1px solid #E0E0E0;*/
    box-shadow: 0 0 0 1px #e0e0e0, 0 2px 4px 0 rgb(0 0 0 / 5%), 0 1px 1.5px 0 rgb(0 0 0 / 3%);
    position: relative;
}

#creation-request .profileImage.editstatus {
    background-size: cover;
    border: none;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 5%), 0 1px 1.5px 0 rgb(0 0 0 / 3%);
}

#creation-request .profileImage.editstatus img.profile-image-bg {
    display: none;
}

#creation-request .profileImage.editstatus .actionIcon {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    position: absolute;
    text-align: center;
    cursor: pointer;
    transition: background-color .15s ease-in-out;
}

#creation-request .profileImage.editstatus .editIcon {
    background-color: #bec2c7;
    right: -7px;
    top: -1px;
}

#creation-request .profileImage.editstatus .editIcon:hover {
    background-color: #bfbfbf;
}

#creation-request .profileImage.editstatus .editIcon img {
    margin-top: 5px;
}

#creation-request.signup .affiliatedBadge {
    display: none;
}



#creation-request.signup .step2 .backSection,
#creation-request.signup .step2 .boxTypePart,
#creation-request.signup .step2 .boxNamePart,
#creation-request.signup .step2 .profileImageBox .editIcon,
#creation-request.signup .step2 .logoBoxLabel {
    display: none !important;
}

#creation-request.signup .step2 .profileImageBox {
    user-select: none;
    cursor: default;
    width: 70px;
    height: 70px;
    margin-top: -10px;
}

#creation-request.signup .step2 .fileProfileButton {
    user-select: none;
    cursor: default;
}

#creation-request.signup .boxNamePreview {
    font-weight: 700;
    color: #000;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    display: none;
}

#creation-request.signup .boxTypePreview {
    color: #7c7c7c;
    line-height: 18px;
    font-size: 14px;
    margin-top: 4px;
    display: none;
}

#creation-request.signup .step2 .boxTypePreview,
#creation-request.signup .step2 .boxNamePreview{
    display: inline-block !important;
}




#creation-request .profileImage img.profile-image-bg {
    height: auto;
    width: auto;
    float: inherit;
    border-radius: 0;
    margin: 25px 0 0 23px;
}

#creation-request .hiddenInputFile {
    position: absolute;
    top: 0;
    left: 0;
    /* overflow: hidden; */
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

#creation-request .profileImage .actionIcon {
    display: none;
}

#creation-request .profileImage .deleteIcon {
    z-index: 3;
    background-color: #F14242;
    right: -2px;
    top: -2px;
}


#creation-request #formPart .container.step2 .part1 .formContainer {
    display: none;
}

#creation-request #formPart .container.step2 .part1 h3 {
    opacity: 0.4;
}

#creation-request #formPart .container.step2 .choicePart p {
    display: none;
}

#creation-request #formPart .part2 {
    display: none;
}

#creation-request #formPart .container.step2 .part2 {
    display: block;
}

#creation-request .onlineDisclaimer {
    display: none;
    color: #D16F1B;
    margin-top: 10px;
    font-size: 15px;
    line-height: 17px;
}

#creation-request .onlineDisclaimer b {
    font-weight: 500;
}


#creation-request #formPart ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--placeholder-color);
    opacity: 1; /* Firefox */
}

#creation-request #formPart :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--placeholder-color);
}

#creation-request #formPart ::-ms-input-placeholder { /* Microsoft Edge */
    color: var(--placeholder-color);
}


#creation-request #bgPart,
#migration-request #bgPart{
    position: relative;
    background-image: url(../../img/bgrequest.jpg);
    background-position: center center;
    background-size: cover;
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

#creation-request.signup #bgPart {
    flex: 1.3 1 0%;
    background-image: url(../img/signupbg.jpg);
}

#migration-request.migration #bgPart {
    flex: 1.5 1 0%;
    background-image: none;
    background-color: #fff;
}

#creation-request #bgPart .gradientBlack {
    height: 50%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

#creation-request.signup #bgPart .gradientBlack {
    background: linear-gradient(180deg, rgba(34, 32, 32, 0) 0%, rgba(34, 32, 32, 0.8) 100%);
}

#creation-request.signup .coachingPart, #creation-request.signup .boxPart, #creation-request.signup .athletePart {
    padding-bottom: 20px;
    padding-top: 20px;
}

.coachingPart h2, .boxPart h2, .athletePart h2, .accountCreatedPart h2 {
    font-size: 40px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

#creation-request.signup .introAccountCreated {
    line-height: 23px;
    padding-top: 20px;
}


.coachingPart .personalInformation h6, .boxPart .personalInformation h6 {
    color: #292929;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 40px;
}

.coachingPart .descriptionLabel, .boxPart .descriptionLabel {
    color: #7c7c7c;
    line-height: 18px;
    font-size: 14px;
}

.coachingPart button.urlButtonPrefix {
    font-size: 16px;
    top: 24px;
    left: 0;
    background: transparent;
    position: absolute;
    color: #C0C0C0;
    outline: none;
}

.coachingPart input.link {
    padding-left: 155px;
}

.genderOptions .typeButton h4 {
    font-size: 14px !important;
}

#creation-request.signup .genderOptions .typeButton,
#migration-request .genderOptions .typeButton {
    box-shadow: 0 0 0 1px #e0e0e0, 0 2px 4px 0 rgb(0 0 0 / 5%), 0 1px 1.5px 0 rgb(0 0 0 / 3%);
    border: none;
    width: 100%;
    padding: 15px 20px;
}

#migration-request .genderOptions .typeButton p {
    text-align: left;
}

#creation-request.signup .genderOptions .typeButton svg,
#migration-request .genderOptions .typeButton svg{
    margin-top: 10px;
    max-height: 20px;
}

#creation-request.signup .genderOptions .typeButton.active,
#migration-request .genderOptions .typeButton.active{
    box-shadow: 0 0 0 1px var(--success-default), 0 2px 4px 0 rgb(0 0 0 / 5%), 0 1px 1.5px 0 rgb(0 0 0 / 3%);
}

#creation-request.signup .genderOptions .typeButton.active .genderIcon,
#migration-request .genderOptions .typeButton.active .genderIcon{
    fill: var(--success-default);
}

#creation-request.signup .genderOptions .typeButton.active h4,
#migration-request .genderOptions .typeButton.active h4{
    color: var(--success-default);
}

#creation-request.signup .alreadyAccount {
    margin-top: 30px;
    font-size: 15px;
}

#creation-request.signup .alreadyAccount .element-choice {
    font-weight: 400 !important;
}
#creation-request.signup #mainNavContainer {
    height: 100vh;
}

#creation-request.signup #formPart {
    overflow: scroll;
    height: 100%;
    position: relative;
}

#migration-request.migration #formPart {
    height: 100%;
    position: relative;
    width: 550px;
    flex: inherit;
}

#creation-request.signup #formPart .container.step1 {
    /*height: 100%;*/
    max-height: 100%;
}

#creation-request.signup .termsToCheck .customControlStyle .custom-control-label,
#migration-request .termsToCheck .customControlStyle .custom-control-label {
    padding-left: 25px;
    padding-top: 3px;
}

#creation-request.signup .infoBtn {
    margin: 0;
    outline: none;
    padding: 0;
    background: transparent;
}

#creation-request.signup .backSection {
    cursor: pointer;
    margin-top: 20px;
    color: #5e5e5e;
    text-align: center;
    margin-bottom: 20px;
    transition: color 0.2s;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

#creation-request.signup .backSection:hover {
    color: #318b3b;
}

#creation-request #bgPart .bottomInfo {
    padding-bottom: 40px;
    z-index: 2;
}

#creation-request #bgPart .bottomInfo .title {
    font-size: 31px;
    color: #fff;
    text-align: center;
    font-weight: bold;
}

#creation-request.signup .athleteBgContainer {
    background-color: #F2F4F7;
    border-radius: 6px;
    padding: 30px;
    margin-top: 30px;
    text-align: center;
}

#creation-request.signup .athleteBgContainer .dlApp {
    max-width: 450px;
    margin: 0 auto;
}

#creation-request.signup .athleteBgContainer .dlApp img {
    max-width: 100%;
    border-radius: 8px;
}

#migration-request .dlApp img {
    max-width: 180px;
    border-radius: 8px;
}

#creation-request.signup .athleteBgContainer .scanInfo {
    color: #BF463F;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-top: 10px;
    padding: 0 20px;
}

#creation-request.signup #bgPart .bottomInfo {
    align-self: center;
    max-width: 600px;
    height: 100%;
    display: flex;
}

#creation-request.signup #bgPart .bottomInfo .sideMainContainer {
    align-self: center;
}

#creation-request.signup #bgPart .bottomInfo .sideMainContainer h2 {
    font-size: 73px;
    color: #fff;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

#creation-request.signup #bgPart .bottomInfo .sideMainContainer p {
    font-weight: 500;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin-top: 15px;
    line-height: 20px;
}

#creation-request.signup #bgPart .bottomInfo .sideMainContainer .community {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

#creation-request.signup #bgPart .bottomInfo .sideMainContainer .community .profiles {
    display: flex;
}

#creation-request.signup #bgPart .bottomInfo .sideMainContainer .community .label {
    font-weight: 500;
    color: #D3D3D3;
    font-family: 'Montserrat', sans-serif;
    margin-top: 15px;
    font-size: 15px;
}

#creation-request.signup #bgPart .bottomInfo .sideMainContainer .imgPlaceholder {
    height: 46px;
    width: 46px;
    border-radius: 50%;
    background-position: center center;
    background-size: cover;
    border: 3px solid #2D2827;
}

#creation-request.signup .accountSelection {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#creation-request.signup .userConnectedSection {
    margin-top: 20px;
    display: flex;
    width: 100%;
    padding: 9px;
    box-sizing: border-box;
    /*height: 100px;*/
    background-color: #F1F3F5;
    margin-bottom: 30px;
    border-radius: 6px;
    gap: 15px;
}

#creation-request.signup .userConnectedSection .profileImage {
    width: 82px;
    height: 82px;
    background-color: #d0d0d0;
    border-radius: 5px;
    background-position: center center;
    background-size: cover;
}

#creation-request.signup .infoSection {
    display: flex;
    flex-direction: column;
}

#creation-request.signup .usernameLabel {
    font-weight: bold;
    font-size: 20px;
    color: #212529;
    margin-top: 13px;
    margin-bottom: 3px;
}

#creation-request.signup .emailLabel {
    font-size: 14px;
    color: #808080;
    margin-bottom: 8px;
}

#creation-request.signup .logoutLabel {
    font-size: 14px;
    color: #EA5D5D;
    cursor: pointer;
}

.cropperModal .normalButton {
    display: inline-block;
    border-radius: 4px;
    color: #4e566d;
    background-color: transparent;
    cursor: pointer;
    border: none;
    line-height: 30px;
    padding: 3px 14px;
    font-size: 15px;
    outline: none;
}

.cropperModal .greenButton {
    background-color: #18B978 !important;
    color: #fff !important;
    box-shadow: 0 4px 6px rgb(50 50 93 / 11%), 0 1px 3px rgb(0 0 0 / 8%) !important;
}

#creation-request.signup .typeButton,
#migration-request .typeButton {
    padding: 30px;
    border: 1px solid #F3F3F3;
    border-radius: 9px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    box-shadow: rgba(0, 0, 0, 0.07) 0 1px 20px -2px;
    transition: box-shadow 0.3s;
    cursor: pointer;
    box-sizing: border-box;
    user-select: none;
}

#creation-request.signup .typeButton:hover,
#migration-request .typeButton:hover {
    box-shadow: rgba(0, 0, 0, 0.14) 0 1px 20px -2px;
}

#creation-request.signup .typeButton h4,
#migration-request .typeButton h4{
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 6px;
}

#creation-request.signup #formPart h3 {
    margin-bottom: 5px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
}

#creation-request.signup #formPart h5 {
    margin-bottom: 50px;
    color: #575757;
}

#creation-request #bgPart .bottomInfo .partners {
    margin-top: 40px;
    display: flex;
    gap: 70px;
}

#creation-request #bgPart .bottomInfo .partners img {
    max-height: 80px;
}

#creation-request #bgPart .bottomInfo .boxes {
    margin-top: 60px;
    opacity: 0.7;
}

#creation-request #bgPart .bottomInfo .boxes img {
    max-height: 60px;
}

#creation-request #formPart button#connectAccount {
    min-height: 40px;
    background-color: var(--success-default);
}

#creation-request.signup .coachingPart .formContainer.step2 input {
    box-shadow: none !important;
    padding: 0;
    user-select: none;
}

#creation-request.signup .coachingPart .formContainer.step2 .inlineFlex {
    display: none !important;
}

#creation-request.signup .coachingPart .formContainer.step2 .form-group {
    margin-bottom: -5px !important;
}

#creation-request.signup .coachingPart .formContainer.step2 .name {
    font-weight: 700;
    color: #000;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    width: inherit;
}

#creation-request.signup .coachingPart .formContainer.step2 .link {
    margin-top: -5px !important;
    padding-left: 137px !important;
}

#creation-request.signup .coachingPart .formContainer.step2 button.urlButtonPrefix {
    padding: 0 !important;
    top: 11px !important;
    cursor: default !important;
    user-select: none;
}

#creation-request.signup .coachingPart .formContainer.step2 .urlFormGroup {
    margin-top: -10px;
}

#creation-request.signup .coachingPart .formContainer.step2 .form-control:disabled, #creation-request.signup .coachingPart .formContainer.step2 .form-control[readonly] {
    background-color: transparent !important;
    user-select: none !important;
}

.validationButton.notYet {
    opacity: 0.5;
}

#creation-request.signup .coachingPart .formContainer.step2 .backSection {
    display: none;
}

#migration-request .notUserYet {
    margin-top: 30px;
    max-width: 355px;
}

#creation-request.signup .termsToCheck,
#migration-request .termsToCheck  {
    font-size: 14px;
    line-height: 20px;
}

#migration-request .termsToCheck {
    max-width: 360px;
    margin-top: 10px;
    margin-bottom: 25px;
}

#creation-request.signup .coachingPart .editBrandName, #creation-request.signup .boxPart .editBoxName {
    color: #A9A9A9;
    font-size: 14px;
    border: 1px solid #A9A9A9;
    border-radius: 4px;
    display: none;
    padding: 3px 7px;
    cursor: pointer;
    float: right;
    margin-top: 8px;
}

#creation-request.signup .coachingPart .formContainer.step2 .editBrandName,
#creation-request.signup .boxPart .step2 .editBoxName {
    display: inline-block;
    transition: color 0.2s, border-color 0.2s;
}

#creation-request.signup .coachingPart .formContainer.step2 .editBrandName:hover,
#creation-request.signup .boxPart .formContainer.step2 .editBoxName:hover{
    color: #3b3b3b;
    border-color: #3b3b3b;
}

.messagedefilant {
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 80px;
}

.messagedefilant div {
    position: absolute;
    min-width: 100%; /* au minimum la largeur du conteneur */
}

.messagedefilant div span {
    position: relative;
    top:0; left:0;
    display: flex;
    gap: 75px;
    padding-left: 85px;
}

#creation-request #bgPart .bottomInfo .boxes .messagedefilant div span {
    gap: 80px;
    padding-left: 80px;
}

.messagedefilant div span:first-child {
    animation: defilement 15s infinite linear;
}

.messagedefilant div span:last-child {
    position: absolute;
    animation: defilement2 15s infinite linear;
}

.messagedefilant.inverse div span:first-child {
    animation: defilementInverse 15s infinite linear;
}

.messagedefilant.inverse div span:last-child {
    animation: defilementInverse2 15s infinite linear;
}

@keyframes defilement2 {
    0% { margin-left: 100%; }
    100% { margin-left: 0; }
}

@keyframes defilement {
    0% { margin-left: 0; }
    100% { margin-left: -100%; }
}

@keyframes defilementInverse2 {
    0% { margin-left: -100%; }
    100% { margin-left: 0; }
}

@keyframes defilementInverse {
    0% { margin-left: 0; }
    100% { margin-left: 100%; }
}





/* MEDIA */

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

    #migration-request.migration #bgPart {
        padding-top: 30px;
    }

    #migration-request #mainNavContainer {
        flex-direction: column;
        min-height: inherit;
    }

    #migration-request.migration #formPart {
        width: 100%;
        height: inherit;
    }

    #migration-request.migration #formPart .container {
        height: inherit;
    }

    #migration-request #formPart .selectingTypePart {
        padding: 80px 0 0 0;
        justify-content: flex-start;
        height: inherit;
    }

    #migration-request #formPart .nameLabel {
        font-size: 16px;
    }

    #migration-request #formPart .accountInformation {
        margin-bottom: 15px;
        padding-left: 10px;
        padding-right: 10px;
    }

    #migration-request  #formPart .footerElements {
        display: none;
    }

    #migration-request #formPart .steps .stepContainer .leftPart {
        display: none;
    }

    #migration-request #formPart .steps .stepContainer {
        background-color: var(--background-secondary);
        margin-left: -15px;
        margin-right: -15px;
        padding: 10px 25px;
    }

    #migration-request #formPart .steps .stepTitle {
        color: var(--csecondary);
    }

    #migration-request #formPart .steps .stepDescription {
        font-size: 13px;
        color: var(--ctertiary);
    }

    #migration-request #formPart .steps .stepContainer:not(.active) {
        display: none;
    }

    #migration-request .actionCentered .stepContainer.stepApp h2 {
        text-align: center;
    }

    #migration-request .dlApp {
        margin: 0 25px;
        gap: 20px;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
    }

    #migration-request .dlApp .col-md-6 {
        padding: 0;
        width: inherit;
    }

    #migration-request .dlApp img {
        max-width: 100%;
    }

    #creation-request.signup #bgPart {
        display: none;
    }

    #creation-request.signup #mainNavContainer .container {
        height: 100%;
        padding: 45px 25px;
    }

    #creation-request.signup .coachingPart, #creation-request.signup .boxPart {
        padding-top: 20px;
        padding-bottom: 45px;
    }

    #creation-request.signup .alreadyAccount {
        gap: 15px !important;
    }

    #creation-request.signup .athleteBgContainer .dlApp {
        gap: 10px;
    }

    #creation-request.signup .athleteBgContainer .dlApp img {
        max-height: 60px;
    }

    .coachingPart h2, .boxPart h2, .athletePart h2 {
        font-size: 35px;
    }
}

