* {
    margin:0;
    padding:0;
    border:0;
    font-family:inherit;
    color:inherit;
    box-sizing:border-box;
}

html, body {
    width:100%;
    height:100%;
    position:relative;
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 15px;
}

.breaker {
    clear:both;
}

.onlymobile {
    display: none;
}

.onlytablet {
    display: none;
}

.left {
    float: left;
}

.right {
    float: right;
}

.color_black {
    color: black;
}

.color_white {
    color: white;
}

.line {
    width: 100%;
    height: 1px;
    background-color: rgba(168,168,168,0.3);
    margin-top: 12px;
    margin-bottom: 12px;
}

.spacer_micro {
    height: 12px;
}

.spacer_smaller {
    height: 20px;
}

.spacer_small {
    height: 30px;
}

.spacer_regular {
    height: 60px;
}

.spacer_big {
    height: 80px;
}

.spacer_bigger {
    height: 120px;
}

.flex_container {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flex_filler {
    flex-grow: 1;
}

.flex_spacer {
    width: calc((100% - 310px * 3) / 2);
}

/* Questa serve per impedire che iPhone e iPad diano lo stile che vogliono loro ai pulsanti di invio... */
textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
    -webkit-appearance: none;
    border-radius: 0;
}


input[type="text"] {
    font-size: 14px;
    text-indent: 18px;
}
input[type="button"] {
    font-size: 14px;
}

/* Placeholder nelle textbox */
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #A8A8A8;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #A8A8A8;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #A8A8A8;
}
:-moz-placeholder { /* Firefox 18- */
    color: #A8A8A8;
}

.radius_topleft {
    -webkit-border-top-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
    border-top-left-radius: 3px;
}

.radius_topright {
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topright: 3px;
    border-top-right-radius: 3px;
}

.radius_bottomleft {
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-bottom-left-radius: 3px;
}

.radius_bottomright {
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-radius-bottomright: 3px;
    border-bottom-right-radius: 3px;
}

.rounded_button {
    -webkit-border-top-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
    border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topright: 3px;
    border-top-right-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-radius-bottomright: 3px;
    border-bottom-right-radius: 3px;

    font-family: "T26-Carbon";
    color: white;
    background: black;
    width: 280px;
    height: 40px;
    padding: 13px 113px;
    cursor: pointer;
}

.defaultWaiticon {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(255,255,255,0.3);
    background-image:url(../images/animated_loading_icon.gif);
    background-repeat: no-repeat;
    background-position: center center;
    z-index:3;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    font-family: "T26-Carbon";
    font-size: 20px;
    z-index: 100;

    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.header_dark {
    color: black;
}

.header_bright {
    color: white;
}

.header_scroll {
    position: fixed;
    top: 0;
    width: 100%;
    color: black;
    background: rgba(255,255,255,1.0);
    border-bottom: 1px rgba(0,0,0,0.1) solid;
    font-family: "T26-Carbon";
    font-size: 20px;
    z-index: 100;

    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.header_menu_mobile {
    position: fixed;
    top: 0;
    width: 100%;
    color: black;
    background: rgba(255,255,255,1.0);
    border-bottom: 1px rgba(0,0,0,0.1) solid;
    font-family: "T26-Carbon";
    font-size: 20px;
    z-index: 100;
}

.btn_menu {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
}

.btn_menu_scroll {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-image: url('../images/btn_menu_black.png');
}

.close {
    z-index: 100;
}

.close_scroll {
    background-image: url('../images/btn_close_black.png');
    z-index: 100;
}

.menu_mobile {
    position: fixed;
    width: 100%;
    height: 90%;
    background: black;
    padding: 0px 30px;
    overflow: scroll;
}

.menu_mobile .submenu {
    position: relative;
    top: 0;
    width: 100%;
    z-index: unset;
}


.menu_mobile .submenu_content {
    display: block;
    margin: 0;
    width: 100%;
    border-bottom: none;
    padding-bottom: 0;
}

.menu_mobile .container {
    border-bottom: 8px white solid;
}

.menu_mobile .links {
    color: #808080;
    font-size: 16px;
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
}

.menu_mobile .links a {
    margin: 0px;
}

.menu_mobile .social_logo {
    width: 28px;
    margin-right: 10px;
}


.footer {
    width: 100%;
    background: black;
    color: white;
    font-family: "T26-Carbon";
}

.footer_container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.footer .inner_content {
    padding: 60px 0px;
}


.inner_content {
    position: relative;
    width: calc(100% - 240px);
    max-width: 1600px;
    padding: 140px 0px 60px 0px;
    margin: 0px auto;
}

.inner_content #title {
    font-size: 48px;
    font-weight: 600;
}

.nllanding_content {
    position: relative;
    width: calc(100% - 240px);
    max-width: 1600px;
    padding: 200px 0px 100px 0px;
    margin: 0px auto;
	text-align: center;
}

.nllanding_content #title {
    font-size: 48px;
    font-weight: 600;
}

