:root
{
    --white: #fbfbfb;
    --dark: #333333;
    --green: rgba(40, 174, 103, 1);
    --red: #dc4141;
    --redNight: #931515;

    --blueLight: #2699fb;
    --blueNight: #00025a;

    --greyLight: #8f8f8f;
    --greyNight: #7d7d7d;

    --bgBlue: #0E77AF;


    --bgGreenLight: rgba(40, 174, 103, 0.3);
    --bgBlueLight: rgba(38, 153, 251, .25);
    --bgBlueNight: rgba(14, 119, 175, .7);
    --textGreyLight: #7e7e7e;
    --bgGreyLight: #f2f2f2;
    --bgGreyNight: #ebebeb;

    --shadowLight: rgba(0, 0, 0, 0.4);

    --border: #e1e4e6;
    --borderNight: #cccccc;

    --WidthSource: 1665px;
    --WidthMiddle: 1470px;
    --WidthMiddleSmall: 1335px;
    --WidthSmall: 1230px;
    --WidthVerySmall: 900px;
    --WidthForm: 750px;
    --WidthAuthRegForm: 630px;
}
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body
{
    width: 100%;
}
body
{
    height: 100%;
    overflow-x: hidden;
    color: var(--dark);
    font: normal 14px SansSerif, sans-serif;
}

/* -#------#- -#------#- -#------#- COMMON STYLE -#------#- -#------#- -#------#- */
/* -#------#- -#------#- SCROLL BAR-#------#- -#------#- */
.mlScrollbar::-webkit-scrollbar
{
    background: var(--bgGreyLight);
}
.mlScrollbar.middle::-webkit-scrollbar
{
    width: 8px;
}
.mlScrollbar.small::-webkit-scrollbar
{
    width: 5px;
}
.mlScrollbar::-webkit-scrollbar-thumb
{
    background: var(--blueLight);
    border-radius: 10px;
}
.mlScrollbar::-webkit-scrollbar-thumb:hover
{
    background: var(--blueNight);
    border-radius: 10px;
}

.breadScrollbar::-webkit-scrollbar
{
    background: var(--bgGreyLight);
}
.breadScrollbar.middle::-webkit-scrollbar
{
    height: 8px;
}
.breadScrollbar.small::-webkit-scrollbar
{
    height: 5px;
}
.breadScrollbar::-webkit-scrollbar-thumb
{
    background: var(--blueLight);
    border-radius: 10px;
}
.breadScrollbar::-webkit-scrollbar-thumb:hover
{
    background: var(--blueNight);
    border-radius: 10px;
}
/* -#------#- WIDTH AND COLUMN -#------#- */
.widthPage
{
    display: flex;
    justify-content: center;
    width: 100%;
}
.widthPage.column
{
    align-items: center;
    justify-content: unset;
    flex-direction: column;
}
.widthSource
{
    width: 100%;
    max-width: var(--WidthSource);
}
.widthMiddle
{
    width: 100%;
    max-width: var(--WidthMiddle);
}
.widthSmall
{
    width: 100%;
    max-width: var(--WidthSmall);
}
.widthVerySmall
{
    width: 100%;
    max-width: var(--WidthVerySmall);
}
.widthForm
{
    width: 100%;
    max-width: var(--WidthForm);
}
.widthAuthRegForm
{
    width: 100%;
    max-width: var(--WidthAuthRegForm);
}
.widthMiddleSmall
{
    width: 100%;
    /* max-width: var(--WidthMiddleSmall); */
}
.twoRow
{
    display: flex;
    justify-content: space-between;
}
svg.clWhite
{
    color: white !important;
}
.clRed
{
    color: var(--red);
}
/* -#------#- LOGOTYPE -#------#- */
.logotype
{
    height: 100%;
}
.logotype,
.logotype a
{
    display: flex;
    align-items: center;
}
.logotype .mlLazyLoad
{
    width: 100px;
    height: 100px;
}
.logotype img
{
    height: 100px;
    margin-right: 14px;
}
.logotype h1,
.logotype h2
{
    color: var(--white);
    font-weight: bold;
}
.logotype h1
{
    font-size: 24px;
    text-shadow: 0 0 4px #1760BE;
}
.logotype h2
{
    font-size: 16px;
}
/* -#------#- OTHER CLASS -#------#- */
.blueName
{
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 35px;
    /*line-height: 35px;*/
    padding: 0 20px;
    /*background: var(--blueLight);*/
    /*overflow: hidden;*/
    /*text-overflow: ellipsis;*/
    /*display: -webkit-box;*/
    /*-webkit-box-orient: vertical;*/
    /*-webkit-line-clamp: 1;*/
}
.blueName.longName
{
    height: unset;
    min-height: 35px;
}
.blueName.box
{
    justify-content: space-between;
}
.blueName > h2,
h2.blueName
{
    /*color: var(--white);*/
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 1px;
	color:#214e90;

}
.blueName a
{
    /*color: var(--blueNight);*/
    font-size: 12px;
    letter-spacing: 1px;
}
.blueName .icon
{
    display: none;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    transition: .3s;
    /*color: var(--white);*/
    color: var(--blueLight);
}
.blueName .text
{
    color: var(--white);
    white-space: nowrap;
}
.blueName button
{
    display: none;
}
.mlMobileActive .blueName button
{
    display: flex;
}
.blueName .icon:hover
{
    color: var(--dark);
}
.blueName .icon svg
{
    width: 35px;
    height: 35px;
    pointer-events: none;
}
.dateSmall
{
    color: var(--greyLight);
    font-weight: bold;
    font-size: 12px;
    margin: 0 0 10px 0;
}
.alignEnd
{
    display: flex;
    align-items: flex-end;
}
.alignStart
{
    display: flex;
    align-items: flex-start;
}
.flexEnd
{
    display: flex;
    justify-content: flex-end;
}
.flexStart
{
    display: flex;
    justify-content: flex-start;
}
.flexCenter
{
    display: flex;
    justify-content: center;
}
.bgGreyLight
{
    /*background: var(--bgGreyLight);*/
    background: #fff;
}
.bgGreyNight
{
    background: var(--bgGreyNight);
}
.bgWhite
{
    background: white;
}
.mainBlueLink
{
    display: block;
    padding: 10px 20px;
    background: var(--blueLight);
    color: white;
    transition: .3s;
    font-size: 13px;
    letter-spacing: 1px;
}
.mainBlueLink:hover
{
    background: var(--blueNight);
    color: var(--white);
}
.underLink a
{
    position: relative;
    padding: 0 2px 2px 2px;
}
.underLink a:before
{
    content: '';
    width: 0;
    height: 2px;
    background: var(--white);
    transition: .3s ease-in-out;
    position: absolute;
    left: 0;
    bottom: 0;
}
.underLink a:hover:before
{
    width: 100%;
}
.button
{
    transition: .3s;
    border-radius: 4px;
    box-shadow: 0 2px 4px 1px #dddce2;
}
.button:hover
{
    cursor: pointer;
}
.buttonPrimary
{
    background: var(--blueLight);
    color: var(--white);
}
.buttonPrimary:hover
{
    background: var(--blueNight);
    color: var(--white);
}
.buttonPrimary:active
{
    background: var(--bgBlueNight);
}
.buttonGrey
{
    background: var(--bgGreyLight);
    color: var(--dark);
}
.buttonGrey:hover
{
    background: var(--bgGreyNight);
}
.buttonDanger
{
    background: var(--red);
}
.buttonDanger:hover
{
    background: var(--redNight);
}
.buttonDanger:active
{
    background: var(--bgBlueNight);
}
.noWrap
{
    white-space: nowrap;
}
.lowercase
{
    text-transform: lowercase;
}
.lowercase:first-letter
{
    text-transform: uppercase;
}
.noPointer
{
    pointer-events: none;
    user-select: none;
}
.hide
{
    display: none !important;
}
svg.check
{
    width: 16px;
    height: 16px;
    color: var(--green);
}
svg.checkX
{
    width: 16px;
    height: 16px;
    color: var(--red);
}
/* -#------#- -#------#- -#------#- MARGIN PADDING -#------#- -#------#- -#------#- */
.mB1
{
    margin-bottom: 10px;
}
.mB2
{
    margin-bottom: 20px;
}
.mB3
{
    margin-bottom: 30px;
}
.mB6
{
    margin-bottom: 60px;
}
.mT1
{
    margin-top: 10px;
}
.mT2
{
    margin-top: 20px;
}
.mT3
{
    margin-top: 30px;
}
.mT6
{
    margin-top: 60px;
}
.articlePadding
{
    padding: 30px 30px 30px 30px;
}
.formPadding
{
    padding: 30px;
}
.clearFix:after
{
    content: ' ';
    display: block;
    height: 0;
    clear: both;
}
/* -#------#- -#------#- -#------#- MOVE TOP -#------#- -#------#- -#------#- */
#moveTop
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--blueNight);
    transition: .3s;
    position: fixed;
    bottom: -100px;
    right: 20px;
    border: 2px solid var(--blueLight);
    border-radius: 50%;
    background: white;
}
#moveTop:hover
{
    background: var(--bgBlueLight);
    cursor: pointer;
}
#moveTop.active
{
    bottom: 20px;
}
/* -#------#- -#------#- -#------#- COMMON TAG -#------#- -#------#- -#------#- */
a
{
    text-decoration: none;
    color: var(--blueLight);
    transition: .3s;
}
a:hover
{
    color: var(--blueNight);
}
li
{
    list-style: none;
}
button
{
    background: unset;
    outline: unset;
    border: unset;
    cursor: pointer;
}
/* -#------#- -#------#- -#------#- HEADER -#------#- -#------#- -#------#- */
.headerTop
{
    height: 140px;
    background: var(--blueLight);
}
/* -#------#- -#------#- TOP -#------#- -#------#- */
.headerTop > div
{
    display: flex;
    justify-content: space-between;
    position: relative;
}
.headerTop > div > .mapHeader
{
    width: 100%;
    height: 100%;
    opacity: .4;
    filter: drop-shadow(0 0 3px black);
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10;
}
/* -#------#- HEADER RIGHT -#------#- */
.headerRight
{
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 20;
}
.headerRight .textLeft
{
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    margin-right: 86px;
}
.headerRight .textLeft p,
.headerRight .textLeft h2
{
    color: #fcfdff;
    text-shadow: 0 0 4px #1760BE;
}
.headerRight .textLeft p:nth-child(1)
{
    font-style: italic;
    font-size: 15px;
    line-height: 22px;
}
.headerRight .textLeft h2
{
    margin-top: 10px;
    font-weight: normal;
    font-size: 17px;
}
/* -#------#- HEADER TOOL -#------#- */
.headerTool
{
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    height: 100%;
}
.headerTool > div
{
    display: flex;
    align-items: flex-start;
}
/* -#------#- AUTH EMAIL -#------#- */
.headerTool .authEmail
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}
.headerTool .authEmail a
{
    color: var(--white);
    margin-bottom: 4px;
}
.headerTool .authEmail a:hover
{
    color: var(--blueNight);
}
.headerTool .authEmail p
{
    color: var(--blueNight);
}
/* -#------#- DROPDOWN -#------#- */
.headerTool .headerDropdown
{
    position: relative;
}
.headerTool .headerDropdown:nth-child(n+2)
{
    margin-left: 10px;
}
.headerTool .headerDropdown > ul > li
{
    position: relative;
}
.headerTool .buttonHeaderTool,
.headerTool .dropdownContent a
{
    display: flex;
    align-items: center;
    background: var(--white);
    color: var(--blueNight);
    transition: .3s;
}
.headerTool .buttonHeaderTool,
.headerTool .dropdownContent a
{
    display: flex;
    align-items: center;
    background: var(--white);
    color: var(--blueNight);
    transition: .3s;
}
.headerTool .buttonHeaderTool
{
    height: 36px;
    padding: 0 14px;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 0 4px 1px var(--shadowLight);
}
.headerTool .headerDropdown.open .buttonHeaderTool,
.headerTool .buttonHeaderTool:hover,
.headerTool .dropdownContent a:hover,
.headerTool .dropdownContent li.active a
{
    background: var(--border);
}
.headerTool .dropdownContent
{
    min-width: 100%;
    height: 0;
    margin-top: 6px;
    overflow: hidden;
    transition: .3s;
    position: absolute;
    top: 100%;
    border-radius: 4px;
    box-shadow: 0 0 0 0 var(--shadowLight);
    z-index: 1000;
}
.headerTool .headerDropdown.open .dropdownContent
{
    box-shadow: 0 0 4px 1px var(--shadowLight);
}
.headerTool .dropdownContent a
{
    height: 32px;
}
.headerTool .buttonHeaderTool img,
.headerTool .buttonHeaderTool svg,
.headerTool .dropdownContent a img,
.headerTool .dropdownContent a svg
{
    pointer-events: none;
}
/* -#------#- LANGUAGE -#------#- */
#languageTool .dropdownContent
{
    left: 0;
}
#languageTool .dropdownContent a
{
    justify-content: center;
}
#languageTool .buttonHeaderTool img,
#languageTool .dropdownContent a img
{
    width: 16px;
    height: 16px;
    margin-right: 7px;
}
/* -#------#- ACCOUNT -#------#- */
#accountTool .dropdownContent
{
    right: 0;
}
#accountTool .dropdownContent a
{
    justify-content: flex-start;
    padding: 0 14px;
    white-space: nowrap;
}
#accountTool .buttonHeaderTool svg
{
    width: 28px;
    height: 28px;
}
#accountTool .dropdownContent a svg
{
    width: 18px;
    height: 18px;
    margin-right: 7px;
}
/*-#------#- -#------#- NAVIGATION -#------#- -#------#- */
.navigation
{
    padding: 20px 0;
    background: white;
    border-bottom: 1px solid var(--border);
}
.navigation .navMenu > ul
{
    display: flex;
    justify-content: center;
}
/* -#------#- ITEM -#------#- */
.navigation .navMenu ul li
{
    position: relative;
}
.navigation .navMenu .navItem
{
    margin: 0 14px;
}
/* -#------#- LINK -#------#- */
.navigation .navMenu ul li a
{
    display: flex;
    font-weight: bold;
    font-size: 13px;
}
.navigation .navMenu .navItem > .navLink
{
    height: 100%;
}
.navigation .navMenu > ul li .navLink.withIcon .icon
{
    display: none;
}
.navigation .navMenu .navItem > .navLink a,
.navigation .navMenu .navItem > a
{
    display: flex;
    align-items: center;
    height: 100%;
    padding: 14px 10px;
    color: var(--blueNight);
    text-align: center;
    box-shadow: 2px 2px 2px 0 var(--border);
}
.navigation .navMenu .navItem.open > .navLink a,
.navigation .navMenu .navItem > .navLink a:hover,
.navigation .navMenu .navItem > a:hover
{
    background: var(--bgBlueLight);
}
.navigation .navMenu .navItem.active > .navLink a,
.navigation .navMenu .navItem.active > a
{
    background: var(--blueLight);
    color: var(--white);
}
/* -#------#- DROP DOWN -#------#- */
.navigation .dropdown .dropdownContent
{
    height: 0;
    background: white;
    transition: .3s;
    overflow: hidden;
    position: absolute;
    box-shadow: 0 0 5px 0 var(--shadowLight);
    z-index: 1000;
}
/* -#------#- DROP DOWN 1 LEVEL -#------#- */
.navigation .dropdown > .dropdownContent
{
    top: 100%;
    left: 0;
}
.navigation .dropdown.right > .dropdownContent
{
    left: unset;
    right: 0;
}
/* -#------#- DROP DOWN > 2 LEVEL -#------#- */
.navigation .dropdown > .dropdownContent .dropdown .dropdownContent
{
    top: 0;
    left: 100%;
}
.navigation .dropdown.right > .dropdownContent .dropdown .dropdownContent
{
    left: unset;
    right: 100%;
}
/* -#------#- DROP DOWN LINK -#------#- */
.navigation .dropdown .dropdownContent li a
{
    padding: 7px 14px;
    white-space: nowrap;
}
.navigation .dropdownContent li:nth-child(n+2) a
{
    border-top: 1px solid var(--border);
}
.navigation .dropdownContent li.open > .navLink a,
.navigation .dropdownContent li a:hover
{
    background: var(--blueLight);
    color: var(--white);
}
.navigation .navItem .dropdown > .navLink a
{
    position: relative;
}
.navigation .navItem .dropdown > .navLink a:before
{
    content: '';
    width: 3px;
    height: 100%;
    background: var(--blueLight);
    position: absolute;
    left: 0;
    top: 0;
}
/* -#------#- BUTTON -#------#- */
.navigation .navOpenMenu
{
    display: none;
    align-items: center;
    justify-content: flex-end;
    width: 27px;
    height: 19px;
    position: relative;
}
.navigation .navOpenMenu span
{
    height: 3px;
    background: var(--blueLight);
    transition: .3s;
    position: absolute;
    border-radius: 3px;
    pointer-events: none;
}
.navigation .navOpenMenu span:nth-child(1)
{
    width: 16px;
    top: 0;
}
.navigation .navOpenMenu span:nth-child(2)
{
    width: 20px;
}
.navigation .navOpenMenu span:nth-child(3)
{
    width: 24px;
    bottom: 0;
}
.navigation.open .navOpenMenu span,
.navigation .navOpenMenu:hover span
{
    width: 27px;
}
/* -#------#- -#------#- -#------#- MOBILE MODE -#------#- -#------#- -#------#- */
body .mlMobileActive .mlMobileMenu
{
    width: 300px;
    height: 100%;
    background: white;
    transition: .3s;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: -305px;
    border-right: 1px solid var(--border);
    box-shadow: 0 0 4px 0 var(--shadowLight);
    z-index: 1000;
}
body .mlMobileActive.open .mlMobileMenu
{
    left: 0;
}
/* -#------#- -#------#- BACKGROUND -#------#- -#------#- */
.mlMobileActive.open .mlMobileBackground
{
    width: 100%;
    height: 100%;
    background: var(--shadowLight);
    transition: .3s;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999;
}
.mlMobileActive.open .mlMobileBackground
{
    opacity: 1;
    pointer-events: auto;
}
/* -#------#- -#------#- CLOSE BUTTON -#------#- -#------#- */
.mlMobileButton
{
    display: none;
}
.mlMobileActive .mlMobileButton
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 24px;
    margin: 20px;
    transition: .3s;
}
.mlMobileActive .mlMobileButton.close span
{
    width: 24px;
    height: 3px;
    background: var(--blueLight);
    transition: inherit;
    position: absolute;
    border-radius: 3px;
    pointer-events: none;
}
.mlMobileActive .mlMobileButton.close span:first-child
{
    transform: rotate(45deg);
}
.mlMobileActive .mlMobileButton.close span:last-child
{
    transform: rotate(-45deg);
}
.mlMobileActive .mlMobileButton.close:hover
{
    transform: rotate(180deg);
}
/* -#------#- -#------#- -#------#- MAIN SLIDER -#------#- -#------#- -#------#- */
.mainSlider
{
    margin-bottom: 80px;
}
.mainSlider > div
{
    padding: 0 40px;
    position: relative;
}
/* -#------#- -#------#- SLIDE -#------#- -#------#- */
.mainSlider .swiper-slide
{
    display: flex;
    align-items: center;
    justify-content: center;
}
.mainSlider .swiper-slide a
{
    display: flex;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}
