@charset "UTF-8";
/* Скидання стилів */
/* Скидання маргінів та відступів */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
html,
body,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
	margin: 0;
	padding: 0;
}

/* Скидання списків */
ul,
ol {
	list-style: none;
}

/* Скидання гіперпосилань */
a {
	text-decoration: none;
	color: inherit;
}

/* Скидання форм */
button,
input,
select,
textarea {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	font-size: 100%;
	vertical-align: baseline;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
}

/* Скидання розмірів зображень */
img {
	max-width: 100%;
	height: auto;
}

/* Скидання вирівнювання вертикальних форм елементів */
input[type='checkbox'],
input[type='radio'],
input[type='file'] {
	vertical-align: middle;
}

/* Базові стилі */
/* Загальні налаштування */
* {
	box-sizing: border-box;
}

html,
body {
	scroll-behavior: smooth;
	height: 100vh;
}

body {
	background: #fff;
	color: #000;
	font-size: 14px;
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	line-height: 20px;
}

.new-page > p {
	color: #000;
	font-size: 14px;
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	line-height: 20px;
}

ol > li {
	margin-bottom: 15px;
}

/* Блоки */
.benefits {
	padding: 24px 0;
}
.benefits__list {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 15px;
}
@media (max-width: 991px) {
	.benefits__list {
		gap: 10px;
	}
}
.benefits__list-item {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 125px;
}
@media (max-width: 991px) {
	.benefits__list-item {
		width: 80px;
	}
}
.benefits__list-item img {
	width: 100%;
	height: 150px;
}
@media (max-width: 991px) {
	.benefits__list-item img {
		height: 90px;
	}
}
.benefits__list-item p {
	font-size: 18px;
	text-align: center;
	font-weight: 400;
}
@media (max-width: 991px) {
	.benefits__list-item p {
		font-size: 14px;
	}
}

.branding-wrap {
	padding: 30px 0;
	background: #fafafa;
}
.branding-wrap h2 {
	text-align: center;
}
@media (max-width: 991px) {
	.branding-wrap h2 {
		font-size: 24px;
	}
}
.branding-wrap h3 {
	font-weight: 300;
	text-align: center;
}
@media (max-width: 991px) {
	.branding-wrap h3 {
		font-size: 20px;
	}
}

.branding__block:not(:last-child) {
	margin-bottom: 50px;
}
@media (max-width: 991px) {
	.branding__block:not(:last-child) {
		margin-bottom: 20px;
	}
}
@media (max-width: 991px) {
	.branding__block:nth-child(odd) {
		flex-direction: column;
	}
}
@media (max-width: 991px) {
	.branding__block:nth-child(even) {
		flex-direction: column-reverse;
	}
}
.branding__block {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 80px;
}
@media (max-width: 991px) {
	.branding__block {
		gap: 20px;
	}
}
.branding__block-img {
	width: 35%;
}
@media (max-width: 991px) {
	.branding__block-img {
		width: 100%;
	}
}
.branding__block-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.branding__viber {
	margin-top: 100px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 30px;
}
@media (max-width: 991px) {
	.branding__viber {
		margin-top: 20px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 10px;
	}
}
.branding__viber-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.branding__viber-text p {
	text-align: center;
}
.branding__viber-text span {
	display: block;
	width: 100%;
	height: 1px;
	background: #000;
	margin: 5px 0;
}
.branding__viber-btn {
	width: 150px;
	background: #b86edb;
	box-shadow: 0px 4px 6.4px 0px rgba(0, 0, 0, 0.25),
		2px 4px 16.3px -7px rgba(0, 0, 0, 0.25) inset,
		0px -2px 10.7px 3px rgba(0, 0, 0, 0.25) inset;
}

