:focus-visible {
    outline: -webkit-focus-ring-color auto 0px;
}


.input-container {
    position: relative;
    margin: 15px 0;
}
input[type=text] {
    min-width: 260px;
    height: 46px;
    padding-left: 45px;
    border: 1px solid #000000;
    font-size: 18px;
    line-height: 21px;
    color: #030303;
}
input[type=text],
input[type=password] {
    width: 100%;
}
textarea {
    padding: 12px 0 12px 45px;
    border: 1px solid rgb(0, 0, 0);
    font-size: 18px;
    line-height: 21px;
    color: rgb(3, 3, 3);
    max-width: calc(100% - 2.4rem);
    width: 100%;
    min-height: 24px;
    min-width: 100px;
    font-family: 'Roboto', sans-serif;
}
.input-icon {
    font-size: 24px;
    position: absolute;
    left: 12px;
    top: 12px;
}
.modal .button {
    display: flex;
    padding: 10px 20px;
    margin-left: auto;
}
.modal-title {
    color: var(--bordo);
    margin-top: 15px;
    margin-bottom: 50px;
    font-size: 24px;
    line-height: 21px;
    font-weight: normal;
}
.modal-title.underline-title:after {
    margin-bottom: 10px;
}


.modal {
    will-change: visibility, opacity;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    /*transition-delay: $modal-delay;*/
}
.modal--active {
    visibility: visible;
    opacity: 1;
}
.modal--align-top {
    align-items: flex-start;
}
.modal__bg {
    background: transparent;
}
.modal__dialog {
    max-width: 600px;
    padding: 1.2rem;
}
.modal__content {
    will-change: transform, opacity;
    position: relative;
    padding: 2.4rem;
    background: #fff;
    background-clip: padding-box;
    box-shadow: 0 12px 15px 0 rgba(0,0,0,0.25);
    opacity: 0;
    transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}
.modal__content--active {
    opacity: 1;
}
.modal__close {
    z-index: 1100;
    cursor: pointer;
}
.modal__trigger {
    position: relative;
    display: inline-block;
    padding: 1.2rem 2.4rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.26);
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.modal__trigger--active {
    z-index: 10;
}
.modal__trigger:hover {
    background: var(--hover-color);
}
#modal__temp {
    will-change: transform, opacity;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hover-color);
    transform: none;
    opacity: 1;
    transition: opacity 0.1s ease-out, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.demo-btns header {
    padding: 7vh 10vw;
    background: #ffebee;
    display: flex;
    align-items: center;
}
.demo-btns header h1 {
    margin: 0;
    color: rgba(0,0,0,0.54);
    font-weight: 300;
}
.demo-btns .info {
    background: #f44336;
    padding: 3vh 10vw;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column wrap;
}
.demo-btns p {
    text-align: center;
    color: #fff;
}
.demo-btns .link {
    font-size: 20px;
}
.demo-btns .modal__trigger {
    margin-right: 3px;
}
@media (max-width: 640px) {
    .demo-btns .modal__trigger {
        margin-bottom: 0.8rem;
    }
}
.demo-close {
    position: absolute;
    top: 0;
    right: 0;
    margin: 1.2rem;
    padding: 0.6rem;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.demo-close svg {
    width: 24px;
    fill: #fff;
    pointer-events: none;
    vertical-align: top;
}
.demo-close:hover {
    background: rgba(0,0,0,0.6);
}
.logo {
    position: fixed;
    bottom: 3vh;
    right: 3vw;
    z-index: 2;
}
.logo img {
    width: 45px;
    transform: rotate(0);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.logo img:hover {
    transform: rotate(180deg) scale(1.1);
}

.page-have-form .input-container{
    margin: 0 0 10px 0;
}
.bx-soa-item-title {
    font-family: var(--h-font);
}
.bx-soa-item-title a {
    color: #000;
}

/*CONFIDENTIAL PAGE*/
.confidential-agreement ol {
    counter-reset: list1;
    list-style: none;
    padding: 0 0 0 20px;
}
.confidential-agreement ol li::before {
    content: counter(list1) ". ";
    counter-increment: list1;
    font-weight: 700;
    position: absolute;
    right: 100%;
    padding: 0 6px 0 0;
}
.confidential-agreement ol ol li::before {
    counter-increment: list2;
    content: counter(list1) "." counter(list2) ". ";
}

.confidential-agreement ol ol {
    counter-reset: list2;
    padding: 0 0 0 34px;
}
.confidential-agreement ol h2, .confidential-agreement ol li {
    position: relative;
}
.confidential-agreement ol h2, .confidential-agreement ol li {
    position: relative;
}
.confidential-agreement ol ol ol {
    counter-reset: list3;
    padding: 0 0 0 46px;
}
.confidential-agreement ol ol ol li::before {
    counter-increment: list3;
    content: counter(list1) "." counter(list2) "." counter(list3) ". ";
    padding: 0 8px 0 0;
    font-weight: normal;
}
.confidential-agreement h2 {
    font-size: 20px;
    margin-top: 0.83em;
    margin-bottom: 20px;
}
.confidential-agreement h3 {
    font-size: 20px;
    margin-top: 0.63em;
    margin-bottom: 14px;
}
.confidential-agreement {
    color: #333;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    margin-top: 32px;
}
/*end of/.CONFIDENTIAL PAGE*/