@font-face {
    font-family: 'PlusJakartaSans';
    src: url(../fonts/PlusJakartaSans/PlusJakartaSans-Bold.woff);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #fffcf9;
}

.wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 100vh;
}

.img-wrapper {
    padding-top: 120px;
    background-color: #ded7cf;
    width: 610px;
    transition: width 0.5s ease;
}

.image {
    max-height: 760px;
    background-size: cover;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.img-wrapper.reduced {
    width: 280px;
    padding-top: 40px;
}

.image.icon {
    margin: 20px 70px;
    transition: opacity 0.5s ease;
}

.image.hidden {
    opacity: 0;
    visibility: hidden;
}

.form-wrapper.login-wrapper {
    width: 520px;
    padding: 130px 40px;
    margin: 0 auto 0 20%;
}

.form-wrapper {
    padding: 55px 80px 0 80px;
    margin-left: 200px;
    max-width: 860px;
}

#emailField .error-icon {
    display: block;
    position: absolute;
    right: 20px;
    top: 25px;
    width: 20px;
    height: 20px;
    background: url(../images/Error.svg) no-repeat center center;
    background-size: contain;
}

#emailField .valid-icon {
    display: block;
    position: absolute;
    right: 20px;
    top: 25px;
    width: 20px;
    height: 20px;
    background: url(../images/Success.svg) no-repeat center center;
    background-size: contain;
}

.form-wrapper.first {
    transition: 0.3s all ease-in-out;
}

.form-wrapper.second {
    display: none;
    flex-direction: column;
}

.title {
    text-align: left;
    font-weight: 400;
    font-size: 36px;
    margin-bottom: 36px;
}

.title-second {
    text-align: left;
    font-weight: 400;
    font-size: 26px;
    margin-bottom: 30px;
}

.form-box {
    position: relative;
    margin-bottom: 35px;
}

/* .form-box:nth-child(10) {
    margin-bottom: 15px;
} */

.form-label-ok {
    position: absolute;
    pointer-events: none;
    top: -20px;
    left: 10px;
    font-size: 14px;
    color: #555;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.form-label {
    position: absolute;
    pointer-events: none;
    top: -20px;
    left: 10px;
    font-size: 14px;
    color: #555;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.form-label-second {
    margin-top: 10px;
    margin-left: 10px;
    margin-bottom: 10px;
    pointer-events: none;
    font-size: 14px;
    color: #555;
    transition: opacity 0.3s ease;
}

.form-label-second.dropdown-label {
    position: absolute;
    top: -29px;
    left: 0;
}

.form-label-second-checkbox {
    display: none;
    flex-direction: column;
    margin-top: 10px;
    margin-left: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
    transition: opacity 0.3s ease;
}

.form-label-second-checkbox.active {
    display: flex;
}

.form-box.error .form-label {
    display: none;
}

.error-text {
    position: absolute;
    top: -25px;
    left: 0;
    color: red;
    display: none;
}

.form-box.error .error-text {
    display: block;
}

.container.error .error-text {
    display: block;
    top: calc(100% - 22px);
}

.error-text-2 {
    color: red;
    height: 18px;
    opacity: 0;
    transition: 0.3s all ease-in-out;
    user-select: none;
    pointer-events: none;
}

.error-text-2.active {
    opacity: 1;
}

.iti {
    width: 100%;
}

.iti__country {
    height: 55px;
    border-radius: 8px;
}

.iti--inline-dropdown .iti__country-list {
    max-height: 185px;
    position: absolute;
    width: 100%;
    overflow-y: auto;
    max-height: 240px;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* animation-name: fadeInDown; */
    /* animation-duration: 0.35s; */
    /* animation-fill-mode: both; */
    /* display: none; */
    z-index: 100;
}

.disabled-option .option-text {
    color: #ababab;
    pointer-events: none;
}

.form-box .input,
.select {
    color: #000;
    position: relative;
    padding: 15px;
    margin-bottom: 5px;
    width: 100%;
    font-size: 16px;
    background-color: #fcf8f4;
    border: 1px solid #ded7cf;
    border-radius: 6px;
    transition: border 0.5s ease;
}

.input {
    color: #000;
    padding: 15px;
    margin-bottom: 15px;
    /* max-width: 260px; */
    height: 50px;
    font-size: 16px;
    background-color: #fcf8f4;
    border: 1px solid #ded7cf;
    border-radius: 6px;
    transition: border 0.5s ease;
    margin-top: 10px;
}

.input::placeholder {
    color: #666666;
}

.input:focus {

    box-shadow: 0 4px 15px -4px #505050;
    outline: none;
}

.form-box .input:hover,
.select:hover {
    border-color: #000;
}

.form-box input:focus {
    box-shadow: 0 4px 15px -4px #505050;
    outline: none;
}

.form-box option {
    padding: 15px 10px;
}