.catalog {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 30px 0;
	background: #fafafa;
}
@media (max-width: 991px) {
	.catalog {
		padding: 20px 0;
	}
}
.catalog__top {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 22px;
	margin-bottom: 40px;
}
@media (max-width: 991px) {
	.catalog__top {
		flex-wrap: wrap;
		gap: 20px;
		margin-bottom: 20px;
	}
}
@media (max-width: 991px) {
	.catalog__top-item {
		width: 45%;
	}
}
.catalog__bottom {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 19px;
	margin-bottom: 40px;
}
@media (max-width: 991px) {
	.catalog__bottom {
		flex-wrap: wrap;
		gap: 10px;
		margin-bottom: 20px;
	}
}
.catalog__descr {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 30px;
}
@media (max-width: 991px) {
	.catalog__descr {
		flex-wrap: wrap;
		gap: 10px;
	}
}
.catalog__descr p {
	color: #000;
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	line-height: 93.059%;
}
@media (max-width: 991px) {
	.catalog__descr p {
		font-size: 14px;
		line-height: normal;
	}
}
.catalog__descr a {
	width: 150px;
	background: #b86edb;
	box-shadow: 0px 4px 6.4px 0px rgba(0, 0, 0, 0.25),
		2px 4px 16.3px -7px rgba(0, 0, 0, 0.25) inset,
		0px -2px 10.7px 3px rgba(0, 0, 0, 0.25) inset;
}

