/*+clearfix {*/
#content:after, #wrapper:after, #top > .body:after, .stage:after, .stage-body:after, .stage-0:after, .stage-1:after, .stage-0 > .body:after, .stage-1 > .body:after, #footer:after, ul.sub-page-list > li:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    font-size: 0;
}

#content, #wrapper, #top > .body, .stage, .stage-body, .stage-0, .stage-1, .stage-0 > .body, .stage-1 > .body, #footer, ul.sub-page-list > li {
    display: block;
    *height: 1px;
}


/*+}*/
:root {
    --content-width: auto;
    --line-height: 1.8em;
    --aside-width:250px;
    --top-height:65px;
    /*theme colors*/
    --color-a: #312EB9;
    --color-b: #863FF5;
    --color-c: #5C37D7;
    --color-d: #713BE6;
    --color-success: #28a745;
    --color-success-bg: #D9FFD9;
    --color-alert: #cc0000;
    --color-alert-bg: #FFD9D9;
    --color-warn: #e9af00;
    --color-warn-bg: #FFF3CD;
    --color-info: #02a7f4;
    --color-info-bg: #cef2fc;
    /*colors*/
    --color-main-bg: #CDD5DB;
    --color-heading: #000;
    --color-link: #312EB9;
    --color-link-hover: #9B47E3;
    --color-footer: rgba(0,0,0, 0.6);
    --color-footer-link: rgba(0,0,0, 0.8);
    --color-footer-link-hover: rgba(255, 255, 255, 1);
    --color-mobmenu: #312EB9;
    /*default  stage and grid padding */
    --page-margins:15px;
    --grid-gaps:var(--page-margins);
    color: #312EB9;
}

body {
    color: #414141;
    font-family: sans-serif, arial;
    font-size: 14px;
    height: 100%;
    font-weight: 400;
    overflow-x: hidden;
}

body * {
    line-height: var(--line-height);
}

html {
    background-color: #EAEFF2;
    background-color: var(--color-main-bg);
    scroll-behavior: smooth;
}

img, svg {
    vertical-align: middle;
    display: inline-block;
    display: unset;
}

label {
    color: var(--color-heading);
    display: block;
    font-weight: 500;
}

form {
}

em, i {
    font-style: italic;
}

strong, b {
    font-weight: 600;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: 500;
    color: var(--color-heading);
}

h1 a:link, h2 a:link, h3 a:link, h4 a:link, h5 a:link, h6 a:link {
    color: var(--color-heading);
}

h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited {
    color: var(--color-heading);
}

h1 {
    font-size: 2em;
    margin: 1.2em 0 0.5em;
    font-weight: 300;
}

h2 {
    margin: 1.2em 0 0.4em;
    font-size: 1.5em;
}

h3 {
    margin: 1em 0 0.3em;
    font-size: 1.34em;
}

h4 {
    margin: 1em 0 0.3em;
    font-size: 1.3em;
    font-weight: 500;
}

h5 {
    margin: 1em 0 0.3em;
    font-size: 1.15em;
    font-weight: normal;
}

h6 {
    margin: 1em 0 0.3em;
    font-size: 1.1em;
    font-weight: 600;
}

p {
    margin: 0.3em 0 1em;
}

svg {
    fill: transparent;
}

a:link, a:visited {
    color: #4794E4;
    color: var(--color-link);
    text-decoration: none;
}

a:hover, a:focus {
    color: #9B47E3;
    color: var(--color-link-hover);
    text-decoration: none;
}

input[type="url"], input[type="email"], input[type="tel"] {
    /*rtl:ignore*/
    direction: ltr;
}

input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="date"], input[type="month"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="week"], input[type="number"], input[type="search"], input[type="tel"], input[type="color"], select, textarea {
    border: 1px solid #D0D0D0;
    padding: 0.8em;
    box-sizing: border-box;
    margin: 0.3em 0 0.5em;
}

input:focus, select:focus, textarea:focus {
    box-shadow: 0px 2px 18px -5px rgba(0, 0, 0, 0.3);
    outline: none;
}

/**-*****/

INPUT[type=checkbox]:not(.cb-toggle)
{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    display: inline-block;
    position: relative;
    outline: none;
    border: 2px solid rgba(0, 0, 0, 0.276);
    cursor: pointer;
    background-color: #FFFFFF;
    transition: background-color ease 0.3s;
    /*+border-radius: 3px;*/
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
    vertical-align: text-bottom;
}
INPUT[type=checkbox]:not(.cb-toggle):hover, INPUT[type=checkbox]:not(.cb-toggle):focus
{
    border: 2px solid rgba(0, 166, 18, 0.664);
}
INPUT[type=checkbox]:not(.cb-toggle):before
{
    content: " ";
    display: block;
    position: absolute;
    z-index: 2;
    width: 4px;
    height: 9px;
    left: 3px;
    top: -1px;
    transform: rotate(180deg);
    transition: all 0.3s cubic-bezier(0.5, 2, 0.7, 1);
    border-bottom: 2px solid #FFFFFF;
    border-right: 2px solid #FFFFFF;
    opacity: 0;
}
INPUT[type=checkbox]:not(.cb-toggle):checked
{
    background-color:var(--color-a);
}
INPUT[type=checkbox]:not(.cb-toggle):checked:before
{
    transform: rotate(45deg);
    opacity: 1;
}
INPUT[disabled], SELECT[disabled], TEXTAREA[disabled]
{
    background-color: #f1ecec;
    box-shadow: none !important;
    color: #AAA;
}
/*toggle checkbox*/

