/*volley 2023*/
/*CUSTOM CSS VOLLEYSPORT*/

/*font-family: 'Nunito', sans-serif;
font-family: 'Nunito Sans', sans-serif;*/

body {
    font-family: 'Nunito', sans-serif !important;
    font-size: 14px;
}

#dev_note {
    position: relative;
    z-index: 999;
    /*position: fixed;*/
    width: 100%;
    background: #fb5f60;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 5px 0;
    line-height: 1.2;
}

#dev_note a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

.body-wrapper {
    /*padding-top: 58px;*/
    /*overflow-x: hidden;*/
}

a {
    font-family: 'Nunito', sans-serif;
}

/*.round_border_end_bg{
    background: transparent url(ima/template/rounded-border-bg.svg);
}*/

.sticky-sidebar {
    position: sticky;
    position: -webkit-sticky;
    top: 30px;
}

#sitemap_menu {
    display: none;
    position: fixed;
    padding-top: 20px;
    padding-bottom: 20px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#232d7b+0,12173f+100&0.95+0,0.95+100 */
    background: -moz-linear-gradient(top, rgba(35, 45, 123, 0.95) 0%, rgba(18, 23, 63, 0.95) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(35, 45, 123, 0.95) 0%, rgba(18, 23, 63, 0.95) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(35, 45, 123, 0.95) 0%, rgba(18, 23, 63, 0.95) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2232d7b', endColorstr='#f212173f', GradientType=0);
    /* IE6-9 */

    width: 100%;
    height: 100%;
    z-index: 9999;
    color: #fff;
    overflow: scroll;
    /*top: -100%;*/
    top: 0;
    transform: translateY(-100%);
    -webkit-transition: all .6s cubic-bezier(0.2, 1, 0.3, 1);
    -moz-transition: all .6s cubic-bezier(0.2, 1, 0.3, 1);
    -ms-transition: all .6s cubic-bezier(0.2, 1, 0.3, 1);
    -o-transition: all .6s cubic-bezier(0.2, 1, 0.3, 1);
    transition: all .6s cubic-bezier(0.2, 1, 0.3, 1);
}

#sitemap_menu.sitemap_open {
    display: block;
    /*top: 0;*/

    transform: translateY(0);
}

.row.masonry-grid {
    display: block;
}

.row.masonry-grid>div {
    display: inline-block;
    float: left;
}

.sitemap_menu_logo {
    text-align: center;
}

#sitemap_menu_close {
    display: flex;
    align-items: center;
    cursor: pointer;
}

#sitemap_menu_close span {
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
}

#sitemap_menu_close img {}

#sitemap_menu .card-columns {
    @include media-breakpoint-only(sm) {
        column-count: 2;
    }

    @include media-breakpoint-only(lg) {
        column-count: 4;
    }

    @include media-breakpoint-only(xl) {
        column-count: 4;
    }
}

#sitemap_menu .card-columns {
    /*column-count: 4;*/
}

#sitemap_menu ul {
    list-style: none;
    padding: 0;
}

#sitemap_menu>ul {}

#sitemap_menu ul>li h5 a,
#sitemap_menu div h5 a {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

#sitemap_menu ul ul {
    /*column-count: 5;
    column-gap: 60px;*/
}

#sitemap_menu a {
    /*text-transform: capitalize;*/
}

#sitemap_menu a>div:first-letter {
    text-transform: capitalize;
}

#sitemap_menu .first_level {
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.4);*/
    padding-bottom: 10px;
    background: transparent;
}

#sitemap_menu .first_level_content {
    background: rgba(255, 255, 255, 0.3);
    padding: 10px;
    border-radius: 12px;
}

#sitemap_menu .first_level:after {
    content: "";
    width: 50%;
    height: 1px;
    background: #fff;
    display: none;
}

#sitemap_menu .first_level ul>li a {
    color: #fff;
}

#sitemap_menu .first_level ul>li.has-child {
    position: relative;
}

#sitemap_menu .first_level ul>li.has-child span.child_menu_toggler {
    float: right;
    position: absolute;
    /*right: 3em;*/
    cursor: pointer;
    right: 1em;
    font-size: 20px;
    line-height: 1em;
    top: 0;
    -webkit-transition: all .2s cubic-bezier(0.2, 1, 0.3, 1);
    -moz-transition: all .2s cubic-bezier(0.2, 1, 0.3, 1);
    -o-transition: all .2s cubic-bezier(0.2, 1, 0.3, 1);
    -ms-transition: all .2s cubic-bezier(0.2, 1, 0.3, 1);
    transition: all .2s cubic-bezier(0.2, 1, 0.3, 1);
}

#sitemap_menu .first_level ul>li.has-child.child_menu_open span.child_menu_toggler {
    transform: rotate(45deg);
    cursor: pointer;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#sitemap_menu ul ul>li {
    margin-bottom: 5px;
    position: relative;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#sitemap_menu ul ul>li:hover .sitemap_child_menu {
    /*display: block;
    opacity: 1;*/
    /* -webkit-transition:all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;*/
}

#sitemap_menu ul ul>li a {
    font-size: 14px;
    color: #fff;
    /*display: flex;
    align-items: center;
    position: relative;*/
}

#sitemap_menu ul ul>li a:after {
    content: "\f105";
    float: right;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    right: 3em;
}

#sitemap_menu ul>li.has-child .sitemap_child_menu {
    display: none;
    opacity: 0;
    -webkit-transition: all .2s cubic-bezier(0.2, 1, 0.3, 1);
    -moz-transition: all .2s cubic-bezier(0.2, 1, 0.3, 1);
    -o-transition: all .2s cubic-bezier(0.2, 1, 0.3, 1);
    -ms-transition: all .2s cubic-bezier(0.2, 1, 0.3, 1);
    transition: all .2s cubic-bezier(0.2, 1, 0.3, 1);
}

#sitemap_menu ul>li.has-child.child_menu_open .sitemap_child_menu {
    opacity: 1;
}

#sitemap_menu .sitemap_child_menu ul {
    /*background: #fff;*/
    color: #fff;
    padding: 10px;
    /*border-radius: 20px;
    width: 200px;
    column-count: 1;*/

    /*background: rgba(255, 255, 255, 0.4);*/
    /*padding: 10px;*/
    /*margin-bottom: 10px;
    border-radius: 8px;
    width: 220px;*/
}

#sitemap_menu .sitemap_child_menu ul:after {
    /* right: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-right-color: #ffffff;
    border-width: 8px;
    margin-top: -8px;
    display: none;*/
}

#sitemap_menu .sitemap_child_menu ul li {
    display: block;
    margin: 0;
}

#sitemap_menu .sitemap_child_menu ul li a {
    /*color:#373A3C;*/
    color: #fff;
}

#sitemap_menu .sitemap_child_menu ul li a:after {
    display: none;
}

#hamburger {
    width: 24px;
    height: 20px;
    position: relative;
    /* margin: 50px auto; */
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #252f7c;
    border-radius: 300px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#hamburger span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#hamburger span:nth-child(2) {
    top: 8px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#hamburger span:nth-child(3) {
    top: 16px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#hamburger.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0px;
    left: 4px;
    background: #252f7c;
}

#hamburger.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
    background: #252f7c;
}

#hamburger.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 18px;
    left: 4px;
    background: #252f7c;
}

.round_border_end_bg {
    position: relative;
}

.round_border_end_bg:after {
    content: "";
    height: 120px;
    background: #F3F5FB;
    width: 100%;
    position: absolute;
    border-radius: 100%;
    bottom: -90px;
    padding: 0;
    left: 0;
    z-index: -1;
}

.round_border_start_bg:before {
    content: "";
    height: 120px;
    background: #F3F5FB;
    width: 100%;
    position: absolute;
    border-radius: 100%;
    top: -60px;
    padding: 0;
    left: 0;
    z-index: -1;
}

button {
    cursor: pointer;
}

.btn-default {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 5px 20px;
    border-radius: 32px;
    background: #242E7C;
    border: 2px solid #242E7C;
    display: flex;
    align-items: center;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.btn-default:disabled {
    color: #373A3C;
    background: #C6C6C6;
    border: 1px solid #C6C6C6;
    margin: 0 auto;
    pointer-events: none;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active {
    background: transparent;
    color: #242E7C;
    text-decoration: none;
}

.btn-default.btn-arrow-right:hover:after,
.btn-default.btn-arrow-right:focus:after,
.btn-default.btn-arrow-right:active:after {
    background: #242E7C;
}

.btn-cyan {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 5px 20px;
    border-radius: 32px;
    background: #009FE3;
    border: 2px solid #009FE3;
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: max-content;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.btn-cyan-border {
    font-size: 16px;
    font-weight: 600;
    color: #009FE3;
    padding: 5px 20px;
    border-radius: 32px;
    background: transparent;
    border: 2px solid #009FE3;
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: max-content;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.btn-cyan:hover,
.btn-cyan:focus,
.btn-cyan:active {
    background: transparent;
    color: #009FE3;
    text-decoration: none;
}

.btn-cyan-border:hover,
.btn-cyan-border:focus,
.btn-cyan-border:active {
    color: #fff;
    background: #009FE3;
}

.btn-cyan.btn-arrow-right:hover:after,
.btn-cyan.btn-arrow-right:focus:after,
.btn-cyan.btn-arrow-right:active:after {
    background: #009FE3;
}

.btn-white {
    font-size: 16px;
    font-weight: 600;
    color: #373A3C;
    padding: 5px 20px;
    border-radius: 32px;
    background: #fff;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    width: max-content;
    margin: 0 auto;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active {
    background: #373A3C;
    color: #fff;
    text-decoration: none;
    border: 2px solid #373A3C;
}

.btn-white.btn-arrow-right:hover:after,
.btn-white.btn-arrow-right:focus:after,
.btn-white.btn-arrow-right:active:after {
    background: #fff;
}

.btn-red {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 5px 20px;
    border-radius: 32px;
    background: #FA6060;
    border: 2px solid #FA6060;
    /*display: flex;
    align-items: center;
    margin:0 auto;
    width: max-content;*/
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.btn-red:hover,
.btn-red:focus,
.btn-red:active {
    background: transparent;
    color: #FA6060;
    text-decoration: none;
}

.btn-red.btn-arrow-right:hover:after,
.btn-red.btn-arrow-right:focus:after,
.btn-red.btn-arrow-right:active:after {
    background: #FA6060;
}

.btn-default-border {
    font-size: 16px;
    font-weight: 600;
    color: #242E7C;
    padding: 5px 20px;
    border-radius: 32px;
    background: #fff;
    border: 2px solid #242E7C;
    /*display: flex;
    align-items: center;
    margin:0 auto;
    width: max-content;*/
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.btn-default-border:disabled {
    color: #747474;
    border: 2px solid #747474;
    pointer-events: none;
}

.btn-default-border:hover,
.btn-default-border:focus,
.btn-default-border:active {
    background: #242E7C;
    color: #fff;
    text-decoration: none;
}

.btn-arrow-right:after {
    content: "";
    -webkit-mask-image: url(../ima/template/arrow-right.svg);
    -webkit-mask-size: cover;
    mask-image: url(../ima/template/arrow-right.svg);
    mask-size: cover;
    width: 16px;
    height: 16px;
    display: inline-block;
    background: #fff;
    margin-left: 10px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#top {
    display: none;
    cursor: pointer;
    position: fixed;
    bottom: 1em;
    /*left: 1em;*/
    right: 1em;
    background: #F74549;
    width: 32px;
    height: 32px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    z-index: 999;
}

#top:after {
    content: "";
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -webkit-mask-image: url(../ima/template/arrow-right.svg);
    -webkit-mask-size: cover;
    mask-image: url(../ima/template/arrow-right.svg);
    mask-size: cover;
    width: 16px;
    height: 16px;
    display: inline-block;
    background: #fff;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.btn-white.btn-arrow-right:after {
    background: #373A3C;
}

.btn-brand_link {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    background: #242E7C;
    border: 1px solid #242E7C;
    border-radius: 4px;
    padding: 5px 10px;
    margin: 0 auto;
    display: table;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.btn-brand_link:hover,
.btn-brand_link:focus,
.btn-brand_link:active {
    background: transparent;
    color: #242E7C;
}

#header {
    position: absolute;
    width: 100%;
    z-index: 9;
    padding-top: 10px;
}

.top_btns {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top_btns>a,
.top_btns>span {
    margin-right: 20px;
    font-size: 14px;
}

.top_btns a,
.top_btns span {
    color: #fff;
    cursor: pointer;
}

.top_btns a:hover,
.top_btns a:focus,
.top_btns a:active,
.top_btns span:hover,
.top_btns span:focus,
.top_btns span:active {
    color: #fff;
    text-decoration: none;
}

.top_btns span:hover,
.top_btns span:focus,
.top_btns span:active {
    text-decoration: underline;
}

.top_btns nav a,
.top_btns nav span {
    margin: 0 5px;
}

.user_link span {
    font-size: 14px;
    margin-right: 5px;
}

.user_link.logout {
    background: #FA6060;
    border-radius: 12px;
    padding: 1px 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
    position: relative;
    top: -2px;
    left: -3px;
}

#offcanvas_search #close_search {
    position: absolute;
    top: 0;
    right: 1em;
    cursor: pointer;
}

#offcanvas_search #close_search:after {
    content: "+";
    font-weight: 100;
    position: absolute;
    font-size: 100px;
    color: #fff;
    top: 0;
    right: 1em;
    z-index: 999;
    line-height: 1em;
    transform: rotate(45deg);
}

#offcanvas_search {
    position: fixed;
    top: 0px;
    left: 0px;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    z-index: 999;
    display: none;
    color: #fff;
}

#offcanvas_search #search_top {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50%;
    -webkit-transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    -moz-transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    -ms-transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    -o-transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);

    transform: translate3d(0, -100%, 0);
    /*background: #242E7C;*/
    background: rgba(36, 46, 124, 0.95);
    /*top: -100%;*/
}

#offcanvas_search #search_bottom {
    background: rgba(255, 255, 255, .95);
    color: #1B1F3A;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50%;
    -webkit-transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    -moz-transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    -ms-transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    -o-transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    /*bottom: -100%;*/
    transform: translate3d(0, 200%, 0);
    /*top: 50%;*/
}

#offcanvas_search.search_open {
    display: block;
    /*display: flex;*/
}