.header .inner_content {
    padding: 20px 0px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
}

.header_scroll .inner_content {
    padding: 20px 0px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
}

.header_menu_mobile .inner_content {
    padding: 20px 0px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    z-index: 100;
}

.header .flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header_scroll .flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header_menu_mobile .flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#back_button_container {
    justify-content: left;
    font-size: 14px;
    font-family: T26-Carbon;
    padding: 0px;
}

#back_button_container img {
    width: 7px;
    height: 10px;
    margin-right: 10px;
}

#back_button_container label {
    line-height: 10px;
    cursor: pointer;
}

#back_button {
    width: fit-content;
    cursor: pointer;
}

.footer_content .container {
    margin: 40px 0px;
}

.footer .container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: flex-end;
}

.links {
    position: relative;
}

.links a {
    margin-left: 30px;
    text-decoration: none;
    cursor: pointer;
}

.links label {
    position: relative;
    margin-left: 30px;
    text-decoration: none;
    z-index: 20;
    cursor: pointer;
}

.selected {
    background-color: rgba(0,0,0,0.3);
    padding-top: 5px;
    padding-bottom: 15px;
    border-bottom: 8px solid white;
}

.submenu {
    background: black;
    color: white;
    width: 630px;
    position: absolute;
    right: 0;
    top: 35px;
    z-index: 19;
}

.submenu_content {
    padding: 40px 0px;
    width: 90%;
    border-bottom: 8px solid white;
    margin: auto;
    display: none;
}

.submenu_content div {
    display: flex;
    flex-wrap: nowrap;
    flex-flow: row;
    justify-content: space-between;
    margin: 0px;
    background: transparent url(../images/freccia_menu.png) space 0 0;
    cursor: pointer;
}

.submenu_content img {
    margin: auto 20px;
    width: 8px;
    height: 12px;
}

.greylinks {
    text-align: right;
}

.greylinks a {
    margin-left: 30px;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
}

.greylinks_dark {
    color: rgba(0, 0, 0, 0.6);
}

.greylinks_bright {
    color: rgba(255, 255, 255, 0.6);
}

.greylinks_scroll {
    text-align: right;
    color: rgba(0, 0, 0, 0.6);
}

.greylinks_scroll a {
    margin-left: 30px;
    text-decoration: none;
    font-size: 14px;
}

.main_content_background {
    width: 100%;
    background: white;
}

.main_content {

}

.highlights {
    text-align: center;
}

.highlights_container {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-between;
}

.highlights #title {
    font-size: 48px;
    font-weight: 600;
}

.highlights #subtitle {
    font-size: 24px;
    font-weight: 400;
}

.highlights .text {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    cursor: pointer;
}

.highlights .items_spotlight {
    width: 48%;
    text-align: left;
}

.highlights .items_spotlight .item {
    cursor: pointer;
	text-align: center;
}

