body {
    background-color: rgb(236, 238, 244);
    font-family: sans-serif;
}

.container-header {
    display: flex;
    justify-content: space-between;
    margin: 30px 90px;
}

.logo-form {
    background-image: url(../img/logo-form.png);
    width: 100px;
    height: 100px;
    background-size: 100px 100px;
}

.text-color {
    color: #667893;
    font-weight: bold;
}

.button-header {
    background-color: rgb(236, 238, 244);
    border: 1px solid rgb(206, 213, 228);
    border-radius: 5px;
    height: 55px;
    width: 140px;
    margin-top: 25px;
    cursor: pointer;
}

.button-header:hover {
    border: 1px solid #6f7692;
}

.button-header>.fas:first-child {
    margin-right: 15px;
}

.container-form {
    margin: 60px 90px;
    height: auto;
    background-color: #fff;
    border: 2px solid #c9d0e1;;
    border-radius: 5px;
}

.order-information {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    border-bottom: 2px solid #c9d0e1;
}

.user-order-left {
    flex: 2 10 30%;
    display: flex;
    flex-direction: column;
    padding: 40px 0px 0px 75px;
}

h2 {
    font-size: 14px;
    color: #6e768f;
    position: relative;
    display: block;
}

.user-order-left h2::before {
    font-family: 'Font Awesome\ 5 Free';
    content: '\f328';
    position: absolute;
    left: -31px;
    top: -8px;
    width: 30px;
    height: 42px;
    font-size: 24px;
}

tr>th, tr>td {
    text-align: left;
    text-transform: uppercase;
    font-size: 12px;
    width: 330px;
    padding-left: 10px;
    padding-right: 10px;
}

.user-order-right {
    display: flex;
    flex: 2 1 12%;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.button-form {
    width: 180px;
    height: 60px;
    background-color: rgb(236, 238, 244);
    border: 1px solid rgb(206, 213, 228);
    border-radius: 5px;
    cursor: pointer;
}

.button-form:hover {
    border: 1px solid #76a7e1;
}

.submit-form {
    background-color: rgb(95, 202, 198);
}

.submit-form>span {
    color: rgb(254, 254, 254);
}

.help-center {
    flex: 3 3 20%;
    padding: 5px 30px 30px 60px;
    border-left: 2px solid #c9d0e1;
}

.help-center>h2 {
    font-size: 16px;
}

.help-center>h2::before {
    font-family: 'Font Awesome\ 5 Free';
    content: "\f1cd";
    position: absolute;
    left: -41px;
    top: -3px;
    width: 42px;
    height: 42px;
    font-weight: normal;
    font-size: 21px;
}

.fa-life-ring {
    margin-left: -41px;
    margin-right: 15px;
}

.center-phone {
    margin-right: 15px;
}

.contact-text {
    color: rgb(168, 167, 187);
}

.form-information {
    width: 80%;
    margin: 0 auto;
    padding: 0 50px;
}

.selections {
    border: none;
    margin: 0;
}

.first-selection {
    text-align: center;
    padding: 100px 0 0 0;
}

.first-selection>h2 {
    letter-spacing: 3px;
    font-weight: normal;
    text-align: center;
    color: #6e768f;
    position: relative;
    margin: 0px;
    text-decoration-line: underline;
}

.check-items-box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    padding: 50px 0 0 0;
    width: 100%;
}

.item-radio {
    margin: 10px;
    border: 2px solid #ebecef;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    width: 280px;
    height: 200px;
}

.item-radio:hover {
    border-color: #76a7e1;
}

.item-radio:active {
    border-color: #76a7e1;
}

[name="change-type"] {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    overflow: hidden;
}

[name="change-type"]:checked+.item-checked::before {
    position: absolute;
    content: '';
    right: -14px;
    top: -14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #76a7e1;
}

[name="change-type"]:checked+.item-checked::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -8px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 4px 4px 0;
    border-radius: 3px;
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
}

.item-text {
    color: rgb(165, 171, 197);
    font-weight: bold;
    line-height: 325px;
}

.item-website {
    background: #f7f7fa url(../img/website.png) no-repeat;
    background-position: center;
    background-size: 70px;
}

.item-document {
    background: #f7f7fa url(../img/documents.png) no-repeat;
    background-position: center;
    background-size: 70px;
}

.item-account {
    background: #f7f7fa url(../img/social.png) no-repeat;
    background-position: center;
    background-size: 70px;
}

.first-form-title:before,
.second-form-title:before,
.third-form-title:before,
.fourth-form-title:before,
.fifth-form-title:before {
    position: absolute;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 0.7em;
    line-height: 40px;
    top: -10px;
    left: -65px;
    border: 1px solid #6e768f;
    border-radius: 50%;
}

.first-form-title:before {
    content: "1";
}

.second-form-title:before {
    content: "2";
}

.third-form-title:before {
    content: "3";
}

.fourth-form-title:before {
    content: "4";
}

.fifth-form-title:before {
    content: "5";
}

.first-form-title,
.second-form-title,
.third-form-title,
.fourth-form-title,
.fifth-form-title {
    position: relative;
    color: #6e768f;
}