input[type="checkbox"].cb-toggle {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 50px;
    height: 20px;
    display: inline-block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    outline: none;
    cursor: pointer;
    background-color: #E6E6E6;
    transition: background-color ease 0.3s;
    box-shadow: inset 0px 1px 3px 0 rgba(0, 0, 0, 0.211);
    margin: 0;
    vertical-align: middle;

}

input[type="checkbox"].cb-toggle:before {
    content: " ";
    content: attr(data-onoff-text);
    display: block;
    position: absolute;
    z-index: 2;
    width: 18px;
    height: 18px;
    background: #FFF;
    left: 1px;
    top: 1px;
    border-radius: 50%;
    font: 8px / 19px Tahoma;
    text-transform: uppercase;
    font-weight: 300;
    text-indent: -25px;
    word-spacing: 25px;
    color: #6C7981;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.3, 1.5, 0.7, 1);
}

input[type="checkbox"].cb-toggle:checked {
    background-color: #4CD964;
}

input[type="checkbox"].cb-toggle:checked:before {
    left: 31px;
    color: #FFFFFF;
}

input[type="checkbox"].cb-toggle + span {
    margin: 0 0 0 7px;
    color: #4F4F4F;
}



/*Layout
-- stages-------*/
/*[clearfix]*/
#content {
    margin: 0;
    flex: 1;
    position: relative;
    z-index: 50;
}

/*[clearfix]*/
#wrapper {
    min-height: 100vh;
}

#page {
    position: relative;
    margin: 0 auto;
    min-height: 100%;
    background-color: #FFFFFF;
}

.pre-top {
    font-size: 0.95em;
    color: #777777;
    border-bottom: 1px solid #DCDCDC;
    margin-top: -1px;
}

.pre-top p {
    margin: 0px;
}

#top {
    top: 0;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.1px;
    border-bottom: 1px solid #EAEFF2;
    height: 65px;
    height:var(--top-height);
    background-color: #FFFFFF;
    /**/
}

/*[clearfix]*/
#top > .body {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
    height: 100%;
    margin: 0 20px 0 0;
}

#top .logo {
    width: 280px;
    height: 100%;
    width: calc(var(--aside-width) + 1px);
    box-sizing: border-box;
    padding:5px 15px;
    text-align: center;
    border-right: 1px solid #EAEFF2;
    transition: width 0.3s ease;
}

body.menu-closed #top .logo {
    width: 160px;
}

.logo-overlay {
    height: 100%;
}

.logo-overlay img {
    max-width: 100%;
    max-height: 100%;
}

.langs .text {
    margin: 0;
}

.langs .text a {
    padding: 0px 5px;
    border-right: 1px solid #D9D9D9;
    color: #6D6D6D;
}

.langs .text span:last-child a {
    border: none;
    padding-right: 0;
}

.langs .text .active a {
    font-weight: 600;
    color: #333333;
}

#top .extra {
    display: flex;
    flex: 1;
    padding: 0 10px;
    justify-content: flex-end;
    align-content: center;
}

#top .app-login-box {
    display: flex;
    align-items: center;
}

#top .app-login-box > * {
    margin: 0 10px;
}

.app-login-box .app-displayname {
    font-weight: 400;
    font-size: 0.85em;
    text-align: right;
}

.app-login-box .app-displayname .sn {
    font-size: 0.9em;
    opacity: 0.75;
}

.app-login-box .btn-logout a {
    color: #DA0000;
    font-size: 0.9em;
    background-color: #F1E6E6;
    padding: 5px 15px;
    display: inline-block;
    border-radius: 15px;
}

.app-login-box .btn-usrs a {
    font-size: 19px;
    vertical-align: middle;
    padding: 2px 10px;
}

/*main*/
#page > .main {
    padding-top: 65px;
    padding:var(--top-height) 0 0;
    display: flex;
}

.main aside {
    position: fixed;
    left: 0;
    width: 280px;
    width:var(--aside-width);
    z-index: 100;
    height: calc(100vh - var(--top-height));
    overflow: auto;
    overflow-x: hidden;
    box-shadow: 0px 6px 15px 0 rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease-out;
    background-color: #FFFFFF;
}

.main aside > .body {
    margin: 15px 0;
}

main#content {
    background-color: #F2F5F7;
    padding: 5px 25px;
    box-sizing: border-box;
    height: calc(100vh - var(--top-height));
    overflow: auto;
    margin-left: 280px;
    margin-left:var(--aside-width);
    transition: margin 0.3s ease-in-out;
}

body.menu-closed main#content {
    margin-left: 0;
}

body.menu-closed .main aside {
    left: -280px;
    left: calc(-1 * var(--aside-width));
}

.pbox, #content .stage-0 .node-content {
    background-color: #FFFFFF;
    border-radius: 7px;
    box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.3);
    margin: 20px 0px;
    padding: 1px;
    padding: 25px;
}