.highlights .items_spotlight .item .img {
    width: 100%;
    height: 550px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.highlights .items_container {
    width: 49%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.highlights .items_container .item {
    width: 47%;
    height: 330px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.highlights .items_container .item .img {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.news {
    width: 100%;
    height: 480px;
    background-size: cover;
    background-position: center;
}

.news_content {
    width: 45%;
    padding: 60px 80px;
}

.news_content #type {
    font-family: "T26-Carbon";
    font-size: 18px;
}

.news_content #title {
    font-size: 36px;
}

.news_content #subtitle {
    font-size: 24px;
    font-weight: 100;
}

.news_content .description{
    font-weight: 300; height: 150px;
}

.inside {
    background: #F6F6F6;
    min-height: 540px;
    text-align: center;
    padding: 40px 0;
}

.inside iframe {
    width: 536px;
    height: 301px;
}

.inside #title {
    font-size: 24px;
    font-weight: 700;
}

.inside #subtitle {
    font-size: 24px;
    font-weight: 400;
}

.socialwall {
    text-align: center;
    padding: 40px 0;
}

.socialwall a {
    font-family: T26-Carbon;
    font-weight: 600;
    text-decoration: none;
}

.socialwall a:hover {
    text-decoration: underline;
}

.socialwall #title {
    font-size: 48px;
    font-weight: 600;
}

.socialwall .social_logo {
    width: 40px;
    cursor: pointer;
    margin: 0 8px;
}

.socialwall .post_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
}

.socialwall .post {
    width: 240px;
    min-height: 290px;
    cursor: pointer;
}

.socialwall .post img {
    width: 100%;
    height: 204px;
    vertical-align: middle;
    margin-bottom: 16px;
}

.socialwall .post .img {
    width: 100%;
    height: 204px;
    vertical-align: middle;
    margin-bottom: 16px;
    background-size: cover;
    background-position: center;
}

.socialwall .post .social_logo_mini {
    width: 24px;
    height: 24px;
    margin-bottom: 0px;
}

.socialwall .post #name {
    font-size: 14px;
    font-weight: 600;
    padding-left: 10px;
    cursor: pointer;
}

.socialwall .post .text {
    font-weight: 300;
    cursor: pointer;
}

.footer .links a:hover {
    text-decoration: underline;
}

.logo {
    width: 123px;
    height: 52px;
    margin: 20px 0px;
    background-size: contain;
    background-position: center;
    cursor: pointer;
}

.logo_scroll {
    width: 123px;
    height: 52px;
    margin: 20px 0px;
    background-size: contain;
    background-position: center;
    cursor: pointer;
    background-image: url('../images/logo_black.png');
}

.logo_menu_mobile {
    width: 123px;
    height: 52px;
    margin: 20px 0px;
    background-size: contain;
    background-position: center;
    cursor: pointer;
    background-image: url('../images/logo_black.png');
    z-index: 100;
}

.down_arrow {
    width: 10px;
}

.footer .social_logo {
    width: 28px;
    margin-left: 10px;
    cursor: pointer;
}

.footer .footer_logo.nomobile {
    height: 50px;
    margin-right: 20px;
    margin-bottom: 10px;
    vertical-align: middle;
}

.footer .footer_logo.onlymobile {
    width: 65px;
    margin: 20px auto;
}

.contact_us {
    width: 100%;
    background-color: #F0F0F0;
}

.contact_us #label {
    font-weight: 600;
    font-size: 48px;
}

.contact_us .inner_content {
    text-align: center;
    min-height: 300px;
    padding: 60px 0px;
}

.contact_us .textfield {
    height: 40px;
    width: 100%;
    text-indent: 18px;
    font-size: 15px;
	margin-bottom: 30px;
}

.contact_us .button {
    background-color: black;
    color: white;
    font-family: T26-Carbon;
    font-size: 15px;
    padding: 13px 20px 11px;
    cursor: pointer;
}

.contact_us .rounded_button {
    max-width: 80px;
    padding: 12px 20px;
    font-size: 15px;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-bottomleft: 0;
    border-bottom-left-radius: 0;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius-topleft: 0;
    border-top-left-radius: 0;
	margin: auto;
}