/*
#offcanvas_search.search_open #search_top{
    top: 0;
}

#offcanvas_search.search_open #search_bottom{
    bottom: 0;
}*/

#offcanvas_search.search_open #search_top {
    transform: translate3d(0, 0, 0);
    z-index: 9;
}

#offcanvas_search.search_open #search_bottom {
    transform: translate3d(0, 100%, 0);
}

#offcanvas_search form {
    position: relative;
}

#offcanvas_search button {
    position: absolute;
    right: 1em;
    top: 1.5em;
    -webkit-appearance: none;
    background: #fff;
    -webkit-mask-image: url(../ima/template/arrow-right.svg);
    -webkit-mask-size: cover;
    mask-image: url(../ima/template/arrow-right.svg);
    mask-size: cover;
    height: 32px;
    width: 32px;
    outline: none;
    border: 0;
}

#offcanvas_search input[type="text"] {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: none;
    color: #fff;
    border: 0;
    border-bottom: 1px solid #fff;
    width: 100%;
    padding: 15px 0;
    outline: none;
    text-align: center;
    font-size: 32px;
    border-radius: 12px;
}

#offcanvas_search input[type="text"]::placeholder {
    color: #fff;
}

#search_top small {
    text-align: right;
    width: 100%;
    display: block;
    margin-top: 5px;
}

#search_bottom h5 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

#search_bottom h3 {
    margin-top: 30px;
}

#search_bottom .btn-default {
    margin-top: 20px;
    width: max-content;
}

#search_bottom i {
    background: #1B1F3A;
    color: #fff;
    border-radius: 100%;
    font-size: 24px;
    height: 42px;
    width: 42px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1em;
}

#search_bottom .menu_footer a {
    color: #1B1F3A;
}

#logo {
    /*padding: 10px 0;*/
    /*MEDIANDMORE*/
    padding: 0 0 10px 0;
}

#logo_image .logo_content {
    text-align: center;
}

#logo_image .logo_content img {
    width: 320px;
}

#floating_menus {
    display: flex;
    justify-content: flex-end;
}

#floating_menus>div:first-child,
#floating_menus>div:nth-child(2) {
    margin-right: 15px;
}

.header_search {
    align-self: center;
}

.header_search form {
    position: relative;
}

.header_search button {
    position: absolute;
    right: 5px;
    top: 1px;
    -webkit-appearance: none;
    height: 32px;
    width: 32px;
    outline: none;
    background: transparent;
    border: 0;
    /*color: #fff;*/
    color: #252f7c;
    outline: none;
}

.header_search input[type="text"] {
    /*background: rgba(255, 255, 255, 0.25);*/
    background: rgba(255, 255, 255, 1);
    box-shadow: none;
    /*color: #fff;*/
    color: #252f7c;
    border: 0;
    /*border-bottom: 1px solid #fff;*/
    width: 100%;
    padding: 5px 15px;
    outline: none;
    text-align: left;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 0 #252f7c;
}

.header_search input[type="text"]::placeholder {
    color: #252f7c;
}

#header #social {
    display: flex;
    align-items: center;
}

#header #social .social_content nav a {
    margin-right: 5px;
    display: inline-block;
}

#header #social .social_content nav a i {
    font-size: 16px;
    color: #242e7c;
    background: #fff;
    border-radius: 100%;
    line-height: 1em;
    border: 2px solid #fff;
    text-align: center;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

#header #social .social_content nav a i:hover,
#header #social .social_content nav a i:focus,
#header #social .social_content nav a i:active {
    color: #fff;
    background: transparent;
}

#header #social .social_content nav a i.fa-twitter,
#header #social .social_content nav a i.fa-youtube {
    padding: 5px 7px;
}

#user_choice {
    /*position: absolute;
    top: 7px;
    left: 0;
    z-index: 9;*/
    position: relative;
    left: 1em;
}

#user_choice button {
    cursor: pointer;
    -webkit-appearance: none;
    font-size: 14px;
    font-weight: 600;
    color: #242E7C;
    border-radius: 4px;
    background: #fff;
    padding: 3px 10px;
}

#user_choice button span {
    margin-right: 5px;
}

#modal_user_choice,
#modal_ask_product_available {
    color: #373A3C;
}

#modal_user_choice .modal-body,
#modal_ask_product_available .modal-body {
    padding: 0 1rem;
    overflow: hidden;
}

#modal_user_choice .modal-body>.row,
#modal_ask_product_available .modal-body>.row {
    cursor: pointer;
}

#modal_user_choice .modal-content,
#modal_ask_product_available .modal-content {
    border-radius: 12px;
}

#modal_user_choice .modal-header,
#modal_ask_product_available .modal-header {
    display: block;
    text-align: center;
    border: 0;
}

#modal_user_choice .modal-header .modal-title,
#modal_ask_product_available .modal-header .modal-title {
    color: #242E7C;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

#modal_ask_product_available .modal-header .modal-title {
    font-size: 28px;
}

#modal_user_choice .modal-header p {
    text-transform: uppercase;
    font-size: 18px;
    margin: 0;
}

#modal_ask_product_available .modal-body p {
    /*text-transform: uppercase;*/
    font-size: 16px;

}

#modal_user_choice .row {
    background: #F3F5FB;
    padding: 20px;
    overflow: hidden;
    position: relative;
}

#modal_user_choice .row:last-child {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

#modal_user_choice .row:before {
    content: "";
    transition: all .15s ease-in-out;
    background: #009FE3;
    width: 100%;
    display: block;
    position: absolute;
    height: 100%;
    left: -100%;
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#modal_user_choice .row:hover:before {
    left: 0;
    opacity: 1;
}

#modal_user_choice .row:hover,
#modal_user_choice .row:focus,
#modal_user_choice .row:active {
    /*background:#009FE3;*/
    color: #fff;
}

.user_choice_icons {
    width: auto;
    height: 90px;
    mask-size: cover;
    background-color: #242E7C;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.atleta_row {
    -webkit-mask-image: url(../ima/template/atleti_icon.svg);
    mask-image: url(../ima/template/atleti_icon.svg);
}

.societa_row {
    -webkit-mask-image: url(../ima/template/societa_icon.svg);
    mask-image: url(../ima/template/societa_icon.svg);
}

.enti_row {
    -webkit-mask-image: url(../ima/template/enti_icon.svg);
    mask-image: url(../ima/template/enti_icon.svg);
}

#modal_user_choice .row:hover .user_choice_icons,
#modal_user_choice .row:focus .user_choice_icons,
#modal_user_choice .row:active .user_choice_icons {
    background-color: #fff;
}

#modal_user_choice button {
    -webkit-mask-image: url(../ima/template/arrow-right.svg);
    -webkit-mask-size: cover;
    mask-image: url(../ima/template/arrow-right.svg);
    mask-size: cover;
    color: #fff;
    height: 26px;
    width: 26px;
    opacity: 0;
    right: -200%;
    position: relative;
    background: #fff;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#modal_user_choice .row:hover button,
#modal_user_choice .row:focus button,
#modal_user_choice .row:active button {
    right: 0;
    opacity: 1;
}

#modal_user_choice .row h6 {
    text-transform: uppercase;
    color: #242E7C;
    font-size: 18px;
    font-weight: 600;
}

#modal_user_choice .row:hover h6,
#modal_user_choice .row:focus h6,
#modal_user_choice .row:active h6 {
    color: #fff;
}

#modal_user_choice .row small {
    display: block;
}

#floating_menus .cart {
    position: relative;
}

#floating_menus .menu #menu_toggler,
#cart_toggler,
#wishlist a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    justify-content: center;
    padding: 0;
    line-height: 0;
    font-size: 22px;
    color: #242e7c;
    background: #fff;
    border-radius: 100%;
    border: 2px solid #fff;
    box-shadow: 3px 3px 0px rgba(36, 46, 124, 0.35);
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

#floating_menus .notifier {
    width: 12px;
    height: 12px;
    background: #F74549;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 100%;
}

#floating_menus>div {
    position: relative;
}

#wishlist a {
    /*cursor: pointer;
    font-size: 22px;
    color: #242e7c;
    background: #fff;
    padding: 5px 7px;
    border-radius: 100%;
    line-height: 1em;
    border: 2px solid #fff;
    text-align: center;
    display: inline-block;
    box-shadow: 3px 3px 0px rgba(36, 46, 124, 0.35);*/
}

#wishlist a:hover,
#wishlist a:focus,
#wishlist a:active {
    text-decoration: none;
}

#wishlist i {}

#cart_toggler {
    /*cursor: pointer;
    font-size: 22px;
    color: #242e7c;
    background: #fff;
    padding: 5px 7px;
    border-radius: 100%;
    line-height: 1em;
    border: 2px solid #fff;
    text-align: center;
    display: inline-block;
    box-shadow: 3px 3px 0px rgba(36, 46, 124, 0.35);*/
    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}


#cart_toggler.cart_toggler_open i {
    position: relative;
}

#cart_toggler.cart_toggler_open i {
    position: relative;
    width: 100%;
    height: 100%;
}

#cart_toggler.cart_toggler_open i:before {
    content: "+";
    font-size: 42px;
    line-height: 0;
    transform: rotate(45deg);
    position: absolute;
    left: 30%;
    top: 40%;
    font-weight: 200;
}

/*#floating_menus .cart:hover #cart_header, #floating_menus .cart:focus #cart_header, #floating_menus .cart:active #cart_header*/
#floating_menus #cart_header.cart_open {
    display: block;
    opacity: 1;
    /*transform-origin: 90% -25px;*/
    /*transform: scale(1);
    /*-webkit-transition:all .15s ease-in-out;
    -moz-transition:all .15s ease-in-out;
    -ms-transition:all .15s ease-in-out;
    -o-transition:all .15s ease-in-out;
    transition:all .15s ease-in-out;*/
}

#cart_header {
    display: none;
    opacity: 0;
    color: #373A3C;
    font-size: 12px;
    width: 250px;
    height: 250px;
    position: absolute;
    z-index: 9;
    right: 0;
    top: 50px;
    transform-origin: 90% -25px;
    /*transform: scale(0);
    
    -webkit-transition:all .15s ease-in-out;
    -moz-transition:all .15s ease-in-out;
    -ms-transition:all .15s ease-in-out;
    -o-transition:all .15s ease-in-out;
    transition:all .15s ease-in-out;*/
}

#cart_header .cart_container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .5);
}

#cart_header .cart_title {
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    padding-left: 20px;
    padding-top: 20px;
    margin-bottom: 10px;
}

#cart_header .cart_content {
    display: flex;
    align-items: flex-start;
    padding: 0 20px 20px 20px;
    justify-content: space-between;
    border-bottom: 1px solid #ededed;
}

#cart_header .cart_content:not(:first-child) {
    padding-top: 20px;
}

#cart_header .cart_thumb {
    width: 60px;
    height: 60px;
}

#cart_header .cart_thumb img {
    border: 1px solid #D8D8D8;
    width: 100%;
}