.sub-pbox .pbox {
    box-shadow: 0 2px 7px 0px rgba(0, 0, 0, 0.1);
}

table.pbox {
    background: transparent;
}

body.lo-naked .main aside {
    display: none;
}

body.lo-naked main#content {
    transition: none;
    margin-left: 0;
}
HR
{
    border: none;
    border-bottom: 1px dashed #D3D3D3;
    margin: 2em 0;
}
.pbox HR
{
    border: none;
    border-bottom: 4px solid #F2F5F7;
    margin: 1.5em -25px;
    border-top: 2px solid #EAEDEF;
}
/*footer*/
#footer {
    font-size: 0.9em;
    padding: 15px 0px;
}

#footer .body {
    margin: auto;
    color: rgba(255, 255, 255, 0.7);
    color: var(--color-footer);
    max-width: 1140px;
    max-width: var(--content-width);
}

#footer a:link, #footer a:visited {
    color: rgba(255, 255, 255, 0.8);
    color: var(--color-footer-link);
    text-decoration: none;
}

#footer a:hover {
    color: rgba(255, 255, 255, 0.8);
    color: var(--color-footer-link-hover);
}

#footer .filweb {
    opacity: 0.5;
    font-size: 0.9em;
}

#footer .filweb, #footer .filweb a {
    text-align: right;
    color: rgba(255, 255, 255, 0.7);
    color: var(--color-footer);
}

#footer h2, #footer h3, #footer h4, #footer h5, #footer h6 {
    color: rgba(255, 255, 255, 0.7);
    color: var(--color-footer);
}

/* content*/
/*[clearfix]*/
.stage, .stage-body, .stage-0, .stage-1, .stage-0 > .body, .stage-1 > .body, #footer {
    margin: auto;
}

.layout-B .stage-sep {
    clear: both;
}

.stage {
    margin: auto;
}

.stage-0 {
    min-height: 150px;
    margin: 0 0 0 0;
}

.stage-0 > .body > .node-content > *:not(section), .page-title, .stage-0 > .body > *:not(.node-content):not(section) {
    max-width: 1140px;
    max-width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/*layouts*/
.stage.layout-C {
    max-width: 1140px;
    max-width: var(--content-width);
}

.layout-C .stage-0, .layout-D .stage-0 {
    float: left;
    width: 73%;
}

.layout-C .stage-0 > .body, .layout-D .stage-0 > .body {
    margin-right: 15px;
    position: relative;
}

.layout-C .stage-1, .layout-D .stage-1 {
    width: 27%;
    float: right;
    margin: 0 -1px;
}

.layout-C .stage-1 .body, .layout-D .stage-1 .body {
    margin: 15px 0 0 15px;
}

.stage.layout-D .stage-group {
    max-width: 1140px;
    max-width: var(--content-width);
    margin-right: auto;
}

.node-content > .sGear-wrap {
    margin-left: -10px;
    margin-right: -10px;
}

/*footer-bar*/
.footer-bar {
    border: 1px solid #D4D4D4;
    background-color: #ECECEC;
    padding: 5px 0;
    font-weight: normal;
    color: #5A5656;
}

.footer-bar > .body {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: auto;
    max-width: 1140px;
    max-width: var(--content-width);
}

.footer-bar > .body > * {
    width: auto !important;
}

.footer-bar .tools-A {
}

.footer-bar .addthis_toolbox .at-share-btn-elements a {
    margin-bottom: 0;
}

.footer-bar .tools-A a {
    margin: 0 1.5em 0 0;
    font-size: 0.85em;
    color: inherit;
}

.footer-bar .tools-A a:hover {
    color: #000000;
}

.footer-bar .tools-A a i {
    font-family: 'icobase';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    display: inline-block;
    width: 20px;
    height: 24px;
    line-height: 20px;
    vertical-align: middle;
    text-align: center;
    margin-right: 5px;
}

.footer-bar .tools-A .page-to-home i:before {
    content: "\e623";
    font-size: 18px;
}

.footer-bar .tools-A .page-to-top i:before {
    content: "\f137";
    transform: rotate(-90deg);
    display: inline-block;
    font-size: 24px;
}

.footer-bar .tools-A .page-share i:before {
    content: "\e6e2";
    font-size: 18px;
}

.addthis_toolbox {
    width: 300px;
    float: left;
    text-shadow: 0 0;
}

/*template styles*/
.template-naked .main main#content {
    margin-left: 0;
}

/*LOGIN*/
.login-screen {
    display: flex;
    align-content: center;
    height: 70vh;
}

.login-screen > .body {
    max-width: 450px;
    margin: auto;
}

.login-screen h1 {
    background-color:var(--color-a);
    margin: -25px -25px 30px -25px;
    padding: 20px 25px;
    color: #FFFFFF;
}

.login-screen h1 p {
    font-size: 0.5em;
    opacity: 0.8;
    letter-spacing: 1px;
    margin: 5px 0;
}

.login-screen .button {
    width: 100%;
}

.login-screen form .item {
    margin: 0 0 15px 0;
}

.login-screen .forgot-pass {
    margin: 40px 0 0;
    text-align: center;
}