.mainSlider .swiper-slide img
{
    width: 320px;
    height: 220px;
    transition: .4s;
}
.mainSlider .swiper-slide a:hover img
{
    transform: scale(1.1);
}
.mainSlider .swiper-slide h2
{
    display: flex;
    align-items: center;
    width: 100%;
    height: 70px;
    padding: 5px 0 0 10px;
    background: var(--bgBlueNight);
    color: white;
    font: normal 20px 'LatoRegular', sans-serif;
    position: absolute;
    left: 0;
    bottom: 0;
    border-bottom: 10px solid var(--bgBlue);
}
/* -#------#- -#------#- ARROW -#------#- -#------#- */
.mainSlider .swiperArrowBox
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.mainSlider .swiperArrowBox > div
{
    display: inherit;
    align-items: inherit;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 -20px;
    color: var(--blueLight);
    outline: none;
}
.mainSlider .swiperArrowBox > div:hover
{
    cursor: pointer;
}
.mainSlider .swiperArrowBox > div svg
{
    width: inherit;
    height: inherit;
    color: inherit;
}
/* -#------#- -#------#- BULLET -#------#- -#------#- */
.swiper-pagination
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 10px;
    left: 0;
}
.swiper-pagination span
{
    width: 10px;
    height: 10px;
    margin: 0 7px;
    background: rgb(125, 125, 125);
    opacity: 1;
}
.swiper-pagination span.swiper-pagination-bullet-active
{
    background: var(--bgBlueNight);
}
.mainSlider .swiper-pagination
{
    bottom: -40px;
}
/* -#------#- -#------#- -#------#- DOUBLE ROW -#------#- -#------#- -#------#- */
/* -#------#- -#------#- TAB ARTICLE -#------#- -#------#- */
.doubleRow .tabArticle
{
    width: calc(100% - 360px);
}
/* -#------#- ARTICLE ITEM -#------#- */
.tabArticle .articleItem
{
    width: calc(100% - 340px);
    position: relative;
}
.tabArticle .articleItem > div
{
    display: none;
    flex-direction: column;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .3s;
}
.tabArticle .articleItem > div.show
{
    opacity: 1;
}
.tabArticle .articleItem > div .img
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 487px;
    max-height: 487px;
}
.tabArticle .articleItem > div .img img
{
    object-fit: contain;
    width: 90%;
    max-height: 400px;
    transition: .3s;
    opacity: 0;
}
.tabArticle .articleItem > div .description
{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}
.tabArticle .articleItem > div .description .text
{
    height: 180px;
    padding-top: 20px;
    overflow: hidden;
}
.tabArticle .articleItem > div .description p
{
    display: block;
    padding: 0 8px;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 1px;
	text-align:justify;
}
.tabArticle .articleItem > div .description a
{
    margin: 0 20px 10px 0;
    font-weight: bold;
    font-size: 15px;
}
/* -#------#- ARTICLE NAVIGATION -#------#- */
.tabArticle .articleNavigation
{
    width: 340px;
}
.tabArticle .articleNavigation section
{
    /*display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: column;*/
    height: 120px;
    /*padding: 20px 35px 10px 20px;*/
    transition: .3s;
    border-bottom: 6px solid rgba(0, 0, 0, 0);
}
.tabArticle .articleNavigation section:nth-child(odd)
{
    background: var(--bgGreyLight);
}
.tabArticle .articleNavigation section:nth-child(even)
{
    background: var(--bgGreyNight);
}
.tabArticle .articleNavigation section:hover
{
    background: var(--bgBlueLight);
    cursor: pointer;
}
.tabArticle .articleNavigation section.active
{
    border-bottom: 6px solid var(--blueLight);
    pointer-events: none;
}
.tabArticle .articleNavigation section *
{
    /*transition: .3s;*/
}
.tabArticle .articleNavigation section a
{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: column;
    padding: 20px 35px 10px 20px;
    pointer-events: none;
}
.tabArticle .articleNavigation section a h3
{
    width: 100%;
    height: 42px;
    overflow: hidden;
    color: var(--dark);
    font-weight: bold;
    text-align: left;
}
.tabArticle .articleNavigation section.active a h3
{
    color: var(--blueLight);
}
.tabArticle .articleNavigation section h3 a
{
    color: var(--dark);
}
.tabArticle .articleNavigation section.active h3 a
{
    color: var(--blueLight);
}
.tabArticle .articleNavigation section.active p
{
    color: var(--greyNight);
}
/*!* -#------#- -#------#- ASIDE COLUMN -#------#- -#------#- *!*/
.doubleRow .asideColumn
{
    width: 280px;
}
/* -#------#- BANNER IMAGE -#------#- */
.bannerImage
{
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 280px;
    background: var(--blueLight);
    overflow: hidden;
    box-shadow: 0 0 4px 1px var(--bgBlueLight);
}
.bannerImage img
{
    padding: 30px 0;
    height: 260px;
}
.bannerImage h2
{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 50px;
    background: rgb(43, 144, 220);
    color: var(--white);
    position: relative;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    z-index: 10;
}
.bannerImage h2:before,
.bannerImage h2:after
{
    content: '';
    width: 105%;
    height: 100%;
    background: rgb(43, 144, 220);
    position: absolute;
    z-index: -1;
}
.bannerImage h2:before
{
    transform: rotate(6deg);
}
.bannerImage h2:after
{
    transform: rotate(-6deg);
}
/* -#------#- -#------#- -#------#- ONLY ARTICLE ROW -#------#- -#------#- -#------#- */
/* -#------#- -#------#- NEWS PAGE -#------#- -#------#- */
.onlyArticleRow .newsPage .img
{
    display: flex;
    position: relative;
    overflow: hidden;
}
.onlyArticleRow .newsPage .img:before
{
    content: '';
    width: 100%;
    height: 100%;
    background: var(--blueLight);
    transition: opacity .3s;
    opacity: 0;
    position: absolute;
}
.onlyArticleRow .newsPage .img:hover:before
{
    cursor: pointer;
    opacity: .4;
}
.onlyArticleRow .newsPage .img img
{
    width: 100%;
    border: 1px solid var(--border);
}
/* -#------#- textImage -#------#- */
.onlyArticleRow .newsPage .textImage p
{
    line-height: 20px;
    /*margin-bottom: 10px;*/
    /*padding-top: 30px;*/
    //text-align: right;
	text-align:justify;
    /*font-style: italic*/
}
.onlyArticleRow .newsPage .textImage .img
{
    /*width: 500px;*/
    margin: 0 20px 5px 0;
    float: left;
}
/* -#------#- gridImage -#------#- */
.onlyArticleRow .newsPage .gridImage
{
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 20px 0;
    border-top: 2px solid var(--bgBlueLight);
}
.onlyArticleRow .newsPage .gridImage .img
{
    width: calc(100% / 4 - 20px);
    min-width: 220px;
    margin: 0 10px 20px 10px;
}
/* -#------#- -#------#- -#------#- IMAGE GALLERY -#------#- -#------#- -#------#- */
.mlImageGallery
{
    display: none;
    width: 100%;
    height: 100%;
    background: var(--bgBlueNight);
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
.mlImageGallery.show
{
    display: block;
}
.mlImageGallery .innerBox
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100%;
}
.mlImageGallery .closeBox
{
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.mlImageGallery .closeBox .closeButton
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
    background: var(--red);
    position: relative;
    border: 2px solid var(--border);
    border-radius: 4px;
    box-shadow: 0 0 4px 1px var(--dark);
}
.mlImageGallery .closeBox .closeButton:hover
{
    cursor: pointer;
}
.mlImageGallery .closeBox .closeButton:before,
.mlImageGallery .closeBox .closeButton:after
{
    content: '';
    width: 16px;
    height: 3px;
    transition: .3s;
    position: absolute;
    background: var(--white);
    border-radius: 3px;
}
.mlImageGallery .closeBox .closeButton:before
{
    transform: rotate(45deg);
}
.mlImageGallery .closeBox .closeButton:after
{
    transform: rotate(-45deg);
}
.mlImageGallery .closeBox .closeButton:hover:before,
.mlImageGallery .closeBox .closeButton:hover:after
{
    transform: scale(1.2);
}
.mlImageGallery .centerBox
{
    margin: 15px;
}
.mlImageGallery .centerBox .image
{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    min-height: 200px;
    padding: 15px;
    background: white;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 4px 1px var(--dark);
}
.mlImageGallery .centerBox .image img
{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.mlImageGallery .centerBox .image .lazyLoad
{
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.mlImageGallery .centerBox .image .lazyLoad.show
{
    display: flex;
}
.onlyArticleRow .newsPage .gridImage
{
    justify-content: center !important;
}
/* -#------#- -#------#- -#------#- BREADCRUMBS -#------#- -#------#- -#------#- */
.breadcrumbs
{
    margin-top: 10px;
    margin-bottom: 20px;
}
.breadcrumbs ul
{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /*flex-wrap: nowrap;*/
}
.breadcrumbs ul li a
{
    display: flex;
    align-items: center;
}
.breadcrumbs ul li:last-child a
{
    color: var(--blueNight);
    pointer-events: none;
    /*overflow: hidden;*/
    /*text-overflow: ellipsis;*/
    /*display: -webkit-box;*/
    /*-webkit-box-orient: vertical;*/
    /*-webkit-line-clamp: 1;*/
}
.breadcrumbs ul li a svg.home
{
    width: 24px;
    height: 24px;
    margin-right: -2px;
}
.breadcrumbs ul li:nth-child(n+2) a svg
{
    width: 17px;
    height: 17px;
    margin: 0 8px;
}
/* -#------#- -#------#- -#------#- INDEX LINK ROW -#------#- -#------#- -#------#- */
.indexLinkRow ul li:nth-child(n+2)
{
    margin-top: 20px;
}
/* -#------#- -#------#- -#------#- MEDIA COMMON -#------#- -#------#- -#------#- */
/* -#------#- -#------#- MEDIA GRID -#------#- -#------#- */
.mediaGalleryRow .mediaGrid,
.mediaViewRow .mediaGrid
{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 20px 0 20px;
}
.mediaViewRow .mediaGrid .bgGreyLight
{
    border: 1px solid var(--border);
    border-radius: 4px;
}
/* -#------#- -#------#- -#------#- MEDIA GALLERY ROW -#------#- -#------#- -#------#- */
/* -#------#- MEDIA GALLERY FORM -#------#- */
.mediaGalleryForm
{
    width: 300px;
}
.mediaGalleryForm.greyForm label
{
    margin-bottom: 4px;
}
.mediaGalleryForm .doubleForm .formGroup
{
    width: calc(50% - 10px);
}
.mediaGalleryForm .doubleForm .formGroup:nth-child(2n)
{
    margin-left: 20px;
}
.mediaGalleryForm .doubleForm [type='date']
{
    padding: 10px;
}
.mediaGalleryForm .submitForm
{
    justify-content: flex-start;
}
.mediaGalleryForm .submitForm button
{
    padding: 10px 25px;
}
/* -#------#- MEDIA GALLERY ITEM -#------#- */
.mediaGalleryItem
{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 320px);
}
.mediaGalleryItem > div
{
    display: flex;
    flex-wrap: wrap;
    width: 80%;
}
.mediaGalleryItem section
{
    width: calc(50% - 10px);
    padding: 6px;
    background: white;
    transition: .3s;
    border: 1px solid var(--border);
    border-radius: 4px;
}
.mediaGalleryItem section:nth-child(2n)
{
    margin-left: 20px;
}
.mediaGalleryItem section:nth-child(n+3)
{
    margin-top: 20px;
}
.mediaGalleryItem section:hover
{
    box-shadow: 0 0 3px 1px #dddce2;
}
.mediaGalleryItem section img
{
    width: 100%;
    height: 180px;
    object-fit: contain;
}
.mediaGalleryItem section > span
{
    display: flex;
    justify-content: flex-start;
    margin: 6px 0 0 -6px;
}
.mediaGalleryItem section span > span
{
    display: flex;
    align-items: center;
    height: 22px;
    padding: 0 4px;
    background: var(--border);
    border-radius: 0 4px 0 0;
}
.mediaGalleryItem section span > span svg
{
    width: 18px;
    height: 18px;
    color: var(--blueNight);
}
.mediaGalleryItem section span > span svg.imageIcon
{
    margin-right: 4px;
}
.mediaGalleryItem section h3
{
    min-height: 43px;
    margin: 0 -6px;
    padding: 3px 14px 0 14px;
    border-top: 1px solid var(--border);
}
.mediaGalleryItem section h3 a
{
    font-size: 14px;
}
/* -#------#- -#------#- -#------#- MEDIA VIEW ROW -#------#- -#------#- -#------#- */
/* -#------#- MEDIA VIEW CONTENT [ IMAGE ] -#------#- */
.mediaViewContent
{
    width: calc(100% - 320px);
}
.mediaViewContent .gallery-top
{
    height: 350px;
    padding: 10px;
}
.mediaViewContent .mlLazyLoad
{
    width: 100%;
    height: 100%;
}
.mediaViewContent .mlLazyLoad img
{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.mediaViewContent .gallery-top .swiper-button-prev,
.mediaViewContent .gallery-top .swiper-button-next
{
    width: 60px;
    height: 60px;
    margin-top: calc(-1 * 60px / 2);
}
.mediaViewContent .gallery-top .swiper-button-prev:after,
.mediaViewContent .gallery-top .swiper-button-next:after
{
    content: unset;
}
.mediaViewContent .gallery-top .swiper-button-prev svg,
.mediaViewContent .gallery-top .swiper-button-next svg
{
    width: 60px;
    height: 60px;
}
.mediaViewContent .swiper-pagination-fraction
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: unset;
    min-width: 60px;
    height: 46px;
    background: white;
    position: absolute;
    top: 0;
    right: 0;
    bottom: unset;
    left: unset;
    border-left: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-radius: 0 4px 0 4px;
    z-index: 10;
}
.mediaViewContent .swiper-pagination-fraction span:first-child
{
    margin-right: 4px;
}
.mediaViewContent .swiper-pagination-fraction span:last-child
{
    margin-left: 4px;
}
.mediaViewContent .swiper-button-fullscreen
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 46px;
    background: white;
    transition: .3s;
    position: absolute;
    bottom: 0;
    right: 0;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    border-radius: 4px 0 0 0;
    z-index: 1000;
}
.mediaViewContent .swiper-button-fullscreen:hover
{
    background: var(--bgBlueLight);
    cursor: pointer;
}
.mediaViewContent .swiper-button-fullscreen svg
{
    width: 26px;
    height: 26px;
    transition: .3s;
    color: var(--blueNight);
}
.mediaViewContent .swiper-button-fullscreen:hover svg
{
    transform: rotate(5deg) scale(1.3);
}
.mediaViewContent .swiper-button-fullscreen .fullscreenExitIcon
{
    display: none;
}
.mediaSlider.fullscreen
{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
.mediaSlider.fullscreen .gallery-top
{
    height: calc(100% - 121px);
}
.mediaSlider.fullscreen .fullscreenIcon
{
    display: none;
}
.mediaSlider.fullscreen .fullscreenExitIcon
{
    display: block;
}
.mediaViewContent .gallery-thumbs
{
    padding: 10px;
    border-top: 1px solid var(--border);
}
.mediaViewContent .gallery-thumbs .swiper-slide
{
    height: 100px;
    background: white;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 4px;
}
.mediaViewContent .gallery-thumbs .swiper-slide:hover
{
    cursor: pointer;
}
.mediaViewContent .gallery-thumbs .swiper-slide:before
{
    content: '';
    width: 100%;
    height: 100%;
    background: var(--dark);
    transition: .3s;
    opacity: .6;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
}
.mediaViewContent .gallery-thumbs .swiper-slide:hover:before,
.mediaViewContent .gallery-thumbs .swiper-slide-thumb-active:before
{
    opacity: 0;
}
.mediaViewContent .mediaText
{
    padding: 10px;
}
.mediaViewContent .mediaText p
{
    line-height: 20px;
}
.mediaViewContent .mediaText p:nth-child(n+2)
{
    margin-top: 10px;
}
/* -#------#- MEDIA VIEW CONTENT [ VIDEO ] -#------#- */
.mediaViewContent .mediaVideo
{
    height: 450px;
    padding: 10px;
}
.mediaViewContent .mediaVideo video
{
    width: 100%;
    height: 100%;
}
/* -#------#- MEDIA VIEW DESCRIPTION -#------#- */
.mediaViewDescription
{
    width: calc(300px);
    padding: 20px;
    background: white;
    border-radius: 4px;
    box-shadow: inset 0 0 2px 1px var(--borderNight);
}
.mediaViewDescription .firstSmall p:first-child
{
    margin-bottom: 6px;
    color: var(--greyLight);
    font-weight: bold;
    font-size: 12px;
}
/* -#------#- -#------#- -#------#- CIRCLE ROW -#------#- -#------#- -#------#- */
.circleRow
{
    padding: 60px 0;
}
.circleRow > div
{
    position: relative;
}
.circleRow .swiper-pagination
{
    position: relative;
    bottom: 0 !important;
}
/* -#------#- -#------#- DESKTOP -#------#- -#------#- */
.circleRow .swiper-wrapper
{
    justify-content: center;
}
.circleRow .swiper-slide
{
    width: 130px;
}
.circleRow .swiper-slide:nth-child(n+2)
{
    margin-left: 70px;
}
/* -#------#- -#------#- ITEMS -#------#- -#------#- */
.circleRow .swiper-slide
{
    padding: 10px 0;
}
.circleRow .swiper-slide > a
{
    display: block;
    width: 130px;
}
.circleRow .swiper-slide .img
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 130px;
    transition: .3s;
    position: relative;
    background: var(--blueLight);
    border-radius: 50%;
}
.circleRow .swiper-slide.active .img
{
    background: white;
    box-shadow: 0 0 10px 1px var(--border);
}
.circleRow .swiper-slide.active .img .iconICircle,
.circleRow .swiper-slide.active .img svg *
{
    fill: var(--blueLight);
}
.circleRow .swiper-slide:hover .img
{
    box-shadow: 0 0 10px 1px var(--border);
}
.circleRow .swiper-slide .img img,
.circleRow .swiper-slide .img svg,
.circleRow .swiper-slide .img .iconICircle
{
    transition: .3s;
}
.circleRow .swiper-slide:hover .img img,
.circleRow .swiper-slide:hover .img svg,
.circleRow .swiper-slide:hover .img .iconICircle
{
    transform: scale(1.2);
}
.circleRow .swiper-slide h2
{
    margin-top: 20px;
    color: var(--dark);
    font-size: 15px;
    text-align: center;
}
/* -#------#- PORTAL -#------#- */
.circleRow .swiper-slide .img svg
{
    width: 60px;
    height: 60px;
    color: white;
}
.circleRow .swiper-slide .img .iconICircle
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: white;
    font: normal 40px 'Times New Roman', serif;
    border: 2px solid white;
    border-radius: 50%;
}
.circleRow .swiper-slide.active .img .iconICircle
{
    color: var(--blueLight);
    border-color: var(--blueLight);
}
/* -#------#- -#------#- -#------#- NEWS -#------#- -#------#- -#------#- */
/* -#------#- -#------#- ITEMS -#------#- -#------#- */
.gridRow .gridRowItem
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    padding: 30px 20px 10px 20px;
}
.gridRow .gridRowItem > article
{
    display: flex;
    justify-content: space-between;
    width: calc(100% / 2 - 30px);
    height: 160px;
    margin-bottom: 20px;
    padding: 10px;
    transition: .3s;
    border: 1px solid #e5e5e5;
}
.gridRow .gridRowItem > article .mlLazyLoad
{
    min-width: 160px;
    height: 100%;
}
.gridRow .gridRowItem > article img
{
    height: 100%;
}
.gridRow .gridRowItem > article:hover
{
    /*background: var(--bgBlueLight);*/
    background: #e5e5e538;
}
.gridRow .gridRowItem > article .description
{
    display: flex;
    /*justify-content: space-between;*/
    flex-direction: column;
    width: 100%;
    padding: 15px 0 20px 20px;
    position: relative;
}
.gridRow .gridRowItem > article .description h3
{
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}
.gridRow .gridRowItem > article .description > div
{
    display: flex;
    justify-content: flex-end;
    position: absolute;
    bottom: 1px;
    right: 10px;
}
/* -#------#- PAGINATION -#------#- */
.pagination
{
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 30px 0;
}
.pagination li.disabled
{
    pointer-events: none;
}
.pagination li:nth-child(n+2)
{
    margin-left: 7px;
}
.pagination li a
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 4px;
}
.pagination li.disabled a
{
    color: var(--greyNight);
}
.pagination li a:hover
{
    background: var(--bgBlueLight);
}
.pagination li.active a
{
    background: var(--blueLight);
    color: var(--white);
    pointer-events: none;
}
.pagination li a svg
{
    width: 18px;
    height: 18px;
}
/* -#------#- -#------#- -#------#- LIST ITEM -#------#- -#------#- -#------#- */
.listItem
{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.listItem.gridColumn
{
    flex-wrap: wrap;
}
.listItem.listColumn
{
    flex-direction: column;
}
.listItem li
{
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
}
.listItem.gridColumn li
{
    width: calc(100% / 2 - 60px);
}
.listItem li .number
{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.listItem li .number p
{
    transition: .3s;
}
.listItem li .description
{
    display: flex;
    height: 100%;
}
.listItem li .description p,
.listItem li .description a
{
    display: flex;
    align-items: center;
    position: relative;
    color: var(--dark);
    font-weight: normal;
    font-size: 16px;
}
.listItem li .description p:not(:first-child):before,
.listItem li .description a:not(:first-child):before
{
    content: '';
    width: 3px;
    height: 100%;
    background: #e2e3e5;
    transition: .3s;
    position: absolute;
    left: 0;
}
.listItem li .number p,
.listItem li .description a
{
    color: #474747;
}
.listItem li:hover .number p,
.listItem li .description a:hover
{
    color: var(--blueLight);
}
.listItem li .description a:hover:before
{
    background: var(--blueLight);
}
/* -#------#- -#------#- EMPLOYMENT -#------#- -#------#- */
.employmentRow .widthSmall:last-child,
.employmentRow .widthVerySmall:last-child
{
    overflow: auto;
}
.employmentRow .listItem
{
    min-width: 900px;
    display: flex;
 /*   padding: 25px;*/
}
.employmentRow.listPadding .listItem
{
    padding: 30px 60px;
}
.employmentRow.smallBox > div
{
    width: 470px;
}
.employmentRow.smallBox .listItem
{
    min-width: unset;
    padding: 60px;
}
.employmentRow .listItem li
{
    min-height: 50px;
    margin-bottom: 20px;
    transition: .3s background-color;
}
.employmentRow .listItem li:nth-child(even)
{
    background: var(--bgGreyLight);
}
.employmentRow .listItem li .description
{
    width: 100%;
    justify-content: space-between;
}
.employmentRow .listItem li p,
.employmentRow .listItem li a
{
    padding-left: 25px;
    color: var(--greyNight);
}
.employmentRow .listItem li p:nth-child(n+2),
.employmentRow .listItem li a:nth-child(n+2)
{
    margin-left: 30px;
    padding-left: 25px;
}
.employmentRow .listItem li p:first-child,
.employmentRow .listItem li a:first-child
{
    padding-left: 25px;
}
.employmentRow .listItem.threeDelimiter
{
    justify-content: space-between;
}
.employmentRow .listItem.threeDelimiter p
{
    width: calc(100% / 3);
}
.employmentRow .listItem.twoDelimiter p
{
    width: calc(100% / 2);
}
.employmentRow.smallBox .listItem li p
{
    white-space: unset;
}
.employmentRow .listItem li:hover
{
    background: var(--bgBlueLight);
}
.employmentRow .listItem li:hover
{
    background: var(--bgBlueLight);
}
.employmentRow .listItem li .number p
{
    width: 100%;
    color: var(--greyNight);
}
.employmentRow .listItem li .description p:hover:before
{
    color: var(--greyNight);
}
/* -#------#- -#------#- ADVERTISING -#------#- -#------#- */
.advertisingRow .listItem
{
    padding: 30px 0 15px 0;
}
.advertisingRow .listItem li
{
    height: 52px;
    margin-bottom: 15px;
}
.advertisingRow .listItem li .number
{
    margin-right: 22px;
}
.advertisingRow .listItem li .number p
{
    font-size: 22px;
}
.advertisingRow .listItem li .number p:nth-child(2)
{
    font-size: 17px;
}
.advertisingRow .listItem li a
{
    padding-left: 25px;
}
.advertisingRow .listItem li a:before
{
    height: 90%;
}
/* -#------#- -#------#- -#------#- GALLERY ROW -#------#- -#------#- -#------#- */
.galleryRow .galleryItem
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    padding: 30px 0;
}
.galleryRow .galleryItem article
{
    width: calc(100% / 3 - 20px);
}
.galleryRow .galleryItem article .mlLazyLoad
{
    width: 100%;
    height: 320px;
}
.galleryRow .galleryItem article img
{
    height: 100%;
}
.galleryRow .galleryItem article h3
{
    height: 40px;
    margin: 10px 0 20px 0;
    font-size: 17px;
    overflow: hidden;
}
/* -#------#- -#------#- GALLERY PAGE -#------#- -#------#- */
.mlGridGallery
{
    width: 100%;
}
.mlGridGallery > div
{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.mlGridGallery .img
{
    width: calc(100% / 3 - 20px);
    min-height: 150px;
    margin: 0 10px 20px 10px;
    position: relative;
}
.mlGridGallery .img:before
{
    content: '';
    width: 100%;
    height: 100%;
    background: var(--blueLight);
    transition: opacity .3s;
    opacity: 0;
    position: absolute;
}
.mlGridGallery .img:hover:before
{
    cursor: pointer;
    opacity: .4;
}
.mlGridGallery .img img
{
    max-width: 100%;
}
/* -#------#- -#------#- -#------#- PORTAL TOOL ROW -#------#- -#------#- -#------#- */
/* -#------#- -#------#- SEARCH -#------#- -#------#- */
.portalToolRow form
{
    width: unset;
}
.portalToolRow .search .formGroup
{
    display: flex;
    align-items: center;
    height: 35px;
    margin: 0;
}
.portalToolRow .search input
{
    width: 450px;
    height: 100%;
    padding: 0 0 0 10px;
    background: unset;
    font-size: 15px;
    border: 1px solid var(--blueLight);
    border-radius: unset;
    box-shadow: unset;
}
.portalToolRow .search button
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 100%;
    padding-bottom: 2px;
    background: var(--blueLight);
    color: var(--white);
    transition: .3s;
    border: 1px solid var(--blueLight);
}
.portalToolRow .search button:hover
{
    cursor: pointer;
    background: var(--blueNight);
    border-color: var(--blueNight);
}
/* -#------#- -#------#- CHOICE -#------#- -#------#- */
.portalToolRow .choice
{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.portalToolRow .choice > p
{
    display: flex;
    align-items: center;
    margin-right: 20px;
    color: var(--greyLight);
    font-weight: bold;
}
.portalToolRow .choice > p svg
{
    margin-right: 7px;
}
.portalToolRow .buttonChoice
{
    display: flex;
    height: 100%;
}
.portalToolRow .buttonChoice a
{
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 40px 0 40px;
    background: white;
    color: var(--dark);
    font-weight: bold;
    font-size: 15px;
    box-shadow: 0 0 10px 1px var(--border);
    z-index: 90;
}
.portalToolRow .buttonChoice a.active
{
    box-shadow: unset;
    background: var(--blueLight);
    color: var(--white);
    pointer-events: none;
    z-index: 100;
}
.portalToolRow .buttonChoice a:hover
{
    color: var(--blueNight);
}
/* -#------#- -#------#- -#------#- PORTAL ARTICLE -#------#- -#------#- -#------#- */
.articleOnlyRow article h3
{
    margin-bottom: 14px;
    font-weight: normal;
    font-size: 26px;
}
.articleOnlyRow article h4
{
    margin-top: 4px;
    font-weight: normal;
    font-size: 17px;
}
.articleOnlyRow article p
{
    font-size: 16px;
    line-height: 22px;
    color: var(--textGreyLight);
}
.articleOnlyRow article section
{
    margin-bottom: 20px;
}
.articleOnlyRow article section > .one
{
    margin-bottom: 10px;
}
.articleOnlyRow article section > div
{
    margin-bottom: 30px;
}
.articleOnlyRow article.boldSmallText p
{
    font-weight: bold;
    font-size: 15px;
}
.articleOnlyRow article .smallBox
{
    width: 250px;
    margin-bottom: 30px;
}
.articleOnlyRow article.boldSmallText .textBox
{
    margin-top: 30px;
    padding: 0 60px;
}
.articleOnlyRow article.boldSmallText .textBox p
{
    margin-bottom: 20px;
    font-size: 13px;
}
.articleOnlyRow article.boldSmallText p,
.articleOnlyRow article.boldSmallText h3
{
    font-weight: bold;
    font-size: 15px;
    color: var(--textGreyLight);
}
.articleOnlyRow article.boldSmallText .flexCenter h3
{
    text-align: center;
}
/* -#------#- -#------#- TERMS -#------#- -#------#- */
.articleOnlyRow.termsOfUse article .mlDropdownListHead h3
{
    margin: 0;
}
.articleOnlyRow.termsOfUse article .mlDropdownListContent h4
{
    margin: 0 0 10px 0;
    font-size: 15px;
}
.articleOnlyRow.termsOfUse article .mlDropdownListContent p
{
    margin: 0 0 8px 14px;
}
/* -#------#- -#------#- -#------#- TAB FILTER -#------#- -#------#- -#------#- */
.filterTabOptions
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
/* -#------#- -#------#- -#------#- BUTTON -#------#- -#------#- -#------#- */
.filterTabOptions button
{
    height: 35px;
    padding: 0 14px;
    background: var(--white);
    color: var(--blueNight);
    transition: .3s;
    border-radius: 0 0 4px 4px;
    border-left: 1px solid var(--border);
    box-shadow: 2px 2px 2px -1px var(--shadowLight);
}
.filterTabOptions button:nth-child(n+2)
{
    margin-left: 10px;
}
.filterTabOptions button:hover
{
    background: var(--bgBlueLight);
    color: var(--blueNight);
}
.filterTabOptions button.active
{
    background: var(--blueLight);
    color: var(--white);
}
/* -#------#- -#------#- -#------#- TOTAL RESULT -#------#- -#------#- -#------#- */
.filterTabOptions .totalResult
{
    display: flex;
}
.filterTabOptions .totalResult p
{
    line-height: 18px;
}
.filterTabOptions .totalResult p:first-child
{
    margin-right: 10px;
}
/* -#------#- -#------#- -#------#- CONTENT -#------#- -#------#- -#------#- */
.mapFilterResult .filterTabContent
{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    height: 100%;
}
.mapFilterResult .filterTabContent > div
{
    display: none;
    transition: .3s;
    opacity: 0;
}
.mapFilterResult .filterTabContent > div.show
{
    opacity: 1;
}
/* -#------#- -#------#- -#------#- FILTER SEARCH -#------#- -#------#- -#------#- */
/* -#------#- -#------#- FILTER -#------#- -#------#- */
.filterDataRow .filterForm
{
    width: 400px;
}
.filterDataRow .filterForm .filterGroup
{
    margin-bottom: 30px;
}
.filterDataRow .filterForm .filterGroup.mB1
{
    margin-bottom: 10px;
}
/* -#------#- -#------#- MAP RESULT -#------#- -#------#- */
.filterDataRow .mapFilterResult
{
    display: flex;
    flex-direction: column;
    width: calc(100% - 430px);
    background: white;
}
.filterDataRow .mapFilterResult .map
{
    min-height: 500px;
    margin-bottom: 30px;
}
.filterDataRow .result
{
    display: flex !important;
    flex-direction: column;
    height: 100%;
    position: relative;
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
}
.filterDataRow .result .loadBox
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: white;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 900;
}
/* -#------#- ITEM -#------#- */
.filterDataRow .result .resultItem
{
    width: 100%;
    height: 100%;
    padding: 24px 20px;
}
.filterDataRow .result .resultItem li
{
    width: 100%;
}
.filterDataRow .result .resultItem li:nth-child(n+2)
{
    margin-top: 10px;
}
.filterDataRow .result .resultItem li > a
{
    display: flex;
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border);
}
.filterDataRow .result .resultItem li > a:hover
{
    background: var(--bgBlueLight);
}
.filterDataRow .result .resultItem li img
{
    height: 112px;
    margin-right: 20px;
}
.filterDataRow .result .resultItem li .description
{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
}
.filterDataRow .result .resultItem li .twoRow
{
    color: var(--dark);
    /*flex-wrap: wrap;*/
}
.filterDataRow .result .resultItem li .twoRow h3
{
    font-size: 19px;
    margin-right: 15px;
}
.filterDataRow .result .resultItem li .twoRow p
{
    font-weight: bold;
    font-size: 18px;
    white-space: nowrap;
}
.filterDataRow .result .resultItem li .bottom p
{
    color: var(--greyLight);
    font-size: 15px;
}
.filterDataRow .result .resultItem li .bottom p:nth-child(n+2)
{
    margin-top: 5px;
}
.filterDataRow .result .resultItem li .bottom .cardBlueValue
{
    color: var(--blueLight);
    width: 85%;
}
.filterDataRow .result .resultItem li .bottom .cardValue
{
    color: var(--greyNight);
    font-weight: bold;
}
/* -#------#- -#------#- -#------#- FORM -#------#- -#------#- -#------#- */
form
{
    width: 100%;
    position: relative;
}
.centerForm
{
    display: flex;
    justify-content: center;
}
/* -#------#- -#------#- FORM GROUP -#------#- -#------#- */
.formGroup
{
    margin-bottom: 20px;
}
/* -#------#- ERROR FORM -#------#- */
.errorForm
{
    margin-top: 4px;
    font-size: 13px;
    color: var(--red);
}
/* -#------#- -#------#- INPUT -#------#- -#------#- */
.inputControl
{
    width: 100%;
    height: 40px;
    padding: 0 20px 0 20px;
    outline: unset;
    border: 1px solid #ddd;
    transition: .3s;
    border-radius: 0px;
    /* box-shadow: 0 2px 4px 1px #dddce2; */
}
/* -#------#- -#------#- LABEL -#------#- -#------#- */
.formInfoBold
{
    font-size: 15px;
    padding-left: 10px;
}
.formFilterCenter
{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: normal;
    font-size: 15px;
}
/* -#------#- -#------#- CHECKBOX -#------#- -#------#- */
.formGroup.checkbox
{
    display: flex;
    align-items: center;
}
.formGroup.checkbox.unsetHeight
{
    /*height: 20px;*/
}
.formGroup.checkbox .inputControl
{
    min-width: 21px;
    max-width: 21px;
    min-height: 21px;
    max-height: 21px;
}
.formGroup.checkbox label
{
    padding: 0 20px 0 20px;
}
.formGroup.checkbox .inputControl:hover,
.formGroup.checkbox label:hover
{
    cursor: pointer;
}
/* -#------#- LIST -#------#- */
.checkboxList
{
    margin: 20px 0;
}
.checkboxList .formGroup
{
    height: 20px;
}
.checkboxList .formGroup.checkbox label
{
    padding: 0 0 0 10px;
}
/* -#------#- GRID -#------#- */
.checkboxRow
{
    display: flex;
}
.checkboxRow .formGroup
{
    margin: 10px 0 10px 0;
}
.checkboxRow .formGroup.checkbox label
{
    padding: 0 20px 0 10px;
}
/* -#------#- FILTER -#------#- */
.filterGroup .formGroup.center
{
    justify-content: center;
}
.formGroup.checkboxButton .inputControl
{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blueNight);
    text-align: center;
}
.formGroup.checkboxButton .inputControl:hover
{
    cursor: pointer;
}
.formGroup.checkboxButton input:checked + .inputControl
{
    background: var(--blueLight);
    color: var(--white);
}
/* -#------#- -#------#- ONCE FORM -#------#- -#------#- */
.onceForm
{
    display: flex;
    justify-content: flex-start;
}
.onceForm .formGroup
{
    width: calc(100% / 2 - 20px);
}
/* -#------#- -#------#- DOUBLE FORM -#------#- -#------#- */
.doubleForm
{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.doubleForm .formGroup
{
    /* width: calc(100% / 2 - 20px); */
    width: 100%;
}
.doubleForm .formGroup:nth-child(2n)
{
    /* margin-left: 40px; */
    width: 100%;
}
.filterGroup .doubleForm .formGroup
{
    width: calc(100% / 2 - 10px);
}
.filterGroup .doubleForm .formGroup:nth-child(2n)
{
    margin-left: 20px;
}
/* -#------#- -#------#- TRIPLE FORM -#------#- -#------#- */
.tripleForm
{
    display: flex;
    justify-content: space-between;
}
.tripleForm .formGroup
{
    width: calc(100% / 3 - 20px);
}
/* -#------#- -#------#- WHITE -#------#- -#------#- */
.whiteForm .inputControl
{
    background: white;
}
.inputControl:hover
{
    background: rgba(38, 153, 251, .05);
}
/* -#------#- -#------#- GREY FORM -#------#- -#------#- */
.greyForm .formGroup
{
    height: unset;
}
.greyForm label
{
    display: block;
    margin-bottom: 8px;
    color: #333333;
    /* font-weight: 600; */
}
.greyForm .inputControl
{
    height: 40px;
    /* box-shadow: inset 0 0 2px 1px var(--borderNight); */
}
.greyForm .inputControl[type='date']
{
    color: #7e7e7e;
}
.greyForm .mlSelect
{
    height: 40px;
}
.greyForm .mlSelect .mlSelectHead
{
    padding: 0 7px 0 20px;
}
.greyForm .mlSelect .mlSelectHead .mlSelectResult
{
    color: var(--blueLight);
}
.greyForm .mlSelect .mlSelectHead svg
{
    min-width: 22px;
    max-width: 22px;
    min-height: 22px;
    max-height: 22px;
}
/* -#------#- -#------#- YEAR AND MONTH -#------#- -#------#- */
.yearAndMonth
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.yearAndMonth > div
{
    width: calc(100% / 2 - 10px);
}
/* -#------#- -#------#- DOUBLE MONTH -#------#- -#------#- */
.doubleMonth > div
{
    display: none;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
    opacity: 0;
}
.doubleMonth > div.show
{
    opacity: 1;
}
.doubleMonth > div > div
{
    width: calc(100% / 2 - 7px);
}
/* -#------#- -#------#- CHOICE RADIO -#------#- -#------#- */
.radioChoice
{
    display: flex;
    align-items: flex-start;
}
.formBox .radioChoice .formGroup
{
    margin-bottom: 0;
    width: 50%;
}
.radioChoice .formGroup:nth-child(n+2)
{
    margin-left: 10px;
}
.greyForm .formGroup.checkboxButton .inputControl
{
    margin-bottom: 0;
    color: #7e7e7e;
    font-weight: bold;
    font-size: 13px;
}
/* -#------#- -#------#- CHECKBOX -#------#- -#------#- */
.greyForm .formGroup.checkbox
{
    align-items: flex-end;
}
.greyForm .formGroup.checkbox > div
{
    display: flex;
    height: 40px;
    align-items: center;
}
.greyForm .formGroup.checkbox label
{
    margin-bottom: 0;
    padding: 0 30px 0 0;
}
/* -#------#- -#------#- FROM TO -#------#- -#------#- */
.formGroup.fromTo
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.formGroup.fromTo.hidden
{
    display: none;
}
.formGroup.fromTo > div
{
    display: flex;
    height: 100%;
}
.formGroup.fromTo .number
{
    display: flex;
    align-items: center;
    height: 100%;
}
.formGroup.fromTo .number
{
    margin-left: 20px;
}
.formGroup.fromTo .number label
{
    margin-right: 10px;
}
.formGroup.fromTo .number .inputControl
{
    width: 60px;
    padding: 0 10px 0 0;
    text-align: center;
}
/* -#------#- FILTER -#------#- */
.filterGroup .formGroup.fromTo > div
{
    justify-content: space-evenly;
    width: 100%;
}
.filterGroup .formGroup.fromTo .number label,
.filterGroup .formGroup.fromTo .number .inputControl
{
    color: var(--blueNight);
}
.filterGroup .formGroup.fromTo .number .inputControl
{
    width: 100px;
}
/* -#------#- -#------#- PRIVATE DATA -#------#- -#------#- */
.personalData .privateData
{
    width: calc(100% - 220px);
}
.personalData .image
{
    width: 180px;
    padding-bottom: 20px;
}
.personalData .image .formGroup
{
    width: 100%;
    height: 100%;
}
.personalData .image label
{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}
.personalData .image label:hover
{
    cursor: pointer;
}
/* -#------#- -#------#- TEXTAREA -#------#- -#------#- */
.formGroup.textarea .inputControl
{
    padding: 7px 14px;
    height: 60px;
}
/* -#------#- -#------#- SELECT -#------#- -#------#- */
.mlSelect
{
    height: 40px;
    position: relative;
}
.mlSelect.disabled
{
    pointer-events: none;
}
.mlSelect.disabled:before
{
    content: '';
    width: 100%;
    height: 100%;
    background: var(--bgBlueNight);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px;
}
/* -#------#- HEAD -#------#- */
.mlSelectHead
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 20px;
}
.mlSelect.open .mlSelectHead
{
    background: var(--bgBlueLight);
}
.mlSelectHead:hover
{
    cursor: pointer;
}
.mlSelectHead *
{
    pointer-events: none;
}
.mlSelectHead .name
{
    width: 100%;
}
.mlSelectHead svg
{
    width: 18px;
    height: 18px;
    color: var(--greyLight);
}
.mlSelectHead .mlSelectResult
{
    width: 100%;
    color: var(--blueNight);
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.mlSelectHead.twoName .name label
{
    display: block;
    margin-bottom: 4px;
    color: var(--greyLight);
    font-size: 11px;
}
/* -#------#- CONTENT -#------#- */
.mlSelectContent
{
    width: 100%;
    height: 0;
    background: white;
    overflow: auto;
    transition: height .3s;
    position: absolute;
    top: 100%;
    box-shadow: 0 0 0 0 #dddce2;
    z-index: 1000;
}
.mlSelectContent::-webkit-scrollbar,
.mlSelect .mlSelectContent.searchContent .resultOption::-webkit-scrollbar
{
    width: 5px;
    background: var(--bgGreyLight);
}
.mlSelectContent::-webkit-scrollbar-thumb,
.mlSelect .mlSelectContent.searchContent .resultOption::-webkit-scrollbar-thumb
{
    background: var(--blueLight);
}
.mlSelectContent::-webkit-scrollbar-thumb:hover,
.mlSelect .mlSelectContent.searchContent .resultOption::-webkit-scrollbar-thumb:hover
{
    background: var(--blueNight);
}
.mlSelect.open .mlSelectContent
{
    box-shadow: 0 2px 4px 1px #dddce2;
}
.mlSelectContent ul
{
    width: 100%;
}
.mlSelect .mlSelectContent.searchContent
{
    overflow: hidden;
}
.mlSelect .mlSelectContent.searchContent .resultOption
{
    overflow: auto;
}
.mlSelectContent ul li
{
    display: flex;
    align-items: center;
    padding: 7px 20px;
}
.mlSelect .mlSelectContent.searchContent .searchItem
{
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid var(--border);
}
.mlSelect .mlSelectContent.searchContent input.searchInput
{
    width: 100%;
    height: 26px;
    padding-left: 10px;
}
.mlSelectContent ul li:nth-child(n+2)
{
    border-top: 1px solid var(--border);
}
.mlSelectContent ul li.search-item:hover
{
    background: unset;
    cursor: default;
}
.mlSelectContent ul li.none
{
    display: none;
}
.mlSelectContent ul li:hover
{
    background: var(--bgBlueLight);
    cursor: pointer;
}
.mlSelectContent ul li.active
{
    background: var(--blueLight);
    color: var(--white);
    pointer-events: none;
}
/* -#------#- CENTER-#------#- */
.mlSelect.center .mlSelectHead
{
    padding: 0 7px 0 0;
}
.mlSelect.center .mlSelectHead .name
{
    width: 100%;
}
.mlSelect.center .mlSelectHead .mlSelectResult
{
    margin-right: -10px;
    text-align: center;
}
.mlSelect.center .mlSelectContent ul li
{
    justify-content: center;
    padding: 7px 20px;
}
/* -#------#- -#------#- ADD BUTTON -#------#- -#------#- */
.formAdd
{
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}
.formAdd span
{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
    color: var(--white);
    font-size: 20px;
    padding-bottom: 3px;
}
/* -#------#- -#------#- SUBMIT -#------#- -#------#- */
.submitForm
{
    display: flex;
    justify-content: center;
    width: 100%;
}
.submitForm
{
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}
.submitForm button
{
    padding: 15px 80px;
    color: #fff;
    transition: .3s;
    font-size: 15px;
    border: unset;
    border-radius: 4px;
}
.submitForm.doubleSubmit button
{
    width: calc(50% - 10px);
    padding: 15px 0;
    color: #fff;
    font-size: 15px;
    border: unset;
    border-radius: 4px;
}
/* -#------#- -#------#- -#------#- IMG LAZY LOAD -#------#- -#------#- -#------#- */
.mlLazyLoad
{
    display: flex;
    align-items: center;
    justify-content: center;
}
.mlLazyLoad img
{
    transition: .3s;
    opacity: 0;
}
svg.iconLoading
{
    width: 40px;
    height: 40px;
    color: var(--blueLight);
    position: absolute;
}
/* -#------#- -#------#- -#------#- ACCOUNT ROW -#------#- -#------#- -#------#- */
.accountInfo,
.accountRelation
{
    padding: 20px;
}
.infoHeader
{
    margin-bottom: 20px;
}
/* -#------#- -#------#- INFO BOX -#------#- -#------#- */
.infoBox
{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.infoBox > div
{
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}
.accountRow .infoBox.threeBox > div
{
    width: calc(100% / 3 - 40px);
}
.accountRow .infoBox.twoBox > div
{
    width: calc(100% / 2 - 40px);
}
.infoBox .infoLine
{
    display: flex;
    padding: 10px;
    border-top: 1px solid var(--border);
}
.infoBox .header
{
    background: var(--bgBlueLight);
}
.infoBox .infoLine:last-child
{
    border-bottom: 1px solid var(--border);
}
.infoBox .infoLine:hover
{
    background: var(--bgBlueLight);
}
.infoBox .infoLine p
{
    color: var(--textGreyLight);
}
.infoBox .infoLine p:first-child
{
    white-space: nowrap;
}
.infoBox .infoLine p:last-child
{
    color: var(--dark);
}
.infoBox .infoLine:hover p
{
    color: var(--dark);
}
.infoBox .infoLine p:last-child
{
    margin-left: 20px;
}
.infoBox .line
{
    display: block;
    padding: 5px;
}
/* -#------#- -#------#- ACCOUNT BUTTON -#------#- -#------#- */
.accountButton
{
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}
.accountButton a:nth-child(n+2),
.accountButton .accountDeleteForm button:nth-child(n+2)
{
    margin-left: 10px;
}
.accountButton .accountDeleteForm
{
    display: inline;
}
.accountButton .accountDeleteForm button
{
    font-size: 14px;
    transition: .3s;
}
.accountButton .accountDeleteForm button
{
    color: var(--red);
}
.accountButton .accountDeleteForm button:hover
{
    color: var(--redNight);
}
/* -#------#- -#------#- -#------#- MODAL CONFIRM -#------#- -#------#- -#------#- */
.modalConfirm
{
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--bgBlueNight);
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
.modalConfirm.show
{
    display: flex;
}
.modalConfirm .innerBox
{
    width: 400px;
}
.modalConfirm .closeBox
{
    display: flex;
    justify-content: flex-end;
}
.modalConfirm .closeBox .closeButton
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
    background: var(--red);
    position: relative;
    border: 2px solid var(--border);
    border-radius: 4px;
    box-shadow: 0 0 4px 1px var(--dark);
}
.modalConfirm .closeBox .closeButton:hover
{
    cursor: pointer;
}
.modalConfirm .closeBox .closeButton:before,
.modalConfirm .closeBox .closeButton:after
{
    content: '';
    width: 16px;
    height: 3px;
    transition: .3s;
    position: absolute;
    background: var(--white);
    border-radius: 3px;
}
.modalConfirm .closeBox .closeButton:before
{
    transform: rotate(45deg);
}
.modalConfirm .closeBox .closeButton:after
{
    transform: rotate(-45deg);
}
.modalConfirm .closeBox .closeButton:hover:before,
.modalConfirm .closeBox .closeButton:hover:after
{
    transform: scale(1.2);
}
.modalConfirm .contentBox
{
    width: 100%;
    padding: 15px;
    background: #fff;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 4px 1px var(--dark);
}
.modalConfirm .contentBox .text p
{
    font-size: 15px;
}
.modalConfirm .contentBox .text p:nth-child(2)
{
    margin-top: 15px;
}
.modalConfirm .contentBox .buttonBox
{
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid var(--borderNight);
}
.modalConfirm .contentBox .buttonBox button
{
    min-width: 50px;
    padding: 8px 0;
    transition: .3s;
    border-radius: 4px;
}
.modalConfirm .contentBox .buttonBox button:first-child
{
    margin-right: 15px;
}
.modalConfirm .contentBox .buttonBox button.confirm
{
    background: var(--red);
    color: var(--white);
}
.modalConfirm .contentBox .buttonBox button.confirm:hover
{
    background: var(--redNight);
}
.modalConfirm .contentBox .buttonBox button.cancel
{
    background: var(--blueLight);
    color: var(--white);
}
.modalConfirm .contentBox .buttonBox button.cancel:hover
{
    background: var(--blueNight);
}
/* -#------#- -#------#- -#------#- ACCOUNT RELATION -#------#- -#------#- -#------#- */
.accountRelation
{
    overflow: auto;
}
/* -#------#- -#------#- -#------#- GREY TABLE -#------#- -#------#- -#------#- */
.greyTable
{
    width: 100%;
    padding: 0;
    border-collapse: collapse;
}
.greyTable th,
.greyTable td
{
    border: 1px solid var(--border);
}
.greyTable thead tr th
{
    background: var(--bgBlueLight);
}
.greyTable thead tr th
{
    font-size: 14px;
    padding: 12px;
    text-align: left;
}
.greyTable tbody tr:hover
{
    background: var(--bgBlueLight);
    cursor: pointer;
}
.greyTable tbody tr td
{
    padding: 10px;
    color: var(--textGreyLight);
}
.greyTable tbody tr:hover td
{
    color: var(--dark);
    cursor: default;
}
.greyTable .option > div
{
    display: flex;
}
.greyTable .option div a
{
    display: block;
    padding: 6px;
    color: var(--white);
    border-radius: 4px;
}
.greyTable .option div a:nth-child(n+2)
{
    margin-left: 6px;
}
.greyTable .option .buttonGreen
{
    background: var(--green);
}
.greyTable .option .buttonGreen:hover
{
    background: var(--blueLight);
}
.greyTable .option .buttonRed
{
    background: var(--red);
}
.greyTable .option .buttonRed:hover
{
    background: var(--redNight);
}
/* -#------#- -#------#- -#------#- AUTH REG ROW -#------#- -#------#- -#------#- */
/* -#------#- -#------#- MAIN AUTH REG -#------#- -#------#- */
.doubleRowAuthReg
{
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
}
.doubleRowAuthReg > div h3
{
    width: 100%;
    margin-bottom: 30px;
    font-size: 17px;
    text-align: center;
}
.doubleRowAuthReg .buttonRow
{
    display: flex;
}
.doubleRowAuthReg .buttonRow a
{
    display: block;
    font-size: 15px;
    padding: 14px 30px;
    font-weight: bold;
}
.doubleRowAuthReg .buttonRow a:nth-child(n+2)
{
    margin-left: 45px;
}
.terms-of-use-text
{
    font-size: 12px;
    text-align: left;
}
.terms-of-use-text a
{
    text-decoration: underline;
}
/* -#------#- -#------#- AUTH REG -#------#- -#------#- */
.authRegForm
{
    display: flex;
    justify-content: center;
    width: 100%;
}
/* -#------#- FORM -#------#- */
.authRegForm form
{
    width: 70%;
}
.authRegForm form .inputControl
{
    min-height: 46px;
    padding: 0 28px;
    font-size: 15px;
    box-shadow: 0 0 3px 1px #dddce2;
}
.authRegForm form .formGroupSubmit
{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin-top: 45px;
}
.authRegForm form .formGroupSubmit.center
{
    justify-content: center;
}
.authRegForm form .formGroupSubmit .linkBlock
{
    display: flex;
    flex-direction: column;
}
.authRegForm form .formGroupSubmit .linkBlock a:nth-child(n+2)
{
    margin-top: 12px;
}
.authRegForm form .formGroupSubmit .buttonBlock button
{
    font-size: 15px;
    padding: 14px 30px;
}
/* -#------#- INVALID / STATUS FORM -#------#- */
[role='alert']
{
    display: block;
    margin: 4px 0;
}
.invalid-feedback
{
    color: var(--red);
}
.alert-success
{
    background: var(--bgGreenLight);
}
.alert-error
{
    background: #fdb0b0;
}
.alert.mB
{
    margin-bottom: 24px;
}
.formAlert
{
    display: flex;
    align-items: center;
    min-height: 46px;
    padding-left: 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
}
.formAlert.repeatEmailSend
{
    margin-bottom: 12px;
}
.repeatEmailSendButtonBox
{
    display: block;
    text-align: right;
    margin-bottom: 24px;
}
/* -#------#- PASSWORD -#------#- */
.passVisible
{
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
}
.passVisible .icon
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 20px;
    user-select: none;
}
.passVisible .icon svg
{
    width: 20px;
    height: 20px;
    color: #757575;
    transition: .3s;
}
.passVisible .icon svg:hover
{
    color: var(--blueNight);
    cursor: pointer;
}
.passVisible .icon svg:first-child
{
    display: block;
}
.passVisible .icon svg:last-child
{
    display: none;
}
.passVisible .icon.off svg:first-child
{
    display: none;
}
.passVisible .icon.off svg:last-child
{
    display: block;
}
/* -#------#- -#------#- -#------#- TAB ROW -#------#- -#------#- -#------#- */
/* -#------#- -#------#- NAVIGATION -#------#- -#------#- */
.mlTabRow .mlTabNavigation
{
    width: 100%;
}
.mlTabRow .mlTabNavigation > ul
{
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 40px 0;
    padding: 0 7px;
}
.mlTabRow .mlTabNavigation li
{
    max-width: 400px;
    padding: 14px 40px 14px 14px;
    color: #bababa;
    transition: .3s;
    font-size: 15px;
    line-height: 18px;
    border-bottom: 3px solid var(--borderNight);
}
.mlTabRow.mlMobileActive .mlTabNavigation li
{
    max-width: unset;
}
.mlTabRow .mlTabNavigation li.noWrap
{
    max-width: unset;
}
.mlTabRow .mlTabNavigation li.active
{
    color: var(--dark);
    border-color: var(--blueLight);
    pointer-events: none;
}
.mlTabRow .mlTabNavigation li:hover
{
    color: var(--blueNight);
    cursor: pointer;
}
/* -#------#- -#------#- CONTENT -#------#- -#------#- */
.mlTabRow .mlTabContent > div
{
    display: none;
    opacity: 0;
    transition: .3s;
}
.mlTabRow .mlTabContent > div.show
{
    opacity: 1;
}
.mlTabPadding > div
{
    padding: 0 30px;
}
/*-#------#- -#------#- -#------#- CALCULATOR -#------#- -#------#- -#------#- */
.fundClearFooter + footer .economicsRow
{
    display: none;
}
.calculator
{
    min-height: 520px;
    padding: 0 145px;
}
.calculator > div .twoRow
{
    padding: 0 65px;
    align-items: flex-start;
}
.calculator .calculatorInfo
{
    margin-bottom: 40px;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
}
/* -#------#- -#------#- FORM -#------#- -#------#- */
.calculator .form
{
    width: calc(100% - 346px);
}
.calculator .formBox
{
    margin-bottom: 40px;
    width: 100%;
}
/* -#------#- -#------#- TOTAL -#------#- -#------#- */
.calculator .result
{
    width: 246px;
    margin-top: 18px;
    padding: 27px 16px;
}
/*!* -#------#- BOX WITH SUM -#------#- *!*/
.calculator .boxWithSum
{
    margin-bottom: 20px;
}
.calculator .boxWithSum p:first-child
{
    color: var(--textGreyLight);
    font-weight: 600;
    line-height: 18px;
    margin-bottom: 6px;
}
.calculator .boxWithSum p:last-child
{
    color: var(--blueLight);
}
.calculator .boxWithSum p:last-child > span:first-child
{
    font-weight: bold;
    font-size: 18px;
}
.calculator .boxWithSum p:last-child > span:last-child
{
    font-weight: normal;
    font-size: 11px;
}
/* -#------#- BOX WITH BUTTON -#------#- */
.calculator .boxWithButton
{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.calculator .boxWithButton button
{
    display: block;
    width: 80%;
    padding: 11px 0 11px 0;
    color: var(--textGreyLight);
    transition: .3s;
    text-align: center;
    border: 1px solid var(--borderNight);
    border-radius: 0px;
}
.calculator .boxWithButton button:hover
{
    background: var(--bgBlueLight);
    cursor: pointer;
}
.calculator .boxWithButton button:nth-child(n+2)
{
    margin-top: 14px;
}
.calculator .boxWithButton .calculate
{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.calculator .boxWithButton .calculate.active
{
    background: var(--blueLight);
    color: var(--white);
    pointer-events: none;
}
.calculator .boxWithButton .calculate svg
{
    width: 30px;
    height: 30px;
    margin-top: -1px;
    position: absolute;
    right: calc(100% + 4px);
    opacity: 0;
    pointer-events: none;
}
.calculator .boxWithButton .calculate.active svg
{
    opacity: 1;
}
/* -#------#- LINK INFO -#------#- */
.calculator .info
{
    margin: 16px 20px 0 0;
}
.calculator .info a
{
    font-weight: 100;
}
/*-#------#- -#------#- -#------#- TERRITORIES MAP -#------#- -#------#- -#------#- */
.territoriesMapRow .territoriesMap img
{
    width: 100%;
}
/*-#------#- -#------#- -#------#- ONLINE SCHOOL -#------#- -#------#- -#------#- */
.tabOnlineSchoolContent > div
{
    min-height: 700px;
}
/*-#------#- -#------#- -#------#- ABOUT MIN DOCUMENT -#------#- -#------#- -#------#- */
.mlTabAboutMinDocumentContent
{
    min-height: 500px;
}
.mlTabAboutMinDocumentContent > div
{
    overflow: auto;
}
/*-#------#- -#------#- TABLE LIST -#------#- -#------#- */
table
{
    width: 100%;
    /* min-width: 900px; 
    background: var(--bgGreyLight);*/
    padding: 30px;
}
table.listTable th
{
    padding: 20px;
    text-align: left;
    font-size: 19px;
}
table.listTable td
{
    padding: 20px;
}
table.listTable tbody tr td
{
    font-size: 15px;
}
table.listTable tbody tr td:first-child
{
    font-size: 16px;
    white-space: nowrap;
}
table.listTable tbody tr td:nth-child(2)
{
    max-width: 450px;
}
table.listTable tbody tr td:nth-child(n+2)
{
    position: relative;
}
table.listTable tbody tr td span
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}
table.listTable tbody tr td span:before
{
    content: '';
    width: 3px;
    height: 70%;
    background: #d9d9d9;
    transition: .3s;
    position: absolute;
    left: 0;
}
/*-#------#- -#------#- -#------#- OTHER ARTICLE -#------#- -#------#- -#------#- */
.articleContent abbr[title]
{
    border-bottom: 1px dotted;
}
.articleContent b, .articleContent strong
{
    font-weight: 700;
}
.articleContent h1
{
    margin: .67em 0;
    font-size: 2em;
}
.articleContent hr
{
    height: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.articleContent table
{
    border-spacing: 0;
    border-collapse: collapse;
}
.articleContent td, .articleContent th
{
    padding: 0;
}
.articleContent h2, .articleContent h3, .articleContent p
{
    orphans: 3;
    widows: 3;
}
.articleContent h2, .articleContent h3
{
    page-break-after: avoid;
}
.articleContent .table
{
    border-collapse: collapse !important;
}
.articleContent .table td, .articleContent .table th
{
    background-color: #fff !important;
}
.articleContent .table-bordered td, .articleContent .table-bordered th
{
    border: 1px solid #ddd !important;
}
.articleContent table
{
    background-color: transparent;
}
.articleContent caption
{
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777;
    text-align: left;
}
.articleContent th
{
    text-align: left;
}
.articleContent .table
{
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}
.articleContent .table > tbody > tr > td, .articleContent .table > tbody > tr > th, .articleContent .table > tfoot > tr > td, .table > tfoot > tr > th, .articleContent .table > thead > tr > td, .articleContent .table > thead > tr > th
{
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
}
.articleContent .table > thead > tr > th
{
    vertical-align: bottom;
    border-bottom: 2px solid #ddd;
}
.articleContent .table > caption + thead > tr:first-child > td, .articleContent .table > caption + thead > tr:first-child > th, .articleContent .table > colgroup + thead > tr:first-child > td, .articleContent .table > colgroup + thead > tr:first-child > th, .articleContent .table > thead:first-child > tr:first-child > td, .table > thead:first-child > tr:first-child > th
{
    border-top: 0;
}
.articleContent .table > tbody + tbody
{
    border-top: 2px solid #ddd;
}
.articleContent .table .table
{
    background-color: #fff;
}
.articleContent .table-condensed > tbody > tr > td, .articleContent .table-condensed > tbody > tr > th, .articleContent .table-condensed > tfoot > tr > td, .articleContent .table-condensed > tfoot > tr > th, .articleContent .table-condensed > thead > tr > td, .articleContent .table-condensed > thead > tr > th
{
    padding: 5px;
}
.articleContent .table-bordered
{
    border: 1px solid #ddd;
}
.articleContent .table-bordered > tbody > tr > td, .articleContent .table-bordered > tbody > tr > th, .articleContent .table-bordered > tfoot > tr > td, .articleContent .table-bordered > tfoot > tr > th, .articleContent .table-bordered > thead > tr > td, .articleContent .table-bordered > thead > tr > th
{
    border: 1px solid #ddd;
}
.articleContent .table-bordered > thead > tr > td, .articleContent .table-bordered > thead > tr > th
{
    border-bottom-width: 2px;
}
.articleContent .table-striped > tbody > tr:nth-of-type(odd)
{
    background-color: #f9f9f9;
}
.articleContent .table-hover > tbody > tr:hover
{
    background-color: #f5f5f5;
}
.articleContent table col[class*=col-]
{
    position: static;
    display: table-column;
    float: none;
}
.articleContent table td[class*=col-], .articleContent table th[class*=col-]
{
    position: static;
    display: table-cell;
    float: none;
}
.articleContent .table > tbody > tr.active > td, .table > tbody > tr.active > th, .articleContent .table > tbody > tr > td.active, .articleContent .table > tbody > tr > th.active, .articleContent .table > tfoot > tr.active > td, .table > tfoot > tr.active > th, .articleContent .table > tfoot > tr > td.active, .articleContent .table > tfoot > tr > th.active, .articleContent .table > thead > tr.active > td, .articleContent .table > thead > tr.active > th, .articleContent .table > thead > tr > td.active, .articleContent .table > thead > tr > th.active
{
    background-color: #f5f5f5;
}
.articleContent .table-hover > tbody > tr.active:hover > td, .articleContent .table-hover > tbody > tr.active:hover > th, .articleContent .table-hover > tbody > tr:hover > .active, .articleContent .table-hover > tbody > tr > td.active:hover, .articleContent .table-hover > tbody > tr > th.active:hover
{
    background-color: #e8e8e8;
}
.articleContent .table > tbody > tr.success > td, .articleContent .table > tbody > tr.success > th, .articleContent .table > tbody > tr > td.success, .articleContent .table > tbody > tr > th.success, .articleContent .table > tfoot > tr.success > td, .articleContent .table > tfoot > tr.success > th, .articleContent .table > tfoot > tr > td.success, .articleContent .table > tfoot > tr > th.success, .articleContent .table > thead > tr.success > td, .articleContent .table > thead > tr.success > th, .articleContent .table > thead > tr > td.success, .articleContent .table > thead > tr > th.success
{
    background-color: #dff0d8;
}
.articleContent .table-hover > tbody > tr.success:hover > td, .articleContent .table-hover > tbody > tr.success:hover > th, .articleContent .table-hover > tbody > tr:hover > .success, .articleContent .table-hover > tbody > tr > td.success:hover, .articleContent .table-hover > tbody > tr > th.success:hover
{
    background-color: #d0e9c6;
}
.articleContent .table > tbody > tr.info > td, .articleContent .table > tbody > tr.info > th, .articleContent .table > tbody > tr > td.info, .articleContent .table > tbody > tr > th.info, .articleContent .table > tfoot > tr.info > td, .articleContent .table > tfoot > tr.info > th, .articleContent .table > tfoot > tr > td.info, .articleContent .table > tfoot > tr > th.info, .articleContent .table > thead > tr.info > td, .articleContent .table > thead > tr.info > th, .articleContent .table > thead > tr > td.info, .articleContent .table > thead > tr > th.info
{
    background-color: #d9edf7;
}
.articleContent .table-hover > tbody > tr.info:hover > td, .articleContent .table-hover > tbody > tr.info:hover > th, .articleContent .table-hover > tbody > tr:hover > .info, .articleContent .table-hover > tbody > tr > td.info:hover, .articleContent .table-hover > tbody > tr > th.info:hover
{
    background-color: #c4e3f3;
}
.articleContent .table > tbody > tr.warning > td, .articleContent .table > tbody > tr.warning > th, .table > tbody > tr > td.warning, .articleContent .table > tbody > tr > th.warning, .articleContent .table > tfoot > tr.warning > td, .articleContent .table > tfoot > tr.warning > th, .articleContent .table > tfoot > tr > td.warning, .articleContent .table > tfoot > tr > th.warning, .articleContent .table > thead > tr.warning > td, .articleContent .table > thead > tr.warning > th, .articleContent .table > thead > tr > td.warning, .articleContent .table > thead > tr > th.warning
{
    background-color: #fcf8e3;
}
.articleContent .table-hover > tbody > tr.warning:hover > td, .articleContent .table-hover > tbody > tr.warning:hover > th, .articleContent .table-hover > tbody > tr:hover > .warning, .articleContent .table-hover > tbody > tr > td.warning:hover, .articleContent .table-hover > tbody > tr > th.warning:hover
{
    background-color: #faf2cc;
}
.articleContent .table > tbody > tr.danger > td, .articleContent .table > tbody > tr.danger > th, .articleContent .table > tbody > tr > td.danger, .articleContent .table > tbody > tr > th.danger, .articleContent .table > tfoot > tr.danger > td, .articleContent .table > tfoot > tr.danger > th, .articleContent .table > tfoot > tr > td.danger, .articleContent .table > tfoot > tr > th.danger, .articleContent .table > thead > tr.danger > td, .articleContent .table > thead > tr.danger > th, .articleContent .table > thead > tr > td.danger, .articleContent .table > thead > tr > th.danger
{
    background-color: #f2dede;
}
.articleContent .table-hover > tbody > tr.danger:hover > td, .articleContent .table-hover > tbody > tr.danger:hover > th, .articleContent .table-hover > tbody > tr:hover > .danger, .articleContent .table-hover > tbody > tr > td.danger:hover, .articleContent .table-hover > tbody > tr > th.danger:hover
{
    background-color: #ebcccc;
}
.articleContent .table-responsive
{
    min-height: .01%;
    overflow-x: auto;
}
.articleContent h1, .articleContent h2, .articleContent h3, .articleContent h4, .articleContent h5, .articleContent h6
{
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
}
.articleContent h1, .articleContent h2, .articleContent h3
{
    margin-top: 20px;
    margin-bottom: 10px;
}
.articleContent h4, .articleContent h5, .articleContent h6
{
    margin-top: 10px;
    margin-bottom: 10px;
}
.articleContent .h1, .articleContent h1
{
    font-size: 36px;
}
.articleContent .h2, .articleContent h2
{
    font-size: 30px;
}
.articleContent .h3, .articleContent h3
{
    font-size: 24px;
}
.articleContent .h4, .articleContent h4
{
    font-size: 18px;
}
.articleContent .h5, .articleContent h5
{
    font-size: 14px;
}
.articleContent .h6, .articleContent h6
{
    font-size: 12px;
}
.articleContent p
{
    margin: 0 0 10px;
}
.articleContent li
{
    list-style: unset;
}
.articleContent ol, .articleContent ul
{
    margin-top: 0;
    margin-left: 15px;
    margin-bottom: 10px;
}
.articleContent ol ol, .articleContent ol ul, .articleContent ul ol, .articleContent ul ul
{
    margin-left: 15px;
    margin-bottom: 0;
}
.articleContent .list-unstyled
{
    padding-left: 0;
    list-style: none
}
.articleContent .list-inline
{
    padding-left: 0;
    margin-left: -5px;
    list-style: none
}
.articleContent .list-inline > li
{
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px
}
.articleContent dl
{
    margin-top: 0;
    margin-bottom: 20px
}
.articleContent dd, .articleContent dt
{
    line-height: 1.42857143
}
.articleContent dt
{
    font-weight: 700
}
.articleContent dd
{
    margin-left: 0
}
.mlTabOtherArticleContent
{
    min-height: 400px;
    padding: 0 145px;
}
.centerSection
{
    display: flex;
    justify-content: center;
    padding: 0 65px;
}
.centerSection section
{
    margin-bottom: 30px;
}
.centerSection section h3,
.centerSection section p
{
    color: var(--textGreyLight);
}
.centerSection section h3
{
    font-size: 17px;
    margin-bottom: 14px;
}
.centerSection section p
{
    font-size: 15px;
    line-height: 20px;
}
/* -#------#- -#------#- -#------#- FOOTER -#------#- -#------#- -#------#- */
footer
{
    width: 100%;
}
/* -#------#- -#------#- ECONOMICS ROW -#------#- -#------#- */
.economicsRow
{
    margin-bottom: 40px;
    padding: 0 10px;
}
.economicsRow .swiper-container
{
    margin: 30px 0;
}
/* -#------#- ITEM -#------#- */
.economicsRow .swiper-slide
{
    display: flex;
    justify-content: center;
}
.economicsRow .swiper-slide > a
{
    display: block;
    width: 240px;
    padding: 10px;
}
.economicsRow .swiper-slide > a:hover
{
    background: var(--bgGreyNight);
}
.economicsRow .swiper-slide > a .mlLazyLoad
{
    width: 100%;
    height: 117px;
}
.economicsRow .swiper-slide > a img
{
    height: 100%;
}
.economicsRow .swiper-slide > a h3
{
    color: var(--dark);
    font: bold 16px 'LatoRegular', sans-serif;
    text-align: center;
}
/* -#------#- -#------#- UNDER ROW -#------#- -#------#- */
.underRow
{
    margin-top: 115px;
    background: #0780E8;
}
/* -#------#- -#------#- ADDRESS ROW -#------#- -#------#- */
.addressRow
{
    display: flex;
    justify-content: center;
    margin-top: -75px;
}
/* -#------#- ITEM -#------#- */
.addressRow section
{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    width: calc(100% / 3 - 20px);
    height: 150px;
    padding: 0 40px;
    background: #2699FB;
}
.addressRow section:nth-child(n+2)
{
    border-left: 1px solid var(--border);
}
.addressRow section *
{
    color: var(--white);
}
.addressRow section h2
{
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 21px;
}
.addressRow section h2 img
{
    margin-right: 7px;
}
.addressRow section a,
.addressRow section p
{
    display: block;
    font-size: 15px;
}
.addressRow section a:last-child,
.addressRow section p:last-child
{
    margin-top: 6px;
}
.addressRow section:first-child p
{
    line-height: 23px;
    margin: -6px 0 0 0;
}
/* -#------#- -#------#- NAVIGATION ROW -#------#- -#------#- */
footer nav
{
    display: flex;
    padding: 30px 0 50px 0;
}
footer .footerLinkRow
{
    display: flex;
    padding-top: 60px;
}
footer .footerLinkRow .listLink ul,
footer .footerLinkRow .marketArea
{
    margin-left: 100px;
}
footer .footerLinkRow a
{
    color: var(--white);
    font-size: 15px;
}
/* -#------#- LIST -#------#- */
footer .footerLinkRow .listLink
{
    display: flex;
}
footer .footerLinkRow .listLink ul li
{
    display: flex;
    padding: 4px 0;
}
/* -#------#- MARKET AREA -#------#- */
footer .marketArea a
{
    display: flex;
    align-items: center;
    padding-bottom: 4px;
}
footer .marketArea a svg
{
    width: 30px;
    height: 30px;
    margin-right: 7px;
}
/* -#------#- -#------#- COPYRIGHT ROW -#------#- -#------#- */
.copyright
{
    display: flex;
    align-items: center;
    height: 60px;
    background: #0074D7;
}
.copyright p
{
    color: var(--white);
}
/* -#------#- -#------#- DROPDOWN LIST ROW -#------#- -#------#- */
.mlDropdownListRow
{
    width: 100%;
}
.mlDropdownListRow .mlDropdownList
{
    width: 100%;
}
.mlDropdownListRow .mlDropdownList:nth-child(n+2)
{
    margin-top: 20px;
}
.mlDropdownListRow .mlDropdownListHead
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    background: white;
    transition: .3s;
    border-radius: 4px;
    box-shadow: 0 2px 4px 1px #dddce2;
}
.mlDropdownListRow .mlDropdownListHead:hover
{
    background: var(--bgBlueLight);
    cursor: pointer;
}
.mlDropdownListRow .mlDropdownListHead h3
{
    font-size: 15px;
    padding: 10px;
}
.mlDropdownListRow .mlDropdownListHead svg
{
    min-width: 22px;
    max-width: 22px;
    min-height: 22px;
    max-height: 22px;
    margin-left: 14px;
    transition: .4s;
}
.mlDropdownListRow .mlDropdownList.open .mlDropdownListHead svg
{
    transform: scale(-1);
}
.mlDropdownListRow .mlDropdownListHead h3,
.mlDropdownListRow .mlDropdownListHead svg
{
    pointer-events: none;
}
.mlDropdownListRow .mlDropdownListContent
{
    width: 100%;
    height: 0;
    transition: .4s;
    overflow: hidden;
    position: relative;
}
.mlDropdownListRow .mlDropdownListContent > div
{
    padding: 10px 10px 10px 10px;
    border-bottom: 2px solid var(--borderNight);
}
.mlDropdownListRow .mlDropdownListContent p
{
    color: var(--textGreyLight);
    font-size: 15px;
    line-height: 20px;
}
/* -#------#- -#------#- -#------#- MAP -#------#- -#------#- -#------#- */
#mlMap
{
    width: 100%;
    height: 500px;
    position: relative;
}
#mlMap > ymaps
{
    opacity: 0 !important;
    transition: .3s;
}
#mlMap.load > ymaps
{
    opacity: 1 !important;
}
#mlMap .balloonContent a
{
    display: block;
    padding: 6px;
}
#mlMap .balloonContent a:nth-child(n+2)
{
    border-top: 1px solid var(--border);
}
#mlMap .mlMapLazyLoad
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.mlMapListHide
{
    display: none !important;
}
/* -#------#- -#------#- -#------#- SCROLL DROP -#------#- -#------#- -#------#- */
.mlScrollShow
{
    transition: 1s;
    opacity: 0;
}
.mlScrollShow.shoTop
{
    transform: translateY(-300px);
}
.mlScrollShow.showLeft
{
    transform: translateX(-300px);
}
.mlScrollShow.showBottom
{
    transform: translateY(300px);
}
.mlScrollShow.showRight
{
    transform: translateX(300px);
}
.mlScrollShow.show
{
    opacity: 1;
    transform: translate(0, 0);
}
.pen_contact {
    position: relative;
    font-size: 14px;
    padding-bottom: 3px;
}
.pen_contact:before {
    position: absolute;
    content: "";
    height: 1px;
    width: 100%;
    background-color: var(--blueLight);
    bottom: 0;
}
ul{
    padding-left:0px!important
}

ul{
    padding-left:0px!important
}