#cart_header .cart_details {}

#cart_header .cart_details .item_title {
    font-size: 14px;
    font-weight: 600;
}

#cart_header .cart_details .item_qty {
    font-size: 12px;
    font-weight: 200;
}

#cart_header .cart_details .item_price {
    font-size: 14px;
    font-weight: 600;
}

#cart_header .cart_detele {
    color: #fff;
    background: #fb5f60;
    padding: 0px 4px;
    border-radius: 2px;
}

#cart_header .cart_totals {
    padding: 5px 20px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    /*border-top:1px solid #D8D8D8;*/
    border-bottom: 1px solid #D8D8D8;
    text-transform: uppercase;
}

#cart_header .cart_totals span {}

#cart_header .cart_actions {
    display: flex;
    align-items: center;
    padding: 20px;
}

#cart_header .cart_actions a {
    /*font-size: 12px;
    padding:5px;*/
    font-size: 12px;
    padding: 5px 10px;
    text-align: center;
    margin: 0 auto;
    text-transform: uppercase;
}

#floating_menus .menu {
    position: relative;
}

#floating_menus .menu #menu_toggler {
    /*cursor: pointer;
    font-size: 22px;
    color: #242e7c;
    background: #fff;
    padding: 7px 6px;
    border-radius: 100%;
    line-height: 1em;
    border: 2px solid #fff;
    text-align: center;
    display: inline-block;
    box-shadow: 3px 3px 0px rgba(36, 46, 124, 0.35);*/
}

#floating_menus .menu #menu_header {
    display: none;
    width: 250px;
    position: absolute;
    right: 0;
    z-index: 9;
    transform-origin: 90% -25px;
}

#floating_menus .menu #menu_header nav {
    border-radius: 20px;
    background: #242E7C;
    box-shadow: 0 0 20px rgba(0, 0, 0, .5);
    padding: 20px;
}

#floating_menus .menu #menu_header nav a {
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1em;
}

#floating_menus .menu #menu_header nav a:last-child {
    margin: 0;
}

#menu {}


#menu .main_menu {
    padding: 0px;
    background: rgba(255, 255, 255, 0.21176470588235294);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 2px 5px 8px 0px rgba(0, 0, 0, 0.25);
}

#menu .main_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#menu .main_menu ul.level0>li:first-child {
    display: none;
}

#menu .main_menu ul>li {
    display: inline-block;
    margin: 0;
    padding: 0 10px;
    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

#menu .main_menu ul.level0>li>a>div:first-letter,
#menu .main_menu ul.level0>li>span>div:first-letter {
    display: block;
    text-transform: capitalize;
}

#menu .main_menu ul.level0>li>a,
#menu .main_menu ul.level0>li>span {
    /*line-height: 65px;*/
    /*position: relative;
    text-transform: capitalize;
    max-width: 100px;
    display: inline-block;
    word-break: break-word;
    line-height: 1em;
    text-align: center;
    vertical-align: middle;*/
    /* line-height: 65px; */
    position: relative;
    /*text-transform: capitalize;*/
    max-width: 110px;
    display: inline-block;
    word-break: break-word;
    line-height: 1em;
    text-align: center;
    vertical-align: middle;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 5px;
    overflow: hidden;
    /*background: red;*/
}

#menu .main_menu ul.level0>li>a:after {
    content: "";
    width: 100%;
    height: 100%;
    /*display: none;*/
    opacity: 0;
    top: -100%;
    /*background: #fff;*/
    background: rgba(255, 255, 255, 0.90);
    position: absolute;
    left: 0;
    z-index: -1;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#menu .main_menu ul.level0>li:hover>a:after {
    /*display: block;*/
    opacity: 1;
    top: 0;
}

#menu .main_menu ul.level0>li {
    /*    padding: 10px;
    display: table-cell;
    cursor: pointer;*/
    padding: 0;
    /* display: table-cell; */
    cursor: pointer;
    display: inline-flex;
    align-self: center;
    vertical-align: middle;
    height: 62px;
    margin: 0px 5px;
}

#menu .main_menu ul.level0>li:nth-child(2) {
    padding-left: 15px;
}

#menu .main_menu ul.level0>li:nth-child(2):hover,
#menu .main_menu ul.level0>li:nth-child(2):focus #menu .main_menu ul.level0>li:nth-child(2):active {
    border-bottom-left-radius: 8px;
}

#menu .main_menu ul.level0>li:hover,
#menu .main_menu ul.level0>li:focus,
#menu .main_menu ul.level0>li:active {
    /*background: white;*/
}

#menu .main_menu ul.level0>li:hover a:after,
#menu .main_menu ul.level0>li:focus a:after,
#menu .main_menu ul.level0>li:active a:after {
    /*display: none;
    bottom: -47px;
    left: 22%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #ffffff;
    border-width: 12px;
    margin-left: 0;*/
}

#menu .main_menu ul.level0>li:hover>a,
#menu .main_menu ul.level0>li:hover>span,
#menu .main_menu ul.level0>li:focus>a,
#menu .main_menu ul.level0>li:focus>span,
#menu .main_menu ul.level0>li:active>a,
#menu .main_menu ul.level0>li:active>span {
    text-shadow: none;
    color: #252f7c;
    text-decoration: none;
}

#menu .main_menu .child_menu {
    display: none;
    position: absolute;
    /*top: 100%;*/
    left: 0;
    overflow: hidden;
    width: 100%;
    /*top: -100%;*/
    top: 0;
    opacity: 0;
    transform: translateY(-100%);
    -webkit-transition: all .2s cubic-bezier(0.2, 1, 0.3, 1);
    -moz-transition: all .2s cubic-bezier(0.2, 1, 0.3, 1);
    -ms-transition: all .2s cubic-bezier(0.2, 1, 0.3, 1);
    -o-transition: all .2s cubic-bezier(0.2, 1, 0.3, 1);
    transition: all .2s cubic-bezier(0.2, 1, 0.3, 1);
}

#menu .main_menu .child_menu .child_menu_tip {
    top: -9px;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: rgba(255, 255, 255, 0.95);
    border-width: 12px;
    margin-left: -12px;
}

#menu .main_menu ul.level0>li:hover .child_menu,
#menu .main_menu ul.level0>li:focus .child_menu,
#menu .main_menu ul.level0>li:active .child_menu {
    display: flex;
    top: 100%;
    opacity: 1;
    transform: translateY(0%);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#menu .main_menu .child_menu .level1 li>a:after {}

#menu .main_menu .child_menu_content {
    /*display: none;*/
    background: rgba(255, 255, 255, 0.99);
    /*padding: 20px;*/
    margin: 15px;
    border-radius: 12px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    min-height: 200px;
}

.child_menu_image {
    background-size: cover;
    width: 100%;
    height: 100%;
    background-position: center;
}

#menu .main_menu .child_menu ul {
    column-count: 4;
    padding: 20px 10px;
}

#menu .main_menu .child_menu li {
    display: block;
    position: relative;
}

#menu .main_menu .child_menu li a,
#menu .main_menu .child_menu li span {
    color: #373A3C;
    text-shadow: none;
    /*text-transform: capitalize;*/
    line-height: 1.1em;
    display: block;
    margin-bottom: 10px;
    position: relative;
}

#menu .main_menu .child_menu li a>div:first-letter,
#menu .main_menu .child_menu li span>div:first-letter {
    display: block;
    text-transform: capitalize;
}

#menu .main_menu ul li a,
#menu .main_menu ul li span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 3px 6px rgba(0, 0, 0, .15);
}

#all_menu_toggler div {
    cursor: pointer;
    position: absolute;
    right: 16px;
    text-transform: uppercase;
    width: 105px;
    text-align: center;
    top: 1px;
    white-space: unset;
    word-break: break-word;
    line-height: 1em;
    background: #009FE3;
    height: 62px;
    border-bottom-right-radius: 8px;
    display: flex;
    align-items: center;
}

#all_menu_toggler div span {
    padding: 0px 15px;
}

#homepage_slideshow {
    min-height: 700px;
    height: 700px;
    padding: 0;
}

#homepage_slideshow .swiper-container {
    /*width: 100%;*/
}

.slideshow_content .container.swiper-nav {
    position: relative;
}

.slideshow_content .container .swiper-arrows {
    position: absolute;
    bottom: 10em;
    right: 1em;
}

.slideshow_content .container .swiper-arrows .swiper-products-button-prev {
    right: 2em;
}

#homepage_slideshow .swiper-wrapper {
    height: 700px;
}

.homepage_slideshow_slide_bg {
    height: 710px;
    background-size: cover;
    position: absolute;
    width: 100%;
    background-position: center;
}

.slideshow_slide_content {
    position: absolute;
    bottom: 15em;
    max-width: calc(100vw - 50%);
}

.slideshow_slide_content *:not(.btn-white) {
    color: #fff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, .5);
}

.slideshow_slide_content h2 {
    font-size: 62px;
    line-height: 1;
    color: #fff;
}

.slideshow_slide_content h4 {
    font-size: 24px;
    color: #fff;
}

.slideshow_slide_content .btn-white {
    margin-top: 20px;
    margin-left: 0;
}

#homepage_slideshow:after {
    content: "";
    width: 100%;
    height: 360px;
    position: absolute;
    z-index: 1;
    top: 0;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#242e7c+0,000000+100&0.65+0,0+100 */
    background: -moz-linear-gradient(top, rgba(36, 46, 124, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(36, 46, 124, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(36, 46, 124, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6242e7c', endColorstr='#00000000', GradientType=0);
    /* IE6-9 */
}


#homepage_cta {
    position: absolute;
    margin: 0 auto;
    width: 100%;
    z-index: 9;
    pointer-events: none;
}

#homepage_cta>.container {
    position: relative;
    top: -7em;
}

.homepage_cta_content {
    background: rgba(27, 31, 58, 0.9);
    padding: 20px;
    border-radius: 20px;
    color: #fff;
    pointer-events: all;
}

.homepage_cta_content i {
    background: #fff;
    padding: 10px 13px;
    color: #1B1F3A;
    border-radius: 100%;
    font-size: 28px;
}

.homepage_cta_content i.fa-envelope {
    padding: 10px 11px;
}

.homepage_cta_content span {
    font-size: 14px;
}

.homepage_cta_content span a {
    color: #fff;
}

.homepage_cta_content span strong {
    font-size: 16px;
}

#homepage_plus {
    background: #242E7C;
    text-align: center;
    padding: 40px 0;
    color: #fff;

    background: linear-gradient(178deg, #009fe3, #242e7c);
    background-size: 400% 400%;

    -webkit-animation: AnimationName 10s ease infinite;
    -moz-animation: AnimationName 10s ease infinite;
    animation: AnimationName 10s ease infinite;
}

@-webkit-keyframes AnimationName {
    0% {
        background-position: 52% 0%
    }

    50% {
        background-position: 49% 100%
    }

    100% {
        background-position: 52% 0%
    }
}

@-moz-keyframes AnimationName {
    0% {
        background-position: 52% 0%
    }

    50% {
        background-position: 49% 100%
    }

    100% {
        background-position: 52% 0%
    }
}

@keyframes AnimationName {
    0% {
        background-position: 52% 0%
    }

    50% {
        background-position: 49% 100%
    }

    100% {
        background-position: 52% 0%
    }
}

.category-layout #homepage_plus,
.marchi-layout #homepage_plus,
.marchi-layout#homepage_plus {
    background: #009FE3;

    background: linear-gradient(178deg, #009fe3, #242e7c);
    background-size: 400% 400%;

    -webkit-animation: AnimationName 10s ease infinite;
    -moz-animation: AnimationName 10s ease infinite;
    animation: AnimationName 10s ease infinite;
}

#homepage_plus .row>div:nth-child(1):after,
#homepage_plus .row>div:nth-child(2):after {
    content: "";
    width: 1px;
    height: 100px;
    background: #fff;
    position: absolute;
    top: 10%;
    right: 0;
}

#homepage_plus .row>div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.homepage_plus_title,
.homepage_plus_title a {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
}

.homepage_plus_title a:hover,
.homepage_plus_title a:focus,
.homepage_plus_title a:active {
    color: #fff;
}

#homepage_categories,
#homepage_prodotti,
#homepage_brands {
    background: #F3F5FB;
}

#homepage_categories .row>div {
    margin-top: 15px;
    padding-left: 7px;
    padding-right: 7px;
}

#homepage_categories .homepage_category_content {
    position: relative;
}

