@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    font-family: 'Lato', sans-serif;
    font-family: 'Montserrat', sans-serif;
}
div.header {
    background-color: #141728;
    padding: 20px 0;
}
div.header img.logo{
    max-height: 80px;
}

div.body {
    margin-top: 50px;
    display: flex;
    gap: 2rem;
}

div.body div.section-1,
div.body div.section-2
{
    width: 50%;
}

div.body div.section-1 .content,
div.body div.section-2 .content {
    position: relative;
    background-color: #e7e7e7;
    min-height: 500px;
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
    border: 1px solid #141728;
    border-radius: 20px;
    display: flex;
    flex-direction: column;


}

div.body span.step {
    background-color: #141728;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    top: -22px;
    left: -12px;
    position: absolute;
    font-weight: bold;
}

div.body .section .step-info {
    color: #898d8b;
    font-size: .7rem;
    padding-left: 50px;
}

div.body .section .step-title,
div.body .section .form-title {
    color: #141728;
    font-weight: 700;
    font-size: 1.1rem;
}

div.body .section .form {
    flex-grow: 1;
}
div.body .section .form .group-input input {
    font-size: .8rem;
    padding: 10px 5px;
}

div.body .section .form .group-input {
    display: flex;
    gap: 10px;
    align-items: center
}

div.body .section .form .group-input i {
    font-size: 25px;
}
div.body .section.section-2 .buttons {
    display: flex;
    margin-left: -40px;
    margin-right: -40px;
}
div.body .section.section-2 .buttons button {
    flex-grow: 1;
    color: white;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 1rem;

}
div.body .section.section-2 .buttons button.export-gcode {
    background-color: #33ae56;
    border-radius: 0;
    border-bottom-left-radius: 20px;
}
div.body .section.section-2 .buttons button.export-coprint-file {
    background-color: #fabd15;
    border-radius: 0;
    border-bottom-right-radius: 20px;
}

#dropzoneUpload {
    border: 2px dashed black;
    border-radius: 10px;
}

#dropzoneUpload i {
    font-size: 90px;
    margin-bottom: 10px;
    color: #cdcdcd;
}

.select-manual {
    margin-top: 1.5rem;
    display: flex;
}
.select-manual button {
    background-color: #e3dfdf;
    border: 0;
}

.upload-btn {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.upload-btn button {
    margin-top: 1.5rem;
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #547ebf;
    border: 0;
    outline: 0;
}

.tabs {
    display: flex;
    margin-bottom: 10px;
}
.tabs .tab {
    padding: 5px 10px;
    cursor: pointer;
}

.tabs .tab.active {
    background-color: #c5c5c5;
}


@media only screen and (max-width: 767px) {
    .select-manual {
        flex-wrap: wrap;
    }
    div.body {
        flex-direction: column;
    }
    div.body div.section-1, div.body div.section-2 {
        width: 100%;
    }
    div.body div.section-1 .content, div.body div.section-2 .content {
        padding-left: 10px;
        padding-right: 10px;
    }
    .select-manual button {
        width: 100%;
    }
    .upload-btn {
        width: 100%;
    }
    div.body .section.section-2 .buttons {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 10px;
    }
    div.body .section.section-2 .buttons button.export-gcode,
    div.body .section.section-2 .buttons button.export-coprint-file{
        border-radius: 0;
    }
}

@media only screen and (min-width: 768px) {
    .select-manual {
        position: relative;
        width: 80%;
        margin-top: 1.2rem;
        margin-left: auto;
        margin-right: auto;
    }
    .select-manual input {
        border-radius: 10px;
    }
    .select-manual button {
        white-space: nowrap;
        position: absolute;
        right: 0;
        border-radius: 10px;
        top: 0;
        height: 100%;
    }
}