.form-box input:focus+.form-label,
.form-box input:not(:placeholder-shown)+.form-label {
    opacity: 1;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

::-ms-input-placeholder {
    color: #000;
}

::placeholder {
    color: #000;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-box.error input {
    border: 1px solid #f03d3e;
}

.form-box.error .select-btn {
    border: 1px solid #f03d3e;
    border-radius: 6px;
}

.iti .error {
    border: 1px solid #f03d3e;
}

.form-box .error-text {
    margin: 5px 0 0 10px;
    font-size: 14px;
    color: #f03d3e;
    visibility: hidden;
}

.iti .error-text {
    margin: 5px 0 0 10px;
    font-size: 14px;
    color: #f03d3e;
    visibility: hidden;
}

.error-text.pass {
    top: -40px !important;
}

.form-box.error .error-text {
    visibility: visible;
}

.form-box:nth-last-of-type(2) {
    padding-bottom: 15px;
    border-bottom: 1px solid #ded7cf;
}

.form-box:nth-last-of-type(2) .valid-icon {
    top: 25px;
}

.form-box:nth-last-of-type(2) .error-icon {
    top: 25px;
}

.control-buttons {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 230px;
}

.google-drive-upload {
    display: flex;
    flex-direction: column;
}

.add-google-drive-file {
    color: #031337;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0);
    border: 1px solid #4093d1;
    border-radius: 8px;
    padding: 15px 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    outline: none;
    max-width: 130px;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    text-shadow: 1px 1px #fff;
    font-weight: 700;
    font-size: 16px;
    outline: white;
    transition: border-color 0.3s;
}

.add-google-drive-file:hover {
    border-color: black;
}

.btn {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background-color: #4093d1;
    color: white;
    cursor: pointer;
    overflow: hidden;
}

.btn span {
    display: inline-block;
    transition: transform 0.5s ease;
}

.btn img {
    margin-left: 8px;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    position: relative;
    left: 0;
}

.btn:hover span {
    transform: translateX(8px);
}

.btn:hover img {
    transform: translateX(8px);
    opacity: 1;
}

.form-box.checkbox {
    display: flex;
    align-items: center;
    margin: 0 0 35px 0;
}

.checkbox label {
    display: flex;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
}

.checkbox input {
    display: none;
}

.slider {
    position: relative;
    flex-shrink: 0;
    width: 52px;
    height: 28px;
    background-color: #eee;
    transition: 0.4s;
    border-radius: 34px;
    margin-right: 10px;
    border: 1px solid #ddd;
}

.slider:before {
    position: absolute;
    content: '';
    height: 22px;
    width: 22px;
    left: 0;
    bottom: 1px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    border: 1px solid #ddd;
}

input:checked+.slider {
    background-color: #031438;
}

input:checked+.slider:before {
    transform: translateX(24px);
}

.valid-icon {
    display: block;
    position: absolute;
    right: 20px;
    top: 40%;
    width: 20px;
    height: 20px;
    background: url('../images/Success.svg') no-repeat center center;
    background-size: contain;
}

#phone-wrapper span.valid-icon {
    top: 25%;
}


.valid-icon-second {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 5px;
    background: url('../images/Success.svg') no-repeat center center;
    background-size: contain;
}

.delete-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 5px;
    background: url('../images/delete_icon.svg') no-repeat center center;
    background-size: contain;
    cursor: pointer;
}

.error-icon {
    display: block;
    position: absolute;
    right: 20px;
    top: 37%;
    width: 20px;
    height: 20px;
    background: url('../images/Error.svg') no-repeat center center;
    background-size: contain;
}

.red-dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('../images/Success.svg') no-repeat center center;
}

.error-icon.show {
    display: block;
}

.transition-out {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.opacityHalf {
    opacity: 0.8;
}

.transition-in {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

textarea {
    padding: 15px;
    margin-bottom: 5px;
    width: 100%;
    height: 120px;
    font-size: 16px;
    background-color: #fcf8f4;
    border: 1px solid #ded7cf;
    border-radius: 6px;
    resize: vertical;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-size: contain;
}

textarea::placeholder {
    color: #666666;
}

textarea:focus {
    box-shadow: 0 4px 15px -4px #505050;
    outline: none;
}

.better-label {
    color: #031337;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0);
    border: 1px solid #4093d1;
    border-radius: 8px;
    padding: 15px 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    outline: none;
    max-width: 130px;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    text-shadow: 1px 1px #fff;
    font-weight: 700;
    font-size: 16px;
    outline: white;
    transition: border-color 0.3s;
}

.better-label:hover {
    border-color: black;
}

.custom-file-label {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    margin-top: 10px;
    margin-left: 10px;
    font-size: 14px;
    color: #555;
    opacity: 1;
    transition: opacity 0.3s ease, height 0.4s ease-in-out;
}

.custom-file-label-height {
    height: 110px;
}

.file-icon {
    background: url('../images/Success.svg') no-repeat bottom right;
}

.custom-file-label::-webkit-file-upload-button {
    display: none;
}

.custom-file-label:hover::before {
    border-color: black;
}

.custom-file-label:active {
    outline: none;
}

.form-wrapper.second .form-label {
    opacity: 1;
}

.form-box-second {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    border-bottom: 1px solid #ded7cf;
}

/* .form-box-second:nth-last-child(2) {
    margin-bottom: 35px;
} */

/* .form-box-second:nth-last-of-type(3) {
    margin-top: 15px;
} */

.edition {
    padding: 15px;
    width: 100%;
    max-width: 155px;
    height: 35px;
    font-size: 14px;
    background-color: #fcf8f4;
    border: 1px solid #ded7cf;
    border-radius: 6px;
}

.edition::placeholder {
    color: #666666;
}

.edition:focus {
    box-shadow: 0 4px 15px -4px #505050;
    outline: none;
}

.recommender {
    padding: 15px;
    width: 100%;
    max-width: 200px;
    height: 35px;
    font-size: 16px;
    background-color: #fcf8f4;
    border: 1px solid #ded7cf;
    border-radius: 6px;
}

.recommender:focus {
    box-shadow: 0 4px 15px -4px #505050;
    outline: none;
}

.flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.flexTwoItems {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.flexTwoItems .container:nth-child(3) {
    display: flex;
    padding: 15px 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    outline: none;
    width: 130px;
    opacity: 0;
}

.column {
    display: flex;
    flex-direction: column;
}

.container {
    display: flex;
    flex-direction: column;
    /* flex-flow: column nowrap; */
}

.file-chosen {
    display: flex;
    align-items: center;
    margin-left: 10px;
    font-size: 14px;
    color: #555;
}

.file-text {
    display: inline-block;
    max-width: 112px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.file-wrapper {
    display: inline-flex;
    max-width: 150px;
    align-items: center;
    margin-top: 15px;
    height: 20px;
}

.select-menu {
    position: relative;
    /* margin: 0 0 40px 0; */
}

.select-btn {
    display: flex;
    height: 50px;
    min-width: 260px;
    background-color: #fcf8f4;
    padding: 15px;
    border: 1px solid #ded7cf;
    border-radius: 6px;
    transition: border 0.5s ease;
    font-size: 16px;
    border-radius: 8px;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
}

.select-btn[disabled] {
    background-color: #eee;
    cursor: not-allowed;
}

.select-btn.select-btn-summary {
    cursor: auto;
    color: #555;
}

.sBtn-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 205px;
    font-weight: 400;
    color: #666666;
}

.sBtn-text2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 205px;
    font-weight: 400;
}

.options {
    position: absolute;
    width: 100%;
    overflow-y: auto;
    max-height: 240px;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation-name: fadeInDown;
    animation-duration: 0.35s;
    animation-fill-mode: both;
    display: none;
    z-index: 100;
}

.options .option {
    display: flex;
    height: 55px;
    cursor: pointer;
    padding: 0 8px;
    border-radius: 8px;
    align-items: center;
    background: #fff;
}

.options .option:hover {
    background: #f2f2f2;
}

.options .option i {
    font-size: 25px;
    margin-right: 12px;
}

.options .option .option-text {
    font-size: 16px;
    color: #333;
}

.select-btn img {
    font-size: 25px;
    transition: 0.3s;
}

.select-menu.active .select-btn img {
    transform: rotate(-180deg);
}

.select-menu.active .options {
    display: block;
    opacity: 0;
    animation-name: fadeInUp;
    animation-duration: 0.4s;
    animation-fill-mode: both;
}

.total-time {
    font-size: 16px;
    margin-right: 5px;
    color: #031337;
    font-weight: 600;
}

.disabled {
    cursor: not-allowed !important;
}

.piece-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 28px;
    border-radius: 8px;
    padding-top: 10px;
}

.piece-element {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    border-radius: 8px;
}

.remove-piece {
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 16px;
    max-width: 90px;
    background: rgba(255, 255, 255, 0);
    border: 1px solid #4093d1;
    color: #031337;
    cursor: pointer;
    text-shadow: 1px 1px #fff;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
}

.add-piece {
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 16px;
    max-width: 90px;
    background: rgba(255, 255, 255, 0);
    border: 1px solid #4093d1;
    color: #031337;
    cursor: pointer;
    text-shadow: 1px 1px #fff;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
}

.dropdown-row {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    /* margin-top: 10px; */
    padding: 20px 10px;
    margin-bottom: 28px;
    border-radius: 8px;
}

.dropdown-row:nth-child(even) {
    background-color: #ded7cf
}

.dropdown-row:nth-child(odd) {
    background-color: #f7f7f7
}

.dropdown-row.etiudes {
    position: relative;
    flex-direction: column;
    padding: 0;
}

.etiude-group-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    border-radius: 8px;
}

