.container {
    max-width: 1165px;
    width: 100%;
    min-height: 100vh;
    padding-top: 50px;
    margin: 0 auto;
}

.content-header {
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    border-bottom: 1px solid var(--bk, #000);
}

.content-header h1 {
    color: var(--bk, #000);
    font-family: SUIT;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
    /* 41.6px */
    letter-spacing: -1.6px;
}

.content-header p {
    overflow: hidden;
    color: var(--bk, #000);
    text-overflow: ellipsis;
    font-family: SUIT;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
    /* 20.8px */
    letter-spacing: -0.8px;
}

.content {
	padding: 40px 0;
    border-bottom: 1px solid var(--grey-grey-500, #8B96A2);
}

.content p {
    color: #000;
    font-family: SUIT;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
    /* 23.4px */
    letter-spacing: -0.9px;
    display: flex;
    flex-direction: column;
}

.buttons {
    display: flex;
    justify-content: center;
    column-gap: 20px;
    margin-top: 40px;
    margin-bottom : 40px;
}

.go-list {
	display: flex;
	justify-content: center;
	align-items: center;
    flex: 1;
    max-width: 363px;
    height: 56px;
    border: 1px solid var(--grey-grey-100, #DBDEE2);
    background: var(--wh, #FFF);
    color: var(--bk, #000);
    font-family: SUIT;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    /* 23.8px */
    letter-spacing: -0.7px;
}

.go-form {
	display: flex;
	justify-content: center;
	align-items: center;
    flex: 1;
    max-width: 363px;
    height: 56px;
    background: var(--Gold, #A48B78);
    color: var(--bk, #fff);
    font-family: SUIT;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    /* 23.8px */
    letter-spacing: -0.7px;
}



.form-outter {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 10;
    background: rgba(0, 0, 0, 0.60);
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
}

.form-outter.active {
    display: flex;
}

.form-container {
    width: 90%;
    max-height: 95%;
    max-width: 1060px;
    border-radius: 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.form-header h2 {
    color: var(--wh, #FFF);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: SUIT;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    /* 20px */
    letter-spacing: -1px;
}

.form-header {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0px 40px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    background: var(--Navy, #171C61);
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.form-header .close {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-container {
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    padding-bottom: 20px;
}

.form {
    width: 100%;
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.row {
    display: flex;
    column-gap: 20px;
    flex: 1;
}

.input {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    flex: 1;

}

.input h4 {
    color: var(--bk, #000);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: SUIT;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    /* 18px */
    letter-spacing: -0.9px;
}

.input input {
    padding: 24px 12px;
    border: 0;
    border-bottom: 1px solid var(--grey-STROKE-grey-100, #DBDEE2);
    color: var(--bk, #000);
    font-family: SUIT;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 18px */
    outline: none;
}

.input input::placeholder {
    color: var(--grey-grey-500, #8B96A2);
    font-family: SUIT;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    /* 18px */
}

.radio-container {
    display: flex;
    column-gap: 12px;
}

label.custom {
    display: flex;
    align-items: center;
    column-gap: 2px;
    cursor: pointer;
    padding: 13px 0;
}

label.custom>input {
    display: none;
}

.custom-radio {
    width: 20px;
    height: 20px;
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    position: relative;
}

.custom-radio::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border: 1.5px solid #583D94;
    border-radius: 50%;
    margin: 0;
    padding: 0;
    display: flex;
}

label.custom>input:checked~.custom-radio::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    background-color: #583D94;
    border-radius: 50%;
    margin: 0;
    padding: 0;
    display: flex;
}

.custom>span {
    color: var(--TEXT, #242A30);
    font-family: SUIT;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 18px */
    letter-spacing: -0.9px;
}



.file-tap {
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}


label.custom-file {
	position: relative;
    display: flex;
    column-gap: 20px;
}

label.custom-file>input {
    display: none;
}



label.custom-file>div.file-name {
    padding: 24px 12px;
    border: 0;
    border: 1px solid var(--grey-STROKE-grey-100, #DBDEE2);
    color: var(--bk, #000);
    font-family: SUIT;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 18px */
    outline: none;
    flex: 1;
}


label.custom-file>.attach-file {
    padding: 10px 20px;
    border: 1px solid var(--200, #E2E8F0);
    color: var(--600, #475569);
    font-family: SUIT;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 14px */
}

.file-delete {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.texts {
    color: var(--grey-grey-500, #8B96A2);
    font-family: SUIT;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 19.6px */
    letter-spacing: -0.7px;
}

.checkbox-container {
    margin-bottom: 20px;
}

.checkbox-container>label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    column-gap: 8px;
}



.checkbox-container>span {
    color: #000;
    font-family: SUIT;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 14px */
    letter-spacing: -0.7px;
    text-decoration-line: underline;
}


.agree {
    margin-bottom: 20px;
}

.agree>.go-list,
.agree>.go-form {
    max-width: 206px;
}

@media (max-width : 1165px) {
    .container {
        padding: 50px 20px;
    }
}

@media (max-width : 920px) {
    .form-container {}

    .row {
        flex-direction: column;
        row-gap: 20px;
    }
}

@media (max-width : 768px) {
    .input h4 {
        font-size: 16px;
        letter-spacing: -0.8px;
    }

    .input input,
    .custom>span {
        font-size: 14px;
        letter-spacing: 0;
        white-space: nowrap;
    }

    .agree>.go-list,
    .agree>.go-form {
        max-width: 43%;
    }

}

.addFile{
	display: flex;
	flex-direction: column;
	row-gap: 8px;
	width: 100%;
	padding: 16px 20px;
    border-bottom: 1px solid var(--grey-grey-500, #8B96A2);
}
.addFile a{
	display: flex;
	align-items: center;
	column-gap: 8px;
}
.addFile a img{
	width: 16px;
}


.locationApp{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.input input::placeholder {
    color: var(--grey-grey-500, #8B96A2);
    font-family: SUIT;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    /* 18px */
}

.input .date-range-container {
    display: flex;
    column-gap: 8px;
    align-items: center;
    padding: 0 10px 0 0
}

.input .date-container {
    display: flex;
    column-gap: 12px;
}

.input .date-container>input#start_date,
.input .date-container>input#end_date {
    z-index: 100;
}

.input .date-container>span.not-seleced {
    color: var(--grey-grey-500, #8B96A2);
}

.input .date-container>span {
	position:absolute;
    flex: 1;
    /* width: 154px; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 24px 12px 22px 12px;
    color: var(--bk, #000);
    font-family: SUIT;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 18px */
}

.input .date-container>button {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* date */
input[type="date"]{
    position: relative;
	border: 0;
	width: 100%;
    padding: 24px 12px;
    border-bottom: 1px solid var(--grey-STROKE-grey-100, #DBDEE2);
    background: #FFF;
    color: var(--text-color);
	font-size: 18px;
	font-weight: 500;
	line-height: 100%; /* 18px */
	font-family: var(--fn-suit);
	letter-spacing: -0.9px;
    transition: all .3s;
    
}

input[type="date"]::-webkit-clear-button,
input[type="date"]::-webkit-inner-spin-button { 
    display: none;
} 
input[type="date"]::-webkit-calendar-picker-indicator { 
    background: transparent;
    z-index: 1;
}
input[type="date"]::before{
	width: 100%;
	content: attr(data-placeholder);
	color: var(--grey-500);
	font-size: 18px;
	font-weight: 500;
	line-height: 100%; /* 18px */
	letter-spacing: -0.9px;
}
input[type="date"]::after{
	position: absolute;
	top:50%;
	right:16px;
	content: '';
	width: 22px;
	height: 22px;
	background: url(/img/user_img/date.png) center center / 100%;
	transform: translateY(-50%);
	z-index: 0;
}
@media all and (max-width : 768px){
	
	input[type="date"]{
		width: 122px;
	    padding: 24px 4px;
	}
}
.input .date-container>button>input {
    /* display: none; */
}

.dash {
    display: flex;
    align-items: center;
    justify-content: center;
}

