html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
*{
    box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
    background: #DEDFFF;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
header{
    text-align: center;
    margin-bottom: 36px;
}
header h1{
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 47px;
    color: #000000;
}
header .logo{
    margin-bottom: 35px;
    max-width: 116px;
}
header .demo-ver{
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 23px;
    color: #34379B;
}
.main{

}
.container{
    width: 1245px;
    margin: 60px auto;
}
.content{
    background: #6C6ECB;
    border-radius: 40px;
    padding: 32px 70px;
    margin-bottom: 26px;
}
.row{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content:space-between;
}
.col{
    flex: 0 0 calc(33.333% - 30px);
    box-sizing: border-box;
    max-width: 33.33%;
    flex-wrap: wrap;
}
.title{
    font-weight: 400;
    font-size: 1.75rem;
    line-height: 33px;
    color: #FFFFFF;
    margin-bottom: 26px;
}
.input-row{
    margin-bottom: 11px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
label{
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 150.84%;
    color: #FFFFFF;
    margin-bottom: 4px;
}
label .required{
    color: red;
}
.input{
    background: #FFFFFF;
    border: 1px solid #A6A6A6;
    border-radius: 4px;
    padding: 17px 14px;
}
.input-one-rows{
    display: flex;
    justify-content: start;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
}
.input-one-rows .input{
    flex: 0 0 calc(30% - 8px);
    min-width: 0;
}
.input-one-rows .input.big{
    flex: 0 0 calc(40%);
    min-width: 0;
}
#generate-button{
    width: 100%;
    background: #00F7FF;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 26px;
    color: #000000;
    border: none;
    height: 65px;
    cursor: pointer;
    margin-top: 22px;
}
.radio_label{
    padding: 25px 20px 25px 60px;
    border-radius: 5px;
    margin-bottom:8px;
    background: #FFFFFF;
    position: relative;
    z-index: 0;
    color: #000000;
}
.textarea_label{
    padding: 17px 21px;
    background: #7A0085;
    border-radius: 5px;
}
.textarea_label textarea{
    width: 100%;
    height: 113px;
    border-radius: 5px;
    font-size: 0.75rem;
    border: none;
    padding: 10px
}
.textarea_label textarea::placeholder{
    font-size: 0.75rem;
}
.radio_label.ai{
    background: #7A0085;
    color:#ffffff;
}
.radio_label input + .radio_label_mark{
    position: absolute;
    left: 20px;
    top: 50%;
    width: 17px;
    height: 17px;
    z-index: 100;
    border: 1px solid #656565;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #ffffff;
}
.radio_label input:checked + .radio_label_mark{
    border: 6px solid #268EFF;
}
.radio_label input{
    display: none;
}
.switch {
    position: relative;
    display: inline-block;
    width: 75px;
    height: 36px;
    background-color: #8F8F8F;
    border-radius: 20px;
    transition: all 0.3s;
    margin: 7px 10px;
}
.switch::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius:50%;
    background-color: white;
    top: 4px;
    left: 4px;
    transition: all 0.3s;
}
.checkbox:checked + .switch::after {
    left : 41px;
}
.checkbox-element{
    display: flex;
    align-items: center;
}
.switch-label, .checkbox-element span{
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 150.84%;
    color: #FFFFFF;
}
.checkbox:checked + .switch {
    background-color: #7A0085;
}
.checkbox {
    display : none;
}

.content-status {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 30px;
}
.content-status-description {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.2;
}
.notice{
    color: red;
}
.radio_label.ai .notice{
    color: #FFFB00;
}
#methods{
    display: none;
}
#used-tools-container{
    display: none;
}
#drop-zone {
    border: 2px dashed #000000;
    background: url(/imgs/folderIcon.png)  no-repeat center 10px #ffffff;
    background-size: 60px;
    border-radius: 5px;
    padding: 80px 15px 25px;
    text-align: center;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000000;
    cursor: pointer;
}
.drop-title{
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 120%;
    text-align: center;
    margin-bottom: 5px;
}
.browse-title{
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 150%;
    text-align: center;
    color: #000000;
    margin-bottom: 13px;
}
.drop-description{
    font-family: 'Source Sans 3', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 120%;
}
.drop-options{
    margin-top: 20px;
    text-align: left;
    margin-left: 25px;
    font-size: 0.75rem;
    line-height: 1.5;
}
.drop-notice{
    margin-top: 20px;
    font-family: 'Courier', monospace;
    font-style: normal;
    font-weight: 400;
    font-size: 0.5625rem;
    line-height: 120%;
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: left;
}
#drop-zone.dragover {
    border-color: #007bff;
    background-color: #f0f8ff;
}
#exif-data-display, .exif-error{
    background: #000000;
    border-radius: 5px;
    color: #ffffff;
    margin: 11px 0;
    padding: 10px;
    height: auto;
    opacity: 1;
}
.exif-error{
    color: red;
}
#exif-data{
    background: #383838;
    max-width: 315px;
    max-height: 186px;
    overflow: scroll;
    word-break: break-word;
    padding: 10px 5px;
    margin: 15px 0;
}
#exif-data p{
    margin-bottom:5px;
    font-family: 'Source Sans 3', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 18px;
    color: #FFFFFF;
}
#file-name{
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 150%;
    text-align: center;
    color: #FFFFFF;
    vertical-align: middle;
}
#file-name:before{
    content: "";
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-right: 10px;
    background: url(/imgs/fileIcon.png) no-repeat center / contain;
    vertical-align: middle;
}
#exif-options{
    font-family: 'Source Sans 3', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 18px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    margin-left: 30px;
}
#exif-options label{
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 18px;
}
.hidden{
    display: none;
}
.invisible{
    opacity: 0;
    height: 0;
}

@media (max-width: 1250px) {
    .container {
        max-width: 90%;
        width: auto;
        margin: 60px auto;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 95%;
        margin: 50px auto;
    }
}

@media (max-width: 976px) {
    .row {
        flex-direction: column;
    }
    .col {
        flex: 0 0 calc(100% - 30px);
        max-width: 100%;
    }
    .container {
        margin: 30px auto;
    }
}

@media (max-width: 450px) {
    body{
        font-size: 14px;
    }
    .content {
        padding: 30px 20px;
    }
    header .logo{
        max-width: 70px;
        height: auto;
    }
    header h1 {
        font-size: 26px;
    }
}