/* .dropdown-row:nth-child(1) {
    margin-bottom: 60px;
    background-color: red;
} */

.dropdown-title {
    color: #031337;
    font-family: SuisseIntl, sans-serif;
    margin: 20px 0;
    position: relative;
}

.dropdown-title::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    content: '';
    height: 2px;
    width: 100px;
    background-color: #4093d1;
}

/* .dropdown-title:nth-of-type(4) {
    margin-bottom: 40px;
} */

.dropdown-subTitle {
    color: #031337;
    font-family: SuisseIntl, sans-serif;
    margin: 20px 0;
    padding-bottom: 20px;
}

.dropdown-subTitle:nth-of-type(1) {
    margin-top: 0;
}


/* .dropdown-row:nth-of-type(5) {
    height: 50px;
} */

.time-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.time-input {
    display: flex;
    align-items: center;
    margin-left: 5px;
}

.time-input label {
    font-size: 14px;
    margin-right: 5px;
    color: #555;
}

.minutes,
.seconds {
    width: 35px;
    height: 35px;
    padding: 5px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #ded7cf;
    background-color: #fcf8f4;
    border-radius: 4px;
    margin-right: 5px;
    -moz-appearance: textfield;

}

.minutes::placeholder {
    color: #666666;
}

.seconds::placeholder {
    color: #666666;
}

.time-input input:focus {
    box-shadow: 0 4px 15px -4px #505050;
    outline: none;
}

.time-input span {
    font-size: 16px;
    margin-right: 5px;
}

.draggable {
    display: flex;
    height: 30px;
    width: 30px;
    cursor: grabbing;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.draggable .line {
    position: relative;
    height: 2px;
    width: 20px;
    background-color: #555d;
}

.line::after,
.line::before {
    content: '';
    position: absolute;
    height: 2px;
    width: 20px;
    background-color: #555;
}

.line::after {
    top: 5px;
    left: 0;
}

.line::before {
    bottom: 5px;
    left: 0;
}



.draggable.etiudes {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.password-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-container .icon2 {
    position: absolute;
    top: 37%;
    right: 20px;
    cursor: pointer;
}

.dropdown-search {
    width: 100%;
    border-width: 0;
    border-radius: 3px;
    padding: 9px 12px;
    margin: 5px 0;
    height: 45px;
    background-color: #eee;
    font-size: 16px;
}

.label {
    margin-bottom: 30px;
    font-size: 16px;
    color: #031337;
    font-weight: 600;
}

.label_dropdowns {
    margin-top: 10px;
    margin-bottom: 25px;
    margin-left: 10px;
    pointer-events: none;
    font-size: 14px;
    color: #555;
}

#dropdowns .label_dropdowns {
    margin: 2px 0;
}

.error-border {
    border: 1px solid red;
}

.declarationError {
    display: none;
    color: red;
    margin-top: 10px;
}

.declarationError2 {
    display: none;
    color: red;
    margin-top: 10px;
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 30px, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }

    to {
        transform: translate3d(0, 20px, 0);
        opacity: 0;
    }
}

.control-buttons-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 50px 0;
}

.control-buttons-grid .register-btn {
    margin-left: auto;
}

.delete-file-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.custom-file-label-link {
    justify-content: center;
    /* margin-left: 10px; */
    font-size: 14px;
    color: #555;
    opacity: 1;
    transition: opacity 0.3s ease, height 0.4s ease-in-out;
}