/*scrol bars*/
@media (min-width: 577px) {
    ::-webkit-scrollbar {
        width: 14px;
        height: 14px;
    }

    aside::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    ::-webkit-scrollbar-track {
        border-radius: 5px;
        background-color: rgba(0, 0, 0, 0.035);
    }

    ::-webkit-scrollbar-thumb {
        border-radius: 8px;
        background: rgba(158, 158, 188, 0.3);
        border: 1px solid #FFF;
    }
}

.inline {
    display: inline-block;
}

.f-xlg {
    font-size: 1.2em;
}

.f-lg {
    font-size: 1.1em;
}

.f-sm {
    font-size: 0.9em;
}

.f-xsm {
    font-size: 0.8em;
}

/* cookie info*/
.cookie-info-box {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #E6E6E6;
    padding: 40px 0;
}

.cookie-info-box > .body {
    position: relative;
    max-width: var(--content-width);
    margin: auto;
    background-color: #FFFFFF;
    padding: 30px 50px 30px 30px;
    box-sizing: border-box;
    box-shadow: 0px 2px 15px 0 rgba(0, 0, 0, 0.024);
    font-weight: 500;
}

.cookie-info-box .body > a.c {
    position: absolute;
    right: 0;
    top: 0;
    padding: 5px 10px;
    font-size: 22px;
    cursor: pointer;
}

/*Breadcrumbs*/
.breadcrumbs {
    visibility: visible;
    max-width: 1140px;
    max-width: var(--content-width);
    margin: 10px auto 0.5em;
    clear: both;
    border-bottom: 1px solid rgba(0, 0, 0, 0.089);
    padding: 2px 0 10px;
    text-align: left;
}

.breadcrumbs .step {
    display: inline;
}

.breadcrumbs .step a:hover span {
    color: var(--color-link);
}

.breadcrumbs .step span {
    font-size: 11px;
    vertical-align: middle;
    color: #5C5C5C;
}

.breadcrumbs .step .sep {
    font-size: 20px;
    line-height: 1;
    color: #2F2F2F;
    font-weight: 200;
    vertical-align: baseline;
    margin: 0 5px;
}

/*page navi*/
.page_navi {
}

.page_navi ul, .page_navi ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.page_navi ul li a {
    color: #000000;
    display: block;
    padding: 10px 0 10px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.page_navi > ul > li > a {
    font-size: 1.2em;
    font-weight: 500;
    padding-top: 0;
    padding-bottom: 5px;
}

.page_navi > ul > li > ul > li > ul > li > a {
    font-size: 0.9em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.083);
    padding-left: 35px;
}

.page_navi li.active > a {
    font-weight: 600;
}

.page_navi a:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

/*sub-page*/
ul.sub-page-list {
    margin-left: auto;
    padding-left: 0px;
    max-width: 1140px;
    max-width: var(--content-width);
    margin-right: auto;
}

/*[clearfix]*/
ul.sub-page-list > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
    margin-left: 0px;
    background-image: none;
    font-size: 1.1em;
    text-align: left;
    list-style: none;
}

ul.sub-page-list > li > a {
    display: block;
    padding: 8px 2px 8px 10px;
    color: #000000;
}

ul.sub-page-list > li i {
    font-style: normal;
    display: block;
    height: 30px;
    width: 24px;
    float: left;
    font-size: 24px;
    margin: 0 10px 0px -8px;
    text-align: center;
    line-height: 100%;
}

ul.sub-page-list > li i:not([class*="ico"]):before {
    content: "\e75c";
    color: #B2B2B2;
    font-size: 16px;
    font-family: icobase;
}

ul.sub-page-list > li svg, ul > li.box-spot img {
    width: auto !important;
    height: auto !important;
    max-width: 22px !important;
    max-height: 22px !important;
}

UL.sub-page-list > LI svg path {
    fill: var(--color-a);
}

/*sub-page.box*/
ul.sub-page-list > li.box {
    padding: 0;
    background-image: none;
    width: 31.914%;
    float: left;
    margin: 5px -1px 1em 2.127%;
    font-size: 1.1em;
    text-align: center;
    border: none;
    height: 131px;
    overflow: hidden;
    box-shadow: 0px 13px 15px -15px rgba(0, 0, 0, 0.3);
    position: relative;
    -webkit-transition: box-shadow 0.3s ease, color 0.3s ease;
    transition: box-shadow 0.3s ease, color 0.3s ease;
}

ul.sub-page-list > li.box:hover {
    overflow: visible;
    z-index: 10;
    box-shadow: 0px 0px 15px -2px rgba(0, 0, 0, 0.3);
}

ul.sub-page-list > li.box:nth-child(3n+1) {
    margin-left: 0px;
}

ul.sub-page-list > li.box a {
    height: auto;
    padding-top: 15px;
    color: inherit;
}

ul.sub-page-list > li.box .ico, ul.sub-page-list > li.box .ico i, ul.sub-page-list > li.box i:not([class*="icon-"]) {
    width: 100%;
    display: block;
    margin: 0 auto auto;
    font-size: 48px;
    height: auto;
    text-align: center;
    float: none;
    color: inherit;
}

ul.sub-page-list > li.box svg, ul.sub-page-list > li.box img {
    width: auto !important;
    height: auto !important;
    max-width: 48px !important;
    max-height: 48px !important;
}

