﻿.ntop {
	background: #fff;
	max-width: 1426px;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    letter-spacing: -0.56px;
    padding: 80px 5%;
}
@font-face {
	font-family: 'mdfonticon';
	src: url('/fonts/mdfonticon.eot') format('embedded-opentype'),
		 url('/fonts/mdfonticon.woff') format('woff'),
		 url('/fonts/mdfonticon.ttf') format('truetype'),
		 url('/fonts/mdfonticon.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face{font-family:e-Ukraine;font-weight:700;src:url(../fonts/e-Ukraine-Bold.b0b74cb733e17bc41a86.otf) format("opentype")}
@font-face{font-family:e-Ukraine;font-weight:300;src:url(../fonts/e-Ukraine-Light.051230eeb9d14f5e4305.otf) format("opentype")}
@font-face{font-family:e-Ukraine;font-weight:500;src:url(../fonts/e-Ukraine-Medium.768e3644ab7db178be11.otf) format("opentype")}
@font-face{font-family:e-Ukraine;font-weight:400;src:url(../fonts/e-Ukraine-Regular.38805a5a6a103eb1aa7d.otf) format("opentype")}
@font-face{font-family:e-Ukraine;font-weight:100;src:url(../fonts/e-Ukraine-Thin.30120570168ed1c0e886.otf) format("opentype")}
@font-face{font-family:e-Ukraine;font-weight:200;src:url(../fonts/e-Ukraine-UltraLight.0db29a0c254eda5ab03e.otf) format("opentype")}

.dopomoga {
	font-family: Inter,sans-serif;
	padding: 0 10px;
}

.dopomoga h2 {
	font-family: Inter,sans-serif;
}

.accordion dt > h4 {
  text-align: left;
  padding: 20px 0;
  font-size:20px;
  display: block;
  text-decoration: none;
  color: #666;
  -webkit-transition: background-color 0.5s ease-in-out;
  text-transform: uppercase;
  cursor: pointer;
}
.accordion dd {
  color:#111;
  font-size: 1em;
  line-height: 1.5em;
}
.accordion dd > p {
  padding: 1em 2em 1em 2em;
}

.accordion {
  position: relative;
  width: 100%;
}

.accordionTitle {
  border-bottom: 1px solid #cecece;
}
.accordionTitle:before {
  content: '\e7d3';
  font-family: mdfonticon;
  font-size: 23px;
  line-height: 23px;
  float: right;
  -moz-transition: -moz-transform 0.3s ease-in-out;
  -o-transition: -o-transform 0.3s ease-in-out;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}

.accordionTitleActive:before {
  -webkit-transform: rotate(-225deg);
  -moz-transform: rotate(-225deg);
  transform: rotate(-225deg);
  color: #d13a7a;
}

.accordionItem {
  height: auto;
  overflow: hidden;
}
@media all {
  .accordionItem {
    -moz-transition: max-height 1s;
    -o-transition: max-height 1s;
    -webkit-transition: max-height 1s;
    transition: max-height 1s;
  }
}
@media screen and (min-width: 48em) {
  .accordionItem {
    -moz-transition: max-height 0.5s;
    -o-transition: max-height 0.5s;
    -webkit-transition: max-height 0.5s;
    transition: max-height 0.5s;
  }
}

.accordionItemCollapsed {
  max-height: 0;
}

.animateIn {
  -webkit-animation-name: accordionIn;
  -webkit-animation-duration: 0.65s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  -webkit-animation-delay: 0s;
  -moz-animation-name: normal;
  -moz-animation-duration: 0.65s;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: alternate;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-fill-mode: both;
  -moz-animation-delay: 0s;
  animation-name: accordionIn;
  animation-duration: 0.65s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  animation-delay: 0s;
}

.animateOut {
  -webkit-animation-name: accordionOut;
  -webkit-animation-duration: 0.75s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  -webkit-animation-delay: 0s;
  -moz-animation-name: accordionOut;
  -moz-animation-duration: 0.75s;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: alternate;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-fill-mode: both;
  -moz-animation-delay: 0s;
  animation-name: accordionOut;
  animation-duration: 0.75s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  animation-delay: 0s;
}

@-webkit-keyframes accordionIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes accordionIn {
  0% {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -moz-transform: scale(1);
  }
}
@keyframes accordionIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes accordionOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes accordionOut {
  0% {
    opacity: 1;
    -moz-transform: scale(1);
  }
  100% {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
}
@keyframes accordionOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}

.accordion table {    
    overflow-x: scroll;
	width: 100%;
	display: table;
	table-layout: fixed;
	margin-bottom: 30px;
}

.accordion table th {    
    background-color: #2684be;
	display: table-cell;
	color: #fff;
	font-size:17px;
}
.dopomoga-header {
	display:inline-block;
}
.dopomoga-header1 {
	width: 35%;
}
.dopomoga-header2 {
	text-align: left;
	width: 65%;
	float: right;
}
@media (max-width: 767px) {
    .dopomoga-header1 {
		font-size: 18px;
	}
     .dopomoga-header2 {
		font-size: 14px;
	}
	
	.accordion table {
		table-layout: auto;
	}
	.accordion dd {
		overflow-x: scroll;
	}
	.accordion table th {
		font-size: 14px;
	}
}