.custom-file-label-link a {
    justify-content: center;
    color: #555;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 205px;
    transition: color 0.3s ease;
}

.custom-file-label-link a:hover {
    color: #0056b3;
}

.hide {
    display: none !important;
}

.file-link-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    width: 140px;
}

.form-checkbox {
    margin-top: 15px;
}

.file-link-wrapper-summary {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 15px;
    /* margin-left: 10px; */
    padding-bottom: 5px;
    border-bottom: 1px solid #ded7cf;
    justify-content: space-between;
}

.file-info {
    margin-left: 5px;
}

.photo-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10px;
}

.link-file {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 150px;
}

.summary-input {
    padding: 15px;
    margin-bottom: 5px;
    width: 100%;
    font-size: 16px;
    background-color: #fcf8f4;
    border: 1px solid #ded7cf;
    color: #555;
    border-radius: 6px;
    transition: border 0.5s ease;
}

.btn:disabled {
    background-color: #cccccc;
    color: #666666;
}

.btn.disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    pointer-events: none;
}

.no-underline {
    text-decoration: none;
}

.box-form {
    padding: 15px;
    margin-bottom: 5px;
    width: 100%;
    font-size: 16px;
    background-color: #fcf8f4;
    border: 1px solid #ded7cf;
    border-radius: 6px;
    transition: border 0.5s ease;

}

.logout-button-wrapper {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logout-button {
    padding: 10px 20px;
    background-color: #4093d1;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-left: auto;
}

.lang-btn {
    height: 35px !important;
    width: 35px !important;
    font-family: SuisseIntl, sans-serif;
    font-size: 17px;
    color: #4F5155;
    text-align: center;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    display: flex;
    border: 1px solid #4F5155;
    border-radius: 50%;
    margin: 5px;
    background-color: transparent;
    margin-left: auto;
    transition: background-color 0.3s, color 0.3s;
}

#phone::placeholder {
    color: #a0a0a0;
    opacity: 1;
}

.alert-success-custom {
    color: #24b144;
    margin-bottom: 10px;
    font-size: 20px;
}

.alert-error-custom {
    color: #f03d3e;
    margin-bottom: 10px;
    font-size: 20px;
}

.forgotPassLinkWrapper {
    margin-top: 8px;
}

.forgotPassLink {
    color: #000000;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.forgotPassLink::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 1px;
    width: 100%;
    background-color: #0056b3;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.forgotPassLink:hover {
    color: #031337;
}

.forgotPassLink:hover::after {
    transform: scaleX(1);
}

.declaration {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin: 15px 0;
}

.endSpace {
    height: 100px;
}

#loader {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

/* #overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
} */

.loader {
    width: 48px;
    height: 48px;
    border: 3px solid #ded7cf;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-bottom-color: #031337;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#progressWrapper {
    width: 50%;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    height: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(90deg, #f3f3f3, #b3c2ce, #f3f3f3);
    background-size: 200% 100%;
    animation: moveGradient 4s linear infinite;
}

#progressBar {
    width: 0%;
    height: 100%;
    background-color: #031337;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    border-radius: 6px;
    transition: width 0.2s ease;
}

#progressText {
    font-size: 26px;
    color: #f3f3f3;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    z-index: 10;
    position: relative;
}

#progressBar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, #031337, #9ac4e5, #031337);
    background-size: 200% 100%;
    z-index: 1;
    animation: moveGradient 2s linear infinite;
}

@keyframes moveGradient {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 200% 0;
    }
}


@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.form-box-second.minorWrapper {
    flex-direction: row;
    margin: 5px 0 10px;
    padding: 10px 0;
}

.form-box-second.minorWrapper input {
    margin-right: 5px;
}

body.no-interaction {
    pointer-events: none;
}

.dropdown-row.hidden {
    display: none;
}

.dropdown-row.etudes-wrapper {
    display: none;
}

.dropdown-row.etudes2-wrapper {
    display: none;
}

.dropdown-row.piece-wrapper {
    display: none;
}

.dropdown-row.piece2-wrapper {
    display: none;
}

.hidden {
    display: none;
}

.time-wrapper.time-wrapper-summary {
    color: #555;
}

.delete-dropdown-btn {
    display: inline-block;
    flex: none;
    border: none;
    width: 20px;
    height: 20px;
    margin-left: 5px;
    background: url(../images/delete_icon.svg) no-repeat center center;
    background-size: contain;
    cursor: pointer;
}

.textSuccess {
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    padding: 20px;
}

@media (max-width: 1400px) {
    .form-wrapper {
        margin: 0 auto;
        width: unset;
    }

    .form-wrapper.second {
        margin: 0 130px;
        width: unset;
    }

    .img-wrapper {
        height: unset;
    }
}

@media (max-width: 1300px) {
    .form-wrapper {
        margin: 0;
        padding: 55px 80px;
    }

    .form-wrapper.second {
        margin: 0;
        padding: 55px 80px;
    }
}

@media (max-width: 1100px) {
    .form-wrapper {
        margin: 0;
        padding: 55px 50px;
    }

    .form-wrapper.second {
        margin: 0;
        padding: 55px 50px;
    }
}

@media (max-width: 1000px) {
    .wrapper {
        flex-direction: column;
    }

    .form-wrapper {
        padding: 40px 30px;
    }

    .form-wrapper.login-wrapper {
        margin: 0 auto;
    }

    .form-wrapper.second {
        padding: 55px 30px;
    }

    .img-wrapper.reduced {
        width: 100%;
        padding: 20px;
    }

    .image {
        height: 80px;
    }

    .image.icon {
        margin: 0;
    }

    .logout-button-wrapper {
        top: 40px;
        right: 30px;
    }
}

