@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');

* {
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
p,
form,
input {
    margin: 0;
    padding: 0;
    outline: none;
    list-style-type: none;
}

button:focus {
    outline: 0;
}

button,
input,
select {
    border: 0;
    font-family: 'Arimo', "微軟正黑體", "Microsoft JhengHei", sans-serif;
}

a {
    text-decoration: none;
}

html {
    height: 100%;
}

body {
    width: 100%;
    min-height: 100%;
    text-align: center;
    color: #fff;
    font-family: 'Arimo', "微軟正黑體", "Microsoft JhengHei", sans-serif;
    background: #fff;
}

/* Header (desktop only) */
header {
    width: 100%;
    height: 100px;
    display: flex;
    padding: 0 0 0 65px;
    justify-content: space-between;
    align-items: center;
    background: #000;
}

@keyframes showUp {
    0% {
        opacity: 1;
    }

    32% {
        opacity: 1;
    }

    33.3% {
        opacity: 0;
    }
}

.hd-models {
    position: relative;
    width: 52vw;
    height: 59px;
    overflow: hidden;
}

.hd-model-line {
    position: absolute;
    opacity: 0;
    right: 0;
    top: 0;
    display: flex;
    animation: showUp 9s linear infinite;
}

.hd-model-line:nth-child(2) {
    animation-delay: 3s;
}

.hd-model-line:nth-child(3) {
    animation-delay: 6s;
}

.hd-model-line li {
    width: 18.1vw;
    display: flex;
    align-items: center;
}

.hd-model-line li:last-child {
    width: 15.7vw;
}

.hd-model-line img {
    display: block;
    width: 59px;
    height: 59px;
    border: 2px solid #fff;
    border-radius: 50%;
    margin-right: 20px;
}

.hd-model-line span {
    display: block;
    text-align: left;
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 3px;
}

.hd-model-line p {
    position: relative;
    padding-left: 25px;
    font-style: italic;
    font-size: 18px;
    line-height: 21px;
}

.hd-model-line p::before {
    content: "";
    left: 0;
    top: 2px;
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.hd-model-line p.offline {
    color: #ff004d;
}

.hd-model-line p.offline::before {
    background: #ff004d;
}

.hd-model-line p.online {
    color: #00ff9d;
}

.hd-model-line p.online::before {
    background-image: url("../assets/OnlineCircle.gif");
}

main {
    display: flex;
    background: url("../assets/bg_center.jpg");
}

/* Left Side: Model list */
.main-list {
    width: 25.2%;
}

.list-box li {
    display: flex;
    background-color: darkslategray;
    border-bottom: 1px solid #dadada;
    padding: 30px 0;
    justify-content: center;
    align-items: center;
}

.list-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: 20px;
}

.list-box div {
    width: 200px;
    text-align: left;
}

.list-box .p1 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 2px;
}

.list-box .p2 {
    font-size: 18px;
    line-height: 21px;
    font-weight: 400;
    text-transform: uppercase;
}

/* Right Side: Chat */
.main-chat {
    width: 25.2%;
    min-width: 375px;
    background: url("../assets/bg_right.jpg");
}

.chat-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px 5px;
}

.ch-bk {
    position: relative;
    padding-left: 30px;
    font-size: 24px;
    line-height: 28px;
}

.ch-bk::before {
    content: "";
    position: absolute;
    background-image: url("../assets/icon_bk.svg");
    width: 24px;
    height: 24px;
    left: 0;
    top: 2px;
}

.ch-online {
    position: relative;
    padding-left: 25px;
    font-style: italic;
    color: #00ff9d;
    font-size: 18px;
    line-height: 28px;
}

.ch-online::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 6px;
    background: #00ff9d;
    border-radius: 50%;
}

.ch-photo {
    display: block;
    width: 90px;
    height: 90px;
    margin: 0 auto;
    border: 2px solid #fff;
    border-radius: 50%;
    margin-bottom: 3px;
}

.ch-name {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}

.ch-dialog {
    padding: 15px 30px;
}

.ch-dialog li {
    position: relative;
    ;
    display: block;
    padding: 22px 34px 22px 16px;
    width: 358px;
    margin-bottom: 20px;
    font-size: 18px;
    text-align: left;
    font-weight: 500;
}

.ch-dialog li:after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 24px;
    height: 24px;
    background: url("../assets/icon_read.svg");
}