.construction {
	padding-bottom: 30px;
}
@media (max-width: 991px) {
	.construction {
		padding-bottom: 20px;
	}
}
.construction__block {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 150px;
}
@media (max-width: 991px) {
	.construction__block {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 20px;
	}
}
.construction__block-img {
	width: 35%;
}
@media (max-width: 991px) {
	.construction__block-img {
		width: 100%;
	}
}
.construction__block-info {
	width: 500px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
@media (max-width: 991px) {
	.construction__block-info {
		width: 100%;
	}
}
.construction__block-info h3 {
	margin-bottom: 30px;
}
@media (max-width: 991px) {
	.construction__block-info h3 {
		font-size: 24px;
		margin-bottom: 10px;
	}
}
.construction__block-info a {
	color: #1e5fe1;
	text-decoration: underline;
}

.druk .clothing {
	justify-content: space-between;
}
.druk h2 {
	color: #000;
	text-align: center;
	font-size: 24px;
	font-weight: 400;
}
@media (max-width: 991px) {
	.druk h2 {
		font-size: 20px;
	}
}
.druk h3 {
	text-align: justify;
	font-size: 20px;
	font-weight: 700;
}
@media (max-width: 991px) {
	.druk h3 {
		font-size: 18px;
	}
}

.faq {
	padding: 40px 0 63px 0;
}
@media (max-width: 991px) {
	.faq {
		padding: 20px 0;
	}
}
.faq__title {
	background-color: #ffb60e;
	padding: 30px 0;
	margin-bottom: 30px;
}
.faq h2 {
	color: #000;
	text-align: center;
	font-size: 24px;
	font-weight: 400;
}
@media (max-width: 991px) {
	.faq h2 {
		font-size: 20px;
	}
}
.hero-wrap-reverse {
	display: block;
}
@media (max-width: 991px) {
	.hero-wrap-reverse {
		display: flex;
		flex-direction: column-reverse;
	}
	.hero-wrap-reverse > .clothing-wrap {
		display: flex;
	}
}

.hero {
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 532px;
	padding: 56px 0 80px 0;
}
@media (max-width: 991px) {
	.hero {
		height: 100%;
		padding: 0;
		background-image: none !important;
	}
}
.hero__img-mobile {
	display: none;
}
@media (max-width: 991px) {
	.hero__img-mobile {
		display: block;
	}
}
.hero__title {
	margin-left: -100px;
	color: #fff;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	font-size: 64px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 23px;
}
@media (max-width: 991px) {
	.hero__title {
		margin-left: 0px;
		text-align: center;
		font-size: 24px;
		margin-bottom: 12px;
		color: #333;
		margin-top: 15px;
	}
}
.hero__title-second {
	margin-left: -100px;
	color: #333;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	font-family: Roboto;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 23px;
}
@media (max-width: 991px) {
	.hero__title-second {
		margin-left: 0px;
		text-align: center;
		font-size: 24px;
		margin-bottom: 12px;
		color: #333;
		margin-top: 15px;
	}
}
.flag .hero__title-second {
	margin-left: 0;
}
.flag .hero__text {
	margin-left: 0;
}
.flag .hero__list-row {
	margin-left: 0;
}
.flag .hero__list {
	margin-left: 0;
}
@media (max-width: 991px) {
	.hero__list-wrap {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 40px;
	}
	.hero__list-wrap ul {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.hero__list-wrap ul > li {
		width: 100%;
	}
}
.hero__text {
	text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
	font-size: 20px !important;
	line-height: 30px;
	font-weight: 400;
	margin-left: -100px;
	margin-bottom: 10px;
}
@media (max-width: 991px) {
	.hero__text {
		font-size: 14px !important;
		margin-left: 0px;
	}
}
.hero__list-row {
	display: flex;
	flex-direction: row;
	margin-left: -100px;
	gap: 30px;
	margin-bottom: 20px;
}
@media (max-width: 991px) {
	.hero__list-row {
		gap: 5px;
		margin-left: 0px;
	}
}
.hero__list {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	margin-left: -100px;
}
@media (max-width: 991px) {
	.hero__list {
		gap: 5px;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
		gap: 5px;
		margin-left: 0px;
	}
}
.hero__list-second {
	margin-top: 23px;
}
.hero__list-second li {
	list-style-type: disc;
}
.hero__list-item {
	text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
	font-size: 20px;
	font-weight: 400;
	list-style-type: circle;
	list-style-position: inside;
}
@media (max-width: 991px) {
	.hero__list-item {
		font-size: 14px;
		width: 70%;
	}
}
.hero__list-btn {
	margin-left: -100px;
	display: block;
	width: 150px;
	margin-top: 40px;
	margin-left: 80px;
	background: #b86edb;
	box-shadow: 0px 4px 6.4px 0px rgba(0, 0, 0, 0.25),
		2px 4px 16.3px -7px rgba(0, 0, 0, 0.25) inset,
		0px -2px 10.7px 3px rgba(0, 0, 0, 0.25) inset;
}
@media (max-width: 991px) {
	.hero__list-btn {
		margin-left: 0px;
		margin-top: 20px;
		margin-left: auto;
		margin-right: auto;
	}
}
.hero__list-btn-second {
	margin-left: -100px;
	display: block;
	width: 150px;
	margin-top: 40px;
	background: #b86edb;
	box-shadow: 0px 4px 6.4px 0px rgba(0, 0, 0, 0.25),
		2px 4px 16.3px -7px rgba(0, 0, 0, 0.25) inset,
		0px -2px 10.7px 3px rgba(0, 0, 0, 0.25) inset;
}
@media (max-width: 991px) {
	.hero__list-btn-second {
		margin-left: 0;
		margin-top: 20px;
		margin-left: auto;
		margin-right: auto;
	}
}

.clothing-wrap {
	background: #fafafa;
	padding-bottom: 20px;
}
@media (max-width: 991px) {
	.clothing-wrap {
		display: none;
	}
}

.clothing {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.clothing__item img {
	height: 200px;
	object-fit: cover;
	margin-bottom: 10px;
}
@media (max-width: 991px) {
	.clothing__item img {
		height: auto;
	}
}
.clothing__item p {
	text-align: center;
}
@media (max-width: 991px) {
	.clothing__item p {
		font-size: 12px;
	}
}

.info {
	padding: 63px 0;
}
@media (max-width: 991px) {
	.info {
		padding: 20px 0;
	}
}
.info h2 {
	color: #000;
	text-align: center;
	font-size: 24px;
	font-weight: 400;
}
@media (max-width: 991px) {
	.info h2 {
		font-size: 20px;
	}
}
.info h3 {
	text-align: justify;
	font-size: 20px;
	font-weight: 700;
}
@media (max-width: 991px) {
	.info h3 {
		font-size: 18px;
	}
}
.info p > a {
	color: #1e5fe1;
}
.info__lists {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.info p,
.info ul {
	list-style-type: disc;
	list-style-position: inside;
}
.info ol {
	list-style-type: decimal;
	list-style-position: inside;
}
.info li {
	color: #000;
	text-align: justify;
	font-size: 14px;
	font-weight: 400;
}
.info ul.second > li {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}
.info ul.second > li > span {
	display: block;
	width: 15px;
	height: 15px;
	border-radius: 5px;
	background: #bdf;
	list-style-type: none;
}
.info--btn {
	display: block;
	width: 150px;
	margin: auto;
	background: #b86edb;
	box-shadow: 0px 4px 6.4px 0px rgba(0, 0, 0, 0.25),
		2px 4px 16.3px -7px rgba(0, 0, 0, 0.25) inset,
		0px -2px 10.7px 3px rgba(0, 0, 0, 0.25) inset;
}
.info .accent {
	margin: auto;
	width: fit-content;
	text-align: center;
	padding: 10px 20px;
	background: #ffb60e;
}
@media (max-width: 991px) {
	.info .accent {
		padding: 5px 10px;
	}
}
.info .catalog__top {
	list-style-type: none;
}

.clothing-table {
	width: 700px;
	margin: 0 auto;
}
@media (max-width: 991px) {
	.clothing-table {
		width: 100%;
	}
}

.clothing-table th,
.clothing-table td {
	width: 50%;
	border: 1px solid #333;
	padding: 12px;
	text-align: center;
}

.clothing-table thead th {
	background-color: #bdf;
}

.accent-text {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 2px 5px;
	width: fit-content;
	background: #bbddff;
}

.accent-text > img {
	width: 10px;
}

.text-with-icon {
	display: flex;
	align-items: center;
	gap: 10px;
}

.text-with-icon > img {
	width: 25px;
}

.small-icon {
	width: 15px !important;
}

.price {
	padding-bottom: 70px;
}
@media (max-width: 991px) {
	.price {
		padding-bottom: 35px;
	}
}
.price h2 {
	margin-top: 30px;
	color: #000;
	text-align: center;
	font-size: 32px;
	font-weight: 400;
	margin-bottom: 20px;
}
@media (max-width: 991px) {
	.price h2 {
		font-size: 24px;
		margin-bottom: 12px;
	}
}
.price__list {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.price__list-item {
	width: 50%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
@media (max-width: 991px) {
	.price__list-item {
		width: 100%;
		flex-wrap: wrap;
		justify-content: center;
	}
}
.price-img {
	width: 50%;
}
@media (max-width: 768px) {
	.price-img {
		width: 100%;
	}
}
.price-table {
	border-collapse: collapse;
	margin: 20px 0;
}
.price-table-head {
	background-color: #7199fe;
}
.price-table-cell {
	border: 1px solid #000;
	color: #000;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	padding: 8px;
}
.price-table-row--head {
	background-color: #aed4ff;
}
.price__bottom {
	margin-top: 12px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 200px;
}
@media (max-width: 991px) {
	.price__bottom {
		flex-wrap: wrap;
		gap: 30px;
		justify-content: center;
	}
}
.price__bottom p {
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 93.059%;
}
@media (max-width: 991px) {
	.price__bottom p {
		grid-row-start: 14px;
		line-height: normal;
	}
}
.price__bottom a {
	width: 150px;
	background: #b86edb;
	box-shadow: 0px 4px 6.4px 0px rgba(0, 0, 0, 0.25),
		2px 4px 16.3px -7px rgba(0, 0, 0, 0.25) inset,
		0px -2px 10.7px 3px rgba(0, 0, 0, 0.25) inset;
}

.reviews {
	background: #fafafa;
	padding: 35px 0;
}
@media (max-width: 991px) {
	.reviews {
		padding: 20px 0;
	}
}
.reviews__btn {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: fit-content;
	color: #1c49c9;
	text-align: center;
	font-size: 24px;
	background: #bdf;
	margin: auto;
	padding: 10px;
	margin-bottom: 35px;
	cursor: pointer;
}
@media (max-width: 991px) {
	.reviews__btn {
		font-size: 20px;
		padding: 5px;
	}
}
.reviews__btn img {
	width: 50px;
}
.reviews__btn:hover {
	text-decoration: none;
}
.reviews__list {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}
@media (max-width: 991px) {
	.reviews__list {
		gap: 10px;
	}
}
.reviews__item {
	width: 47%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	border-radius: 20px;
	border: 1px solid #000;
	background: #fff;
	padding: 10px;
}
@media (max-width: 768px) {
	.reviews__item {
		width: 100%;
	}
}
.reviews__item-user {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.reviews__item-user span {
	color: #1c49c9;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
}
.reviews__item-rate {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.reviews__item-rate img {
	width: 150px;
}
@media (max-width: 991px) {
	.reviews__item-rate img {
		width: 100px;
	}
}
.reviews__item-rate p {
	font-size: 14px;
	text-align: center;
}
@media (max-width: 991px) {
	.reviews__item-rate p {
		font-size: 12px;
	}
}

.sizes {
	padding: 64px 0;
	background: #fafafa;
}
@media (max-width: 991px) {
	.sizes {
		padding: 20px 0;
	}
}
.sizes h2 {
	color: #000;
	text-align: center;
	font-size: 32px;
	font-weight: 400;
	margin-bottom: 20px;
}
@media (max-width: 991px) {
	.sizes h2 {
		font-size: 24px;
	}
}
.sizes__list {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 19px;
}
@media (max-width: 991px) {
	.sizes__list {
		gap: 10px;
	}
}
.sizes__list-item {
	width: 48%;
}
@media (max-width: 991px) {
	.sizes__list-item {
		width: 100%;
	}
}
.sizes__list-item img {
	width: 100%;
}

.types {
	padding: 30px 0;
	background: #fafafa;
}
.types h2 {
	color: #000;
	text-align: center;
	font-size: 32px;
	font-weight: 400;
	margin-bottom: 20px;
}
.types p {
	color: #000;
	font-weight: 400;
}
.types p a {
	color: #497fe8;
	text-align: justify;
	font-weight: 600;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.viber-wrap {
	margin-bottom: 10px;
	background-color: #ffb60e;
	padding: 20px 0;
}

.viber {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}
@media (max-width: 991px) {
	.viber {
		flex-direction: column;
		justify-content: center;
	}
}
.viber__descr {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.viber__title {
	width: 100%;
	text-align: center;
	border-bottom: 2px solid #000;
}
@media (max-width: 991px) {
	.viber__text {
		text-align: center;
	}
}
.viber-btn {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 150px;
	background: #b86edb;
	box-shadow: 0px 4px 6.4px 0px rgba(0, 0, 0, 0.25),
		2px 4px 16.3px -7px rgba(0, 0, 0, 0.25) inset,
		0px -2px 10.7px 3px rgba(0, 0, 0, 0.25) inset;
}
@media (max-width: 991px) {
	.viber-btn {
		width: 100px;
	}
}

.views-wrap {
	padding: 30px 0;
}
@media (max-width: 991px) {
	.views-wrap {
		padding: 15px 0;
	}
}
.views-wrap .views {
	display: flex;
	flex-direction: row;
	gap: 30px;
}
@media (max-width: 991px) {
	.views-wrap .views {
		flex-direction: column;
	}
}
.views-wrap .views__left {
	width: 60%;
}
@media (max-width: 991px) {
	.views-wrap .views__left {
		width: 100%;
	}
}
.views-wrap .views__right {
	width: 40%;
}
@media (max-width: 991px) {
	.views-wrap .views__right {
		width: 100%;
	}
}
.views-wrap h2 {
	color: #000;
	text-align: center;
	font-size: 24px;
	font-weight: 400;
}
@media (max-width: 991px) {
	.views-wrap h2 {
		font-size: 20px;
	}
}
.views-wrap h3 {
	text-align: justify;
	font-size: 20px;
	font-weight: 700;
}
@media (max-width: 991px) {
	.views-wrap h3 {
		font-size: 18px;
	}
}
.views-wrap p,
.views-wrap ul {
	list-style-type: disc;
	list-style-position: inside;
}
.views-wrap ol {
	list-style-type: decimal;
	list-style-position: inside;
}
.views-wrap li {
	color: #000;
	text-align: justify;
	font-size: 14px;
	font-weight: 400;
}
.views-wrap table {
	border-collapse: collapse;
	margin: 20px 0;
}
.views-wrap thead {
	background-color: #7199fe;
}
.views-wrap th,
.views-wrap td {
	border: 1px solid #000;
	color: #000;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	padding: 8px;
}
.views-wrap thead {
	background-color: #aed4ff;
}
