.inbox {
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 800px;
	margin: 0 auto;
	box-sizing: border-box;
}
.wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 480px;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 16px;
}
.right {
    margin-left: auto;
}
.page_title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 36px;
}
.default_input {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #fff;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: none;
    padding: 8px 12px;
    margin: 0 auto;
    white-space: nowrap;
}
.default_input.blur {
    border: none;
    background-color: #fcfcfc;
}
.default_button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #364653;
    font-size: 16px;
    color: #fff;
    border: none;
    border-radius: 4px;
    box-shadow: none;
    padding: 8px 20px;
    margin: 0 auto;
    white-space: nowrap;
    cursor: pointer;
}
.default_button.blur {
    color: #777;
    background-color: #f3f3f3;
}
.default_button.full {
    width: 100%;
}
.default_button.s,
.default_button.small {
    padding: 4px 20px;
}
.default_button.xs {
    font-size: 14px;
    padding: 4px 20px;
}

.toggle_button_wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.toggle_button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    width: 45%;
    font-size: 16px;
    font-weight: 500;
    padding: 12px;
    border-radius: 4px;
    background-color: #F3F3F3;
    white-space: nowrap;
}
.toggle_button.small {
    font-size: 14px;
    padding: 8px;
}
.toggle_button.active {
    color: #fff;
    background-color: #364653;
}
.contents_wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding: 24px 0;
}
.contents_title {
    display: inline-flex;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    width: 100%;
    margin-right: 0;
}

@media screen and (max-width: 800px) {
    .inbox {
        padding: 0 16px;
    }
    .wrapper {
        padding: 40px 0;
    }
}