:root {
    --cyan-color: #5BCAF5;
    --cyan2-color: #e5f2f9;
    --blue-color: #233A7A;
}



/*------------------- BASE --------------------- */

.uk-button-primary:after{
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='18' viewBox='0 0 17 18' fill='none'%3E%3Cpath d='M16.1907 1.59565L16.0966 16.9042C16.0939 17.0318 16.0286 17.0956 15.9004 17.0956L9.82356 17.123C9.69802 17.1256 9.63525 17.0631 9.63525 16.9355L9.6431 7.60346C11.7276 5.66596 13.7741 3.66986 15.7827 1.61518C15.8559 1.53966 15.9919 1.53315 16.1907 1.59565Z' fill='url(%23paint0_linear_465_8443)'/%3E%3Cpath d='M16.1905 1.59567C15.9918 1.53317 15.8558 1.53968 15.7825 1.6152C13.7739 3.66989 11.7274 5.66599 9.64292 7.60349L0.192231 7.55661C0.0640769 7.55661 0 7.49281 0 7.3652L0.00392307 1.04099C0.00392307 0.931611 0.0601539 0.876923 0.172615 0.876923L15.9983 0.88083C16.1265 0.88083 16.1905 0.944631 16.1905 1.07224V1.59567Z' fill='%23ED1B24'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_465_8443' x1='12.913' y1='1.55319' x2='12.913' y2='17.1231' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.298187' stop-color='%233772A7'/%3E%3Cstop offset='1' stop-color='white'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    margin-left: 10px;
    line-height: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    vertical-align: text-bottom;
}

/* a[href^="https:\/\/facebook.com"] {
    background-color: #1B7BFD;
}

a[href^="https:\/\/instagram.com"] {
    background-color: #C23785;
}

a[href^="https:\/\/twitter.com"] {
    background-color: #42C0F5;
}

a[href^="https:\/\/youtube.com"] {
    background-color: #EF5043;
} */

.widget_polylang ul {
    padding-left: 0px;
}

.widget_polylang .lang-item {
    list-style: none;
}

.widget_polylang .lang-item a {
    display: flex;
    gap: 15px;
    align-items: center;
}

.widget_polylang .lang-item a:hover {
    text-decoration: none;
    color: inherit;
}

.widget_polylang .lang-item [lang="en-GB"]:before {
    content: "EN";
}

.widget_polylang .lang-item [lang="vi"]:before {
    content: "VI";
}


/* ------------------------ HEADER ----------------------------*/
.tm-header .uk-navbar-container {
/*     background-color: #e5f2f9; */
	background-color: #fff;
}

.tm-header .uk-navbar .uk-navbar-left {}

.tm-header .uk-navbar .uk-navbar-right {
    display: flex;
    justify-content: flex-end;
}

.tm-header .uk-navbar-nav {
    order: 100;
    flex-basis: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 0px;
    position: relative;
}

.tm-header .uk-navbar-nav>li:hover:before {
    width: 100%;
    opacity: 1;
}

.tm-header .uk-navbar-nav>li {
    position: relative;
}

.tm-header .uk-navbar-nav>li {
    margin-right: -1px;
}

.tm-header .uk-navbar-nav>li.menu-item-home {
    margin-right: 3px;
}

/*Hover*/
.tm-header .uk-navbar-nav>li:before {
    content: "";
    position: absolute;
    width: 100%;
    opacity: 1;
    height: 100%;
    background: var(--blue-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) skewX(-45deg);
    transition: all .2s ease-in-out;
    z-index: 0;
}

.tm-header .uk-navbar-nav>li:after {
    content: "";
    position: absolute;
    width: 0px;
    height: 100%;
    background: var(--cyan-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) skewX(-45deg);
    transition: all .2s ease-in-out;
    z-index: 1;
}

.tm-header .uk-navbar-nav>li a {
    padding: 0 25px;
    position: relative;
    z-index: 2;
}

.tm-header .uk-navbar-nav>li.current-menu-item:after,
.tm-header .uk-navbar-nav>li.current_page_item:after,
.tm-header .uk-navbar-nav>li:hover:after {
    width: 100%;
}

/*home menu item icon*/
.tm-header .uk-navbar-nav>li.menu-item-home img {
    display: none;
}

