@charset "utf-8";

/* button */

.contact-msg {
    line-height: 1.5em;
}

.contact-msg a {
    color: #C33F3D;
    text-decoration: underline;
    transition: all 0.3s;
}

.contact-msg a:hover {
    opacity: 0.7;
    transition: all 0.3s;
}

.contact-form {
    padding-bottom: 50px;
}

.contact-form label,
.contact-form input,
.contact-form textarea,
.contact-form p {
    display: block;
    margin: 5px auto;
    padding: 10px;
    width: 50%;
}

.contact-form textarea {
    height: 300px;
}

.contact-form input,
.contact-form textarea {
    border: 2px solid #7e7267;
    border-radius: 5px;
    margin-bottom: 30px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline-color: transparent;
    border: 2px solid #93C05A;
}

::placeholder {
    color: #7e7267;
    opacity: 0.4;
}

.scroll-box {
    overflow: auto;
    width: 50%;
    margin: auto;
    height: 150px;
    padding: 10px;
    border: 2px solid #7e7267;
    line-height: 1.5em;
}

.scroll-box p {
    width: 90% !important;
}

.contact-border {
    border: 2px dashed #7e7267;
    border-radius: 4px;
}


/* button */

.contact-form .btn {
    display: inline-block;
    margin: 20px;
    min-width: 200px;
    cursor: pointer;
    border: none;
    border-radius: 20px;
    transition: all 0.3s;
    color: #eeeeee;
}

.contact-form .btn:hover {
    opacity: 0.8;
    transition: all 0.3s;
}

.p-flow li {
    position: relative;
    margin-left: 12px;
    margin-right: 12px;
    width: 100px;
    background-color: #e7e7e7;
}

.p-flow li.p-flow-enable {
    background-color: #7e7267;
}

ol li:after {
    content: "";
    border-style: solid;
    border-width: 32px 0 32px 24px;
    border-color: transparent transparent transparent #7e7267;
    position: absolute;
    top: 0;
    right: -24px;
    z-index: 1;
}

ol li.p-flow-disable:after {
    border-color: transparent transparent transparent #e7e7e7;
}

ol li.p-flow-last:after {
    border: none;
}

@media screen and (max-width: 990px) {
    ol li:after {
        border-width: 19px 0 19px 19px;
        right: -19px;
    }
    .contact-br {
        display: none;
    }
    .contact-form label,
    .contact-form input,
    .contact-form textarea,
    .contact-form p {
        width: 70%;
    }
    .scroll-box {
        width: 70%;
    }
    .p-flow.u-flex-box {
        display: flex;
    }
}

@media screen and (max-width: 768px) {
    .contact-form label,
    .contact-form input,
    .contact-form textarea,
    .contact-form p {
        width: 85%;
    }
    .scroll-box {
        width: 85%;
    }
    .contact-form .btn:nth-child(1) {
        display: none;
    }
}