.contact_us_container {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    justify-content: center;
	max-width: 600px;
	margin: auto;
}

.contact_us_riga{
	width: 100%; height: 80px;
}
.contact_us_label{
	width: 100%; font-size: 12px; text-transform: uppercase; margin-bottom: 3px;
}
.contact_us_col1{
	width: 48%; float: left;
}
.contact_us_col2{
	width: 48%; float: right;
}
.contact_us_privacy{
	font-size: 12px; cursor: pointer;
}

.banner_top {
    width: 100%;
    position: relative;
    /*height: 768px;*/
/*    background-image: url("../images/backgrounds/foto_4.png");
    background-size: cover;*/
    text-align: center;
}

.banner_top img {
    width: 100%;
    left: 0;
}

.banner_top_label {
    color: #FFE120;
    font-size: 36px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 350px;
}

.banner_top_button {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 15%;
}

.box_flex {
    display: flex;
    flex-flow: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    min-width: 1000px;
}

.box_flex .minibox {
    width: 47%;
    max-width: 725px;
}

.box_flex #title {
    font-size: 36px;
}

.box_flex #subtitle {
    font-size: 24px;
    font-weight: 300;
}

.box_flex #content {
    background: #F6F6F6;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 100;
    line-height: 30px;
}

.box_flex a {
    text-decoration: none;
}

.box_flex .social_logo {
    width: 40px;
    margin-right: 16px;
}

.box #title {
    font-size: 36px;
}

.box #subtitle {
    font-size: 24px;
    font-weight: 300;
}

.box #content {
    width: 48%;
    background: #F6F6F6;
    padding: 80px 40px;
    font-size: 20px;
    font-weight: 100;
    line-height: 30px;
}

.google_maps {
    width: 48%;
    background-image: url(../images/backgrounds/map_placeholder.png);
    background-repeat: no-repeat;
    background-position: center center;
}

.storefinder {
    position: relative;
    height: 480px;
    /*background-image: url(../images/backgrounds/map_placeholder.png)*/
}

.storefinder .rounded_button {
    padding: unset;
    width: 480px;
    text-align: center;
    line-height: 40px;
}

.storefinder .pin {
    width: 16px;
    vertical-align: middle;
    margin-right: 28px;
}

.storefinder .search {
    width: 16px;
    vertical-align: middle;
}

.storefinder #search_button {
    padding: unset;
    width: 15%;
    position: relative;
    float: left;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius-topleft: 0;
    border-top-left-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-bottomleft: 0;
    border-bottom-left-radius: 0;
}

.storefinder input {
    height: 40px;
    width: 85%;
    float: left;
}

.storefinder_wrapper {
    background-color: #F4F4F4;
    position: absolute;
    width: 100%;
    height: 40px;
    left: 0;
    right: 0;
    top: -40px;
    bottom: 0;
    margin-left: auto;
    margin-right: auto;
}


.storefinder_wrapper_overlay {
    background-color: transparent;
    position: absolute;
    width: 100%;
    height: 40px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.storefinder_content {
    position: absolute;
    width: 480px;
    /*height: 200px;*/
    left: 0;
    right: 0;
    /*top: 0;*/
    bottom: 0;
    /*margin: auto;*/

    height: 40px;
    top: 0px;
    margin: unset;
    margin-left: auto;
    margin-right: auto;
}

.box .items_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.box .items_container .item {
    width: 47%;
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
}

.box .items_container .item img {
    width: 17px;
    height: 24px;
    margin-right: 13px;
}

.box .items_container .item .flex_item {
	width: calc(100% - 30px);
}

.box .items_container .item #name {
    font-size: 20px;
}

.box .items_container .item #address {
    font-size: 14px;
    color: #A8A8A8;
}

.collection_buttons {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 14px;
}