UL.sub-page-list > LI.box .ico svg path {
    fill: var(--color-a);
}

ul.sub-page-list > li.box i:not([class*="ico"]):before {
    content: "\e97e";
    font-size: 48px;
    display: block;
    text-align: center;
    color: #CACACA;
    margin-top: 0px;
}

ul.sub-page-list li.box .title {
    display: block;
    margin: 15px 0px 0px;
}

.layout-B ul.sub-page-list > li.box {
    width: 23.4%;
    float: left;
    margin: 5px -1px 1em 2.127%;
}

.layout-B ul.sub-page-list > li.box:nth-child(4n+1) {
    margin-left: 0px;
}

/*sub-page.box-spot*/
ul.sub-page-list > li.box-spot {
    padding: 0;
    width: 31.914%;
    float: left;
    margin: 0.5em -1px 1em 2.127%;
    text-align: left;
    border: none;
    -webkit-transition: color 0.5s ease;
    transition: color 0.5s ease;
    color: #4D4D4D;
}

ul.sub-page-list > li.box-spot:hover {
    color: var(--color-a);
}

ul.sub-page-list > li.box-spot:nth-child(3n+1) {
    margin-left: 0px;
    clear: left;
}

ul.sub-page-list > li.box-spot a {
    color: inherit;
}

ul.sub-page-list > li.box-spot i {
    font-size: 32px;
    margin: -4px 10px 0px 0;
    text-align: center;
    width: 32px;
    height: 32px;
    color: inherit;
}

ul.sub-page-list > li.box-spot .ico, ul.sub-page-list > li.box-spot .ico i, ul.sub-page-list > li.box-spot i:not([class*="icon-"]) {
    color: inherit;
}

ul.sub-page-list > li.box-spot i:not([class*="ico"]):before {
    content: "\e97e";
    font-size: 32px;
    color: #CACACA;
}

ul.sub-page-list > li.box-spot svg, ul.sub-page-list > li.box-spot img {
    width: auto !important;
    height: auto !important;
    max-width: 48px !important;
    max-height: 48px !important;
}

UL.sub-page-list > LI.box-spot svg path {
    fill: #4D4D4D;
}

li.box-spot .title {
    display: block;
    font-size: 1.3em;
    margin-left: 35px;
    font-weight: normal;
    margin: -4px 0px 0.5em 42px;
}

li.box-spot h3 {
    color: inherit;
}

li.box-spot .spot {
    display: block;
    font-size: 0.9em;
    color: #000000;
}

ul.sub-page-list > li.box-spot a:hover {
    background-color: transparent;
    color: inherit;
}

/*sub-page.box-resimli*/
ul.sub-page-list > li.box-large {
    padding: 0;
    width: 33.3333333%;
    float: left;
    margin: 1px 0 0 -1px;
    text-align: left;
    border: none;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    border-left: 1px solid #FFFFFF;
    position: relative;
}

ul.sub-page-list > li.box-large:nth-child(3n+1) {
    clear: left;
}

ul.sub-page-list > li.box-large i {
    font-size: 90px;
    width: 100%;
    height: 170px;
    line-height: 122px;
    overflow: hidden;
    margin: 0px;
    padding: 0px;
    background-color: #E7E7E7;
    -webkit-transition: line-height 0.6s ease;
    transition: line-height 0.6s ease;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

ul.sub-page-list > li.box-large i:not([class*="ico"]):before {
    content: "\e97e";
    font-size: inherit;
    color: #979797;
}

ul.sub-page-list > li.box-large a {
    display: block;
    padding: 0px;
    margin: 0px;
}

ul.sub-page-list li.box-large h3 {
    font-size: 1em;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0px;
    padding: 0;
    width: 100%;
    height: 33%;
    background-color: rgb(125, 125, 125);
    background-color: rgba(0, 0, 0, 0.6);
    color: #FFFFFF;
    cursor: pointer;
    text-shadow: 1px 1px 1px #000000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

ul.sub-page-list li.box-large h3 span {
    display: block;
    margin: 10px;
    font-weight: normal;
}

ul.sub-page-list > li.box-large:hover h3 {
    padding-bottom: 0;
    height: 100%;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.4);
    font-size: 1.2em;
}

ul.sub-page-list > li.box-large:hover i {
    line-height: 200px;
}

/*search*/
.search-ice .arama-form {
    margin: 1em 0;
    border-bottom: 1px solid #E8E8E8;
    padding: 0 0 1em 0;
}

.search-ice .arama-form > .body {
    border: 1px solid #DDDDDD;
    max-width: 500px;
    /*+border-radius: 10px;*/
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px;
    padding: 10px;
}

.search-ice .arama-form input.q {
    border: none;
    width: calc(100% - 45px);
    font-size: 1.3em;
    font-weight: 700;
    padding: 5px;
    box-shadow: none !important;
    margin: 0;
}

.search-ice .arama-form button.go {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.search-ice .arama-form button.go .icn {
    width: 25px;
    height: 30px;
    margin: -8px 0 0;
    vertical-align: middle;
    padding: 5px;
}

.search-ice .search-res .item {
    margin: 0 0 2em 0;
}

.search-ice .search-res .item h5 {
    margin: 0.1em 0;
    font-size: 1.4em;
}

.search-ice .search-res .item .spot {
    margin: 0;
    color: #5D5D5D;
}

.search-ice .search-res .item .cat {
    font-size: 0.9em;
    color: #717171;
}

/*form*/
.form-error, .form-error ul, .form-error ul li {
    margin: 0px;
    padding: 0px;
    list-style: none;
    color: #CA0000;
    border-left-color: var(--color-alert);
    font-weight: normal;
    font-style: normal;
}

ul.form-error li {
    margin: -5px 0px 0px;
    border-left-color: var(--color-alert);
    padding: 5px 0 0;
}

#fwntf-cont .form-all-error li {
    list-style: none;
    margin: 3px 0;
    padding: 0;
}

#fwntf-cont .form-all-error li .t {
    font-weight: 600;
}