.tm-header .uk-navbar-nav>li.menu-item-home>a:after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M10 20V14H14V20H19V12H22L12 3L2 12H5V20H10Z' fill='white'/%3E%3C/svg%3E");
    display: flex;
    line-height: 0;
}

/*last item */
.tm-header .uk-navbar-nav>li:last-child a {
    padding-right: 50px;

}

.tm-header .uk-navbar-nav {
    margin-right: -20px;
}

.tm-header .uk-navbar {
    overflow: hidden;
}

.tm-header .uk-navbar-dropdown-nav .menu-item {
    margin-bottom: 12px;
}

.tm-header .uk-navbar-dropdown-nav .menu-item a {
    /* padding: 7px 0; */
    border-radius: 8px;
}


/*mobile*/
#tm-dialog-mobile {
    max-width: calc(100vw - 45px) !important;
    left: 45px !important;
}

#tm-dialog-mobile li a {
    /* color: #6A6A6A; */
    /* font-size: 16px; */
}

#tm-dialog-mobile .widget_nav_menu>ul>li {
    padding-top: 15px;
    border-bottom: 1px solid #ddd;
}

#tm-dialog-mobile .widget_nav_menu>ul>li:last-child,
#tm-dialog-mobile .widget_nav_menu>ul>li.menu-item-home {
    border: none;
}

#tm-dialog-mobile .widget_nav_menu>ul>li.menu-item-home a {
    margin-bottom: 0px;
}


#tm-dialog-mobile .widget_nav_menu>ul>li>a {
    text-transform: uppercase;
    /* color: var(--blue-color); */
    /* font-size: 18px; */
}

#tm-dialog-mobile .widget_nav_menu ul li a {
    margin-bottom: 15px;
}

#tm-dialog-mobile .widget_nav_menu ul li a:hover {
    color: var(--blue-color);
}

#tm-dialog-mobile .widget_nav_menu ul.uk-nav-sub li a {
    color: #6a6a6a;
    margin-bottom: 15px;
}

#tm-dialog-mobile .uk-parent>a {
    width: calc(100% - 42px);
    display: inline-block;
}

#tm-dialog-mobile .uk-parent>span {
    width: 40px;
    height: 32px;
    border-left: 1px solid var(--blue-color);
    justify-content: center;
    align-items: center;
    display: inline-flex;
}

#tm-dialog-mobile .uk-parent>span:focus,
#tm-dialog-mobile .uk-parent>span:target,
#tm-dialog-mobile .uk-parent>span:active {
    background-color: var(--cyan-color);
}

#tm-dialog-mobile .uk-parent.uk-open span svg {
    transform: rotate(180deg);
}

#tm-dialog-mobile .uk-parent.uk-open>span {
    border-left-color: transparent
}

/*-------------- SEARCH ------------------------*/
.uk-search-icon:hover svg {
    background-color: var(--cyan-color);
    color: white;
}

.uk-search-icon svg {
    width: 36px;
    padding: 8px;
    background: var(--cyan2-color);
    border-radius: 100px
}

@media (min-width: 960px) {
    .uk-search-icon svg {
        background: white;
    }
}

#search-0-modal .uk-modal-dialog,
#search-1-modal .uk-modal-dialog {
    background: #00000080;
}

#search-1-modal .uk-modal-dialog .uk-close {
    background: none;
}

.uk-modal-dialog div.uk-search-large {
    padding: 0 15px;
}

.uk-modal-dialog div.uk-search-large form {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 19 19' fill='none'%3E%3Cpath d='M8.70833 15.0417C12.2061 15.0417 15.0417 12.2061 15.0417 8.70833C15.0417 5.21053 12.2061 2.375 8.70833 2.375C5.21053 2.375 2.375 5.21053 2.375 8.70833C2.375 12.2061 5.21053 15.0417 8.70833 15.0417Z' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16.6249 16.6249L13.1812 13.1812' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    max-width: 1430px;
    margin: auto;
    display: block;
}

.uk-modal-dialog div.uk-search-large input {
    text-align: left !important;
    padding: 0 20px;
}

/*-------------- NAVIGATION ------------------------*/
.uk-dotnav li a{
    border: none;
    background-color: #808284;
}