.collection_buttons div {
    width: 120px;
    font-family: T26-Carbon;
    font-weight: 600;
    text-align: center;
    border: 3px solid black;
    padding: 5px 10px;
    margin-right: 20px;
    cursor: pointer;
    text-decoration: none;

    -webkit-border-top-left-radius: 2px;
    -moz-border-radius-topleft: 2px;
    border-top-left-radius: 2px;
    -webkit-border-top-right-radius: 2px;
    -moz-border-radius-topright: 2px;
    border-top-right-radius: 2px;
    -webkit-border-bottom-left-radius: 2px;
    -moz-border-radius-bottomleft: 2px;
    border-bottom-left-radius: 2px;
    -webkit-border-bottom-right-radius: 2px;
    -moz-border-radius-bottomright: 2px;
    border-bottom-right-radius: 2px;
}

.collection {
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
}

.collection #title {
    font-size: 24px;
    font-weight: 800;
}

.collection #name {
    font-size: 24px;
    font-weight: 400;
}

.collection #header {
    display: flex;
    flex-flow: row;
    flex-wrap: nowrap;
    justify-content: normal;
}

.collection #header #embed {
    width: 50%;
    height: 350px;
    background-size: contain;
    background-repeat: no-repeat;
}

.collection #header #description {
    width: 50%;
    padding: 0px 40px;
    font-size: 20px;
    line-height: 37px;
    font-weight: 400;
}

.collection #repeater {
    display: grid;
    grid-template-columns: 33% 33% 33%;
    justify-content: space-between;
    text-align: center;
    min-width: 1000px;
}

/*.collection #repeater::after {
    content: " ";
    flex: auto;
}*/

.collection #repeater .repeater_item {
    width: 310px;
    cursor: pointer;
	text-align: center;
}

.collection #repeater .repeater_item .repeater_image {
    width: 100%;
    height: 280px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 5;
    position: relative;
}

.collection #repeater .repeater_item .repeater_image .repeater_image_content {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 6;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.collection #repeater .repeater_item label {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    cursor: pointer;
}

.detail_main {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    justify-content: normal;
}

.detail_main .icon {
    width: 50%;
    height: 570px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.detail_main .panoramic {
    width: 50%;
    padding: 26px;
}

.detail_main .panoramic #title {
    font-size: 36px;
}

.detail_main .panoramic #type {
    font-size: 18px;
    font-family: T26-Carbon;
    font-weight: 600;
}

.detail_main .panoramic #code {
    font-size: 18px;
    font-family: T26-Carbon;
    color: #C5C5C5;
    font-weight: 500;
}

.detail_main .panoramic #title_small {
    font-family: T26-Carbon;
    font-size: 14px;
    font-weight: 600;
	text-transform: uppercase;
}

.detail_main .panoramic #description {
    font-size: 14px;
    color: #A8A8A8;
    font-weight: 400;
}

.detail_main_container .rounded_button {
    padding: 13px 44px;
    text-align: center;
    margin: auto;
}

.detail_main_container .detail_images {

}

.detail_main_container .detail_images .full {
    width: 100%;
    height: 560px;
    background-size: cover;
    background-position: center;
}

.detail_main_container .detail_images .half {
    width: 46%;
    height: 480px;
    background-size: cover;
    background-position: center;
}

.detail_main_container .detail_images iframe {
    width: 100%;
}

.detail_main_container .detail_accessories {
    text-align: center;
}

.detail_main_container .detail_accessories #title {
    font-size: 36px;
    font-weight: 600;
}

.detail_main_container .detail_accessories #name {
    font-size: 24px;
    font-weight: 300;
}

.detail_main_container .box {
    text-align: center;
    position: relative;
}

.detail_main_container .box .rounded_button {
    padding: unset;
}

/*Gestione slideshow dettaglio prodotto*/
.slideshow_container {
    width: 100%;
    position: relative;
	height: 480px;
}
.video_container {
    width: 100%;
    position: relative;
	padding-bottom: 50%;
}

