/* --------------------- global ---------------------*/
* {
    box-sizing: border-box;
}

.container {
    margin: 0 auto;
    max-width: 1280px;
    width: 100%;
    margin-top: 5%;
}

body,
html {
    letter-spacing: 0.02em;
    font-family: 'Roboto', sans-serif;
    color: #0D2736;
    line-height: 24px;
    font-size: 16px;
    font-weight: 350;
}

.error_message {
    font-size: 14px;
    color: #b20707;
    margin-top: -10px;
}


h1 {
    font-size: 2em;
    font-family: 'Roboto', sans-serif;
    color: #0D2736;
    text-align: center;
}

h2 {
    font-size: 1.5em;
    font-family: 'Roboto', sans-serif;
    color: #585858;
    text-align: center;
    font-weight: 400;
}

h3 {
    font-size: 1.3em;
    color: #0D2736;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-align: center;
}

h4 {
    font-size: 1em;
    color: #0D2736;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-align: left;
}


a {
    font-family: 'Roboto', sans-serif;

}


.resource {
    display: block;
    color: #585858;
    font-style: italic;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

.copyright p {
    color: #585858;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: #0D2736;
}

ul,
li {
    list-style: none;
}

button {
    /* Reset default styles */
    border: none;
    cursor: pointer;
}





/* --------------------- header ---------------------*/
header {
    height: 64px;
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
}

.logo {
    float: left;
    display: flex;
}

.logo img {
    width: 90%;
}

.logo_name {
    align-self: center;
    color: #2E6181;
}

.logo_title {
    font-weight: bold;
    font-size: 18px;
}

.logo_slogan {
    font-weight: 300;
    font-size: 16px;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 1,
        'wght' 400,
        'GRAD' 0,
        'opsz' 48
}

.home {
    float: right;
    padding-top: 20px;
    padding-right: 26px;
    display: flex;
    align-items: center;
    color: #2E6181;
}

.home:hover {
    color: #01AEBC;
}



/* --------------------- Content --------------------- */
.title {
    margin-top: 8%;
}

.kv {
    background-image: url(/imageCrop/images/boat_image.jpg);
    width: 100%;
    height: 500px;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.background {
    width: 80%;
    height: 60%;
    background-color: #ffffffc1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 20px;

}

.background h3 {
    padding-top: 70px;
}

.button_big {
    background-color: #01AEBC;
    padding: 20px 50px;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font-size: 1.3em;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    width: 300px;
}

.button_big:hover {
    opacity: 90%;
}


/* --------------------- edit detail --------------------- */
.image_detail {
    display: flex;
    margin-top: 10%;
}

input::placeholder {
    color: rgb(190, 190, 190);
  }

input {
    margin-bottom: 15px;
    height: 25px;
    box-sizing: border-box;
}



input:focus {
    border-radius: 2px;
    outline: none;
    border-color: #ffffff00;
    outline: 1px solid #01AEBC;
}

.disable {
    color: #fff;
    background-color: #bfbfbf;

}

.active {
    color: #fff;
    background-color: #01AEBC;
}

.active:hover {
    opacity: 90%;
}

button {
    padding: 10px;
    border-radius: 5px;
    width: 150px;
    letter-spacing: 0.4px;
}


.row {
    margin-bottom: 70px;
}

.crop_steps h3 {
    margin-bottom: 10%;
    text-align: left;
}

.image_area {
    width: 80%;
    margin-left: 20px;
    margin-top: 20px;
}

.image_area button {
    float: right;
}

.image_display {
    width: 100%;
    height: 500px;
    background-color: #F8F8F8;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crop_area {
    width: 500px;
    height: 200px;
    border: 3px dashed #bfbfbf;
}

/* --------------------- footer --------------------- */
footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    max-height: 90%;
    text-align: center;
    border-bottom: #01AEBC 5px solid;
}



/* -------------- RWD --------------*/
/* Medium Device */
@media(max-width: 950px) {
    .container {
        margin-top: 20%;
        margin-bottom: 20%;
    }

    .button_big {
        width: 85%;
        font-size: 1.2em;
        top: 74%;
    }

    .container {
        margin-top: 25%;

    }

    .logo img {
        width: 50px;
    }

    .logo_title {
        font-size: 14px;
        line-height: 13px;

    }

    .logo_slogan {
        font-size: 12px;
    }

    .home {
        padding-top: 10px;
        padding-right: 10px;
    }

    h1 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.2em;
        line-height: 25px;
    }

    h4 {
        font-size: 1em;
    }

    .background h3 {
        padding-top: 28px;
    }

    .kv {
        height: 400px;
    }

    .image_detail {
        display: block;
    }

    .image_area {
        margin: 0;
        width: 100%;
    }

    .image_area button {
        margin-bottom: 10px;
        
    }
 
}




/* XX-Large Device */
@media(min-width: 951px) {}