.homepage_category_bg:before {
    content: "";
    background: rgba(39, 52, 68, 0.4);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    border-radius: 20px;
    z-index: 1;
    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.homepage_category_content:hover .homepage_category_bg:before,
.homepage_category_content:focus .homepage_category_bg:before,
.homepage_category_content:active .homepage_category_bg:before {
    background: rgba(39, 52, 68, 0.8);
}

.homepage_category_bg {
    overflow: hidden;
    border-radius: 20px;
}

.homepage_category_bg img {
    width: 100%;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.homepage_category_bg:hover img,
.homepage_category_bg:focus img,
.homepage_category_bg:active img,
.homepage_category_content:hover .homepage_category_bg img,
.homepage_category_content:focus .homepage_category_bg img,
.homepage_category_content:active .homepage_category_bg img {
    transform: scale(1.2);
    transform-origin: center;
    border-radius: 20px;
    z-index: 0;
}

.homepage_category_desc {
    position: absolute;
    color: #fff;
    text-align: center;
    bottom: 2em;
    margin: 0 auto;
    width: 100%;
    z-index: 2;
}

#homepage_prodotti {
    /*position: relative;*/
    padding-bottom: 30px;
    padding-top: 30px;
    padding-right: 0;
    padding-left: 0;
}

#homepage_prodotti .container-fluid {
    overflow-x: hidden;
}

#homepage_prodotti .row {
    margin: 0;
}

.swiper-products-container {
    position: relative;
}

.swiper-products-button-prev,
.swiper-products-button-next {
    background: #009FE3;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    z-index: 9;
    padding: 5px;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.swiper-products-button-prev:hover,
.swiper-products-button-prev:focus,
.swiper-products-button-prev:active,
.swiper-products-button-next:hover,
.swiper-products-button-next:focus,
.swiper-products-button-next:active {
    background: #242E7C;
}

.swiper-products-button-prev {
    transform: rotate(180deg);
}

.swiper-products-button-prev div,
.swiper-products-button-next div {
    display: block;
    width: 100%;
    height: 100%;
}

.swiper-products-button-prev div {
    -webkit-mask-image: url(../ima/template/arrow-right.svg);
    -webkit-mask-size: cover;
    mask-image: url(../ima/template/arrow-right.svg);
    mask-size: cover;
    background: #fff;
}

.swiper-products-button-next {
    right: 0;
}

.swiper-products-button-next div {
    -webkit-mask-image: url(../ima/template/arrow-right.svg);
    -webkit-mask-size: cover;
    mask-image: url(../ima/template/arrow-right.svg);
    mask-size: cover;
    background: #fff;
}

.module_center_title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1em;
    text-align: center;
    margin-bottom: 30px;
}

.article_list_item {
    background: #fff;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
    text-align: center;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.article_list_item:hover,
.article_list_item:focus,
.article_list_item:active {
    transform: translate(0px, -15px);
}

.article_img {
    position: relative;
}

.article_img:after {
    content: "";
    height: 1px;
    width: 70%;
    margin: 0 auto;
    display: block;
    background: #EBEAEA;
    margin-top: 10px;
}

.article_img img {
    width: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.article_badge_container {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
}

.article_img .article_badge {
    text-transform: uppercase;
    font-size: 12px;
    padding: 0px 10px;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
    border-radius: 4px;
    margin-right: 5px;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.article_badge.new_article {
    /*background: #FF5858;*/
    background: rgba(255, 88, 88, 0.9);
}

.article_badge.promo_article,
.article_badge.offerta_quantita_article {
    /*background: #28AC01;*/
    background: rgba(40, 172, 1, 0.9);
}

.article_badge.saldo_article {
    /*background: #F6BA2B;*/
    background: rgba(246, 186, 43, 0.9);
    color: #252525;
}

.article_content {
    padding: 15px;
}

.article_cat {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: #009FE3;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article_code {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: #242E7C;
    margin-bottom: 10px;
}

.article_title {
    font-size: 16px;
    color: #373A3C;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    /*text-transform: lowercase;*/
}

.article_title>div:first-letter {
    /*text-transform: capitalize;*/
}

.category-layout .article_title {
    /*height: auto;*/
}

.article_price {
    color: #373A3C;
    font-size: 18px;
    font-weight: 700;
    height: 48px;
}

.article_price .price_changed,
.item_details .item_form .item_price .price_changed {
    text-decoration: line-through;
    font-style: italic;
    font-weight: 600;
    color: #F86064;
    display: block;
}

.article_cta a {
    background: #009FE3;
    border-radius: 4px;
    text-transform: uppercase;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    padding: 5px 15px;
    margin-top: 10px;
    border: 2px solid #009FE3;
    text-decoration: none;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.article_cta i {
    margin-left: 5px;
}

.article_cta a:hover,
.article_cta a:focus,
.article_cta a:active {
    background: #fff;
    color: #009FE3;
}

.article_delete a {
    background: #FA6060;
    border-radius: 4px;
    /*text-transform: uppercase;*/
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    padding: 5px 15px;
    margin-top: 10px;
    border: 2px solid #FA6060;
    text-decoration: none;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.article_delete i {
    margin-left: 5px;
}

.article_delete a:hover,
.article_delete a:focus,
.article_delete a:active {
    background: #fff;
    color: #FA6060;
}

.all_articles_link {
    margin-top: 20px;
    margin-bottom: -40px;
}

.mobile_product .article_list_item {
    display: flex;
    text-align: left;
    align-items: center;
    margin-bottom: 20px;
}

.mobile_product .article_img {
    width: 50%;
}

.mobile_product .article_img img {
    border-top-right-radius: 0;
    border-bottom-left-radius: 12px;
}

.mobile_product .article_img:after {
    display: none;
}

.mobile_product .article_cat {
    height: auto;
    justify-content: flex-start;
}

.mobile_product .article_title {
    height: auto;
}

#homepage_enti_cta {
    padding-top: 100px;
    padding-bottom: 40px;
}

#homepage_featured {
    padding-bottom: 30px;
}

#homepage_featured .row .row>div {
    margin-bottom: 20px;
    margin-top: 20px;
}

#homepage_featured .featured_title a {
    font-size: 20px;
    font-weight: 700;
    color: #373A3C;
    margin-top: 20px;
    display: block;
}

.catalogue-module {
    text-align: center;
}

.catalogue-module img {
    margin-bottom: 20px;
    max-width: 100%;
}

.catalogue-module h3 a {
    font-size: 32px;
    color: #373A3C;
}

#homepage_brands {
    position: relative;
    margin-top: 60px;
}

#homepage_brands .all_articles_link {
    margin-bottom: 30px;
    margin-top: 20px;
}

#homepage_brands .brand a {
    display: grid;
    justify-content: center;
    position: relative;
    margin-bottom: 60px;
}

#homepage_brands .brand img {
    mix-blend-mode: multiply;
    max-width: 100%;
    height: 62px;
    width: auto;
    object-fit: contain;
}

#homepage_brands .brand h5 {
    text-transform: uppercase;
    margin-top: 14px;
    font-size: 16px;
    font-weight: 800;
    color: #212529;
    margin: 0;
    position: absolute;
    bottom: -40px;
    text-align: center;
    width: 100%;
}

#shipping_module {
    background: transparent url(../ima/homepage/shipping-hero.jpg);
    background-size: cover;
    padding-top: 120px;
    padding-bottom: 120px;
    text-align: center;
    color: #fff;
    position: relative;
    background-attachment: fixed;
}

#shipping_module:before {
    content: "";
    background: rgba(39, 52, 68, 0.2);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

#footer {
    color: #fff;
    padding-top: 40px;
    padding-bottom: 20px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#232d7b+0,12173f+100 */
    background: rgb(35, 45, 123);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(35, 45, 123, 1) 0%, rgba(18, 23, 63, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(35, 45, 123, 1) 0%, rgba(18, 23, 63, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(35, 45, 123, 1) 0%, rgba(18, 23, 63, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#232d7b', endColorstr='#12173f', GradientType=0);
    /* IE6-9 */
}

.footer_module_title {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

#footer span {
    font-size: 14px;
    font-weight: 300;
    display: flex;
    align-items: baseline;
    margin-top: 5px;
}

#footer span i {
    margin-right: 10px;
    display: inline-block;
}

#footer span a {
    color: #fff;
}

#footer .logo_footer img {
    width: 100%;
}

.footer_bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #fff;
}

#footer .btn-white {
    margin-left: 0;
    margin-top: 20px;
}

#form_newsletter {
    margin-top: 20px;
    position: relative;
}

#form_newsletter input[type="text"],
#form_newsletter select {
    background: transparent;
    box-shadow: none;
    color: #fff;
    border: 1px solid #fff;
    width: 100%;
    outline: none;
}

#form_newsletter input[type="text"] {
    padding: 18px 15px;
}

#form_newsletter option {
    background: rgba(35, 45, 123, 1);
}

#form_newsletter input[type="text"]::placeholder {
    color: #fff;
}

#form_newsletter input[type="text"]::placeholder,
#form_newsletter input[type="text"]:-ms-input-placeholder,
#form_newsletter input[type="text"]::-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1;
    /* Firefox */
}

#form_newsletter label {
    display: flex;
    margin-top: 10px;
    line-height: 1.2em;
}

#form_newsletter label span {
    display: block;
}

#form_newsletter label span a {
    text-decoration: underline;
}

#form_newsletter input {
    -webkit-appearance: none;
    background: transparent;
    border: 1px solid #fff;
    padding: 10px;
    width: 24px;
    height: 24px;
    position: relative;
    top: 5px;
    margin-right: 10px;
    outline: none;
}

#form_newsletter input:checked:after {
    content: "+";
    position: absolute;
    outline: none;
    transform: rotate(45deg);
    color: #fff;
    font-size: 30px;
    top: 0;
    left: 2px;
    font-weight: 100;
}

#form_newsletter .field-newsletterform-email.required.has-error .help-block {
    background: #fb5f60;
    padding: 5px;
    font-size: 12px;
    line-height: 1.2em;
    text-align: center;
    border-radius: 6px;
    width: 100%;
    margin: 15px 0 10px;
}

#form_newsletter .form-group.field-newsletterform-privacy.has-error .help-block {
    position: absolute;
    background: #fb5f60;
    padding: 5px;
    font-size: 12px;
    line-height: 1.2em;
    text-align: center;
    border-radius: 6px;
    bottom: -5em;
}

#footer .social_content {
    text-align: right;
}

#footer .social_content nav a {
    margin: 0 5px;
    font-size: 18px;
    color: #fff;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#footer .social_content nav a:hover,
#footer .social_content nav a:focus,
#footer .social_content nav a:active {
    text-decoration: none;
    color: #009FE3;
}

.footer_credits {
    /*text-transform: uppercase;*/
    font-size: 14px;
    font-weight: 200;
}

.footer_credits span {
    /*display: none;*/
    display: inline !important;
}

.footer_credits a {
    text-decoration: underline;
    color: #fff;
}

.menu_footer nav a {
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1em;
}


#header_image {
    height: 250px;
    padding: 0;
}

#header_image:after {
    content: "";
    width: 100%;
    height: 200px;
    position: absolute;
    z-index: 1;
    top: 0;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#242e7c+0,000000+100&0.65+0,0+100 */
    background: -moz-linear-gradient(top, rgba(36, 46, 124, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(36, 46, 124, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(36, 46, 124, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6242e7c', endColorstr='#00000000', GradientType=0);
    /* IE6-9 */
}

#header_image .header_bg {

    /*background-position: center;*/
    /*background-size: contain;
    background-attachment: fixed;

    background-position: top;
    background-repeat: no-repeat;*/


    height: 100%;
    background-size: cover;
    background-attachment: scroll;
    background-position: bottom;
    background-repeat: no-repeat;
}

#breadcrumbs {
    background: #242E7C;
    padding: 5px 0;
}

#breadcrumbs .breadcrumbs nav a {
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    margin-right: 5px;
    position: relative;
}

#breadcrumbs .breadcrumbs nav a:not(.active-item):after {
    content: "|";
    margin-left: 10px;
    position: relative;
    top: -1px;
}

#breadcrumbs .breadcrumbs nav a.active-item {
    color: #009FE3;
}

#breadcrumbs h1 {
    font-size: 14px;
    margin: 0;
    padding: 0;
    font-weight: 600;
}

#main_content {
    padding-top: 30px;
    padding-bottom: 30px;
}

#filtro_ricerca {
    padding: 10px;
    border: 1px solid #F3F5FB;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

#filtro_ricerca #filtro_toggler {
    /*font-size: 22px;*/
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    font-weight: 600;
    background: #252f7c;
    border-radius: 6px;
    padding: 5px 0;
    /*margin-bottom: 20px;*/
    font-size: 16px;
    display: none;
}

#filtro_ricerca #filtro_toggler span {
    margin-right: 10px;
}