.home_header_container {
    position: relative;
    width: calc(100% - 240px);
    max-width: 1600px;
    padding: 139px 0px 60px 0px;
    margin: 0px auto;
}
.content_start_home{
    margin-top: 1px;
}

/*.banner_top .slideshow_container {
    height: unset;
}*/

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;

    -webkit-transition: all 5s ease-out;
    -moz-transition: all 5s ease-out;
    -o-transition: all 5s ease-out;
    transition: all 5s ease-out;
}

.loader {
    position: absolute;
    top: 0;
    padding: 20px;
}

.dot {
    cursor: pointer;
    height: 60px;
    width: 4px;
    margin: 5px 0;
    background-color: rgba(0,0,0,0.1);
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot_full {
    background-color: black;
    height: 0%;
}

.dot_full.animated {
    -webkit-transition: height 3s;
    -moz-transition: height 3s;
    -ms-transition: height 3s;
    -o-transition: height 3s;
    transition: height 3s;
    transition-timing-function: linear;
}

.dot_mobile {
    display: none;
}

.dot_mobile_full {
    display: none;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}
/*Fine slideshow dettaglio prodotto*/

.accessories {
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
}

.accessories .vertical {
    transform: rotate(270deg);
    transform-origin: left top 0;
    float: left;
    font-family: T26-Carbon;
    font-size: 14px;
    font-weight: 600;
    line-height: 12px;
}

.accessories img {
    width: 10px;
}


.hidden {
    display: none;
}

.shown {
    display: block;
}

.animated_hidden {
    opacity: 0;

    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

.animated_shown {
    opacity: 1;

    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

.home_slide {
    width: 100%;
    height: 480px;
	position: absolute; left: 0px; top: 0px;
    background-size: cover;
    background-position: center;
	background-color: #F0F0F0;
}

.no_underline{
	text-decoration: none;
}

.slider_button {
    -webkit-border-top-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
    border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topright: 3px;
    border-top-right-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-radius-bottomright: 3px;
    border-bottom-right-radius: 3px;

    font-family: "T26-Carbon";
    color: white;
    background: black;
    width: 280px;
    height: 40px;
    padding: 13px 113px;
    cursor: pointer;
}

#sb_wall1, #sb_wall2 {
    width: 100%;
}

#sb_wall1 .filter-items, #sb_wall2 .filter-items {
    text-align: center;
}

#sb_wall1 .filter-label, #sb_wall2 .filter-label {
    float: none;
}

#sb_wall1 .sboard.sb-modern2 .sb-item .sb-user, #sb_wall2 .sboard.sb-modern2 .sb-item .sb-user {
    width: calc(100% - 24px);
}

.aboutus_content_section2{
	width:100%;
	background-color:#F0F0F0;
}

.aboutus_band{
	display: flex;
    align-items: center;
}

.aboutus_band_text_title{
	color: #000;
	font-size: 36px;
    font-weight: 700;
    padding-bottom:40px;
}

.aboutus_band_text_subtitle{
	font-weight:700;
	font-size: 24px;
	margin-bottom: 8px;
}

.aboutus_band_text{
	max-width: 600px;
    margin-left: auto;
    margin-right: 100px;
}

.aboutus_band_text_description{
	font-size: 14px;
}

.aboutus_content_section2_title{
	font-size: 36px;
	font-weight: 700;
	text-align:center;
	padding-bottom:11px;
}

.aboutus_content_section2_body{
	margin-left:auto;
	margin-right: auto;
}

.aboutus_body_section1{
	padding-bottom: 40px;
}

.aboutus_body_section3{
	padding-top:30px;
}

.aboutus_band_quote{
	width:42px;
	height: 32px;
	margin-bottom: 40px;
}

.aboutus_band_section3_text_description{
	font-size: 18px;
	font-weight:lighter;
}

.aboutus_band_section3_text_description2{
	font-size: 14px;
}

.aboutus_video_top_container {
    width: 500px;
    position: relative;
	padding-bottom: 50%;
}