@media (max-width: 700px) {
    .form-wrapper.second {
        margin: unset;
    }

    .custom-file-input {
        max-width: 170px;
    }

    .flex {
        flex-direction: column;
    }

    .flexTwoItems {
        flex-direction: column;
    }

    .flexTwoItems .container:nth-child(3) {
        display: none;
    }

    .photo-wrapper {
        flex-direction: column;
        margin-top: 10px;
    }

    .piece-element {
        justify-content: space-evenly;
    }

    .container {
        margin: 10px 0;
    }

    textarea {
        margin-top: 10px;
    }

    .img-wrapper.reduced {
        height: 150px;
    }

    .textSuccess {
        font-size: 18px;
    }
}

@media (max-width: 680px) {
    .dropdown-row {
        /* flex-direction: column; */
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: baseline;
    }

    .etiude-group-wrapper {
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: baseline;
        width: 100%;
    }

    .piece-element {
        /* flex-direction: column; */
        flex-wrap: wrap;
        align-items: baseline;
    }

    .piece-element .input {
        width: 100%;
    }



    .select-menu {
        margin: 0;
        width: 100%;
    }

    .select-btn {
        min-width: unset;
    }

    .time-input {
        margin-left: unset;
    }

    .time-wrapper {
        display: flex;
        flex-direction: row;
        margin: 20px 0 10px;
        max-width: 300px;
        justify-content: space-between;
    }

    .draggable {
        display: none;
    }
}

@media (max-width: 600px) {
    .form-wrapper.login-wrapper {
        width: unset;
        max-width: 500px;
        padding: 130px 0;
        margin: 0 80px;
    }

    .custom-file-input {
        max-width: 170px;
    }

    .control-buttons-flex {
        margin-right: 15px;
        margin-bottom: 15px;
    }

    .flex {
        flex-direction: column;
    }

    .logout-button-wrapper {
        width: 100%;
        flex-wrap: wrap-reverse;
        padding: 0 0 0 155px;
    }
}

@media (max-width: 580px) {
    .control-buttons-grid .control-buttons-flex .btn {
        height: 56px;
    }

    .textSuccess {
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .form-wrapper.login-wrapper {
        margin: 0 30px;
    }

    .control-buttons-grid {
        flex-wrap: wrap;
    }

    .control-buttons-grid .btn {
        margin: 0 0 15px 0;
    }

    .control-buttons-grid .control-buttons-flex:nth-child(3) {
        margin: 15px auto 0;
    }

    .control-buttons-flex {
        margin: 0;
    }

    .select-menu.first-menu {
        margin: 18px 0 0 0;
    }

    .dropdown-row {
        justify-content: flex-start;
    }

    .edition {
        max-width: unset;
    }

    .control-buttons-grid .control-buttons-flex .btn {
        height: unset;
    }

    .form-label-second.dropdown-label.long {
        top: -29px;
    }

    .piece-element .input {
        margin-bottom: -5px;
    }

    .delete-dropdown-btn {
        position: absolute;
        top: 0;
        right: 0;
    }

    .img-wrapper.reduced {
        height: 165px;
    }

    .logout-button-wrapper {
        padding: 0 0 0 60px;
        top: 55px;
    }

    .textSuccess {
        text-align: center;
    }
}

@media (max-width: 450px) {
    .form-label-second.dropdown-label.long {
        top: -40px;
    }

    .piece-element {
        margin: 15px 0;
    }
}

@media (max-width: 400px) {
    .form-wrapper.login-wrapper {
        margin: 0 20px;
    }

    .form-label.long {
        top: -35px;
    }
}

@media (max-width: 380px) {
    .logout-button-wrapper {
        right: 20px;
        top: 54px;
        padding: 0 0 0 30px;
    }

    .logout-button {
        font-size: 14px;
        padding: 8px 15px;
    }

    .btn {
        font-size: 14px;
    }

    .lang-btn {
        height: 30px !important;
        width: 30px !important;
    }
}

#print_helper_music_studies_text,
#print_helper_music_studies_text_2,
#print_helper_awards_text,
#print_helper_awards_text_2,
#print_helper_biography {
    display: none;
}

.printHelper {
    display: none;
}


.declarationPrint {
    display: none;
}

.firstPage {
    position: relative;
}

.signForm {
    position: absolute;
    display: none;
    flex-direction: column;
    /* align-items: center; */
    justify-content: space-between;
    margin-top: 30px;
    width: 100%;
}

.signElements {
    width: 100% !important;
    margin-top: 20px !important;
    flex-direction: row !important;
    align-items: flex !important;
    justify-content: space-between !important;
}

.signElement {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.signElement p {
    text-align: left;
}

#minorDeclaration {
    padding-right: 20px;
}

/* @media print and (-webkit-min-device-pixel-ratio:0) {
    .signForm {
        top: 20cm !important;
        font-size: 9px;
    }
} */

@supports (font: -apple-system-body) and (-webkit-appearance: none) {
    .signForm {
        font-style: italic;
        font-size: 7px;
        top: 0cm;
        left: 0;
        margin-top: 0px;
    }

    /* .image.icon.logo {
        display: none !important;
    } */

    #minorDeclaration {
        padding-right: 20px;
    }

    .signElements {
        margin-top: 5px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }


}