/*hazır elemanlar*/
._alert, .alert, ._info, .info, .gri-kutu, ._gri-kutu, .warn {
    margin: 0.5em 0;
    padding: 1em;
    border-left: 0.5em solid var(--color-alert);
    color: var(--color-alert);
    background-color: var(--color-alert-bg);
    border-radius: 4px;
}


._info, .info {
    border-color:var(--color-info);
    color: rgba(0, 0, 0, 0.569);
    text-shadow: 0 0 0 var(--color-info);
    background-color: var(--color-info-bg);
}

.warn {
    border-color:var(--color-warn);
    color: rgba(0, 0, 0, 0.569);
    text-shadow: 0 0 0 var(--color-warn);
    background-color: var(--color-warn-bg);
}

.alert a, .info a, .gri-kutu a, .warn a {
    color: inherit !important;
}

.alert a:hover, .info a:hover, .gri-kutu a:hover, .warn a:hover {
    text-decoration: underline;
}

.alert > * {
    color: var(--color-alert);
    margin: 0 0 0.3em 0;
}
.info > * {
    color: var(--color-info);
    margin: 0 0 0.3em 0;
}
.warn > * {
    color: var(--color-warn);
    margin: 0 0 0.3em 0;
}


.gri-kutu, ._gri-kutu {
    border: 1px solid #CCC;
    background-color: #F3F3F3;
    color: #000;
}

.note, ._note {
    font-size: 0.9em;
    color: #777;
    font-weight: normal;
}

p._headline, p.headline {
    font-size: 1.25rem;
    font-weight: 200;
}

a._button {
}

.button, a.button:link, a.button:visited, a[class*=button-] {
    font-size: 1em;
    display: inline-block;
    padding: 10px 25px;
    font-weight: normal;
    color: #FFF;
    border: none;
    background-color: var(--color-a);
    margin: 0 0 0.2em 0;
}

.button:hover {
    box-shadow: inset 0px 2px 10px 0 rgba(0, 0, 0, 0.236);
}

a.button:link, a.button:visited {
    display: inline-block;
}

.button-small {
    padding: 5px 15px !important;
    font-size: 0.85em !important;
}

.button-secondary {
    background-color: var(--color-b) !important;
}

.button-success {
    background-color: var(--color-success) !important;
}

.button-warning {
    background-color: var(--color-warn) !important;
}

.button-alert {
    background-color: var(--color-alert) !important;
}

[class*=button] [class*=icon] {
    font-size: 1.5em;
}

/*Tablolar*/
table._tablo01, .tablo01 {
    border-collapse: collapse;
    margin: 1em 0;
}

.tablo01 td, .tablo01 th {
    margin: 0;
    padding: 0.3em 0.7em;
    border: 1px solid #DADADA;
    background-color: #FFF;
    font-weight: normal;
}

.tablo01 th {
    font-weight: bold;
    color: #000;
    vertical-align: top;
    background-color: #F4F4F4;
}

table._tablo02, .tablo02 {
    border-collapse: collapse;
    margin: 1em 0;
}

.tablo02 td, .tablo02 th {
    margin: 0;
    padding: 0.3em 0.7em;
    border-bottom: 1px solid #DADADA;
    background-color: #FFF;
    font-weight: normal;
}

.tablo02 th {
    font-weight: 500;
    color: #000;
    vertical-align: top;
    background-color: #F7F7F7;
    border-top: 1px solid #DADADA;
    vertical-align: middle;
}

.tablo02 td:nth-child(2n+1) {
    background-color: #F4F4F4;
}

table._tablo03, .tablo03 {
    border-collapse: collapse;
    margin: 1em 0;
}

.tablo03 td, .tablo03 th {
    padding: 0.3em 0.7em;
    border-bottom: 1px dotted #C1C1C1;
}

.tablo03 th {
    font-weight: bold;
    color: #000;
    vertical-align: top;
    background-color: #FBFAFA;
    border-right: 1px solid #E8E5E5;
}

.tablo03 tr td:first-of-type, .tablo03 tr th:first-of-type {
    padding-left: 0;
}

table._tablo-kucuk, .tablo-kucuk {
    border-collapse: collapse;
    margin: 1em 0;
}

.tablo-kucuk td, .tablo-kucuk th {
    border: 1px solid #DCDCDC;
    font-size: 0.9em;
    padding: 0.1em;
}