.aboutus_video_container {
    width: 100%;
    position: relative;
	padding-bottom: 50%;
}


.aboutus_band_section3_images{
	display:flex;
}

.aboutus_band_image1{
	width: 265px;
	height: 252px;
	margin-left: 40px;
	margin-right: 20px;
}

.aboutus_band_image2{
	width: 265px;
	height: 252px;
}

.aboutus_slider_element{
	height: 309px;
	width: 550px;
	max-width:550px;
	background-position: center;
    background-size: cover;
}

#hp_content1 {
    position: relative;
    height:309px;
    overflow: hidden;
}

#hp_content1_nav_cont {
    position: absolute;
    right: 40px;
    top: 40px;
    text-align: right;
}

.hp_content1_nav_elem {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 10px;
    background-color: #E2E2E2;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    cursor: pointer;
}

.hp_content1_nav_elem.selected2 {
    background-color: #000;
}

.hp_content1_element {
    position: absolute;
    width: 100vw;
    height: 100%;
    left: 0;
    top: 0;
    display: none;
}

.hp_content1_element.selected2 {
    display: flex;
}

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

.page_ext_cont {
    position: relative;
    width: 50%;
}

.video_cat_link{
    width: 355px; height: 165px; display: flex; align-items: center; justify-content: center; cursor: pointer; margin-top: 10px;
}

.category_name_2{
    text-transform: uppercase; font-size: 20px;
}

.arm_inner_content{
    width: 100%; max-width: 100%;
}
.fascia1{
    width: 100%; padding: 40px 0px;
}
.fascia1_gray{
    background-color: #F0F0F0;
}
.fascia2{
    margin: auto; width: calc(100% - 240px); max-width: 1600px; display: flex; justify-content: space-between;
}
.fascia_box{
    width: calc(50% - 50px);
}
.fascia_box .slider_button{
    max-width: 280px; width: 100%; padding: 10px 40px;
}
.fascia_box_img{
    width: 100%; display: block;
}
.arm_title1{
    font-size: 36px; font-weight: bold;
}
.arm_title2{
    font-size: 24px; font-weight: bold; text-transform: uppercase;
}
.arm_text{
    font-size: 20px; font-weight: normal; line-height: 26px;
}
.arm_banner{
    width: 100%; background-color: #F0F0F0; display: flex; flex-wrap: wrap; justify-content: space-between;
}
.arm_banner_content{
    padding: 80px 80px;
}
.arm_banner_img{
    display: block; height: 100%; max-height: 400px;
}
.arm_banner_text{
    font-size: 24px; line-height: 26px; padding-top: 10px;
}
.arm_button{
    width: unset; padding: 7px 25px; white-space: nowrap;
}
@media screen and (max-width: 1650px) {
    .arm_banner_content{
        padding: 50px 20px;
    }
}
@media screen and (max-width: 1500px) {
    .arm_banner{
        justify-content: center;
    }
    .arm_banner_content{
        width: 100%; text-align: center;
    }
}
@media screen and (max-width: 800px) {
    .arm_banner_content{
        width: 100%; padding: 50px 40px;
    }
    .arm_banner_img{
        width: 100%; height: 100%; max-height: unset;
    }
    .arm_banner_logo{
        width: 100%; max-width: 318px;
    }
}
.fascia_box_season{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (max-width: 600px) {
	.aboutus_band_section3_images{
		display:block;
	}

	.aboutus_band_quote_container{
		display:block;
	}

	.aboutus_band_image2{
	    margin-left: 40px;
	    margin-right: 20px;
	}

	.aboutus_band{
		flex-direction: column;
	}

	.page_ext_cont{
		width:100%;
	}

	.aboutus_band_text{
		margin-right:0px;
	}

	.aboutus_band_image1{
		margin-right:auto;
		margin-left:auto;
	}

	.aboutus_band_image2{
		margin-right:auto;
		margin-left:auto;
	}

	.aboutus_video_top_container{
		width:100%;
	}
}