main > .container {
    padding: 70px 15px 20px;
}

.footer {
    background-color: #f5f5f5;
    font-size: .9em;
    height: 60px;
}

.footer > .container {
    padding-right: 15px;
    padding-left: 15px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    content: '';
    left: 3px;
    display: inline-block;
    width: 0;
    height: 0;
    border: solid 5px transparent;
    margin: 4px 4px 2px 4px;
    background: transparent;
}

a.asc:after {
    border-bottom: solid 7px #212529;
    border-top-width: 0;
}

a.desc:after {
    border-top: solid 7px #212529;
    border-bottom-width: 0;
}

.grid-view th {
    white-space: nowrap;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.nav li > form > button.logout {
    padding-top: 7px;
    color: rgba(255, 255, 255, 0.5);
}

@media(max-width:767px) {
    .nav li > form > button.logout {
        display:block;
        text-align: left;
        width: 100%;
        padding: 10px 0;
    }
}

.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
}

.nav > li > form > button.logout:focus {
    outline: none;
}

/*Aranyi Dani */
/* gomb betűméret - Probléma - A méret változtatással elcsúszik az eddigi kód. - https://idokapuszoftver.hu/static/css/bootstrap.min.css */

.btn.dropdown-toggle.btn-light {
	font-size: 14px;
}

.btn.dropdown-toggle.btn-light {
	margin-top: -2px;
}

/* Ez maga a nyilacska ami Borderekből van összerakva és helyette ezt kellene : ▾ / ▼ . Minden más beállítást kukázni lehet. */
.bootstrap-select>.dropdown-toggle:after {
	content: "▾" !important;
	margin-top: 0px !important;
}
.filter-option-inner-inner img {
	width: 40% !important; /* a lang mérete miatt */
	margin-top: -2px;
	margin-right: 2px;
}

/* Magát a doboz szélességét kissebbre kellene venni szerintem. ezt a .lang osztály módosításával talán sikerülhet. Most a width: 6em; Ettől viszont az előző img sokkal kisebb lesz! */
.lang {
	width: 50px;
}
/* Dropdown zászlók nagyobbra kell */
.text img {
    width: 30% !important;
    margin-top: -2px;
}
/* Mobilon a dropdown zászlóknál az #bs-select1.inner.show overflowot mutat scroll barral. Erre a megoldás - index?? */
#bs-select1.inner.show {
	overflow: hidden;
}

.faq {
    width: 100%;
    max-width: 1110px;
    padding: 1rem;
    margin: 0 auto;
    background-color: #f0f4f3;
    border-radius: 7px;
}

.faq-title {
    font-family: 'Ubuntu', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 28px;
    line-height: 32px;
    color: #000000;
    margin-bottom: 30px;
}

.faq-item {
    width: 100%;
    height: auto;
    background: #FFFFFF;
    box-shadow: 0px 9px 18px rgba(75, 81, 91, 0.1);
    border-radius: 7px;
    position: relative;
    margin: 1.2rem 0;
}

.faq-question {
    cursor: pointer;
    position: relative;
    width: 100%;
    height: auto;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question p {
    font-family: 'Ubuntu', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: #144067;
}

.faq-toggle {
    position: relative;
    width: 16px;
    height: 16px;
}

.faq-toggle-vert, .faq-toggle-horz {
    width: 4px;
    height: 16px;
    background: #144067;
    border-radius: 1.5px;
}

.faq-toggle-vert {
    transform: rotate(-90deg);
}

.faq-answer {
    width: 100%;
    height: auto;
    padding: 1.2rem;
    position: relative;
    display: none; /* answer is hidden by default */
}