#filtro_ricerca .js-remove-filters {
    width: 100%;
    text-transform: uppercase;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px !important;
    display: block;
    background: #FA6060;
    border: 2px solid #FA6060;
    outline: none;
}

#filtro_ricerca .js-remove-filters:hover,
#filtro_ricerca .js-remove-filters:focus,
#filtro_ricerca .js-remove-filters:active {
    color: #FA6060;
    background: transparent;
}

#filtro_ricerca .filtro_content>div {
    margin-bottom: 20px;
}

#filtro_ricerca .filter_title {
    font-size: 12px;
    font-weight: 600;
    color: #242E7C;
    text-transform: uppercase;
}

#filtro_ricerca input[type="text"],
#filtro_ricerca select {
    border-radius: 8px;
    background-color: #F3F5FB;
    border: 1px solid #F0F0F0;
    width: 100%;
    padding: 5px;
    font-size: 14px;
}

#filtro_ricerca .all_options {
    display: none;
}

#filtro_ricerca .show_all_filter {
    color: #009FE3;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

#filtro_ricerca .show_all_filter i {
    margin-right: 10px;
}

#filtro_ricerca .categories_filter {
    margin-bottom: 0;
}

#filtro_ricerca .categories ul {
    list-style: none;
    padding: 0;
}

#filtro_ricerca .categories ul li {
    font-size: 14px;
    list-style: none;
    font-weight: 300;
    padding-top: 3px;
    padding-bottom: 3px;
    position: relative;
}

#filtro_ricerca .categories ul li a {
    color: #6E6E6E;
    /*text-transform: capitalize;*/
}

#filtro_ricerca .categories ul li a>div:first-letter {
    text-transform: capitalize;
}

#filtro_ricerca .categories>ul>li {
    font-weight: 600;
}

#filtro_ricerca .categories ul ul li {
    padding-left: 10px;
}

#filtro_ricerca .categories ul ul>li {}

#filtro_ricerca .categories ul ul ul li {
    padding-left: 10px;
}

#filtro_ricerca .categories ul ul ul>li {}

#filtro_ricerca .categories li.select_filter {
    border-bottom: 2px solid #EBEAEA;
}

#filtro_ricerca .categories li.select_filter>span:before {
    content: "";
    background: #F3F5FB;
    width: 200%;
    position: absolute;
    height: 100%;
    top: 0;
    left: -4em;
    z-index: -1;
}

#filtro_ricerca .categories li.select_filter>span {
    position: relative;
    display: block;
    padding: 5px 0;
}

#filtro_ricerca .categories li.select_filter>span a>div:first-letter {
    text-transform: capitalize;
}

#filtro_ricerca .categories li.select_filter>span a {
    /*background: #F3F5FB;*/
    color: #242E7C;
}

#filtro_ricerca .categories li.select_filter>span .item_counter {
    background: #373A3C;
    color: #fff;
}

#filtro_ricerca .categories li li.select_filter ul a {
    font-weight: 600;
}

#filtro_ricerca .categories .item_counter {
    font-size: 10px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    /*background: #373A3C;
    color: #fff;*/
    background: #faf8f9;
    color: #6E6E6E;
    padding: 3px 6px;
    line-height: 1em;
    border-radius: 10px;
    position: absolute;
    right: 0;
    top: 7px;
}

#filtro_ricerca .categories li li.select_filter>ul li span .item_counter {
    /*display: none;*/
    right: -5em;
    opacity: 0;
    background: #373A3C;
    color: #fff;
    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

#filtro_ricerca .categories li li.select_filter>ul li:hover span .item_counter {
    display: block;
    opacity: 1;
    right: 0;
}

#filtro_ricerca input[type="checkbox"] {
    width: 20px;
    height: 20px;
    background: #F8F8F8;
    border: 1px solid #F0F0F0;
    -webkit-appearance: none;
    margin-right: 10px;
    position: relative;
    outline: none;
}

#filtro_ricerca input[type="checkbox"]:checked:after {
    content: "+";
    position: absolute;
    outline: none;
    transform: rotate(45deg);
    color: #6E6E6E;
    font-size: 30px;
    top: -14px;
    left: 1px;
    font-weight: 100;
    outline: none;
}

#filtro_ricerca label.brand_filter_checkbox {
    /*font-size: 14px;*/
    font-size: 12px;
    color: #6E6E6E;
    font-weight: 400;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.pagination {
    justify-content: center;
    margin-top: 20px;
}

.pagination li {}

.page-item.disabled {
    /*font-size: 0;*/
    opacity: .4;
}

.pagination li span {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.page-item:first-child span {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.pagination li:first-child:before {
    content: "";
    height: 1px;
    background: #DDDDDD;
    position: absolute;
    left: 0;
    width: 30%;
    top: 50%;
}

.pagination li:last-child:after {
    content: "";
    height: 1px;
    background: #DDDDDD;
    position: absolute;
    right: 0;
    width: 30%;
    top: 50%;
}

.pagination li a,
.pagination li span {
    font-size: 14px;
    font-weight: 400;
    color: #373A3C;
}

.pagination li.page-item.active a {
    color: #fff;
    background: #242E7C;
    border-color: #242E7C;
}

.item_details_image {
    border: 1px solid #E2E2E2;
    border-radius: 12px;
    text-align: center;
    padding: 10px;
}

.item_details_image .swiper-slide img {
    width: 100%;
}

.item_details_image .swiper-slide img.video_thumbnail {
    height: 100%;
}

.item_details_image .article_badge_container {
    right: 10px;
    left: auto;
}

.item_details_image .article_badge {
    /*position: absolute;
    top: 10px;
    right: 10px;*/
    text-transform: uppercase;
    font-size: 12px;
    padding: 0px 10px;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
    border-radius: 4px;

    margin-right: 5px;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.item_details .product_breadcrumbs {
    font-size: 14px;
    color: #373A3C;
    margin-bottom: 20px;
}

.item_details .product_breadcrumbs nav a:not(:last-child):after {
    content: " / ";
}

.item_details .item_description {
    margin-top: 20px;
}

.item_details .pdf_file_download {
    margin-top: 20px;
    background: #f3f5fb;
    text-align: center;
    display: flex;
    justify-content: center;
    border-radius: 8px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.item_details .pdf_file_download a {
    display: flex;
    align-items: center;
    font-weight: 700;
}

.item_details .pdf_file_download a:hover,
.item_details .pdf_file_download a:focus,
.item_details .pdf_file_download a:active {
    text-decoration: none;
}

.item_details .pdf_file_download svg {
    width: 32px;
    margin-right: 10px;
}

.item_details .pdf_file_download span {
    font-size: 14px;
    text-transform: uppercase;
    color: #242E7C;
}

.item_details .pdf_file_download:hover,
.item_details .pdf_file_download:focus,
.item_details .pdf_file_download:active {
    background: #242E7C;
}

.item_details .pdf_file_download:hover svg #Path_3,
.item_details .pdf_file_download:focus svg #Path_3,
.item_details .pdf_file_download:active svg #Path_3 {
    fill: #fff;
}

.item_details .pdf_file_download:hover svg #Union_1,
.item_details .pdf_file_download:focus svg #Union_1,
.item_details .pdf_file_download:active svg #Union_1 {
    fill: #242E7C;
}

.item_details .pdf_file_download:hover span,
.item_details .pdf_file_download:focus span,
.item_details .pdf_file_download:active span {
    color: #fff;
}

.item_details .product_breadcrumbs nav {}

.item_details .product_breadcrumbs nav a {
    display: inline-block;
    color: #373A3C;
    text-transform: capitalize;
}

.item_details .product_breadcrumbs nav a:nth-child(2) {
    font-weight: 600;
}

.item_details .product_breadcrumbs nav a:last-child {
    color: #242E7C;
    text-transform: uppercase;
}

.item_details .item_header .item_title {
    font-size: 24px;
    font-weight: 600;
    color: #373A3C;
    /*margin-top: 20px;*/
}

.item_details .item_header .item_code {
    font-size: 14px;
    font-weight: 600;
    color: #373A3C;
}

.item_details .item_header .item_code span {
    color: #373A3C;
    font-weight: 400;
}

.item_details .item_header .item_description {
    margin: 20px 0;
}

.item_details .product_detail_brand img {
    max-height: 70px;
    max-width: 100%;
}

.item_details .item_form {}

.item_details .item_form .select_variant {
    display: flex;
    align-items: center;
}

.item_details .item_form .select_variant {
    margin-top: 10px;
}

.item_details .item_form .select_variant label {
    margin: 0;
    padding-right: 20px;
}

.item_details .item_form .tabella_misura_link span {
    font-size: 12px;
    line-height: 1.1em;
    display: block;
}

.item_details .item_form .tabella_misura_link a {
    color: #009FE3;
}

.item_details .item_form label {
    font-size: 12px;
    text-transform: uppercase;
    color: #373A3C;
    font-weight: 600;
}

.item_details .item_form select {
    font-size: 14px;
    color: #373A3C;
    border-radius: 6px;
    border: 1px solid #242E7C;
}

.item_details .item_form input.qty_items {
    font-size: 14px;
    color: #373A3C;
    border: 1px solid #242E7C;
    padding: 5px;
    width: 60px;
    border-radius: 6px;
    text-align: center;
}

.item_details .item_form .item_price {
    font-size: 22px;
    color: #242E7C;
    font-weight: 600;
    line-height: 1.2;
}


.item_details .item_form .item_price .notice {
    color: #F86064;
    margin-top: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.item_details .item_form small {
    line-height: 1.1em;
    display: block;
    margin-top: 10px;
    font-size: 12px;
}

.item_details .item_form small.price_changed {
    margin: 0;
}

.item_details .item_form .multiple_discount {}

.item_details .item_form .multiple_discount ul {
    font-size: 12px;
    color: #373A3C;
    padding: 0;
    list-style: none;
}

.item_details .btn-default.btn-cart {
    margin: 0px auto 10px auto;
    text-transform: uppercase;
    font-size: 14px;
}

.item_details .btn-default.btn-cart i {
    margin-left: 10px;
}

#modal_price_area {}

#modal_price_area .modal-header {
    background: #242E7C;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
}

#modal_price_area .modal-title {
    text-align: center;
    margin: 0 auto;
    width: 100%;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
}

#modal_price_area .modal-header button.close {
    float: none;
    color: #fff;
    text-shadow: none;
    opacity: 1;
    position: absolute;
    right: 1em;
    margin: 0 !important;
}

#modal_price_area .modal-content {
    background: transparent;
}

#modal_price_area .modal-body {
    padding: 0;
    background: #fff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

#modal_price_area .table-bordered td,
#modal_price_area .table-bordered th {
    border: 0;
}

#modal_price_area .table-responsive .table tr:first-child td:not(:first-child) {
    font-weight: 400;
}

#modal_price_area table tr td:first-child {
    font-weight: 600;
    padding-left: 20px;
}

#modal_price_area table tr:nth-child(even) {
    background: #fafafa;
}

#js-added-to-cart-msg.alert-success {
    color: #242E7C;
    background-color: #F3F5FB;
    border-color: #F3F5FB;
    display: flex;
    align-items: center;
}

#js-added-to-cart-msg.alert-success button {
    opacity: 1;
}

#js-added-to-cart-msg.alert-success button span {
    color: #242E7C;
    opacity: 1;
    text-shadow: none;
}

.border-divider {
    width: 100%;
    display: block;
    height: 1px;
    background: #F0F0F0;
    margin: 20px 0;
}

.item_sharing .row>div {
    display: flex;
    align-items: center;
}

.item_sharing label {
    font-size: 12px;
    text-transform: uppercase;
    margin: 0;
    margin-right: 20px;
}

.item_sharing nav.sharing {}

.item_sharing nav.sharing a {
    margin-right: 5px;
}

.item_sharing nav.sharing a:hover,
.item_sharing nav.sharing a:focus,
.item_sharing nav.sharing a:active {
    text-decoration: none;
}

.item_sharing nav.sharing a i {
    width: 32px;
    height: 32px;
    display: inline-block;
    background: #009FE3;
    color: #fff;
    font-size: 20px;
    border-radius: 4px;
    padding: 5px;
    text-align: center;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.item_sharing nav.sharing a i:hover,
.item_sharing nav.sharing a i:focus,
.item_sharing nav.sharing a i:active {
    background: #242E7C;
}

.product_shop_plus {
    margin-top: 20px;
    margin-bottom: 20px;
}

.product_plus {
    border-radius: 12px;
    background: red;
    /* text-align: center; */
    padding: 10px 20px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin: 5px;
    height: 65px;
}

.product_plus img {
    margin-right: 10px;
}

.product_plus.preventivo {
    background: #F3F5FB;
    color: #242E7C;
}

.product_plus.consegne {
    color: #fff;
    background: #242E7C;
}

.product_plus.pagamenti {
    color: #fff;
    background: #FA6060;
}

.product_plus.spedizione {
    color: #fff;
    background: #009FE3;
}

#related_products {
    background: #F3F5FB;
    position: relative;
    margin-top: 60px;
    padding-bottom: 30px;
}