.tablo-kucuk th {
    background-color: #F2F1F1;
    font-weight: bold;
    font-size: 11px;
}

table[class*="tablo-a"] {
    border-collapse: collapse;
    margin: 0.5em 0 1em;
}

table[class*="tablo-a"] th, table[class*="tablo-a"] td {
    padding: 1em 2em 1em 0;
    text-align: left;
    font-weight: 400;
    border-bottom: 2px solid #F2F5F7;
    border-top: 2px solid #F2F5F7;
    vertical-align: top;
    background-color: #FFFFFF;
}

.tablo-a th {
    font-weight: 500;
}

table.tablo-a-1 th {
    background-color: rgba(252, 252, 252, 0.533);
    padding-left: 1em;
    padding-right: 1em;
    border-color: rgba(0, 0, 0, 0.040);
}

table.tablo-a-1 td {
    padding-left: 1em;
    padding-right: 1em;
    margin-right: 0;
}

/*Listeler*/
ul._liste01, ol._liste01, .liste01 {
    margin: 3px 0;
    padding: 0;
}

.liste01 ul {
    margin: 2px 0 5px 5px;
    padding: 0;
}

.liste01 li {
    margin: 0;
    padding: 3px 0 3px 20px;
    list-style: none;
}

.liste01 li:before {
    content: "\e75c";
    font-family: 'icobase';
    display: inline-block;
    margin-left: -20px;
    width: 20px;
    vertical-align: middle;
}

ul._liste02, ol._liste02, .liste02 {
    margin: 3px 0;
    padding: 0;
}

.liste02 ul {
    margin: 2px 0 5px 5px;
    padding: 0;
}

.liste02 li {
    margin: 0;
    padding: 3px 0 3px 20px;
    list-style: none;
}

.liste02 li:before {
    content: "\e736";
    font-family: 'icobase';
    font-size: 14px;
    display: inline-block;
    margin-left: -20px;
    width: 20px;
    vertical-align: middle;
}

ul._liste03, ol._liste03, .liste03 {
    margin: 3px 0;
    padding: 0;
}

.liste03 ul {
    margin: 2px 0 5px 5px;
    padding: 0;
}

.liste03 li {
    margin: 0;
    padding: 3px 0 3px 20px;
    list-style: none;
}

.liste03 li:before {
    content: "\e833";
    font-size: 13px;
    font-family: 'icobase';
    display: inline-block;
    margin-left: -20px;
    width: 20px;
    vertical-align: middle;
    margin-top: -2px;
}

ul._liste04, ol._liste04, .liste04 {
    margin: 5px 0;
    padding: 0;
    font-size: 0.925rem;
}

.liste04 ul {
    margin: 2px 0 5px 5px;
    padding: 0;
}

.liste04 li {
    margin: 0;
    padding: 5px 0 5px 25px;
    list-style: none;
}

.liste04 li:before {
    content: "\ea90";
    font-size: 16px;
    font-family: 'icobase';
    display: inline-block;
    margin-left: -25px;
    width: 25px;
    vertical-align: middle;
    margin-top: -4px;
}

ul._liste05, ol._liste05, .liste05 {
    margin: 5px 0;
    padding: 0;
    font-size: 0.975rem;
}

.liste05 ul {
    margin: 2px 0 5px 5px;
    padding: 0;
}

.liste05 li {
    margin: 0;
    padding: 5px 0 5px 25px;
    list-style: none;
}

.liste05 li:before {
    content: "\eb27";
    font-size: 16px;
    font-family: 'icobase';
    display: inline-block;
    margin-left: -25px;
    width: 25px;
    vertical-align: middle;
    margin-top: -4px;
}

ul._liste06, ol._liste06, .liste06, .liste06 li, .liste06 ul {
    margin: 5px 0;
    padding: 0;
    font-size: 1rem;
}

.liste06 li {
    margin: 0;
    padding: 3px 0 3px 25px;
    list-style: none;
}

.liste06 li:before {
    content: "\e7bd";
    font-family: 'icobase';
    font-size: 16px;
    display: inline-block;
    margin-left: -25px;
    width: 25px;
    vertical-align: middle;
}

ul._liste07, ol._liste07, .liste07 {
    margin: 1em 0;
    padding: 0;
}

.liste07 ul {
    margin: 2px 0 5px 5px;
    padding: 0;
}

.liste07 li {
    margin: 0 0 -1px 0;
    padding: 8px 0 8px 15px;
    list-style: none;
    border-bottom: 1px solid #E4E4E4;
    border-top: 1px solid #E4E4E4;
}

/* paginator */
.pages span, .pages a:link, .pages a:visited {
    padding: 10px 14px;
    margin-right: 5px;
    margin-bottom: 5px;
    line-height: 100%;
    display: inline-block;
    font-size: 1em;
    color: #606060;
    /*+border-radius: 20px;*/
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    -khtml-border-radius: 20px;
    border-radius: 20px;
}

.pages a:hover {
    background-color: rgba(0, 0, 0, 0.074);
}

.pages span {
    background-color: #E2E2E2;
    color: #000000;
    font-weight: 800;
}

