@charset "utf-8";

.dummy-chat-icon-container {
    position: fixed;
    bottom: 15px;
    right: 12px;
    height: 80px;
    width: 80px;
    z-index: 100;
}

@media screen and (max-width: 600px) {
    .dummy-chat-icon-container {
        position: fixed;
        bottom: 10px;
        right: 10px;
        height: 55px;
        width: 55px;
        z-index: 2147483646;
        margin-bottom: 90px;
    }
}

@media screen and (min-width: 601px) and (max-width: 1400px) {
    .dummy-chat-icon-container {
        margin-bottom: 180px;
    }
}

.dummy-chat-icon-circle {
    display: inline-flex;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid #000000;
}

.dummy-chat-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    cursor: pointer;
}

#tripla-chat-circle-icon {
    opacity: 0;
}


.dummy-search-form {
    display: flex;
    flex-direction: row;
    width: 783px;
    height: 109px;
    column-gap: 20px;
    padding: 10px 0;
}

.dummy-input-container {
    display: flex;
    flex-direction: column;
    justify-content:start;
}

.dummy-calendar-input {
    width: 240px;
}

.dummy-input {
    outline: none;
    border-radius: 4px;
    padding: 0 0 0 15px;
    height: 42px;
    border: 1px solid #d0cece !important;
    background: #fff;
    box-sizing: border-box;
    font-size: 16px !important;
    color: #000 !important;
    font-family: Muli, Helvetica Neue, Arial, sans-serif !important;
    cursor: pointer;
    margin: 0 !important;
}

.dummy-input:disabled {
    opacity: 0.7;
}

.dummy-select-container {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}

.dummy-select {
    padding: 0 25px 0 10px;
}

.dummy-toggle {
    width: 40px;
    height: 20px;
    border-radius: 100px;
    background: #d0cece;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    padding: 2px;
    cursor: pointer;
    transition: .2s;
    position: relative;
}

.dummy-toggle:after {
    border-radius: 50%;
    background: #fff;
    transition: left .2s ease;
    position: relative;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    left: 0;
}

.dummy-label {
    font-size: 13px;
    line-height: 1;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Times New Roman", serif;
    color: #141617;
    display: block;
    margin-bottom: 10px;
    font-weight: 550;
    white-space: nowrap;
}

.dummy-button {
    background: #000;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    border-radius: 3px;
    border: none;
    font-size: 16px;
    margin: 24px 0;
    vertical-align: bottom;
    outline: none;
}

.dummy-button:hover{
    opacity: 0.7;
}