/*!
Theme Name: arbitr-wp
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: arbitr-wp
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

arbitr-wp is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

@import './static/common/buttons.css';
@import './static/common/typography.css';
@import './static/css/main-tempalte.css';
@import './static/css/single-post.css';
@import './static/common/footer.css';
@import './static/common/header.css';


/* rubik-regular - cyrillic_cyrillic-ext_latin_latin-ext */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Rubik';
	font-style: normal;
	font-weight: 400;
	src: url('./static/fonts/rubik-v28-cyrillic_cyrillic-ext_latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* rubik-700 - cyrillic_cyrillic-ext_latin_latin-ext */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Rubik';
	font-style: normal;
	font-weight: 700;
	src: url('./static/fonts/rubik-v28-cyrillic_cyrillic-ext_latin_latin-ext-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


:root {
	--background-color: #ffffff;
	--accent-color: #0085FF;
	--grad: linear-gradient(68deg, #0D43FB 14.17%, #1788FB 85.83%);
	--font-color: #0D1017;
	--invert-font-color: #FFF;
	--light-background: #F3F7FA;
	--light-color: #636C79;
	--50-color: #F7F7F8;
	--300-color: #CDD1D6;
	--600-color: #636C79;
	--warning-color: #FFDB96;
	--standart-box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.10), -4px -4px 20px 5px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

*:focus-visible {
	outline: 1px solid blue;
}

body {
	height: 100%;
	width: 100%;
	color: var(--font-color);
	background: var(--background-color);
	font-family: Rubik, sans-serif;
}

a {
	text-decoration: none;
}

ul,
li {
	list-style: none;
}

.no-scroll {
	overflow-y: hidden;
	overflow-x: auto;
}

.db {
	display: block;
}

.dn {
	display: none !important;
}

.center {
	display: grid;
	place-content: center;
}

.spread {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.container {
	width: 1440px;
	margin: 0 auto;
}

.custom-logo {
	object-fit: cover;
	width: 170px;
	height: 56px;
	border-radius: 16px;
}

.m0 {
	margin: 0;
}

.mb8 {
	margin-bottom: 8px;
}

.mb16 {
	margin-bottom: 16px;
}

.mb24 {
	margin-bottom: 24px;
}

.mr8 {
	margin-right: 8px;
}

.mr10 {
	margin-right: 10px;
}

.ml12 {
	margin-left: 12px;
}

.mt24 {
	margin-top: 24px;
}

.svg18 {
	width: 18px;
	height: 18px;
}

.arbitr-modal {
	position: fixed;
	top: -1000px;
	left: 50%;
	transform: translateX(-50%);
	transition: .3s ease-in-out;
	background: var(--background-color);
	border-radius: 16px;
	box-shadow: var(--standart-box-shadow);
	padding: 16px;
}

.arbitr-modal-btns {
	gap: 16px;
	display: flex;
}

.arbitr-modal i {
	font-size: 32px;
	color: var(--accent-color);
	pointer-events: none;
}

.arbitr-modal.showed {
	top: 200px;
}

.arbitr-modal-backdrop {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: var(--600-color);
	opacity: 0.4;
}

.arbitr-modal-backdrop.showed {
	display: block;
}

.arbitr-link-copied {
	display: none;
	text-align: center;
}

@media screen and (max-width: 1440px) {
	.container {
		width: 1200px;
	}
}
@media screen and (max-width: 1199px) {
	.container {
		width: 960px;
	}
}
@media screen and (max-width: 991px) {
	.container {
		width: 720px;
	}
}
@media screen and (max-width: 767px) {
	.container {
		width: auto;
		margin-left: 16px;
		margin-right: 16px;
	}
	.arbitr-header__inner-container {
		width: 100%;
	}
}
@media screen and (max-width: 575px) {
}