@media print {

    @page {
        /* margin: auto; */
        margin: auto 1cm;
    }

    body {
        font-family: Helvetica, sans-serif;
        box-sizing: border-box;
    }

    .printHelper {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .no-print {
        display: none !important;
    }

    .dropdown-label {
        display: none;
    }

    .flexTwoItems {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .dropdown-row {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        margin: 0 !important;
        padding: 0 !important;
        font-size: 11px !important;
        max-height: 18px;
        background-color: transparent !important;
    }

    .sBtn-text {
        font-size: 11px !important;
        max-width: 500px;
        min-width: none;
        width: 100%;
        overflow: visible;
        text-overflow: unset;
        white-space: unset;
        font-weight: 400;
    }

    .select-btn {
        min-width: none !important;
        background-color: transparent !important;
    }

    .signForm {
        display: flex;
        position: absolute;
        top: 20cm;
        right: 0;
        font-size: 11px;
        font-style: italic;
    }

    .signElements {
        display: flex;
    }

    .signElements:nth-child(2) {
        margin-bottom: 10px;
    }

    .allPieceWrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 3px;
    }

    .allPieceWrapper input {
        max-width: 7cm;
        width: 7cm;
    }

    .allPieceWrapper .time-input input {
        font-size: 13px !important;
    }

    .piecesWrapper {
        display: flex;
        flex-direction: column;

    }

    .edition {
        height: unset;
        padding: 0;
    }

    .time-input input {
        height: unset;
        width: 20px;
        padding: 0 !important;
        margin: 0 !important;
        text-align: right;
    }

    .time-input input:nth-of-type(1) {
        height: unset;
        width: 42px;
        padding: 0 !important;
        margin: 0 !important;
    }

    .time-input input:nth-of-type(2) {
        height: unset;
        width: 31px;
        padding: 0 !important;
        margin: 0 !important;
    }


    .time-input span {
        color: #000;
        font-size: 13px !important;
        margin: 0;
    }

    .time-input label {
        color: #000;
        font-size: 13px !important;
        margin: 0;
    }

    .box-form {
        border: none;
        font-size: 11px;
        padding: 0;
        margin: 0;
        color: #000;
    }

    .signElement {
        display: flex;
    }

    .signElement p {
        font-size: 10px;
    }

    .print-justify {
        border: unset;
        font-size: 18px;
        padding: 7px;
        color: #000000;
    }

    .container {
        margin: 0 !important;
        margin-top: 8px !important;
        height: unset !important;
    }

    .form-label-second {
        color: #000000;
        font-weight: 700;
        margin: 0;
        margin-right: 5px;
        font-size: 12px !important;
    }

    .custom-file-label {
        color: #000000;
    }

    .file-link-wrapper-summary a {
        color: #000000;
    }

    .subTitlePrint {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0px 0 5px;
        padding: 0;
    }

    .subTitlePrint h3 {
        margin: 0;
        padding: 0;
    }

    .titleForm {
        display: block !important;
        text-transform: uppercase;
        font-weight: 700;
    }

    .show_title {
        display: block !important;
        margin-top: 30px;
        font-size: 17px;
    }

    .image.icon {
        display: none;
    }

    .image.icon.logo {
        /* position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        display: block !important;
        width: 55px;
        height: 55px;
        margin-right: auto; */
        display: block !important;
        width: 55px;
        height: 55px;
        margin: 0;
    }

    /* 
    .logoWrapper img {
        max-width: 100%;
    } */

    .show_title {
        font-size: 19px;
        font-weight: bold;
        margin: 0;
    }

    table {
        margin: 0;
    }

    .box-form.summary-input {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
    }

    .img-wrapper.reduced {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        height: 80px;
    }

    .form-wrapper {
        padding: 15px 0 0 0;
        text-align: left;
        margin: 0 !important;
        font-size: 11px !important;
    }

    input,
    .input {
        border: none !important;
        border-radius: unset !important;
        font-size: 11px !important;
    }

    .select-btn.select-btn-summary {
        border-radius: unset;
        border: none;
        height: unset;
        display: flex;
        flex-direction: row;
        min-width: none !important;
        width: 100%;
        height: unset;
        font-size: 11px !important;
        color: #000;
        margin: 0;
        padding: 0;
        flex-direction: row !important;
        align-content: center !important;
        align-items: baseline !important;
        background-color: transparent !important;
    }

    .total-time {
        font-size: 13px;
        color: #000;
        font-weight: 700;
        margin: 0 !important;
        text-align: right;
    }

    .pieceInfoWrapper span {
        font-weight: 700;
        font-size: 13px !important;
        height: 6px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .pieceInfoWrapper input {
        background-color: transparent !important;
        font-size: 13px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .pieceInfoWrapper .time-input {
        padding: 0 !important;
        margin: 0 !important;
        font-size: 14px;
    }

    .minutes {
        padding: 0;
        margin: 0;
        background-color: transparent !important;
    }

    .seconds {
        padding: 0;
        margin: 0;
        background-color: transparent !important;
    }

    .header,
    .footer,
    .page-number {
        display: none;
    }

    body {
        font-size: 11px !important;
        margin-top: 0;
        background-color: transparent !important;
    }

    textarea {
        border: none !important;
        color: #000000 !important;
        height: 400px !important;
        padding: 0;
        margin: 0;
    }

    input {
        color: #000000;
        font-size: 11px !important;
    }

    #print_helper_music_studies_text,
    #print_helper_music_studies_text_2,
    #print_helper_awards_text,
    #print_helper_awards_text_2,
    #print_helper_biography {
        display: block;
        overflow: visible;
        white-space: pre;
        white-space: pre-wrap;
        margin-top: 10px;

    }

    #music_studies_text,
    #music_studies_text_2,
    #awards_text,
    #awards_text_2,
    #biography {
        display: none;
    }

    .logoWrapper {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin: 0 !important;
        padding: 0 !important;
    }

    .time-wrapper {
        justify-content: flex-end !important;
        background-color: transparent !important;
    }

    .programme {
        page-break-inside: avoid;
        page-break-before: always;
    }

    .time-wrapper.time-wrapper-summary {
        color: #000;
        background-color: transparent !important;
    }

    .recommender {
        color: #000000 !important;
        max-width: unset;
        width: 17cm;
        padding: 0 !important;
        height: 15px;
        background-color: transparent !important;
    }

    .form-box.textarea {
        flex-direction: column;
    }

    .form-label-second.textarea {
        width: 100%;
    }

    .declarationPrint {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 9px !important;
        font-style: italic;
    }

    .declarationPrintHide {
        display: none !important;
    }

    .form-box {
        display: flex;
        align-items: baseline;
        margin-bottom: 5px;
        page-break-inside: avoid;
        border: none;
    }

    a[href^="tel"] {
        color: inherit;
        text-decoration: none;
    }

    .printSeparator {
        margin: 10px;
    }

    .summary-input {
        width: unset;
        margin: 0;
        padding: 0;
        font-size: 12px !important;
        background-color: transparent !important;
    }

    .form-box-second {
        page-break-inside: avoid;
        border: none;
        padding: 7px 0;
    }

    .form-box-second-final {
        border-bottom: none !important;
    }

    .dropdown-title {
        page-break-before: auto;
        font-size: 17px;
        color: #000;
        font-weight: 700;
        margin: 0 !important;
        padding: 0 !important;
        margin-bottom: 18px !important;
    }

    .dropdown-title::after {
        background-color: transparent !important;
    }

    #dropdownsWrapper {
        padding-bottom: 30px !important;
    }

    /* 
    .iphone {
        margin-bottom: 0 !important;
        background-color: blue !important;
    } */

    .dropdown-row .box-form.summary-input {
        font-weight: 700;
        background-color: transparent !important;
    }

    header,
    footer {
        display: none;
    }

    .subTitlePrint.pagebreak {
        clear: both !important;
        page-break-before: always !important;
    }

    .dropdown-subTitle {
        page-break-before: auto;
        font-size: 10px;
        color: #000;
        font-weight: 700;
        margin: 0;
        padding: 0;
    }

    .piece-wrapper {
        padding: 0 !important;
        margin: 0 !important;
    }

    .piece-element {
        margin: 0;
        padding: 0;
    }

    .piece-element .select-btn-summary {
        padding: 0;
        margin: 0;
        width: 100% !important;
        max-width: none !important;
        background-color: transparent !important;
    }

    .wrapper {
        font-size: black !important;
        background-color: none;
    }

    .show_title {
        margin-bottom: 20px;
    }
}