.uk-dotnav li.uk-active a{
    background-color: var(--cyan-color);
    width: 25px;
    border-radius: 10px;
}

/* --------------------------- SLIDER -------------------------*/
.uk-slider-container{
    overflow-y: unset;
}

.uk-slider-container .uk-position-top-right{
    bottom: calc(100% + 30px);
    top: unset;
    margin: 0 18px 0 0;
    gap: 5px;
}


/*--------------------------- ELEMENT COUNT UP*/
.ju-grid-count-up-title .el-title:after {
    content: "+";
}


/*--------------------------- ELEMENT DU AN NOI BAT */
.du_an_noi_bat .el-item{
    padding: 250px 15px 30px 15px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px){
    .du_an_noi_bat .el-item {
        padding: 115px 15px 115px 15px;
    }
}

.du_an_noi_bat .el-item>* {
    position: relative;
    z-index: 3;
}
.du_an_noi_bat .el-item::before {
    content: "";
    position: absolute;
    background: rgb(255 255 255 / 80%);
    bottom: 0;
    left: -60px;
    width: calc(100% + 60px);
    height: 200%;
    z-index: 2;
    transform: skew(140deg);
    transform-origin: bottom left;
}

@media (min-width: 960px) {
    .du_an_noi_bat .el-item::before {
        left: 40%;
    }
}

.du_an_noi_bat .uk-slidenav-container {
    right: calc(100% - 100px) !important;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0px 8px 30px 0px !important;
}

@media (min-width: 960px) {
    .du_an_noi_bat .uk-slidenav-container {
        right: calc(60% - 100px) !important;
        bottom: 30px;
        transform: translateX(40px);
    }
}

.du_an_noi_bat .uk-slidenav-container .el-slidenav.uk-slidenav-next {
    margin: 0px 40px 0px 0px !important;
}

.du_an_noi_bat .uk-slidenav-container .el-slidenav.uk-slidenav-previous {
    margin: 0px 0px 0px 40px !important;
    transform: translateX(-10px);
}

@media (min-width: 960px) {
    .du_an_noi_bat .uk-slidenav-container .el-slidenav.uk-slidenav-previous {
        transform: translateX(0px);
    }
}



.du_an_noi_bat .el-item picture{
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 1;
}

.du_an_noi_bat .el-item picture img{
    max-width: unset;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 959px){
    .du_an_noi_bat .el-item .el-meta {
        max-width: 40vw;
        margin-left: auto;
    }
    .du_an_noi_bat .el-item .el-title{
        max-width: 60vw;
        margin-left: auto;
    }
}




/*------------------ ELEMENT ju_panel_slider_dot_title*/
.ju_panel_slider_dot_title{
/*     background-image: url(../image/Group_1000014224.jpg); */
	background-image: url(/wp-content/uploads/2024/02/bg-12-1.png);
    background-position: bottom center;
    background-size: auto;
    background-repeat: no-repeat;
    padding-bottom: 5px;
	background-size: 100% 50%;
}
@media (max-width: 959px){
	.ju_panel_slider_dot_title{
		background-size: 100% 62%;
	}
}
@media (max-width: 639px){
	.ju_panel_slider_dot_title{
		background-size: auto calc(100% - 200px);
	}
}

.ju_panel_slider_dot_title .el-nav{
    padding: 0 15px;
    border-bottom: 2px solid #B8B8B8;
    padding-bottom: 10px;
    overflow-x: auto;
    display: list-item;
    white-space: nowrap;
    overflow-y: hidden;
}

.ju_panel_slider_dot_title .el-nav li{
    display: inline-block;
    margin-right: 30px;
}

@media(min-width: 640px){
    .ju_panel_slider_dot_title .el-nav li {
        margin-right: 60px;
        margin-left: 30px;
    }
}

.ju_panel_slider_dot_title .el-nav li a{
    text-indent: unset !important;
    overflow: unset !important;
    background: transparent;
    min-height: 10px;
    min-width: 10px;
    border-radius: 10px;
    width: unset;
    height: unset;
    font-size: 23px;
    color: #6A6A6A;
    font-weight: 500;
    text-decoration: none !important;
    position: relative;
    transition: all 0.2s ease-out;
}

.ju_panel_slider_dot_title .el-nav li a:before {
    content: "";
    transition: all 0.2s ease-out;
    bottom: -40px;
}

