

/* Start:/bitrix/templates/infograd_s2/components/bitrix/news.detail/s2-accreditation/style.css?17794270862063*/
.s2-accreditation{
    padding-bottom: 60px;
}

.s2-accreditation__wrapper {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.s2-accreditation__left {
    flex: 1;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow2);
}

.s2-accreditation__title {
    margin-bottom: 20px;
}

.s2-accreditation__title::after {
    content: '';
    display: block;
    height: 2px;
    width: 60px;
    background-color: var(--color-main);
    margin-top: 10px;
}

.s2-accreditation__preview {
    margin-bottom: 60px;
}

.s2-accreditation__info-wrapper {
    margin-bottom: 30px;
    background-color: var(--color-gray2);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow2);
    gap: 20px;
    display: grid;
}

.s2-accreditation__info {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-self: left;
}

.s2-accreditation__info-image {
    flex-shrink: 0;
    height: 60px;
    width: 60px;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray);
    border-radius: 50%;
    padding: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.s2-accreditation__info-image img {
    height: 40px;
    width: 40px;
    -webkit-user-drag: none;
    user-select: none;
}

.s2-accreditation__info-detail.text {
    font-weight: bold;
}

.s2-accreditation__preview-image img {
    max-width: 100%;
    height: auto;
}

.s2-accreditation__right {
    width: 60%;
    flex-shrink: 0;
    background-color: var(--color-white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow2);
}

@media (max-width: 767px) {
    .s2-accreditation__info-wrapper {
        padding: 10px;
    }

    .s2-accreditation__info {
        gap: 10px;
    }

    .s2-accreditation__wrapper {
        flex-direction: column;
    }
    
    .s2-accreditation__right {
        width: 100%;
    }
}
/* End */


/* Start:/bitrix/templates/infograd_s2/components/infograd/form/get-order-accreditation/style.css?17792563464500*/
.get-order-accreditation {
    color: var(--color-black);
    width: 100%;
    overflow-x: hidden;
}