.dialog-you {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    background: #000;
    margin: 0 auto 0 0;
}

.dialog-me {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    background-color: darkslategray;s
    margin: 0 0 0 auto;
}

.ch-dialog li.dialog-img {
    width: 250px;
    height: 200px;
    background: url("../assets/chat_img.gif");
}

.main-center {
    width: 49.6%;
    padding: 50px 4.8vw 0;
}

.reg-content {
    width: 300px;
    text-align: center;
    margin: 0 auto;
}

.c-title {
    font-size: 42px;
    line-height: 60px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Reg from - Content */
.clearfix {
    clear: both;
}

.hide,
.submit_alert,
div[data-form-field="handle_confirm"],
div[data-form-field="email_confirm"],
div[data-form-field="password_confirm"],
.writing_tool li[data-form-tool="instant_writer"],
.reg_consent_group02,
.pagination,
[data-form-page="1"] .prev_link,
.reg-form button.btn.btn-default.prev_link,
.reg-form .page_title {
    display: none;
}

.help-block,
.alert-error {
    color: #ff0000;
}

.reg_consent_group01 {
    font-size: 12px;
    color: #fff;
}

.reg-form .content {
    padding: 0;
    margin: 0 auto;
    background: transparent;
    text-align: center;
}

[data-form-page] {
    margin: 0 auto;
}

.reg-form .help-block p,
[data-form-field="handle"] .note-block,
[data-form-field="password"] .note-block,
[data-form-field="title"] .note-block {
    height: auto !important;
}

.reg-form fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

.reg-form .submit_alert {
    color: #ff0000;
    text-align: center;
    font-size: 12px;
    line-height: 17px;
    font-weight: 400;
}

.error .reg-form select,
.error .reg-form input[type="text"],
.error .reg-form input[type="password"] {
    border: 1px solid #ff0000;
}

.reg-form .note-block,
.reg-form .help-block p span.ok,
.reg-form .error .help-block p,
.reg-form .help-block p,
.reg-form .suggest a,
.reg-form .suggest p,
.reg-form .subtitle,
.alert-error,
.suggest_handles {
    padding-top: 1px;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    font-style: normal;
}

.reg-form .help-block p span.ok {
    color: #00ff37;
}

.reg-form a {
    color: #fff;
    font-style: initial;
}

.reg-form .suggest a.zip_check {
    display: block;
    font-size: 14px;
}

.input {
    position: relative;
}

.reg-form .loading {
    position: absolute;
    right: 12px;
    top: 24px;
    background: url('../assets/loading.gif') no-repeat;
    background-repeat: no-repeat;
    background-size: contain;
    height: 20px;
    width: 20px;
}

.reg-form .actions .loading {
    top: unset;
    bottom: 14px;
}

._validated {
    border: 1px solid #00ff37 !important;
}

.reg-form [data-form-field]>label {
    display: block;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    padding: 20px 0 10px;
}

.pt-3{
    margin-top: 20px;
}

.reg-form label {
    display: block;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    padding: 0px 0 10px;
    position: relative;
}

.reg-form [data-form-field]>label b {
    font-weight: 400;
}

.reg-form label[for="form-intro-title"]>p {
    text-transform: capitalize;
    display: inline-block;
    font-size: 12px;
}

.reg-form label[for="form-intro"]>p {
    display: none;
}

.reg-form [data-form-field="intro"] .suggest span {
    font-size: 12px;
    color: #fff;
}

.writing_tool a {
    text-transform: initial;
}

.reg-form select,
.reg-form input[type="text"],
.reg-form input[type="password"],
.reg-form textarea {
    padding-left: 8px;
    margin: 0;
    width: 100%;
    height: 68px;
    display: block;
    background-color: #fff;
    border: 0;
    border-radius: 25px;
    font-size: 24px;
    font-weight: normal;
    color: #121212;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    resize: none;
    outline: none;
}

#form-looking-for-trans-profile {
    position: relative;
    z-index: 2;
}

.reg-form #form-looking-for-trans-profile>label {
    text-transform: capitalize;
}

.trans_part span {
    text-transform: capitalize;
}

.trans_part {
    display: block
}

.reg-form div[data-form-field="looking-for"] .input .help-block {
    width: 100%;
}

.reg-form div[data-form-field="looking-for"] .input label,
.reg-form .trans_part label {
    display: block;
    margin-bottom: 10px;
    position: relative;
}