#related_products .container.article_list {
    overflow: hidden;
    position: relative;
}



.cart_header,
.cart_values .d-md-none {
    font-size: 12px;
    text-transform: uppercase;
    color: #373A3C;
    padding-bottom: 5px;
    border-bottom: 1px solid #F0F0F0;
    font-weight: 600;
}

.cart_values .d-md-none {
    border-bottom: 0;
}

.cart_header>div:last-child {
    text-align: right;
}

.cart_values {
    padding-top: 10px;
    padding-bottom: 10px;
}

.cart_values:not(:last-child):after {
    content: "";
    width: 100%;
    height: 1px;
    background: #F3F5FB;
    margin: 0 15px;
    margin-top: 20px;
}

.cart_values .cart_item {
    display: flex;
}

.cart_values .cart_item * {}

.cart_values .cart_item img {
    width: 100px;
    height: 100px;
    border-radius: 4px;
    border: 1px solid #6E6E6E;
    margin-right: 10px;
}

.cart_values .cart_item .cart_item_details {}

.cart_values .cart_item .cart_item_details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #242E7C;
}

.cart_values .cart_item .cart_item_details h3:first-letter {
    text-transform: capitalize;
}

.cart_values .cart_item .cart_item_details h5 {
    font-size: 16px;
    font-weight: 400;
    color: #242E7C;
    margin-bottom: 10px;
}

.cart_values .cart_item .cart_item_details .cart_item_single_price {
    font-size: 14px;
    color: #6E6E6E;
}

.cart_values .cart_item_options {
    padding: 0;
    list-style: none;
}

.cart_values .cart_item_options li {
    font-size: 14px;
    font-weight: 600;
    display: block;
    color: #6E6E6E;
}

.cart_values .cart_item_options li span {
    font-weight: 400;
}

.cart_values #cart_qty {
    display: flex;
    align-items: center;
}

.cart_values #cart_qty input {
    background: #F3F5FB;
    box-shadow: none;
    border: 1px solid #F0F0F0;
    padding: 7px;
    text-align: center;
    width: 100px;
    font-size: 14px;
    color: #6E6E6E;
    margin-right: 10px;
    border-radius: 4px;
}

.cart_values #cart_qty #cart_item_delete {
    padding: 4px 11px;
    background: #FA6060;
    color: #fff;
    border-radius: 4px;
    border: 2px solid #FA6060;
}

.cart_values #cart_qty #cart_item_delete:hover,
.cart_values #cart_qty #cart_item_delete:focus,
.cart_values #cart_qty #cart_item_delete:active {
    color: #FA6060;
    background: #fff;
}

.cart_values .item_price {
    font-size: 22px;
    font-weight: 600;
    color: #373A3C;
    text-align: right;
}

.buttons-left {
    display: flex;
    align-items: center;
}

.buttons-left>*:first-child {
    margin-right: 10px;
}

.buttons-right {
    text-align: right;
}

.cart_actions {
    margin-top: 20px;
    margin-bottom: 20px;
}

.cart_totals {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #F3F5FB;
}

.cart_totals small {
    line-height: 1.4;
    display: block;
}

.cart_totals_price {
    text-align: right;
    font-size: 18px;
    font-size: 600;
}

.cart_totals.order_total {
    background: #F3F5FB;
    font-size: 18px;
    font-weight: 600;
    color: #373A3C;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.emptyCart {
    justify-content: center;
    text-align: center;
}

.emptyCart a {
    width: max-content;
    margin: 0 auto;
}

.content_box {
    border-radius: 12px;
    padding: 20px;
    background: #F3F5FB;
    margin-bottom: 20px;
}

.content_box.light_box {
    background: #f8faff;
}

.content_box h4,
.content_box h1,
.content_box h2 {
    font-weight: 600;
    font-size: 24px;
}

.boxed_module {
    height: 100%;
    align-items: center;
    display: grid;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

.boxed_module .box_module_title {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 500;
}

.boxed_module .btn-default,
.boxed_module .btn-red,
.boxed_module .btn-white {
    margin: 0;
    display: flex;
    width: max-content;
    align-items: center;
}

.boxed_module .box_module_illustration {
    padding: 10px;
}

.boxed_module .box_module_illustration i {
    font-size: 62px;
    position: absolute;
    right: 30px;
    bottom: 20px;
}

.dark_box {
    background: #242E7C;
    color: #fff;
}

.dark_box .box_module_illustration {
    color: #fff;
}

.light_box {
    background: #F3F5FB;
    color: #373A3C;
}

.light_box .box_module_illustration {
    color: #FA6060;
}

.light_box small {
    margin-bottom: 20px;
    display: block;
}

.light_box small a {
    color: #009FE3;
}

#coupon_form {}

#coupon_form label {
    font-size: 12px;
    text-transform: uppercase;
    display: block;
    margin-top: 20px;
}

#coupon_form input {
    border-radius: 8px;
    border: 1px solid #242E7C;
    background: #fff;
    padding: 6px 10px;
    width: 100%;
    margin-bottom: 20px;
}

#coupon_form button {
    margin-left: 0;
    margin-bottom: 40px;
}

#coupon_form small a {
    color: #fff;
}

.checkout_login_links nav {
    margin-top: 20px;
}

.login_form .checkout_login_links nav {
    margin-top: 0px;
}

.checkout_login_links nav a {
    display: table;
    color: #373A3C;
    font-size: 14px;
    font-weight: 600;
}

.login_form .checkout_login_links nav a {
    display: inline-block;
}

.login_form .checkout_login_links nav span:last-child a {
    color: #009FE3;
}

.login_form button[type="submit"] {
    float: right;
}

.login_form label:not(.custom-control-label) {
    font-size: 12px;
    text-transform: uppercase;
    color: #242E7C;
    font-weight: 600;
    margin-bottom: 5px;
}

.login_form input {
    border: 1px solid #242E7C;
    border-radius: 8px;
    font-weight: 200;
}

.checkout_login_links nav span {
    display: block;
    color: #373A3C;
    font-size: 14px;
    font-weight: 600;
}

.checkout-layout {
    color: #373A3C;
}

.checkout-layout .btn-red,
.checkout-layout .btn-default {
    display: flex;
    align-items: center;
    width: max-content;
}

.checkout-layout h4 {
    font-weight: 600;
    color: #373A3C;
    font-size: 20px;
}

.checkout-layout .order_result {
    font-size: 32px;
    margin-bottom: 20px;
}

.checkout-layout input[type="text"],
.checkout-layout input[type="email"],
.checkout-layout input[type="password"],
.checkout-layout textarea {
    border: 1px solid #242E7C;
    border-radius: 8px;
    font-weight: 200;
}

.checkout-layout select.form-control:not([size]):not([multiple]) {
    border: 1px solid #242E7C;
    border-radius: 8px;
    font-weight: 200;
}

.checkout-layout label:not(.custom-control-label) {
    font-size: 12px;
    text-transform: uppercase;
    color: #242E7C;
    font-weight: 600;
    margin-bottom: 5px;
}

.checkout-layout label.custom-control-label {
    color: #373A3C;
    font-size: 16px;
}

.checkout-layout label.custom-control-label::before {
    border-radius: 100%;
}

.checkout-layout label.custom-control-label a {
    color: #373A3C;
    font-weight: 600;
}

form .required label:not(.custom-control-label):after {
    content: "*";
    color: rgba(250, 96, 96, 0.9);
    display: inline-block;
    margin-left: 5px;
}

form .payment_method label:after {
    display: none;
    opacity: 0;
}

form .payment_method label span:after {
    /*content: "*";
    color: rgba(250, 96, 96, 0.9);
    display: inline-block;
    margin-left: 5px;*/
}

.checkout-layout .form-group .required.has-error,
.checkout-layout .form-group .has-error,
.edit_account .has-error,
#registration_form div:not(.custom-checkbox).has-error {
    position: relative;
    margin-bottom: 50px;
    width: auto;
}

.checkout-layout .form-group .required.has-error .help-block.help-block-error,
.checkout-layout .form-group .has-error .help-block.help-block-error,
.edit_account .has-error .help-block.help-block-error,
#registration_form .has-error .help-block.help-block-error {
    color: #fff;
    font-size: 85%;
    line-height: 1.2;
    display: block;
    float: none;
    position: absolute;
    bottom: -50px;
    background: rgba(250, 96, 96, 0.9);
    /* width: 100%; */
    padding: 5px 10px;
    border-radius: 6px;
    left: 1em !important;
    z-index: 9;
}

.field-order-valsalice_course.has-error .help-block.help-block-error,
.field-order-valsalice_class.has-error .help-block.help-block-error,
.field-order-valsalice_student_name.has-error .help-block.help-block-error,
.field-order-valsalice_parent_name.has-error .help-block.help-block-error {
    color: #fff;
    font-size: 85%;
    line-height: 1.2;
    display: block;
    float: none;
    position: absolute;
    bottom: -10px;
    background: rgba(250, 96, 96, 0.9);
    /* width: 100%; */
    padding: 5px 10px;
    border-radius: 6px;
    left: 1em;
    z-index: 9;
}

#registration_form .custom-control-inline.has-error .help-block.help-block-error {
    color: rgba(250, 96, 96, 0.9);
    font-size: 85%;
    line-height: 1.2;
    display: block;
    float: none;
    /* position: absolute; */
    /* bottom: -50px; */
    background: transparent;
    /* width: 100%; */
    padding: 5px 10px;
    border-radius: 6px;
    /* left: 100%; */
    z-index: 9;
    margin: 0;
    right: 0;
    width: 300px;
    position: relative;
    top: -3px;
}

.payment_method.has-error .help-block.help-block-error {
    /*color: #fff;*/
    font-size: 85%;
    line-height: 1.2;
    display: block;
    float: none;
    position: relative;
    bottom: -30px;
    color: rgba(250, 96, 96, 0.9);
    /* width: 100%; */
    padding: 0;
    border-radius: 6px;
    left: 0;
    z-index: 9;
    width: max-content;
    margin: 0 auto;
}

.checkout-layout .form-group.required.has-error,
.checkout-layout .form-group.has-error {
    position: relative;
    margin-bottom: 50px;
    width: auto;
}

/*.checkout-layout .form-group.required.has-error .help-block.help-block-error,
.checkout-layout .form-group.has-error .help-block.help-block-error {
    color: #fff;
    font-size: 85%;
    line-height: 1.2;
    display: block;
    float: none;
    position: absolute;
    bottom: -50px;
    background: rgba(250, 96, 96, 0.9);
    /* width: 100%; */
/*padding: 5px 10px;
    border-radius: 6px;
    left: 0;
    z-index: 9;
}*/

/*.field-user-password.required.has-error .help-block.help-block-error,
.field-user-password_repeat.required.has-error .help-block.help-block-error,
.field-profile-nome.required.has-error .help-block.help-block-error,
.field-profile-cognome.required.has-error .help-block.help-block-error,
.field-loginform-password.required.has-error .help-block.help-block-error,
.field-loginform-username.required.has-error .help-block.help-block-error {
    color: #fff;
    font-size: 85%;
    line-height: 1.2;
    display: block;
    float: none;
    /* position: absolute; */
/* bottom: -50px; */
/*background: rgba(250, 96, 96, 0.9);
    /* width: 100%; */
/*padding: 5px 10px;
    border-radius: 6px;
    left: 0;
    z-index: 9;
    width: max-content;
    margin-top: 10px;
}*/

.has-error .help-block.help-block-error {
    color: #fff;
    font-size: 85%;
    line-height: 1.2;
    display: block;
    float: none;
    /* position: absolute; */
    /* bottom: -50px; */
    background: rgba(250, 96, 96, 0.9);
    /* width: 100%; */
    padding: 5px 10px;
    border-radius: 6px;
    left: 0;
    z-index: 9;
    width: max-content;
    margin-top: 10px;
}

.custom-control.custom-checkbox.required.has-error {
    position: relative;
    margin-bottom: 30px;
    width: 100%;
}

.custom-control.custom-checkbox.required.has-error .help-block.help-block-error {
    color: #fff;
    font-size: 85%;
    line-height: 1.2;
    display: block;
    float: none;
    position: absolute;
    top: 2em;
    background: rgba(250, 96, 96, 0.9);
    width: 100%;
    padding: 5px 10px;
    border-radius: 6px;
    left: 0;
    z-index: 9;
}

