/* ---------- new radio 單選 --------- */
.radio_container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio_container input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.radio_container .checkmark {
    position: absolute;
    top: 8px;
    left: 8px;
    height: 24px;
    width: 24px;
    border: 2px solid var(--main-primary-color);
    border-radius: 50%;
}

/* 點擊時的狀態 */
.radio_container .outter {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: .3s;
}

.radio_container .outter:hover {
    background: #E0E7F8;
}

.radio_container .outter:active {
    background: #BBC3DA;
}

/* 選取圓點 */
.radio_container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--main-primary-color);
}

.radio_container input:checked~.outter .checkmark:after {
    display: block;
}


input[type="file"] {
    display: none;
}

.small,
.asterisk {
    color: red;
}

.item {
    height: 60px;
    width: 60px;
}

.hitem>img{
    border: 1px solid #c6c6c6;
    object-fit: contain;
    border-radius: 4px;
    cursor: pointer;
}

.hitem a {
    width: 30px;
    height: 30px;
    top: 2px;
    right: -8px;
}
.hitem a>img{
    width: 24px;
    position: absolute;
    top: 5px;
    right: 3px;
}

.hitem a:hover{
    background-color: #E0E7F8;
}

.hitem a:active{
   background-color: #BBC3DA;
}

.input_group input:hover,
.input_group input:focus,
.input_group textarea:hover,
.input_group textarea:focus {
    border: 1px solid #658ae6 !important;
    outline: 2px solid #658ae6;
}


.item_wrap {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .16);
}

.item_wrap .item_header {
    width: 100%;
    height: 40px;
    background: #285ee4;
    padding: 4px 16px;
}

.item_header>span {
    font-size: 20px;
    color: #ffff;
    line-height: 1.5;
}

.item_wrap .item_body {
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 24px 16px
}


.contents {
    max-width: 1152px;
}

.object_mgmt_add .action {
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
}

.object_mgmt_add .action .btn {
    width: 150px;
    height: 40px;
    font-size: 18px;
    letter-spacing: 1.6px;
}

.object_mgmt_add .action .btn+.btn {
    margin-left: 8px;
}

.item_body_main {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.item_body_row {
    min-width: 352px;
    flex-grow: 1;
}

.catch_title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3d3d3d;
    text-align: left;
    margin-bottom: 24px;
}

.annotation-title {
    margin-bottom: 8px;
}

.annotation-title label {
    font-size: 20px;
}

.radio_group {
    margin-bottom: 32px;
}

.radio_group>ul {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.radio_group>ul::before {
    content: '';
    display: inline-block;
    width: 2px;
    height: 36px;
    background-color: #dbdbdb;
}

.radio_group>ul li {
    margin-left: 8px;
}

.textarea-gg {
    width: 100%;
    height: 96px;
    box-sizing: border-box;
    padding: 4px 16px;
    border: 1px solid #c6c6c6;
    border-radius: 8px;
    background: #fff;
    color: #3d3d3d;
    font-size: 18px;
    outline: none;
}

/* 載具類型 carrier_area  */
.carrier_area .tab_triggers li .input_group {
    width: 100%;
}

.carrier_area .radio_container {
    justify-content: start;
}

.carrier_area .tab-link .tabs ul li+li {
    margin-left: 0;
}

.input-field-upload label {
    font-size: 20px;
    color: #3d3d3d;
    font-weight: 500;
}

#upload_icon {
    width: 72px;
    height: 72px;
    margin-top: 8px;
    cursor: pointer;
}

@media screen and (max-width: 742px) {

    .object_mgmt_add .action {
        width: 100%;
        flex-direction: column-reverse;
    }

    .object_mgmt_add .action .btn {
        width: 100%;
    }

    .object_mgmt_add .action .btn+.btn {
        margin-left: 0;
        margin-bottom: 16px;
    }
}

@media screen and (max-width:450px) {
    .item_body_row{
        min-width: 282px;
    }
}


#ex9_modal {
    max-width: 343px;
    padding: 24px 16px;
}

#ex9_modal h4 {
    font-size: 28px;
    font-weight: bold;
    color: var(--main-primary-color);
}

#ex9_modal .action .btn {
    width: 100%;
}

#ex9_modal.modal a.close-modal {
    opacity: 0;
}