/*notifybox v2*/
#fwntf-cont {
    position: fixed;
    top: -100px;
    opacity: 0;
    z-index: 999999;
    width: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease-out;
    pointer-events: none;
}

#fwntf-cont.show {
    top: 0;
    opacity: 1;
}

.fwntf-msg {
    position: relative;
    max-width: 450px;
    min-width: 320px;
    margin: 8px auto;
    padding: 20px;
    text-align: center;
    background: #FFF4A2;
    border-radius: 7px;
    box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.2);
    cursor: default;
    transition: all 0.5s ease-in;
    pointer-events: all;
    white-space: pre-wrap;
}

.fwntf-msg.closed {
    opacity: 0;
    transform: scale(0.8);
    margin-top: -60px;
}

.fwntf-msg:not(.load):after {
    content: "✖";
    position: absolute;
    top: 5px;
    right: 8px;
    color: rgba(0, 0, 0, 0.4);
}

.fwntf-msg * {
    color: #482D10;
}

.fwntf-msg > .body * {
    margin: 0 0 0.5em 0;
}

.fwntf-msg.err {
    background: #FFD7D7;
}

.fwntf-msg.err * {
    color: #540003;
}

.fwntf-msg.suc {
    background: #D8FFBF;
}

.fwntf-msg.suc * {
    color: #003B23;
}

.fwntf-msg.load {
    background: #EEF5FF;
    border: 3px solid #D3E1FF;
    border-left-width: 1px;
    border-right-width: 1px;
}

.fwntf-msg.load * {
    color: #00283B;
}

.fwntf-msg.load > .body:before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" fill="none" stroke="rgb(79,140,220)" stroke-width="10" r="35" stroke-dasharray="165 50"><animateTransform attributeName="transform" type="rotate" repeatCount="indefinite" dur="1s" values="0 50 50;360 50 50"  keyTimes="0;1"></animateTransform></circle></svg>');
    background-size: contain;
    vertical-align: middle;
    margin-right: 0.6em;
}

.fwntf-msg .body a {
    text-decoration: underline;
    color: #001b9d;
}
/*pop over*/
.popOver {
    border: 1px solid #BFBFBF;
    border-radius: 5px;
    box-shadow: 0px 3px 20px -5px #5D5D5D;
    background-color: #FFFFFF;
    max-width: 600px;
    margin: -5px 10px 0;
    z-index: 100;
}

.popOver .popOver-title {
    background-color: #F7F7F7;
    padding: 0.5em 0.5em 0.5em 1em;
    border-bottom: 1px solid #DCDCDC;
    font-size: 1.2em;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.popOver .popOver-title .popOver-close {
    float: right;
    font-weight: bold;
    font-family: helvetica;
    font-size: 20px;
    color: #BC6363;
    cursor: pointer;
    padding: 0 10px;
}

.popOver .popOver-content {
    margin: 0.5em 1em 1em;
}

.popOver .popOver-footer {
    height: 7px;
    position: relative;
    top: 8px;
    margin-top: -7px;
}

.popOver.pop-right .popOver-footer {
    position: absolute;
    left: -11px;
    top: 50%;
    transform: rotate(90deg);
    margin-top: 0;
}

.popOver.pop-bottom {
    transform: translate(0, 15px);
}

.popOver.pop-bottom .popOver-footer {
    position: absolute;
    left: calc(50% - 7px);
    top: -8px;
    transform: rotate(180deg);
    margin-top: 0;
}

.popOver .popOver-footer .arrow {
    height: 0;
    width: 0;
    margin-left: auto;
    margin-right: auto;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #A7A7A7;
}

.popOver .popOver-footer .arrow-in {
    height: 0;
    width: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #FFFFFF;
    margin-top: -8px;
    margin-left: -7px;
}

.popOver img {
    max-width: 100%;
}

@media print {
    .print-hide, .layout-C .stage-1, .layout-D .stage-1, .layout-D .stage-2, #top, #footer, .footer-bar, .breadcrumbs, .pre-top {
        display: none !important;
    }

    html, body, #wrapper, #wrapper-content, #pbody, #content, .stage-group, .stage, .stage-body, .stage-0, .stage-0 > .body, .stage-0 > .body section > .columns, .stage-0 > .body > * {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0% !important;
        margin: 0 !important;
        padding: 0 !important;
        float: none !important;
    }
}

/*Sizes*/
.size1 {
    width: 3em;
}

.size2 {
    width: 6em;
}

.size3 {
    width: 9em;
}

.size4 {
    width: 12em;
}

.size5 {
    width: 15em;
}

.size6 {
    width: 18em;
}

.size7 {
    width: 21em;
}

.size8 {
    width: 24em;
}

.size9 {
    width: 27em;
}

.size10 {
    width: 30em;
}

.size11 {
    width: 33em;
}

.size12 {
    width: 36em;
}

.size13 {
    width: 39em;
}

.size14 {
    width: 42em;
}

.size15 {
    width: 45em;
}

.size16 {
    width: 48em;
}

.size17 {
    width: 51em;
}

.size18 {
    width: 54em;
}

.size19 {
    width: 60em;
}

.size20 {
    width: 66em;
    max-width:100%;
}

.size21 {
    width: 72em;
}

.size-full {
    width: 100%;
   box-sizing: border-box;
}
