.button {
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    color: var(--color-2);
    background: transparent;
    outline: none;
    position: relative;
    overflow: hidden;
    display: flex;
    line-height: 140%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
}

.button_1 {
    background: #000;
    color: white;
}

.form_wrapper {
    max-width: 500px;
    border-radius: 6px;
    overflow: hidden;
    margin: 20px auto 50px;
}

form .big__banner__links {
    margin-top: 30px;
    justify-content: center;
}

.big__banner__links {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.big__banner__link {
    display: flex;
    align-items: center;
    border-radius: 4px;
    justify-content: center;
    background: var(--color-2);
    padding: 12px;
}

.big__banner__link svg {
    width: 20px;
    height: 20px;
}

.form__head {
    padding: 15px;
    width: 100%;
    background: #1a2c38;

}

.form__head svg {
    width: 67px;
    height: 34px;
}

form button {
    width: 100%;
}

.button_2 {
    color: black;
    background: var(--color-10);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000,0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
}
.button_2:hover {
    background: #ff700b;
}


.button_3.active {
    background: var(--color-3);
}

.button_3 {
    border: 1px solid var(--color-3);
}

.button_4 {
    background: var(--color-9);
}

.button_4:hover {
    background: var(--color-10);
}


.wp-element-button {
   border-radius: 4px!important;
}

.wp-block-post-content a:not(a[href="/go"]) {
    color: var(--color-4);
}

.form_wrapper {
    max-width: 500px;
}

.form_wrapper .button {
    width: fit-content;
    margin-top: 20px;
}

.form__fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__fields input,
.form__fields textarea {
    background: white;
    padding: 16px 20px;
    border-radius: 1rem;
}

@media (max-width: 500px) {
    .wp-block-button {
        width: 100% !important;
    }
}


table {
    margin-block-start: 15px!important;
    margin-block-end: 15px!important;
    border-collapse: collapse;
}

table td {
    border: 1px solid white;
    padding: 10px;
}

.table_wrapper tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.1);
}

.table_wrapper {
    overflow: auto;
}

.top__menu {
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 10px;
}

.top__menu>li {
    padding: 8px 12px;
    background: #000;
    color: white;
    border-radius: 6px;
    min-height: 42px;
}

.top__menu a {
    display: flex;
    align-items: center;
    gap: 5px;

}

.bottom__menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

#menu-language {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}

#menu-language .sub-menu {
    position: absolute;
    height: 0;
    width: 100%;
    transition: all;
    overflow: hidden;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    left: 0;
    z-index:9999999999999999;
    background: var(--color-2);
}

#menu-language.active .sub-menu {
    height: fit-content;
    padding: 8px 12px;
}