body {
    font-family: Helvetica, sans-serif;
}

.pdf-style {
    display: flex;
    flex-direction: column;
    margin: 0 1cm;
    margin-top: 0.8cm;
    text-align: left;
}

.pdf-style .no-print {
    display: none !important;
}

.pdf-style .dropdown-label {
    display: none;
}

.pdf-style .flexTwoItems {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pdf-style a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}

.pdf-style .dropdown-row {
    /* margin: 0 !important;
    padding: 0 !important;
    font-size: 10px !important;
    max-height: 18px !important;
    background-color: transparent !important; */
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 11px !important;
    max-height: 18px;
    background-color: transparent !important;
}

.pdf-style #dropdownsWrapper {
    padding-bottom: 30px !important;
}

.pdf-style .sBtn-text {
    font-size: 10px !important;
    max-width: 500px;
    min-width: none;
    width: 100%;
    overflow: visible;
    text-overflow: unset;
    white-space: unset;
    font-weight: 400;
}

.pdf-style .select-btn {
    min-width: none !important;
    background-color: transparent !important;
}

.pdf-style .signForm {
    display: flex;
    position: absolute;
    top: 20cm;
    right: 0;
    font-size: 11px;
    font-style: italic;
}

.pdf-style .signElements {
    display: flex;
}

.pdf-style .signElements:nth-child(2) {
    margin-bottom: 10px;
}

.pdf-style .allPieceWrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 5px;
}

.pdf-style .allPieceWrapper input {
    width: 7cm;
}

.pdf-style .piecesWrapper {
    display: flex;
    flex-direction: column;
    margin: 0 !important;
    padding: 0 !important;
}

.pdf-style .edition {
    height: unset;
    padding: 0;
}

.pdf-style .time-input input {
    height: unset;
    width: 20px;
    padding: 0 !important;
    margin: 0 !important;
    text-align: right;
}

.pdf-style .container {
    margin: 0 !important;
    margin-top: 8px !important;
    height: unset !important;
}

.pdf-style .time-input input:nth-of-type(1) {
    height: unset;
    width: 42px;
    padding: 0 !important;
    margin: 0 !important;
}

.pdf-style .time-input input:nth-of-type(2) {
    height: unset;
    width: 31px;
    padding: 0 !important;
    margin: 0 !important;
}

.pdf-style .time-input span {
    color: #000;
    font-size: 13px !important;
    margin: 0;
}

.pdf-style .time-input label {
    color: #000;
    font-size: 13px !important;
    margin: 0;
}

.pdf-style .box-form {
    border: none;
    font-size: 10px;
    padding: 0;
    margin: 0;
    color: #000;
}

.pdf-style .signElement {
    display: flex;
}

.pdf-style .signElement p {
    font-size: 10px;
}

.pdf-style .print-justify {
    border: unset;
    font-size: 18px;
    padding: 7px;
    color: #000000;
}

.pdf-style .summary-input.print-justify.phone {
    color: #000 !important;
    font-style: normal !important;
    text-decoration: none !important;
}

.pdf-style .form-label-second {
    color: #000000;
    font-weight: 700;
    margin: 0;
    margin-right: 5px;
    font-size: 12px !important;
}

.pdf-style .custom-file-label {
    color: #000000;
}

.pdf-style .file-link-wrapper-summary a {
    color: #000000;
}

.pdf-style .subTitlePrint {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 0 5px;
    padding: 0;
}

.pdf-style .subTitlePrint h3 {
    margin: 0;
    padding: 0;
    margin-top: 30px;
}

.pdf-style .titleForm {
    margin-top: 30px;
    display: block !important;
    text-transform: uppercase;
    font-weight: 700;
}

.pdf-style .show_title {
    display: block !important;
    margin-top: 30px;
    font-size: 19px;
    /* text-align: center; */
}

.pdf-style .image.icon {
    display: none;
}

.pdf-style .image.icon.logo {
    /* position: absolute;
    top: 0; */
    /* left: -2cm; */
    /* left: 0; */
    display: flex !important;
    align-items: flex-start;
    justify-content: flex-start;
    margin-left: auto;
    width: 55px;
    height: 55px;
}