.payment_method {
    margin-bottom: 40px;
}

.payment_method input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    width: 100%;
    height: 100%;
    outline: none;
}

.payment_method label {
    width: 200px;
    height: 100px;
    width: 100%;
    cursor: pointer;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: inset 0 0 0 0px #242E7C;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.payment_method label:hover,
.payment_method label:focus,
.payment_method label:active {
    box-shadow: inset 0 0 0 2px #242E7C;
}

.payment_method input:checked+label {
    box-shadow: inset 0 0 0 2px #242E7C;
}

.payment_method label span {
    display: block;
    position: absolute;
    bottom: -30px;
    text-align: center;
    width: 100%;
}

.payment_method #payment_contrassegno {}

.payment_method label.payment_contrassegno {
    background-image: url(../ima/template/payment_icon_contrassegno.svg);
}

.payment_method label.payment_bonifico {
    background-image: url(../ima/template/payment_icon_bonifico.svg);
}

.payment_method label.payment_online {
    background-image: url(../ima/template/payment_icon_online.svg);
}

textarea {
    resize: none !important;
}

#cart_summary {}

#cart_summary .cart_summary_header {
    font-size: 12px;
    text-transform: uppercase;
    color: #242E7C;
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 1px solid #373A3C;
}

#cart_summary .cart_summary_value {
    font-size: 18px;
    padding: 5px 0;
    border-bottom: 1px solid #373A3C;
}

#cart_summary .cart_summary_value>div:first-child {
    padding-right: 0;
}

#cart_summary .cart_summary_value:nth-child(odd) {
    background: #fff;
}

.cart_summary_item_detail h6 {
    font-size: 16px;
    color: #242E7C;
    font-weight: 600;
    margin: 0;
}

.cart_summary_item_detail small {
    font-size: 12px;
}

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

#cart_summary .cart_summary_totals {
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
}

#cart_summary .cart_summary_totals .total_cart {
    font-size: 18px;
}

#checkout_submit {
    margin: 0 auto;
    text-transform: uppercase;
}

.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
    height: auto;
    padding-right: 0 !important;
    background-image: none;
    border-radius: 12px;
    padding: 10px 0;
    border: 1px solid #242E7C;
}

.custom-select[multiple] option,
.custom-select[size]:not([size="1"]) option {
    padding: 10px 20px;
    font-size: 14px;
}

.page_header_title {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 600;
}

.input-group .form-control {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.input-group .input-group-addon {
    padding: .5rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25;
    color: #fff;
    text-align: center;
    background-color: #242E7C;
    border: 1px solid #242E7C;
    border-radius: 8px;
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group .input-group-addon * {
    color: #fff;
}

.registration_form label:not(.custom-control-label) {
    font-size: 12px;
    text-transform: uppercase;
    color: #242E7C;
    font-weight: 600;
    margin-bottom: 5px;
}

.registration_form input {
    border: 1px solid #242E7C;
    border-radius: 8px;
    font-weight: 200;
}

#registration_form select.form-control:not([size]):not([multiple]) {
    border: 1px solid #242E7C;
    border-radius: 8px;
    font-weight: 200;
}

.registration_form label.custom-control-label {
    color: #373A3C;
    font-size: 16px;
}

.registration_form label.custom-control-label a {
    color: #373A3C;
    font-weight: 600;
}

.registration_form button[type="submit"] {
    margin: 0 auto;
    text-transform: uppercase;
}

.order_detail>div {
    background: #FAFBFD !important;
    /*padding: 0;*/
    border-radius: 12px;
}

.order_detail>div>.row {
    margin: 0;
    background: transparent !important;
}

.order_detail .cart_summary_header {
    padding: 10px 0 !important;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0;
    border-bottom: 1px solid #ededed;
}

.order_detail .cart_summary_header>div {
    margin-bottom: 0 !important;
}

.order_detail>div>.row.cart_summary_value {
    background: #fff !important;
}

.order_detail .total_cart {
    font-weight: 600;
}

.account_data {}

.account_data span {
    display: block;
    font-size: 14px;
}

.account_data h6 {
    font-size: 14px;
    text-transform: uppercase;
    color: #373A3C;
    font-weight: 600;
    margin-top: 20px;
}

.account_data hr {
    border-top: 1px solid #D2D2D1;
}

.account_data a.btn-default {
    text-transform: uppercase;
    margin: 0 auto;
    display: table;
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
}

.nav-tabs .nav-link {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
}

.my_orders {}

.my_orders h4 {
    font-size: 24px;
    font-weight: 600;
    padding-top: 20px;
}

.my_orders .row {
    padding-bottom: 10px;
    padding-top: 20px;
    /*border-bottom: 1px solid #D2D2D1;*/
}

/*.my_orders > .row:nth-child(odd){
    background: #FAFBFD;
    border-top: 5px solid #ededed
}*/

.my_orders>.row {
    /*background: #FAFBFD;*/
    border-bottom: 3px solid #ededed
}

.my_orders>.row:first-child {
    border: 0;
}

.my_orders .row>div {
    margin-bottom: 10px;
}

.my_orders .row h6 {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}

.my_orders .row a {
    color: #242E7C;
    font-weight: 600;
}

.my_orders .row span {}

.my_orders .row span.order_value {
    font-size: 18px;
    color: #242E7C;
    font-weight: 600;
}

.my_orders .view_order a {
    display: table;
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
}

.my_orders .view_order a:hover,
.my_orders .view_order a:focus,
.my_orders .view_order a:active {
    color: #242E7C;
}

.my_orders .view_order a i {
    margin-left: 10px;
}

.my_quotes {}

.view_quote {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.my_orders .view_quote.view_order .btn-red:hover,
.my_orders .view_quote.view_order .btn-red:focus,
.my_orders .view_quote.view_order .btn-red:active {
    color: #FA6060;
}


#edit_account_submit {
    /*float: right;*/
}

#edit_account_form button {
    text-transform: uppercase;
    font-size: 14px;
}

#edit_account_form label:not(.custom-control-label) {
    font-size: 12px;
    text-transform: uppercase;
    color: #242E7C;
    font-weight: 600;
    margin-bottom: 5px;
}

#edit_account_form input {
    border: 1px solid #242E7C;
    border-radius: 8px;
    font-weight: 200;
}

#edit_account_form label.custom-control-label {
    color: #373A3C;
    font-size: 16px;
}

#edit_account_form label.custom-control-label a {
    color: #373A3C;
    font-weight: 600;
}

.custom-control-input:disabled~.custom-control-label::before {
    background-color: #dee2e6 !important;
}

.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: #007bff !important;
}

.custom-control-input:disabled~.custom-control-label {
    color: #373A3C !important;
    opacity: 1;
}

#edit_account_form select.form-control:not([size]):not([multiple]) {
    border: 1px solid #242E7C;
    border-radius: 8px;
    font-weight: 200;
}

#edit_account_form .input-group>input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.gallery-top .swiper-slide {
    align-self: center;
}

.gallery-thumbs {
    margin-top: 20px !important;
}

.gallery-thumbs .swiper-wrapper {
    justify-content: center;
}

.gallery-thumbs .swiper-slide {
    width: 48px !important;
    height: 48px;
    border-radius: 4px;
    border: 1px solid #6E6E6E;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .6;
    cursor: pointer;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.gallery-thumbs .swiper-slide:hover,
.gallery-thumbs .swiper-slide:focus,
.gallery-thumbs .swiper-slide:active {
    opacity: .8;
}

.gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
}

.item_details_image .swiper-products-button-prev,
.item_details_image .swiper-products-button-next {
    background: transparent;
}

.swiper-products-button-prev:hover,
.swiper-products-button-prev:focus,
.swiper-products-button-prev:active,
.swiper-products-button-next:hover,
.swiper-products-button-next:focus,
.swiper-products-button-next:active {
    background: #242E7C;
}

.item_details_image .swiper-products-button-prev div {
    background: #242E7C;
}

.item_details_image .swiper-products-button-next div {
    background: #242E7C;
}

.item_details_image .swiper-products-button-prev:hover div,
.item_details_image .swiper-products-button-prev:focus div,
.item_details_image .swiper-products-button-prev:active div,
.item_details_image .swiper-products-button-next:hover div,
.item_details_image .swiper-products-button-next:focus div,
.item_details_image .swiper-products-button-next:active div {
    background: #fff;
}

.brand_container {
    margin-bottom: 30px;
    position: relative;
}

.brand_container:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.brand_container img {
    display: block;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 30px;
    width: 100%;
    max-width: 160px;
    max-height: 100px;
    width: auto;
}

.brand_content {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: inset 0 0 0 2px #242E7C;
    align-content: center;
    display: grid;
    border-radius: 12px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.brand_content:hover {
    box-shadow: inset 0 0 0 10px #242E7C;
}

.brand_content h5 {
    text-transform: uppercase;
    margin-top: 14px;
    font-size: 16px;
    font-weight: 800;
    color: #212529;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
}

.brand_content a:hover,
.brand_content a:focus,
.brand_content a:active {
    text-decoration: none;
}

.article-page {}

.article-page h1 {
    margin-bottom: 30px;
}

.article-page h6:before {
    content: "";
    width: 130px;
    height: 2px;
    background: #242E7C;
    display: block;
    margin-bottom: 10px;
}

.article-page h6 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: #242E7C;
    margin-bottom: 10px;
    margin-top: 20px;
}

.article-page div:not(.content_box)>h4 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    color: #009FE3;
    margin-bottom: 0px;
    margin-top: 20px;
}

.article-page a {
    color: #009FE3;
}

ol:not([type="a"]) {
    margin: 0 0 1.5em;
    padding: 0;
    counter-reset: item;
}

ol:not([type="a"])>li {
    margin: 0;
    padding: 0 0 0 2em;
    text-indent: -1em;
    list-style-type: none;
    counter-increment: item;
}

ol:not([type="a"])>li:before {
    display: inline-block;
    width: 1em;
    padding-right: 0.5em;
    font-weight: bold;
    text-align: right;
    content: counter(item) ".";
    color: #242E7C;
}

ol[type="a"]>li {
    padding: 0 0 0;
    text-indent: 0;
}


.article-page .double_column {
    column-count: 2;
    column-gap: 40px;
    display: block;
}

.article-page .notes small {
    display: block;
    margin-bottom: 10px;
}

.wrap-map {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: -30px;
    height: 450px;
    margin-top: 30px;
}

.contact-layout {}

.contact-layout .content_box {
    height: 100%;
    margin-bottom: 0;
}

.contact-layout .content_box span {
    display: flex;
    align-items: baseline;
    margin-top: 5px;
}

.contact-layout .content_box span a {
    color: #212529;
}

.contact-layout .content_box span i {
    margin-right: 10px;
    display: inline-block;
    color: #009FE3;
}

.contact-layout .content_box small {
    display: block;
    margin-top: 20px;
}

.contact-layout .content_box .btn-default {
    color: #fff;
    margin-top: 20px;
    width: max-content;
}

.contact-layout .content_box.light_box p:last-child {
    margin-bottom: 0;
}

#accordion {}

#accordion .card {
    border: none;
}

#accordion .card:first-child .card-header {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

#accordion .card:last-child .card-header {
    border-bottom: 0;
}

#accordion .card .card-header {
    padding: 10px;
    margin-bottom: 0;
    background-color: #F3F5FB;
    border-bottom: 2px solid #242E7C;
}

#accordion .card button {
    width: 100%;
    color: #242E7C;
}

#accordion .card button:hover,
#accordion .card button:focus,
#accordion .card button:active {
    text-decoration: none;
}

#accordion .card button .row>div:first-child {
    display: flex;
    align-items: center;
}

#accordion .card button h4 {
    margin: 0;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    margin-right: 20px;
}

#accordion .card button i {
    font-size: 28px;
}


#accordion .card button.collapsed .accordion_toggle_icon:after {
    content: "+";
    font-size: 42px;
    font-weight: 200;
    line-height: 1em;
    position: absolute;
    transform: rotate(0deg);
    top: -5px;
    right: 10px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#accordion .card button .accordion_toggle_icon:after {
    content: "+";
    font-size: 42px;
    font-weight: 200;
    line-height: 1em;
    transform: rotate(135deg);
    position: absolute;
    top: -5px;
    right: 10px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#accordion .document_row {
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #F3F5FB;
}

.document_row img {
    /*width: 100%;*/
}

.document_row img.dl-item-img {
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.document_row .btn-default,
#accordion .row .btn-default {
    width: max-content;
}

.dl-item-title,
.dl-item-title a {
    color: #242E7C;
}

