/*--------------------- REQUEST ---------------------*/
.request_section{

    display: block;
    width: 100%;
    height: auto;
    margin: 80px 0px;

}
.request_section__form{

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    width: 100%;
    height: auto;

}
.request_section__form__notification{

    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 100%;
    height: auto;
    grid-column: span 2;
    background-color: #f7f7f7;
    border-left: 2px solid var(--red-color);
    padding-left: 18px;
    margin: 0px;

}
#request_form__notification{ display: none; }
.request_section__form__notification__header{

    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 15px;
    width: 100%;
    height: auto;

}
.request_section__form__notification__header__title{

    display: block;
    width: auto;
    height: auto;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: var(--black-color);
    cursor: default;
    flex-grow: 1;
    padding-top: 20px;
    padding-bottom: 15px;

}
.request_section__form__notification__header__button{

    display: block;
    width: auto;
    height: auto;
    padding: 0px 20px;
    background-color: transparent;
    border: none;
    outline: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    cursor: pointer;

}
.request_section__form__notification__header__button__svg{

    display: block;
    width: auto;
    height: 12px;
    fill: var(--red-color);

}
.request_section__form__notification__description{

    display: block;
    width: calc(100% - 20px);
    height: auto;
    padding: 20px;
    padding-left: 0px;
    padding-top: 15px;
    border-top: var(--border-style);

}
.request_section__form__notification__description__paragraph{

    display: block;
    width: 100%;
    height: auto;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.6;
    color: var(--black-color);
    cursor: default;

}
.request_section__form__text{

    display: block;
    position: relative;
    width: 100%;
    height: auto;
    background-color: #ffffff;
    border: var(--border-style);

}
.request_section__form__text__input{

    display: block;
    position: relative;
    width: 100%;
    /*height: auto;*/
    height: 49px;
    color: var(--black-color);
    padding: 15px 20px;
    border: 0px;
    background-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    outline: none;

}
.request_section__form__text__input::placeholder{ color: #656565; opacity: 1; }
.request_section__form__select{

    display: block;
    position: relative;
    width: 100%;
    height: auto;
    background-color: #ffffff;
    border: var(--border-style);
    cursor: pointer;

}
.request_section__form__select__input{

    display: block;
    position: relative;
    width: 100%;
    /*height: auto;*/
    height: 49px;
    color: var(--black-color);
    padding: 15px 20px;
    border: 0px;
    background-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    z-index: 1;
    cursor: pointer;

}
.request_form__select_placeholder{ color: #656565; opacity: 1; }
.request_section__form__select__input__option{

    display: block;
    width: 100%;
    height: auto;

}
.request_section__form__select__svg{

    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: block;
    height: 8px;
    width: auto;
    fill: #656565;

}
.request_section__form__textarea{

    display: block;
    position: relative;
    width: 100%;
    height: auto;
    background-color: #ffffff;
    border: var(--border-style);
    grid-column: span 2;

}
.request_section__form__textarea__input{

    display: block;
    position: relative;
    width: 100%;
    height: 8rem;
    color: var(--black-color);
    padding: 15px 20px;
    border: 0px;
    background-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    resize: none;

}
.request_section__form__textarea__span{

    display: block;
    width: 100%;
    height: auto;
    padding: 0px 20px;
    padding-bottom: 15px;
    margin: 0px;
    text-align: right;
    font-size: 12px;
    color: var(--gray-color);

}
.request_section__form__label{

    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    gap: 10px;
    width: fit-content;
    height: auto;
    cursor: pointer;
    grid-column: span 2;

}
.request_section__form__label__input{

    display: none;
    width: 0px;
    height: 0px;
    opacity: 0;

}
.request_section__form__label__checkbox{

    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    min-height: 20px;
    width: 20px;
    height: 20px;
    border: var(--border-style);
    background-color: #f7f7f7;

}
.request_section__form__label__checkbox__svg{

    display: block;
    width: 80%;
    height: auto;
    fill: var(--black-color);
    opacity: 0;

}
.request_section__form__label__paragraph{

    display: block;
    width: auto;
    height: auto;
    font-size: 14px;

}
.request_section__form__label__paragraph__hyperlink{

    font-size: 14px;
    text-decoration: none;

}
.request_section__form__label:hover .request_section__form__label__paragraph__hyperlink{ text-decoration: underline; color: var(--black-color); }
.request_section__form__submit{

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    width: fit-content;
    height: auto;
    background-color: var(--blue-color);
    padding: 15px 20px;
    cursor: pointer;
    grid-column: span 2;

}
.request_section__form__submit__span{

    display: block;
    color: #ffffff;

}
.request_section__form__submit__svg{

    display: block;
    width: auto;
    height: 14px;
    margin-left: 10px;
    fill: #ffffff;

}
@media screen and (max-width: 635px){

    .request_section__form{

        grid-template-columns: 1fr;

    }
    .request_section__form__notification,
    .request_section__form__textarea,
    .request_section__form__label,
    .request_section__form__submit{

        grid-column: auto;

    }

}
/*--------------------- REQUEST ---------------------*/