.pdf-style .box-form.summary-input {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.pdf-style .img-wrapper.reduced {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    height: 80px;
}

.pdf-style .form-wrapper {
    padding: 15px 0 0 0;
    font-size: 10px !important;
    max-width: unset;
    margin: 0;
}

.pdf-style input,
.pdf-style .input {
    border: none !important;
    border-radius: unset !important;
    font-size: 10px !important;
}

.pdf-style .select-btn.select-btn-summary {
    border-radius: unset;
    border: none;
    height: unset;
    display: flex;
    flex-direction: row;
    min-width: none !important;
    width: 100%;
    height: unset;
    font-size: 10px !important;
    color: #000;
    margin: 0;
    padding: 0;
    flex-direction: row !important;
    align-content: center !important;
    align-items: baseline !important;
    background-color: transparent !important;
}

.pdf-style .total-time {
    font-size: 13px;
    color: #000;
    font-weight: 700;
    margin: 0 !important;
    text-align: right;
}

.pdf-style .allPieceWrapper .time-input input {
    font-size: 13px !important;
}

.pdf-style .pieceInfoWrapper {
    /* margin: -5px !important; */
    margin-left: -5px;
    padding: 0 !important;
    height: unset;
}

.pdf-style .pieceInfoWrapper span {
    font-weight: 700;
    font-size: 13px !important;
    height: 6px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pdf-style .pieceInfoWrapper input {
    background-color: transparent;
    font-size: 13px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pdf-style .pieceInfoWrapper .time-input {
    padding: 0 !important;
    margin: 0 !important;
}

.pdf-style .minutes {
    padding: 0;
    margin: 0;
    background-color: transparent !important;
}

.pdf-style .seconds {
    padding: 0;
    margin: 0;
    background-color: transparent !important;
}

.pdf-style .header,
.pdf-style .footer,
.pdf-style .page-number {
    display: none;
}

.pdf-style body {
    font-size: 10px !important;
    margin-top: 0;
    background-color: none !important;
    background-color: transparent;
}

.pdf-style textarea {
    border: none !important;
    color: #000000 !important;
    height: 400px !important;
    padding: 0;
    margin: 0;
}

.pdf-style input {
    color: #000000;
    font-size: 10px !important;
}

.pdf-style #print_helper_music_studies_text,
.pdf-style #print_helper_music_studies_text_2,
.pdf-style #print_helper_awards_text,
.pdf-style #print_helper_awards_text_2,
.pdf-style #print_helper_biography {
    display: block;
    overflow: visible;
    white-space: pre;
    white-space: pre-wrap;
    margin-top: 10px;
}

.pdf-style #music_studies_text,
.pdf-style #music_studies_text_2,
.pdf-style #awards_text,
.pdf-style #awards_text_2,
.pdf-style #biography {
    display: none;
}

/* .pdf-style .logoWrapper {
    display: flex;
    flex-direction: row;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center;
    justify-content: center;
} */

.pdf-style .time-wrapper {
    justify-content: flex-end !important;
    background-color: transparent !important;
}

.pdf-style .programme {
    padding-top: 0.8cm;
    page-break-inside: avoid;
    page-break-before: always;
}

.pdf-style .time-wrapper.time-wrapper-summary {
    color: #000;
    background-color: transparent !important;
}

.pdf-style .recommender {
    color: #000000;
    background-color: transparent;
    max-width: unset;
    width: 17cm;
    padding: 0 !important;
    height: 15px;
}

.pdf-style .form-box.textarea {
    flex-direction: column;
}

.pdf-style .form-label-second.textarea {
    width: 100%;
}

.pdf-style .declarationPrint {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 10px !important;
    font-style: italic;
}

.pdf-style .declarationPrintHide {
    display: none !important;
}

.pdf-style .form-box {
    display: flex;
    align-items: baseline;
    margin-bottom: 5px;
    page-break-inside: avoid;
    border: none;
}

.pdf-style .printSeparator {
    margin: 10px;
}

.pdf-style .summary-input {
    width: unset;
    margin: 0;
    padding: 0;
    font-size: 12px !important;
    background-color: transparent;
}

.pdf-style .form-box-second {
    page-break-inside: avoid;
    border: none;
    padding: 7px 0;
}

.pdf-style .form-box-second-final {
    border-bottom: none !important;
}

.pdf-style .dropdown-title {
    page-break-before: auto;
    font-size: 17px;
    color: #000;
    font-weight: 700;
    margin: 0 !important;
    padding: 0 !important;
    margin-bottom: 18px !important;
}

.pdf-style .dropdown-title::after {
    background-color: transparent !important;
}


.pdf-style .dropdown-row .box-form.summary-input {
    font-weight: 700;
    background-color: transparent;
}

.pdf-style .dropdown-row .box-form.summary-input input {
    background-color: transparent;
}

.pdf-style header,
.pdf-style footer {
    display: none;
}

.pdf-style .subTitlePrint.pagebreak {
    clear: both !important;
    page-break-before: always !important;
}

.pdf-style .dropdown-subTitle {
    page-break-before: auto;
    font-size: 10px;
    color: #000;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.pdf-style .piece-wrapper {
    padding: 0 !important;
    margin: 0 !important;
}

.pdf-style .piece-element {
    margin: 0;
    padding: 0;
}

.pdf-style .piece-element .select-btn-summary {
    padding: 0;
    margin: 0;
    width: 100% !important;
    max-width: none !important;
    background-color: transparent !important;
}

.pdf-style .wrapper {
    font-size: black !important;
    background-color: none;
}

.pdf-style .show_title {
    margin-bottom: 20px;
}

.point-save-message {
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
	margin-left: 10px;
	vertical-align: middle;
	white-space: nowrap; /* Zapobiega zawijaniu tekstu */
	width: auto; /* Zapewnia, że szerokość nie zmienia się */
	max-width: 100%; /* Może pomóc w ograniczeniu szerokości */
	overflow: hidden; /* W razie potrzeby ukrywa tekst, który jest zbyt szeroki */
}