.get-order-accreditation .form-content__title {
    font-size: 72px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.get-order-accreditation .form-content__subtitle {
    margin-bottom: 40px;
    text-align: center;
}

.get-order-accreditation .form_body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.get-order-accreditation .form_body .form-group {
    grid-column: span 4;
}

.get-order-accreditation .form_body .form-group.company_name,
.get-order-accreditation .form_body .form-group.inn,
.get-order-accreditation .form_body .form-group.email,
.get-order-accreditation .form_body .form-group.phone,
.get-order-accreditation .form_body .form-group.bill,
.get-order-accreditation .form_body .form-group.bic{
    grid-column: span 2;
}

.get-order-accreditation .form-group.business_type {
    position: relative;
    padding-top: 80px;
}

.get-order-accreditation .form-group.contact_face {
    position: relative;
    padding-bottom: 100px;
}

.get-order-accreditation .form-group.contact_face::after,
.get-order-accreditation .form-group.business_type::before {
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 34px;
}

.get-order-accreditation .form-group.business_type::before {
    content: "Данные компании";
    top: 0;
}

.get-order-accreditation .form-group.contact_face::after {
    content: "Реквизиты банка";
    top: 95px;
}

.get-order-accreditation .form-group.business_type::after,
.get-order-accreditation .form-group.contact_face::before{
    content: '';
    position: absolute;
    left: 0;
    height: 2px;
    width: 60px;
    background-color: var(--color-main);
}

.get-order-accreditation .form-group.business_type::after {
    top: 55px;
}

.get-order-accreditation .form-group.contact_face::before {
    top: 145px;
}

.get-order-accreditation .form-group input,
.get-order-accreditation .form-group textarea {
    border-radius: var(--border-radius);
    border: 1px solid var(--color-gray3);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.get-order-accreditation .form-group input:focus,
.get-order-accreditation .form-group textarea:focus,
.get-order-accreditation .form-group input:hover,
.get-order-accreditation .form-group textarea:hover {
    background: var(--color-gray4);
}

.get-order-accreditation .form-group input,
.get-order-accreditation .form-group textarea {
    caret-color: var(--color-main);
}

.get-order-accreditation .form-group.space {
    align-content: center;
}

.get-order-accreditation .list-options {
    display: flex;
    flex-wrap: wrap;
}

.get-order-accreditation .list-label {
    display: block;
    padding-right: 20px;
    text-transform: lowercase;
}

.get-order-accreditation .radio-label {
    display: flex;
    align-items: center;
    padding-right: 30px;
    gap: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    white-space: nowrap;
}

.get-order-accreditation .radio-label input[type="radio"] {
    width: 16px;
    height: 16px;
    margin: 0;
    display: inline-block;
    opacity: 1;
    visibility: visible;
    position: static;
    flex-shrink: 0;
}

.get-order-accreditation .radio-label input[type="radio"]:checked {
    accent-color: var(--color-main);
}

.get-order-accreditation .form-group input:read-only {
    cursor: pointer;
}

@media (max-width: 1199px) {
    .get-order-accreditation .form_body .form-group.company_name,
    .get-order-accreditation .form_body .form-group.inn,
    .get-order-accreditation .form_body .form-group.email,
    .get-order-accreditation .form_body .form-group.phone,
    .get-order-accreditation .form_body .form-group.bill,
    .get-order-accreditation .form_body .form-group.bic{
        grid-column: span 4;
    }
}

@media (max-width: 767px) {
    .get-order-accreditation .list-options {
        flex-direction: column;
    }

    .get-order-accreditation .form-group.contact_face::after,
    .get-order-accreditation .form-group.business_type::before {
        font-size: 22px;
    }
}
/* End */


/* Start:/bitrix/templates/infograd_s2/css/infograd/form.css?17791765908318*/

.form-popup .modal_body {
    padding: 15px 0;
}


/*      F O R M A T I N G     F O R M S       */

.form-group {
    position: relative;
}

.form-group .input{
    position: relative;
    font-size: 16px;
}

.form-group .input label {
    display: block;
    padding-bottom: 6px;
    line-height: 20px;
    font-size: 14px;
}

.form-group .field-label,
.form-group input[type=email],
.form-group input[type=password],
.form-group input[type=tel],
.form-group input[type=text],
.form-group textarea {
    width: 100%;
    padding: 19px 20px;
    line-height: 100%;
    font-size: 16px;
    background-color: #fff;
    font-family: var(--font-family);
} 

.form-group textarea {
    resize: none;
    background: #fff;
    font-size: 16px;
    font-weight: 400;
    height: 114px;
}

.form-group.file {
    height: 35px;
}

.form-group.file input[type=file] {
    opacity: 0;
    width: 0;
    height: 1px;
    pointer-events: none;
}

.form-group.file label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    width: 145px;
    height: 35px;
    padding: 8px 12px;
    
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-black);
    text-align: center;
    background-color: transparent;
    border: 1px solid var(--color-gray);
    border-radius: var(--border-radius);
    
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
}

.form-group.file svg {
    width: 18px;
    height: 18px;
    margin-right: 5px;
    margin-bottom: 2px;
}

.form-group.file .added_files div {
    padding-top: 20px;
    font-size: 12px;
}

.form-group.file .added_files div span:last-child {
    opacity: 0.5;
    font-size: 10px;
    padding-left: 10px;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-black);
    opacity: 0.8;
}

.form-group .field-label{
    background-color: #fcfcfc;
    z-index: -1;
    cursor: not-allowed;
}

.form-group input:disabled,
.form-group input:read-only {
    color: #777;
    background-color: #fafafa;
    cursor: not-allowed;
}

.form-group label.placeholder {
    font-size: 16px;
    line-height: 1.2;
    color: var(--color-black);
    opacity: .4;
    white-space: nowrap;
    position: absolute;
    top: 17px;
    left: 18px;
    right: 18px;
    width: 0px;
    margin: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none; 
     -khtml-user-select: none; 
       -moz-user-select: none; 
        -ms-user-select: none; 
            user-select: none;
    transform: translateY(0%);
    transition: all .2s linear;
}

