/*html {
       overflow-y: auto;
       background-image: url('public/images/cosmo.png') !important;
       -webkit-background-size: cover;
       -moz-background-size: cover;
       -o-background-size: cover;
       background-size: cover;
       background-position: center;
       background-repeat: no-repeat;
   }*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
    /* Firefox */
}

@font-face {
    font-family: 'GolosUIWebRegular';
    src:
        url('../fonts/golos-ui_regular.woff2') format('woff2'),
        url('../fonts/golos-ui_regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
    font-family: 'GolosUIWebRegular';
    font-weight: normal;
    font-style: normal;
    color: #071920;
}

.hero {
    background: #E6E6E6;
}

.box {
    border-radius: 20px;
}

.input {
    border-radius: 18px;
}

.input:hover,
.input:focus {
    box-shadow: none;
    border-color: #f35634;
}
/* https://itchief.ru/html-and-css/styling-checkbox-and-radio */
input[type="checkbox"]{
    position: absolute;
    z-index: -1;
    opacity: 0;
}
input[type="checkbox"]+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
}
input[type="checkbox"]+label:hover{
    cursor: pointer;
}
input[type="checkbox"]+label:hover::before{
    border-color: #f35634;
}
input[type="checkbox"]+label::before {
    content: '';
    display: inline-block;
    width: 1.25em;
    height: 1.25em;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 70% 70%;
}
input[type="checkbox"]:checked+label::before {
    border-color: #f35634;
    background-color: #f35634;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.button {
    border-radius: 18px;
}

.button.is-link {
    background-color: #f35634;
    border-color: transparent;
    color: #fff;
}

.button.is-link:hover {
    background-color: #f35634;
}

.button.is-text {
    color: #071920;
}

.button.is-link.is-outlined {
    background-color: transparent;
    border-color: #f35634;
    color: #f35634;
}

.button.is-link.is-outlined:hover,
.button.is-link.is-outlined:active:after {
    background-color: transparent;
    border-color: #f35634;
    color: #f35634;
}

.button.is-link:disabled,
.button.is-link[disabled] {
    background-color: #f35634;
    border-color: transparent;
    color: #fff;
}

i.is-telegram {
    transform: rotate(-45deg);
}

.article {
    margin-top: .75rem
}

.captcha-column {
    padding: 0px;
}

.cpatcha-label {
    font-weight: normal
}

.captcha-btn-icon {
    max-height: 100%;
}