* {
    box-sizing: border-box;
}

:root{
    font-size: 16px;
    Line-height:2
}

/*|########| MEDIA CONTROL |########|*/
@media (max-width: 960px) {
   .contentDivider {
       flex-direction: column;

   }

    .contentDivider > form {
        border-right: none !important;
        padding-right: 0 !important;
    }

    .contentDivider select {
        width: 100% !important;
        justify-content: center;
    }

    .uploadButtonContainer {
        flex-direction: column;
    }

    .uploadButtonContainer > div {
        width: 100%;
    }

    .applyButton {
        width: 100% !important;
        margin-top: 0 !important;
    }

    .applyButton a, .applyButton p {
        width: 100% !important;
        margin-top: 0 !important;
    }

    .mt-75\@sm {
        margin-top: 75px !important;
    }

    aside.applicationInfo {
        padding-right: 20px !important;
        padding-left: 20px !important;
        padding-bottom: 20px !important;
    }
}

/*|########| CONTAINER STYLES |########|*/
.fileContainer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fileContainerFile {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.fileContainerFile > svg {
    color: #d95e58;
    transition-duration: 200ms;
}

.fileContainerFile > svg:hover {
    transform: translateY(-5px);
    cursor: pointer;
    transition-duration: 200ms;
}

.socialsContainer > a {
    transition-duration: 200ms;
    color: #d95e58 !important;
}

.socialsContainer > a:hover {
    transform: translateY(-5px);
    cursor: pointer;
    transition-duration: 200ms;
}

div:has(> div > button.uploadButton) {
    margin: 20px 0 20px 0;
}

div:has(> input[type="file"][data-uploaded="true"]) {
    display: none !important;
}

.applicationSuccessContainer {
    position: fixed;
    background-color: white;
    padding: 30px;
    max-width: 300px;
    min-height: 100px;
    width: fit-content;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    box-shadow: 1px 1px 30px 0px black;
    -webkit-box-shadow: 1px 1px 21px 0px black;
    -moz-box-shadow: 1px 1px 21px 0px black;
}

.applicationSuccessContainer > .errorHeader {
    border-bottom: solid 1px lightgray;
    padding: 20px 0 20px 0;
    width: 100%;
    margin-bottom: 10px;
}

.applicationSuccessContainer:has(.errorHeader) {
    border: solid 10px #d95e58;
}

.contentDivider {
    display: flex;
    gap: 10px;
    width: 100%;
    margin: 50px 0 70px 0;
}

.applicationFormTextContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fileUploadBtnContainer {
    flex-grow: 1;
    height: 100%;
}

.uploadButtonContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    min-height: 75px;
}

.applicationHeaderImg {
    height: 30vh;
}

.applicationHeaderImg > img {
    object-fit: cover;
    object-position: 0 0;
    height: 100%;
}

.agbCheckboxContainer {
    display: flex;
    gap: 20px;
    justify-content: start;
    align-items: center;
}

aside.applicationInfo {
    min-width: 20%;
    padding-left: 50px;
    line-height: 20px;
    padding-right: 150px;
}

.contactInfoContainer {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.socialsContainer {
    display: flex;
    gap: 10px;
    color: #d95e58;
}

.whatsAppApplicationContainer {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

/*|########| UTILS STYLES |########|*/

.w-50\% {
    width: 50%;
}

.w-100 {
    width: 100px;
}

.w-fit {
    width: fit-content;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.text-underline {
    text-decoration: underline !important;
}

.overflowXHide {
    overflow-x: hidden !important;
}

/*|########| INPUT STYLES |########|*/
.uploadButton {
    width: 100%;
    height: 100%;
    border: dashed 1px grey;
    border-radius: 6px;
    text-align: left;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
    font-weight: 500;
    font-size: 16px;
    padding: 15px;
    cursor: pointer !important;
}

.uploadButton > svg {
    height: 48px;
    width: 48px;
    stroke-width: 1px;
}

.sendBtn {
    background-color: #d95e58;
    color: white;
    border: none;
}

.sendBtn:hover {
    background-color: rgba(217, 94, 88, 0.69);
}

::-webkit-file-upload-button {
    cursor:pointer;
}

#applyForm input, #applyForm select {
    border-radius: 4px;
    border: solid 1px #5b5b5b;
}

#applyForm {
    border-right: solid 1px gray;
    flex-grow: 1;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.datePicker {
    box-sizing: border-box;
    padding: 5px 5px 5px 10px;
    min-height: 40px;
    max-height: 40px;
    cursor: pointer;
}

input[type="checkbox"] {
    min-width: 16px;
    min-height: 16px;
}

select, option {
    cursor: pointer !important;
}

.labelInput {
    display: flex;
    flex-direction: column;
    gap: 10px;
}