.form-group .icon{
    position: absolute;
    right: 20px;
    width: 24px;
    height: 24px;
    top: 24px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    background-color: transparent;
    outline: none;
    border: 0;
    -webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.form-group .icon svg{
    width: 24px;
    height: 24px;
}

.form-group .icon svg use{
    stroke: none;
}

.form-group .icon.on .close,
.form-group .icon .open{
    display: none;
}
.form-group .icon .close,
.form-group .icon.on .open{
    display: block;
}

.form-group.has-error input{
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23BF0A2F'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23BF0A2F' stroke='none'/%3E%3C/svg%3E");
    background-position: right -webkit-calc(.375em + .1875rem) center;
    background-position: right calc(.375em + .1875rem) center;
    background-repeat: no-repeat;
    background-size: -webkit-calc(.75em + .375rem) -webkit-calc(.75em + .375rem);
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
    border-color: var(--color-main);
    padding-right: calc(1.5em + .75rem) !important;
}

.form-group.valid input,
.form-group.valid textarea{
    background-image: url("data:image/svg+xml,%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%2328a745' stroke-width='1.5'/%3E%3Cpath d='M8.5 12.5L10.5 14.5L15.5 9.5' stroke='%2328a745' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: right -webkit-calc(.375em + .1875rem) center;
    background-position: right calc(.375em + .1875rem) center;
    background-repeat: no-repeat;
    background-size: -webkit-calc(.75em + .375rem) -webkit-calc(.75em + .375rem);
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
    border-color: #28a745;
    padding-right: calc(1.5em + .75rem) !important;
}

.form-group.valid textarea{
    background-position: top -webkit-calc(.375em + .1875rem) right -webkit-calc(.375em + .1875rem);
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem);
    padding-right: calc(1.5em + .75rem);
}

.form-group.valid input[type=text].phone,
.form-group input[type=text].phone.on {
    color: var(--color-black);
    opacity: 1;
}

.form-group .error-message {
    color: var(--color-main);
    display: block;
    position: initial;
    opacity: 1;
    padding: 0;
    font-size: 12px;
    margin: 2px 0 0;
    min-height: 20px;
}

.form-group.has-error .error-message {
    opacity: 1;
}

.form-group input:focus + label.placeholder,
.form-group input.phone + label.placeholder,
.form-group textarea:focus + label.placeholder,
.form-group .field-label + label.placeholder,
.form-group input:not(:placeholder-shown):valid + label.placeholder,
.form-group textarea:not(:placeholder-shown):valid + label.placeholder {
    transform:translateY(-100%) scale(0.8);
}

.form-group.form-group-required label:after,
.form-group .input.required label:after{
    content: '*';
    color: var(--color-red);
    padding-left: 2px;
    font-weight: 400;
    font-style: normal;
}

.form-group label.error:after{
    content: none;
}

.form-popup .input label a {
    font-weight: 500;
}

.form-footer .iacept,
.form_footer .iacept{
    padding-bottom: 15px;
    margin-bottom: 0;
}

.form-group.file {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: auto;
}

.form-group.file label {
    margin: 0;
    flex-shrink: 0;
}

.form-group.file .added_files {
    flex: 1;
    display: inline-flex;
    align-items: center;
}

.form-group.file .added_files .file-info {
    display: flex;
    align-items: center;
    padding: 5px 0;
    white-space: nowrap;
    gap: 5px;
}

.form-group.file .added_files .file-name {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.form-group.file .added_files .file-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.form-group.file .added_files .file-remove:hover {
    color: var(--color-main);
}

.form-group.file .added_files .file-remove svg {
    width: 12px;
    height: 12px;
    margin: 0;
}

.form-group.file label{
    border-radius: 50px;
    border: 1px solid var(--color-black);
    height: 40px;
    background: var(--color-white);
    cursor: pointer;
}

.form-group.file label:hover{
    background: var(--color-main);
    border: 1px solid var(--color-main);
    color: var(--color-white);
}

.form-group.file .btn.colored{
    height: 40px;
    padding: 10px 30px;
}

.form-popup .form-group.iacept{
    padding: 15px 0;
}
/* End */
/* /bitrix/templates/infograd_s2/components/bitrix/news.detail/s2-accreditation/style.css?17794270862063 */
/* /bitrix/templates/infograd_s2/components/infograd/form/get-order-accreditation/style.css?17792563464500 */
/* /bitrix/templates/infograd_s2/css/infograd/form.css?17791765908318 */