.first-form-title>span {
    font-weight: 400;
    font-size: 12px;
}

.data-wrap {
    margin: 60px 0px 40px;
}

.label-data-file {
    width: 180px;
    height: 60px;
    background-color: rgb(236, 238, 244);
    border: 1px solid rgb(206, 213, 228);
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 14px;
    margin: 36px 0;
    color: #bcc3d9;
}

.data-file {
    position: absolute;
    overflow: hidden;
    height: 0;
    width: 0;
}

.label-data-file~.data-file:focus,
.label-data-file:hover {
    border-color: #76a7e1;
}

.label-data-file .fas {
    margin-right: 13px;
}

.label-data-file span:last-child {
    font-size: 13px;
}

.files-information {
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #bcc3d9;
    width: 100%;
    margin-top: 20px;
}

.data-table {
    width: 100%;
    padding: 5px 35px 30px 35px;
}

.data-table~tr {
    margin-bottom: 10px;
}

.data-table td, .data-table th {
    padding: 15px 0px 0px 33px;
}

.data-table-head th {
    text-align: left;
}

.data-table-body td:first-child .fas {
    margin-right: 15px;
}

.data-table-body td:last-child .fas {
    margin-left: 30px;
}

.select {
    display: flex;
    align-items: center;
    margin-top: 20px;
    color: #bcc3d9;
}

.select label {
    margin-right: 10px;
    width: 50px;
    font-size: 0.9em;
    font-weight: bold;
    text-transform: uppercase;
    text-align: right;
}

.select_language {
    width: 200px;
    height: 60px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    background: #f7f7fa;
    margin-right: 15px; 
}

.select_language::before {
    position: absolute;
    content: '';
    width: 2px;
    display: block;
    height: 100%;
    background-color: #d7d9e0;
    z-index: 2;
    right: 50px;
}

.select_language::after {
    content: '';
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #9098b8 transparent transparent transparent;
    position: absolute;
    top: 50%;
    right: 20px;
    z-index: 1;
    margin-top: -2px;
}

.select-items {
    width: 100%;
    height: 100%;
    padding: 0 50px;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid #ebebef;
    background: transparent;
    border-radius: 5px;
    color: #6e768f;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;   
}

.select-btn-add {
    margin-left: 25px;
    color: #6e768f;
    background-color: #f7f7fa;
    width: 150px;
    height: 60px;
    cursor: pointer;
    font-size: 15px;
    border-radius: 5px;
    border: 2px solid #ebebef;
    font-weight: bold;
}


/**/


.confidential-wrap {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-bottom: 50px;
}

.agree-wrap {
    display: contents;
}

.agree-wrap> input {
    margin: 22px 20px 0 0;
}

.agree-wrap> label {
    margin-top: 20px;
    margin-right: 25px;
}

.terms {
    text-decoration: underline;
}

.confidential-wrap> button {
    margin: 0 10px 0 10px;
}

.btn-place-order {
    background-color: #5fcac6;
    color: #fff;
    border-color: #54aca9;
}

footer {
    background-color: #384764;
}

.footer-wrap {
    padding: 70px 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.footer-wrap> div {
    height: 180px;
    width: 200px;
}

.footer-wrap-item>h2 {
    font-size: 19px;
}

.footer-wrap-item>h2, .networks>p, .footer-wrap-item>p {
    color: #818bab;
}

.about+p {
    font-style: italic;
}

.about::before {
    font-family: 'Font Awesome\ 5 Free';
    content: "\f004";
    position: absolute;
    left: -41px;
    top: -3px;
    width: 42px;
    height: 42px;
    font-weight: normal;
    font-size: 21px;    
}

.contacts::before {
    font-family: 'Font Awesome\ 5 Free';
    content: "\f14e";
    position: absolute;
    left: -41px;
    top: -3px;
    width: 42px;
    height: 42px;
    font-weight: normal;
    font-size: 21px;
}

.social::before {
    font-family: 'Font Awesome\ 5 Free';
    content: "\f1e0";
    position: absolute;
    left: -41px;
    top: -3px;
    width: 42px;
    height: 42px;
    font-size: 21px;    
}

.networks {
    padding-left: 20px; 
    position: relative;
}

.facebook::before {
    font-family: 'Font Awesome\ 5 Free';
    content: "\f39e";
    /*content: "\f09a";*/
    position: absolute;
    left: 0px;
    top: -3px;
    width: 42px;
    height: 42px;
    font-weight: normal;
    font-size: 21px;    
}

.twitter::before {
    font-family: 'Font Awesome\ 5 Free';
    content: "\f099";
    position: absolute;
    left: 0px;
    top: 30px;
    width: 42px;
    height: 42px;
    font-weight: normal;
    font-size: 21px;    
}

.linkedin::before {
    font-family: 'Font Awesome\ 5 Free';
    content: "\f0e1";
    position: absolute;
    left: 0px;
    top: 64px;
    width: 42px;
    height: 42px;
    font-weight: normal;
    font-size: 21px;    
}

.footer-logo {
    width: 70%;
    padding-top: 10px;
}