.button {
    padding: 10px 40px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 15px;
    color: var(--color-4);
    background: transparent;
    width: fit-content;
    outline: none;
    position: relative;
    overflow: hidden;
    display: flex;
    line-height: 100%;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    height: fit-content;
}

.btn__big {
    padding: 14px 40px;
    min-width: 225px;
    font-size: 17px;
    font-weight: bold;
}

.button_1 {
    background: var(--color-1);
    border: 1px solid var(--color-1);

}

input {
    padding: 5px 8px;
    background: #fff;
    border-radius: 3px;
    min-height: 35px;
    border: none;
    outline: none;
}

.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 {
    border: 1px solid var(--color-5);
    background: var(--color-5);
}


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

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

@media (max-width: 500px) {
    .button {
        padding: 10px;
    }
}


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;
}

#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;
    left: 0;
    z-index:9999999999999999;
    background: var(--color-2);
}

#menu-language.active .sub-menu {
    height: fit-content;
}