#accordion .row.text-center>div {
    margin-bottom: 20px;
}

#accordion .row.text-center img {
    width: 80px;
    margin-bottom: 20px;
}

#accordion .row.text-center .btn-default {
    margin: 0 auto;
    font-size: 12px;
}

#accordion .row.text-center .dl-item-title,
#accordion .row.text-center .dl-item-title a {
    font-size: 16px;
}

#accordion .row.text-center .document_box {
    background: #F3F5FB;
    border-radius: 12px;
    padding: 20px;
}

#sidebar_right nav a {
    color: #212529;
    font-size: 18px;
    display: block;
    line-height: 1.1em;
    margin-bottom: 10px;
}

#sidebar_right nav a.anchor_active {
    color: #242E7C;
}

.table-responsive {
    font-size: 13px;
}

.table-responsive .table td,
.table-responsive .table th {
    padding: 10px 5px;
    border-top: 1px solid #fff;
}

.table-responsive .table tr td:first-child {
    text-transform: uppercase;
}

.table-responsive .table tr:first-child td:not(:first-child),
.table-responsive .table .td-largo {
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid #fff;
    vertical-align: middle;
}

.table-responsive .table th.td-largo {
    text-align: center;
    border: 2px solid #fff;
}

.tabelle_misura-layout .row h3 {
    font-weight: 600;
    text-align: center;
    padding-top: 20px;
    border-top: 3px solid #e6e6e6;
    background: #f9f9f9;
    padding-bottom: 20px;
}

.tabelle_misura-layout img:not([alt="misure"]) {
    max-width: 160px;
}

@media screen and (min-width:0\0) {
    .cart_toggler_open#cart_toggler i::before {
        top: 0;
        left: -12px;
    }

    #modal_user_choice .modal-dialog {
        height: 100%;
    }

    #modal_user_choice button {
        border: 0;
        background: transparent url(../ima/template/arrow-right.svg) no-repeat center;
        right: 0;
        opacity: 1
    }

    .atleta_row {
        background: transparent url(../ima/template/atleti_icon.svg) no-repeat center;
    }

    .societa_row {
        background: transparent url(../ima/template/societa_icon.svg) no-repeat center;
    }

    .enti_row {
        background: transparent url(../ima/template/enti_icon.svg) no-repeat center;
    }

    #modal_user_choice .row:hover,
    #modal_user_choice .row:focus,
    #modal_user_choice .row:active {
        color: inherit;
    }

    #modal_user_choice .row:before {
        display: none;
    }

    #modal_user_choice .row:hover .user_choice_icons.enti_row,
    #modal_user_choice .row:focus .user_choice_icons.enti_row,
    #modal_user_choice .row:active .user_choice_icons.enti_row {
        background: transparent url(../ima/template/enti_icon.svg) no-repeat center;
    }

    #modal_user_choice .row:hover .user_choice_icons.societa_row,
    #modal_user_choice .row:focus .user_choice_icons.societa_row,
    #modal_user_choice .row:active .user_choice_icons.societa_row {
        background: transparent url(../ima/template/societa_icon.svg) no-repeat center;
    }

    #modal_user_choice .row:hover .user_choice_icons.atleta_row,
    #modal_user_choice .row:focus .user_choice_icons.atleta_row,
    #modal_user_choice .row:active .user_choice_icons.atleta_row {
        background: transparent url(../ima/template/atleti_icon.svg) no-repeat center;
    }

    #modal_user_choice .row:hover h6,
    #modal_user_choice .row:focus h6,
    #modal_user_choice .row:active h6 {
        color: inherit;
    }

    .btn-arrow-right:after {
        display: none;
    }

    .btn-white,
    .btn-cyan,
    .btn-red {
        width: auto;
        max-width: 200px;
        display: block;
        text-align: center;
        margin: 0 auto;
    }

    #shipping_module .btn-white {
        max-width: 400px;
    }

    #top {
        background: #fff;
    }

    #top:after {
        background: transparent url(../ima/template/arrow-right.svg) no-repeat center;
    }

    #offcanvas_search button {
        border-radius: 20px;
        border-width: 0;
        background: #fff url(../ima/template/arrow-right.svg) no-repeat center;
    }

    #offcanvas_search #search_top {
        justify-content: inherit;
    }

    #search_bottom .btn-default {
        width: auto;
        max-width: 200px;
    }

    .swiper-products-button-prev,
    .swiper-products-button-next {
        background: #fff;
    }

    .swiper-products-button-prev:hover,
    .swiper-products-button-prev:focus,
    .swiper-products-button-prev:active,
    .swiper-products-button-next:hover,
    .swiper-products-button-next:focus,
    .swiper-products-button-next:active {
        background: #fff;
    }

    .swiper-products-button-prev div,
    .item_details_image .swiper-products-button-prev div {
        background: #fff url(../ima/template/arrow-right.svg) no-repeat center;
    }

    .swiper-products-button-next div,
    .item_details_image .swiper-products-button-next div {
        background: #fff url(../ima/template/arrow-right.svg) no-repeat center;
    }

    .boxed_module .btn-default,
    .boxed_module .btn-red,
    .boxed_module .btn-white {
        display: block;
        text-align: center;
        max-width: 200px;
    }

    #form_newsletter input[name="newsletter_privacy"] {
        width: auto;
        height: auto;
    }

    html.sitemap_offcanvas_html_open {
        overflow: hidden;
    }

    .item_details .product_detail_brand img {
        max-height: 99999px;
    }

    .brand_content {
        display: block;
        padding: 20px;
        vertical-align: middle;
        height: auto;
    }

    .contact-layout .content_box .btn-default,
    .document_row .btn-default,
    #accordion .row .btn-default {
        text-align: center;
        max-width: 200px;
        display: block;
    }
}

@media not all and (min-resolution:.001dpcm) {
    @supports (-webkit-appearance:none) {
        #cart_toggler.cart_toggler_open i:before {
            /*background: red;*/
            left: 5px;
        }
    }
}

#cookiescript_injected {
    background-color: rgba(255, 255, 255, 0.9) !important;
    text-align: left !important;
    color: rgb(255, 255, 255) !important;
    box-shadow: none !important;
    border-top: 3px solid rgb(1, 159, 227) !important;
    z-index: 99 !important;
    color: #000 !important;
    padding: 10px 0 !important;
}

#cookiescript_badge {
    color: #fff !important;
    background-color: rgb(1, 159, 227) !important;
    font-family: 'Nunito', sans-serif !important;
    box-shadow: none !important;
    border: 1px solid rgb(1, 159, 227);
    text-transform: uppercase;
    font-size: 10px !important;
    bottom: 12% !important;
    left: -65px !important;
    padding: 2px 0px 6px 0px !important;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    transform: rotate(-90deg);
    width: 160px;
    text-align: center;
    font-weight: 600 !important;
}

#cookiescript_wrapper {
    font-family: 'Nunito', sans-serif !important;
    font-size: 12px !important;
    line-height: 16px !important;
    text-align: left !important;
    max-width: 1140px !important;
    padding: 0 30px 10px 20px;
    margin: 0 auto !important;
    color: #000 !important;
}

#cookiescript_readmore {
    margin-bottom: 20px !important;
    display: block !important;
    color: #000 !important;
    text-transform: uppercase !important;
}

#cookiescript_accept {
    margin: 0 !important;
    background-color: rgb(1, 159, 227) !important;
    color: #fff !important;
    text-transform: uppercase !important;
    font-weight: 400 !important;
    text-shadow: none !important;
    border-radius: 20px;
    padding: 8px 20px !important;
}

#cookiescript_reject {
    text-transform: uppercase !important;
    font-weight: 400 !important;
    text-shadow: none !important;
    border-radius: 20px;
    padding: 8px 20px !important;
    background-color: rgb(251, 95, 96) !important;
}

table.cookie-policy {
    margin: 20px 0;
}

table.cookie-policy td {
    padding: 5px 10px;
    font-size: 13px;
}


.close_notice {
    display: block;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
    margin-top: 10px;
}

.coupon_col_sx_box {
    /*display: none;
    margin-bottom: 15px;*/
}

.coupon_intro {
    font-size: 14px;
    font-weight: 700;
    color: #242E7C;
    background-color: rgb(243, 245, 251);
    padding: 4px 0 4px 10px;
}


#offcanvas_search .autoComplete_wrapper {
    width: 100%;
    height: 82px;
}

#offcanvas_search .search_submit_btn {
    height: 42px;
    display: block;
    border-radius: 0;
    border: 0;
}

#offcanvas_search .search_submit_btn:after {}

#offcanvas_search_input:focus {
    background: red;
}

/*#offcanvas_search .autoComplete_wrapper*/

#offcanvas_search .autoComplete_wrapper>input {
    height: 100% !important;
}

#offcanvas_search .autoComplete_wrapper>ul {
    margin-top: 65px !important;
    /*max-height: 600px;*/
    max-height: 100vh;
    display: block !important;
}

#offcanvas_search .search_radio_btns {
    font-size: 18px;
    text-transform: uppercase;
    display: flex;
    margin-top: 20px;
    line-height: 1.2;
}

#offcanvas_search .search_radio_btns label {
    display: inline-flex;
    align-items: center;
    margin-right: 50px;
}

#offcanvas_search .search_radio_btns input {
    width: 24px;
    height: 24px;
    margin-right: 15px;
}

.autoComplete_wrapper>ul>li {
    margin: 0;
    padding: 0;
}

.autoComplete_wrapper>ul>li:hover,
.autoComplete_wrapper>ul>li:focus,
.autoComplete_wrapper>ul>li:active {
    background-color: #ededed !important;
}

.autoComplete_wrapper>ul>li a {
    color: #212121;
    width: 100%;
    height: 100%;
    /*background: red;*/
    padding: 10px;
    display: flex;
    align-items: center;
}

.autoComplete_wrapper>ul>li a:hover,
.autoComplete_wrapper>ul>li a:focus,
.autoComplete_wrapper>ul>li a:active {
    text-decoration: none;
}

.autoComplete_wrapper>ul>li a span {
    display: block;
    width: auto;
    white-space: pre-wrap;
}

.header_search .autoComplete_wrapper>input::placeholder,
#filtro_ricerca .autoComplete_wrapper>input::placeholder {
    color: #212121 !important;
}

.header_search .autoComplete_wrapper>input:hover::placeholder,
#filtro_ricerca .autoComplete_wrapper>input:hover::placeholder {
    color: #212121 !important;
}

.header_search .autoComplete_wrapper>input:focus::placeholder,
#filtro_ricerca .autoComplete_wrapper>input:focus::placeholder {
    color: #212121 !important;
}

#offcanvas_search .autoComplete_wrapper>ul>li img {
    width: 80px;
    margin-right: 20px;
}

.autoComplete_wrapper>ul>li img {
    mix-blend-mode: multiply;
}

.autoComplete_wrapper>ul>li mark {
    color: #4B9EDD !important;
    padding: 0;
}

.header_search .autoComplete_wrapper>input {
    height: 34px;
}

.autoComplete_wrapper>input:hover {
    color: rgb(30 123 195) !important;
}

.autoComplete_wrapper>input:focus,
.autoComplete_wrapper>input:active {
    color: #4B9EDD !important;
    border: 0.06rem solid rgb(0 160 227) !important;
}

#filtro_ricerca .autoComplete_wrapper {
    width: 100%;
}

#filtro_ricerca .autoComplete_wrapper>input {
    height: 38px;
    background-image: url(../ima/template/search.svg);
    background-position: 95% 50%;
}

.autoComplete_wrapper>input {
    color: #4B9EDD !important;
}

/* Firefox */
html .autoComplete_wrapper>ul {
    scrollbar-color: #04A1E0 white;
    scrollbar-width: thin;
}

/* WebKit and Chromiums */
.autoComplete_wrapper>ul::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    /*background-color: white;*/
}

.autoComplete_wrapper>ul::-webkit-scrollbar-thumb {
    background: #04A1E0;
    border-radius: 5px;
}

.fa-eye-slash,
fa-eye {
    cursor: pointer;
}

.has-error a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}

.has-error p {
    width: 100% !important;
}

#toggle-search-btn {
    /*    font-size: 14px;
    font-weight: 600;
    color: #242E7C;
    border-radius: 4px;
    background: #fff;
    padding: 3px 10px;
    width: 85px;
    margin-top: 5px;*/

    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border-radius: 4px;
    background: #009fe1;
    width: 110px;
    margin-top: 0;
    border-radius: 24px;
    height: 42px;
    box-shadow: 3px 3px 0px rgba(36, 46, 124, 0.35);
    border: 0;
    text-transform: uppercase;
}

#toggle-search-btn i {
    margin-left: 5px;
}