.div-block-141 {
    margin-top: 0 !important;
}

.status-message {
    background: rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid #BFA76F;
    border-radius: 5px 5px 0px 0px;
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 2;
}

.status-message .sending, .status-message .success, .status-message .error {
    align-items: center;
    display: flex;
    flex-flow: column;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.status-message .text-form {
    color: #5E100F;
    font-family: Saoldisplay;
    font-size: 22px;
    line-height: 15px;
    margin: 0 auto;
    max-width: 240px;
    text-align: center;
    width: 100%;
}

.status-message .text-form span {
    color: #181818;
    display: block;
    font-family: Avenirltstd Book;
    font-size: 14px;
    line-height: 140%;
    margin-top: 15px;
}

.status-message .icon {
    margin: 0 auto;
    margin-bottom: 10px;
    max-width: 30px;
    width: 100%;
}

.status-message img {
    display: block;
    max-width: 100%;
    width: 100%;
}

.hidden {
    display: none !important;
}

.hidden-xs {
    display: none !important;
}

.visible-xs {
    display: block !important;
}

.contact-form-wrapper {
    margin: 0 auto;
    max-width: 430px;
    position: relative;
    width: 100%;
}

.wrapper-content-form {
    opacity: 1;
}

.wrapper-content-form.partial-hide{
    opacity: 0;
    pointer-events: none;
}

.contact-form {
    position: relative;
}

.contact-form .input-container {
    padding-top: 30px;
}

.contact-form .input-label {
    color: #65636C;
    display: block;
    font-family: Avenirltstd;
    font-size: 12px;
    font-weight: normal;
    line-height: 140%;
    margin-bottom: 5px;
    transition: all 550ms ease-in-out;
}

.contact-form .input-container.invalid .input-label {
    color: #5E100F !important;
}

.contact-form input[type=text], .contact-form input[type=date], textarea {
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-bottom: 1px solid #BFA76F;
    border-radius: 5px 5px 0px 0px;
    color: #232D3D;
    display: block;
    font-family: Avenirltstd Book, Arial, sans-serif;
    font-size: 16px;
    line-height: 120%;
    max-width: 100%;
    outline: none;
    padding: 13px 10px;
    transition: all 550ms ease-in-out;
    width: 100%;
}

.contact-form input[type=text].invalid, .contact-form input[type=date].invalid, textarea.invalid {
    border-bottom: 1px solid #5E100F;
}

.contact-form textarea {
    height: 145px;
    resize: none;
}

.contact-form .submit-btn {
    background-color: transparent;
    border: none;
    color: #5E100F;
    display: block;
    font-family: Saoldisplay, Arial, sans-serif;
    font-size: 24px;
    line-height: 16px;
    margin-left: auto;
    margin-top: 30px;
    padding-bottom: 10px;
    position: relative;
    width: fit-content;
}

.contact-form .submit-btn:after {
    background: #BFA76F;
    bottom: 0;
    content: '';
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
}

@media (min-width: 768px) {

    .hidden-xs {
        display: block !important;
    }

    .visible-xs {
        display: none !important;
    }

    .contact-form-wrapper {
        max-width: 100%;
    }

    .contact-form .flex-content, .contact-form .dates-input {
        display: flex;
        justify-content: space-between;
    }

    .contact-form .input-container.medium, .contact-form .dates-input {
        max-width: 47.5%;
        width: 100%;
    }

    .contact-form .input-container.small {
        max-width: 44.8%;
        width: 100%;
    }

    .contact-form .radios-container {
        margin-top: 30px;
    }

    .contact-form .radios-container .radio-title {
        color: #65636C;
        font-family: Avenirltstd;
        font-size: 12px;
        line-height: 140%;
        transition: all 550ms ease-in-out;
    }

    .contact-form .radios-container.invalid .radio-title {
        color: #5E100F;
    }

    .contact-form .radios-flex {
        display: flex;
        justify-content: space-between;
        margin: 0 auto;
        margin-top: 18px;
        max-width: 521px;
        width: 100%;
    }

    .contact-form .radio-label {
        color: #181818;
        font-family: Avenirltstd Book, Arial, sans-serif;
        font-size: 14px;
        font-weight: normal;
        line-height: 140%;
        margin-bottom: 0;
        padding-left: 5px;
    }

    input[type=checkbox], input[type=radio] {

        &:checked, &:not(:checked) {
            opacity: 0;
            pointer-events: none;
        }

        &:checked + label,
        &:not(:checked) + label {
            cursor: pointer;
            display: inline-block;
            line-height: 20px;
            position: relative;
        }

        &:checked + label:before,
        &:not(:checked) + label:before {
            background: transparent;
            content: '';
            border: 1px solid #BFA76F;
            border-radius: 100%;
            position: absolute;
            height: 18px;
            left: -22px;
            top: 50%;
            transform: translateY(-50%);
            width: 18px;
        }

        &:checked + label:after,
        &:not(:checked) + label:after {
            background: #BFA76F;
            border-radius: 100%;
            height: 10px;
            left: -17px;
            position: absolute;
            top: 5px;
            transition: all 0.2s ease;
            width: 10px;
        }

        &:checked + label:after {
            content: '';
        }

        &:not(:checked) + label:after {
            content: none;
        }

        &:not(:checked) + label:after {
            opacity: 0;
            transform: scale(0);
        }

        &:checked + label:after {
            opacity: 1;
            transform: scale(1);
        }
    }
}

.select-container .select-label {
    color: #65636C;
    font-family: Avenirltstd;
    font-size: 12px;
    line-height: 140%;
    margin-bottom: 5px;
    transition: all 550ms ease-in-out;
}

.select-container.invalid .select-label {
    color: #5E100F;
}

.c-select {
    max-width: 100%;
    position: relative;
    width: 100%;
}

.c-select__trigger {
    align-items: center;
    background: rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid #BFA76F;
    border-radius: 5px 5px 0px 0px;
    display: flex;
    color: #181818;
    font-family: Avenirltstd Book;
    font-size: 14px;
    height: 40px;
    line-height: 10px;
    justify-content: space-between;
    padding: 0 10px;
    width: 100%;
}

.c-select__list {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid #BFA76F;
    border-radius: 5px 5px 0px 0px;
    display: none;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 32px 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 50;
}

.c-select .c-select__arrow {
    background: url(../images/down-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 5px;
    position: absolute;
    right: 13px;
    top: 17px;
    width: 10px;
}

.c-select.is-open .c-select__arrow {
    transform: rotate(180deg);
}

.c-select.is-open .c-select__list {
  display: block;
}

.c-select.is-open .c-select__list:after {
    background: url(../images/down-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: block;
    height: 5px;
    position: absolute;
    right: 13px;
    top: 17px;
    transform: rotate(180deg);
    width: 10px;
}

.c-select.is-open button {
    opacity: 0;
}

.c-select__option {
    color: #181818;
    font-family: Avenirltstd Book;
    font-size: 14px;
    line-height: 10px;
    margin-top: 30px;
    text-align: center;
}

.c-select__option:first-child {
    margin-top: 0;
}

.c-select__option:hover,
.c-select__option.is-active,
.c-select__option:focus {
  outline: none;
}