.ju_panel_slider_dot_title .el-nav li.uk-active a:before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='7' viewBox='0 0 24 7' fill='none'%3E%3Cg clip-path='url(%23clip0_455_4584)'%3E%3Cpath d='M18 8L12 2L6 8' stroke='%23233A7A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_455_4584'%3E%3Crect width='24' height='7' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.ju_panel_slider_dot_title .el-nav li.uk-active a {
    color: var(--blue-color);
    font-size: 1.4em;
}

@media(max-width: 639px){
    .ju_panel_slider_dot_title .el-item img{
        aspect-ratio: 390/220;
        object-fit: cover;
    }
}

.ju_panel_slider_dot_title .el-content{
    margin: auto;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 640px){
    .ju_panel_slider_dot_title .el-content {
        -webkit-line-clamp: 2;
    }
}

.ju_panel_slider_dot_title .el-title{
    white-space: nowrap;
}

.ju_panel_slider_dot_title .el-title .uk-slidenav{
    color: gray;
    background: transparent;
    margin: 0 !important;
    padding: 0 !important;
}

.ju_panel_slider_dot_title .el-title .uk-slidenav.uk-slidenav-next svg,
.ju_panel_slider_dot_title .el-title .uk-slidenav.uk-slidenav-previous svg{
    display: none;
}

.ju_panel_slider_dot_title .el-title .uk-slidenav.uk-slidenav-next:before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='42' viewBox='0 0 42 42' fill='none'%3E%3Cpath d='M14 10.5L24.5 21L14 31.5' stroke='%236A6A6A' stroke-width='5.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ju_panel_slider_dot_title .el-title .uk-slidenav.uk-slidenav-previous:before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='42' viewBox='0 0 42 42' fill='none'%3E%3Cpath d='M28 10.5L17.5 21L28 31.5' stroke='%236A6A6A' stroke-width='5.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ju_panel_slider_dot_title .xemthem{
    background-color: transparent;
}

.ju_panel_slider_dot_title .xemthem.uk-disabled{
    display: none !important;
}

.ju_panel_slider_dot_title .xemthem:after{
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='18' viewBox='0 0 17 18' fill='none'%3E%3Cpath d='M16.1907 1.59565L16.0966 16.9042C16.0939 17.0318 16.0286 17.0956 15.9004 17.0956L9.82356 17.123C9.69802 17.1256 9.63525 17.0631 9.63525 16.9355L9.6431 7.60346C11.7276 5.66596 13.7741 3.66986 15.7827 1.61518C15.8559 1.53966 15.9919 1.53315 16.1907 1.59565Z' fill='url(%23paint0_linear_465_8443)'/%3E%3Cpath d='M16.1905 1.59567C15.9918 1.53317 15.8558 1.53968 15.7825 1.6152C13.7739 3.66989 11.7274 5.66599 9.64292 7.60349L0.192231 7.55661C0.0640769 7.55661 0 7.49281 0 7.3652L0.00392307 1.04099C0.00392307 0.931611 0.0601539 0.876923 0.172615 0.876923L15.9983 0.88083C16.1265 0.88083 16.1905 0.944631 16.1905 1.07224V1.59567Z' fill='%23ED1B24'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_465_8443' x1='12.913' y1='1.55319' x2='12.913' y2='17.1231' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.298187' stop-color='%233772A7'/%3E%3Cstop offset='1' stop-color='white'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    margin-left: 10px;
    line-height: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    vertical-align: text-bottom;
}

#slider_dot_title_modal .el-title .uk-slidenav{
    display: none;
}


/* ----------------------- CO DONG*/
.grid_item_has_download_button .el-meta{
    margin-top: 15px !important;
}

.grid_item_has_download_button .el-meta +div{
    margin-top: 20px !important;
}

.grid_item_has_download_button .el-link{
    border: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    text-transform: math-auto;
}

