:root{
    --color-button-bg: white;
    --color-main: rgb(210, 105, 30);
    --color-menu-sel: green;
    --color-black: rgb(12, 12, 12);
    --color-news: rgb(53, 53, 53);
    --color-hover: rgb(2, 104, 129);
}
@font-face {font-family: 'Roboto'; font-style: normal; font-weight: normal; src: local('Roboto'), url(/share/css/fonts/Roboto-Regular.ttf);}
@font-face {font-family: 'Roboto'; font-style: italic; font-weight: normal; src: local('Roboto'), url(/share/css/fonts/Roboto-Italic.ttf);}
@font-face {font-family: 'Roboto'; font-style: normal; font-weight: bold; src: local('Roboto'), url(/share/css/fonts/Roboto-Bold.ttf);}
@font-face {font-family: 'Roboto'; font-style: italic; font-weight: bold; src: local('Roboto'), url(/share/css/fonts/Roboto-BoldItalic.ttf);}
@font-face {font-family: 'Roboto'; font-style: normal; font-weight: 300; src: local('Roboto'), url(/share/css/fonts/Roboto-Light.ttf);}
@font-face {
font-family: 'dashicons';
src:url(/share/css/fonts/dashicons.ttf) format("truetype"),
url(/share/css/fonts/dashicons.woff) format("woff"),
url(/share/css/fonts/dashicons.woff2) format("woff2"),
url(/share/css/fonts/dashicons.eot) format("embedded-opentype"),
url(/share/css/fonts/dashicons.svg) format("svg");
}
*{
margin: 0; padding: 0; box-sizing: border-box;
}
button, a, [onclick], [href]{cursor: pointer;}
a{text-decoration: none; color: var(--color-hover);}

body{
display: flex;
align-items: center;
flex-direction: column;
font-family: Roboto;
color: var(--color-black);
}
body.block{overflow: hidden;}

input, select, option, .input_{
border: 1px solid var(--color-main);
border-radius: 5px;
padding: 10px 15px;
}

button{
border: none;
border-radius: 5px;
padding: 10px 15px;
background-color: var(--color-main);
width: fit-content;
}
button:hover{box-shadow: 0 0 20px black;}
button.blue{background-color: var(--color-hover) !important; color: white;}
button.fix{
    position: fixed;
    border-radius: 100%;
    background-color: white;
    box-shadow: 0 0 7px black;
    backdrop-filter: blur(5px);
    
}
button.back{
    top: 25px;
    left: 25px;
    padding: 10px;
}
.i{font-family: dashicons; font-size: 1.5em; padding: inherit;}
.i.back::before{content: "\f171";}
content{
    width: 100%;
    max-width: 1400px;
    padding: 20px;
    margin: auto;
}