.reg-form div[data-form-field="looking-for"] .input label span,
.trans_part span {
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding-left: 20px;
    color: #000;
    text-align: left;
    font-size: 24px;
    font-weight: normal;
    text-transform: capitalize;
    cursor: pointer;
}

.reg-form .input label span {
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding-left: 20px;
    color: #000;
    text-align: left;
    font-size: 24px;
    font-weight: normal;
    text-transform: capitalize;
    cursor: pointer;
}

.trans_part span.indicator {
    display: none !important;
}

.reg-form div[data-form-field="looking-for"] .input label input,
.trans_part label input {
    position: absolute;
    width: 14px;
    height: 14px;
    left: 0;
    top: 8px;
}

.reg-form .checkboxs.input label input{
    position: absolute;
    width: 14px;
    height: 14px;
    left: 0;
    top: 8px;
}

.birth-input {
    display: flex;
    flex-wrap: wrap;
}

.birth-input .help-block {
    width: 100%;
}

select[name^="bday_month"] {
    margin-right: 5px;
    width: calc(46% - 5px);
}

select[name^="bday_day"] {
    margin-right: 5px;
    width: calc(27% - 5px);
}

select[name^="bday_year"] {
    width: 27%;
}

.reg-form select {
    padding-right: 15px;
    background: url("../assets/arrow_black_8x6.png") no-repeat right 8px center #fff;
    background-size: 8px 6px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.reg-form select option {
    color: #222;
}

.reg-form select::-ms-expand {
    display: none;
}

.reg-form textarea {
    height: 120px;
    overflow: auto;
    outline: none;
    font-family: 'Roboto', sans-serif;
    border-radius: 20px;
}

[data-form-field="handle"] .suggest_list .subtitle {
    display: none;
}

.reg-form .suggest a.username_check {
    display: none;
    position: relative;
}

.reg-form .actions {
    position: relative;
    text-align: center;
}

.reg-form button.next_link,
.reg-form button[type="submit"],
.reg-form button.btn.btn-default {
    margin-top: 20px;
    padding: 0;
    width: 100%;
    height: 68px;
    background-color: #fff;
    font-size: 32px;
    font-weight: bold;
    color: #696969;
    border: 0;
    border-radius: 25px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s linear;
}

#form-intro-title .note-block span {
    padding-left: 5px;
}

#form-intro .suggest {
    display: none;
}

@media (-moz-touch-enabled: 0),
(pointer: fine) {

    .reg-form button.next_link:hover,
    .reg-form button[type="submit"]:hover {
        color: #a1a1a1;
        border-radius: 10px;
    }
}

@media only screen and (max-width: 1600px) {
    .ch-dialog {
        padding: 15px 8px;
    }

    .list-box li {
        padding: 20px 0;
    }

    .list-box img {
        width: 85px;
        height: 85px;
    }

    .list-box .p1 {
        font-size: 20px;
    }

    .list-box .p2 {
        font-size: 14px;
    }

    .list-box div {
        width: 160px;
    }

    .hd-model-line span {
        font-size: 20px;
        line-height: 24px;
    }

    .hd-model-line p {
        padding-left: 20px;
        font-size: 13px;
    }

    .hd-model-line img {
        margin-right: 10px;
    }

    .main-center {
        padding: 50px 20px 30px;
    }

    .c-title {
        font-size: 36px;
        line-height: 42px;
    }
}

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

    .hd-models,
    .main-list {
        display: none;
    }

    .main-center {
        width: 74.8%;
    }

    header {
        padding: 0;
        justify-content: center;
    }
}

@media only screen and (max-width: 1080px) {
    main {
        flex-wrap: wrap;
        background-image: url("../assets/mbg_center.svg");
    }

    .main-center {
        width: 100%;
        padding: 20px 10px 60px;
    }

    .main-chat {
        width: 100%;
    }

    .c-title {
        font-size: 28px;
        line-height: 32px;
    }

    .chat-header {
        padding: 10px 10px 9px;
    }

    .ch-dialog {
        padding-bottom: 60px;
    }
}


.input.birth-input {
	position: relative;
}

.birth-input .error-message{
 
        position: absolute;
        bottom: -17px;
        width: 100%;
  
}



/* form css */
#personal_information,
#company_information{
	display:none;
}