.grid_item_has_download_button .el-link::after{
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='18' viewBox='0 0 17 18' fill='none'%3E%3Cpath d='M16.1907 1.59565L16.0966 16.9042C16.0939 17.0318 16.0286 17.0956 15.9004 17.0956L9.82356 17.123C9.69802 17.1256 9.63525 17.0631 9.63525 16.9355L9.6431 7.60346C11.7276 5.66596 13.7741 3.66986 15.7827 1.61518C15.8559 1.53966 15.9919 1.53315 16.1907 1.59565Z' fill='url(%23paint0_linear_465_8443)'/%3E%3Cpath d='M16.1905 1.59567C15.9918 1.53317 15.8558 1.53968 15.7825 1.6152C13.7739 3.66989 11.7274 5.66599 9.64292 7.60349L0.192231 7.55661C0.0640769 7.55661 0 7.49281 0 7.3652L0.00392307 1.04099C0.00392307 0.931611 0.0601539 0.876923 0.172615 0.876923L15.9983 0.88083C16.1265 0.88083 16.1905 0.944631 16.1905 1.07224V1.59567Z' fill='%23ED1B24'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_465_8443' x1='12.913' y1='1.55319' x2='12.913' y2='17.1231' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.298187' stop-color='%233772A7'/%3E%3Cstop offset='1' stop-color='white'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    margin-left: 10px;
    line-height: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    vertical-align: text-bottom;
}

.grid_item_has_download_button .filter_heading .uk-h1 {
    font-size: 40px;
    margin: 0px;
}

@media(min-width: 640px){
    .grid_item_has_download_button .filter_heading .uk-h1{
        font-size: 68px;
    }
}

.grid_item_has_download_button .filter_heading{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.grid_item_co_dong{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 30px;
}

@media(min-width: 640px){
    .grid_item_co_dong {

    }
}

.grid_item_co_dong li{
    padding: 0 !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.grid_item_co_dong li:hover *{
    color: var(--blue-color) !important;
}

.grid_item_co_dong li span{
    position: relative;
    white-space: nowrap;
}

.grid_item_co_dong li span:before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='7' viewBox='0 0 24 7' fill='none'%3E%3Cg clip-path='url(%23clip0_455_4584)'%3E%3Cpath d='M18 8L12 2L6 8' stroke='%23233A7A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_455_4584'%3E%3Crect width='24' height='7' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    position: absolute;
    bottom: -40px;
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.2s ease-out;
}

.grid_item_co_dong li.uk-active span:before,
.grid_item_co_dong li:hover span:before {
    bottom: -32px;
    opacity: 1;
}

.grid_item_co_dong li span a{
    color: #6A6A6A;
    text-decoration: none;
    font-size: 20px;
}

.grid_item_co_dong li span a:hover{
    color: var(--blue-color);
}


/*--------------------- CUSTOM CLASS: panel_slider_nav_cheo ---------------------*/
.panel_slider_nav_cheo .uk-slidenav-container .uk-slidenav {
    position: relative;
    background-color: transparent;
    border-radius: 0px;
    /* border: 1px solid black; */
    margin: 0px !important;
    padding: 10px 20px;
}

.panel_slider_nav_cheo .uk-slidenav-container .uk-slidenav svg {
    width: 8px;
}

.panel_slider_nav_cheo .uk-slidenav-container .uk-slidenav:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--blue-color);
    top: 0;
    left: 0;
    transform: skew(-40deg);
}

/*--------------------- CUSTOM CLASS: duan_slideshow ---------------------*/
.duan_slideshow .uk-slideshow-items{
    border-left: 85px solid white;
}
.duan_slideshow .uk-slidenav.uk-slidenav-previous {
    left: 85px;
}

@media (min-width: 640px){
    .duan_slideshow .uk-slideshow-items {
        border-width: 150px;
    }
    .duan_slideshow .uk-slidenav.uk-slidenav-previous {
        left: 150px;
    }
}

.duan_slideshow .uk-position-top-left {
    margin: 0;
    height: 100%;
    overflow: auto;
    width: 70px;
}

.duan_slideshow .uk-position-top-left li{

}

.duan_slideshow .uk-position-top-left li a,
.duan_slideshow .uk-position-top-left li a img{
    /* width: 100%; */
}

@media (min-width: 640px) {
    .duan_slideshow .uk-position-top-left {
        width: 135px;
    }
}

@media (max-width: 1250px) and (min-width: 1200px){
	.tm-header .uk-navbar-nav>li a{
		font-size: 15px;
		padding: 0 23px;
	}
	
}

