/* * Copyright 2016 Adobe Systems Incorporated * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* * ADOBE CONFIDENTIAL * * Copyright 2015 Adobe Systems Incorporated * All Rights Reserved. * * NOTICE: All information contained herein is, and remains * the property of Adobe Systems Incorporated and its suppliers, * if any. The intellectual and technical concepts contained * herein are proprietary to Adobe Systems Incorporated and its * suppliers and may be covered by U.S. and Foreign Patents, * patents in process, and are protected by trade secret or copyright law. * Dissemination of this information or reproduction of this material * is strictly forbidden unless prior written permission is obtained * from Adobe Systems Incorporated. */ /* grid component */ .aem-Grid { display: block; width: 100%; } .aem-Grid::before, .aem-Grid::after { display: table; content: " "; } .aem-Grid::after { clear: both; } /* placeholder for new components */ .aem-Grid-newComponent { clear: both; margin: 0; } /* column of a grid */ .aem-GridColumn { box-sizing: border-box; clear: both; } /* force showing hidden */ .aem-GridShowHidden > .aem-Grid > .aem-GridColumn { display: block !important; } /* Generates all the rules for the grid columns up to the given amount of column */ /* Generates all the rules for the grid column offset up to the given amount of column */ /* Generates all the rules for the grid and columns for the given break point and total of columns */ /* Generates all the rules for the grids and columns */ /* API function to be called to generate a grid config */ /* maximum amount of grid cells to be provided */ /* default breakpoint */ .aem-Grid { width: auto; } .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--default--1 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--offset--default--0 { margin-left: 0%; } .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--offset--default--1 { margin-left: 100%; } .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--default--1 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--default--2 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--default--0 { margin-left: 0%; } .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--default--1 { margin-left: 50%; } .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--default--2 { margin-left: 100%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--default--1 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--default--2 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--default--3 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--default--0 { margin-left: 0%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--default--1 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--default--2 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--default--3 { margin-left: 100%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--default--1 { float: left; clear: none; width: 25%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--default--2 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--default--3 { float: left; clear: none; width: 75%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--default--4 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--default--0 { margin-left: 0%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--default--1 { margin-left: 25%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--default--2 { margin-left: 50%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--default--3 { margin-left: 75%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--default--4 { margin-left: 100%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--default--1 { float: left; clear: none; width: 20%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--default--2 { float: left; clear: none; width: 40%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--default--3 { float: left; clear: none; width: 60%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--default--4 { float: left; clear: none; width: 80%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--default--5 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--default--0 { margin-left: 0%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--default--1 { margin-left: 20%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--default--2 { margin-left: 40%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--default--3 { margin-left: 60%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--default--4 { margin-left: 80%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--default--5 { margin-left: 100%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--default--1 { float: left; clear: none; width: 16.66666667%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--default--2 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--default--3 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--default--4 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--default--5 { float: left; clear: none; width: 83.33333333%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--default--6 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--0 { margin-left: 0%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--1 { margin-left: 16.66666667%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--2 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--3 { margin-left: 50%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--4 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--5 { margin-left: 83.33333333%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--6 { margin-left: 100%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--1 { float: left; clear: none; width: 14.28571429%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--2 { float: left; clear: none; width: 28.57142857%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--3 { float: left; clear: none; width: 42.85714286%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--4 { float: left; clear: none; width: 57.14285714%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--5 { float: left; clear: none; width: 71.42857143%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--6 { float: left; clear: none; width: 85.71428571%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--7 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--0 { margin-left: 0%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--1 { margin-left: 14.28571429%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--2 { margin-left: 28.57142857%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--3 { margin-left: 42.85714286%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--4 { margin-left: 57.14285714%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--5 { margin-left: 71.42857143%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--6 { margin-left: 85.71428571%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--7 { margin-left: 100%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--1 { float: left; clear: none; width: 12.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--2 { float: left; clear: none; width: 25%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--3 { float: left; clear: none; width: 37.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--4 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--5 { float: left; clear: none; width: 62.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--6 { float: left; clear: none; width: 75%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--7 { float: left; clear: none; width: 87.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--8 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--0 { margin-left: 0%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--1 { margin-left: 12.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--2 { margin-left: 25%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--3 { margin-left: 37.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--4 { margin-left: 50%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--5 { margin-left: 62.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--6 { margin-left: 75%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--7 { margin-left: 87.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--8 { margin-left: 100%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--1 { float: left; clear: none; width: 11.11111111%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--2 { float: left; clear: none; width: 22.22222222%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--3 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--4 { float: left; clear: none; width: 44.44444444%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--5 { float: left; clear: none; width: 55.55555556%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--6 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--7 { float: left; clear: none; width: 77.77777778%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--8 { float: left; clear: none; width: 88.88888889%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--9 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--0 { margin-left: 0%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--1 { margin-left: 11.11111111%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--2 { margin-left: 22.22222222%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--3 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--4 { margin-left: 44.44444444%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--5 { margin-left: 55.55555556%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--6 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--7 { margin-left: 77.77777778%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--8 { margin-left: 88.88888889%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--9 { margin-left: 100%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--1 { float: left; clear: none; width: 10%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--2 { float: left; clear: none; width: 20%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--3 { float: left; clear: none; width: 30%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--4 { float: left; clear: none; width: 40%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--5 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--6 { float: left; clear: none; width: 60%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--7 { float: left; clear: none; width: 70%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--8 { float: left; clear: none; width: 80%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--9 { float: left; clear: none; width: 90%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--10 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--0 { margin-left: 0%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--1 { margin-left: 10%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--2 { margin-left: 20%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--3 { margin-left: 30%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--4 { margin-left: 40%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--5 { margin-left: 50%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--6 { margin-left: 60%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--7 { margin-left: 70%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--8 { margin-left: 80%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--9 { margin-left: 90%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--10 { margin-left: 100%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--1 { float: left; clear: none; width: 9.09090909%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--2 { float: left; clear: none; width: 18.18181818%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--3 { float: left; clear: none; width: 27.27272727%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--4 { float: left; clear: none; width: 36.36363636%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--5 { float: left; clear: none; width: 45.45454545%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--6 { float: left; clear: none; width: 54.54545455%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--7 { float: left; clear: none; width: 63.63636364%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--8 { float: left; clear: none; width: 72.72727273%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--9 { float: left; clear: none; width: 81.81818182%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--10 { float: left; clear: none; width: 90.90909091%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--11 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--0 { margin-left: 0%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--1 { margin-left: 9.09090909%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--2 { margin-left: 18.18181818%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--3 { margin-left: 27.27272727%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--4 { margin-left: 36.36363636%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--5 { margin-left: 45.45454545%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--6 { margin-left: 54.54545455%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--7 { margin-left: 63.63636364%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--8 { margin-left: 72.72727273%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--9 { margin-left: 81.81818182%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--10 { margin-left: 90.90909091%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--11 { margin-left: 100%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--1 { float: left; clear: none; width: 8.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--2 { float: left; clear: none; width: 16.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--3 { float: left; clear: none; width: 25%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--4 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--5 { float: left; clear: none; width: 41.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--6 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--7 { float: left; clear: none; width: 58.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--8 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--9 { float: left; clear: none; width: 75%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--10 { float: left; clear: none; width: 83.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--11 { float: left; clear: none; width: 91.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--12 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--0 { margin-left: 0%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--1 { margin-left: 8.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--2 { margin-left: 16.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--3 { margin-left: 25%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--4 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--5 { margin-left: 41.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--6 { margin-left: 50%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--7 { margin-left: 58.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--8 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--9 { margin-left: 75%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--10 { margin-left: 83.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--11 { margin-left: 91.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--12 { margin-left: 100%; } .aem-Grid.aem-Grid--default--1 > .aem-GridColumn.aem-GridColumn--default--1 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--default--1 > .aem-GridColumn.aem-GridColumn--offset--default--0 { margin-left: 0%; } .aem-Grid.aem-Grid--default--1 > .aem-GridColumn.aem-GridColumn--offset--default--1 { margin-left: 100%; } .aem-Grid.aem-Grid--default--2 > .aem-GridColumn.aem-GridColumn--default--1 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--default--2 > .aem-GridColumn.aem-GridColumn--default--2 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--default--2 > .aem-GridColumn.aem-GridColumn--offset--default--0 { margin-left: 0%; } .aem-Grid.aem-Grid--default--2 > .aem-GridColumn.aem-GridColumn--offset--default--1 { margin-left: 50%; } .aem-Grid.aem-Grid--default--2 > .aem-GridColumn.aem-GridColumn--offset--default--2 { margin-left: 100%; } .aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--default--1 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--default--2 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--default--3 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--offset--default--0 { margin-left: 0%; } .aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--offset--default--1 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--offset--default--2 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--offset--default--3 { margin-left: 100%; } .aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--default--1 { float: left; clear: none; width: 25%; } .aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--default--2 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--default--3 { float: left; clear: none; width: 75%; } .aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--default--4 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--offset--default--0 { margin-left: 0%; } .aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--offset--default--1 { margin-left: 25%; } .aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--offset--default--2 { margin-left: 50%; } .aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--offset--default--3 { margin-left: 75%; } .aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--offset--default--4 { margin-left: 100%; } .aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--default--1 { float: left; clear: none; width: 20%; } .aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--default--2 { float: left; clear: none; width: 40%; } .aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--default--3 { float: left; clear: none; width: 60%; } .aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--default--4 { float: left; clear: none; width: 80%; } .aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--default--5 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--offset--default--0 { margin-left: 0%; } .aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--offset--default--1 { margin-left: 20%; } .aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--offset--default--2 { margin-left: 40%; } .aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--offset--default--3 { margin-left: 60%; } .aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--offset--default--4 { margin-left: 80%; } .aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--offset--default--5 { margin-left: 100%; } .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--default--1 { float: left; clear: none; width: 16.66666667%; } .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--default--2 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--default--3 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--default--4 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--default--5 { float: left; clear: none; width: 83.33333333%; } .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--default--6 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--0 { margin-left: 0%; } .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--1 { margin-left: 16.66666667%; } .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--2 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--3 { margin-left: 50%; } .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--4 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--5 { margin-left: 83.33333333%; } .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--6 { margin-left: 100%; } .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--1 { float: left; clear: none; width: 14.28571429%; } .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--2 { float: left; clear: none; width: 28.57142857%; } .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--3 { float: left; clear: none; width: 42.85714286%; } .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--4 { float: left; clear: none; width: 57.14285714%; } .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--5 { float: left; clear: none; width: 71.42857143%; } .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--6 { float: left; clear: none; width: 85.71428571%; } .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--7 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--0 { margin-left: 0%; } .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--1 { margin-left: 14.28571429%; } .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--2 { margin-left: 28.57142857%; } .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--3 { margin-left: 42.85714286%; } .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--4 { margin-left: 57.14285714%; } .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--5 { margin-left: 71.42857143%; } .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--6 { margin-left: 85.71428571%; } .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--7 { margin-left: 100%; } .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--1 { float: left; clear: none; width: 12.5%; } .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--2 { float: left; clear: none; width: 25%; } .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--3 { float: left; clear: none; width: 37.5%; } .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--4 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--5 { float: left; clear: none; width: 62.5%; } .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--6 { float: left; clear: none; width: 75%; } .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--7 { float: left; clear: none; width: 87.5%; } .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--8 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--0 { margin-left: 0%; } .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--1 { margin-left: 12.5%; } .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--2 { margin-left: 25%; } .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--3 { margin-left: 37.5%; } .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--4 { margin-left: 50%; } .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--5 { margin-left: 62.5%; } .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--6 { margin-left: 75%; } .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--7 { margin-left: 87.5%; } .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--8 { margin-left: 100%; } .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--1 { float: left; clear: none; width: 11.11111111%; } .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--2 { float: left; clear: none; width: 22.22222222%; } .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--3 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--4 { float: left; clear: none; width: 44.44444444%; } .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--5 { float: left; clear: none; width: 55.55555556%; } .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--6 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--7 { float: left; clear: none; width: 77.77777778%; } .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--8 { float: left; clear: none; width: 88.88888889%; } .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--9 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--0 { margin-left: 0%; } .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--1 { margin-left: 11.11111111%; } .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--2 { margin-left: 22.22222222%; } .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--3 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--4 { margin-left: 44.44444444%; } .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--5 { margin-left: 55.55555556%; } .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--6 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--7 { margin-left: 77.77777778%; } .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--8 { margin-left: 88.88888889%; } .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--9 { margin-left: 100%; } .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--1 { float: left; clear: none; width: 10%; } .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--2 { float: left; clear: none; width: 20%; } .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--3 { float: left; clear: none; width: 30%; } .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--4 { float: left; clear: none; width: 40%; } .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--5 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--6 { float: left; clear: none; width: 60%; } .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--7 { float: left; clear: none; width: 70%; } .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--8 { float: left; clear: none; width: 80%; } .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--9 { float: left; clear: none; width: 90%; } .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--10 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--0 { margin-left: 0%; } .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--1 { margin-left: 10%; } .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--2 { margin-left: 20%; } .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--3 { margin-left: 30%; } .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--4 { margin-left: 40%; } .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--5 { margin-left: 50%; } .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--6 { margin-left: 60%; } .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--7 { margin-left: 70%; } .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--8 { margin-left: 80%; } .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--9 { margin-left: 90%; } .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--10 { margin-left: 100%; } .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--1 { float: left; clear: none; width: 9.09090909%; } .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--2 { float: left; clear: none; width: 18.18181818%; } .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--3 { float: left; clear: none; width: 27.27272727%; } .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--4 { float: left; clear: none; width: 36.36363636%; } .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--5 { float: left; clear: none; width: 45.45454545%; } .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--6 { float: left; clear: none; width: 54.54545455%; } .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--7 { float: left; clear: none; width: 63.63636364%; } .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--8 { float: left; clear: none; width: 72.72727273%; } .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--9 { float: left; clear: none; width: 81.81818182%; } .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--10 { float: left; clear: none; width: 90.90909091%; } .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--11 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--0 { margin-left: 0%; } .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--1 { margin-left: 9.09090909%; } .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--2 { margin-left: 18.18181818%; } .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--3 { margin-left: 27.27272727%; } .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--4 { margin-left: 36.36363636%; } .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--5 { margin-left: 45.45454545%; } .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--6 { margin-left: 54.54545455%; } .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--7 { margin-left: 63.63636364%; } .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--8 { margin-left: 72.72727273%; } .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--9 { margin-left: 81.81818182%; } .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--10 { margin-left: 90.90909091%; } .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--11 { margin-left: 100%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--1 { float: left; clear: none; width: 8.33333333%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--2 { float: left; clear: none; width: 16.66666667%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--3 { float: left; clear: none; width: 25%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--4 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--5 { float: left; clear: none; width: 41.66666667%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--6 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--7 { float: left; clear: none; width: 58.33333333%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--9 { float: left; clear: none; width: 75%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--10 { float: left; clear: none; width: 83.33333333%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--11 { float: left; clear: none; width: 91.66666667%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--0 { margin-left: 0%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--1 { margin-left: 8.33333333%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--2 { margin-left: 16.66666667%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--3 { margin-left: 25%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--4 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--5 { margin-left: 41.66666667%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--6 { margin-left: 50%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--7 { margin-left: 58.33333333%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--8 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--9 { margin-left: 75%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--10 { margin-left: 83.33333333%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--11 { margin-left: 91.66666667%; } .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--12 { margin-left: 100%; } .aem-Grid > .aem-GridColumn.aem-GridColumn--default--newline { /* newline behavior */ display: block; clear: both !important; } .aem-Grid > .aem-GridColumn.aem-GridColumn--default--none { /* none behavior */ display: block; clear: none !important; float: left; } .aem-Grid > .aem-GridColumn.aem-GridColumn--default--hide { /* hide behavior */ display: none; } /* xs breakpoint */ @media (max-width: 529px) { .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--xs--1 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--offset--xs--0 { margin-left: 0%; } .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--offset--xs--1 { margin-left: 100%; } .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--xs--1 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--xs--2 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--xs--0 { margin-left: 0%; } .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--xs--1 { margin-left: 50%; } .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--xs--2 { margin-left: 100%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--xs--1 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--xs--2 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--xs--3 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--xs--0 { margin-left: 0%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--xs--1 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--xs--2 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--xs--3 { margin-left: 100%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--xs--1 { float: left; clear: none; width: 25%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--xs--2 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--xs--3 { float: left; clear: none; width: 75%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--xs--4 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--xs--0 { margin-left: 0%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--xs--1 { margin-left: 25%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--xs--2 { margin-left: 50%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--xs--3 { margin-left: 75%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--xs--4 { margin-left: 100%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--xs--1 { float: left; clear: none; width: 20%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--xs--2 { float: left; clear: none; width: 40%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--xs--3 { float: left; clear: none; width: 60%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--xs--4 { float: left; clear: none; width: 80%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--xs--5 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--xs--0 { margin-left: 0%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--xs--1 { margin-left: 20%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--xs--2 { margin-left: 40%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--xs--3 { margin-left: 60%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--xs--4 { margin-left: 80%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--xs--5 { margin-left: 100%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--xs--1 { float: left; clear: none; width: 16.66666667%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--xs--2 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--xs--3 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--xs--4 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--xs--5 { float: left; clear: none; width: 83.33333333%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--xs--6 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--xs--0 { margin-left: 0%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--xs--1 { margin-left: 16.66666667%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--xs--2 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--xs--3 { margin-left: 50%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--xs--4 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--xs--5 { margin-left: 83.33333333%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--xs--6 { margin-left: 100%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--xs--1 { float: left; clear: none; width: 14.28571429%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--xs--2 { float: left; clear: none; width: 28.57142857%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--xs--3 { float: left; clear: none; width: 42.85714286%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--xs--4 { float: left; clear: none; width: 57.14285714%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--xs--5 { float: left; clear: none; width: 71.42857143%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--xs--6 { float: left; clear: none; width: 85.71428571%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--xs--7 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--xs--0 { margin-left: 0%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--xs--1 { margin-left: 14.28571429%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--xs--2 { margin-left: 28.57142857%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--xs--3 { margin-left: 42.85714286%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--xs--4 { margin-left: 57.14285714%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--xs--5 { margin-left: 71.42857143%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--xs--6 { margin-left: 85.71428571%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--xs--7 { margin-left: 100%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--xs--1 { float: left; clear: none; width: 12.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--xs--2 { float: left; clear: none; width: 25%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--xs--3 { float: left; clear: none; width: 37.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--xs--4 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--xs--5 { float: left; clear: none; width: 62.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--xs--6 { float: left; clear: none; width: 75%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--xs--7 { float: left; clear: none; width: 87.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--xs--8 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--xs--0 { margin-left: 0%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--xs--1 { margin-left: 12.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--xs--2 { margin-left: 25%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--xs--3 { margin-left: 37.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--xs--4 { margin-left: 50%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--xs--5 { margin-left: 62.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--xs--6 { margin-left: 75%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--xs--7 { margin-left: 87.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--xs--8 { margin-left: 100%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--xs--1 { float: left; clear: none; width: 11.11111111%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--xs--2 { float: left; clear: none; width: 22.22222222%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--xs--3 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--xs--4 { float: left; clear: none; width: 44.44444444%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--xs--5 { float: left; clear: none; width: 55.55555556%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--xs--6 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--xs--7 { float: left; clear: none; width: 77.77777778%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--xs--8 { float: left; clear: none; width: 88.88888889%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--xs--9 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--xs--0 { margin-left: 0%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--xs--1 { margin-left: 11.11111111%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--xs--2 { margin-left: 22.22222222%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--xs--3 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--xs--4 { margin-left: 44.44444444%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--xs--5 { margin-left: 55.55555556%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--xs--6 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--xs--7 { margin-left: 77.77777778%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--xs--8 { margin-left: 88.88888889%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--xs--9 { margin-left: 100%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--xs--1 { float: left; clear: none; width: 10%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--xs--2 { float: left; clear: none; width: 20%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--xs--3 { float: left; clear: none; width: 30%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--xs--4 { float: left; clear: none; width: 40%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--xs--5 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--xs--6 { float: left; clear: none; width: 60%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--xs--7 { float: left; clear: none; width: 70%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--xs--8 { float: left; clear: none; width: 80%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--xs--9 { float: left; clear: none; width: 90%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--xs--10 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--xs--0 { margin-left: 0%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--xs--1 { margin-left: 10%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--xs--2 { margin-left: 20%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--xs--3 { margin-left: 30%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--xs--4 { margin-left: 40%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--xs--5 { margin-left: 50%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--xs--6 { margin-left: 60%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--xs--7 { margin-left: 70%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--xs--8 { margin-left: 80%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--xs--9 { margin-left: 90%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--xs--10 { margin-left: 100%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--xs--1 { float: left; clear: none; width: 9.09090909%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--xs--2 { float: left; clear: none; width: 18.18181818%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--xs--3 { float: left; clear: none; width: 27.27272727%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--xs--4 { float: left; clear: none; width: 36.36363636%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--xs--5 { float: left; clear: none; width: 45.45454545%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--xs--6 { float: left; clear: none; width: 54.54545455%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--xs--7 { float: left; clear: none; width: 63.63636364%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--xs--8 { float: left; clear: none; width: 72.72727273%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--xs--9 { float: left; clear: none; width: 81.81818182%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--xs--10 { float: left; clear: none; width: 90.90909091%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--xs--11 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--xs--0 { margin-left: 0%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--xs--1 { margin-left: 9.09090909%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--xs--2 { margin-left: 18.18181818%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--xs--3 { margin-left: 27.27272727%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--xs--4 { margin-left: 36.36363636%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--xs--5 { margin-left: 45.45454545%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--xs--6 { margin-left: 54.54545455%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--xs--7 { margin-left: 63.63636364%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--xs--8 { margin-left: 72.72727273%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--xs--9 { margin-left: 81.81818182%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--xs--10 { margin-left: 90.90909091%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--xs--11 { margin-left: 100%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--xs--1 { float: left; clear: none; width: 8.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--xs--2 { float: left; clear: none; width: 16.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--xs--3 { float: left; clear: none; width: 25%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--xs--4 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--xs--5 { float: left; clear: none; width: 41.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--xs--6 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--xs--7 { float: left; clear: none; width: 58.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--xs--8 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--xs--9 { float: left; clear: none; width: 75%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--xs--10 { float: left; clear: none; width: 83.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--xs--11 { float: left; clear: none; width: 91.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--xs--12 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--xs--0 { margin-left: 0%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--xs--1 { margin-left: 8.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--xs--2 { margin-left: 16.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--xs--3 { margin-left: 25%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--xs--4 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--xs--5 { margin-left: 41.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--xs--6 { margin-left: 50%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--xs--7 { margin-left: 58.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--xs--8 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--xs--9 { margin-left: 75%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--xs--10 { margin-left: 83.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--xs--11 { margin-left: 91.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--xs--12 { margin-left: 100%; } .aem-Grid.aem-Grid--xs--1 > .aem-GridColumn.aem-GridColumn--xs--1 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--xs--1 > .aem-GridColumn.aem-GridColumn--offset--xs--0 { margin-left: 0%; } .aem-Grid.aem-Grid--xs--1 > .aem-GridColumn.aem-GridColumn--offset--xs--1 { margin-left: 100%; } .aem-Grid.aem-Grid--xs--2 > .aem-GridColumn.aem-GridColumn--xs--1 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--xs--2 > .aem-GridColumn.aem-GridColumn--xs--2 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--xs--2 > .aem-GridColumn.aem-GridColumn--offset--xs--0 { margin-left: 0%; } .aem-Grid.aem-Grid--xs--2 > .aem-GridColumn.aem-GridColumn--offset--xs--1 { margin-left: 50%; } .aem-Grid.aem-Grid--xs--2 > .aem-GridColumn.aem-GridColumn--offset--xs--2 { margin-left: 100%; } .aem-Grid.aem-Grid--xs--3 > .aem-GridColumn.aem-GridColumn--xs--1 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--xs--3 > .aem-GridColumn.aem-GridColumn--xs--2 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--xs--3 > .aem-GridColumn.aem-GridColumn--xs--3 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--xs--3 > .aem-GridColumn.aem-GridColumn--offset--xs--0 { margin-left: 0%; } .aem-Grid.aem-Grid--xs--3 > .aem-GridColumn.aem-GridColumn--offset--xs--1 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--xs--3 > .aem-GridColumn.aem-GridColumn--offset--xs--2 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--xs--3 > .aem-GridColumn.aem-GridColumn--offset--xs--3 { margin-left: 100%; } .aem-Grid.aem-Grid--xs--4 > .aem-GridColumn.aem-GridColumn--xs--1 { float: left; clear: none; width: 25%; } .aem-Grid.aem-Grid--xs--4 > .aem-GridColumn.aem-GridColumn--xs--2 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--xs--4 > .aem-GridColumn.aem-GridColumn--xs--3 { float: left; clear: none; width: 75%; } .aem-Grid.aem-Grid--xs--4 > .aem-GridColumn.aem-GridColumn--xs--4 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--xs--4 > .aem-GridColumn.aem-GridColumn--offset--xs--0 { margin-left: 0%; } .aem-Grid.aem-Grid--xs--4 > .aem-GridColumn.aem-GridColumn--offset--xs--1 { margin-left: 25%; } .aem-Grid.aem-Grid--xs--4 > .aem-GridColumn.aem-GridColumn--offset--xs--2 { margin-left: 50%; } .aem-Grid.aem-Grid--xs--4 > .aem-GridColumn.aem-GridColumn--offset--xs--3 { margin-left: 75%; } .aem-Grid.aem-Grid--xs--4 > .aem-GridColumn.aem-GridColumn--offset--xs--4 { margin-left: 100%; } .aem-Grid.aem-Grid--xs--5 > .aem-GridColumn.aem-GridColumn--xs--1 { float: left; clear: none; width: 20%; } .aem-Grid.aem-Grid--xs--5 > .aem-GridColumn.aem-GridColumn--xs--2 { float: left; clear: none; width: 40%; } .aem-Grid.aem-Grid--xs--5 > .aem-GridColumn.aem-GridColumn--xs--3 { float: left; clear: none; width: 60%; } .aem-Grid.aem-Grid--xs--5 > .aem-GridColumn.aem-GridColumn--xs--4 { float: left; clear: none; width: 80%; } .aem-Grid.aem-Grid--xs--5 > .aem-GridColumn.aem-GridColumn--xs--5 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--xs--5 > .aem-GridColumn.aem-GridColumn--offset--xs--0 { margin-left: 0%; } .aem-Grid.aem-Grid--xs--5 > .aem-GridColumn.aem-GridColumn--offset--xs--1 { margin-left: 20%; } .aem-Grid.aem-Grid--xs--5 > .aem-GridColumn.aem-GridColumn--offset--xs--2 { margin-left: 40%; } .aem-Grid.aem-Grid--xs--5 > .aem-GridColumn.aem-GridColumn--offset--xs--3 { margin-left: 60%; } .aem-Grid.aem-Grid--xs--5 > .aem-GridColumn.aem-GridColumn--offset--xs--4 { margin-left: 80%; } .aem-Grid.aem-Grid--xs--5 > .aem-GridColumn.aem-GridColumn--offset--xs--5 { margin-left: 100%; } .aem-Grid.aem-Grid--xs--6 > .aem-GridColumn.aem-GridColumn--xs--1 { float: left; clear: none; width: 16.66666667%; } .aem-Grid.aem-Grid--xs--6 > .aem-GridColumn.aem-GridColumn--xs--2 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--xs--6 > .aem-GridColumn.aem-GridColumn--xs--3 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--xs--6 > .aem-GridColumn.aem-GridColumn--xs--4 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--xs--6 > .aem-GridColumn.aem-GridColumn--xs--5 { float: left; clear: none; width: 83.33333333%; } .aem-Grid.aem-Grid--xs--6 > .aem-GridColumn.aem-GridColumn--xs--6 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--xs--6 > .aem-GridColumn.aem-GridColumn--offset--xs--0 { margin-left: 0%; } .aem-Grid.aem-Grid--xs--6 > .aem-GridColumn.aem-GridColumn--offset--xs--1 { margin-left: 16.66666667%; } .aem-Grid.aem-Grid--xs--6 > .aem-GridColumn.aem-GridColumn--offset--xs--2 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--xs--6 > .aem-GridColumn.aem-GridColumn--offset--xs--3 { margin-left: 50%; } .aem-Grid.aem-Grid--xs--6 > .aem-GridColumn.aem-GridColumn--offset--xs--4 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--xs--6 > .aem-GridColumn.aem-GridColumn--offset--xs--5 { margin-left: 83.33333333%; } .aem-Grid.aem-Grid--xs--6 > .aem-GridColumn.aem-GridColumn--offset--xs--6 { margin-left: 100%; } .aem-Grid.aem-Grid--xs--7 > .aem-GridColumn.aem-GridColumn--xs--1 { float: left; clear: none; width: 14.28571429%; } .aem-Grid.aem-Grid--xs--7 > .aem-GridColumn.aem-GridColumn--xs--2 { float: left; clear: none; width: 28.57142857%; } .aem-Grid.aem-Grid--xs--7 > .aem-GridColumn.aem-GridColumn--xs--3 { float: left; clear: none; width: 42.85714286%; } .aem-Grid.aem-Grid--xs--7 > .aem-GridColumn.aem-GridColumn--xs--4 { float: left; clear: none; width: 57.14285714%; } .aem-Grid.aem-Grid--xs--7 > .aem-GridColumn.aem-GridColumn--xs--5 { float: left; clear: none; width: 71.42857143%; } .aem-Grid.aem-Grid--xs--7 > .aem-GridColumn.aem-GridColumn--xs--6 { float: left; clear: none; width: 85.71428571%; } .aem-Grid.aem-Grid--xs--7 > .aem-GridColumn.aem-GridColumn--xs--7 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--xs--7 > .aem-GridColumn.aem-GridColumn--offset--xs--0 { margin-left: 0%; } .aem-Grid.aem-Grid--xs--7 > .aem-GridColumn.aem-GridColumn--offset--xs--1 { margin-left: 14.28571429%; } .aem-Grid.aem-Grid--xs--7 > .aem-GridColumn.aem-GridColumn--offset--xs--2 { margin-left: 28.57142857%; } .aem-Grid.aem-Grid--xs--7 > .aem-GridColumn.aem-GridColumn--offset--xs--3 { margin-left: 42.85714286%; } .aem-Grid.aem-Grid--xs--7 > .aem-GridColumn.aem-GridColumn--offset--xs--4 { margin-left: 57.14285714%; } .aem-Grid.aem-Grid--xs--7 > .aem-GridColumn.aem-GridColumn--offset--xs--5 { margin-left: 71.42857143%; } .aem-Grid.aem-Grid--xs--7 > .aem-GridColumn.aem-GridColumn--offset--xs--6 { margin-left: 85.71428571%; } .aem-Grid.aem-Grid--xs--7 > .aem-GridColumn.aem-GridColumn--offset--xs--7 { margin-left: 100%; } .aem-Grid.aem-Grid--xs--8 > .aem-GridColumn.aem-GridColumn--xs--1 { float: left; clear: none; width: 12.5%; } .aem-Grid.aem-Grid--xs--8 > .aem-GridColumn.aem-GridColumn--xs--2 { float: left; clear: none; width: 25%; } .aem-Grid.aem-Grid--xs--8 > .aem-GridColumn.aem-GridColumn--xs--3 { float: left; clear: none; width: 37.5%; } .aem-Grid.aem-Grid--xs--8 > .aem-GridColumn.aem-GridColumn--xs--4 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--xs--8 > .aem-GridColumn.aem-GridColumn--xs--5 { float: left; clear: none; width: 62.5%; } .aem-Grid.aem-Grid--xs--8 > .aem-GridColumn.aem-GridColumn--xs--6 { float: left; clear: none; width: 75%; } .aem-Grid.aem-Grid--xs--8 > .aem-GridColumn.aem-GridColumn--xs--7 { float: left; clear: none; width: 87.5%; } .aem-Grid.aem-Grid--xs--8 > .aem-GridColumn.aem-GridColumn--xs--8 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--xs--8 > .aem-GridColumn.aem-GridColumn--offset--xs--0 { margin-left: 0%; } .aem-Grid.aem-Grid--xs--8 > .aem-GridColumn.aem-GridColumn--offset--xs--1 { margin-left: 12.5%; } .aem-Grid.aem-Grid--xs--8 > .aem-GridColumn.aem-GridColumn--offset--xs--2 { margin-left: 25%; } .aem-Grid.aem-Grid--xs--8 > .aem-GridColumn.aem-GridColumn--offset--xs--3 { margin-left: 37.5%; } .aem-Grid.aem-Grid--xs--8 > .aem-GridColumn.aem-GridColumn--offset--xs--4 { margin-left: 50%; } .aem-Grid.aem-Grid--xs--8 > .aem-GridColumn.aem-GridColumn--offset--xs--5 { margin-left: 62.5%; } .aem-Grid.aem-Grid--xs--8 > .aem-GridColumn.aem-GridColumn--offset--xs--6 { margin-left: 75%; } .aem-Grid.aem-Grid--xs--8 > .aem-GridColumn.aem-GridColumn--offset--xs--7 { margin-left: 87.5%; } .aem-Grid.aem-Grid--xs--8 > .aem-GridColumn.aem-GridColumn--offset--xs--8 { margin-left: 100%; } .aem-Grid.aem-Grid--xs--9 > .aem-GridColumn.aem-GridColumn--xs--1 { float: left; clear: none; width: 11.11111111%; } .aem-Grid.aem-Grid--xs--9 > .aem-GridColumn.aem-GridColumn--xs--2 { float: left; clear: none; width: 22.22222222%; } .aem-Grid.aem-Grid--xs--9 > .aem-GridColumn.aem-GridColumn--xs--3 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--xs--9 > .aem-GridColumn.aem-GridColumn--xs--4 { float: left; clear: none; width: 44.44444444%; } .aem-Grid.aem-Grid--xs--9 > .aem-GridColumn.aem-GridColumn--xs--5 { float: left; clear: none; width: 55.55555556%; } .aem-Grid.aem-Grid--xs--9 > .aem-GridColumn.aem-GridColumn--xs--6 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--xs--9 > .aem-GridColumn.aem-GridColumn--xs--7 { float: left; clear: none; width: 77.77777778%; } .aem-Grid.aem-Grid--xs--9 > .aem-GridColumn.aem-GridColumn--xs--8 { float: left; clear: none; width: 88.88888889%; } .aem-Grid.aem-Grid--xs--9 > .aem-GridColumn.aem-GridColumn--xs--9 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--xs--9 > .aem-GridColumn.aem-GridColumn--offset--xs--0 { margin-left: 0%; } .aem-Grid.aem-Grid--xs--9 > .aem-GridColumn.aem-GridColumn--offset--xs--1 { margin-left: 11.11111111%; } .aem-Grid.aem-Grid--xs--9 > .aem-GridColumn.aem-GridColumn--offset--xs--2 { margin-left: 22.22222222%; } .aem-Grid.aem-Grid--xs--9 > .aem-GridColumn.aem-GridColumn--offset--xs--3 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--xs--9 > .aem-GridColumn.aem-GridColumn--offset--xs--4 { margin-left: 44.44444444%; } .aem-Grid.aem-Grid--xs--9 > .aem-GridColumn.aem-GridColumn--offset--xs--5 { margin-left: 55.55555556%; } .aem-Grid.aem-Grid--xs--9 > .aem-GridColumn.aem-GridColumn--offset--xs--6 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--xs--9 > .aem-GridColumn.aem-GridColumn--offset--xs--7 { margin-left: 77.77777778%; } .aem-Grid.aem-Grid--xs--9 > .aem-GridColumn.aem-GridColumn--offset--xs--8 { margin-left: 88.88888889%; } .aem-Grid.aem-Grid--xs--9 > .aem-GridColumn.aem-GridColumn--offset--xs--9 { margin-left: 100%; } .aem-Grid.aem-Grid--xs--10 > .aem-GridColumn.aem-GridColumn--xs--1 { float: left; clear: none; width: 10%; } .aem-Grid.aem-Grid--xs--10 > .aem-GridColumn.aem-GridColumn--xs--2 { float: left; clear: none; width: 20%; } .aem-Grid.aem-Grid--xs--10 > .aem-GridColumn.aem-GridColumn--xs--3 { float: left; clear: none; width: 30%; } .aem-Grid.aem-Grid--xs--10 > .aem-GridColumn.aem-GridColumn--xs--4 { float: left; clear: none; width: 40%; } .aem-Grid.aem-Grid--xs--10 > .aem-GridColumn.aem-GridColumn--xs--5 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--xs--10 > .aem-GridColumn.aem-GridColumn--xs--6 { float: left; clear: none; width: 60%; } .aem-Grid.aem-Grid--xs--10 > .aem-GridColumn.aem-GridColumn--xs--7 { float: left; clear: none; width: 70%; } .aem-Grid.aem-Grid--xs--10 > .aem-GridColumn.aem-GridColumn--xs--8 { float: left; clear: none; width: 80%; } .aem-Grid.aem-Grid--xs--10 > .aem-GridColumn.aem-GridColumn--xs--9 { float: left; clear: none; width: 90%; } .aem-Grid.aem-Grid--xs--10 > .aem-GridColumn.aem-GridColumn--xs--10 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--xs--10 > .aem-GridColumn.aem-GridColumn--offset--xs--0 { margin-left: 0%; } .aem-Grid.aem-Grid--xs--10 > .aem-GridColumn.aem-GridColumn--offset--xs--1 { margin-left: 10%; } .aem-Grid.aem-Grid--xs--10 > .aem-GridColumn.aem-GridColumn--offset--xs--2 { margin-left: 20%; } .aem-Grid.aem-Grid--xs--10 > .aem-GridColumn.aem-GridColumn--offset--xs--3 { margin-left: 30%; } .aem-Grid.aem-Grid--xs--10 > .aem-GridColumn.aem-GridColumn--offset--xs--4 { margin-left: 40%; } .aem-Grid.aem-Grid--xs--10 > .aem-GridColumn.aem-GridColumn--offset--xs--5 { margin-left: 50%; } .aem-Grid.aem-Grid--xs--10 > .aem-GridColumn.aem-GridColumn--offset--xs--6 { margin-left: 60%; } .aem-Grid.aem-Grid--xs--10 > .aem-GridColumn.aem-GridColumn--offset--xs--7 { margin-left: 70%; } .aem-Grid.aem-Grid--xs--10 > .aem-GridColumn.aem-GridColumn--offset--xs--8 { margin-left: 80%; } .aem-Grid.aem-Grid--xs--10 > .aem-GridColumn.aem-GridColumn--offset--xs--9 { margin-left: 90%; } .aem-Grid.aem-Grid--xs--10 > .aem-GridColumn.aem-GridColumn--offset--xs--10 { margin-left: 100%; } .aem-Grid.aem-Grid--xs--11 > .aem-GridColumn.aem-GridColumn--xs--1 { float: left; clear: none; width: 9.09090909%; } .aem-Grid.aem-Grid--xs--11 > .aem-GridColumn.aem-GridColumn--xs--2 { float: left; clear: none; width: 18.18181818%; } .aem-Grid.aem-Grid--xs--11 > .aem-GridColumn.aem-GridColumn--xs--3 { float: left; clear: none; width: 27.27272727%; } .aem-Grid.aem-Grid--xs--11 > .aem-GridColumn.aem-GridColumn--xs--4 { float: left; clear: none; width: 36.36363636%; } .aem-Grid.aem-Grid--xs--11 > .aem-GridColumn.aem-GridColumn--xs--5 { float: left; clear: none; width: 45.45454545%; } .aem-Grid.aem-Grid--xs--11 > .aem-GridColumn.aem-GridColumn--xs--6 { float: left; clear: none; width: 54.54545455%; } .aem-Grid.aem-Grid--xs--11 > .aem-GridColumn.aem-GridColumn--xs--7 { float: left; clear: none; width: 63.63636364%; } .aem-Grid.aem-Grid--xs--11 > .aem-GridColumn.aem-GridColumn--xs--8 { float: left; clear: none; width: 72.72727273%; } .aem-Grid.aem-Grid--xs--11 > .aem-GridColumn.aem-GridColumn--xs--9 { float: left; clear: none; width: 81.81818182%; } .aem-Grid.aem-Grid--xs--11 > .aem-GridColumn.aem-GridColumn--xs--10 { float: left; clear: none; width: 90.90909091%; } .aem-Grid.aem-Grid--xs--11 > .aem-GridColumn.aem-GridColumn--xs--11 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--xs--11 > .aem-GridColumn.aem-GridColumn--offset--xs--0 { margin-left: 0%; } .aem-Grid.aem-Grid--xs--11 > .aem-GridColumn.aem-GridColumn--offset--xs--1 { margin-left: 9.09090909%; } .aem-Grid.aem-Grid--xs--11 > .aem-GridColumn.aem-GridColumn--offset--xs--2 { margin-left: 18.18181818%; } .aem-Grid.aem-Grid--xs--11 > .aem-GridColumn.aem-GridColumn--offset--xs--3 { margin-left: 27.27272727%; } .aem-Grid.aem-Grid--xs--11 > .aem-GridColumn.aem-GridColumn--offset--xs--4 { margin-left: 36.36363636%; } .aem-Grid.aem-Grid--xs--11 > .aem-GridColumn.aem-GridColumn--offset--xs--5 { margin-left: 45.45454545%; } .aem-Grid.aem-Grid--xs--11 > .aem-GridColumn.aem-GridColumn--offset--xs--6 { margin-left: 54.54545455%; } .aem-Grid.aem-Grid--xs--11 > .aem-GridColumn.aem-GridColumn--offset--xs--7 { margin-left: 63.63636364%; } .aem-Grid.aem-Grid--xs--11 > .aem-GridColumn.aem-GridColumn--offset--xs--8 { margin-left: 72.72727273%; } .aem-Grid.aem-Grid--xs--11 > .aem-GridColumn.aem-GridColumn--offset--xs--9 { margin-left: 81.81818182%; } .aem-Grid.aem-Grid--xs--11 > .aem-GridColumn.aem-GridColumn--offset--xs--10 { margin-left: 90.90909091%; } .aem-Grid.aem-Grid--xs--11 > .aem-GridColumn.aem-GridColumn--offset--xs--11 { margin-left: 100%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--xs--1 { float: left; clear: none; width: 8.33333333%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--xs--2 { float: left; clear: none; width: 16.66666667%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--xs--3 { float: left; clear: none; width: 25%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--xs--4 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--xs--5 { float: left; clear: none; width: 41.66666667%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--xs--6 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--xs--7 { float: left; clear: none; width: 58.33333333%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--xs--8 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--xs--9 { float: left; clear: none; width: 75%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--xs--10 { float: left; clear: none; width: 83.33333333%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--xs--11 { float: left; clear: none; width: 91.66666667%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--xs--12 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--offset--xs--0 { margin-left: 0%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--offset--xs--1 { margin-left: 8.33333333%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--offset--xs--2 { margin-left: 16.66666667%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--offset--xs--3 { margin-left: 25%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--offset--xs--4 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--offset--xs--5 { margin-left: 41.66666667%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--offset--xs--6 { margin-left: 50%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--offset--xs--7 { margin-left: 58.33333333%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--offset--xs--8 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--offset--xs--9 { margin-left: 75%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--offset--xs--10 { margin-left: 83.33333333%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--offset--xs--11 { margin-left: 91.66666667%; } .aem-Grid.aem-Grid--xs--12 > .aem-GridColumn.aem-GridColumn--offset--xs--12 { margin-left: 100%; } .aem-Grid > .aem-GridColumn.aem-GridColumn--xs--newline { /* newline behavior */ display: block; clear: both !important; } .aem-Grid > .aem-GridColumn.aem-GridColumn--xs--none { /* none behavior */ display: block; clear: none !important; float: left; } .aem-Grid > .aem-GridColumn.aem-GridColumn--xs--hide { /* hide behavior */ display: none; } } /* sm breakpoint */ @media (min-width: 530px) and (max-width: 767px) { .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--sm--1 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--offset--sm--0 { margin-left: 0%; } .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--offset--sm--1 { margin-left: 100%; } .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--sm--1 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--sm--2 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--sm--0 { margin-left: 0%; } .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--sm--1 { margin-left: 50%; } .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--sm--2 { margin-left: 100%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--sm--1 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--sm--2 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--sm--3 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--sm--0 { margin-left: 0%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--sm--1 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--sm--2 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--sm--3 { margin-left: 100%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--sm--1 { float: left; clear: none; width: 25%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--sm--2 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--sm--3 { float: left; clear: none; width: 75%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--sm--4 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--sm--0 { margin-left: 0%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--sm--1 { margin-left: 25%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--sm--2 { margin-left: 50%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--sm--3 { margin-left: 75%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--sm--4 { margin-left: 100%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--sm--1 { float: left; clear: none; width: 20%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--sm--2 { float: left; clear: none; width: 40%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--sm--3 { float: left; clear: none; width: 60%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--sm--4 { float: left; clear: none; width: 80%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--sm--5 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--sm--0 { margin-left: 0%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--sm--1 { margin-left: 20%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--sm--2 { margin-left: 40%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--sm--3 { margin-left: 60%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--sm--4 { margin-left: 80%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--sm--5 { margin-left: 100%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--sm--1 { float: left; clear: none; width: 16.66666667%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--sm--2 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--sm--3 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--sm--4 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--sm--5 { float: left; clear: none; width: 83.33333333%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--sm--6 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--sm--0 { margin-left: 0%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--sm--1 { margin-left: 16.66666667%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--sm--2 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--sm--3 { margin-left: 50%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--sm--4 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--sm--5 { margin-left: 83.33333333%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--sm--6 { margin-left: 100%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--sm--1 { float: left; clear: none; width: 14.28571429%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--sm--2 { float: left; clear: none; width: 28.57142857%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--sm--3 { float: left; clear: none; width: 42.85714286%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--sm--4 { float: left; clear: none; width: 57.14285714%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--sm--5 { float: left; clear: none; width: 71.42857143%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--sm--6 { float: left; clear: none; width: 85.71428571%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--sm--7 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--sm--0 { margin-left: 0%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--sm--1 { margin-left: 14.28571429%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--sm--2 { margin-left: 28.57142857%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--sm--3 { margin-left: 42.85714286%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--sm--4 { margin-left: 57.14285714%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--sm--5 { margin-left: 71.42857143%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--sm--6 { margin-left: 85.71428571%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--sm--7 { margin-left: 100%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--sm--1 { float: left; clear: none; width: 12.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--sm--2 { float: left; clear: none; width: 25%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--sm--3 { float: left; clear: none; width: 37.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--sm--4 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--sm--5 { float: left; clear: none; width: 62.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--sm--6 { float: left; clear: none; width: 75%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--sm--7 { float: left; clear: none; width: 87.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--sm--8 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--sm--0 { margin-left: 0%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--sm--1 { margin-left: 12.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--sm--2 { margin-left: 25%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--sm--3 { margin-left: 37.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--sm--4 { margin-left: 50%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--sm--5 { margin-left: 62.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--sm--6 { margin-left: 75%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--sm--7 { margin-left: 87.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--sm--8 { margin-left: 100%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--sm--1 { float: left; clear: none; width: 11.11111111%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--sm--2 { float: left; clear: none; width: 22.22222222%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--sm--3 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--sm--4 { float: left; clear: none; width: 44.44444444%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--sm--5 { float: left; clear: none; width: 55.55555556%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--sm--6 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--sm--7 { float: left; clear: none; width: 77.77777778%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--sm--8 { float: left; clear: none; width: 88.88888889%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--sm--9 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--sm--0 { margin-left: 0%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--sm--1 { margin-left: 11.11111111%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--sm--2 { margin-left: 22.22222222%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--sm--3 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--sm--4 { margin-left: 44.44444444%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--sm--5 { margin-left: 55.55555556%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--sm--6 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--sm--7 { margin-left: 77.77777778%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--sm--8 { margin-left: 88.88888889%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--sm--9 { margin-left: 100%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--sm--1 { float: left; clear: none; width: 10%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--sm--2 { float: left; clear: none; width: 20%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--sm--3 { float: left; clear: none; width: 30%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--sm--4 { float: left; clear: none; width: 40%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--sm--5 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--sm--6 { float: left; clear: none; width: 60%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--sm--7 { float: left; clear: none; width: 70%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--sm--8 { float: left; clear: none; width: 80%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--sm--9 { float: left; clear: none; width: 90%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--sm--10 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--sm--0 { margin-left: 0%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--sm--1 { margin-left: 10%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--sm--2 { margin-left: 20%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--sm--3 { margin-left: 30%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--sm--4 { margin-left: 40%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--sm--5 { margin-left: 50%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--sm--6 { margin-left: 60%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--sm--7 { margin-left: 70%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--sm--8 { margin-left: 80%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--sm--9 { margin-left: 90%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--sm--10 { margin-left: 100%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--sm--1 { float: left; clear: none; width: 9.09090909%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--sm--2 { float: left; clear: none; width: 18.18181818%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--sm--3 { float: left; clear: none; width: 27.27272727%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--sm--4 { float: left; clear: none; width: 36.36363636%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--sm--5 { float: left; clear: none; width: 45.45454545%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--sm--6 { float: left; clear: none; width: 54.54545455%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--sm--7 { float: left; clear: none; width: 63.63636364%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--sm--8 { float: left; clear: none; width: 72.72727273%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--sm--9 { float: left; clear: none; width: 81.81818182%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--sm--10 { float: left; clear: none; width: 90.90909091%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--sm--11 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--sm--0 { margin-left: 0%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--sm--1 { margin-left: 9.09090909%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--sm--2 { margin-left: 18.18181818%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--sm--3 { margin-left: 27.27272727%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--sm--4 { margin-left: 36.36363636%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--sm--5 { margin-left: 45.45454545%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--sm--6 { margin-left: 54.54545455%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--sm--7 { margin-left: 63.63636364%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--sm--8 { margin-left: 72.72727273%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--sm--9 { margin-left: 81.81818182%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--sm--10 { margin-left: 90.90909091%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--sm--11 { margin-left: 100%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--sm--1 { float: left; clear: none; width: 8.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--sm--2 { float: left; clear: none; width: 16.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--sm--3 { float: left; clear: none; width: 25%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--sm--4 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--sm--5 { float: left; clear: none; width: 41.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--sm--6 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--sm--7 { float: left; clear: none; width: 58.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--sm--8 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--sm--9 { float: left; clear: none; width: 75%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--sm--10 { float: left; clear: none; width: 83.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--sm--11 { float: left; clear: none; width: 91.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--sm--12 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--sm--0 { margin-left: 0%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--sm--1 { margin-left: 8.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--sm--2 { margin-left: 16.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--sm--3 { margin-left: 25%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--sm--4 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--sm--5 { margin-left: 41.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--sm--6 { margin-left: 50%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--sm--7 { margin-left: 58.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--sm--8 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--sm--9 { margin-left: 75%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--sm--10 { margin-left: 83.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--sm--11 { margin-left: 91.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--sm--12 { margin-left: 100%; } .aem-Grid.aem-Grid--sm--1 > .aem-GridColumn.aem-GridColumn--sm--1 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--sm--1 > .aem-GridColumn.aem-GridColumn--offset--sm--0 { margin-left: 0%; } .aem-Grid.aem-Grid--sm--1 > .aem-GridColumn.aem-GridColumn--offset--sm--1 { margin-left: 100%; } .aem-Grid.aem-Grid--sm--2 > .aem-GridColumn.aem-GridColumn--sm--1 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--sm--2 > .aem-GridColumn.aem-GridColumn--sm--2 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--sm--2 > .aem-GridColumn.aem-GridColumn--offset--sm--0 { margin-left: 0%; } .aem-Grid.aem-Grid--sm--2 > .aem-GridColumn.aem-GridColumn--offset--sm--1 { margin-left: 50%; } .aem-Grid.aem-Grid--sm--2 > .aem-GridColumn.aem-GridColumn--offset--sm--2 { margin-left: 100%; } .aem-Grid.aem-Grid--sm--3 > .aem-GridColumn.aem-GridColumn--sm--1 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--sm--3 > .aem-GridColumn.aem-GridColumn--sm--2 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--sm--3 > .aem-GridColumn.aem-GridColumn--sm--3 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--sm--3 > .aem-GridColumn.aem-GridColumn--offset--sm--0 { margin-left: 0%; } .aem-Grid.aem-Grid--sm--3 > .aem-GridColumn.aem-GridColumn--offset--sm--1 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--sm--3 > .aem-GridColumn.aem-GridColumn--offset--sm--2 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--sm--3 > .aem-GridColumn.aem-GridColumn--offset--sm--3 { margin-left: 100%; } .aem-Grid.aem-Grid--sm--4 > .aem-GridColumn.aem-GridColumn--sm--1 { float: left; clear: none; width: 25%; } .aem-Grid.aem-Grid--sm--4 > .aem-GridColumn.aem-GridColumn--sm--2 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--sm--4 > .aem-GridColumn.aem-GridColumn--sm--3 { float: left; clear: none; width: 75%; } .aem-Grid.aem-Grid--sm--4 > .aem-GridColumn.aem-GridColumn--sm--4 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--sm--4 > .aem-GridColumn.aem-GridColumn--offset--sm--0 { margin-left: 0%; } .aem-Grid.aem-Grid--sm--4 > .aem-GridColumn.aem-GridColumn--offset--sm--1 { margin-left: 25%; } .aem-Grid.aem-Grid--sm--4 > .aem-GridColumn.aem-GridColumn--offset--sm--2 { margin-left: 50%; } .aem-Grid.aem-Grid--sm--4 > .aem-GridColumn.aem-GridColumn--offset--sm--3 { margin-left: 75%; } .aem-Grid.aem-Grid--sm--4 > .aem-GridColumn.aem-GridColumn--offset--sm--4 { margin-left: 100%; } .aem-Grid.aem-Grid--sm--5 > .aem-GridColumn.aem-GridColumn--sm--1 { float: left; clear: none; width: 20%; } .aem-Grid.aem-Grid--sm--5 > .aem-GridColumn.aem-GridColumn--sm--2 { float: left; clear: none; width: 40%; } .aem-Grid.aem-Grid--sm--5 > .aem-GridColumn.aem-GridColumn--sm--3 { float: left; clear: none; width: 60%; } .aem-Grid.aem-Grid--sm--5 > .aem-GridColumn.aem-GridColumn--sm--4 { float: left; clear: none; width: 80%; } .aem-Grid.aem-Grid--sm--5 > .aem-GridColumn.aem-GridColumn--sm--5 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--sm--5 > .aem-GridColumn.aem-GridColumn--offset--sm--0 { margin-left: 0%; } .aem-Grid.aem-Grid--sm--5 > .aem-GridColumn.aem-GridColumn--offset--sm--1 { margin-left: 20%; } .aem-Grid.aem-Grid--sm--5 > .aem-GridColumn.aem-GridColumn--offset--sm--2 { margin-left: 40%; } .aem-Grid.aem-Grid--sm--5 > .aem-GridColumn.aem-GridColumn--offset--sm--3 { margin-left: 60%; } .aem-Grid.aem-Grid--sm--5 > .aem-GridColumn.aem-GridColumn--offset--sm--4 { margin-left: 80%; } .aem-Grid.aem-Grid--sm--5 > .aem-GridColumn.aem-GridColumn--offset--sm--5 { margin-left: 100%; } .aem-Grid.aem-Grid--sm--6 > .aem-GridColumn.aem-GridColumn--sm--1 { float: left; clear: none; width: 16.66666667%; } .aem-Grid.aem-Grid--sm--6 > .aem-GridColumn.aem-GridColumn--sm--2 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--sm--6 > .aem-GridColumn.aem-GridColumn--sm--3 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--sm--6 > .aem-GridColumn.aem-GridColumn--sm--4 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--sm--6 > .aem-GridColumn.aem-GridColumn--sm--5 { float: left; clear: none; width: 83.33333333%; } .aem-Grid.aem-Grid--sm--6 > .aem-GridColumn.aem-GridColumn--sm--6 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--sm--6 > .aem-GridColumn.aem-GridColumn--offset--sm--0 { margin-left: 0%; } .aem-Grid.aem-Grid--sm--6 > .aem-GridColumn.aem-GridColumn--offset--sm--1 { margin-left: 16.66666667%; } .aem-Grid.aem-Grid--sm--6 > .aem-GridColumn.aem-GridColumn--offset--sm--2 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--sm--6 > .aem-GridColumn.aem-GridColumn--offset--sm--3 { margin-left: 50%; } .aem-Grid.aem-Grid--sm--6 > .aem-GridColumn.aem-GridColumn--offset--sm--4 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--sm--6 > .aem-GridColumn.aem-GridColumn--offset--sm--5 { margin-left: 83.33333333%; } .aem-Grid.aem-Grid--sm--6 > .aem-GridColumn.aem-GridColumn--offset--sm--6 { margin-left: 100%; } .aem-Grid.aem-Grid--sm--7 > .aem-GridColumn.aem-GridColumn--sm--1 { float: left; clear: none; width: 14.28571429%; } .aem-Grid.aem-Grid--sm--7 > .aem-GridColumn.aem-GridColumn--sm--2 { float: left; clear: none; width: 28.57142857%; } .aem-Grid.aem-Grid--sm--7 > .aem-GridColumn.aem-GridColumn--sm--3 { float: left; clear: none; width: 42.85714286%; } .aem-Grid.aem-Grid--sm--7 > .aem-GridColumn.aem-GridColumn--sm--4 { float: left; clear: none; width: 57.14285714%; } .aem-Grid.aem-Grid--sm--7 > .aem-GridColumn.aem-GridColumn--sm--5 { float: left; clear: none; width: 71.42857143%; } .aem-Grid.aem-Grid--sm--7 > .aem-GridColumn.aem-GridColumn--sm--6 { float: left; clear: none; width: 85.71428571%; } .aem-Grid.aem-Grid--sm--7 > .aem-GridColumn.aem-GridColumn--sm--7 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--sm--7 > .aem-GridColumn.aem-GridColumn--offset--sm--0 { margin-left: 0%; } .aem-Grid.aem-Grid--sm--7 > .aem-GridColumn.aem-GridColumn--offset--sm--1 { margin-left: 14.28571429%; } .aem-Grid.aem-Grid--sm--7 > .aem-GridColumn.aem-GridColumn--offset--sm--2 { margin-left: 28.57142857%; } .aem-Grid.aem-Grid--sm--7 > .aem-GridColumn.aem-GridColumn--offset--sm--3 { margin-left: 42.85714286%; } .aem-Grid.aem-Grid--sm--7 > .aem-GridColumn.aem-GridColumn--offset--sm--4 { margin-left: 57.14285714%; } .aem-Grid.aem-Grid--sm--7 > .aem-GridColumn.aem-GridColumn--offset--sm--5 { margin-left: 71.42857143%; } .aem-Grid.aem-Grid--sm--7 > .aem-GridColumn.aem-GridColumn--offset--sm--6 { margin-left: 85.71428571%; } .aem-Grid.aem-Grid--sm--7 > .aem-GridColumn.aem-GridColumn--offset--sm--7 { margin-left: 100%; } .aem-Grid.aem-Grid--sm--8 > .aem-GridColumn.aem-GridColumn--sm--1 { float: left; clear: none; width: 12.5%; } .aem-Grid.aem-Grid--sm--8 > .aem-GridColumn.aem-GridColumn--sm--2 { float: left; clear: none; width: 25%; } .aem-Grid.aem-Grid--sm--8 > .aem-GridColumn.aem-GridColumn--sm--3 { float: left; clear: none; width: 37.5%; } .aem-Grid.aem-Grid--sm--8 > .aem-GridColumn.aem-GridColumn--sm--4 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--sm--8 > .aem-GridColumn.aem-GridColumn--sm--5 { float: left; clear: none; width: 62.5%; } .aem-Grid.aem-Grid--sm--8 > .aem-GridColumn.aem-GridColumn--sm--6 { float: left; clear: none; width: 75%; } .aem-Grid.aem-Grid--sm--8 > .aem-GridColumn.aem-GridColumn--sm--7 { float: left; clear: none; width: 87.5%; } .aem-Grid.aem-Grid--sm--8 > .aem-GridColumn.aem-GridColumn--sm--8 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--sm--8 > .aem-GridColumn.aem-GridColumn--offset--sm--0 { margin-left: 0%; } .aem-Grid.aem-Grid--sm--8 > .aem-GridColumn.aem-GridColumn--offset--sm--1 { margin-left: 12.5%; } .aem-Grid.aem-Grid--sm--8 > .aem-GridColumn.aem-GridColumn--offset--sm--2 { margin-left: 25%; } .aem-Grid.aem-Grid--sm--8 > .aem-GridColumn.aem-GridColumn--offset--sm--3 { margin-left: 37.5%; } .aem-Grid.aem-Grid--sm--8 > .aem-GridColumn.aem-GridColumn--offset--sm--4 { margin-left: 50%; } .aem-Grid.aem-Grid--sm--8 > .aem-GridColumn.aem-GridColumn--offset--sm--5 { margin-left: 62.5%; } .aem-Grid.aem-Grid--sm--8 > .aem-GridColumn.aem-GridColumn--offset--sm--6 { margin-left: 75%; } .aem-Grid.aem-Grid--sm--8 > .aem-GridColumn.aem-GridColumn--offset--sm--7 { margin-left: 87.5%; } .aem-Grid.aem-Grid--sm--8 > .aem-GridColumn.aem-GridColumn--offset--sm--8 { margin-left: 100%; } .aem-Grid.aem-Grid--sm--9 > .aem-GridColumn.aem-GridColumn--sm--1 { float: left; clear: none; width: 11.11111111%; } .aem-Grid.aem-Grid--sm--9 > .aem-GridColumn.aem-GridColumn--sm--2 { float: left; clear: none; width: 22.22222222%; } .aem-Grid.aem-Grid--sm--9 > .aem-GridColumn.aem-GridColumn--sm--3 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--sm--9 > .aem-GridColumn.aem-GridColumn--sm--4 { float: left; clear: none; width: 44.44444444%; } .aem-Grid.aem-Grid--sm--9 > .aem-GridColumn.aem-GridColumn--sm--5 { float: left; clear: none; width: 55.55555556%; } .aem-Grid.aem-Grid--sm--9 > .aem-GridColumn.aem-GridColumn--sm--6 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--sm--9 > .aem-GridColumn.aem-GridColumn--sm--7 { float: left; clear: none; width: 77.77777778%; } .aem-Grid.aem-Grid--sm--9 > .aem-GridColumn.aem-GridColumn--sm--8 { float: left; clear: none; width: 88.88888889%; } .aem-Grid.aem-Grid--sm--9 > .aem-GridColumn.aem-GridColumn--sm--9 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--sm--9 > .aem-GridColumn.aem-GridColumn--offset--sm--0 { margin-left: 0%; } .aem-Grid.aem-Grid--sm--9 > .aem-GridColumn.aem-GridColumn--offset--sm--1 { margin-left: 11.11111111%; } .aem-Grid.aem-Grid--sm--9 > .aem-GridColumn.aem-GridColumn--offset--sm--2 { margin-left: 22.22222222%; } .aem-Grid.aem-Grid--sm--9 > .aem-GridColumn.aem-GridColumn--offset--sm--3 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--sm--9 > .aem-GridColumn.aem-GridColumn--offset--sm--4 { margin-left: 44.44444444%; } .aem-Grid.aem-Grid--sm--9 > .aem-GridColumn.aem-GridColumn--offset--sm--5 { margin-left: 55.55555556%; } .aem-Grid.aem-Grid--sm--9 > .aem-GridColumn.aem-GridColumn--offset--sm--6 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--sm--9 > .aem-GridColumn.aem-GridColumn--offset--sm--7 { margin-left: 77.77777778%; } .aem-Grid.aem-Grid--sm--9 > .aem-GridColumn.aem-GridColumn--offset--sm--8 { margin-left: 88.88888889%; } .aem-Grid.aem-Grid--sm--9 > .aem-GridColumn.aem-GridColumn--offset--sm--9 { margin-left: 100%; } .aem-Grid.aem-Grid--sm--10 > .aem-GridColumn.aem-GridColumn--sm--1 { float: left; clear: none; width: 10%; } .aem-Grid.aem-Grid--sm--10 > .aem-GridColumn.aem-GridColumn--sm--2 { float: left; clear: none; width: 20%; } .aem-Grid.aem-Grid--sm--10 > .aem-GridColumn.aem-GridColumn--sm--3 { float: left; clear: none; width: 30%; } .aem-Grid.aem-Grid--sm--10 > .aem-GridColumn.aem-GridColumn--sm--4 { float: left; clear: none; width: 40%; } .aem-Grid.aem-Grid--sm--10 > .aem-GridColumn.aem-GridColumn--sm--5 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--sm--10 > .aem-GridColumn.aem-GridColumn--sm--6 { float: left; clear: none; width: 60%; } .aem-Grid.aem-Grid--sm--10 > .aem-GridColumn.aem-GridColumn--sm--7 { float: left; clear: none; width: 70%; } .aem-Grid.aem-Grid--sm--10 > .aem-GridColumn.aem-GridColumn--sm--8 { float: left; clear: none; width: 80%; } .aem-Grid.aem-Grid--sm--10 > .aem-GridColumn.aem-GridColumn--sm--9 { float: left; clear: none; width: 90%; } .aem-Grid.aem-Grid--sm--10 > .aem-GridColumn.aem-GridColumn--sm--10 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--sm--10 > .aem-GridColumn.aem-GridColumn--offset--sm--0 { margin-left: 0%; } .aem-Grid.aem-Grid--sm--10 > .aem-GridColumn.aem-GridColumn--offset--sm--1 { margin-left: 10%; } .aem-Grid.aem-Grid--sm--10 > .aem-GridColumn.aem-GridColumn--offset--sm--2 { margin-left: 20%; } .aem-Grid.aem-Grid--sm--10 > .aem-GridColumn.aem-GridColumn--offset--sm--3 { margin-left: 30%; } .aem-Grid.aem-Grid--sm--10 > .aem-GridColumn.aem-GridColumn--offset--sm--4 { margin-left: 40%; } .aem-Grid.aem-Grid--sm--10 > .aem-GridColumn.aem-GridColumn--offset--sm--5 { margin-left: 50%; } .aem-Grid.aem-Grid--sm--10 > .aem-GridColumn.aem-GridColumn--offset--sm--6 { margin-left: 60%; } .aem-Grid.aem-Grid--sm--10 > .aem-GridColumn.aem-GridColumn--offset--sm--7 { margin-left: 70%; } .aem-Grid.aem-Grid--sm--10 > .aem-GridColumn.aem-GridColumn--offset--sm--8 { margin-left: 80%; } .aem-Grid.aem-Grid--sm--10 > .aem-GridColumn.aem-GridColumn--offset--sm--9 { margin-left: 90%; } .aem-Grid.aem-Grid--sm--10 > .aem-GridColumn.aem-GridColumn--offset--sm--10 { margin-left: 100%; } .aem-Grid.aem-Grid--sm--11 > .aem-GridColumn.aem-GridColumn--sm--1 { float: left; clear: none; width: 9.09090909%; } .aem-Grid.aem-Grid--sm--11 > .aem-GridColumn.aem-GridColumn--sm--2 { float: left; clear: none; width: 18.18181818%; } .aem-Grid.aem-Grid--sm--11 > .aem-GridColumn.aem-GridColumn--sm--3 { float: left; clear: none; width: 27.27272727%; } .aem-Grid.aem-Grid--sm--11 > .aem-GridColumn.aem-GridColumn--sm--4 { float: left; clear: none; width: 36.36363636%; } .aem-Grid.aem-Grid--sm--11 > .aem-GridColumn.aem-GridColumn--sm--5 { float: left; clear: none; width: 45.45454545%; } .aem-Grid.aem-Grid--sm--11 > .aem-GridColumn.aem-GridColumn--sm--6 { float: left; clear: none; width: 54.54545455%; } .aem-Grid.aem-Grid--sm--11 > .aem-GridColumn.aem-GridColumn--sm--7 { float: left; clear: none; width: 63.63636364%; } .aem-Grid.aem-Grid--sm--11 > .aem-GridColumn.aem-GridColumn--sm--8 { float: left; clear: none; width: 72.72727273%; } .aem-Grid.aem-Grid--sm--11 > .aem-GridColumn.aem-GridColumn--sm--9 { float: left; clear: none; width: 81.81818182%; } .aem-Grid.aem-Grid--sm--11 > .aem-GridColumn.aem-GridColumn--sm--10 { float: left; clear: none; width: 90.90909091%; } .aem-Grid.aem-Grid--sm--11 > .aem-GridColumn.aem-GridColumn--sm--11 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--sm--11 > .aem-GridColumn.aem-GridColumn--offset--sm--0 { margin-left: 0%; } .aem-Grid.aem-Grid--sm--11 > .aem-GridColumn.aem-GridColumn--offset--sm--1 { margin-left: 9.09090909%; } .aem-Grid.aem-Grid--sm--11 > .aem-GridColumn.aem-GridColumn--offset--sm--2 { margin-left: 18.18181818%; } .aem-Grid.aem-Grid--sm--11 > .aem-GridColumn.aem-GridColumn--offset--sm--3 { margin-left: 27.27272727%; } .aem-Grid.aem-Grid--sm--11 > .aem-GridColumn.aem-GridColumn--offset--sm--4 { margin-left: 36.36363636%; } .aem-Grid.aem-Grid--sm--11 > .aem-GridColumn.aem-GridColumn--offset--sm--5 { margin-left: 45.45454545%; } .aem-Grid.aem-Grid--sm--11 > .aem-GridColumn.aem-GridColumn--offset--sm--6 { margin-left: 54.54545455%; } .aem-Grid.aem-Grid--sm--11 > .aem-GridColumn.aem-GridColumn--offset--sm--7 { margin-left: 63.63636364%; } .aem-Grid.aem-Grid--sm--11 > .aem-GridColumn.aem-GridColumn--offset--sm--8 { margin-left: 72.72727273%; } .aem-Grid.aem-Grid--sm--11 > .aem-GridColumn.aem-GridColumn--offset--sm--9 { margin-left: 81.81818182%; } .aem-Grid.aem-Grid--sm--11 > .aem-GridColumn.aem-GridColumn--offset--sm--10 { margin-left: 90.90909091%; } .aem-Grid.aem-Grid--sm--11 > .aem-GridColumn.aem-GridColumn--offset--sm--11 { margin-left: 100%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--sm--1 { float: left; clear: none; width: 8.33333333%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--sm--2 { float: left; clear: none; width: 16.66666667%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--sm--3 { float: left; clear: none; width: 25%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--sm--4 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--sm--5 { float: left; clear: none; width: 41.66666667%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--sm--6 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--sm--7 { float: left; clear: none; width: 58.33333333%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--sm--8 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--sm--9 { float: left; clear: none; width: 75%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--sm--10 { float: left; clear: none; width: 83.33333333%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--sm--11 { float: left; clear: none; width: 91.66666667%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--sm--12 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--offset--sm--0 { margin-left: 0%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--offset--sm--1 { margin-left: 8.33333333%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--offset--sm--2 { margin-left: 16.66666667%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--offset--sm--3 { margin-left: 25%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--offset--sm--4 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--offset--sm--5 { margin-left: 41.66666667%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--offset--sm--6 { margin-left: 50%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--offset--sm--7 { margin-left: 58.33333333%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--offset--sm--8 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--offset--sm--9 { margin-left: 75%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--offset--sm--10 { margin-left: 83.33333333%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--offset--sm--11 { margin-left: 91.66666667%; } .aem-Grid.aem-Grid--sm--12 > .aem-GridColumn.aem-GridColumn--offset--sm--12 { margin-left: 100%; } .aem-Grid > .aem-GridColumn.aem-GridColumn--sm--newline { /* newline behavior */ display: block; clear: both !important; } .aem-Grid > .aem-GridColumn.aem-GridColumn--sm--none { /* none behavior */ display: block; clear: none !important; float: left; } .aem-Grid > .aem-GridColumn.aem-GridColumn--sm--hide { /* hide behavior */ display: none; } } /* md breakpoint */ @media (min-width: 768px) and (max-width: 1023px) { .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--md--1 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--offset--md--0 { margin-left: 0%; } .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--offset--md--1 { margin-left: 100%; } .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--md--1 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--md--2 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--md--0 { margin-left: 0%; } .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--md--1 { margin-left: 50%; } .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--md--2 { margin-left: 100%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--md--1 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--md--2 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--md--3 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--md--0 { margin-left: 0%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--md--1 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--md--2 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--md--3 { margin-left: 100%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--md--1 { float: left; clear: none; width: 25%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--md--2 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--md--3 { float: left; clear: none; width: 75%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--md--4 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--md--0 { margin-left: 0%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--md--1 { margin-left: 25%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--md--2 { margin-left: 50%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--md--3 { margin-left: 75%; } .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--md--4 { margin-left: 100%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--md--1 { float: left; clear: none; width: 20%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--md--2 { float: left; clear: none; width: 40%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--md--3 { float: left; clear: none; width: 60%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--md--4 { float: left; clear: none; width: 80%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--md--5 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--md--0 { margin-left: 0%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--md--1 { margin-left: 20%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--md--2 { margin-left: 40%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--md--3 { margin-left: 60%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--md--4 { margin-left: 80%; } .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--md--5 { margin-left: 100%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--md--1 { float: left; clear: none; width: 16.66666667%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--md--2 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--md--3 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--md--4 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--md--5 { float: left; clear: none; width: 83.33333333%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--md--6 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--md--0 { margin-left: 0%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--md--1 { margin-left: 16.66666667%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--md--2 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--md--3 { margin-left: 50%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--md--4 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--md--5 { margin-left: 83.33333333%; } .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--md--6 { margin-left: 100%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--md--1 { float: left; clear: none; width: 14.28571429%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--md--2 { float: left; clear: none; width: 28.57142857%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--md--3 { float: left; clear: none; width: 42.85714286%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--md--4 { float: left; clear: none; width: 57.14285714%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--md--5 { float: left; clear: none; width: 71.42857143%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--md--6 { float: left; clear: none; width: 85.71428571%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--md--7 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--md--0 { margin-left: 0%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--md--1 { margin-left: 14.28571429%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--md--2 { margin-left: 28.57142857%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--md--3 { margin-left: 42.85714286%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--md--4 { margin-left: 57.14285714%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--md--5 { margin-left: 71.42857143%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--md--6 { margin-left: 85.71428571%; } .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--md--7 { margin-left: 100%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--md--1 { float: left; clear: none; width: 12.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--md--2 { float: left; clear: none; width: 25%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--md--3 { float: left; clear: none; width: 37.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--md--4 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--md--5 { float: left; clear: none; width: 62.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--md--6 { float: left; clear: none; width: 75%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--md--7 { float: left; clear: none; width: 87.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--md--8 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--md--0 { margin-left: 0%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--md--1 { margin-left: 12.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--md--2 { margin-left: 25%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--md--3 { margin-left: 37.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--md--4 { margin-left: 50%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--md--5 { margin-left: 62.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--md--6 { margin-left: 75%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--md--7 { margin-left: 87.5%; } .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--md--8 { margin-left: 100%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--md--1 { float: left; clear: none; width: 11.11111111%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--md--2 { float: left; clear: none; width: 22.22222222%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--md--3 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--md--4 { float: left; clear: none; width: 44.44444444%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--md--5 { float: left; clear: none; width: 55.55555556%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--md--6 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--md--7 { float: left; clear: none; width: 77.77777778%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--md--8 { float: left; clear: none; width: 88.88888889%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--md--9 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--md--0 { margin-left: 0%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--md--1 { margin-left: 11.11111111%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--md--2 { margin-left: 22.22222222%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--md--3 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--md--4 { margin-left: 44.44444444%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--md--5 { margin-left: 55.55555556%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--md--6 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--md--7 { margin-left: 77.77777778%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--md--8 { margin-left: 88.88888889%; } .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--md--9 { margin-left: 100%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--md--1 { float: left; clear: none; width: 10%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--md--2 { float: left; clear: none; width: 20%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--md--3 { float: left; clear: none; width: 30%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--md--4 { float: left; clear: none; width: 40%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--md--5 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--md--6 { float: left; clear: none; width: 60%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--md--7 { float: left; clear: none; width: 70%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--md--8 { float: left; clear: none; width: 80%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--md--9 { float: left; clear: none; width: 90%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--md--10 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--md--0 { margin-left: 0%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--md--1 { margin-left: 10%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--md--2 { margin-left: 20%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--md--3 { margin-left: 30%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--md--4 { margin-left: 40%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--md--5 { margin-left: 50%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--md--6 { margin-left: 60%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--md--7 { margin-left: 70%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--md--8 { margin-left: 80%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--md--9 { margin-left: 90%; } .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--md--10 { margin-left: 100%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--md--1 { float: left; clear: none; width: 9.09090909%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--md--2 { float: left; clear: none; width: 18.18181818%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--md--3 { float: left; clear: none; width: 27.27272727%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--md--4 { float: left; clear: none; width: 36.36363636%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--md--5 { float: left; clear: none; width: 45.45454545%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--md--6 { float: left; clear: none; width: 54.54545455%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--md--7 { float: left; clear: none; width: 63.63636364%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--md--8 { float: left; clear: none; width: 72.72727273%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--md--9 { float: left; clear: none; width: 81.81818182%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--md--10 { float: left; clear: none; width: 90.90909091%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--md--11 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--md--0 { margin-left: 0%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--md--1 { margin-left: 9.09090909%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--md--2 { margin-left: 18.18181818%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--md--3 { margin-left: 27.27272727%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--md--4 { margin-left: 36.36363636%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--md--5 { margin-left: 45.45454545%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--md--6 { margin-left: 54.54545455%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--md--7 { margin-left: 63.63636364%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--md--8 { margin-left: 72.72727273%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--md--9 { margin-left: 81.81818182%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--md--10 { margin-left: 90.90909091%; } .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--md--11 { margin-left: 100%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--md--1 { float: left; clear: none; width: 8.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--md--2 { float: left; clear: none; width: 16.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--md--3 { float: left; clear: none; width: 25%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--md--4 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--md--5 { float: left; clear: none; width: 41.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--md--6 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--md--7 { float: left; clear: none; width: 58.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--md--8 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--md--9 { float: left; clear: none; width: 75%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--md--10 { float: left; clear: none; width: 83.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--md--11 { float: left; clear: none; width: 91.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--md--12 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--md--0 { margin-left: 0%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--md--1 { margin-left: 8.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--md--2 { margin-left: 16.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--md--3 { margin-left: 25%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--md--4 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--md--5 { margin-left: 41.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--md--6 { margin-left: 50%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--md--7 { margin-left: 58.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--md--8 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--md--9 { margin-left: 75%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--md--10 { margin-left: 83.33333333%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--md--11 { margin-left: 91.66666667%; } .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--md--12 { margin-left: 100%; } .aem-Grid.aem-Grid--md--1 > .aem-GridColumn.aem-GridColumn--md--1 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--md--1 > .aem-GridColumn.aem-GridColumn--offset--md--0 { margin-left: 0%; } .aem-Grid.aem-Grid--md--1 > .aem-GridColumn.aem-GridColumn--offset--md--1 { margin-left: 100%; } .aem-Grid.aem-Grid--md--2 > .aem-GridColumn.aem-GridColumn--md--1 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--md--2 > .aem-GridColumn.aem-GridColumn--md--2 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--md--2 > .aem-GridColumn.aem-GridColumn--offset--md--0 { margin-left: 0%; } .aem-Grid.aem-Grid--md--2 > .aem-GridColumn.aem-GridColumn--offset--md--1 { margin-left: 50%; } .aem-Grid.aem-Grid--md--2 > .aem-GridColumn.aem-GridColumn--offset--md--2 { margin-left: 100%; } .aem-Grid.aem-Grid--md--3 > .aem-GridColumn.aem-GridColumn--md--1 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--md--3 > .aem-GridColumn.aem-GridColumn--md--2 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--md--3 > .aem-GridColumn.aem-GridColumn--md--3 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--md--3 > .aem-GridColumn.aem-GridColumn--offset--md--0 { margin-left: 0%; } .aem-Grid.aem-Grid--md--3 > .aem-GridColumn.aem-GridColumn--offset--md--1 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--md--3 > .aem-GridColumn.aem-GridColumn--offset--md--2 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--md--3 > .aem-GridColumn.aem-GridColumn--offset--md--3 { margin-left: 100%; } .aem-Grid.aem-Grid--md--4 > .aem-GridColumn.aem-GridColumn--md--1 { float: left; clear: none; width: 25%; } .aem-Grid.aem-Grid--md--4 > .aem-GridColumn.aem-GridColumn--md--2 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--md--4 > .aem-GridColumn.aem-GridColumn--md--3 { float: left; clear: none; width: 75%; } .aem-Grid.aem-Grid--md--4 > .aem-GridColumn.aem-GridColumn--md--4 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--md--4 > .aem-GridColumn.aem-GridColumn--offset--md--0 { margin-left: 0%; } .aem-Grid.aem-Grid--md--4 > .aem-GridColumn.aem-GridColumn--offset--md--1 { margin-left: 25%; } .aem-Grid.aem-Grid--md--4 > .aem-GridColumn.aem-GridColumn--offset--md--2 { margin-left: 50%; } .aem-Grid.aem-Grid--md--4 > .aem-GridColumn.aem-GridColumn--offset--md--3 { margin-left: 75%; } .aem-Grid.aem-Grid--md--4 > .aem-GridColumn.aem-GridColumn--offset--md--4 { margin-left: 100%; } .aem-Grid.aem-Grid--md--5 > .aem-GridColumn.aem-GridColumn--md--1 { float: left; clear: none; width: 20%; } .aem-Grid.aem-Grid--md--5 > .aem-GridColumn.aem-GridColumn--md--2 { float: left; clear: none; width: 40%; } .aem-Grid.aem-Grid--md--5 > .aem-GridColumn.aem-GridColumn--md--3 { float: left; clear: none; width: 60%; } .aem-Grid.aem-Grid--md--5 > .aem-GridColumn.aem-GridColumn--md--4 { float: left; clear: none; width: 80%; } .aem-Grid.aem-Grid--md--5 > .aem-GridColumn.aem-GridColumn--md--5 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--md--5 > .aem-GridColumn.aem-GridColumn--offset--md--0 { margin-left: 0%; } .aem-Grid.aem-Grid--md--5 > .aem-GridColumn.aem-GridColumn--offset--md--1 { margin-left: 20%; } .aem-Grid.aem-Grid--md--5 > .aem-GridColumn.aem-GridColumn--offset--md--2 { margin-left: 40%; } .aem-Grid.aem-Grid--md--5 > .aem-GridColumn.aem-GridColumn--offset--md--3 { margin-left: 60%; } .aem-Grid.aem-Grid--md--5 > .aem-GridColumn.aem-GridColumn--offset--md--4 { margin-left: 80%; } .aem-Grid.aem-Grid--md--5 > .aem-GridColumn.aem-GridColumn--offset--md--5 { margin-left: 100%; } .aem-Grid.aem-Grid--md--6 > .aem-GridColumn.aem-GridColumn--md--1 { float: left; clear: none; width: 16.66666667%; } .aem-Grid.aem-Grid--md--6 > .aem-GridColumn.aem-GridColumn--md--2 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--md--6 > .aem-GridColumn.aem-GridColumn--md--3 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--md--6 > .aem-GridColumn.aem-GridColumn--md--4 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--md--6 > .aem-GridColumn.aem-GridColumn--md--5 { float: left; clear: none; width: 83.33333333%; } .aem-Grid.aem-Grid--md--6 > .aem-GridColumn.aem-GridColumn--md--6 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--md--6 > .aem-GridColumn.aem-GridColumn--offset--md--0 { margin-left: 0%; } .aem-Grid.aem-Grid--md--6 > .aem-GridColumn.aem-GridColumn--offset--md--1 { margin-left: 16.66666667%; } .aem-Grid.aem-Grid--md--6 > .aem-GridColumn.aem-GridColumn--offset--md--2 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--md--6 > .aem-GridColumn.aem-GridColumn--offset--md--3 { margin-left: 50%; } .aem-Grid.aem-Grid--md--6 > .aem-GridColumn.aem-GridColumn--offset--md--4 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--md--6 > .aem-GridColumn.aem-GridColumn--offset--md--5 { margin-left: 83.33333333%; } .aem-Grid.aem-Grid--md--6 > .aem-GridColumn.aem-GridColumn--offset--md--6 { margin-left: 100%; } .aem-Grid.aem-Grid--md--7 > .aem-GridColumn.aem-GridColumn--md--1 { float: left; clear: none; width: 14.28571429%; } .aem-Grid.aem-Grid--md--7 > .aem-GridColumn.aem-GridColumn--md--2 { float: left; clear: none; width: 28.57142857%; } .aem-Grid.aem-Grid--md--7 > .aem-GridColumn.aem-GridColumn--md--3 { float: left; clear: none; width: 42.85714286%; } .aem-Grid.aem-Grid--md--7 > .aem-GridColumn.aem-GridColumn--md--4 { float: left; clear: none; width: 57.14285714%; } .aem-Grid.aem-Grid--md--7 > .aem-GridColumn.aem-GridColumn--md--5 { float: left; clear: none; width: 71.42857143%; } .aem-Grid.aem-Grid--md--7 > .aem-GridColumn.aem-GridColumn--md--6 { float: left; clear: none; width: 85.71428571%; } .aem-Grid.aem-Grid--md--7 > .aem-GridColumn.aem-GridColumn--md--7 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--md--7 > .aem-GridColumn.aem-GridColumn--offset--md--0 { margin-left: 0%; } .aem-Grid.aem-Grid--md--7 > .aem-GridColumn.aem-GridColumn--offset--md--1 { margin-left: 14.28571429%; } .aem-Grid.aem-Grid--md--7 > .aem-GridColumn.aem-GridColumn--offset--md--2 { margin-left: 28.57142857%; } .aem-Grid.aem-Grid--md--7 > .aem-GridColumn.aem-GridColumn--offset--md--3 { margin-left: 42.85714286%; } .aem-Grid.aem-Grid--md--7 > .aem-GridColumn.aem-GridColumn--offset--md--4 { margin-left: 57.14285714%; } .aem-Grid.aem-Grid--md--7 > .aem-GridColumn.aem-GridColumn--offset--md--5 { margin-left: 71.42857143%; } .aem-Grid.aem-Grid--md--7 > .aem-GridColumn.aem-GridColumn--offset--md--6 { margin-left: 85.71428571%; } .aem-Grid.aem-Grid--md--7 > .aem-GridColumn.aem-GridColumn--offset--md--7 { margin-left: 100%; } .aem-Grid.aem-Grid--md--8 > .aem-GridColumn.aem-GridColumn--md--1 { float: left; clear: none; width: 12.5%; } .aem-Grid.aem-Grid--md--8 > .aem-GridColumn.aem-GridColumn--md--2 { float: left; clear: none; width: 25%; } .aem-Grid.aem-Grid--md--8 > .aem-GridColumn.aem-GridColumn--md--3 { float: left; clear: none; width: 37.5%; } .aem-Grid.aem-Grid--md--8 > .aem-GridColumn.aem-GridColumn--md--4 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--md--8 > .aem-GridColumn.aem-GridColumn--md--5 { float: left; clear: none; width: 62.5%; } .aem-Grid.aem-Grid--md--8 > .aem-GridColumn.aem-GridColumn--md--6 { float: left; clear: none; width: 75%; } .aem-Grid.aem-Grid--md--8 > .aem-GridColumn.aem-GridColumn--md--7 { float: left; clear: none; width: 87.5%; } .aem-Grid.aem-Grid--md--8 > .aem-GridColumn.aem-GridColumn--md--8 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--md--8 > .aem-GridColumn.aem-GridColumn--offset--md--0 { margin-left: 0%; } .aem-Grid.aem-Grid--md--8 > .aem-GridColumn.aem-GridColumn--offset--md--1 { margin-left: 12.5%; } .aem-Grid.aem-Grid--md--8 > .aem-GridColumn.aem-GridColumn--offset--md--2 { margin-left: 25%; } .aem-Grid.aem-Grid--md--8 > .aem-GridColumn.aem-GridColumn--offset--md--3 { margin-left: 37.5%; } .aem-Grid.aem-Grid--md--8 > .aem-GridColumn.aem-GridColumn--offset--md--4 { margin-left: 50%; } .aem-Grid.aem-Grid--md--8 > .aem-GridColumn.aem-GridColumn--offset--md--5 { margin-left: 62.5%; } .aem-Grid.aem-Grid--md--8 > .aem-GridColumn.aem-GridColumn--offset--md--6 { margin-left: 75%; } .aem-Grid.aem-Grid--md--8 > .aem-GridColumn.aem-GridColumn--offset--md--7 { margin-left: 87.5%; } .aem-Grid.aem-Grid--md--8 > .aem-GridColumn.aem-GridColumn--offset--md--8 { margin-left: 100%; } .aem-Grid.aem-Grid--md--9 > .aem-GridColumn.aem-GridColumn--md--1 { float: left; clear: none; width: 11.11111111%; } .aem-Grid.aem-Grid--md--9 > .aem-GridColumn.aem-GridColumn--md--2 { float: left; clear: none; width: 22.22222222%; } .aem-Grid.aem-Grid--md--9 > .aem-GridColumn.aem-GridColumn--md--3 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--md--9 > .aem-GridColumn.aem-GridColumn--md--4 { float: left; clear: none; width: 44.44444444%; } .aem-Grid.aem-Grid--md--9 > .aem-GridColumn.aem-GridColumn--md--5 { float: left; clear: none; width: 55.55555556%; } .aem-Grid.aem-Grid--md--9 > .aem-GridColumn.aem-GridColumn--md--6 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--md--9 > .aem-GridColumn.aem-GridColumn--md--7 { float: left; clear: none; width: 77.77777778%; } .aem-Grid.aem-Grid--md--9 > .aem-GridColumn.aem-GridColumn--md--8 { float: left; clear: none; width: 88.88888889%; } .aem-Grid.aem-Grid--md--9 > .aem-GridColumn.aem-GridColumn--md--9 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--md--9 > .aem-GridColumn.aem-GridColumn--offset--md--0 { margin-left: 0%; } .aem-Grid.aem-Grid--md--9 > .aem-GridColumn.aem-GridColumn--offset--md--1 { margin-left: 11.11111111%; } .aem-Grid.aem-Grid--md--9 > .aem-GridColumn.aem-GridColumn--offset--md--2 { margin-left: 22.22222222%; } .aem-Grid.aem-Grid--md--9 > .aem-GridColumn.aem-GridColumn--offset--md--3 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--md--9 > .aem-GridColumn.aem-GridColumn--offset--md--4 { margin-left: 44.44444444%; } .aem-Grid.aem-Grid--md--9 > .aem-GridColumn.aem-GridColumn--offset--md--5 { margin-left: 55.55555556%; } .aem-Grid.aem-Grid--md--9 > .aem-GridColumn.aem-GridColumn--offset--md--6 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--md--9 > .aem-GridColumn.aem-GridColumn--offset--md--7 { margin-left: 77.77777778%; } .aem-Grid.aem-Grid--md--9 > .aem-GridColumn.aem-GridColumn--offset--md--8 { margin-left: 88.88888889%; } .aem-Grid.aem-Grid--md--9 > .aem-GridColumn.aem-GridColumn--offset--md--9 { margin-left: 100%; } .aem-Grid.aem-Grid--md--10 > .aem-GridColumn.aem-GridColumn--md--1 { float: left; clear: none; width: 10%; } .aem-Grid.aem-Grid--md--10 > .aem-GridColumn.aem-GridColumn--md--2 { float: left; clear: none; width: 20%; } .aem-Grid.aem-Grid--md--10 > .aem-GridColumn.aem-GridColumn--md--3 { float: left; clear: none; width: 30%; } .aem-Grid.aem-Grid--md--10 > .aem-GridColumn.aem-GridColumn--md--4 { float: left; clear: none; width: 40%; } .aem-Grid.aem-Grid--md--10 > .aem-GridColumn.aem-GridColumn--md--5 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--md--10 > .aem-GridColumn.aem-GridColumn--md--6 { float: left; clear: none; width: 60%; } .aem-Grid.aem-Grid--md--10 > .aem-GridColumn.aem-GridColumn--md--7 { float: left; clear: none; width: 70%; } .aem-Grid.aem-Grid--md--10 > .aem-GridColumn.aem-GridColumn--md--8 { float: left; clear: none; width: 80%; } .aem-Grid.aem-Grid--md--10 > .aem-GridColumn.aem-GridColumn--md--9 { float: left; clear: none; width: 90%; } .aem-Grid.aem-Grid--md--10 > .aem-GridColumn.aem-GridColumn--md--10 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--md--10 > .aem-GridColumn.aem-GridColumn--offset--md--0 { margin-left: 0%; } .aem-Grid.aem-Grid--md--10 > .aem-GridColumn.aem-GridColumn--offset--md--1 { margin-left: 10%; } .aem-Grid.aem-Grid--md--10 > .aem-GridColumn.aem-GridColumn--offset--md--2 { margin-left: 20%; } .aem-Grid.aem-Grid--md--10 > .aem-GridColumn.aem-GridColumn--offset--md--3 { margin-left: 30%; } .aem-Grid.aem-Grid--md--10 > .aem-GridColumn.aem-GridColumn--offset--md--4 { margin-left: 40%; } .aem-Grid.aem-Grid--md--10 > .aem-GridColumn.aem-GridColumn--offset--md--5 { margin-left: 50%; } .aem-Grid.aem-Grid--md--10 > .aem-GridColumn.aem-GridColumn--offset--md--6 { margin-left: 60%; } .aem-Grid.aem-Grid--md--10 > .aem-GridColumn.aem-GridColumn--offset--md--7 { margin-left: 70%; } .aem-Grid.aem-Grid--md--10 > .aem-GridColumn.aem-GridColumn--offset--md--8 { margin-left: 80%; } .aem-Grid.aem-Grid--md--10 > .aem-GridColumn.aem-GridColumn--offset--md--9 { margin-left: 90%; } .aem-Grid.aem-Grid--md--10 > .aem-GridColumn.aem-GridColumn--offset--md--10 { margin-left: 100%; } .aem-Grid.aem-Grid--md--11 > .aem-GridColumn.aem-GridColumn--md--1 { float: left; clear: none; width: 9.09090909%; } .aem-Grid.aem-Grid--md--11 > .aem-GridColumn.aem-GridColumn--md--2 { float: left; clear: none; width: 18.18181818%; } .aem-Grid.aem-Grid--md--11 > .aem-GridColumn.aem-GridColumn--md--3 { float: left; clear: none; width: 27.27272727%; } .aem-Grid.aem-Grid--md--11 > .aem-GridColumn.aem-GridColumn--md--4 { float: left; clear: none; width: 36.36363636%; } .aem-Grid.aem-Grid--md--11 > .aem-GridColumn.aem-GridColumn--md--5 { float: left; clear: none; width: 45.45454545%; } .aem-Grid.aem-Grid--md--11 > .aem-GridColumn.aem-GridColumn--md--6 { float: left; clear: none; width: 54.54545455%; } .aem-Grid.aem-Grid--md--11 > .aem-GridColumn.aem-GridColumn--md--7 { float: left; clear: none; width: 63.63636364%; } .aem-Grid.aem-Grid--md--11 > .aem-GridColumn.aem-GridColumn--md--8 { float: left; clear: none; width: 72.72727273%; } .aem-Grid.aem-Grid--md--11 > .aem-GridColumn.aem-GridColumn--md--9 { float: left; clear: none; width: 81.81818182%; } .aem-Grid.aem-Grid--md--11 > .aem-GridColumn.aem-GridColumn--md--10 { float: left; clear: none; width: 90.90909091%; } .aem-Grid.aem-Grid--md--11 > .aem-GridColumn.aem-GridColumn--md--11 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--md--11 > .aem-GridColumn.aem-GridColumn--offset--md--0 { margin-left: 0%; } .aem-Grid.aem-Grid--md--11 > .aem-GridColumn.aem-GridColumn--offset--md--1 { margin-left: 9.09090909%; } .aem-Grid.aem-Grid--md--11 > .aem-GridColumn.aem-GridColumn--offset--md--2 { margin-left: 18.18181818%; } .aem-Grid.aem-Grid--md--11 > .aem-GridColumn.aem-GridColumn--offset--md--3 { margin-left: 27.27272727%; } .aem-Grid.aem-Grid--md--11 > .aem-GridColumn.aem-GridColumn--offset--md--4 { margin-left: 36.36363636%; } .aem-Grid.aem-Grid--md--11 > .aem-GridColumn.aem-GridColumn--offset--md--5 { margin-left: 45.45454545%; } .aem-Grid.aem-Grid--md--11 > .aem-GridColumn.aem-GridColumn--offset--md--6 { margin-left: 54.54545455%; } .aem-Grid.aem-Grid--md--11 > .aem-GridColumn.aem-GridColumn--offset--md--7 { margin-left: 63.63636364%; } .aem-Grid.aem-Grid--md--11 > .aem-GridColumn.aem-GridColumn--offset--md--8 { margin-left: 72.72727273%; } .aem-Grid.aem-Grid--md--11 > .aem-GridColumn.aem-GridColumn--offset--md--9 { margin-left: 81.81818182%; } .aem-Grid.aem-Grid--md--11 > .aem-GridColumn.aem-GridColumn--offset--md--10 { margin-left: 90.90909091%; } .aem-Grid.aem-Grid--md--11 > .aem-GridColumn.aem-GridColumn--offset--md--11 { margin-left: 100%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--md--1 { float: left; clear: none; width: 8.33333333%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--md--2 { float: left; clear: none; width: 16.66666667%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--md--3 { float: left; clear: none; width: 25%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--md--4 { float: left; clear: none; width: 33.33333333%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--md--5 { float: left; clear: none; width: 41.66666667%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--md--6 { float: left; clear: none; width: 50%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--md--7 { float: left; clear: none; width: 58.33333333%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--md--8 { float: left; clear: none; width: 66.66666667%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--md--9 { float: left; clear: none; width: 75%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--md--10 { float: left; clear: none; width: 83.33333333%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--md--11 { float: left; clear: none; width: 91.66666667%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--md--12 { float: left; clear: none; width: 100%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--offset--md--0 { margin-left: 0%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--offset--md--1 { margin-left: 8.33333333%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--offset--md--2 { margin-left: 16.66666667%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--offset--md--3 { margin-left: 25%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--offset--md--4 { margin-left: 33.33333333%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--offset--md--5 { margin-left: 41.66666667%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--offset--md--6 { margin-left: 50%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--offset--md--7 { margin-left: 58.33333333%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--offset--md--8 { margin-left: 66.66666667%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--offset--md--9 { margin-left: 75%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--offset--md--10 { margin-left: 83.33333333%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--offset--md--11 { margin-left: 91.66666667%; } .aem-Grid.aem-Grid--md--12 > .aem-GridColumn.aem-GridColumn--offset--md--12 { margin-left: 100%; } .aem-Grid > .aem-GridColumn.aem-GridColumn--md--newline { /* newline behavior */ display: block; clear: both !important; } .aem-Grid > .aem-GridColumn.aem-GridColumn--md--none { /* none behavior */ display: block; clear: none !important; float: left; } .aem-Grid > .aem-GridColumn.aem-GridColumn--md--hide { /* hide behavior */ display: none; } } @font-face{font-family:STIHL Contraface Digital Display Title;font-weight:400;font-style:normal;font-display:swap;src:url(stihl-styles/resources/STIHLContrafaceDigitalDisplayTitling.woff2) format("woff2"),url(stihl-styles/resources/STIHLContrafaceDigitalDisplayTitling.woff) format("woff")}@font-face{font-family:STIHL Contraface Digital Text Bold;font-weight:400;font-style:normal;font-display:swap;src:url(stihl-styles/resources/STIHLContrafaceDigitalText-Bold.woff2) format("woff2"),url(stihl-styles/resources/STIHLContrafaceDigitalText-Bold.woff) format("woff")}@font-face{font-family:STIHL Contraface Digital Text Regular;font-weight:400;font-style:normal;font-display:swap;src:url(stihl-styles/resources/STIHLContrafaceDigitalText.woff2) format("woff2"),url(stihl-styles/resources/STIHLContrafaceDigitalText.woff) format("woff")}@font-face{font-family:STIHL Contraface Digital Text Demi;font-weight:400;font-style:normal;font-display:swap;src:url(stihl-styles/resources/STIHLContrafaceDigitalTextDemi.woff2) format("woff2"),url(stihl-styles/resources/STIHLContrafaceDigitalTextDemi.woff) format("woff")} @font-face { font-family: 'Noto-Sans-JP-Regular'; src: url(stihl-styles/resources/NotoSansJP-Regular.woff2) format("woff2"), url(stihl-styles/resources/NotoSansJP-Regular.woff) format("woff"), url(stihl-styles/resources/NotoSansJP-Regular.ttf) format("ttf"); font-display: swap; } @font-face { font-family: 'Noto-Sans-JP-Medium'; src: url(stihl-styles/resources/NotoSansJP-Medium.woff2) format("woff2"), url(stihl-styles/resources/NotoSansJP-Medium.woff) format("woff"), url(stihl-styles/resources/NotoSansJP-Medium.ttf) format("ttf"); font-display: swap; } @font-face { font-family: 'Noto-Sans-JP-ExtraBold'; src: url(stihl-styles/resources/NotoSansJP-ExtraBold.woff2) format("woff2"), url(stihl-styles/resources/NotoSansJP-ExtraBold.woff) format("woff"), url(stihl-styles/resources/NotoSansJP-ExtraBold.ttf) format("ttf"); font-display: swap; } @font-face { font-family: 'STIHL-Contraface-Display-Medium'; src: url(stihl-styles/resources/STIHLContrafaceDisplayMedium.woff2) format("woff2"), url(stihl-styles/resources/STIHLContrafaceDisplayMedium.woff) format("woff"), url(stihl-styles/resources/STIHLContrafaceDisplayMedium.ttf) format("ttf"), url(stihl-styles/resources/STIHLContrafaceDisplayMedium.otf) format("otf"); font-display: swap; } @font-face { font-family: 'STIHL-Contraface-Display-Title'; src: url(stihl-styles/resources/STIHLContrafaceDisplayTitling.woff2) format("woff2"), url(stihl-styles/resources/STIHLContrafaceDisplayTitling.woff) format("woff"), url(stihl-styles/resources/STIHLContrafaceDisplayTitling.ttf) format("ttf"), url(stihl-styles/resources/STIHLContrafaceDisplayTitling.otf) format("otf"); font-display: swap; } @font-face { font-family: 'STIHL-Contraface-Text'; src: url(stihl-styles/resources/STIHLContrafaceText.woff2) format("woff2"), url(stihl-styles/resources/STIHLContrafaceText.woff) format("woff"), url(stihl-styles/resources/STIHLContrafaceText.ttf) format("ttf"), url(stihl-styles/resources/STIHLContrafaceText.otf) format("otf"); font-display: swap; } @font-face { font-family: 'STIHL-Contraface-Text'; font-weight: bold; src: url(stihl-styles/resources/STIHLContrafaceText-Bold.woff2) format("woff2"), url(stihl-styles/resources/STIHLContrafaceText-Bold.woff) format("woff"), url(stihl-styles/resources/STIHLContrafaceText-Bold.ttf) format("ttf"), url(stihl-styles/resources/STIHLContrafaceText-Bold.otf) format("otf"); font-display: swap; } @font-face { font-family: 'STIHL-Contraface-Text'; font-weight: bold; font-style: italic; src: url(stihl-styles/resources/STIHLContrafaceText-BoldItalic.woff2) format("woff2"), url(stihl-styles/resources/STIHLContrafaceText-BoldItalic.woff) format("woff"), url(stihl-styles/resources/STIHLContrafaceText-BoldItalic.ttf) format("ttf"), url(stihl-styles/resources/STIHLContrafaceText-BoldItalic.otf) format("otf"); font-display: swap; } @font-face { font-family: 'STIHL-Contraface-Text'; font-style: italic; src: url(stihl-styles/resources/STIHLContrafaceText-Italic.woff2) format("woff2"), url(stihl-styles/resources/STIHLContrafaceText-Italic.woff) format("woff"), url(stihl-styles/resources/STIHLContrafaceText-Italic.ttf) format("ttf"), url(stihl-styles/resources/STIHLContrafaceText-Italic.otf) format("otf"); font-display: swap; } @font-face { font-family: 'STIHL-Contraface-Text-Demi'; src: url(stihl-styles/resources/STIHLContrafaceTextDemi.woff2) format("woff2"), url(stihl-styles/resources/STIHLContrafaceTextDemi.woff) format("woff"), url(stihl-styles/resources/STIHLContrafaceTextDemi.ttf) format("ttf"), url(stihl-styles/resources/STIHLContrafaceTextDemi.otf) format("otf"); font-display: swap; } @font-face { font-family: 'STIHL-Contraface-Text-Demi'; font-style: italic; src: url(stihl-styles/resources/STIHLContrafaceTextDemi-Italic.woff2) format("woff2"), url(stihl-styles/resources/STIHLContrafaceTextDemi-Italic.woff) format("woff"), url(stihl-styles/resources/STIHLContrafaceTextDemi-Italic.ttf) format("ttf"), url(stihl-styles/resources/STIHLContrafaceTextDemi-Italic.otf) format("otf"); font-display: swap; } @font-face { font-family: 'STIHL-Contraface-Text-Light'; src: url(stihl-styles/resources/STIHLContrafaceTextLight.woff2) format("woff2"), url(stihl-styles/resources/STIHLContrafaceTextLight.woff) format("woff"), url(stihl-styles/resources/STIHLContrafaceTextLight.ttf) format("ttf"), url(stihl-styles/resources/STIHLContrafaceTextLight.otf) format("otf"); font-display: swap; } @font-face { font-family: 'STIHL-Contraface-Text-Light'; font-style: italic; src: url(stihl-styles/resources/STIHLContrafaceTextLight-Italic.woff2) format("woff2"), url(stihl-styles/resources/STIHLContrafaceTextLight-Italic.woff) format("woff"), url(stihl-styles/resources/STIHLContrafaceTextLight-Italic.ttf) format("ttf"), url(stihl-styles/resources/STIHLContrafaceTextLight-Italic.otf) format("otf"); font-display: swap; } html{line-height:1.15;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;text-size-adjust:100%}h1{font-size:2em;margin:.67em 0}dl dl,dl ol,dl ul,ol dl,ul dl{margin:0}ol ol,ol ul,ul ol,ul ul{margin:0}hr{box-sizing:content-box;height:0;overflow:visible}main{display:block}pre{font-family:monospace;font-size:1em}a{background-color:rgba(0,0,0,0)}abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace;font-size:1em}small{font-size:80%}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,select{margin:0}button{overflow:visible;text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button;-moz-appearance:button;appearance:button}fieldset{padding:.35em .75em .625em}input{overflow:visible}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;white-space:normal}progress{display:inline-block;vertical-align:baseline}select{text-transform:none}textarea{margin:0;overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}button,table,select,input[type=reset],input[type=button],input[type=submit],input[type=color],input[type=search]{box-sizing:border-box}[type=search]{-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;outline-offset:-2px}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}::-moz-placeholder{color:inherit;opacity:.54}::placeholder{color:inherit;opacity:.54}::-webkit-search-decoration{-webkit-appearance:none;appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;appearance:button;font:inherit}::-moz-focus-inner{border-style:none;padding:0}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{box-shadow:none}details{display:block}dialog{background-color:#fff;border:solid;color:#000;display:block;height:-moz-fit-content;height:fit-content;left:0;margin:auto;padding:1em;position:absolute;right:0;width:-moz-fit-content;width:fit-content}dialog:not([open]){display:none}summary{display:list-item}canvas{display:inline-block}template{display:none}[hidden]{display:none}*{box-sizing:var(--default-box-sizing, content-box)}.ds-component{--default-box-sizing: border-box}:root,.ts-body .white-container{--color1: #000;--color2: #FFF;--color3: #F37A1F;--color4: #EDEDED;--color5: #DADADA;--color6: #B1B1B1;--color7: #749F4A;--color8: #FDC543;--color9: #D43B3B;--color10: #249ABE;--color11: #46762D;--color12: #E5F0DB;--color13: #FFF;--flyout-background: #FFF;--icon-high-button-color: #F37A1F;--teaser-highlight-banner-color: #DADADA;--button-color-state-zero: #B1B1B1;--button-color-state-one: #000;--button-border: $black;--check-box-border: 1px solid #000;--meta-navigation-background: #EDEDED;--meta-navigation-searchbar: #FFF;--overlay-active: #000;--language-navigation-bg: #FFF;--language-navigation-border: 1px solid #B1B1B1;--button-standard-border: none;--button-standard-border-color: transparent;--button-standard-border-color-hover: transparent;--button-standard-bg-color-hover: #F37A1F;--icon-btn-hover-color: #FFF;--bottom-footer-background: #EDEDED;--dropdown-outline: 1px solid #DADADA;--page-filter: 1px solid #DADADA;--searchbar-background: #FFF;--searchbar-outline: 1px solid #DADADA;--badge-background: #EDEDED;--dropdown-multiselect-hover: #EDEDED;--radio-button-outline: 1px solid #000;--page-filter-presentation-switch: 1px solid #EDEDED;--border1: 1px solid #B1B1B1;--border2: 1px solid #B1B1B1;--border3: 1px solid #B1B1B1;--border4: 1px solid #B1B1B1;--border5: 5px solid #000;--border6: 4px solid #F37A1F;--border7: 1px solid #EDEDED;--border8: 1px solid #DADADA;--outline-color: #000;--outline-offset: 1px;--outline-width: 2px;--link-inner-shadow: inset 0 -0.05em #FFF, inset 0 -0.15em #F37A1F}:root ::after,:root ::before,.ts-body .white-container ::after,.ts-body .white-container ::before{--svg-filter-invert: none}.ts-body{--color1: #FFF;--color2: #000;--color3: #FFF;--color4: #252525;--color5: #DADADA;--color6: #B1B1B1;--color7: #749F4A;--color8: #FDC543;--color9: #D43B3B;--color10: #249ABE;--color11: #46762D;--color12: #E5F0DB;--color13: #050505;--button-color-state-zero: #FFF;--button-color-state-one: #F37A1F;--pagination-button: #F37A1F;--icon-high-button-color: #FFF;--teaser-highlight-banner-color: #252525;--flyout-background: #252525;--button-border: #FFF;--check-box-border: 1px solid #FFF;--meta-navigation-background: #FFF;--meta-navigation-searchbar: #EDEDED;--overlay-active: #3E3E3E;--language-navigation-bg: #000;--language-navigation-border: 1px solid #EDEDED;--button-standard-border: 1px solid;--button-standard-border-color: #FFF;--button-standard-border-color-hover: #000;--button-standard-bg-color-hover: #FFF;--icon-btn-hover-color: #000;--border1: 1px solid #FFF;--border2: 1px solid #3E3E3E;--border3: 1px solid #F37A1F;--border4: none;--border5: 5px solid #000;--border6: 4px solid #F37A1F;--border7: 1px solid #EDEDED;--border8: 1px solid #DADADA;--outline-color: #FFF;--bottom-footer-background: #000;--dropdown-outline: 1px solid #FFF;--page-filter: 1px solid #3E3E3E;--searchbar-background: #252525;--searchbar-outline: none;--badge-background: #252525;--dropdown-multiselect-hover: #3E3E3E;--radio-button-outline: 1px solid #FFF;--page-filter-presentation-switch: 1px solid #3E3E3E;--link-inner-shadow: inset 0 -1px #F37A1F}.ts-body header{--color1: #000;--color2: #FFF}.ts-body header .overlay,.ts-body header .language-navigation__list{--color1: #FFF;--color2: #000}.ts-body ::after,.ts-body ::before{--svg-filter-invert: invert(1)}:root{--font-family-display-title: "STIHL-Contraface-Display-Title";--font-family-display-medium: "STIHL-Contraface-Display-Medium";--font-family-text: "STIHL-Contraface-Text";--font-family-text-demi: "STIHL-Contraface-Text-Demi"}.jp-font{--font-family-display-title: "Noto-Sans-JP-ExtraBold";--font-family-display-medium: "Noto-Sans-JP-Regular";--font-family-text: "Noto-Sans-JP-Regular";--font-family-text-demi: "Noto-Sans-JP-Demi"}/*! * @diconium/animate.css -https://diconium.com * Version - 3.7.0 * Licensed under the MIT license - http://opensource.org/licenses/MIT * * Copyright (c) 2019 Daniel Eden */@keyframes fadeIn{from{opacity:0}to{opacity:1}}.fadeIn,.overlay--active.overlay--standard,.overlay--active.overlay--full{animation-name:fadeIn}@keyframes fadeInDown{from{opacity:0;transform:translate3d(0, -100%, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}.fadeInDown,.search-navi-flyout__content--active{animation-name:fadeInDown}@keyframes fadeInDownBig{from{opacity:0;transform:translate3d(0, -2000px, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}.fadeInDownBig{animation-name:fadeInDownBig}@keyframes fadeInLeft{from{opacity:0;transform:translate3d(-100%, 0, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}.fadeInLeft{animation-name:fadeInLeft}@keyframes fadeInLeftBig{from{opacity:0;transform:translate3d(-2000px, 0, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}.fadeInLeftBig{animation-name:fadeInLeftBig}@keyframes fadeInRight{from{opacity:0;transform:translate3d(100%, 0, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}.fadeInRight,.overlay--active.overlay--sidebar{animation-name:fadeInRight}@keyframes fadeInRightBig{from{opacity:0;transform:translate3d(2000px, 0, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}.fadeInRightBig{animation-name:fadeInRightBig}@keyframes fadeInUp{from{opacity:0;transform:translate3d(0, 100%, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}.fadeInUp{animation-name:fadeInUp}@keyframes fadeInUpBig{from{opacity:0;transform:translate3d(0, 2000px, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}.fadeInUpBig{animation-name:fadeInUpBig}@keyframes fadeOut{from{opacity:1}to{opacity:0}}.fadeOut,.overlay--inactive.overlay--standard,.overlay--inactive.overlay--full{animation-name:fadeOut}@keyframes fadeOutDown{from{opacity:1}to{opacity:0;transform:translate3d(0, 100%, 0)}}.fadeOutDown{animation-name:fadeOutDown}@keyframes fadeOutDownBig{from{opacity:1}to{opacity:0;transform:translate3d(0, 2000px, 0)}}.fadeOutDownBig{animation-name:fadeOutDownBig}@keyframes fadeOutLeft{from{opacity:1}to{opacity:0;transform:translate3d(-100%, 0, 0)}}.fadeOutLeft{animation-name:fadeOutLeft}@keyframes fadeOutLeftBig{from{opacity:1}to{opacity:0;transform:translate3d(-2000px, 0, 0)}}.fadeOutLeftBig{animation-name:fadeOutLeftBig}@keyframes fadeOutRight{from{opacity:1}to{opacity:0;transform:translate3d(100%, 0, 0)}}.fadeOutRight,.overlay--inactive.overlay--sidebar{animation-name:fadeOutRight}@keyframes fadeOutRightBig{from{opacity:1}to{opacity:0;transform:translate3d(2000px, 0, 0)}}.fadeOutRightBig{animation-name:fadeOutRightBig}@keyframes fadeOutUp{from{opacity:1}to{opacity:0;transform:translate3d(0, -100%, 0)}}.fadeOutUp,.search-navi-flyout__content--inactive{animation-name:fadeOutUp}@keyframes fadeOutUpBig{from{opacity:1}to{opacity:0;transform:translate3d(0, -2000px, 0)}}.fadeOutUpBig{animation-name:fadeOutUpBig}@keyframes slideInDown{from{transform:translate3d(0, -100%, 0);visibility:visible}to{transform:translate3d(0, 0, 0)}}.slideInDown{animation-name:slideInDown}@keyframes slideInLeft{from{transform:translate3d(-100%, 0, 0);visibility:visible}to{transform:translate3d(0, 0, 0)}}.slideInLeft{animation-name:slideInLeft}@keyframes slideInRight{from{transform:translate3d(100%, 0, 0);visibility:visible}to{transform:translate3d(0, 0, 0)}}.slideInRight{animation-name:slideInRight}@keyframes slideInUp{from{transform:translate3d(0, 100%, 0);visibility:visible}to{transform:translate3d(0, 0, 0)}}.slideInUp{animation-name:slideInUp}@keyframes slideOutDown{from{transform:translate3d(0, 0, 0)}to{visibility:hidden;transform:translate3d(0, 100%, 0)}}.slideOutDown{animation-name:slideOutDown}@keyframes slideOutLeft{from{transform:translate3d(0, 0, 0)}to{visibility:hidden;transform:translate3d(-100%, 0, 0)}}.slideOutLeft{animation-name:slideOutLeft}@keyframes slideOutRight{from{transform:translate3d(0, 0, 0)}to{visibility:hidden;transform:translate3d(100%, 0, 0)}}.slideOutRight{animation-name:slideOutRight}@keyframes slideOutUp{from{transform:translate3d(0, 0, 0)}to{visibility:hidden;transform:translate3d(0, -100%, 0)}}.slideOutUp{animation-name:slideOutUp}.animated{animation-duration:1s;animation-fill-mode:both}.animated.infinite{animation-iteration-count:infinite}.animated.delay-1s{animation-delay:1s}.animated.delay-2s{animation-delay:2s}.animated.delay-3s{animation-delay:3s}.animated.delay-4s{animation-delay:4s}.animated.delay-5s{animation-delay:5s}.animated.fast{animation-duration:800ms}.animated.faster{animation-duration:500ms}.animated.slow{animation-duration:2s}.animated.slower{animation-duration:3s}@media(print){.animated{animation:unset !important;transition:none !important}}@font-face{font-family:"swiper-icons";src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");font-weight:400;font-style:normal}:root{--swiper-theme-color: #007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function, initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px, 0, 0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-slide,.swiper-3d .swiper-cube-shadow{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:"";flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-slide-shadow-bottom{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color, var(--swiper-theme-color));border-radius:50%;border-top-color:rgba(0,0,0,0)}.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color: #fff}.swiper-lazy-preloader-black{--swiper-preloader-color: #000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}:root{--default-banner-height: 2.875rem;--header-height: 2.5625rem;--menu-height: 2.875rem}:root .ts-body{--header-height: 3.125rem}@media only screen and (min-width: 48rem),print{:root{--header-height: 2.875rem;--menu-height: 4.125rem}:root .ts-body{--header-height: 3rem}}@keyframes fadeInBackground{from{opacity:0}to{opacity:.4}}@keyframes fadeOutBackground{from{opacity:.4}to{opacity:0}}@keyframes fadeInContent{from{opacity:0;transform:translate3d(0, 15%, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes fadeDown{from{opacity:0;transform:translate3d(0, -100%, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes fadeUp{from{opacity:0;transform:translate3d(0, 100%, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}.line-clamp-1{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.line-clamp-2{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.line-clamp-3{-webkit-line-clamp:3;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.line-clamp-4{-webkit-line-clamp:4;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.line-clamp-5{-webkit-line-clamp:5;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.icon-with-label{margin-right:10px !important}.icon-16-m10-link-arrow-down{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-arrow-down::before{content:"";background-image:url(stihl-styles/resources/icons/icon-arrow-down-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-arrow-down::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-arrow-down{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-arrow-down::before{content:"";background-image:url(stihl-styles/resources/icons/icon-arrow-down-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-arrow-down::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-arrow-down{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-arrow-down-16.svg) no-repeat center/cover}.icon-16-m10-link-arrow-down-white{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-arrow-down-white::before{content:"";background-image:url(stihl-styles/resources/icons/icon-arrow-down-white-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-arrow-down-white::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-arrow-down-white{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-arrow-down-white::before{content:"";background-image:url(stihl-styles/resources/icons/icon-arrow-down-white-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-arrow-down-white::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-arrow-down-white,.btn_icon-big__icon--arrow-down{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-arrow-down-white-16.svg) no-repeat center/cover}.icon-16-m10-link-arrow-left{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-arrow-left::before{content:"";background-image:url(stihl-styles/resources/icons/icon-arrow-left-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-arrow-left::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-arrow-left{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-arrow-left::before{content:"";background-image:url(stihl-styles/resources/icons/icon-arrow-left-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-arrow-left::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-arrow-left,.m_header-banner__backlink--black>.m_backlink>.icon-16-bg-arrow-left,.m_header-banner__backlink--black>.m_backlink>.btn_icon-big__icon--arrow-left,.m_footer-breadcrumb ul .m_header-banner__backlink--black>.m_backlink>li:nth-last-child(2)::before,.m_footer-breadcrumb ol .m_header-banner__backlink--black>.m_backlink>li:nth-last-child(2)::before,.m_footer-breadcrumb ul li:nth-last-child(2)::before,.m_footer-breadcrumb ol li:nth-last-child(2)::before,.btn_icon-big__icon--arrow-left{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-arrow-left-16.svg) no-repeat center/cover}.icon-16-m10-link-arrow-left-white{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-arrow-left-white::before{content:"";background-image:url(stihl-styles/resources/icons/icon-arrow-left-white-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-arrow-left-white::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-arrow-left-white{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-arrow-left-white::before{content:"";background-image:url(stihl-styles/resources/icons/icon-arrow-left-white-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-arrow-left-white::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-arrow-left-white,.m_header-banner__backlink--white>.m_backlink>.icon-16-bg-arrow-left,.m_header-banner__backlink--white>.m_backlink>.btn_icon-big__icon--arrow-left,.m_footer-breadcrumb ul .m_header-banner__backlink--white>.m_backlink>li:nth-last-child(2)::before,.m_footer-breadcrumb ol .m_header-banner__backlink--white>.m_backlink>li:nth-last-child(2)::before,.ts-body .m_footer-breadcrumb ul li:nth-last-child(2)::before,.ts-body .m_footer-breadcrumb ol li:nth-last-child(2)::before,.btn_icon-big__icon--arrow-left__white{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-arrow-left-white-16.svg) no-repeat center/cover}.icon-16-m10-link-arrow-left-2{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-arrow-left-2::before{content:"";background-image:url(stihl-styles/resources/icons/icon-arrow-left-2-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-arrow-left-2::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-arrow-left-2{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-arrow-left-2::before{content:"";background-image:url(stihl-styles/resources/icons/icon-arrow-left-2-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-arrow-left-2::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-arrow-left-2{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-arrow-left-2-16.svg) no-repeat center/cover}.icon-16-m10-link-arrow-right{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-arrow-right::before{content:"";background-image:url(stihl-styles/resources/icons/icon-arrow-right-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-arrow-right::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-arrow-right{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-arrow-right::before{content:"";background-image:url(stihl-styles/resources/icons/icon-arrow-right-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-arrow-right::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-arrow-right,.m_footer-breadcrumb ul li::after,.m_footer-breadcrumb ol li::after,.btn_icon-big__icon--arrow-right{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/cover}.icon-16-m10-link-arrow-right-white{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-arrow-right-white::before{content:"";background-image:url(stihl-styles/resources/icons/icon-arrow-right-white-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-arrow-right-white::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-arrow-right-white{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-arrow-right-white::before{content:"";background-image:url(stihl-styles/resources/icons/icon-arrow-right-white-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-arrow-right-white::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-arrow-right-white,.ts-body .m_footer-breadcrumb ul li::after,.ts-body .m_footer-breadcrumb ol li::after,.btn_icon-big__icon--arrow-right__white,.btn_circle-icon__icon--arrow-right{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-arrow-right-white-16.svg) no-repeat center/cover}.icon-16-m10-link-arrow-up{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-arrow-up::before{content:"";background-image:url(stihl-styles/resources/icons/icon-arrow-up-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-arrow-up::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-arrow-up{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-arrow-up::before{content:"";background-image:url(stihl-styles/resources/icons/icon-arrow-up-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-arrow-up::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-arrow-up{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-arrow-up-16.svg) no-repeat center/cover}.icon-16-m10-link-arrow-up-white{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-arrow-up-white::before{content:"";background-image:url(stihl-styles/resources/icons/icon-arrow-up-white-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-arrow-up-white::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-arrow-up-white{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-arrow-up-white::before{content:"";background-image:url(stihl-styles/resources/icons/icon-arrow-up-white-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-arrow-up-white::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-arrow-up-white,.btn_icon-big__icon--arrow-up{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-arrow-up-white-16.svg) no-repeat center/cover}.icon-16-m10-link-bin{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-bin::before{content:"";background-image:url(stihl-styles/resources/icons/icon-bin-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-bin::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-bin{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-bin::before{content:"";background-image:url(stihl-styles/resources/icons/icon-bin-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-bin::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-bin{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-bin-16.svg) no-repeat center/cover}.icon-16-m10-link-bookmark{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-bookmark::before{content:"";background-image:url(stihl-styles/resources/icons/icon-bookmark-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-bookmark::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-bookmark{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-bookmark::before{content:"";background-image:url(stihl-styles/resources/icons/icon-bookmark-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-bookmark::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-bookmark{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-bookmark-16.svg) no-repeat center/cover}.icon-16-m10-link-bookmark-add{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-bookmark-add::before{content:"";background-image:url(stihl-styles/resources/icons/icon-bookmark-add-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-bookmark-add::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-bookmark-add{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-bookmark-add::before{content:"";background-image:url(stihl-styles/resources/icons/icon-bookmark-add-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-bookmark-add::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-bookmark-add{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-bookmark-add-16.svg) no-repeat center/cover}.icon-16-m10-link-bookmark-check{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-bookmark-check::before{content:"";background-image:url(stihl-styles/resources/icons/icon-bookmark-check-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-bookmark-check::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-bookmark-check{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-bookmark-check::before{content:"";background-image:url(stihl-styles/resources/icons/icon-bookmark-check-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-bookmark-check::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-bookmark-check{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-bookmark-check-16.svg) no-repeat center/cover}.icon-16-m10-link-cart{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-cart::before{content:"";background-image:url(stihl-styles/resources/icons/icon-cart-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-cart::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-cart{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-cart::before{content:"";background-image:url(stihl-styles/resources/icons/icon-cart-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-cart::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-cart{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-cart-16.svg) no-repeat center/cover}.icon-16-m10-link-chat{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-chat::before{content:"";background-image:url(stihl-styles/resources/icons/icon-chat-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-chat::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-chat{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-chat::before{content:"";background-image:url(stihl-styles/resources/icons/icon-chat-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-chat::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-chat{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-chat-16.svg) no-repeat center/cover}.icon-16-m10-link-check,.m_teaser-info__headline{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-check::before,.m_teaser-info__headline::before{content:"";background-image:url(stihl-styles/resources/icons/icon-check-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-check::before,.m_teaser-info__headline::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-check{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-check::before{content:"";background-image:url(stihl-styles/resources/icons/icon-check-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-check::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-check{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-check-16.svg) no-repeat center/cover}.icon-16-m10-link-circle-empty{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-circle-empty::before{content:"";background-image:url(stihl-styles/resources/icons/icon-circle-empty-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-circle-empty::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-circle-empty{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-circle-empty::before{content:"";background-image:url(stihl-styles/resources/icons/icon-circle-empty-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-circle-empty::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-circle-empty{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-circle-empty-16.svg) no-repeat center/cover}.icon-16-m10-link-circle-full{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-circle-full::before{content:"";background-image:url(stihl-styles/resources/icons/icon-circle-full-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-circle-full::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-circle-full{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-circle-full::before{content:"";background-image:url(stihl-styles/resources/icons/icon-circle-full-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-circle-full::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-circle-full{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-circle-full-16.svg) no-repeat center/cover}.icon-16-m10-link-circle-half{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-circle-half::before{content:"";background-image:url(stihl-styles/resources/icons/icon-circle-half-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-circle-half::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-circle-half{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-circle-half::before{content:"";background-image:url(stihl-styles/resources/icons/icon-circle-half-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-circle-half::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-circle-half{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-circle-half-16.svg) no-repeat center/cover}.icon-16-m10-link-clock{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-clock::before{content:"";background-image:url(stihl-styles/resources/icons/icon-clock-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-clock::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-clock{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-clock::before{content:"";background-image:url(stihl-styles/resources/icons/icon-clock-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-clock::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-clock{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-clock-16.svg) no-repeat center/cover}.icon-16-m10-link-compare{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-compare::before{content:"";background-image:url(stihl-styles/resources/icons/icon-compare-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-compare::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-compare{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-compare::before{content:"";background-image:url(stihl-styles/resources/icons/icon-compare-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-compare::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-compare{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-compare-16.svg) no-repeat center/cover}.icon-16-m10-link-compare-white{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-compare-white::before{content:"";background-image:url(stihl-styles/resources/icons/icon-compare-white-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-compare-white::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-compare-white{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-compare-white::before{content:"";background-image:url(stihl-styles/resources/icons/icon-compare-white-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-compare-white::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-compare-white,.btn_icon-big__icon--compare,.btn_circle-icon__icon--compare{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-compare-white-16.svg) no-repeat center/cover}.icon-16-m10-link-cross{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-cross::before{content:"";background-image:url(stihl-styles/resources/icons/icon-cross-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-cross::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-cross{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-cross::before{content:"";background-image:url(stihl-styles/resources/icons/icon-cross-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-cross::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-cross{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-cross-16.svg) no-repeat center/cover}.icon-16-m10-link-cross-white{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-cross-white::before{content:"";background-image:url(stihl-styles/resources/icons/icon-cross-white-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-cross-white::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-cross-white{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-cross-white::before{content:"";background-image:url(stihl-styles/resources/icons/icon-cross-white-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-cross-white::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-cross-white,.promotions-banner__icon-cross,.btn_icon-big__icon--cross{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-cross-white-16.svg) no-repeat center/cover}.icon-16-m10-link-crosshair{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-crosshair::before{content:"";background-image:url(stihl-styles/resources/icons/icon-crosshair-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-crosshair::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-crosshair{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-crosshair::before{content:"";background-image:url(stihl-styles/resources/icons/icon-crosshair-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-crosshair::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-crosshair{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-crosshair-16.svg) no-repeat center/cover}.icon-16-m10-link-cursor{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-cursor::before{content:"";background-image:url(stihl-styles/resources/icons/icon-cursor-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-cursor::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-cursor{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-cursor::before{content:"";background-image:url(stihl-styles/resources/icons/icon-cursor-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-cursor::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-cursor{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-cursor-16.svg) no-repeat center/cover}.icon-16-m10-link-download{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-download::before{content:"";background-image:url(stihl-styles/resources/icons/icon-download-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-download::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-download{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-download::before{content:"";background-image:url(stihl-styles/resources/icons/icon-download-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-download::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-download{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-download-16.svg) no-repeat center/cover}.icon-16-m10-link-enter{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-enter::before{content:"";background-image:url(stihl-styles/resources/icons/icon-enter-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-enter::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-enter{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-enter::before{content:"";background-image:url(stihl-styles/resources/icons/icon-enter-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-enter::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-enter{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-enter-16.svg) no-repeat center/cover}.icon-16-m10-link-envelope{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-envelope::before{content:"";background-image:url(stihl-styles/resources/icons/icon-envelope-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-envelope::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-envelope{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-envelope::before{content:"";background-image:url(stihl-styles/resources/icons/icon-envelope-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-envelope::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-envelope{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-envelope-16.svg) no-repeat center/cover}.icon-16-m10-link-exclamationmark{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-exclamationmark::before{content:"";background-image:url(stihl-styles/resources/icons/icon-exclamationmark-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-exclamationmark::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-exclamationmark{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-exclamationmark::before{content:"";background-image:url(stihl-styles/resources/icons/icon-exclamationmark-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-exclamationmark::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-exclamationmark{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-exclamationmark-16.svg) no-repeat center/cover}.icon-16-m10-link-eye{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-eye::before{content:"";background-image:url(stihl-styles/resources/icons/icon-eye-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-eye::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-eye{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-eye::before{content:"";background-image:url(stihl-styles/resources/icons/icon-eye-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-eye::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-eye{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-eye-16.svg) no-repeat center/cover}.icon-16-m10-link-facebook{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-facebook::before{content:"";background-image:url(stihl-styles/resources/icons/icon-facebook-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-facebook::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-facebook{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-facebook::before{content:"";background-image:url(stihl-styles/resources/icons/icon-facebook-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-facebook::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-facebook{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-facebook-16.svg) no-repeat center/cover}.icon-16-m10-link-flash{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-flash::before{content:"";background-image:url(stihl-styles/resources/icons/icon-flash-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-flash::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-flash{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-flash::before{content:"";background-image:url(stihl-styles/resources/icons/icon-flash-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-flash::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-flash{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-flash-16.svg) no-repeat center/cover}.icon-16-m10-link-google{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-google::before{content:"";background-image:url(stihl-styles/resources/icons/icon-google-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-google::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-google{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-google::before{content:"";background-image:url(stihl-styles/resources/icons/icon-google-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-google::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-google{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-google-16.svg) no-repeat center/cover}.icon-16-m10-link-grid{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-grid::before{content:"";background-image:url(stihl-styles/resources/icons/icon-grid-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-grid::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-grid{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-grid::before{content:"";background-image:url(stihl-styles/resources/icons/icon-grid-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-grid::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-grid{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-grid-16.svg) no-repeat center/cover}.icon-16-m10-link-info{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-info::before{content:"";background-image:url(stihl-styles/resources/icons/icon-info-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-info::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-info{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-info::before{content:"";background-image:url(stihl-styles/resources/icons/icon-info-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-info::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-info{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-info-16.svg) no-repeat center/cover}.icon-16-m10-link-instagram{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-instagram::before{content:"";background-image:url(stihl-styles/resources/icons/icon-instagram-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-instagram::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-instagram{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-instagram::before{content:"";background-image:url(stihl-styles/resources/icons/icon-instagram-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-instagram::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-instagram{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-instagram-16.svg) no-repeat center/cover}.icon-16-m10-link-linkedin{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-linkedin::before{content:"";background-image:url(stihl-styles/resources/icons/icon-linkedin-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-linkedin::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-linkedin{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-linkedin::before{content:"";background-image:url(stihl-styles/resources/icons/icon-linkedin-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-linkedin::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-linkedin{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-linkedin-16.svg) no-repeat center/cover}.icon-16-m10-link-list{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-list::before{content:"";background-image:url(stihl-styles/resources/icons/icon-list-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-list::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-list{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-list::before{content:"";background-image:url(stihl-styles/resources/icons/icon-list-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-list::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-list{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-list-16.svg) no-repeat center/cover}.icon-16-m10-link-list-white{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-list-white::before{content:"";background-image:url(stihl-styles/resources/icons/icon-list-white-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-list-white::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-list-white{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-list-white::before{content:"";background-image:url(stihl-styles/resources/icons/icon-list-white-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-list-white::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-list-white,.btn_icon-big__icon--list,.btn_circle-icon__icon--list{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-list-white-16.svg) no-repeat center/cover}.icon-16-m10-link-lock{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-lock::before{content:"";background-image:url(stihl-styles/resources/icons/icon-lock-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-lock::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-lock{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-lock::before{content:"";background-image:url(stihl-styles/resources/icons/icon-lock-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-lock::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-lock{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-lock-16.svg) no-repeat center/cover}.icon-16-m10-link-magnifying-glass{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-magnifying-glass::before{content:"";background-image:url(stihl-styles/resources/icons/icon-magnifying-glass-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-magnifying-glass::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-magnifying-glass{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-magnifying-glass::before{content:"";background-image:url(stihl-styles/resources/icons/icon-magnifying-glass-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-magnifying-glass::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-magnifying-glass,.m_dialog-input__search{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-magnifying-glass-16.svg) no-repeat center/cover}.icon-16-m10-link-map{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-map::before{content:"";background-image:url(stihl-styles/resources/icons/icon-map-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-map::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-map{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-map::before{content:"";background-image:url(stihl-styles/resources/icons/icon-map-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-map::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-map{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-map-16.svg) no-repeat center/cover}.icon-16-m10-link-menu{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-menu::before{content:"";background-image:url(stihl-styles/resources/icons/icon-menu-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-menu::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-menu{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-menu::before{content:"";background-image:url(stihl-styles/resources/icons/icon-menu-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-menu::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-menu{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-menu-16.svg) no-repeat center/cover}.icon-16-m10-link-minus{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-minus::before{content:"";background-image:url(stihl-styles/resources/icons/icon-minus-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-minus::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-minus{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-minus::before{content:"";background-image:url(stihl-styles/resources/icons/icon-minus-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-minus::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-minus,.seo-text__less::after,.m-category-overview__less::after{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-minus-16.svg) no-repeat center/cover}.icon-16-m10-link-minus-white{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-minus-white::before{content:"";background-image:url(stihl-styles/resources/icons/icon-minus-white-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-minus-white::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-minus-white{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-minus-white::before{content:"";background-image:url(stihl-styles/resources/icons/icon-minus-white-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-minus-white::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-minus-white,.btn_circle-icon__icon--less{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-minus-white-16.svg) no-repeat center/cover}.icon-16-m10-link-options{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-options::before{content:"";background-image:url(stihl-styles/resources/icons/icon-options-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-options::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-options{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-options::before{content:"";background-image:url(stihl-styles/resources/icons/icon-options-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-options::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-options{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-options-16.svg) no-repeat center/cover}.icon-16-m10-link-overlay{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-overlay::before{content:"";background-image:url(stihl-styles/resources/icons/icon-overlay-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-overlay::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-overlay{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-overlay::before{content:"";background-image:url(stihl-styles/resources/icons/icon-overlay-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-overlay::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-overlay{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-overlay-16.svg) no-repeat center/cover}.icon-16-m10-link-parcel{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-parcel::before{content:"";background-image:url(stihl-styles/resources/icons/icon-parcel-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-parcel::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-parcel{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-parcel::before{content:"";background-image:url(stihl-styles/resources/icons/icon-parcel-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-parcel::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-parcel{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-parcel-16.svg) no-repeat center/cover}.icon-16-m10-link-pen{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-pen::before{content:"";background-image:url(stihl-styles/resources/icons/icon-pen-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-pen::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-pen{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-pen::before{content:"";background-image:url(stihl-styles/resources/icons/icon-pen-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-pen::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-pen{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-pen-16.svg) no-repeat center/cover}.icon-16-m10-link-percent{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-percent::before{content:"";background-image:url(stihl-styles/resources/icons/icon-percent-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-percent::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-percent{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-percent::before{content:"";background-image:url(stihl-styles/resources/icons/icon-percent-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-percent::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-percent{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-percent-16.svg) no-repeat center/cover}.icon-16-m10-link-phone{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-phone::before{content:"";background-image:url(stihl-styles/resources/icons/icon-phone-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-phone::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-phone{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-phone::before{content:"";background-image:url(stihl-styles/resources/icons/icon-phone-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-phone::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-phone{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-phone-16.svg) no-repeat center/cover}.icon-16-m10-link-pin{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-pin::before{content:"";background-image:url(stihl-styles/resources/icons/icon-pin-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-pin::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-pin{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-pin::before{content:"";background-image:url(stihl-styles/resources/icons/icon-pin-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-pin::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-pin{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-pin-16.svg) no-repeat center/cover}.icon-16-m10-link-plus{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-plus::before{content:"";background-image:url(stihl-styles/resources/icons/icon-plus-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-plus::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-plus{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-plus::before{content:"";background-image:url(stihl-styles/resources/icons/icon-plus-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-plus::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-plus,.seo-text__more::after,.m-category-overview__more::after{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-plus-16.svg) no-repeat center/cover}.icon-16-m10-link-price{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-price::before{content:"";background-image:url(stihl-styles/resources/icons/icon-price-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-price::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-price{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-price::before{content:"";background-image:url(stihl-styles/resources/icons/icon-price-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-price::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-price{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-price-16.svg) no-repeat center/cover}.icon-16-m10-link-questionmark{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-questionmark::before{content:"";background-image:url(stihl-styles/resources/icons/icon-questionmark-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-questionmark::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-questionmark{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-questionmark::before{content:"";background-image:url(stihl-styles/resources/icons/icon-questionmark-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-questionmark::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-questionmark{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-questionmark-16.svg) no-repeat center/cover}.icon-16-m10-link-restart{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-restart::before{content:"";background-image:url(stihl-styles/resources/icons/icon-restart-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-restart::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-restart{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-restart::before{content:"";background-image:url(stihl-styles/resources/icons/icon-restart-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-restart::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-restart{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-restart-16.svg) no-repeat center/cover}.icon-16-m10-link-return{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-return::before{content:"";background-image:url(stihl-styles/resources/icons/icon-return-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-return::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-return{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-return::before{content:"";background-image:url(stihl-styles/resources/icons/icon-return-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-return::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-return{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-return-16.svg) no-repeat center/cover}.icon-16-m10-link-share{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-share::before{content:"";background-image:url(stihl-styles/resources/icons/icon-share-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-share::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-share{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-share::before{content:"";background-image:url(stihl-styles/resources/icons/icon-share-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-share::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-share{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-share-16.svg) no-repeat center/cover}.icon-16-m10-link-smartphone{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-smartphone::before{content:"";background-image:url(stihl-styles/resources/icons/icon-smartphone-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-smartphone::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-smartphone{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-smartphone::before{content:"";background-image:url(stihl-styles/resources/icons/icon-smartphone-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-smartphone::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-smartphone{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-smartphone-16.svg) no-repeat center/cover}.icon-16-m10-link-speachbubble{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-speachbubble::before{content:"";background-image:url(stihl-styles/resources/icons/icon-speachbubble-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-speachbubble::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-speachbubble{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-speachbubble::before{content:"";background-image:url(stihl-styles/resources/icons/icon-speachbubble-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-speachbubble::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-speachbubble{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-speachbubble-16.svg) no-repeat center/cover}.icon-16-m10-link-star{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-star::before{content:"";background-image:url(stihl-styles/resources/icons/icon-star-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-star::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-star{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-star::before{content:"";background-image:url(stihl-styles/resources/icons/icon-star-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-star::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-star{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-star-16.svg) no-repeat center/cover}.icon-16-m10-link-stihl-certified{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-stihl-certified::before{content:"";background-image:url(stihl-styles/resources/icons/icon-stihl-certified-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-stihl-certified::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-stihl-certified{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-stihl-certified::before{content:"";background-image:url(stihl-styles/resources/icons/icon-stihl-certified-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-stihl-certified::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-stihl-certified{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-stihl-certified-16.svg) no-repeat center/cover}.icon-16-m10-link-thumbs-up{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-thumbs-up::before{content:"";background-image:url(stihl-styles/resources/icons/icon-thumbs-up-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-thumbs-up::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-thumbs-up{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-thumbs-up::before{content:"";background-image:url(stihl-styles/resources/icons/icon-thumbs-up-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-thumbs-up::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-thumbs-up{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-thumbs-up-16.svg) no-repeat center/cover}.icon-16-m10-link-twitter{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-twitter::before{content:"";background-image:url(stihl-styles/resources/icons/icon-twitter-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-twitter::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-twitter{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-twitter::before{content:"";background-image:url(stihl-styles/resources/icons/icon-twitter-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-twitter::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-twitter{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-twitter-16.svg) no-repeat center/cover}.icon-16-m10-link-user{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-user::before{content:"";background-image:url(stihl-styles/resources/icons/icon-user-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-user::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-user{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-user::before{content:"";background-image:url(stihl-styles/resources/icons/icon-user-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-user::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-user{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-user-16.svg) no-repeat center/cover}.icon-16-m10-link-whatsapp{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-whatsapp::before{content:"";background-image:url(stihl-styles/resources/icons/icon-whatsapp-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-whatsapp::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-whatsapp{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-whatsapp::before{content:"";background-image:url(stihl-styles/resources/icons/icon-whatsapp-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-whatsapp::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-whatsapp{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-whatsapp-16.svg) no-repeat center/cover}.icon-16-m10-link-xing{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-xing::before{content:"";background-image:url(stihl-styles/resources/icons/icon-xing-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-xing::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-xing{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-xing::before{content:"";background-image:url(stihl-styles/resources/icons/icon-xing-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-xing::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-xing{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-xing-16.svg) no-repeat center/cover}.icon-16-m10-link-youtube{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-youtube::before{content:"";background-image:url(stihl-styles/resources/icons/icon-youtube-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-youtube::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-youtube{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-youtube::before{content:"";background-image:url(stihl-styles/resources/icons/icon-youtube-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-youtube::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-youtube{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-youtube-16.svg) no-repeat center/cover}.icon-16-m10-link-printer{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-printer::before{content:"";background-image:url(stihl-styles/resources/icons/icon-printer-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-printer::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-printer{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-printer::before{content:"";background-image:url(stihl-styles/resources/icons/icon-printer-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-printer::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-printer{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-printer-16.svg) no-repeat center/cover}.icon-16-m10-link-note-plus{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-note-plus::before{content:"";background-image:url(stihl-styles/resources/icons/icon-note-plus-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-note-plus::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-note-plus{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-note-plus::before{content:"";background-image:url(stihl-styles/resources/icons/icon-note-plus-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-note-plus::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-note-plus{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-note-plus-16.svg) no-repeat center/cover}.icon-16-m10-link-plus-white{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-plus-white::before{content:"";background-image:url(stihl-styles/resources/icons/icon-plus-white-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-plus-white::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-plus-white{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-plus-white::before{content:"";background-image:url(stihl-styles/resources/icons/icon-plus-white-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-plus-white::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-plus-white,.btn_circle-icon__icon--plus{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-plus-white-16.svg) no-repeat center/cover}.icon-16-m10-link-check-white{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-check-white::before{content:"";background-image:url(stihl-styles/resources/icons/icon-check-white-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-check-white::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-check-white{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-check-white::before{content:"";background-image:url(stihl-styles/resources/icons/icon-check-white-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-check-white::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-check-white,.btn_icon-small__icon--check{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-check-white-16.svg) no-repeat center/cover}.icon-16-m10-link-exit{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-m10-link-exit::before{content:"";background-image:url(stihl-styles/resources/icons/icon-exit-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-m10-link-exit::before{margin-right:10px !important}.icon-16-mt0-mb0-mr10-link-exit{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block}.icon-16-mt0-mb0-mr10-link-exit::before{content:"";background-image:url(stihl-styles/resources/icons/icon-exit-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-16-mt0-mb0-mr10-link-exit::before{margin-right:5px !important;margin-bottom:-4px}.icon-16-bg-exit{height:16px;width:16px;background:url(stihl-styles/resources/icons/icon-exit-16.svg) no-repeat center/cover}@keyframes shine-lines{0%{background-position:-100px}40%,100%{background-position:140px}}@keyframes shine-avatar{0%{background-position:-32px}40%,100%{background-position:208px}}html{height:100%;overflow-x:hidden;font-size-adjust:none}body{width:100%;margin:0;line-height:1.4;background-color:#fff;background-color:var(--color13);padding-top:var(--header-height);-ms-overflow-style:scrollbar;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.no-scroll-html{overflow-x:inherit}.no-scroll{overflow:hidden;height:calc(100vh - var(--header-height))}@media(max-width: 63.9375rem){.no-scroll-bounce,.no-scroll-bounce body{overflow:hidden;height:100vh;position:fixed}}img{display:block;max-width:100%;max-height:100%}button{margin:0;cursor:pointer}p,figure{margin:0}input,textarea{margin:0;padding:0;border-radius:0}input,button{background-color:rgba(0,0,0,0);box-shadow:none;border-radius:0;outline:0}input{--outline-offset: -2px}::-moz-placeholder{opacity:1}::placeholder{opacity:1}.hidden{display:none !important}.full-width{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}*::before,*::after{box-sizing:border-box}*,*::before,*::after{border:0 solid rgba(0,0,0,0)}@media(max-width: 63.9375rem){*:focus{outline:none}}*:focus-visible{outline:var(--outline-width, 2px) solid var(--outline-color, currentColor);outline-offset:var(--outline-offset, 1px)}.flex-row{display:flex;flex-flow:row wrap;flex:1}.flex-column{display:flex;flex-flow:column;width:200px}.authoring-error{color:#d43b3b;margin:0 10px 10px;padding:10px;background:rgba(220,20,60,.5);border-radius:5px}.authoring-error--footer{color:#d43b3b}.error-message,.success-message{margin-bottom:30px}.error-message{color:#d43b3b}.error-message--rte p{color:#d43b3b}.error-message--rte a,.error-message--rte a:hover{text-decoration:underline}.success-message{color:#749f4a}.lazy-load-div,.lazy-load-image,.lazy-load-stage-image{width:100%;height:100%;background-color:#ebf2fa}.m_header-banner .lazy-load-div,.m_header-banner .lazy-load-image,.m_header-banner .lazy-load-stage-image{height:400px}.categoryinfo.section{overflow:hidden}.hdl-c-1{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25}@media only screen and (min-width: 48rem),print{.hdl-c-1{font-size:1.875rem;line-height:1.3}}.hdl-c-1::after{display:block;content:"";background-color:var(--color1)}.hdl-c-1::after{width:23px;height:5px;margin-top:10px;background:var(--color1)}@media only screen and (min-width: 48rem),print{.hdl-c-1::after{width:34px;height:7px;margin-top:15px;background:var(--color1)}}.hdl-c-1--center{text-align:center}.hdl-c-1--right{text-align:right}.hdl-c-1--white{color:#fff}.hdl-c-1--white::after{background:#fff}.hdl-c-2{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25}@media only screen and (min-width: 48rem),print{.hdl-c-2{font-size:1.625rem;line-height:1.2}}.hdl-c-2::after{display:block;content:"";background-color:var(--color1)}.hdl-c-2::after{width:27px;height:5px;margin-top:8px}@media only screen and (min-width: 48rem),print{.hdl-c-2::after{width:20px;height:4px;margin-top:11px}}.hdl-c-2--center{text-align:center}.hdl-c-2--right{text-align:right}.hdl-c-2--white{color:#fff}.hdl-c-2--white::after{background:#fff}.hdl-c-3{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2}.hdl-c-3::after{display:block;content:"";background-color:var(--color1)}.hdl-c-3::after{width:23px;height:4px;margin-top:5px}@media only screen and (min-width: 48rem),print{.hdl-c-3::after{width:21px;height:4px;margin-top:6px}}.hdl-c-3--center{text-align:center}.hdl-c-3--right{text-align:right}.hdl-c-3--white{color:#fff}.hdl-c-3--white::after{background:#fff}h1,.hdl-1{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25}@media only screen and (min-width: 48rem),print{h1,.hdl-1{font-size:1.875rem;line-height:1.3}}h1--center,.hdl-1--center{text-align:center}h1--right,.hdl-1--right{text-align:right}h1--white,.hdl-1--white{color:#fff}h2,.hdl-2{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25}@media only screen and (min-width: 48rem),print{h2,.hdl-2{font-size:1.625rem;line-height:1.2}}h2--center,.hdl-2--center{text-align:center}h2--right,.hdl-2--right{text-align:right}h2--white,.hdl-2--white{color:#fff}h3,.hdl-3{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2}h3--center,.hdl-3--center{text-align:center}h3--right,.hdl-3--right{text-align:right}h3--white,.hdl-3--white{color:#fff}.hdl-4{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2}.hdl-4--center{text-align:center}.hdl-4--right{text-align:right}.hdl-4--white{color:#fff}h4,.hdl-5{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}h4--center,.hdl-5--center{text-align:center}h4--right,.hdl-5--right{text-align:right}h4--white,.hdl-5--white{color:#fff}h5,.hdl-5{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}h5--center,.hdl-5--center{text-align:center}h5--right,.hdl-5--right{text-align:right}h5--white,.hdl-5--white{color:#fff}.hdl-6{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2}.hdl-6--center{text-align:center}.hdl-6--right{text-align:right}.hdl-6--white{color:#fff}p,.pgph-1{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}p--center,.pgph-1--center{text-align:center}p--right,.pgph-1--right{text-align:right}p--white,.pgph-1--white{color:#fff}.pgph-2{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.pgph-2--center{text-align:center}.pgph-2--right{text-align:right}.pgph-2--white{color:#fff}.pgph-3{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.pgph-3--center{text-align:center}.pgph-3--right{text-align:right}.pgph-3--white{color:#fff}.pgph-4{text-align:left;font-style:italic;text-transform:none;letter-spacing:0;color:var(--color1);font-size:2rem}.pgph-4--center{text-align:center}.pgph-4--right{text-align:right}.pgph-4--white{color:#fff}.font_special-1{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.font_special-1--center{text-align:center}.font_special-1--right{text-align:right}.font_special-1--white{color:#fff}.font_special-2{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.font_special-2--center{text-align:center}.font_special-2--right{text-align:right}.font_special-2--white{color:#fff}h1,h2,h3,h4,h5,h6{margin-top:0}body{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}a{text-decoration:none;color:inherit}.link_1{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow)}.link_2,.confirmation-header__link{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.link_2::after,.confirmation-header__link::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.link_2:hover::after,.confirmation-header__link:hover::after{transform:translate3d(10px, -50%, 0)}.link_3{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem;line-height:1.1}.link_4{display:inline-block;position:relative;cursor:pointer;margin-left:calc(5px + 0.75rem);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.link_4::before{content:"";background:url(stihl-styles/resources/icons/icon-arrow-left-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;right:100%;transform:translate3d(-5px, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.link_4:hover::before{transform:translate3d(-10px, -50%, 0)}.link_5{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.link_6{display:inline-block;position:relative;cursor:pointer;margin-right:38px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.link_6::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);top:100%;left:100%;transform:translate3d(1.0625rem, -100%, 0);height:1rem;transition:transform .2s;margin-top:-1px}.link_6:hover::after{transform:translate3d(22px, -100%, 0)}.link_7{display:inline-block;position:relative;cursor:pointer;margin-right:38px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.link_7::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(1.0625rem, -50%, 0);height:1rem;transition:transform .2s;margin-top:-1px}.link_7:hover::after{transform:translate3d(22px, -50%, 0)}.link_8{display:inline-block;position:relative;cursor:pointer;margin-right:24px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.link_8::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.4375rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.link_8:hover::after{transform:translate3d(12px, -50%, 0)}.link_9{display:inline-block;position:relative;cursor:pointer;margin-right:38px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.link_9::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(1.0625rem, -50%, 0);height:1rem;transition:transform .2s;margin-top:-1px}.link_9:hover::after{transform:translate3d(22px, -50%, 0)}.link_11{display:inline-block;position:relative;cursor:pointer;margin-right:24px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.link_11::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.4375rem, 0, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.link_11:hover::after{transform:translate3d(12px, 0, 0)}.link_12{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.link_13--static{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.link_13--static::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.link_13--dynamic{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.link_13--dynamic::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.link_13--dynamic:hover::after{transform:translate3d(10px, -50%, 0)}.link_13__arrow-right--static{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.link_13__arrow-right--static::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.link_13__arrow-right--dynamic{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.link_13__arrow-right--dynamic::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.link_13__arrow-right--dynamic:hover::after{transform:translate3d(10px, -50%, 0)}.link_13__printer--static{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.link_13__printer--static::after{content:"";background:url(stihl-styles/resources/icons/icon-printer-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.link_13__printer--dynamic{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.link_13__printer--dynamic::after{content:"";background:url(stihl-styles/resources/icons/icon-printer-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.link_13__printer--dynamic:hover::after{transform:translate3d(10px, -50%, 0)}.link_13__external-link--static{display:inline-block;position:relative;cursor:pointer;margin-right:27px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.link_13__external-link--static::after{content:"";background:url(stihl-styles/resources/icons/icon-external-link-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.625rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.link_13__external-link--dynamic{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.link_13__external-link--dynamic::after{content:"";background:url(stihl-styles/resources/icons/icon-external-link-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.link_13__external-link--dynamic:hover::after{transform:translate3d(10px, -50%, 0)}.label-circle{--outline-offset: 2px}.label-circle.label-black{--label-color1: white;--label-color2: black;--label-color3: black}.label-circle.label-white{--label-color1: black;--label-color2: black;--label-color3: white}.label-circle.label-orange{--label-color1: #F37A1F;--label-color2: #F37A1F;--label-color3: white}.label-circle.label-red{--label-color1: #D43B3B;--label-color2: #D43B3B;--label-color3: white}.label-circle.label-orange-clean{--label-color1: #F37A1F;--label-color2: #F37A1F;--label-color3: white}.label-circle.label-transparent{--label-color1: rgba(72, 156, 199, 0);--label-color2: white;--label-color3: white}.label-circle.label-green{--label-color1: white;--label-color2: #749F4A;--label-color3: #749F4A}.label-circle.label-s{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:flex;justify-content:center;align-items:center;border-radius:50%;background:var(--label-color1);color:var(--label-color3);box-sizing:border-box;flex-shrink:0;width:1em;height:1em;border:1px solid var(--label-color2)}.label-circle.label-s img{width:.5rem}.label-circle.label-xsm{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:flex;justify-content:center;align-items:center;border-radius:50%;background:var(--label-color1);color:var(--label-color3);box-sizing:border-box;flex-shrink:0;width:1.25em;height:1.25em;border:1px solid var(--label-color2)}.label-circle.label-xsm img{width:1.25rem}.label-circle.label-sm{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:flex;justify-content:center;align-items:center;border-radius:50%;background:var(--label-color1);color:var(--label-color3);box-sizing:border-box;flex-shrink:0;width:1.4375em;height:1.4375em;border:1px solid var(--label-color2)}.label-circle.label-sm img{width:1.25rem}.label-circle.label-m{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:flex;justify-content:center;align-items:center;border-radius:50%;background:var(--label-color1);color:var(--label-color3);box-sizing:border-box;flex-shrink:0;width:2em;height:2em;border:1px solid var(--label-color2)}.label-circle.label-m img{width:1.25rem}.label-circle.label-l{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:flex;justify-content:center;align-items:center;border-radius:50%;background:var(--label-color1);color:var(--label-color3);box-sizing:border-box;flex-shrink:0;width:4em;height:4em;border:2px solid var(--label-color2)}.label-circle.label-l img{width:2.75rem}.label-info.label-black{--size: 1.0625rem}.label-info.label-black.label-s{--size: 0.625rem}.label-info.label-black.label-xsm{--size: 0.75rem}.label-info.label-black.label-l{--size: 2.375rem}.label-info.label-black::after{background:url(stihl-styles/resources/icons/icon-info-16.svg) no-repeat center/contain;height:var(--size);width:var(--size);content:""}.label-info.label-orange,.label-info.label-transparent,.label-info.label-white{--size: 1.0625rem}.label-info.label-orange.label-s,.label-info.label-transparent.label-s,.label-info.label-white.label-s{--size: 0.625rem}.label-info.label-orange.label-xsm,.label-info.label-transparent.label-xsm,.label-info.label-white.label-xsm{--size: 0.75rem}.label-info.label-orange.label-l,.label-info.label-transparent.label-l,.label-info.label-white.label-l{--size: 2.375rem}.label-info.label-orange::after,.label-info.label-transparent::after,.label-info.label-white::after{background:url(stihl-styles/resources/icons/icon-info-white-16.svg) no-repeat center/contain;height:var(--size);width:var(--size);content:""}.label-bin.label-black{--size: 1.0625rem}.label-bin.label-black.label-s{--size: 0.625rem}.label-bin.label-black.label-xsm{--size: 0.75rem}.label-bin.label-black.label-l{--size: 2.375rem}.label-bin.label-black::after{background:url(stihl-styles/resources/icons/icon-bin-16.svg) no-repeat center/contain;height:var(--size);width:var(--size);content:""}.label-bin.label-orange,.label-bin.label-white{--size: 1.0625rem}.label-bin.label-orange.label-s,.label-bin.label-white.label-s{--size: 0.625rem}.label-bin.label-orange.label-xsm,.label-bin.label-white.label-xsm{--size: 0.75rem}.label-bin.label-orange.label-l,.label-bin.label-white.label-l{--size: 2.375rem}.label-bin.label-orange::after,.label-bin.label-white::after{background:url(stihl-styles/resources/icons/icon-bin-white-16.svg) no-repeat center/contain;height:var(--size);width:var(--size);content:""}.label-questionmark.label-black{--size: 1.0625rem}.label-questionmark.label-black.label-s{--size: 0.625rem}.label-questionmark.label-black.label-xsm{--size: 0.75rem}.label-questionmark.label-black.label-l{--size: 2.375rem}.label-questionmark.label-black::after{background:url(stihl-styles/resources/icons/icon-questionmark-16.svg) no-repeat center/contain;height:var(--size);width:var(--size);content:""}.label-questionmark.label-orange,.label-questionmark.label-white{--size: 1.0625rem}.label-questionmark.label-orange.label-s,.label-questionmark.label-white.label-s{--size: 0.625rem}.label-questionmark.label-orange.label-xsm,.label-questionmark.label-white.label-xsm{--size: 0.75rem}.label-questionmark.label-orange.label-l,.label-questionmark.label-white.label-l{--size: 2.375rem}.label-questionmark.label-orange::after,.label-questionmark.label-white::after{background:url(stihl-styles/resources/icons/icon-questionmark-white-16.svg) no-repeat center/contain;height:var(--size);width:var(--size);content:""}.label-exclamationmark.label-black{--size: 1.0625rem}.label-exclamationmark.label-black.label-s{--size: 0.625rem}.label-exclamationmark.label-black.label-xsm{--size: 0.75rem}.label-exclamationmark.label-black.label-l{--size: 2.375rem}.label-exclamationmark.label-black::after{background:url(stihl-styles/resources/icons/icon-exclamationmark-16.svg) no-repeat center/contain;height:var(--size);width:var(--size);content:""}.label-exclamationmark.label-orange-clean,.label-exclamationmark.label-orange,.label-exclamationmark.label-white{--size: 1.0625rem}.label-exclamationmark.label-orange-clean.label-s,.label-exclamationmark.label-orange.label-s,.label-exclamationmark.label-white.label-s{--size: 0.625rem}.label-exclamationmark.label-orange-clean.label-xsm,.label-exclamationmark.label-orange.label-xsm,.label-exclamationmark.label-white.label-xsm{--size: 0.75rem}.label-exclamationmark.label-orange-clean.label-l,.label-exclamationmark.label-orange.label-l,.label-exclamationmark.label-white.label-l{--size: 2.375rem}.label-exclamationmark.label-orange-clean::after,.label-exclamationmark.label-orange::after,.label-exclamationmark.label-white::after{background:url(stihl-styles/resources/icons/icon-exclamationmark-white-16.svg) no-repeat center/contain;height:var(--size);width:var(--size);content:""}.label-user.label-black{--size: 1.0625rem}.label-user.label-black.label-s{--size: 0.625rem}.label-user.label-black.label-xsm{--size: 0.75rem}.label-user.label-black.label-l{--size: 2.375rem}.label-user.label-black::after{background:url(stihl-styles/resources/icons/icon-user-16.svg) no-repeat center/contain;height:var(--size);width:var(--size);content:""}.label-user.label-orange,.label-user.label-white{--size: 1.0625rem}.label-user.label-orange.label-s,.label-user.label-white.label-s{--size: 0.625rem}.label-user.label-orange.label-xsm,.label-user.label-white.label-xsm{--size: 0.75rem}.label-user.label-orange.label-l,.label-user.label-white.label-l{--size: 2.375rem}.label-user.label-orange::after,.label-user.label-white::after{background:url(stihl-styles/resources/icons/icon-user-white-16.svg) no-repeat center/contain;height:var(--size);width:var(--size);content:""}.label-check.label-black{--size: 1.0625rem}.label-check.label-black.label-s{--size: 0.625rem}.label-check.label-black.label-xsm{--size: 0.75rem}.label-check.label-black.label-l{--size: 2.375rem}.label-check.label-black::after{background:url(stihl-styles/resources/icons/icon-check-16.svg) no-repeat center/contain;height:var(--size);width:var(--size);content:""}.label-check.label-green{--size: 1.0625rem}.label-check.label-green.label-s{--size: 0.625rem}.label-check.label-green.label-xsm{--size: 0.75rem}.label-check.label-green.label-l{--size: 2.375rem}.label-check.label-green::after{background:url(stihl-styles/resources/icons/icon-check-green-16.svg) no-repeat center/contain;height:var(--size);width:var(--size);content:""}.label-check.label-orange,.label-check.label-white{--size: 1.0625rem}.label-check.label-orange.label-s,.label-check.label-white.label-s{--size: 0.625rem}.label-check.label-orange.label-xsm,.label-check.label-white.label-xsm{--size: 0.75rem}.label-check.label-orange.label-l,.label-check.label-white.label-l{--size: 2.375rem}.label-check.label-orange::after,.label-check.label-white::after{background:url(stihl-styles/resources/icons/icon-check-white-16.svg) no-repeat center/contain;height:var(--size);width:var(--size);content:""}.label-enter.label-black{--size: 1.0625rem}.label-enter.label-black.label-s{--size: 0.625rem}.label-enter.label-black.label-xsm{--size: 0.75rem}.label-enter.label-black.label-l{--size: 2.375rem}.label-enter.label-black::after{background:url(stihl-styles/resources/icons/icon-enter-16.svg) no-repeat center/contain;height:var(--size);width:var(--size);content:""}.label-enter.label-orange,.label-enter.label-white{--size: 1.0625rem}.label-enter.label-orange.label-s,.label-enter.label-white.label-s{--size: 0.625rem}.label-enter.label-orange.label-xsm,.label-enter.label-white.label-xsm{--size: 0.75rem}.label-enter.label-orange.label-l,.label-enter.label-white.label-l{--size: 2.375rem}.label-enter.label-orange::after,.label-enter.label-white::after{background:url(stihl-styles/resources/icons/icon-enter-white-16.svg) no-repeat center/contain;height:var(--size);width:var(--size);content:""}.label-smartphone.label-black{--size: 1.0625rem}.label-smartphone.label-black.label-s{--size: 0.625rem}.label-smartphone.label-black.label-xsm{--size: 0.75rem}.label-smartphone.label-black.label-l{--size: 2.375rem}.label-smartphone.label-black::after{background:url(stihl-styles/resources/icons/icon-smartphone-16.svg) no-repeat center/contain;height:var(--size);width:var(--size);content:""}.label-smartphone.label-orange,.label-smartphone.label-white{--size: 1.0625rem}.label-smartphone.label-orange.label-s,.label-smartphone.label-white.label-s{--size: 0.625rem}.label-smartphone.label-orange.label-xsm,.label-smartphone.label-white.label-xsm{--size: 0.75rem}.label-smartphone.label-orange.label-l,.label-smartphone.label-white.label-l{--size: 2.375rem}.label-smartphone.label-orange::after,.label-smartphone.label-white::after{background:url(stihl-styles/resources/icons/icon-smartphone-white-16.svg) no-repeat center/contain;height:var(--size);width:var(--size);content:""}.label_circle-text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:flex;align-content:center;align-items:center}.label_circle-text__circle{margin-right:10px}.label-triangle-exclamationmark.label-black{--size: 1.0625rem}.label-triangle-exclamationmark.label-black.label-s{--size: 0.625rem}.label-triangle-exclamationmark.label-black.label-xsm{--size: 0.75rem}.label-triangle-exclamationmark.label-black.label-l{--size: 2.375rem}.label-triangle-exclamationmark.label-black::after{background:url(stihl-styles/resources/icons/icon-triangle-exclamationmark-16.svg) no-repeat center/contain;height:var(--size);width:var(--size);content:""}label{cursor:pointer;font-weight:inherit;margin:0}.label-circle-tooltip{position:relative}@media only screen and (max-width: 47.9375rem){.label-circle-tooltip{position:static;display:inline-block;margin-left:20px}}@media only screen and (max-width: 47.9375rem){.label-circle-tooltip__active{z-index:201}}.label-small{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.label-medium{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.label-orange{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;display:inline-flex;align-items:center;height:24px;padding:0 10px;color:#fff;background:#f37a1f}@media(min-width: 20rem){.mq1min{display:none !important}}@media(min-width: 33.125rem){.mq2min{display:none !important}}@media only screen and (min-width: 48rem),print{.mq3min{display:none !important}}@media only screen and (min-width: 64rem){.mq4min{display:none !important}}@media only screen and (max-width: 33.0625rem){.mq1max{display:none !important}}@media only screen and (max-width: 47.9375rem){.mq2max{display:none !important}}@media(max-width: 63.9375rem){.mq3max{display:none !important}}@media only screen and (min-width: 20rem)and (max-width: 33.0625rem){.mq1only{display:none !important}}@media only screen and (min-width: 33.125rem)and (max-width: 47.9375rem){.mq2only{display:none !important}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.mq3only{display:none !important}}.responsivegrid>.aem-Grid .container,.responsivegrid main>.aem-Grid .container{color:var(--color1);background-color:var(--color13)}.responsivegrid>.aem-Grid .container__inner,.responsivegrid main>.aem-Grid .container__inner{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.responsivegrid>.aem-Grid .container__inner,.responsivegrid main>.aem-Grid .container__inner{width:45.5rem}}@media print{.responsivegrid>.aem-Grid .container__inner,.responsivegrid main>.aem-Grid .container__inner{width:auto}}@media only screen and (min-width: 64rem){.responsivegrid>.aem-Grid .container__inner,.responsivegrid main>.aem-Grid .container__inner{width:61.5rem}}.responsivegrid>.aem-Grid .container__inner .section.title+.section,.responsivegrid main>.aem-Grid .container__inner .section.title+.section{margin-top:0 !important}.responsivegrid>.aem-Grid .container__inner>.section:not(.cta,.title,.onetrustcookielist),.responsivegrid main>.aem-Grid .container__inner>.section:not(.cta,.title,.onetrustcookielist){margin-top:50px}.responsivegrid>.aem-Grid .container__inner>.section.cta,.responsivegrid main>.aem-Grid .container__inner>.section.cta{margin-top:30px}.responsivegrid>.aem-Grid .container__inner>.section.onetrustcookielist,.responsivegrid main>.aem-Grid .container__inner>.section.onetrustcookielist{margin-top:15px}body.product-detail-page .responsivegrid>.aem-Grid .container__inner,body.product-detail-page .responsivegrid main>.aem-Grid .container__inner{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{body.product-detail-page .responsivegrid>.aem-Grid .container__inner,body.product-detail-page .responsivegrid main>.aem-Grid .container__inner{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{body.product-detail-page .responsivegrid>.aem-Grid .container__inner,body.product-detail-page .responsivegrid main>.aem-Grid .container__inner{width:45.5rem}}@media print{body.product-detail-page .responsivegrid>.aem-Grid .container__inner,body.product-detail-page .responsivegrid main>.aem-Grid .container__inner{width:auto}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem)and (min-width: 64rem){body.product-detail-page .responsivegrid>.aem-Grid .container__inner,body.product-detail-page .responsivegrid main>.aem-Grid .container__inner{width:61.5rem}}.responsivegrid>.aem-Grid .container__flex,.responsivegrid main>.aem-Grid .container__flex{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}.responsivegrid>.aem-Grid .container__flex>.section:not(.cta,.title,.onetrustcookielist),.responsivegrid main>.aem-Grid .container__flex>.section:not(.cta,.title,.onetrustcookielist){margin-top:50px}.responsivegrid>.aem-Grid .container__flex>.section.cta,.responsivegrid main>.aem-Grid .container__flex>.section.cta{margin-top:30px}.responsivegrid>.aem-Grid .container__flex>.section.onetrustcookielist,.responsivegrid main>.aem-Grid .container__flex>.section.onetrustcookielist{margin-top:15px}.responsivegrid>.aem-Grid .container__max,.responsivegrid main>.aem-Grid .container__max{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto}@media(width >= 1537px){.responsivegrid>.aem-Grid .container__max,.responsivegrid main>.aem-Grid .container__max{max-width:96rem}}@media(width <= 1536px){.responsivegrid>.aem-Grid .container__max,.responsivegrid main>.aem-Grid .container__max{max-width:90rem}}.responsivegrid>.aem-Grid .container__max>.section:not(.cta,.title,.onetrustcookielist),.responsivegrid main>.aem-Grid .container__max>.section:not(.cta,.title,.onetrustcookielist){margin-top:50px}.responsivegrid>.aem-Grid .container__max>.section.cta,.responsivegrid main>.aem-Grid .container__max>.section.cta{margin-top:30px}.responsivegrid>.aem-Grid .container__max>.section.onetrustcookielist,.responsivegrid main>.aem-Grid .container__max>.section.onetrustcookielist{margin-top:15px}body.cart-page .responsivegrid>.aem-Grid .container,body.cart-page .responsivegrid main>.aem-Grid .container{margin-top:10px}.aem-GridColumn.highlightteaserbar{margin-top:50px}.aem-GridColumn.seotext{margin-top:50px}.aem-GridColumn.teasergrid{margin-top:50px}.aem-GridColumn.contentoverview{margin-top:50px}.footerwrapper.aem-GridColumn{margin-top:80px}@media only screen and (min-width: 48rem),print{.footerwrapper.aem-GridColumn{margin-top:100px}}@media only screen and (min-width: 64rem){.footerwrapper.aem-GridColumn{margin-top:120px}}@media print{.footerwrapper.aem-GridColumn{margin-top:2.5rem}}.breadcrumb.aem-GridColumn{margin-top:20px}.breadcrumb.aem-GridColumn:empty{display:none}@media only screen and (min-width: 64rem){.container.aem-GridColumn>.container__inner>.richtexteditor,.container.aem-GridColumn>.container__inner>.seotexteditor{width:calc(100%/(12 / 10))}}.column-control .richtexteditor,.column-control .seotexteditor{margin-top:0}.richtexteditor .cmp-text h2:first-child,.richtexteditor .cmp-text h3:first-child,.richtexteditor .cmp-text h4:first-child,.richtexteditor .cmp-text h5:first-child,.richtexteditor .cmp-text h6:first-child,.seotexteditor .cmp-text h2:first-child,.seotexteditor .cmp-text h3:first-child,.seotexteditor .cmp-text h4:first-child,.seotexteditor .cmp-text h5:first-child,.seotexteditor .cmp-text h6:first-child{margin-top:0 !important}.richtexteditor a,.seotexteditor a{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow)}.richtexteditor a[href^="#"],.seotexteditor a[href^="#"]{margin-right:17px}.richtexteditor a[href^="#"]::after,.seotexteditor a[href^="#"]::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-down-3-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.richtexteditor h1,.richtexteditor h2,.richtexteditor h3,.richtexteditor h4,.richtexteditor h5,.richtexteditor h6,.seotexteditor h1,.seotexteditor h2,.seotexteditor h3,.seotexteditor h4,.seotexteditor h5,.seotexteditor h6{margin-bottom:30px}.richtexteditor h1:not(:first-child),.richtexteditor h2:not(:first-child),.richtexteditor h3:not(:first-child),.richtexteditor h4:not(:first-child),.richtexteditor h5:not(:first-child),.richtexteditor h6:not(:first-child),.seotexteditor h1:not(:first-child),.seotexteditor h2:not(:first-child),.seotexteditor h3:not(:first-child),.seotexteditor h4:not(:first-child),.seotexteditor h5:not(:first-child),.seotexteditor h6:not(:first-child){margin-top:60px}body.product-overview-page .richtexteditor h2,body.product-overview-page .seotexteditor h2{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;margin-top:2.5rem;margin-bottom:1.875rem}body.product-overview-page .richtexteditor h2:first-child,body.product-overview-page .seotexteditor h2:first-child{margin-top:3.75rem}@media only screen and (min-width: 48rem),print{body.product-overview-page .richtexteditor h2:first-child,body.product-overview-page .seotexteditor h2:first-child{margin-top:4.375rem}}@media only screen and (min-width: 64rem){body.product-overview-page .richtexteditor h2:first-child,body.product-overview-page .seotexteditor h2:first-child{margin-top:5rem}}@media print{body.product-overview-page .richtexteditor h2:first-child,body.product-overview-page .seotexteditor h2:first-child{margin-top:1.875rem}}body.product-overview-page .richtexteditor h3,body.product-overview-page .seotexteditor h3{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;margin-top:40px;margin-bottom:30px}body.product-overview-page .richtexteditor h4,body.product-overview-page .seotexteditor h4{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;margin-top:30px;margin-bottom:20px}body.product-overview-page .richtexteditor h5,body.product-overview-page .seotexteditor h5{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-top:30px;margin-bottom:20px}body.product-detail-page .richtexteditor h2,body.product-detail-page .seotexteditor h2{margin-bottom:40px;margin-top:80px}@media only screen and (min-width: 64rem){body.product-detail-page .richtexteditor h2,body.product-detail-page .seotexteditor h2{margin-top:90px}}@media print{body.product-detail-page .richtexteditor h2,body.product-detail-page .seotexteditor h2{margin-top:1.875rem}}body.product-detail-page .richtexteditor h3,body.product-detail-page .seotexteditor h3{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;margin-top:40px;margin-bottom:30px}body.product-detail-page .richtexteditor h4,body.product-detail-page .seotexteditor h4{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;margin-top:40px;margin-bottom:30px}body.product-detail-page .richtexteditor h5,body.product-detail-page .seotexteditor h5{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;margin-top:30px;margin-bottom:20px}.basicpage:not(.product-detail-page,.product-overview-page,.brandportal-login-page) .richtexteditor h2,.basicpage:not(.product-detail-page,.product-overview-page,.brandportal-login-page) .seotexteditor h2{margin-top:50px;margin-bottom:40px}.basicpage:not(.product-detail-page,.product-overview-page,.brandportal-login-page) .richtexteditor h3,.basicpage:not(.product-detail-page,.product-overview-page,.brandportal-login-page) .seotexteditor h3{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;margin-top:40px;margin-bottom:30px}.basicpage:not(.product-detail-page,.product-overview-page,.brandportal-login-page) .richtexteditor h4,.basicpage:not(.product-detail-page,.product-overview-page,.brandportal-login-page) .seotexteditor h4{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;margin-top:40px;margin-bottom:30px}.basicpage:not(.product-detail-page,.product-overview-page,.brandportal-login-page) .richtexteditor h5,.basicpage:not(.product-detail-page,.product-overview-page,.brandportal-login-page) .seotexteditor h5{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin-top:30px;margin-bottom:20px}.richtexteditor ol,.richtexteditor ul,.seotexteditor ol,.seotexteditor ul{margin-block:1em;margin-inline:0;padding-inline-start:40px}.richtexteditor ol li:not(:last-child),.richtexteditor ul li:not(:last-child),.seotexteditor ol li:not(:last-child),.seotexteditor ul li:not(:last-child){margin-bottom:5px}.richtexteditor ol p,.richtexteditor ul p,.seotexteditor ol p,.seotexteditor ul p{display:inline}.richtexteditor ul li,.seotexteditor ul li{list-style:disc}.richtexteditor ol li,.seotexteditor ol li{list-style:decimal}.richtexteditor p,.seotexteditor p{overflow:hidden;margin:calc((var(--outline-width) + var(--outline-offset))*-1);padding:calc(var(--outline-width) + var(--outline-offset))}.richtexteditor p+p,.seotexteditor p+p{margin-top:30px}@media print{body:not(.corporate-body) :root{--link-inner-shadow: inset 0 -0.05em #FFF, inset 0 -0.15em #000}@page{body:not(.corporate-body){size:a4;margin:1.5cm 0;counter-increment:page;width:62.5rem}}@page :first{body:not(.corporate-body){margin-top:0}}body:not(.corporate-body) html,body:not(.corporate-body) body{font-size:12pt !important;height:-moz-fit-content;height:fit-content;margin:0;padding:0}body:not(.corporate-body) h1,body:not(.corporate-body) h2,body:not(.corporate-body) h3{-moz-column-break-after:avoid;break-after:avoid}body:not(.corporate-body) h1,body:not(.corporate-body) h2,body:not(.corporate-body) h3,body:not(.corporate-body) article,body:not(.corporate-body) tr,body:not(.corporate-body) img,body:not(.corporate-body) a{-moz-column-break-inside:avoid;break-inside:avoid}body:not(.corporate-body) p,body:not(.corporate-body) h2,body:not(.corporate-body) h3{orphans:3;widows:3}body:not(.corporate-body) table td,body:not(.corporate-body) table th,body:not(.corporate-body) table tr{border:1px solid #000 !important;background:#fff !important}body:not(.corporate-body) button:not(.versions-flag,.tab-bar_header__item),body:not(.corporate-body) .btn_standard{display:none !important}body:not(.corporate-body) .print-links a{font-weight:normal !important}body:not(.corporate-body) .print-links a::after{content:" (" attr(href) ")"}body:not(.corporate-body) nav{background-color:#ededed}body:not(.corporate-body) .hide-for-print{display:none !important}}@media print{body:not(.corporate-body) #GuuruMain{display:none}}.bg-black,.hover\:bg-black:hover,.before\:bg-black::before,.aria-expanded\:bg-black[aria-expanded=true],.sibling:checked+.sibling-checked\:bg-black{background-color:#000}.bg-gray-lighter,.hover\:bg-gray-lighter:hover{background-color:#ededed}.bg-orange{background-color:#f37a1f}.bg-black{background-color:#000}.bg-gray-dark{background-color:#b1b1b1}.bg-green{background-color:#749f4a}.bg-yellow{background-color:#fdc543}.bg-yellow-light{background-color:#fdecc3}.bg-red{background-color:#d43b3b}.bg-red-light{background-color:#eebcbd}.bg-blue{background-color:#249abe}.bg-transparent{background-color:rgba(0,0,0,0)}.bg-white,.hover\:bg-white:hover,.before\:bg-white::before{background-color:#fff}.color-text-orange{color:#f37a1f}.color-text-blue{color:#249abe}.color-text-yellow{color:#fdc543}.color-text-red{color:#d43b3b}.color-text-green{color:#749f4a}.color-text-green-deep{color:#46762d}.color-text-grey{color:#b1b1b1}.color-text-black{color:#000}.color-text-white{color:#fff}.border-t{border-top-width:1px}.border-b{border-bottom-width:1px}.border-l{border-left-width:1px}.border{border-width:1px}.border-light-gray{border-color:#b1b1b1}.border-light-gray-v2{border-color:#dadada}.border-black{border-color:#000}.border-white{border-color:#fff}.rounded-full{border-radius:9999px}.focus\:shadow-orange-form{transition:box-shadow .2s ease-in-out}.focus\:shadow-orange-form:focus{box-shadow:2px 2px 0 #f37a1f}.none,.group[aria-expanded=true] .group-aria-expanded\:none,.group[aria-expanded=false] .group-aria-not-expanded\:none{display:none}.block{display:block}.inline{display:inline}.inline-block,.group[aria-expanded=true] .group-aria-expanded\:inline-block{display:inline-block}.sr-only,.checkbox input{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}.float-right{float:right}.float-left{float:left}.font-normal{font-weight:400}.leading-5{line-height:1.25}.leading-8{line-height:2}.leading-16{line-height:4}.focus\:outline-none{outline:none}.overflow-y-auto{overflow-y:auto}.pointer-events-none{pointer-events:none}.relative{position:relative}.absolute{position:absolute}.fixed{position:fixed}.pin-t{top:0}.pin-b{bottom:0}.pin-r{right:0}.pin-l{left:0}.t-95px{top:95px}.pin-vertical-center{top:50%;transform:translateY(-50%)}.pin-middle{top:50%;left:50%;transform:translate(-50%, -50%)}.m-0{margin:0}.mt-0{margin-top:0}.ml-0{margin-left:0}.mt-8{margin-top:1.25rem}.mt-16{margin-top:2.5rem}.mb-8{margin-bottom:1.25rem}.mb-16{margin-bottom:2.5rem}.my-1{margin-top:.15625rem;margin-bottom:.15625rem}.my-4{margin-top:.625rem;margin-bottom:.625rem}.mr-4{margin-right:.625rem}.mr-8{margin-right:1.25rem}.ml-2{margin-left:.3125rem}.ml-8{margin-left:1.25rem}.ml-6{margin-left:.9375rem}.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:1rem}.p-0{padding:0}.p-6{padding:1.5rem}.p-7{padding:1.09375rem}.p-4{padding:.625rem}.px-4{padding-left:.625rem;padding-right:.625rem}.px-5{padding-left:.78125rem;padding-right:.78125rem}.px-8{padding-left:1.25rem;padding-right:1.25rem}.pr-8{padding-right:1.25rem}.pb-2{padding-bottom:.3125rem}.pb-8{padding-bottom:1.25rem}.pb-16{padding-bottom:2.5rem}.pt-1{padding-top:.15625rem}.pt-8{padding-top:1.25rem}.pt-16{padding-top:2.5rem}.py-1{padding-top:.15625rem;padding-bottom:.15625rem}.py-3{padding-top:.46875rem;padding-bottom:.46875rem}.py-4{padding-top:.625rem;padding-bottom:.625rem}.py-8{padding-top:1.25rem;padding-bottom:1.25rem}.py-16{padding-top:2.5rem;padding-bottom:2.5rem}@media only screen and (max-width: 47.9375rem){.sm\:mt-0{margin-top:0}}@media only screen and (min-width: 48rem),print{.md\:m-0{margin:0}.md\:py-3{padding-top:.46875rem;padding-bottom:.46875rem}.md\:px-8{padding-left:1.25rem;padding-right:1.25rem}}.table-fixed{table-layout:fixed}@media only screen and (max-width: 47.9375rem){.sm\:text-right{text-align:right}.sm\:text-left{text-align:left}}@media only screen and (min-width: 48rem),print{.md\:text-left{text-align:left}.md\:text-right{text-align:right}}.group-aria-expanded\:rotate-180{transition:transform .3s ease}.group[aria-expanded=true] .group-aria-expanded\:rotate-180{transform:rotate(180deg)}.align-baseline{vertical-align:baseline}.align-bottom{vertical-align:bottom}.align-middle{vertical-align:middle}.invisible{visibility:hidden}.h-full{height:100%}a{transition:color .3s ease-in-out,background-color .3s ease-in-out}a:hover{text-decoration:none}button{transition:color .3s ease-out,background-color .3s ease-out}.btn_stage{position:relative;display:block;background-color:#fff;height:7.5rem;width:3.75rem;padding:0}.btn_stage:hover{background-color:#000}.btn_stage__icon--next::before{background-image:url(stihl-styles/resources/icons/icon-arrow-right-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:var(--svg-filter-invert, none);display:inline-block;width:100%;background-color:#fff;content:"";height:7.5rem}.btn_stage__icon--next:hover::before{background-image:url(stihl-styles/resources/icons/icon-arrow-right-white-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:none;display:inline-block;width:100%;background-color:#000;content:"";height:7.5rem}.btn_stage__icon--previous{height:7.5rem}.btn_stage__icon--previous::before{background-image:url(stihl-styles/resources/icons/icon-arrow-left-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:var(--svg-filter-invert, none);display:inline-block;width:100%;background-color:#fff;content:"";height:7.5rem}.btn_stage__icon--previous:hover::before{background-image:url(stihl-styles/resources/icons/icon-arrow-left-white-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:none;display:inline-block;width:100%;background-color:#000;content:"";height:7.5rem}.btn_circle-icon{padding:0}.btn_circle-icon:disabled{pointer-events:none}.btn_circle-icon--orange{--outline-offset: 2px;position:relative;background:linear-gradient(to bottom, #F37A1F 50%, #000 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:inline-flex;justify-content:center;align-items:center;position:relative;height:2rem;width:2rem;border-radius:50%;color:#fff}.btn_circle-icon--orange .icon-svg{fill:#fff}.btn_circle-icon--orange.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.btn_circle-icon--orange:hover{background-position:0 -100%}.btn_circle-icon--orange:hover .icon-svg{fill:#000}}.btn_circle-icon--orange:hover{color:var(--color2)}.ts-body .btn_circle-icon--orange:hover::after{--svg-filter-invert-white: invert(1);transition:.25s ease}.btn_circle-icon--white{--outline-offset: 2px;position:relative;background:linear-gradient(to bottom, #FFF 50%, #000 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:inline-flex;justify-content:center;align-items:center;position:relative;height:2rem;width:2rem;border-radius:50%;color:#fff}.btn_circle-icon--white .icon-svg{fill:#fff}.btn_circle-icon--white.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.btn_circle-icon--white:hover{background-position:0 -100%}.btn_circle-icon--white:hover .icon-svg{fill:#000}}.btn_circle-icon--white:hover{color:var(--color2)}.ts-body .btn_circle-icon--white:hover::after{--svg-filter-invert-white: invert(1);transition:.25s ease}.btn_circle-icon--black{--outline-offset: 2px;position:relative;background:linear-gradient(to bottom, #000 50%, #F37A1F 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:inline-flex;justify-content:center;align-items:center;position:relative;height:2rem;width:2rem;border-radius:50%;color:#fff}.btn_circle-icon--black .icon-svg{fill:#fff}.btn_circle-icon--black.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.btn_circle-icon--black:hover{background-position:0 -100%}.btn_circle-icon--black:hover .icon-svg{fill:#000}}.btn_circle-icon--black:hover{color:var(--color2)}.ts-body .btn_circle-icon--black:hover::after{--svg-filter-invert-white: invert(1);transition:.25s ease}:disabled .btn_circle-icon--black{background:#ededed;border-color:#ededed}.btn_circle-icon--text-left{display:flex;flex-direction:row-reverse;align-items:center;gap:.625rem}.btn_circle-icon-no-padding{padding:0}.btn_circle-icon__icon{width:16px;height:16px}.btn_circle-icon__icon--arrow-down{position:static}.btn_circle-icon__icon--arrow-down::before{background-image:url(stihl-styles/resources/icons/icon-arrow-down-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:var(--svg-filter-invert, none);width:32px;height:32px;content:"";position:absolute;top:0;left:0}.btn_circle-icon__icon--arrow-down:hover::before{background-image:url(stihl-styles/resources/icons/icon-arrow-down-white-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:none;width:32px;height:32px;content:"";position:absolute;top:0;left:0}.btn_circle-icon__icon--white{color:#fff}.btn_circle-icon__icon--black{color:#000}.btn_circle-icon__text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}:disabled .btn_circle-icon__text{color:#ededed}.btn_circle-icon--text-bottom .btn_circle-icon__text{margin-top:.625rem}.btn_icon-big{height:45px;width:45px;display:flex;justify-content:center;align-items:center}.btn_icon-big__icon{width:16px;height:16px}.btn_icon-big__icon--white{color:#fff}.btn_icon-big__icon--black{color:#000}.btn_icon-big--grey{background-color:#ededed}.btn_icon-big--orange{background-color:#f37a1f}.btn_icon-big--black{background-color:#000}.btn_icon-big--black:hover{background-color:#f37a1f}.btn_icon-small{--outline-offset: 2px;border:1px solid var(--button-border);position:relative;background:linear-gradient(to bottom, black 50%, var(--color3) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:var(--button-border);height:1.875rem;width:1.875rem;color:#fff}.btn_icon-small.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.btn_icon-small:hover{background-position:0 -100%}}.btn_icon-small.active{border-color:var(--button-border)}@media(hover: hover)and (pointer: fine){.btn_icon-small:hover{border-color:var(--button-border)}}.btn_icon-small:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.btn_icon-small:hover{color:var(--color2)}.btn_icon-small::after{z-index:1;position:relative}.btn_icon-small__icon{width:16px;height:16px}.btn_show-more{position:relative}.btn_show-more__circle{--outline-offset: 2px;position:relative;background:linear-gradient(to bottom, var(--button-color-state-one) 50%, var(--color3) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:inline-flex;justify-content:center;align-items:center;position:relative;height:2rem;width:2rem;border-radius:50%;color:#fff;position:relative}.btn_show-more__circle .icon-svg{fill:#fff}.btn_show-more__circle.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.btn_show-more__circle:hover{background-position:0 -100%}.btn_show-more__circle:hover .icon-svg{fill:#000}}.btn_show-more__circle:hover{color:var(--color2)}.ts-body .btn_show-more__circle:hover::after{--svg-filter-invert-white: invert(1);transition:.25s ease}.btn_show-more.down .btn_show-more__circle::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-down-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none)}.btn_show-more.up .btn_show-more__circle::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-up-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none)}.btn_show-more.plus .btn_show-more__circle::after{content:"";background:url(stihl-styles/resources/icons/icon-plus-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none)}.btn_show-more.minus .btn_show-more__circle::after{content:"";background:url(stihl-styles/resources/icons/icon-minus-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none)}.btn_show-more__text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-top:5px}.btn_standard{position:relative;background:linear-gradient(to bottom, #000 50%, var(--button-standard-bg-color-hover) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:var(--button-standard-border-color);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center;height:3.75rem;--outline-offset: 2px;width:100%;border:var(--button-standard-border)}.btn_standard.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.btn_standard:hover{background-position:0 -100%}}.btn_standard.active{border-color:var(--button-standard-border-color-hover)}@media(hover: hover)and (pointer: fine){.btn_standard:hover{border-color:var(--button-standard-border-color-hover)}}.btn_standard:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.btn_standard.active{color:var(--color2)}@media(hover: hover)and (pointer: fine){.btn_standard:hover{color:var(--color2)}}@media(max-width: 63.9375rem){.btn_standard{width:100%}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.btn_standard:not(.full){min-width:calc(calc(45.5rem / 6) * 2);max-width:calc(calc(45.5rem / 6) * 3)}}@media only screen and (min-width: 64rem){.btn_standard:not(.full){min-width:calc(calc(61.5rem / 12) * 3);max-width:calc(calc(61.5rem / 12) * 4)}}.btn_standard.shrink{min-width:auto}.btn_outline{position:relative;background:linear-gradient(to bottom, transparent 50%, var(--color1) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:#fff;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center;height:3.75rem;--outline-offset: 2px;width:100%;border-width:1px;border-style:solid}.btn_outline.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.btn_outline:hover{background-position:0 -100%}}.btn_outline.active{border-color:#fff}@media(hover: hover)and (pointer: fine){.btn_outline:hover{border-color:#fff}}.btn_outline:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.btn_outline.active{color:var(--color2)}@media(hover: hover)and (pointer: fine){.btn_outline:hover{color:var(--color2)}}@media(max-width: 63.9375rem){.btn_outline{width:100%}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.btn_outline:not(.full){min-width:calc(calc(45.5rem / 6) * 2);max-width:calc(calc(45.5rem / 6) * 3)}}@media only screen and (min-width: 64rem){.btn_outline:not(.full){min-width:calc(calc(61.5rem / 12) * 3);max-width:calc(calc(61.5rem / 12) * 4)}}.btn_outline.shrink{min-width:auto}.btn_outline-inverted{position:relative;background:linear-gradient(to bottom, transparent 50%, var(--color1) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:#000;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#000;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center;height:3.75rem;--outline-offset: 2px;width:100%;border-width:1px;border-style:solid}.btn_outline-inverted.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.btn_outline-inverted:hover{background-position:0 -100%}}.btn_outline-inverted.active{border-color:#000}@media(hover: hover)and (pointer: fine){.btn_outline-inverted:hover{border-color:#000}}.btn_outline-inverted:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.btn_outline-inverted.active{color:#fff}@media(hover: hover)and (pointer: fine){.btn_outline-inverted:hover{color:#fff}}@media(max-width: 63.9375rem){.btn_outline-inverted{width:100%}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.btn_outline-inverted:not(.full){min-width:calc(calc(45.5rem / 6) * 2);max-width:calc(calc(45.5rem / 6) * 3)}}@media only screen and (min-width: 64rem){.btn_outline-inverted:not(.full){min-width:calc(calc(61.5rem / 12) * 3);max-width:calc(calc(61.5rem / 12) * 4)}}.btn_outline-inverted.shrink{min-width:auto}.btn_highlight{position:relative;background:linear-gradient(to bottom, #F37A1F 50%, var(--color1) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:rgba(0,0,0,0);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center;height:3.75rem;--outline-offset: 2px;width:100%}.btn_highlight.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.btn_highlight:hover{background-position:0 -100%}}.btn_highlight.active{border-color:rgba(0,0,0,0)}@media(hover: hover)and (pointer: fine){.btn_highlight:hover{border-color:rgba(0,0,0,0)}}.btn_highlight:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.btn_highlight.active{color:var(--color2)}@media(hover: hover)and (pointer: fine){.btn_highlight:hover{color:var(--color2)}}@media(max-width: 63.9375rem){.btn_highlight{width:100%}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.btn_highlight:not(.full){min-width:calc(calc(45.5rem / 6) * 2);max-width:calc(calc(45.5rem / 6) * 3)}}@media only screen and (min-width: 64rem){.btn_highlight:not(.full){min-width:calc(calc(61.5rem / 12) * 3);max-width:calc(calc(61.5rem / 12) * 4)}}.btn_highlight.shrink{min-width:auto}.btn_secondary{position:relative;background:linear-gradient(to bottom, var(--color2) 50%, var(--color1) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:#b1b1b1;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center;height:3.75rem;--outline-offset: 2px;width:100%}.btn_secondary.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.btn_secondary:hover{background-position:0 -100%}}.btn_secondary.active{border-color:rgba(0,0,0,0)}@media(hover: hover)and (pointer: fine){.btn_secondary:hover{border-color:rgba(0,0,0,0)}}.btn_secondary:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.btn_secondary.active{color:var(--color2)}@media(hover: hover)and (pointer: fine){.btn_secondary:hover{color:var(--color2)}}@media(max-width: 63.9375rem){.btn_secondary{width:100%}}.ts-body .btn_secondary{border:1px solid #fff}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.btn_secondary:not(.full){min-width:calc(calc(45.5rem / 6) * 2);max-width:calc(calc(45.5rem / 6) * 3)}}@media only screen and (min-width: 64rem){.btn_secondary:not(.full){min-width:calc(calc(61.5rem / 12) * 3);max-width:calc(calc(61.5rem / 12) * 4)}}.btn_secondary.shrink{min-width:auto}.btn_highlight_slim{position:relative;background:linear-gradient(to bottom, #F37A1F 50%, #F7A669 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:var(--button-standard-border-color);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;color:#fff;font-size:.8125rem;font-weight:600;line-height:1;height:auto;white-space:normal;word-break:break-word;word-wrap:break-word;transition:unset !important;text-align:center;width:13.3125rem;height:2.4375rem;padding:12px 10px}.btn_highlight_slim.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.btn_highlight_slim:hover{background-position:0 -100%}}.btn_highlight_slim.active{border-color:var(--color7)}@media(hover: hover)and (pointer: fine){.btn_highlight_slim:hover{border-color:var(--color7)}}.btn_highlight_slim:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.btn_highlight_slim.active{color:var(--meta-navigation-background)}@media(hover: hover)and (pointer: fine){.btn_highlight_slim:hover{color:var(--meta-navigation-background)}}@media(max-width: 63.9375rem){.btn_highlight_slim{width:100%}}.btn_highlight_slim_secondary{position:relative;background:linear-gradient(to bottom, #FFF 50%, #FFF 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:var(--button-standard-border-color);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#f37a1f;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;color:#f37a1f;font-size:.8125rem;font-weight:600;line-height:1;height:auto;white-space:normal;word-break:break-word;word-wrap:break-word;transition:unset !important;text-align:center;width:13.3125rem;height:2.4375rem;padding:12px 10px;border:1px solid #f37a1f !important}.btn_highlight_slim_secondary.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.btn_highlight_slim_secondary:hover{background-position:0 -100%}}.btn_highlight_slim_secondary.active{border-color:var(--color7)}@media(hover: hover)and (pointer: fine){.btn_highlight_slim_secondary:hover{border-color:var(--color7)}}.btn_highlight_slim_secondary:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.btn_highlight_slim_secondary.active{color:#f7a669}@media(hover: hover)and (pointer: fine){.btn_highlight_slim_secondary:hover{color:#f7a669}}@media(max-width: 63.9375rem){.btn_highlight_slim_secondary{width:100%}}.btn-close-x{--outline-offset: 2px;border:1px solid var(--button-border);position:relative;background:linear-gradient(to bottom, black 50%, var(--color3) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:var(--button-border);height:2.8125rem;width:2.8125rem;color:#fff}.btn-close-x.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.btn-close-x:hover{background-position:0 -100%}}.btn-close-x.active{border-color:var(--button-border)}@media(hover: hover)and (pointer: fine){.btn-close-x:hover{border-color:var(--button-border)}}.btn-close-x:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.btn-close-x:hover{color:var(--color2)}.btn-close-x::after{z-index:1;content:"";background:url(stihl-styles/resources/icons/icon-cross-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none);top:50%;left:50%;transform:translate(-50%, -50%)}.btn-close-x:hover::after{-webkit-mask:url(stihl-styles/resources/icons/icon-cross-white-16.svg);mask:url(stihl-styles/resources/icons/icon-cross-white-16.svg);background:var(--icon-btn-hover-color)}.btn-close-x--small{--outline-offset: 2px;border:1px solid var(--button-border);position:relative;background:linear-gradient(to bottom, black 50%, var(--color3) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:var(--button-border);height:1.875rem;width:1.875rem;color:#fff}.btn-close-x--small.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.btn-close-x--small:hover{background-position:0 -100%}}.btn-close-x--small.active{border-color:var(--button-border)}@media(hover: hover)and (pointer: fine){.btn-close-x--small:hover{border-color:var(--button-border)}}.btn-close-x--small:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.btn-close-x--small:hover{color:var(--color2)}.btn-close-x--small::after{z-index:1;content:"";background:url(stihl-styles/resources/icons/icon-cross-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none);top:50%;left:50%;transform:translate(-50%, -50%)}.btn-close-x--small:hover::after{-webkit-mask:url(stihl-styles/resources/icons/icon-cross-white-16.svg);mask:url(stihl-styles/resources/icons/icon-cross-white-16.svg);background:var(--icon-btn-hover-color)}.btn-close-x--medium{--outline-offset: 2px;border:1px solid var(--button-border);position:relative;background:linear-gradient(to bottom, black 50%, var(--color3) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:var(--button-border);height:2rem;width:2rem;color:#fff}.btn-close-x--medium.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.btn-close-x--medium:hover{background-position:0 -100%}}.btn-close-x--medium.active{border-color:var(--button-border)}@media(hover: hover)and (pointer: fine){.btn-close-x--medium:hover{border-color:var(--button-border)}}.btn-close-x--medium:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.btn-close-x--medium:hover{color:var(--color2)}.btn-close-x--medium::after{z-index:1;content:"";background:url(stihl-styles/resources/icons/icon-cross-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none);top:50%;left:50%;transform:translate(-50%, -50%)}.btn-close-x--medium:hover::after{-webkit-mask:url(stihl-styles/resources/icons/icon-cross-white-16.svg);mask:url(stihl-styles/resources/icons/icon-cross-white-16.svg);background:var(--icon-btn-hover-color)}.btn-icon-grid{position:relative;background:linear-gradient(to bottom, black 50%, #F37A1F 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:rgba(0,0,0,0);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center;height:3.75rem;justify-content:space-between}.btn-icon-grid.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.btn-icon-grid:hover{background-position:0 -100%}}.btn-icon-grid.active{border-color:rgba(0,0,0,0)}@media(hover: hover)and (pointer: fine){.btn-icon-grid:hover{border-color:rgba(0,0,0,0)}}.btn-icon-grid:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.btn-icon-grid.active{color:#fff}@media(hover: hover)and (pointer: fine){.btn-icon-grid:hover{color:#fff}}@media(max-width: 63.9375rem){.btn-icon-grid{width:100%}}.btn-icon-grid::after{content:"";background:url(stihl-styles/resources/icons/icon-grid-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none);position:relative;height:16px;margin-right:20px}.btn-icon-chat{position:relative;background:linear-gradient(to bottom, black 50%, #F37A1F 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:rgba(0,0,0,0);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center;height:3.75rem;justify-content:space-between}.btn-icon-chat.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.btn-icon-chat:hover{background-position:0 -100%}}.btn-icon-chat.active{border-color:rgba(0,0,0,0)}@media(hover: hover)and (pointer: fine){.btn-icon-chat:hover{border-color:rgba(0,0,0,0)}}.btn-icon-chat:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.btn-icon-chat.active{color:#fff}@media(hover: hover)and (pointer: fine){.btn-icon-chat:hover{color:#fff}}@media(max-width: 63.9375rem){.btn-icon-chat{width:100%}}.btn-icon-chat::after{content:"";background:url(stihl-styles/resources/icons/icon-speachbubble-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none);position:relative;height:16px;margin-right:20px}.btn-stage-left{--outline-offset: 2px;border:1px solid var(--button-border);position:relative;background:linear-gradient(to bottom, white 50%, black 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:var(--button-border);height:7.5rem;width:3.75rem;color:#fff}.btn-stage-left.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.btn-stage-left:hover{background-position:0 -100%}}.btn-stage-left.active{border-color:var(--button-border)}@media(hover: hover)and (pointer: fine){.btn-stage-left:hover{border-color:var(--button-border)}}.btn-stage-left:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.btn-stage-left:hover{color:var(--color2)}.btn-stage-left::after{z-index:1;content:"";background:url(stihl-styles/resources/icons/icon-arrow-left-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);top:50%;left:50%;transform:translate(-50%, -50%)}.btn-stage-left:hover::after{-webkit-mask:url(stihl-styles/resources/icons/icon-arrow-left-16.svg);mask:url(stihl-styles/resources/icons/icon-arrow-left-16.svg);background:var(--icon-btn-hover-color)}@media(hover: hover)and (pointer: fine){.btn-stage-left:hover::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-left-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none)}}.btn-stage-right{--outline-offset: 2px;border:1px solid var(--button-border);position:relative;background:linear-gradient(to bottom, white 50%, black 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:var(--button-border);height:7.5rem;width:3.75rem;color:#fff}.btn-stage-right.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.btn-stage-right:hover{background-position:0 -100%}}.btn-stage-right.active{border-color:var(--button-border)}@media(hover: hover)and (pointer: fine){.btn-stage-right:hover{border-color:var(--button-border)}}.btn-stage-right:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.btn-stage-right:hover{color:var(--color2)}.btn-stage-right::after{z-index:1;content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);top:50%;left:50%;transform:translate(-50%, -50%)}.btn-stage-right:hover::after{-webkit-mask:url(stihl-styles/resources/icons/icon-arrow-right-16.svg);mask:url(stihl-styles/resources/icons/icon-arrow-right-16.svg);background:var(--icon-btn-hover-color)}@media(hover: hover)and (pointer: fine){.btn-stage-right:hover::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none)}}.btn_selection{position:relative;padding:20px 0;background-color:#ededed;min-height:60px}.btn_selection:disabled{pointer-events:none}.btn_selection__container{display:flex;margin-left:10px;overflow:hidden}.btn_selection__icon-high{position:absolute !important;right:0;top:0;bottom:0}.btn_selection__properties{display:flex;flex-direction:column;align-items:flex-start;padding:0}.btn_selection__property{display:flex;justify-content:flex-start;align-items:center;margin-top:1px}.btn_selection__property>*:not(:last-child){margin-right:10px}.btn_selection__property-name{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.btn_selection__property-name:empty{display:none}.btn_selection__property-value{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.btn_selection__property-icon{display:flex;margin:0 10px 0 0 !important}@media only screen and (min-width: 48rem),print{.btn_selection__property-icon{margin:0 20px 0 10px !important}}.btn_selection__price{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:flex;flex-direction:column;align-items:flex-end;padding-left:20px}.btn_selection__from{margin-right:10px}.btn_selection__price-amount{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.btn_selection__price-amount.reduced-price{color:#f37a1f}.btn_selection__content{display:flex;justify-content:space-between;align-items:center;width:100%;margin-right:42px}@media only screen and (min-width: 48rem),print{.btn_selection__content{margin-right:62px}}.btn_link{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow);font-size:inherit;font-family:inherit;padding:0;color:var(--color1)}.icon-high{position:relative;background:linear-gradient(to bottom, black 50%, var(--icon-high-button-color) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:rgba(0,0,0,0);min-height:32px;width:32px}.icon-high .icon-svg{fill:#fff}.icon-high.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.icon-high:hover{background-position:0 -100%}.icon-high:hover .icon-svg{fill:var(--color2)}}.icon-high.active{border-color:rgba(0,0,0,0)}@media(hover: hover)and (pointer: fine){.icon-high:hover{border-color:rgba(0,0,0,0)}}.icon-high:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.btn_show-count{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;margin-bottom:20px;text-align:center}.btn_paypal{--outline-offset: 2px;width:100%;padding:0;display:block}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.btn_paypal:not(.full){min-width:calc(calc(45.5rem / 6) * 2);max-width:calc(calc(45.5rem / 6) * 3)}}@media only screen and (min-width: 64rem){.btn_paypal:not(.full){min-width:calc(calc(61.5rem / 12) * 3);max-width:calc(calc(61.5rem / 12) * 4)}}.btn_paypal.shrink{min-width:auto}.btn_paypal::after{background:url(stihl-styles/resources/paypal-express-button-default.png) center/contain no-repeat;display:block;content:" ";padding-top:calc((11 / 57)*100%)}.btn_paypal:disabled{opacity:.5;pointer-events:none}.btn_paypal--de::after{background:url(stihl-styles/resources/paypal-express-button-de.png) center/contain no-repeat}.btn_text-icon-link svg{margin-right:10px}.btn_text-icon-link--right{flex-direction:row-reverse}.btn_text-icon-link--right svg{margin:0 0 0 10px}.btn_social-share{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;padding:0}.btn_social-share::after{content:"";background:url(stihl-styles/resources/icons/icon-share-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.btn_printer-pdf{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;padding:0}.btn_printer-pdf::after{content:"";background:url(stihl-styles/resources/icons/icon-printer-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.btn_reverse-icon{flex-direction:row-reverse}em{font-weight:bold;font-style:normal;position:relative;text-decoration:none}em::before{content:"";position:absolute;display:block;bottom:-2px;height:2px;left:0;right:0;background-color:#f37a1f}ol,ul,li{list-style:none;margin-block:0;margin-inline:0;padding-inline-start:0}ul.__bulletlist>li{list-style:disc outside;margin:3px 0}ul.__bulletlist>li span{position:relative;left:2px}table{border-collapse:collapse;width:100%}@media only screen and (min-width: 64rem){table{min-width:calc(calc(61.5rem / 12) * 8);max-width:calc(calc(61.5rem / 12) * 12);width:auto !important}}table .color-1_black{background-color:#000;color:#fff}table .color-3_orange{background-color:#f37a1f}table .color-7_green{background-color:#749f4a}table .color-8_yellow{background-color:#fdc543}table .color-9_red{background-color:#d43b3b}table .color-10_blue{background-color:#249abe;color:#fff}th,td{border-right:1px solid #000;text-align:left;padding:20px}th:last-child,td:last-child{border:0}.tabledata th,.tabledata td{min-width:82px}.tabledata th a,.tabledata td a{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow)}.tabledata th ul,.tabledata td ul{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.tabledata th ul li,.tabledata td ul li{position:relative;padding:0 0 15px 10px;-webkit-hyphens:auto;hyphens:auto}.tabledata th ul li::before,.tabledata td ul li::before{position:absolute;left:0;content:"•"}.tabledata th ul li:last-child,.tabledata td ul li:last-child{padding-bottom:0}.tabledata th ul ul,.tabledata th ul ol,.tabledata td ul ul,.tabledata td ul ol{width:100%;padding-top:15px;padding-left:25px}.tabledata th ul ul ul,.tabledata th ul ul ol,.tabledata th ul ol ul,.tabledata th ul ol ol,.tabledata td ul ul ul,.tabledata td ul ul ol,.tabledata td ul ol ul,.tabledata td ul ol ol{padding-left:20px}.tabledata th ol,.tabledata td ol{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;counter-reset:list-counter}.tabledata th ol li,.tabledata td ol li{position:relative;padding:0 0 15px 10px;-webkit-hyphens:auto;hyphens:auto;padding:0 0 15px 26px}.tabledata th ol li::before,.tabledata td ol li::before{position:absolute;left:0;content:"•"}.tabledata th ol li:last-child,.tabledata td ol li:last-child{padding-bottom:0}.tabledata th ol ul,.tabledata th ol ol,.tabledata td ol ul,.tabledata td ol ol{width:100%;padding-top:15px;padding-left:25px;padding-left:9px}.tabledata th ol ul ul,.tabledata th ol ul ol,.tabledata th ol ol ul,.tabledata th ol ol ol,.tabledata td ol ul ul,.tabledata td ol ul ol,.tabledata td ol ol ul,.tabledata td ol ol ol{padding-left:20px;padding-left:4px}.tabledata th ol li,.tabledata td ol li{counter-increment:list-counter}.tabledata th ol li::before,.tabledata td ol li::before{font-weight:bold;content:"0" counter(list-counter) ". "}.tabledata th ol li:nth-child(n+10)::before,.tabledata td ol li:nth-child(n+10)::before{content:counter(list-counter) ". "}@media only screen and (max-width: 47.9375rem){.tabledata th,.tabledata td{width:calc(100%/(2 / 1));min-width:calc(100vw - (50vw + 60px))}}.tabledata{overflow-x:auto}.tabledata__pager{display:none;justify-content:flex-end;margin-bottom:20px}.tabledata__pager-btn{width:45px;height:45px}.tabledata__pager-btn:first-child{margin-right:1px}.tabledata__clone{display:flex;align-items:center;position:relative;background:#000 !important}.tabledata__clone-container{display:flex;justify-content:center;position:fixed;z-index:1;top:var(--header-height);left:0;width:100vw}@media only screen and (min-width: 64rem){.tabledata__clone-container{width:61.5rem;left:unset}}.tabledata__clone-container--on-anchor-page{top:calc(var(--header-height) + var(--default-banner-height))}.tabledata__clone-container-inner{position:relative;margin-left:auto;margin-right:auto;overflow:hidden;width:calc(100% - (2 * 1.25rem))}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.tabledata__clone-container-inner{width:45.5rem}}@media only screen and (min-width: 64rem){.tabledata__clone-container-inner{width:61.5rem}}.tabledata__clone tr{display:block}.tabledata__clone th{box-sizing:border-box}th{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;background-color:#000;color:#fff}td{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}td p{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}tr:nth-child(odd){background-color:#ededed}tr:nth-child(odd) a{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow)}.dropdown_section{display:flex;flex-direction:row;justify-content:space-evenly;margin:0 20px}.dropdown_section__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:flex;justify-content:center;margin:10px;white-space:nowrap}.dropdown_section__dash{border-bottom:1px solid #b1b1b1;height:17px;width:100%}.dropdown-text__bold{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.dropdown_2{position:absolute;top:-10px;left:100%;margin-left:-50px;z-index:100}.dropdown_list{--outline-offset: -2px;border:var(--language-navigation-border);background-color:var(--language-navigation-bg);display:flex;flex-direction:column;min-width:-moz-max-content;min-width:max-content}.dropdown_list--large{display:block;overflow:auto;height:8.75rem}@media only screen and (max-width: 47.9375rem){.dropdown_list__item{margin-bottom:20px}}.dropdown_list__item--last{margin-bottom:0}.dropdown_list__btn{display:inline-block;position:relative;cursor:pointer;margin-right:-3px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;position:relative;padding-right:1.875rem;margin-right:1.875rem}.dropdown_list__btn::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-down-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(-1.25rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.page-filter .dropdown_list__btn{margin-right:0;text-transform:none;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.ts-body .dropdown_list__btn.active{background-color:#252525;color:#fff}.dropdown_list__btn.active::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-up-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none)}.dropdown_list__btn--icon{display:flex;align-items:center;padding-left:2.375rem;min-height:30px}.dropdown_list__btn--icon-globe::before{content:"";background:url(stihl-styles/resources/icons/icon-globe-32.svg) no-repeat center/contain;position:absolute;height:1.25rem;width:1.25rem;filter:var(--svg-filter-invert, none);left:0}.dropdown_list__value{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block;margin-left:5px}.page-filter .dropdown_list__value{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;font-weight:bold}.dropdown_list::-webkit-scrollbar{width:15px;background-color:rgba(255,255,255,0)}.dropdown_list::-webkit-scrollbar-track,.dropdown_list::-webkit-scrollbar-thumb{border:5px solid rgba(255,255,255,0);background-clip:padding-box}.dropdown_list::-webkit-scrollbar-track{background-color:#ededed}.dropdown_list::-webkit-scrollbar-thumb{background-color:#000}.multiselect-dropdown{position:relative;height:100%}.multiselect-dropdown__icon{transform:rotate(0deg);transition:.25s ease}.multiselect-dropdown__icon,.multiselect-dropdown__icon svg{height:.75rem;display:block}.multiselect-dropdown__icon--open{transform:rotate(180deg)}.multiselect-dropdown__svg{fill:var(--color1)}.multiselect-dropdown__label-wrapper{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.multiselect-dropdown__btn,.multiselect-dropdown__list{background-color:var(--color13);color:var(--color1)}.multiselect-dropdown__btn{display:flex;justify-content:space-between;align-items:center;width:100%;height:100%;border:var(--dropdown-outline);padding:12px 16px}.multiselect-dropdown__list{position:absolute;border:var(--dropdown-outline);z-index:1;left:0;top:calc(100% - 1px);min-width:calc(100% - 2px)}@media only screen and (min-width: 48rem),print{.multiselect-dropdown__list{max-height:22.5rem;overflow:auto;overflow-x:hidden;scrollbar-color:#000 #ededed;scrollbar-width:thin}.ts-body .multiselect-dropdown__list{scrollbar-color:#fff #3e3e3e}.ts-body .multiselect-dropdown__list::-webkit-scrollbar-thumb{background-color:#fff}.multiselect-dropdown__list::-webkit-scrollbar{width:15px;background-color:rgba(255,255,255,0)}.multiselect-dropdown__list::-webkit-scrollbar-track,.multiselect-dropdown__list::-webkit-scrollbar-thumb{border:5px solid rgba(255,255,255,0);background-clip:padding-box}.multiselect-dropdown__list::-webkit-scrollbar-track{background-color:#ededed}.ts-body .multiselect-dropdown__list::-webkit-scrollbar-track{background-color:#3e3e3e}.multiselect-dropdown__list::-webkit-scrollbar-thumb{background-color:#000}.multiselect-dropdown__list label:not(.multiselect-dropdown__item--label){padding:9.75px 16px;gap:16px}.multiselect-dropdown__list label:not(.multiselect-dropdown__item--label):hover{background-color:var(--dropdown-multiselect-hover)}.multiselect-dropdown__list label:not(.multiselect-dropdown__item--label),.multiselect-dropdown__list label:not(.multiselect-dropdown__item--label):hover{transition:.25s ease}.multiselect-dropdown__list .checkbox.checked.standard{font-weight:700}}.multiselect-dropdown__counter{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;font-weight:bold;display:inline;margin-left:4px}@media(max-width: 63.9375rem){.multiselect-dropdown__counter{display:none}}.multiselect-dropdown__item{background-color:var(--color13);color:#fff;display:flex;padding:8px 64px 8px 16px;justify-content:flex-start;align-items:center;width:100vw}@media only screen and (min-width: 48rem),print{.multiselect-dropdown__item{width:100%}}.multiselect-dropdown__item--checked{font-weight:700}.multiselect-dropdown__item:hover{background-color:var(--dropdown-multiselect-hover)}.multiselect-dropdown__item>label{margin-top:.5px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.multiselect-dropdown__item--not-season{margin-left:16px}.tab-bar_header{display:flex;justify-content:flex-start;position:relative;--tab-bar-border: #B1B1B1}.tab-bar_header.tab-bar_header--corporate{--tab-bar-border: #DADADA;display:grid;width:100vw;grid-template-columns:20px auto 1fr;margin-left:-20px}@media only screen and (min-width: 48rem),print{.tab-bar_header.tab-bar_header--corporate{margin-left:calc((100vw - 728px)/2*-1);grid-template-columns:calc((100vw - 728px)/2) auto 1fr}}@media only screen and (min-width: 64rem){.tab-bar_header.tab-bar_header--corporate{margin-left:calc((100vw - 984px)/2*-1);grid-template-columns:calc((100vw - 984px)/2) auto 1fr}}.tab-bar_header__line{display:flex;height:3.6875rem;border-bottom:1px solid var(--tab-bar-border)}@media only screen and (min-width: 64rem){body.product-detail-page .tab-bar_header.m_infobox_product-detail__tabs--container:not(.tab-bar_header--upcoming){margin:0 0 -1px}}@media(max-width: 63.9375rem){body.product-detail-page .tab-bar_header.m_infobox_product-detail__tabs--container{border-top:1px solid var(--tab-bar-border)}}.tab-bar_header .icon-high{position:absolute;height:3.75rem;z-index:1}.tab-bar_header .icon-high:first-child{left:0}.tab-bar_header .icon-high:last-child{right:0}.tab-bar_header--inverse .tab-bar_header .icon-high:last-child{right:1.25rem}.tab-bar_header__wrapper{display:flex;overflow:auto hidden;scroll-behavior:smooth;scrollbar-width:none;-ms-overflow-style:none}.tab-bar_header__wrapper::-webkit-scrollbar{display:none}@media only screen and (min-width: 64rem){body.product-detail-page .tab-bar_header__wrapper.tab-bar_header--product-variants{border-right:1px solid var(--tab-bar-border);border-left:1px solid var(--tab-bar-border);border-top:1px solid var(--tab-bar-border)}}.tab-bar_header__item{--outline-offset: -2px;display:flex;flex:0 0 auto;height:3.75rem}.tab-bar_header__tab{box-sizing:border-box;max-width:15.625rem;padding:0 1.25rem;background-color:#ededed;border-top:1px solid var(--tab-bar-border);border-right:1px solid var(--tab-bar-border);border-bottom:1px solid var(--tab-bar-border);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}body.product-detail-page .tab-bar_header__tab{max-width:18.75rem}body.product-detail-page .tab-bar_header--product-variants .tab-bar_header__tab{border-top:unset}body.product-detail-page .tab-bar_header--product-variants .tab-bar_header__tab:last-child{border-right:1px solid var(--tab-bar-border)}@media only screen and (min-width: 64rem){body.product-detail-page .tab-bar_header--product-variants .tab-bar_header__tab:last-child{border-right:unset}}.tab-bar_header--inverse .tab-bar_header__tab{background-color:#fff}.tab-bar_header__tab--active{background-color:#fff;border-top:1px solid var(--tab-bar-border);border-right:1px solid var(--tab-bar-border);border-bottom:1px solid #fff}body.product-detail-page .tab-bar_header--product-variants .tab-bar_header__tab--active{border-top:unset}body.product-detail-page .tab-bar_header--product-variants .tab-bar_header__tab--active:last-child{border-right:unset}.tab-bar_header--inverse .tab-bar_header__tab--active{background-color:#ededed;border-bottom:1px solid var(--tab-bar-border)}.tab-bar_header__tab--first{border-left:1px solid var(--tab-bar-border)}body.product-detail-page .tab-bar_header--product-variants .tab-bar_header__tab--first{border-left:unset}.tab-bar_header__title{pointer-events:none;margin:auto;display:flex}.tab-bar_header__title__icon{margin-right:5px}.tab-bar_header__status{display:flex;margin:auto .625rem auto 0;pointer-events:none}.tab-bar_header__status svg{width:.75rem;height:.75rem}.tab-bar_header__icon{display:inline-block;margin-left:.625rem;padding-right:1.25rem}.tab-bar_header--filter{display:flex;justify-content:center;margin:.625rem 0}.tab-bar_header__flag-offer-circle-container{pointer-events:none;padding-left:.625rem;margin:auto}.tab-bar_header__flag-offer-circle{pointer-events:none;background-color:#f37a1f;border-radius:50%;height:17px;width:17px;vertical-align:middle;position:relative}.tab-bar_header__flag-offer-circle.applied{background-color:#dadada}.tab-bar_header__flag-offer-text{pointer-events:none;position:absolute;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;color:#fff;left:50%;top:50%;transform:translate(-45%, -50%);margin-top:1px}.tab-bar_header__flag-new{margin:auto auto auto 10px;padding-left:10px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;border-left:1px solid gray}.tab-bar_header--inverse{width:100%}@media only screen and (min-width: 48rem),print{.tab-bar_header--inverse>.tab-bar_header__wrapper{width:100%;padding:0 10px 0 0}}.tab_icon-button{height:100%;width:60px;background-color:#000;background-size:16px 16px;background-position:center;background-repeat:no-repeat}.tab_icon-button:hover{background-color:#f37a1f}.tab_icon-button--compare{background-image:url(stihl-styles/resources/icons/icon-compare-white-16.svg)}.tab_icon-button--information{background-image:url(stihl-styles/resources/icons/icon-info-white-16.svg)}.tab-bar_pager{display:flex;justify-content:center;width:100%;margin:0 auto}.tab-bar_pager.type-toggle{justify-content:unset}.tab-bar_pager__item{flex:1 1 auto;height:60px}.tab-bar_pager__tab{min-width:auto !important}.ts-body .tab-bar_pager__tab{position:relative;background:linear-gradient(to bottom, transparent 50%, white 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:#fff;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center;height:3.75rem;--outline-offset: 2px;width:100%;border-width:1px;border-style:solid}.ts-body .tab-bar_pager__tab.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.ts-body .tab-bar_pager__tab:hover{background-position:0 -100%}}.ts-body .tab-bar_pager__tab.active{border-color:#fff}@media(hover: hover)and (pointer: fine){.ts-body .tab-bar_pager__tab:hover{border-color:#fff}}.ts-body .tab-bar_pager__tab:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.ts-body .tab-bar_pager__tab.active{color:#000}@media(hover: hover)and (pointer: fine){.ts-body .tab-bar_pager__tab:hover{color:#000}}@media(max-width: 63.9375rem){.ts-body .tab-bar_pager__tab{width:100%}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.ts-body .tab-bar_pager__tab:not(.full){min-width:calc(calc(45.5rem / 6) * 2);max-width:calc(calc(45.5rem / 6) * 3)}}@media only screen and (min-width: 64rem){.ts-body .tab-bar_pager__tab:not(.full){min-width:calc(calc(61.5rem / 12) * 3);max-width:calc(calc(61.5rem / 12) * 4)}}.ts-body .tab-bar_pager__tab.shrink{min-width:auto}.ts-body .white-container .tab-bar_pager__tab,.tab-bar_pager__tab{position:relative;background:linear-gradient(to bottom, transparent 50%, var(--color1) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:var(--tab-bar-border);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#000;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center;height:3.75rem;--outline-offset: 2px;width:100%;border-width:1px;border-style:solid}.ts-body .white-container .tab-bar_pager__tab.active,.tab-bar_pager__tab.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.ts-body .white-container .tab-bar_pager__tab:hover,.tab-bar_pager__tab:hover{background-position:0 -100%}}.ts-body .white-container .tab-bar_pager__tab.active,.tab-bar_pager__tab.active{border-color:var(--tab-bar-border)}@media(hover: hover)and (pointer: fine){.ts-body .white-container .tab-bar_pager__tab:hover,.tab-bar_pager__tab:hover{border-color:var(--tab-bar-border)}}.ts-body .white-container .tab-bar_pager__tab:disabled,.tab-bar_pager__tab:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.ts-body .white-container .tab-bar_pager__tab.active,.tab-bar_pager__tab.active{color:#fff}@media(hover: hover)and (pointer: fine){.ts-body .white-container .tab-bar_pager__tab:hover,.tab-bar_pager__tab:hover{color:#fff}}@media(max-width: 63.9375rem){.ts-body .white-container .tab-bar_pager__tab,.tab-bar_pager__tab{width:100%}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.ts-body .white-container .tab-bar_pager__tab:not(.full),.tab-bar_pager__tab:not(.full){min-width:calc(calc(45.5rem / 6) * 2);max-width:calc(calc(45.5rem / 6) * 3)}}@media only screen and (min-width: 64rem){.ts-body .white-container .tab-bar_pager__tab:not(.full),.tab-bar_pager__tab:not(.full){min-width:calc(calc(61.5rem / 12) * 3);max-width:calc(calc(61.5rem / 12) * 4)}}.ts-body .white-container .tab-bar_pager__tab.shrink,.tab-bar_pager__tab.shrink{min-width:auto}.tab-bar_pager__tab:not(:last-child){margin-right:-1px}.teaser-highlight-confirmation{background-color:#f37a1f;display:flex;justify-content:center}.teaser-highlight-confirmation__container{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.teaser-highlight-confirmation__container{width:45.5rem}}@media print{.teaser-highlight-confirmation__container{width:auto}}@media only screen and (min-width: 64rem){.teaser-highlight-confirmation__container{width:61.5rem}}.teaser-highlight-confirmation__wrapper{display:flex;padding:30px 10px}@media only screen and (min-width: 64rem){.teaser-highlight-confirmation__wrapper{width:calc(100%/(12 / 9))}}.teaser-highlight-confirmation__check-icon{margin-right:20px;width:32px;height:32px}.teaser-highlight-confirmation__check-icon::before{content:"";background-image:url(stihl-styles/resources/icons/icon-check-white-16.svg);background-size:32px 32px !important;width:32px !important;height:32px !important;display:inline-block}.teaser-highlight-confirmation__headline{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;margin:0}.acco{overflow:hidden;position:relative;width:100%;--outline-offset: 2px;margin-left:calc((var(--outline-width) + var(--outline-offset))*-1);margin-right:calc((var(--outline-width) + var(--outline-offset))*-1);padding-left:calc(var(--outline-width) + var(--outline-offset));padding-right:calc(var(--outline-width) + var(--outline-offset))}@media print{.acco{display:block;page-break-inside:avoid;-moz-column-break-inside:avoid;break-inside:avoid}}.product-filter .acco{border-bottom:var(--border2)}.acco--open .acco__title::after{transform:rotate(180deg)}.acco--transition-ended{overflow:visible}.acco--no-border{border-bottom:none}.acco__tab{--outline-offset: -2px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:flex;align-items:center;position:relative;margin:0;background:var(--color13);box-sizing:border-box;cursor:pointer;z-index:10;min-height:3.125rem;padding:1.1875rem 2.8125rem 1.1875rem 0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.acco--inline-small .acco__tab{min-height:20px;padding:0;z-index:9}.acco__tab--radio{--outline-offset: -3px;margin:calc((var(--outline-width) + var(--outline-offset))*-1);padding:calc(var(--outline-width) + var(--outline-offset));padding:20px 0;justify-content:space-between}.acco__tab--table{background:#ededed;padding:20px 10px}@media only screen and (min-width: 48rem),print{.acco__tab--table{padding:20px}}.acco__tab-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin:0}.acco__tab-icon-arrow-down::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-down-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);transition:transform 250ms}@media print{.acco__tab-icon-arrow-down::after{display:none}}.acco--open .acco__tab-icon-arrow-down::after{transform:rotate(180deg)}.acco__tab-icon-minus::after{content:"";background:url(stihl-styles/resources/icons/icon-minus-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none)}.acco__tab-icon-plus::after{content:"";background:url(stihl-styles/resources/icons/icon-plus-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none)}.acco__tab-icon-minus::after,.acco__tab-icon-plus::after,.acco__tab-icon-arrow-down::after{right:10px}.acco--inline-small .acco__tab-icon-minus::after,.acco--inline-small .acco__tab-icon-plus::after,.acco--inline-small .acco__tab-icon-arrow-down::after{position:relative;width:12px;height:12px;right:-10px}.acco--table .acco__tab-icon-minus::after,.acco--table .acco__tab-icon-plus::after,.acco--table .acco__tab-icon-arrow-down::after{right:10px}@media only screen and (min-width: 48rem),print{.acco--table .acco__tab-icon-minus::after,.acco--table .acco__tab-icon-plus::after,.acco--table .acco__tab-icon-arrow-down::after{right:20px}}.acco__tab-icon-pen::after{content:"";background:url(stihl-styles/resources/icons/icon-pen-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);right:10px;transition:transform 250ms}.acco__tab-icon-check::after{content:"";background:url(stihl-styles/resources/icons/icon-check-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);right:10px;transition:transform 250ms}.acco__tab-quick-order{cursor:auto}.acco__radio-icons{display:flex;justify-content:flex-end;flex-shrink:0}.acco__radio-icons>*{margin-left:.625rem;width:2.5rem;height:auto}.acco__label{margin-left:10px}.acco__label--v2{display:flex;flex-direction:column;height:41.6px;justify-content:center}.acco__label--v2 span,.acco__label--v2 p{text-transform:unset;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.acco__label--v2 span{font-weight:700}.acco--inline-small .acco__label{position:relative;margin-left:0;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.acco__content{display:flex;flex-direction:column-reverse;height:0;overflow:hidden;z-index:0;transition:height 250ms;border-bottom:var(--border1)}.acco__noborder .acco__content{border-bottom:unset}@media print{.acco__content{height:auto !important}}@media print{.acco__content{display:block;page-break-inside:avoid;-moz-column-break-inside:avoid;break-inside:avoid}}.acco__inner{display:flex;position:absolute;width:calc(100% - (var(--outline-offset) + var(--outline-width))*2);padding:10px 0;box-sizing:border-box}.list-shopping-cart__acco .acco__inner{flex-direction:column;padding:0}.acco-order .acco__inner{min-height:62px}@media print{.acco__inner{position:relative}}.acco__content-container{width:100%}.acco__content-container .image,.acco__content-container .richtexteditor,.acco__content-container .textimage,.acco__content-container .text-img,.acco__content-container .tabledata{margin-top:0;margin-bottom:50px}.acco__content-container .textimage .richtexteditor{margin-bottom:0}.acco__content-container .download{margin-bottom:40px}.acco__content-container .download__icon{margin-right:10px}.acco-standard{margin-top:40px;margin-bottom:40px}.benefit-summary .acco-standard{margin:30px 0}.checkout-view__acco{display:block}.payment-options{display:flex;align-items:center}@media only screen and (max-width: 47.9375rem){.payment-options{flex-flow:column}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.payment-options{margin-left:120px}.benefit-summary .payment-options{margin-left:0}}.payment-options__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}@media only screen and (max-width: 47.9375rem){.payment-options__title{margin-bottom:20px}}@media only screen and (min-width: 48rem),print{.payment-options__title{margin-right:30px;min-width:140px}}@media only screen and (max-width: 47.9375rem){.payment-options .img-comp-3{justify-content:center;padding:0 30px;margin:-10px -15px}.benefit-summary .payment-options .img-comp-3{justify-content:flex-start;margin-right:0;padding:0}}@media only screen and (min-width: 48rem),print{.payment-options .img-comp-3{margin:-15px}}@media only screen and (max-width: 47.9375rem){.payment-options .img-comp-3>*{margin:10px 15px}}@media only screen and (min-width: 48rem),print{.payment-options .img-comp-3>*{margin:15px}}.payment-options .img-comp-3>* img{height:100%}.img-comp-1{display:flex;flex-flow:row wrap;margin:-10px}.img-comp-1>*{height:60px;margin:10px}.img-comp-2{display:flex;flex-flow:row wrap;margin:-10px}.img-comp-2>*{height:45px;margin:10px}.img-comp-3{display:flex;flex-flow:row wrap;margin:-10px}.img-comp-3>*{height:32px;margin:10px}.form__wrapper{display:flex;flex-flow:column;width:100%}.form__wrapper .form-field{margin-bottom:30px}@media only screen and (min-width: 48rem),print{.form__wrapper .form-field{margin-bottom:10px}}.form__section{margin-bottom:20px}.form__section-title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25;margin:0 10px 30px}@media only screen and (min-width: 48rem),print{.form__section-title{font-size:1.625rem;line-height:1.2}}.form__section--indent{margin:20px 0 20px 40px}.form__submit{align-self:flex-end}@media only screen and (max-width: 47.9375rem){.form__submit{width:100%}}.form__text{margin:0 10px 20px}.form__error{color:red}.form__form{width:100%;margin-bottom:30px}.form__checkbox{margin:0 10px 20px}.form__required-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;margin:1.875rem .625rem}.m_myaccount-data .form__required-label{margin:.625rem}.form-field{display:grid;grid-gap:10px;grid-template:[row1-start] "label" [row1-end] [row2-start] "input" [row2-end]/1fr;position:relative;width:100%}.form-field.form-notice{grid-template-areas:"label" "input" "error"}.text .form-field,.options .form-field{margin-bottom:10px}@media only screen and (min-width: 48rem),print{.form-field{grid-template:"label input input input";grid-template-columns:30% repeat(3, minmax(100px, 1fr));place-items:center stretch;min-width:500px}.form-field.form-notice{grid-template-areas:"label input input input" ". error error error"}.overlay--sidebar .form-field{grid-template-columns:30% repeat(3, minmax(50px, 1fr));min-width:unset}.form-field.form-s{grid-template:[row1-start] "label" [row1-end] [row2-start] "input" [row2-end]/minmax(0, 1fr);min-width:unset}.form-field.form-s.form-notice{grid-template-areas:"label" "input" "error"}.form-field.form-nolabel{grid-template:"input input input";grid-template-columns:repeat(3, minmax(100px, 1fr));place-items:center stretch;min-width:unset}.form-field.form-nolabel.form-notice{grid-template-areas:"input input input" "error error error"}.form-field--hint{grid-template-areas:"label hint hint hint"}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.form-field{grid-template-columns:35% repeat(3, minmax(100px, 1fr))}.m_overlay-sidebar__content .form-field{grid-template:"label input input";grid-template-columns:30% repeat(2, minmax(100px, 1fr));min-width:unset}.m_overlay-sidebar__content .form-field.form-notice{grid-template-areas:"label input input" ". error error"}}.form-field__label-text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin:0 10px;text-transform:none}.form-field__icon{display:inline-block}.form-field__icon~.form-field__separator{padding-left:10px}.form-field__icon-high{grid-area:input;place-self:stretch flex-end}.form-field.form-error .form-field__icon-high{border-bottom:5px solid #f37a1f}.form-field__input{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;grid-area:input;height:60px;padding:0 20px;background-color:#ededed;box-sizing:border-box}@media only screen and (max-width: 47.9375rem){.form-field__input{width:100%}}.form-field.icon .form-field__input{margin-right:32px}.form-field.form-error .form-field__input{height:65px;border-bottom:5px solid #f37a1f}.form-field__input--adyen{padding:0}.form-field__input--adyen-small{grid-area:auto}@media only screen and (min-width: 48rem),print{.form-field__input--ideal{margin-bottom:140px}}.form-field__input--datalist{--outline-offset: -2px;caret-color:rgba(0,0,0,0);cursor:pointer}.form-field__input-triple{grid-area:input-2}.form-field__input-triple:first-of-type{grid-area:input-1}.form-field__input-triple:last-of-type{grid-area:input-3}.form-field__input-triple input{width:100%}.form-field__input-double{position:relative;grid-area:input}.form-field__input-double input{width:100%}.form-field__input--ts-checkbox{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0;font:inherit;color:#fff;width:1rem;height:1rem;border:1px solid #fff;transform:translateY(-0.075em);display:grid;place-content:center}.form-field__input--ts-checkbox::before{content:"";width:16px;height:16px;background-color:rgba(0,0,0,0)}.form-field__input--ts-checkbox:hover{cursor:pointer}.form-field__input--ts-checkbox:checked::before{fill:#fff;content:"";background:url(stihl-styles/resources/icons/icon-check-white-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert-white, none);top:1.5px;left:1px}.form-field__input--ts-radio-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0 1rem 0 0;color:#fff;width:1rem;height:1rem;border:var(--radio-button-outline);border-radius:50%;transform:translateY(-0.075em);display:grid;place-content:center}.form-field__input--ts-radio-button::before{content:"";width:1rem;height:1rem;background-color:rgba(0,0,0,0)}.form-field__input--ts-radio-button:hover{cursor:pointer}.form-field__input--ts-radio-button:checked::before{background-color:var(--color1);border-radius:50%;width:.625rem;height:.625rem}.form-field__label{grid-area:label;display:flex}.form-field__label .form-field.form-s{margin-bottom:.625rem}@media only screen and (max-width: 47.9375rem){.form-field__label{width:100%;margin-bottom:.625rem}}.form-field__datalist{position:absolute}@media only screen and (min-width: 48rem),print{.form-field__datalist{top:60px;left:0;right:0;grid-area:1/2;z-index:11}}.form-field__datalist-full{position:absolute}@media only screen and (min-width: 48rem),print{.form-field__datalist-full{top:65px;left:0;right:0;grid-area:1;z-index:11}}.form-field__datalist.multi-selector{width:200%;left:auto}.form-field__datalist.dropdown-value-large-length{width:180%;left:auto}.form-field__button{z-index:10;position:absolute;right:0;bottom:0;height:60px;width:60px}.form-field__button::after{top:22px;right:22px}.form-field__button--datalist{--outline-offset: -2px}.form-field__button--datalist::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-down-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none)}.form-field__button--datalist_arrow{transform:scale(1, -1)}.form-field__button--password::after{content:"";background:url(stihl-styles/resources/icons/icon-eye-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none)}@media only screen and (max-width: 47.9375rem){.form-field--double-1 .form-field__input-double:first-of-type{justify-self:flex-start;width:50%}.form-field--double-1 .form-field__input-double:not(:first-of-type){justify-self:flex-end;width:calc(50% - 10px)}}@media only screen and (min-width: 48rem),print{.form-field--double-1{grid-template-areas:"label input input-double input-double"}.form-field--double-1 .form-field__input-double:not(:first-of-type){grid-area:input-double}}@media only screen and (max-width: 47.9375rem){.form-field--double-2 .form-field__input-double:first-of-type{justify-self:flex-start;width:calc(70% - 10px)}.form-field--double-2 .form-field__input-double:not(:first-of-type){justify-self:flex-end;width:30%}}@media only screen and (min-width: 48rem),print{.form-field--double-2{grid-template-areas:"label input-double input-double input"}.form-field--double-2 .form-field__input-double:first-of-type{grid-area:input-double}}@media only screen and (max-width: 47.9375rem){.form-field--triple{grid-template:[row1-start] "label label label" [row1-end] [row2-start] "input-1 input-2 input-3" [row2-end]/1fr 1fr 1fr}}@media only screen and (min-width: 48rem),print{.form-field--triple{grid-template-areas:"label input-1 input-2 input-3"}}.form-field--withlabel{display:flex;width:100%;margin-bottom:10px;min-width:auto}@media only screen and (min-width: 48rem),print{.form-field--withlabel{margin:10px 0 10px 20px;flex-basis:calc(50% - 20px)}}.form-field--withlabel input{border:1px solid #b1b1b1;border-top-width:2px;background-color:rgba(0,0,0,0)}@media only screen and (min-width: 48rem),print{.form-field--withlabel input{width:100%}}.form-field--withlabel>.form-field__label{position:absolute;top:2px;left:15px;z-index:-1;transition:all .2s}.form-field--withlabel>.form-field__label>.form-field__label-text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#b1b1b1;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;transition:all .2s}.form-field--withlabel>.form-field__label--animate{transform:translateY(18px)}.form-field--withlabel>.form-field__label--animate>.form-field__label-text{font-size:.875rem}.form-field--withlabel__single,.form-field--withlabel__disabled{flex-basis:100%}@media only screen and (min-width: 48rem),print{.form-field--withlabel__single input,.form-field--withlabel__disabled input{width:calc(50% - 50px)}}.form-field--withlabel__disabled input{background-color:#ededed}.form-field__error-message{grid-area:error;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;margin:0 20px 0 10px}.form-field__hint{grid-area:hint}.icon-comb_footer{display:flex;flex-flow:row wrap;justify-content:center;margin:-20px 0}.icon-comb_footer>*{height:32px;margin:20px}.tooltip-arrow{position:relative}.tooltip-arrow::before{position:absolute;left:50%;pointer-events:none;content:"";transform:translate3d(-50%, 0, 0);transition:filter 250ms 250ms,border 250ms 250ms,z-index 250ms;z-index:11}.tooltip-arrow.close::before{transition:filter 250ms,border 250ms,z-index 250ms 250ms;z-index:-1}.tooltip-arrow.t-border::before{top:-13px;border-top:9px solid #fff;border-left:8px solid rgba(0,0,0,0);border-right:8px solid rgba(0,0,0,0);filter:drop-shadow(0 1px 0 #B1B1B1)}.tooltip-arrow.t-border.close::before{border-top:0 solid #fff}.tooltip-arrow.t-no-border::before{top:-25px;border-top:18px solid #fff;border-left:20px solid rgba(0,0,0,0);border-right:20px solid rgba(0,0,0,0);filter:drop-shadow(0 4px 6px #EDEDED);clip:rect(0, 100px, 100px, -100px)}.tooltip-arrow.t-no-border.close::before{border-top:0 solid #fff}.tooltip-arrow.t-bg-gray::before{border-top-color:#ededed}.tooltip-arrow-left{position:relative;transition:none !important}.tooltip-arrow-left::before{position:absolute;left:50%;pointer-events:none;content:"";transform:translate3d(-50%, 0, 0);transition:filter 250ms 250ms,border 250ms 250ms,z-index 250ms;z-index:11}.tooltip-arrow-left::after{position:absolute;top:calc(52% - 8px) !important;left:-10px !important;pointer-events:none;content:"";transform:rotate(-0.25turn);transition:filter 250ms 250ms,border 250ms 250ms,z-index 250ms;z-index:11 !important}.tooltip-arrow-left.close::after{transition:filter 250ms,border 250ms,z-index 250ms 250ms;z-index:-1}.tooltip-arrow-left.t-border-bottom.close::after,.tooltip-arrow-left.t-no-border-bottom.close::after{border-bottom:0 solid #fff}.tooltip-arrow-left.t-border-bottom::after{border-bottom:9px solid #fff;border-left:8px solid rgba(0,0,0,0);border-right:8px solid rgba(0,0,0,0);filter:drop-shadow(0 -1px 0 #B1B1B1)}.tooltip-arrow-left.t-no-border-bottom::after{top:20px;border-bottom:18px solid #fff;border-left:20px solid rgba(0,0,0,0);border-right:20px solid rgba(0,0,0,0);filter:drop-shadow(0 -10px 6px #EDEDED);clip:rect(-10px, 100px, 100px, -100px)}.tooltip-arrow-left.t-bg-gray::after{border-bottom-color:#ededed}.tooltip-arrow-bottom{position:relative}.tooltip-arrow-bottom::after{position:absolute;top:20px;left:50%;pointer-events:none;content:"";transform:translate3d(-50%, 0, 0);transition:filter 250ms 250ms,border 250ms 250ms,z-index 250ms;z-index:11}.tooltip-arrow-bottom.close::after{transition:filter 250ms,border 250ms,z-index 250ms 250ms;z-index:-1}.tooltip-arrow-bottom.t-border-bottom.close::after,.tooltip-arrow-bottom.t-no-border-bottom.close::after{border-bottom:0 solid #fff}.tooltip-arrow-bottom.t-border-bottom::after{border-bottom:9px solid #fff;border-left:8px solid rgba(0,0,0,0);border-right:8px solid rgba(0,0,0,0);filter:drop-shadow(0 -1px 0 #B1B1B1)}.tooltip-arrow-bottom.t-no-border-bottom::after{top:20px;border-bottom:18px solid #fff;border-left:20px solid rgba(0,0,0,0);border-right:20px solid rgba(0,0,0,0);filter:drop-shadow(0 -10px 6px #EDEDED);clip:rect(-10px, 100px, 100px, -100px)}.tooltip-arrow-bottom.t-bg-gray::after{border-bottom-color:#ededed}@media only screen{.tooltip{position:absolute;left:50%;padding:20px 50px 20px 20px;transform:translate(-50%, -100%);opacity:1;width:-moz-max-content;width:max-content;box-sizing:border-box;background:#fff;transition:transform 250ms,opacity 250ms,z-index 250ms;z-index:10;top:-25px}.tooltip.close{opacity:0;transform:translate(-50%, -150%) rotate(6deg);transition:transform 250ms 250ms,opacity 250ms 250ms,z-index 250ms 250ms;z-index:-1;pointer-events:none}}@media only screen and (max-width: 47.9375rem){.tooltip{width:calc(100vw - (1.25rem * 2))}}@media only screen{.tooltip__link{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;align-self:flex-start;margin-bottom:10px}.tooltip__link::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.tooltip__link:hover::after{transform:translate3d(10px, -50%, 0)}.tooltip__link+a:last-child{margin-bottom:0}}@media only screen{.tooltip__close-x{--outline-offset: 2px;border:1px solid var(--button-border);position:relative;background:linear-gradient(to bottom, black 50%, var(--color3) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:var(--button-border);height:1.875rem;width:1.875rem;color:#fff;position:absolute;top:0;right:0}.tooltip__close-x.active{background-position:0 -100%}}@media only screen and (hover: hover)and (pointer: fine){.tooltip__close-x:hover{background-position:0 -100%}}@media only screen{.tooltip__close-x.active{border-color:var(--button-border)}}@media only screen and (hover: hover)and (pointer: fine){.tooltip__close-x:hover{border-color:var(--button-border)}}@media only screen{.tooltip__close-x:disabled{background:#ededed;border-color:#ededed;pointer-events:none}}@media only screen{.tooltip__close-x:hover{color:var(--color2)}}@media only screen{.tooltip__close-x::after{z-index:1;content:"";background:url(stihl-styles/resources/icons/icon-cross-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none);top:50%;left:50%;transform:translate(-50%, -50%)}}@media only screen{.tooltip__close-x:hover::after{-webkit-mask:url(stihl-styles/resources/icons/icon-cross-white-16.svg);mask:url(stihl-styles/resources/icons/icon-cross-white-16.svg);background:var(--icon-btn-hover-color)}}@media only screen{.tooltip__inner{display:flex}.column-view .tooltip__inner{flex-direction:column}}@media only screen{.tooltip::before{position:absolute;content:" ";left:0;height:20px;width:30%}}@media only screen{.tooltip.t-border,.tooltip.t-border-bottom,.tooltip.t-no-border,.tooltip.t-no-border-bottom{min-width:125px}}@media only screen{.tooltip.t-border{top:-12px;border:1px solid #b1b1b1}.tooltip.t-border::before{bottom:-20px}}@media only screen and (min-width: 48rem){.tooltip.t-border{max-width:350px}}@media only screen{.tooltip.t-border .tooltip__close-x{top:-1px;right:-1px}}@media only screen{.tooltip.t-border-bottom,.tooltip.t-no-border-bottom,.tooltip.small-bottom{z-index:9;top:28px;border:1px solid #b1b1b1;transform:translate(-50%, 0)}.tooltip.t-border-bottom::before,.tooltip.t-no-border-bottom::before,.tooltip.small-bottom::before{top:-20px}}@media only screen and (min-width: 48rem){.tooltip.t-border-bottom,.tooltip.t-no-border-bottom,.tooltip.small-bottom{max-width:314px}}@media only screen{.tooltip.t-border-bottom .tooltip__close-x,.tooltip.t-no-border-bottom .tooltip__close-x,.tooltip.small-bottom .tooltip__close-x{top:-1px;right:-1px}}@media only screen{.tooltip.small-bottom{top:25px;border:none}}@media only screen and (min-width: 48rem){.tooltip.small-bottom{max-width:600px}}@media only screen{.tooltip.t-no-border-bottom{top:38px;border:none;filter:drop-shadow(0 -4px 6px #EDEDED)}}@media only screen and (min-width: 48rem){.tooltip.t-no-border-bottom{max-width:600px}}@media only screen{.tooltip.t-no-border{filter:drop-shadow(0 4px 6px #EDEDED)}}@media only screen and (min-width: 48rem){.tooltip.t-no-border{max-width:600px}}@media only screen{.tooltip.t-bg-gray{background-color:#ededed}}@media print{.tooltip{visibility:visible !important}}.tooltip__rte p{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.tooltip__rte p:not(:last-child){margin-bottom:10px}.tooltip__img{width:100px;margin-right:20px}.tooltip__title,.tooltip__rte .tooltip p{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin-bottom:20px}.tooltip__text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:10px}.tooltip__text+.tooltip__text:last-child{margin-bottom:0}.tooltip__white-space-unset{white-space:initial}.tooltip__text-special{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.tooltip-to-the-right{visibility:visible !important;position:absolute !important;left:6.5em !important;top:50% !important;z-index:500 !important;padding:0 10px;transform:translate(0, -50%) !important}.tooltip-to-the-right.tooltip-list{left:25px !important;white-space:normal;padding:10px;width:-moz-max-content;width:max-content}.tooltip-to-the-right.tooltip-list .payment-details{margin-bottom:6px}.teaser-product-category-tile__wrapper{display:flex;flex-direction:column;justify-content:space-between;width:100%;padding:0 0 20px;border-bottom:1px solid #b1b1b1}.teaser-product-category-tile__image-wrapper{position:relative;width:100%;margin-bottom:10px;padding-top:calc((3 / 4)*100%);overflow:hidden}.teaser-product-category-tile__image{position:absolute;top:0;left:0;width:100%;height:100%;transition:transform .2s}.teaser-product-category-tile__image img{height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.teaser-product-category-tile__link{display:inline-block;position:relative;cursor:pointer;margin-right:38px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-top:15px;margin-left:10px}.teaser-product-category-tile__link::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);top:100%;left:100%;transform:translate3d(1.0625rem, -100%, 0);height:1rem;transition:transform .2s;margin-top:-1px}.teaser-product-category-tile__link:hover::after{transform:translate3d(22px, -100%, 0)}.teaser-product-category-tile:hover .teaser-product-category-tile__image{transform:scale(1.1)}.teaser-standard-tile{cursor:pointer}.teaser-standard-tile .teaser-product-category-tile__image-wrapper{padding-top:calc((9 / 16)*100%)}.teaser-standard-tile .teaser-product-category-tile__link{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;height:auto;word-break:break-word}.toggle{--active-toggle-bg: #000;display:flex;align-items:center;padding:0}.ts-body .toggle{--active-toggle-bg: #F37A1F}.toggle__background{position:relative;height:20px;width:36px;border-radius:10px;background:#b1b1b1;flex-shrink:0;transition:background-color 250ms}.toggle.active .toggle__background{background:var(--active-toggle-bg)}.toggle__background::after{position:absolute;left:0;height:16px;width:16px;margin:2px;border-radius:50%;background:#fff;content:"";transition:left 250ms,transform 250ms}.toggle.active .toggle__background::after{left:calc(100% - 4px);transform:translateX(-100%)}.toggle label{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;margin-left:10px}.toggle input{display:none}.radio-btn-primary-part{--active-radio-btn-color: #D9480F;--radio-btn-border-color: #000}.radio-btn-primary-part button:focus{border-bottom:unset !important}.radio-btn-primary-part input{display:block;border:2px solid #fff;box-shadow:0 0 0 1px var(--radio-btn-border-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:50%;width:12px;height:12px;background-color:#fff;transition:all ease-in .2s}.radio-btn-primary-part input:focus{border-bottom:unset !important}.radio-btn-primary-part input:hover{cursor:pointer;box-shadow:0 0 0 1px var(--radio-btn-border-color);background-color:var(--active-radio-btn-color)}.radio-btn-primary-part input:checked{cursor:pointer;box-shadow:0 0 0 2px var(--radio-btn-border-color);background-color:var(--active-radio-btn-color);border:2px solid #fff !important}.checkbox{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:grid;grid-gap:.625rem;grid-template:"mark text" auto/1rem 1fr;position:relative;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}.checkbox.big{grid-gap:1.5625rem;grid-template-columns:2.8125rem 1fr}.checkbox__text{margin-bottom:-3px}.checkbox__mark{position:relative;box-sizing:border-box;background-color:#fff}.checkbox__mark::after{display:none;position:absolute;left:50%;top:50%;transform:translate(-50%, -50%)}.checkbox.checked .checkbox__mark::after{display:block}*:focus-visible+.checkbox__mark{outline:2px solid var(--outline-color);outline-offset:2px}.checkbox.standard .checkbox__mark{height:1rem;width:1rem;border:var(--check-box-border)}.ts-body .checkbox.standard .checkbox__mark{background-color:rgba(0,0,0,0)}.checkbox.big .checkbox__mark{height:2.8125rem;width:2.8125rem;border:1px solid #b1b1b1}.checkbox.small .checkbox__mark{height:1rem;width:1rem;border:1px solid #b1b1b1}.checkbox.checked.standard .checkbox__mark::after{content:"";background:url(stihl-styles/resources/icons/icon-check-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none)}.ts-body .checkbox.checked.standard .checkbox__mark::after{content:"";background:url(stihl-styles/resources/icons/icon-check-white-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert-white, none)}.checkbox.checked.big .checkbox__mark{background:#000;border:1px solid #000}.checkbox.checked.big .checkbox__mark::after{content:"";background:url(stihl-styles/resources/icons/icon-check-white-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert-white, none)}.checkbox.checked.small .checkbox__mark{background:#f37a1f;border:#f37a1f}.checkbox.checked.small .checkbox__mark::after{content:"";background:url(stihl-styles/resources/icons/icon-check-white-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert-white, none)}.checkbox.checked .checkbox__mark::after,.checkbox.hovering .checkbox__mark::after,.checkbox:hover .checkbox__mark::after{display:block}.checkbox.hovering .checkbox__mark::after,.checkbox:hover .checkbox__mark::after{content:"";background:url(stihl-styles/resources/icons/icon-check-grey-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none)}.checkbox--disabled{pointer-events:none}.checkbox .form__submit{align-self:unset}.checkbox-btn{display:inline-flex;align-items:center;min-width:17.5rem;min-height:4.5rem;padding:1.25rem .625rem;background:#ededed;box-sizing:border-box}@media only screen and (min-width: 48rem),print{.checkbox-btn{min-height:6.5rem;padding:1.25rem 1.875rem 1.25rem .625rem}}@media only screen and (max-width: 47.9375rem){.checkbox-btn__icon.truck{content:"";background:url(stihl-styles/resources/icons/icon-truck-64.svg) no-repeat center/contain;position:absolute;height:2rem;width:2rem;filter:var(--svg-filter-invert, none)}}@media only screen and (min-width: 48rem),print{.checkbox-btn__icon.truck{content:"";background:url(stihl-styles/resources/icons/icon-truck-64.svg) no-repeat center/contain;position:absolute;height:4rem;width:4rem;filter:var(--svg-filter-invert, none)}}@media only screen and (max-width: 47.9375rem){.checkbox-btn__icon.user{content:"";background:url(stihl-styles/resources/icons/icon-user-64.svg) no-repeat center/contain;position:absolute;height:2rem;width:2rem;filter:var(--svg-filter-invert, none)}}@media only screen and (min-width: 48rem),print{.checkbox-btn__icon.user{content:"";background:url(stihl-styles/resources/icons/icon-user-64.svg) no-repeat center/contain;position:absolute;height:4rem;width:4rem;filter:var(--svg-filter-invert, none)}}@media only screen and (max-width: 47.9375rem){.checkbox-btn__icon.registration-sheet{content:"";background:url(stihl-styles/resources/icons/icon-registration-sheet-64.svg) no-repeat center/contain;position:absolute;height:2rem;width:2rem;filter:var(--svg-filter-invert, none)}}@media only screen and (min-width: 48rem),print{.checkbox-btn__icon.registration-sheet{content:"";background:url(stihl-styles/resources/icons/icon-registration-sheet-64.svg) no-repeat center/contain;position:absolute;height:4rem;width:4rem;filter:var(--svg-filter-invert, none)}}.checkbox-btn__input{justify-content:space-between;flex-flow:row-reverse;flex:1;margin-left:2.625rem}@media only screen and (min-width: 48rem),print{.checkbox-btn__input{margin-left:5.25rem}}.checkbox-btn__input label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-left:0;margin-right:.625rem}@media only screen and (min-width: 48rem),print{.checkbox-btn__input label{margin-right:1.875rem}}.tag_filter:not(.tag_filter--dropdown){display:flex;justify-content:center;align-items:center;position:relative;box-sizing:border-box;overflow:hidden;cursor:pointer;height:2.1875rem;min-width:5rem;max-width:15.625rem;text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;position:relative;background:linear-gradient(to bottom, #EDEDED 50%, black 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;flex-direction:column;padding:0 1.25rem;margin:.3125rem;height:2.25rem}.tag_filter:not(.tag_filter--dropdown).active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.tag_filter:not(.tag_filter--dropdown):hover{background-position:0 -100%}}.tag_filter:not(.tag_filter--dropdown).active{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}@media(hover: hover)and (pointer: fine){.tag_filter:not(.tag_filter--dropdown):hover{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}}.tag_filter:not(.tag_filter--dropdown)::after{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;display:block;content:attr(hover-title);height:0;overflow:hidden;visibility:hidden}.tag_filter--dropdown{display:flex;justify-content:center;align-items:center;position:relative;box-sizing:border-box;overflow:hidden;cursor:pointer;height:2.1875rem;min-width:5rem;max-width:15.625rem;text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;padding:0 1.25rem;justify-content:left;width:100%;-webkit-hyphens:none;hyphens:none}.tag_filter--dropdown.active{--outline-color: #FFF;--outline-offset: -3px;text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;background:#000}@media only screen and (max-width: 47.9375rem){.tag_filter--dropdown{max-width:100%}}.tag_filter-2,.list-anchor--fixed .list-anchor__link{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;width:100%;height:2.1875rem;padding:0 20px}.page-filter .dropdown_list__item .tag_filter-2,.page-filter .dropdown_list__item .list-anchor--fixed .list-anchor__link,.list-anchor--fixed .page-filter .dropdown_list__item .list-anchor__link,.language-navigation-v2 .dropdown_list__item .tag_filter-2,.language-navigation-v2 .dropdown_list__item .list-anchor--fixed .list-anchor__link,.list-anchor--fixed .language-navigation-v2 .dropdown_list__item .list-anchor__link{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;text-transform:none}.page-filter .dropdown_list__item .tag_filter-2--active,.page-filter .dropdown_list__item .list-anchor--fixed .list-anchor__link--active,.list-anchor--fixed .page-filter .dropdown_list__item .list-anchor__link--active,.language-navigation-v2 .dropdown_list__item .tag_filter-2--active,.language-navigation-v2 .dropdown_list__item .list-anchor--fixed .list-anchor__link--active,.list-anchor--fixed .language-navigation-v2 .dropdown_list__item .list-anchor__link--active{color:#fff}.ts-body .page-filter .dropdown_list__item .tag_filter-2--active,.ts-body .page-filter .dropdown_list__item .list-anchor--fixed .list-anchor__link--active,.list-anchor--fixed .ts-body .page-filter .dropdown_list__item .list-anchor__link--active,.ts-body .language-navigation-v2 .dropdown_list__item .tag_filter-2--active,.ts-body .language-navigation-v2 .dropdown_list__item .list-anchor--fixed .list-anchor__link--active,.list-anchor--fixed .ts-body .language-navigation-v2 .dropdown_list__item .list-anchor__link--active{font-weight:700}.tag_filter-2--active,.list-anchor--fixed .list-anchor__link--active{color:#fff;background-color:var(--overlay-active)}.tag_filter-2--logo{display:flex;align-items:center;justify-content:space-between}.tag_filter-2__icon{width:2.5rem}.qty-select{display:grid;grid:"minus input plus" 1.875rem/1.875rem 1fr 1.875rem;width:100%;height:2rem;border:1px solid #b1b1b1;box-sizing:border-box}@media only screen and (min-width: 48rem),print{.qty-select{width:8.75rem}}.qty-select__highlight{background-color:#fee2cd}.qty-select__minus,.qty-select__plus{--outline-offset: 2px;border:1px solid var(--button-border);position:relative;background:linear-gradient(to bottom, black 50%, var(--color3) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:var(--button-border);height:2rem;width:2rem;color:#fff;margin:-1px}.qty-select__minus.active,.qty-select__plus.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.qty-select__minus:hover,.qty-select__plus:hover{background-position:0 -100%}}.qty-select__minus.active,.qty-select__plus.active{border-color:var(--button-border)}@media(hover: hover)and (pointer: fine){.qty-select__minus:hover,.qty-select__plus:hover{border-color:var(--button-border)}}.qty-select__minus:disabled,.qty-select__plus:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.qty-select__minus:hover,.qty-select__plus:hover{color:var(--color2)}.qty-select__minus::after,.qty-select__plus::after{z-index:1;position:relative}.qty-select__minus:disabled,.qty-select__plus:disabled{border-top:1px solid #b1b1b1;border-bottom:1px solid #b1b1b1}.qty-select__minus::after,.qty-select__plus::after{content:"";height:.875rem;width:.875rem;background:#fff}.qty-select__minus .btn-inner,.qty-select__plus .btn-inner{display:none}.qty-select__minus:disabled{border-left:1px solid #b1b1b1}.qty-select__minus::after{content:"";background:url(stihl-styles/resources/icons/icon-minus-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none);position:relative}.qty-select__plus:disabled{border-right:1px solid #b1b1b1}.qty-select__plus::after{content:"";background:url(stihl-styles/resources/icons/icon-plus-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none);position:relative}.qty-select__container{position:relative;align-items:center;gap:5px}.qty-select__container.minus::before{content:"-";position:absolute;left:-10px;top:0}.qty-select__input{--outline-offset: -1px;width:calc(100% - 2*var(--outline-offset)*-1);margin-left:calc(var(--outline-offset)*-1);text-align:center;height:1.875rem;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}.qty-select__input::-webkit-outer-spin-button,.qty-select__input::-webkit-inner-spin-button{-webkit-appearance:none;appearance:none;margin:0}.qty-select__input.border{border:1px solid #b1b1b1;padding:10px 0}.qty-select__input.border__disabled{color:#8d8d8d}.infobox{display:flex;flex-direction:column;padding:30px 10px;border:1px solid #b1b1b1}.infobox__headline{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;padding:0 10px;margin:0 0 30px}.loader{position:absolute;inset:0;background-color:#fff;opacity:.8;display:flex;align-items:center;z-index:100}.loader__fixed{position:fixed}.loader__animation{position:relative;margin:auto;width:64px}.loader--medium{width:32px}.loader--small{width:16px}.loader .circular{animation:rotate 2s linear infinite;height:100%;transform-origin:center center;width:100%}.loader .path{stroke-dasharray:1,200;stroke-dashoffset:0;animation:dash 1.5s ease-in-out infinite;stroke:#f37a1f}@keyframes rotate{100%{transform:rotate(360deg)}}@keyframes dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:150,200;stroke-dashoffset:-50px}100%{stroke-dasharray:150,200;stroke-dashoffset:-160px}}@keyframes dash-small{0%{stroke-dasharray:1,50;stroke-dashoffset:0}50%{stroke-dasharray:40,50;stroke-dashoffset:-10px}100%{stroke-dasharray:40,50;stroke-dashoffset:-45px}}.headline,.subtitle-headline{margin-left:10px;margin-top:47px}.headline__container,.subtitle-headline__container{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}@media only screen and (min-width: 48rem),print{.headline__container,.subtitle-headline__container{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.headline__container,.subtitle-headline__container{width:45.5rem}}@media print{.headline__container,.subtitle-headline__container{width:auto}}@media only screen and (min-width: 48rem)and (min-width: 64rem){.headline__container,.subtitle-headline__container{width:61.5rem}}.headline__wrapper,.subtitle-headline__wrapper{margin:0 10px;width:calc(100%/(2 / 2))}@media only screen and (min-width: 48rem),print{.headline__wrapper,.subtitle-headline__wrapper{width:calc(100%/(12 / 8))}}.headline__tssubtitle,.subtitle-headline__tssubtitle{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#f37a1f;font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;margin-bottom:0}.news-video-details-for-timbersports .headline{margin-top:16px}.news-video-details-for-timbersports .subtitle-headline{margin-top:56px}.orderreturnpdflinks .download{margin-bottom:10px}.download.section~.download{margin-top:0 !important}@media only screen and (max-width: 47.9375rem){.download__container{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}}@media only screen and (min-width: 48rem),print{.download__container{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.download__container{width:45.5rem}}@media print{.download__container{width:auto}}@media only screen and (min-width: 48rem)and (min-width: 64rem){.download__container{width:61.5rem}}.download:not(:last-of-type) .download__item{padding-bottom:30px;border-bottom:1px solid #dadada}.download__item{display:grid;grid-gap:10px;cursor:pointer}.download.download--button .download__item{grid-template:[row1-start] "label title" 32px [row1-end] [row2-start] ". info" auto [row2-end]/32px auto;width:230px;margin:10px 0;border-color:rgba(0,0,0,0)}.download.download--button .download__item:hover .download__icon::before{animation:bg-in 400ms}.download.download--list .download__item{grid-template:[row1-start] "title ." auto [row1-end] [row2-start] "info label" auto [row2-end]/auto auto;padding:24px 16px;animation:bg-in 4000ms}.ts-body .download.download--list .download__item{border-bottom:1px solid #f37a1f;transition:padding 400ms ease;padding-left:0}.ts-body .download.download--list .download__item:hover{padding-left:16px;background-color:#252525}.download.download--list .download__item:hover{background:#ededed}.ts-body .white-container .download.download--list .download__item:hover{background-color:#ededed}.download.download--thumbnail .download__item{grid-template:[row1-start] "thumbnail" [row1-end] [row2-start] "title" [row2-end] [row3-start] "info" [row3-end] [row4-start] "label" [row4-end];-moz-column-gap:40px;column-gap:40px}@media only screen and (min-width: 48rem),print{.download.download--thumbnail .download__item{grid-template:[row1-start] "thumbnail title ." [row1-end] [row2-start] "thumbnail info label" [row2-end]/140px auto auto;-moz-column-gap:40px;column-gap:40px}}.download.download--tile .download__item{grid-template:[row1-start] "thumbnail" [row1-end] [row1-start] "tile-content" [row1-end];gap:0}@media only screen and (min-width: 48rem),print{.download.download--tile .download__item{width:calc(100%/(12 / 4))}}.download.download--button .download__icon{--outline-offset: 2px;position:relative;background:linear-gradient(to bottom, var(--button-color-state-one) 50%, var(--color3) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:inline-flex;justify-content:center;align-items:center;position:relative;height:2rem;width:2rem;border-radius:50%;color:#fff}.download.download--button .download__icon .icon-svg{fill:#fff}.download.download--button .download__icon.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.download.download--button .download__icon:hover{background-position:0 -100%}.download.download--button .download__icon:hover .icon-svg{fill:#000}}.download.download--button .download__icon:hover{color:var(--color2)}.ts-body .download.download--button .download__icon:hover::after{--svg-filter-invert-white: invert(1);transition:.25s ease}.download.download--button .download__icon::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-down-2-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none)}.download.download--list .download__icon{width:16px;height:16px;margin-left:10px}.download.download--list .download__icon::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-down-2-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none)}.ts-body .download.download--list .download__icon::after{filter:invert(1)}.ts-body .white-container .download.download--list .download__icon::after{filter:unset}.download.download--tile .download__icon{width:16px;height:16px;margin-left:10px}.download.download--tile .download__icon::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-down-2-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none)}.download__title{grid-area:title}.download.download--button .download__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;align-self:center}.download.download--list .download__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.download.download--tile .download__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.download__thumbnail{grid-area:thumbnail;border:1px solid #dadada;background:#ededed;position:relative;padding-top:calc((9 / 16)*100%)}.download__thumbnail>picture,.download__thumbnail>a,.download__thumbnail>a>picture{position:absolute;inset:0 0 0 0}.download__thumbnail>picture>img,.download__thumbnail>a>img,.download__thumbnail>a>picture>img{width:100%;height:100%;-o-object-fit:contain;object-fit:contain}@media only screen and (max-width: 47.9375rem){.download.download--list .download__thumbnail{margin:0 -15px 10px}}.download__info{grid-area:info;display:grid;gap:10px}.download__info p:not(.download__size){text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.download__tile-content{grid-area:tile-content;padding:24px;border:1px solid #dadada;border-top:none;display:grid;grid-template-areas:"title" "info" "label";gap:8px}.download__size{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.download__label{grid-area:label;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.download.download--list .download__label{place-self:flex-end flex-end;padding-right:25px}@media only screen and (max-width: 47.9375rem){.download.download--thumbnail .download__label{margin-top:6px;justify-self:flex-start}}.download.download--tile .download__label{margin-top:16px}.download__carrier-title{margin-top:25px}.download__pickUp{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow);margin-top:15px;display:block;width:-moz-max-content;width:max-content}.download__hidden{display:none}.download__text,.download__text p:first-child{display:inline}.ratio-image{position:relative;padding-top:calc((3 / 4)*100%)}.ratio-image picture{position:absolute;inset:0}.ratio-image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.notification{display:flex;padding:30px 0;background-color:#ededed;margin-bottom:30px}.notification__icon{margin:0 20px}.notification__section{width:calc(100%/(12 / 12))}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.notification__section{width:calc(100%/(12 / 6))}}.notification__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;padding-bottom:15px}@media only screen and (min-width: 64rem){.notification__title{padding-bottom:10px}}.notification__desc{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;padding-right:20px}.order-information__link{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow)}.errorbanner .m-stage{margin-bottom:0;height:calc(100vh - 102px);max-height:1000px}.errorpage.hideHeader .errorbanner .m-stage{height:100vh}.errorbanner .hdl-c-2::after{width:0;height:0;margin-top:0}.errorbanner .headline{margin-left:0;margin-top:0;padding:0;width:100%}.errorbanner .headline .headline__wrapper{margin-left:0;width:100%;text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25}@media only screen and (min-width: 48rem),print{.errorbanner .headline .headline__wrapper{font-size:1.625rem;line-height:1.2}}.errorbanner .headline .headline__wrapper::after{display:block;content:"";background-color:var(--color1)}.errorbanner .headline .headline__wrapper::after{width:27px;height:5px;margin-top:8px}@media only screen and (min-width: 48rem),print{.errorbanner .headline .headline__wrapper::after{width:20px;height:4px;margin-top:11px}}.errorbanner .link{margin-top:8px}.errorpage .footerwrapper{margin-top:0}.errorpage.hideHeader{padding-top:0}.notification-list{display:flex;justify-content:center;align-items:center;width:100%;min-height:2.8125rem;padding:15px 20px;box-sizing:border-box}.notification-list:not(:last-child){margin-bottom:10px}.notification-list.default{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;background:#ededed}.notification-list.warning{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;background:#f37a1f}.notification-list.cheering{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#46762d;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;font-weight:bold;background:#E5F0DB}.notification-benefits{display:flex;box-sizing:border-box;background:#ededed;justify-content:center;margin-bottom:30px;padding:20px 10px;flex-direction:column}@media only screen and (min-width: 48rem),print{.notification-benefits{min-height:3.75rem;padding:14px 10px;align-items:center;flex-direction:row}}.notification-benefits--info{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:flex;align-items:center}@media only screen and (max-width: 47.9375rem){.notification-benefits--info:not(:first-child){margin-top:20px}}@media only screen and (min-width: 48rem),print{.notification-benefits--info{margin:0 15px}}.notification-benefits--icon{display:flex;margin-right:10px}.list-price{position:relative}.list-price.btn-selection,.list-price.infobox-product{display:flex}.list-price.tile-product:has(.list-price__unit){margin-bottom:-0.75rem}.list-price.infobox-product{flex-flow:row wrap}.list-price.infobox-product .list-price__rrp+.list-price__unit::before{content:"/";margin-right:10px}.list-price.btn-selection{flex-flow:column;align-items:flex-end}.list-price__buy{display:flex;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.list-price.infobox-product .list-price__buy{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25;width:100%}@media only screen and (min-width: 48rem),print{.list-price.infobox-product .list-price__buy{font-size:1.625rem;line-height:1.2}}.list-shopping-cart__summery .list-price__buy{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2}.tile-hero .list-price__buy{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2}.list-price.rrp-price .list-price__buy{color:#f37a1f}.list-price__buy-from{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:block}.list-price__buy-from-postfix{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:flex;align-items:center}.list-price__rrp{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.list-price.infobox-product .list-price__rrp{margin:5px 10px 0 0}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.list-price.list-product .list-price__rrp{margin-left:10px}}@media only screen and (min-width: 64rem){.list-price.btn-selection .list-price__rrp{margin:unset}.list-price.infobox-product .list-price__rrp{margin:5px 10px 0 0}}.list-price__rrp--promotions{width:100%}.list-price__no-discount{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;text-align:right}.list-price__discount{padding-left:10px}.list-price__disclaimer{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.list-price__disclaimer-confirmation{padding-left:10px;padding-top:10px}@media only screen and (max-width: 33.0625rem){.list-price__disclaimer-confirmation{padding-bottom:30px}}.list-price__disclaimer-infobox{padding-top:20px}@media(max-width: 63.9375rem){.list-price__disclaimer-infobox{padding-left:10px;padding-right:10px}}@media only screen and (min-width: 48rem),print{.list-price__disclaimer-picker{padding-top:20px;padding-left:51%}}@media only screen and (max-width: 33.0625rem){.list-price__disclaimer-picker{padding-left:10px;padding-right:10px}}.list-price__disclaimer-infobox-overlay{padding-top:10px}.list-price__disclaimer-cart{padding-left:10px;padding-top:20px}.list-price__disclaimer-campaign{padding:0 20px}@media only screen and (min-width: 48rem),print{.list-price__disclaimer-campaign{padding:5px 0 0;text-align:right}}.list-price__disclaimer-cartline{border-top:1px solid #b1b1b1}.list-price__disclaimer-checkout{padding-top:10px;padding-left:10px}.list-price__disclaimer-grid{padding-right:10px;padding-left:10px}.list-price__disclaimer-product-tile{display:flex;padding-top:16px}.list-price__disclaimer-column-control{padding-top:10px}@media only screen and (min-width: 48rem),print{.list-price__disclaimer-column-control{text-align:right}}.list-price__disclaimer-campaign .list-price__disclaimer,.list-price__disclaimer-column-control .list-price__disclaimer{display:inline-block}.list-price__unit{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;position:absolute;top:100%;left:0}.list-price.infobox-product .list-price__unit{position:unset;margin-top:5px}.list-price.tile-product .list-price__unit{display:block;position:unset;line-height:1}.list-price__promotion_applied>span{color:#f37a1f}.language-picker .overlay{width:100vw;height:100vh;position:fixed;top:0;left:0;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:ease opacity .3s}.language-picker .overlay .black-overlay{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:absolute}.language-picker .overlay.active{opacity:1;pointer-events:auto}.language-picker .modal{width:820px;max-width:100vw;height:720px;max-height:100vh;background:#fff;position:relative;text-transform:none}@media only screen and (width <= 768px){.language-picker .modal{width:100vw;height:100vh}}.language-picker .modal-close{width:45px;height:45px;background-color:#000;display:flex;align-items:center;justify-content:center;color:#fff;position:absolute;top:0;right:0;cursor:pointer}.language-picker .modal-close::before{display:inline-block;content:" ";background-image:url(stihl-styles/resources/icons/icon-cross-white-16.svg);background-size:16px 16px;background-position:0;height:16px;width:16px;min-width:16px}.language-picker .no-accordion .modal-content--dropdown-header{display:none}.language-picker .no-accordion .modal-content--dropdown-container{height:auto;max-height:none;border-bottom:none;margin-bottom:5px}.language-picker .no-accordion .modal-content--dropdown-list{margin:0}.language-picker .modal-content{width:100%;box-sizing:border-box;margin-top:80px;height:calc(100% - 125px);padding:0 95px;overflow-y:scroll}@media only screen and (width <= 768px){.language-picker .modal-content{padding:0 20px}}.language-picker .modal-content .hdl-3{margin-top:0}.language-picker .modal-content::-webkit-scrollbar{width:15px;background-color:rgba(255,255,255,0)}.language-picker .modal-content::-webkit-scrollbar-track,.language-picker .modal-content::-webkit-scrollbar-thumb{border:5px solid rgba(255,255,255,0);background-clip:padding-box}.language-picker .modal-content::-webkit-scrollbar-track{background-color:#ededed}.language-picker .modal-content::-webkit-scrollbar-thumb{background-color:#000}.language-picker .modal-content--dropdown-container{border-bottom:1px solid #b1b1b1;max-height:3.125rem;overflow:hidden;transition:ease border-bottom .3s,ease max-height .3s}.language-picker .modal-content--dropdown-container:last-of-type{border-bottom:1px solid rgba(177,177,177,0)}.language-picker .modal-content--dropdown-container.active{max-height:100vh;border-bottom:1px solid rgba(177,177,177,0)}.language-picker .modal-content--dropdown-container.active .modal-content--dropdown-header::after{transform:rotate(180deg)}.language-picker .modal-content--dropdown-container h5.hdl-5{margin:0 0 0 20px}.language-picker .modal-content--dropdown-header{display:flex;justify-content:space-between;align-items:center;height:50px;cursor:pointer}.language-picker .modal-content--dropdown-header::after{display:block;content:" ";background-image:url(stihl-styles/resources/icons/icon-arrow-down-16.svg);background-size:16px 16px;height:16px;width:16px;margin-right:20px;transition:ease transform .3s}.language-picker .modal-content--dropdown-list{-moz-column-count:2;column-count:2;-moz-column-gap:0;column-gap:0;margin:15px 0 29px}@media only screen and (width <= 768px){.language-picker .modal-content--dropdown-list{-moz-column-count:1;column-count:1}}.language-picker .modal-content--dropdown-item{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem;margin:0;padding:15px 0;cursor:pointer;box-sizing:border-box;page-break-inside:avoid;-moz-column-break-inside:avoid;break-inside:avoid-column;display:flex}@media only screen and (min-width: 48rem),print{.language-picker .modal-content--dropdown-item{font-size:.9375rem}}.language-picker .modal-content--dropdown-item::before{display:inline-block;content:" ";background-image:url(stihl-styles/resources/icons/icon-check-16.svg);background-size:16px 19px;background-position:0;height:19px;width:16px;min-width:16px;transition:ease transform .3s;opacity:.2;margin-right:20px}.language-picker .modal-content--dropdown-item:hover,.language-picker .modal-content--dropdown-item.active{font-weight:700}.language-picker .modal-content--dropdown-item:hover::before,.language-picker .modal-content--dropdown-item.active::before{opacity:1}.badge{--badge-width: 3.75rem;--badge-padding: 0.3125rem;--badge-to-bg-space: 1.5rem;--text-color: #fff;overflow:hidden;width:var(--badge-width);height:var(--badge-width);position:relative;display:flex}@media only screen and (min-width: 48rem),print{.badge{--badge-to-bg-space: 2rem;--badge-width: 8.75rem;--badge-padding: 0.625rem}}.badge--white{--text-color: #000}.badge svg{height:100%;width:100%;position:absolute;inset:0}.badge__inner{position:relative;z-index:1;padding:var(--badge-padding);border-radius:50%;overflow:hidden;width:calc(100% - var(--badge-padding)/2);display:flex;align-items:center;justify-content:center;flex-direction:column}.badge__text,.badge__inner>p{text-align:center;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;color:var(--text-color);margin:0;max-width:100%;-webkit-line-clamp:3;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}@media only screen and (max-width: 47.9375rem){.badge__text,.badge__inner>p{font-size:1.5625rem}.badge--responsive-font .badge__text,.badge--responsive-font .badge__inner>p{font-size:.6875rem}}@media only screen and (min-width: 48rem),print{.badge__text,.badge__inner>p{font-size:1.5625rem}}@media only screen and (max-width: 47.9375rem){.badge--responsive-font .badge__text--size-1,.badge--responsive-font .badge__inner>p--size-1{font-size:.9375rem}}@media only screen and (min-width: 48rem),print{.badge__text--size-1,.badge__inner>p--size-1{font-size:2.1875rem}}@media only screen and (max-width: 47.9375rem){.badge--responsive-font .badge__text--size-2,.badge--responsive-font .badge__inner>p--size-2{font-size:1.1875rem}}@media only screen and (min-width: 48rem),print{.badge__text--size-2,.badge__inner>p--size-2{font-size:2.8125rem}}@media only screen and (max-width: 47.9375rem){.badge--responsive-font .badge__text--size-3,.badge--responsive-font .badge__inner>p--size-3{font-size:1.3125rem}}@media only screen and (min-width: 48rem),print{.badge__text--size-3,.badge__inner>p--size-3{font-size:3.125rem}}.badge--position{position:absolute;z-index:1}.badge--top{top:var(--badge-to-bg-space)}.badge--left{left:var(--badge-to-bg-space)}.badge--bottom{bottom:var(--badge-to-bg-space)}.badge--right{right:var(--badge-to-bg-space)}.badge--center{top:50%;left:50%;margin-top:calc(-1*var(--badge-width)/2);margin-left:calc(-1*var(--badge-width)/2)}.state-badge{width:-moz-max-content;width:max-content;height:-moz-max-content;height:max-content;display:flex;align-items:center;gap:8px;padding:4px 8px;max-width:calc(100% - 15px);text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.state-badge+.state-badge{margin-top:.5rem}.state-badge__grid-wrapper{margin-top:auto}.state-badge__label{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;--live-icon-space: 16px;max-width:calc(100vw - 40px - 64px - 16px - 16px + var(--live-icon-space) - 2px)}.state-badge--live .state-badge__label{--live-icon-space: -0.001px}.swiper .state-badge__label{max-width:calc(75vw - 40px - 64px - 8px + var(--live-icon-space))}@media(min-width: 33.125rem){.column-size-2 .state-badge__label,.column-size-3 .state-badge__label{max-width:calc((100vw - 60px)/2 - 64px - 16px - 16px + var(--live-icon-space))}.column-size-2 .swiper .state-badge__label,.column-size-3 .swiper .state-badge__label{max-width:calc(40vw - 40px - 64px - 8px + var(--live-icon-space))}}@media only screen and (min-width: 48rem),print{.state-badge__label{max-width:calc(136px + var(--live-icon-space))}.column-size-3 .state-badge__label{max-width:calc(133.3333333333px + var(--live-icon-space))}.column-size-2 .state-badge__label{max-width:calc(258px + var(--live-icon-space))}}@media only screen and (min-width: 64rem){.state-badge__label{max-width:calc(221.3333333333px + var(--live-icon-space))}.column-size-4 .state-badge__label{max-width:calc(135px + var(--live-icon-space))}.column-size-3 .state-badge__label{max-width:calc(218.6666666667px + var(--live-icon-space))}}.state-badge--grid{margin-top:auto}.state-badge--gray-bg,.state-badge--orange-bg{color:#fff}.state-badge--gray-bg{background:#3e3e3e}.state-badge--orange-bg{background:#f37a1f}.state-badge--outline,.state-badge--orange-font{color:#f37a1f}.state-badge--outline{border:1px solid #f37a1f}.state-badge--orange-font{padding:4px 0}.state-badge__live-icon{border-radius:50%;background:#fff;width:8px;height:8px}.radiobutton{display:flex;align-items:center}.radiobutton__input{-webkit-appearance:none;-moz-appearance:none;appearance:none}.radiobutton__input:focus-visible+svg{background:#dadada;border-radius:50%}.radiobutton__icon{margin-right:10px;flex-shrink:0}.radiobutton__text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.radiobutton__subtext{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.kitComponent-accordion{grid-area:acco;margin-bottom:20px;width:520px}.kitComponent-accordion .acco-standard{margin:0}.kitComponent-accordion .acco{border:none}.kitComponent-accordion .acco__tab{padding:0;width:170px}.kitComponent-accordion .acco__tab-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.kitComponent-accordion .acco__tab-icon-arrow-down::after{position:static;margin-left:10px;transform:none}.kitComponent-accordion .acco--open .acco__tab-icon-arrow-down::after{transform:rotate(180deg)}.kitComponent-accordion .acco__content{flex-direction:row}.language-navigation__dropdown{display:inline-block;position:relative}.language-navigation__dropdown .dropdown_list__btn{text-transform:uppercase}.language-navigation__list{position:absolute;z-index:1}@media only screen and (min-width: 48rem),print{.language-navigation__list{white-space:nowrap;min-width:calc(100% - 30px)}.language-navigation-v2 .language-navigation__list{min-width:100%}.language-navigation__list--up{bottom:100%}.language-navigation__list--hidden{visibility:hidden}}.m_footer-corp-bottom-extra .language-navigation{margin-bottom:20px}.m_footer-corp-bottom-co .language-navigation{margin-top:15px}.m_footer-corp-links .language-navigation{margin-top:30px;padding:0 10px}@media only screen and (min-width: 48rem),print{.m_footer-corp-links .language-navigation{margin-top:10px;padding:0 20px}}.language-navigation-v2{height:100%}.language-navigation-v2 .language-navigation{height:100%}@media only screen and (max-width: 47.9375rem){.language-navigation-v2 .language-navigation__dropdown{width:100%;height:100%;display:flex;justify-content:center}}.ts-body .language-navigation-v2 .language-navigation__dropdown .dropdown_list{padding:8px 0;gap:4px}.language-navigation-v2 .language-navigation__dropdown .dropdown_list__btn{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#000;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-right:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;z-index:1;height:2.875rem;padding-top:.125rem}.ts-body .language-navigation-v2 .language-navigation__dropdown .dropdown_list__btn{height:3.125rem}@media only screen and (min-width: 48rem),print{.ts-body .language-navigation-v2 .language-navigation__dropdown .dropdown_list__btn{height:3rem}}.ts-body .language-navigation-v2 .language-navigation__dropdown .dropdown_list__btn.active{color:#fff}.ts-body .language-navigation-v2 .language-navigation__dropdown .dropdown_list__btn:not(.active)::after,.ts-body .language-navigation-v2 .language-navigation__dropdown .dropdown_list__btn:not(.active)::before{--svg-filter-invert: none}.language-navigation-v2 .language-navigation__dropdown .dropdown_list__btn--icon-globe::before{left:8px}@media only screen and (max-width: 47.9375rem){.language-navigation-v2 .language-navigation__dropdown .dropdown_list__btn{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#000;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;width:100%;height:100%;display:flex;justify-content:center;padding-top:1.125rem}.language-navigation-v2 .language-navigation__dropdown .dropdown_list__btn--icon-globe::before{position:absolute;top:.5625rem;left:calc(50% - 0.375rem);width:.75rem;height:.75rem}.language-navigation-v2 .language-navigation__dropdown .dropdown_list__btn::after{top:calc(50% + 0.4375rem);left:calc(50% + 2rem)}.language-navigation-v2 .language-navigation__dropdown .dropdown_list__btn--icon{padding-left:0}}@media only screen and (min-width: 48rem),print{.language-navigation-v2 .language-navigation__dropdown .dropdown_list__btn::before{top:calc(50% - 0.625rem)}}.autocomplete{border:1px solid #b1b1b1;background-color:#fff}.autocomplete__option{transition:all .2s;outline:1px solid rgba(0,0,0,0);padding:5px 0}.autocomplete__option--focused{outline-color:#b1b1b1;background:#ededed}.autocomplete__option-btn{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;padding:0 20px}.autocomplete__place{color:#b1b1b1;-webkit-hyphens:auto;hyphens:auto}.autocomplete__highlight{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;font-weight:bold}.pager__dots circle{fill:var(--button-color-state-zero)}.pager__dots>.pager__dot--active{fill:var(--button-color-state-one)}.pagination{display:flex;flex-direction:column;align-items:center}.pagination button{width:-moz-max-content;width:max-content}.icon-information{display:flex;flex-direction:row;gap:16px}.icon-information__icon--static{margin-top:3px}.icon-information__icon--static-location{background-image:url(stihl-styles/resources/icons/icon-job-location-black-32.svg);background-position:center;width:auto;background-repeat:no-repeat;height:2rem;background-size:2rem;filter:var(--svg-filter-invert, none);min-width:32px}.icon-information__icon--static-contract-type{background-image:url(stihl-styles/resources/icons/icon-job-contract-type-black-32.svg);background-position:center;width:auto;background-repeat:no-repeat;height:2rem;background-size:2rem;filter:var(--svg-filter-invert, none);min-width:32px}.icon-information__icon--static-department{background-image:url(stihl-styles/resources/icons/icon-job-department-black-32.svg);background-position:center;width:auto;background-repeat:no-repeat;height:2rem;background-size:2rem;filter:var(--svg-filter-invert, none);min-width:32px}.icon-information__icon--static-working-times{background-image:url(stihl-styles/resources/icons/icon-job-working-times-black-32.svg);background-position:center;width:auto;background-repeat:no-repeat;height:2rem;background-size:2rem;filter:var(--svg-filter-invert, none);min-width:32px}.icon-information__icon--static-level{background-image:url(stihl-styles/resources/icons/icon-job-level-black-32.svg);background-position:center;width:auto;background-repeat:no-repeat;height:2rem;background-size:2rem;filter:var(--svg-filter-invert, none);min-width:32px}.icon-information__icon--static-entry-date{background-image:url(stihl-styles/resources/icons/icon-job-entry-date-black-32.svg);background-position:center;width:auto;background-repeat:no-repeat;height:2rem;background-size:2rem;filter:var(--svg-filter-invert, none);min-width:32px}.icon-information__icon--dynamic{width:32px;height:32px;-o-object-fit:cover;object-fit:cover;margin-top:3px}.icon-information__text p{-webkit-hyphens:auto;hyphens:auto}.product-image{position:relative;padding-top:calc((var(--product-image-ratio-y, 3) / var(--product-image-ratio-x, 4))*100%);width:100%}.product-image__picture{display:flex;position:absolute;inset:0}.product-image__picture>img{width:100%;height:100%;-o-object-fit:scale-down;object-fit:scale-down}.product-image__icon-wrapper{position:absolute;top:0;left:0;display:flex;flex-wrap:wrap;gap:.625rem;width:100%}.product-image--product-details .product-image__icon-wrapper{margin-top:.625rem;gap:1.25rem}.product-image__icon{max-width:33%;height:1.375rem}@media only screen and (min-width: 48rem),print{.product-image--product-details .product-image__icon{height:2rem}}.product-image__icon img{height:auto;-o-object-fit:contain;object-fit:contain}.image-gallery-slide .product-image__icon img{width:auto}.product-image--gallery-media{padding-top:70%}.privacy-policy{--bg-color: linear-gradient(rgb(0 0 0 / 80%), rgb(0 0 0 / 80%));container:privacy-policy-container/inline-size;background:var(--bg-color),var(--privacy-policy-thumbnail) center;background-size:cover;z-index:1}.privacy-policy *{box-sizing:border-box}@container (min-width: 48rem){.privacy-policy{--bg-color: linear-gradient(rgb(0 0 0 / 30%), rgb(0 0 0 / 30%))}}.privacy-policy__youtube-icon{position:absolute;left:50%;top:50%;width:68px;height:48px;margin-left:-34px;margin-top:-24px;z-index:0;cursor:default;opacity:.3}.privacy-policy__container{height:100%;display:flex;justify-content:center;align-items:center;padding:.9375rem;--outline-color: #fff}@container privacy-policy-container (min-width: 33.125rem){.privacy-policy__container{padding:0 15%}}@container privacy-policy-container (min-width: 48rem){.privacy-policy__container{height:auto;padding:2rem 2.5rem;background:#000}}.privacy-policy__content{max-width:64rem;display:flex;flex-direction:column}@container privacy-policy-container (min-width: 48rem){.privacy-policy__content{flex-direction:row}}.privacy-policy__text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.privacy-policy__text p,.privacy-policy__text a{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.privacy-policy__actions{width:100%;padding-top:1.25rem;display:grid;gap:.625rem}@container privacy-policy-container (min-width: 48rem){.privacy-policy__actions{width:auto;align-self:flex-start;padding:0 0 0 1.25rem}}.privacy-policy__button button:not(.full){-moz-column-gap:.625rem;column-gap:.625rem;padding:0 .9375rem;height:2rem}@container privacy-policy-container (min-width: 48rem){.privacy-policy__button button:not(.full){height:2.5rem;justify-self:end}}@container privacy-policy-container (max-width: 47.9375rem){.privacy-policy__button button:not(.full){min-width:0;width:auto}}.privacy-policy__button button:not(.full)>svg{height:.75rem}.privacy-policy__checkbox{align-items:center;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.checkmark-toggle{display:flex;align-items:center}.checkmark-toggle__background{position:relative;height:20px;width:36px;border-radius:11px;border:1px solid #252525;background:#fff;flex-shrink:0;transition:background-color 250ms}.checkmark-toggle.active .checkmark-toggle__background{background:#e9640c}.checkmark-toggle__circle{position:absolute;background:#505050;border-radius:50%;left:0;height:16px;width:16px;margin:2px;transition:left 250ms,transform 250ms;display:flex;align-items:center}.checkmark-toggle.active .checkmark-toggle__circle{background:#fff;left:calc(100% - 4px);transform:translateX(-100%)}.checkmark-toggle.active .checkmark-toggle__circle::after{content:"";height:12px;width:12px;margin:auto;background-color:#e9640c;-webkit-mask:url(stihl-styles/resources/icons/icon-check-16.svg) no-repeat center/contain;mask:url(stihl-styles/resources/icons/icon-check-16.svg) no-repeat center/contain}.list-shopping-cart__tooltip{width:auto;margin:0 !important;z-index:10;word-break:break-all}.list-shopping-cart:not(:last-child),.list-confirmation:not(:last-child){margin-bottom:10px;border-bottom:1px solid #b1b1b1}.list-shopping-cart__wrapper{overflow:hidden;margin:calc((var(--outline-width) + var(--outline-offset))*-1);padding:calc(var(--outline-width) + var(--outline-offset))}.list-shopping-cart__wrapper-inner{margin-bottom:50px}@media only screen and (min-width: 48rem),print{.list-shopping-cart__wrapper-inner{margin-bottom:60px}}@media only screen and (min-width: 64rem){.list-shopping-cart__wrapper-inner-container{display:flex;justify-content:space-between}}.list-shopping-cart.lite,.lite.list-confirmation{margin-bottom:10px;border-bottom:1px solid #b1b1b1}.list-shopping-cart:first-child.lite,.list-confirmation:first-child.lite{border-top:1px solid #b1b1b1}.list-shopping-cart:first-child.lite__none,.list-confirmation:first-child.lite__none{border-top:none}.list-shopping-cart__wrapper.lite{margin-top:45px}.list-shopping-cart__product-slim{display:grid;position:relative;box-sizing:border-box;padding-bottom:40px;padding-top:40px;grid-template-columns:repeat(13, 1fr);grid-template-areas:"number info info info qty qty stock stock prices prices prices summary summary" ". info info info pieces pieces eta eta prices prices prices . ." ". info info info . . . . prices prices prices . ." ". info info info . . . . . . . . ." ". promotion-bar promotion-bar promotion-bar promotion-bar promotion-bar promotion-bar promotion-bar promotion-bar promotion-bar promotion-bar promotion-bar promotion-bar" ". message message message message message message message message message message message message" ". bottom-bar bottom-bar bottom-bar bottom-bar bottom-bar bottom-bar bottom-bar . . . . ." ". entry-comment entry-comment entry-comment entry-comment entry-comment entry-comment . . . . . .";grid-column-gap:20px}.list-shopping-cart__product-slim.free-gift{grid-template-areas:"number info info info qty pieces stock stock prices prices prices summary summary" ". info info info qty pieces eta eta prices prices prices . ." ". info info info . . . . prices prices prices . ." ". info info info . . . . . . . . ." ". message message message message message message message message message message message message" ". bottom-bar bottom-bar bottom-bar bottom-bar bottom-bar bottom-bar bottom-bar . . . . ." ". entry-comment entry-comment entry-comment entry-comment entry-comment entry-comment . . . . . ."}.list-shopping-cart__product-slim--open .list-shopping-cart__product-slim__title::after{transform:rotate(180deg)}.list-shopping-cart__product-slim__content{grid-area:entry-comment;display:flex;flex-direction:column-reverse;margin-top:-2px;overflow:hidden;z-index:0;transition:height 250ms}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.list-shopping-cart__product-slim{padding-bottom:10px;padding-top:30px;grid-template-columns:50px 60px 50px 80px 150px 100px 50px auto;grid-template-areas:"number info info info prices prices summary summary" ". info info info prices prices summary summary" ". qty qty pieces prices prices summary summary" ". stock stock . prices prices summary summary" ". eta eta . prices prices summary summary" ". message message message message . . ." ". bottom-bar bottom-bar bottom-bar bottom-bar . . ." ". entry-comment entry-comment entry-comment entry-comment . . ."}}@media only screen and (max-width: 47.9375rem){.list-shopping-cart__product-slim{padding-bottom:20px;padding-top:20px;grid-template-columns:repeat(9, 1fr);grid-template-areas:"number info info info info info info info info" ". info info info info info info info info" ". qty qty qty pieces . . . ." ". stock stock stock stock . . . ." ". eta eta eta eta eta eta eta eta" ". prices prices prices prices prices prices prices prices" ". summary summary summary summary summary summary summary summary" ". message message message message message message message message" ". bottom-bar bottom-bar bottom-bar bottom-bar bottom-bar bottom-bar bottom-bar bottom-bar" ". entry-comment entry-comment entry-comment entry-comment entry-comment entry-comment entry-comment entry-comment"}}.list-shopping-cart__product-overlay{display:grid;position:relative;box-sizing:border-box;padding-bottom:12px;padding-top:20px;grid-template-columns:repeat(11, 1fr);grid-template-areas:"img img info info info qty pieces prices prices prices prices" ". . info info info . . prices prices prices prices" ". . info info info . . prices prices prices prices" "message message message message message message message message message message message" ". . bottom-bar bottom-bar bottom-bar bottom-bar bottom-bar . . . ." ". . entry-comment entry-comment entry-comment entry-comment . . . . .";grid-column-gap:20px}.list-shopping-cart__product-checkout{display:grid;position:relative;box-sizing:border-box;padding-bottom:40px;padding-top:40px;grid-template-columns:repeat(13, 1fr);grid-template-areas:"number info info info qty pieces eta eta prices prices prices summary summary" ". info info info . . stock stock prices prices prices . ." ". entry-comment entry-comment entry-comment entry-comment entry-comment entry-comment . prices prices prices . ." ". message message message message message message message message message message message message" ". promotion-bar promotion-bar promotion-bar promotion-bar promotion-bar promotion-bar promotion-bar promotion-bar promotion-bar promotion-bar promotion-bar promotion-bar" ". . . . . . . . . . . . .";grid-column-gap:20px}.list-shopping-cart__quantity.lite.read-only{place-self:flex-start center;margin-top:6px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.list-shopping-cart__quantity.lite{place-self:flex-start center}@media(max-width: 63.9375rem){.list-shopping-cart__quantity.lite{justify-self:flex-start;max-width:130px}}.list-shopping-cart__quantity.lite-overlay{place-self:flex-start flex-end;margin-top:8px}.list-shopping-cart__remove.lite{grid-area:delete}.list-shopping-cart__ETA{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;grid-area:eta;place-self:flex-start center;margin-top:8px}@media(max-width: 63.9375rem){.list-shopping-cart__ETA{justify-self:flex-start;margin-top:unset;margin-bottom:32px}}@media only screen and (max-width: 47.9375rem){.list-shopping-cart__ETA{margin-bottom:20px;display:flex;flex-direction:row;width:100%}.list-shopping-cart__ETA--message{flex:50%}.list-shopping-cart__ETA--value{flex:50%}}.list-shopping-cart__ETA-inline{display:flex;gap:1em}.list-shopping-cart__pieces{grid-area:pieces;place-self:flex-start center;margin-top:6px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;width:100%;text-align:center}.list-shopping-cart__stock-box.lite.product-status{border:unset;padding:unset;justify-self:center}@media(max-width: 63.9375rem){.list-shopping-cart__stock-box.lite.product-status{justify-self:flex-start;margin-bottom:20px}}@media only screen and (max-width: 47.9375rem){.list-shopping-cart__stock-box.lite.product-status{margin-top:10px}}.list-shopping-cart__stock-box.lite.product-status-no-margin-top{margin-top:0}.list-shopping-cart__detail.lite{margin-top:8px;justify-content:unset}@media(max-width: 63.9375rem){.list-shopping-cart__detail.lite{margin-bottom:20px}}.list-shopping-cart__detail-category.lite{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-top:15px}.list-shopping-cart__messages{grid-area:message;display:flex;margin-bottom:10px}.list-shopping-cart__messages .tooltip{margin:0}.list-shopping-cart__messages.grid-layout{width:570px;padding:16px}.list-shopping-cart__summary.lite{grid-area:summary;display:flex;justify-content:flex-end;align-self:baseline;margin-top:8px}.list-shopping-cart__summary.lite .list-price{display:flex;flex-flow:column-reverse;margin-top:auto}.list-shopping-cart__entry-number{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;grid-area:number;display:flex;justify-content:left;align-self:flex-start;margin-top:8px}.list-shopping-cart__prices-box{grid-area:prices;align-self:flex-start;margin-top:8px;margin-left:10px}@media(max-width: 63.9375rem){.list-shopping-cart__prices-box{margin-left:0}}.list-shopping-cart__prices-box-ul{display:grid}.list-shopping-cart__prices-box-li{display:flex}.list-shopping-cart__prices-box-li:not(:last-child){margin-bottom:13px}.list-shopping-cart__prices-box-li-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;flex:50%;justify-self:flex-start;text-align:flex-start}.list-shopping-cart__prices-box-li-value{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;flex:50%;justify-self:flex-end;text-align:flex-end}.list-shopping-cart__prices-box-li-strong-value{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;flex:50%;justify-self:flex-end;text-align:flex-end}.list-shopping-cart__bottom-bar.lite{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;grid-area:bottom-bar;display:flex;margin-top:10px}@media only screen and (max-width: 47.9375rem){.list-shopping-cart__bottom-bar.lite{margin-top:30px;flex-wrap:wrap;justify-content:space-between}.list-shopping-cart__bottom-bar.lite>:not(:last-child){margin-right:10px}}.list-shopping-cart__bottom-bar-items{margin-right:20px;cursor:pointer;min-width:150px}.list-shopping-cart__bottom-bar-items>svg{padding-right:10px}@media only screen and (max-width: 47.9375rem){.list-shopping-cart__bottom-bar-items{margin-right:unset;margin-bottom:20px}}.list-shopping-cart__bottom-bar-items-disabled{pointer-events:none;opacity:.5}.list-shopping-cart__bottom-bar-items-enabled{pointer-events:auto;opacity:1}.list-shopping-cart__entry-comment-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-top:20px;padding:10px 0}@media only screen and (max-width: 47.9375rem){.list-shopping-cart__entry-comment-label{margin-top:0}}.list-shopping-cart__entry-comment.lite--input{display:flex;margin-top:20px;width:100%}@media only screen and (max-width: 47.9375rem){.list-shopping-cart__entry-comment.lite--input{margin-top:0}}.list-shopping-cart__entry-comment.lite--label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;cursor:auto}.list-shopping-cart__product{display:grid;position:relative;box-sizing:border-box;padding-bottom:20px}@media only screen and (max-width: 33.0625rem){.list-shopping-cart__product{grid-template:[row1-start] "img" [row1-end] [row2-start] "info" [row2-end] [row3-start] "price" [row3-end] [row4-start] "stock" [row4-end] [row5-start] "qty" [row5-end] [row6-start] "summery" [row6-end]/1fr}.list-shopping-cart.with-flags .list-shopping-cart__product,.with-flags.list-confirmation .list-shopping-cart__product{grid-template:[row1-start] "img" [row1-end] [row2-start] "flags" [row2-end] [row3-start] "info" [row3-end] [row4-start] "price" [row4-end] [row5-start] "stock" [row5-end] [row6-start] "qty" [row6-end] [row7-start] "summery" [row7-end]/1fr}}@media only screen and (max-width: 47.9375rem){.list-shopping-cart__product>*:not(:last-child){margin-bottom:30px}}@media only screen and (min-width: 33.125rem)and (max-width: 47.9375rem){.list-shopping-cart__product{grid-gap:0 1.25rem;grid-template:[row1-start] "img info" [row1-end] [row2-start] "img price" [row2-end] [row3-start] "stock stock" [row3-end] [row4-start] "qty summery" [row4-end]/1fr 1fr}.list-shopping-cart.with-flags .list-shopping-cart__product,.with-flags.list-confirmation .list-shopping-cart__product{grid-template:[row1-start] "flags flags" [row1-end] [row2-start] "img info" [row2-end] [row3-start] "img price" [row3-end] [row4-start] "stock stock" [row4-end] [row5-start] "qty summery" [row5-end]/1fr 1fr}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.list-shopping-cart__product{grid-template:[row1-start] "img info info stock stock stock" [row1-end] [row2-start] "img price price qty summery summery" [row2-end];grid-template-columns:repeat(6, 1fr)}.list-shopping-cart__product--no-stock{grid-template:[row1-start] "img info info info info info" [row1-end] [row2-start] "img price price qty summery summery" [row2-end];grid-template-columns:repeat(6, 1fr)}}@media only screen and (min-width: 48rem),print{.list-shopping-cart__product{grid-gap:30px 1.25rem;padding-bottom:30px;padding-right:10px}.list-shopping-cart.with-flags .list-shopping-cart__product,.with-flags.list-confirmation .list-shopping-cart__product{padding-top:25px}.shipping-method .list-shopping-cart__product{grid-template:[row1-start] "img info info info info info" [row1-end];grid-template-columns:repeat(6, 1fr);padding-bottom:0}.list-shopping-cart__product__acco{display:none}}@media only screen and (min-width: 64rem){.list-shopping-cart__product{grid-template:[row1-start] "img img info info info stock stock stock stock . qty qty" [row1-end] [row2-start] "img img price price price stock stock stock stock . summery summery" [row2-end];grid-template-columns:repeat(12, 1fr)}.list-shopping-cart__product--no-stock{grid-template:[row1-start] "img img info info info info info info info . qty qty" [row1-end] [row2-start] "img img price price price . . . . . summery summery" [row2-end];grid-template-columns:repeat(12, 1fr)}}.list-shopping-cart__notice:not(:empty){margin-bottom:10px}.list-shopping-cart__img-box{width:100%}:not(.list-product-url-wrapper-article__container)>.list-shopping-cart__img-box{grid-area:img}@media only screen and (max-width: 33.0625rem){.list-shopping-cart__product .list-shopping-cart__img-box{margin-bottom:0}}.list-shopping-cart__detail{grid-area:info;position:relative}@media only screen and (min-width: 33.125rem)and (max-width: 47.9375rem){.list-shopping-cart__detail{margin-right:10px}}@media(min-width: 33.125rem){.list-shopping-cart__detail{display:flex;flex-direction:column;margin:10px 0}}@media only screen and (min-width: 64rem){.list-shopping-cart__detail{min-height:45px}}.list-shopping-cart__detail-name{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;display:block;margin-bottom:5px}@media only screen and (max-width: 33.0625rem){.list-shopping-cart__detail-name{margin-right:35px}}@media only screen and (min-width: 33.125rem)and (max-width: 47.9375rem){.list-shopping-cart__detail-name{margin-right:45px}}.list-shopping-cart__detail-category{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.list-shopping-cart__detail-list{margin-top:15px}.list-shopping-cart__detail-entry{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.list-shopping-cart__detail-entry:not(:last-child){margin-bottom:5px}.list-shopping-cart__detail-entry:last-child{margin-top:5px}.list-shopping-cart__detail-value{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.list-shopping-cart__detail-promotions{display:flex;align-items:center;margin-bottom:10px}.list-shopping-cart__price-box{grid-area:price;align-self:flex-end}@media only screen and (min-width: 33.125rem)and (max-width: 47.9375rem){.list-shopping-cart__price-box{margin:0 10px}}.list-shopping-cart__price-box--order{margin-top:20px}.list-shopping-cart__unit-price{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.list-shopping-cart__stock{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;display:flex;flex-wrap:wrap;align-content:center;margin-bottom:10px}.list-shopping-cart__stock-box{grid-area:stock;align-self:flex-start}@media only screen and (min-width: 48rem),print{.list-shopping-cart__stock-box{margin-top:10px}}.list-shopping-cart__stock-icon{margin-right:10px}.list-shopping-cart__stock-date{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;margin-top:6px;margin-bottom:6px}.list-shopping-cart__stock-subscription{flex-basis:100%}.list-shopping-cart__stock-subscription:not(:first-child){margin-top:20px}.list-shopping-cart__stock-subscription--text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:block;margin-bottom:10px}.list-shopping-cart__stock-subscription .btn_highlight-small{position:relative;background:linear-gradient(to bottom, #F37A1F 50%, var(--color1) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:rgba(0,0,0,0);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center;height:3.75rem;--outline-offset: 2px;width:100%;text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;min-height:unset;height:33px}.list-shopping-cart__stock-subscription .btn_highlight-small.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.list-shopping-cart__stock-subscription .btn_highlight-small:hover{background-position:0 -100%}}.list-shopping-cart__stock-subscription .btn_highlight-small.active{border-color:rgba(0,0,0,0)}@media(hover: hover)and (pointer: fine){.list-shopping-cart__stock-subscription .btn_highlight-small:hover{border-color:rgba(0,0,0,0)}}.list-shopping-cart__stock-subscription .btn_highlight-small:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.list-shopping-cart__stock-subscription .btn_highlight-small.active{color:var(--color2)}@media(hover: hover)and (pointer: fine){.list-shopping-cart__stock-subscription .btn_highlight-small:hover{color:var(--color2)}}@media(max-width: 63.9375rem){.list-shopping-cart__stock-subscription .btn_highlight-small{width:100%}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.list-shopping-cart__stock-subscription .btn_highlight-small:not(.full){min-width:calc(calc(45.5rem / 6) * 2);max-width:calc(calc(45.5rem / 6) * 3)}}@media only screen and (min-width: 64rem){.list-shopping-cart__stock-subscription .btn_highlight-small:not(.full){min-width:calc(calc(61.5rem / 12) * 3);max-width:calc(calc(61.5rem / 12) * 4)}}.list-shopping-cart__stock-subscription .btn_highlight-small.shrink{min-width:auto}.list-shopping-cart__stock-overlay--wrapper{margin:0 20px}.list-shopping-cart__stock-overlay--title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;margin-bottom:40px}.list-shopping-cart__stock-overlay--text{margin-bottom:20px}.list-shopping-cart__stock-overlay--text a{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow)}.list-shopping-cart__stock-overlay--legal-hint{margin-top:20px}.list-shopping-cart__stock-overlay--legal-hint p{font-size:1rem}.list-shopping-cart__stock-overlay--legal-hint a{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow)}.list-shopping-cart__stock-overlay--captcha{margin:20px 0}.list-shopping-cart__stock-overlay--feedback{margin-top:40px;margin-bottom:0}.list-shopping-cart__stock-overlay--feedback.error-message{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#d43b3b;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.list-shopping-cart__stock-overlay--feedback.success-message{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#749f4a;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}@media only screen and (min-width: 48rem),print{.list-shopping-cart__stock-overlay--feedback{margin-top:20px}}.list-shopping-cart__summery{grid-area:summery;display:flex;justify-content:flex-end;align-self:baseline}@media only screen and (min-width: 33.125rem)and (max-width: 47.9375rem){.list-shopping-cart__summery{margin-bottom:5px}}@media only screen and (max-width: 47.9375rem){.list-shopping-cart__summery{margin-right:10px}}@media(max-width: 63.9375rem){.list-shopping-cart__summery{align-self:flex-end}}@media only screen and (min-width: 48rem),print{.list-shopping-cart__summery .list-price{display:flex;flex-flow:column;margin-top:auto}}.list-shopping-cart__summery--discount{color:#f37a1f !important}.list-shopping-cart__remove{position:absolute;top:0;right:0;width:16px;height:16px;transition:transform 250ms;cursor:pointer}@media only screen and (max-width: 33.0625rem){.list-shopping-cart__remove{right:0}}@media only screen and (min-width: 33.125rem)and (max-width: 47.9375rem){.list-shopping-cart__remove{right:10px}}@media only screen and (max-width: 47.9375rem){.list-shopping-cart__remove{grid-area:info}}@media only screen and (min-width: 48rem),print{.list-shopping-cart__remove{grid-area:stock}}@media only screen and (min-width: 64rem){.list-shopping-cart__remove{grid-area:qty}}.list-shopping-cart__remove::after{content:"";background:url(stihl-styles/resources/icons/icon-bin-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);top:0;left:0}.list-shopping-cart__quantity{grid-area:qty;text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}@media only screen and (min-width: 33.125rem)and (max-width: 47.9375rem){.list-shopping-cart__product .list-shopping-cart__quantity{margin-bottom:0}}@media only screen and (min-width: 48rem),print{.list-shopping-cart__quantity{align-self:flex-end}.shipping-method .list-shopping-cart__quantity{justify-self:unset;align-self:unset}}@media only screen and (min-width: 64rem){.list-shopping-cart__quantity{justify-self:flex-end}}.list-shopping-cart__quantity-title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}@media only screen and (max-width: 33.0625rem){.list-shopping-cart__quantity-title{display:none}}@media(min-width: 33.125rem){.list-shopping-cart__quantity-title{margin-bottom:10px}}@media only screen and (min-width: 48rem),print{.shipping-method .list-shopping-cart__quantity-title{justify-self:unset;margin:0}}@media only screen and (min-width: 64rem){.list-shopping-cart__quantity-title{margin:auto 0 10px}}.list-shopping-cart__quantity-title-title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;margin-bottom:5px}@media only screen and (max-width: 47.9375rem){.list-shopping-cart__quantity-title-title{padding:0 10px}}.list-shopping-cart__quantity-title-value{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;padding-left:5px}.list-shopping-cart__delivery{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;display:flex;flex-direction:column;align-items:baseline}.list-shopping-cart__delivery-status,.list-shopping-cart__delivery-point-service{display:flex;flex-direction:row;align-items:center;margin:10px 0}.list-shopping-cart__delivery-status-icon,.list-shopping-cart__delivery-point-service-icon{margin-right:10px}.list-shopping-cart .acco .list-shopping-cart__detail-list,.list-confirmation .acco .list-shopping-cart__detail-list{margin:0;padding-left:10px;padding-right:10px}.list-shopping-cart .list-flags,.list-confirmation .list-flags{grid-area:flags}@media only screen and (max-width: 33.0625rem){.list-shopping-cart .list-flags,.list-confirmation .list-flags{margin-bottom:10px}}@media only screen and (min-width: 33.125rem)and (max-width: 47.9375rem){.list-shopping-cart .list-flags,.list-confirmation .list-flags{margin-bottom:0}}@media only screen and (min-width: 48rem),print{.list-shopping-cart .list-flags,.list-confirmation .list-flags{grid-area:info/info/stock/stock;position:absolute;bottom:100%}}.list-shopping-cart__promotion{display:flex;margin-top:13px;align-items:center}.list-shopping-cart__promotion>svg{margin-right:10px}.list-shopping-cart__promotion>p{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem}@media only screen and (min-width: 48rem),print{.list-shopping-cart__promotion>p{font-size:.9375rem}}.product-kit-bom-list{display:flex;flex-direction:column;width:100%}.product-kit-bom-list__item{display:grid;position:relative;box-sizing:border-box;grid-template-columns:repeat(7, 1fr);grid-template-areas:"description description description quantity quantity availability availability";grid-column-gap:20px;padding-bottom:20px;padding-left:10px}.product-kit-bom-list__item .description{grid-area:description;display:flex;flex-direction:column}.product-kit-bom-list__item .description__category{margin-top:0}.product-kit-bom-list__item .quantity{grid-area:quantity}.product-kit-bom-list__item .quantity__value{margin-right:10px}.product-kit-bom-list__item .availability{display:flex;flex-direction:column;grid-area:availability;justify-self:center}.product-kit-bom-list__item .availability__item{margin-top:0}.notification_list{display:flex;place-content:center center;background-color:#ededed;padding:10px 20px;min-height:45px}.notification_list button{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.notification_list b{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.list_headline-copy{display:flex;flex-direction:column;position:relative;cursor:pointer;margin-top:30px;width:100%}.list_headline-copy::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);right:0;top:50%}.list_headline-copy p:not(:last-child){margin-bottom:10px}.list_headline-copy__headline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin-bottom:10px}.list_headline-copy__arrow{width:100%}.list_headline-copy__address{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.list_headline-copy__address--distance{margin-top:20px;padding-left:1.875em;padding-bottom:1.25em;position:relative;border-bottom:1px solid #b1b1b1;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}@media only screen and (max-width: 47.9375rem){.list_headline-copy__address--distance{margin-top:20px}}.list_headline-copy__address--distance::before{content:"";background:url(stihl-styles/resources/icons/icon-distance-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);left:5px}.list_headline-copy__address--open{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.list_headline-copy__address--time{margin-right:.625em;vertical-align:sub}.list_headline-copy__address--time svg{width:1rem;height:1rem}.list_headline-copy__timing{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;margin:5px auto}.list_headline-copy__timing--days{margin-right:20px;width:74px}.list_headline-copy__website{margin-top:.9375rem;padding:0 .375rem}.list_headline-copy__website-link{display:inline-block;position:relative;cursor:pointer;margin-left:calc(10px + 1rem);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#000;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.list_headline-copy__website-link::before{content:"";background:url(stihl-styles/resources/icons/icon-globe-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);top:50%;right:100%;transform:translate3d(-10px, -50%, 0);height:1rem;transition:transform .2s;margin-top:-1px}.list_headline-copy__opening-hours{margin-top:.625rem}.product-return{margin-bottom:10px}@media only screen and (min-width: 48rem),print{.product-return:not(:first-child){border-top:1px solid #b1b1b1}}@media only screen and (max-width: 47.9375rem){.product-return{border-bottom:1px solid #b1b1b1}}.product-return__product{display:grid;grid-gap:30px 1.25rem;grid-template:[row1-start] "check" auto [row1-end] [row2-start] "img" auto [row2-end] [row3-start] "info" auto [row3-end] [row4-start] "price" auto [row4-end] [row5-start] "qty" auto [row5-end] [row6-start] "reason" auto [row6-end]/1fr;position:relative;box-sizing:border-box;padding:10px 0 20px}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.product-return__product{grid-template:[row1-start] "check img info info qty qty" auto [row1-end] [row2-start] "check img info info reason reason" auto [row2-end];grid-template-columns:repeat(6, 1fr)}}@media only screen and (min-width: 64rem){.product-return__product{grid-template:[row1-start] "check img img info info info . qty qty qty qty qty" auto [row1-end] [row2-start] "check img img info info info . reason reason reason reason reason" auto [row2-end];grid-template-columns:repeat(12, 1fr)}}.product-return__check{grid-area:check;place-self:center center}@media only screen and (max-width: 47.9375rem){.product-return__check{justify-self:flex-start}}.product-return__img{position:relative;padding-top:calc((3 / 4)*100%)}.product-return__img-box{grid-area:img}.product-return__img picture{position:absolute;inset:0}.product-return__img picture>img{height:100%;width:100%;-o-object-fit:scale-down;object-fit:scale-down}.product-return__detail{grid-area:info;position:relative}@media only screen and (min-width: 33.125rem)and (max-width: 47.9375rem){.product-return__detail{margin-right:10px}}@media only screen and (min-width: 48rem),print{.product-return__detail{margin-top:10px}}.product-return__detail-name{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;display:block;margin-bottom:5px}@media only screen and (max-width: 47.9375rem){.product-return__detail-name{margin-right:45px}}.product-return__detail-category{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;margin-bottom:15px}.product-return__detail-entry{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.product-return__detail-entry:not(:last-child){margin-bottom:5px}.product-return__detail-value{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.product-return__price-box{grid-area:price;margin-top:10px;align-self:flex-end}@media only screen and (min-width: 33.125rem)and (max-width: 47.9375rem){.product-return__price-box{justify-self:flex-end;margin-right:10px}}.product-return__quantity{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;grid-area:qty;margin-top:10px;min-width:2rem}@media only screen and (min-width: 48rem),print{.product-return__quantity{justify-self:flex-end}}@media only screen and (min-width: 64rem){.product-return__quantity{align-self:flex-end}}.product-return__quantity-title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}@media only screen and (max-width: 33.0625rem){.product-return__quantity-title{display:none}}@media(min-width: 33.125rem){.product-return__quantity-title{margin-bottom:10px}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.product-return__quantity-title{align-self:flex-end}}@media only screen and (min-width: 64rem){.product-return__quantity-title{justify-self:flex-end;margin:auto 0 10px}}.product-return__quantity-title-title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;margin-bottom:5px}@media only screen and (max-width: 47.9375rem){.product-return__quantity-title-title{padding:0 10px}}.product-return__quantity-title-value{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;padding-left:5px}.product-return__quantity__delivery{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;display:flex;flex-direction:column;align-items:baseline}.product-return__quantity__delivery-status{display:flex;flex-direction:row;align-items:center;margin:10px 0}.product-return__quantity__delivery-status-icon{margin-right:10px}.product-return__quantity.info{display:flex;position:relative}.product-return__quantity.info .icon-circle{border:2px solid #000;position:absolute;left:0}.product-return__status{margin-left:2.8125rem;min-height:2rem;display:flex;align-items:center}.product-return__reason{grid-area:reason;display:block;min-width:unset}.product-return__reason input{width:100%;text-overflow:ellipsis;padding-right:40px}.product-return__reason.mandatory-unfilled .form-field__button{bottom:unset}.product-return__reason .input-unfilled{border:1px solid red}@media only screen and (max-width: 47.9375rem){.product-return__danger{grid-row:7;grid-column:unset}}@media only screen and (min-width: 48rem),print{.product-return__danger{grid-column:5/-1}}@media only screen and (min-width: 64rem){.product-return__danger{grid-column:8/-1}}.product-return__danger.exclamation{display:flex;position:relative}.product-return__danger.exclamation .icon-circle{position:absolute;left:0}.product-return .richtexteditor{margin-top:0}.product-return__submit{display:flex;flex-direction:column;align-items:flex-end}.product-return__submit-btn{margin-top:15px}.product-return__submit .error-message{margin-top:10px;margin-bottom:0}@media only screen and (max-width: 47.9375rem){.product-return__submit .error-message{align-self:center}}.product-return__action{width:100%;display:flex;flex-direction:column-reverse;gap:15px}@media only screen and (min-width: 48rem),print{.product-return__action{flex-direction:row;justify-content:space-between;align-items:center}}.product-return__article{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.product-return__information{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin-top:30px}.product-return__information-address{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;margin:20px 0 20px 10px}.product-return__information-box{width:350px;padding:10px 10px 10px 0;background-color:#ededed}.product-return__information-box-name{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;margin:5px 0}.product-return__information-box_wrapper{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:flex;align-items:center}.product-return__information-box_wrapper span{margin-bottom:5px;display:block}.product-return__information-box_wrapper .checkout-select__icon{margin-left:10px;margin-right:10px}.product-return__information-labels{margin-left:auto}@media only screen and (min-width: 48rem),print{.product-return__information-container{display:flex;gap:30px;margin-bottom:10px;padding-bottom:30px;border-bottom:1px solid #b1b1b1}}.product-return-confirmation{margin-bottom:10px}.product-return-confirmation__headline{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;margin:20px 0}.product-return-confirmation__headline:not(:first-child){margin-top:30px}.product-return-confirmation__product{display:grid;grid-gap:30px 1.25rem;grid-template:[row1-start] "img" auto [row1-end] [row2-start] "info" auto [row2-end] [row3-start] "price" auto [row3-end] [row4-start] "carrier" auto [row4-end] [row5-start] "reason" auto [row5-end] [row6-start] "qty" auto [row6-end]/1fr;position:relative;box-sizing:border-box;padding:10px 0 20px}@media only screen and (max-width: 47.9375rem){.product-return-confirmation__product{padding-bottom:0}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.product-return-confirmation__product{grid-template:"img info carrier carrier reason reason" auto;grid-template-columns:repeat(6, 1fr)}}@media only screen and (min-width: 64rem){.product-return-confirmation__product{grid-template:"img img info info info . carrier carrier carrier . reason reason" auto;grid-template-columns:repeat(12, 1fr)}}.product-return-confirmation__img{position:relative;padding-top:calc((3 / 4)*100%)}.product-return-confirmation__img-box{grid-area:img}.product-return-confirmation__img picture{position:absolute;inset:0}.product-return-confirmation__img picture>img{height:100%;width:100%;-o-object-fit:scale-down;object-fit:scale-down}.product-return-confirmation__detail{grid-area:info;position:relative}@media only screen and (min-width: 33.125rem)and (max-width: 47.9375rem){.product-return-confirmation__detail{margin-right:10px}}@media only screen and (min-width: 48rem),print{.product-return-confirmation__detail{margin-top:10px}}.product-return-confirmation__detail-name{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;display:block;margin-bottom:5px}@media only screen and (max-width: 47.9375rem){.product-return-confirmation__detail-name{margin-right:45px}}.product-return-confirmation__detail-category{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;margin-bottom:15px}.product-return-confirmation__detail-entry{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.product-return-confirmation__detail-entry:not(:last-child){margin-bottom:5px}.product-return-confirmation__detail-value{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.product-return-confirmation__price-box{grid-area:price;margin-top:20px;align-self:flex-end}@media only screen and (min-width: 33.125rem)and (max-width: 47.9375rem){.product-return-confirmation__price-box{justify-self:flex-end;margin-right:10px}}.product-return-confirmation__unit-price{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.product-return-confirmation__carrier{grid-area:carrier;position:relative;border:1px solid #b1b1b1;text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;display:flex;height:30px;padding:20px}.product-return-confirmation__carrier-logo{width:50px;height:30px;border:none}.product-return-confirmation__carrier-logo-center{margin:0 auto}.product-return-confirmation__carrier-text{margin-left:10px;align-self:center}.product-return-confirmation__carrier>span{padding-left:60px;align-self:center}.product-return-confirmation__carrier.dangerContent{margin-top:1.25rem}.product-return-confirmation__reason{grid-area:reason;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.product-return-confirmation__reason-title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;margin-bottom:5px}@media only screen and (min-width: 48rem),print{.product-return-confirmation__reason{text-align:right;margin-right:10px}.product-return-confirmation__reason-title{text-align:right}}.product-return-confirmation__quantity{grid-area:qty;margin-top:10px;text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}@media only screen and (min-width: 48rem),print{.product-return-confirmation__quantity{text-align:right;margin-top:30px}}.product-return-confirmation__danger{grid-area:carrier}.product-return-confirmation__danger .exclamation{display:flex;position:relative;margin-bottom:10px}.product-return-confirmation__danger .exclamation .icon-circle{position:absolute;left:-6px;top:-12px;border:0}.product-return-confirmation__danger .info{display:flex;position:relative}.product-return-confirmation__danger .info .richtexteditor{margin-top:0;margin-left:10px}.product-return-confirmation__danger .description{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;margin-left:1.75rem}.product-return-confirmation__bottom_border:not(:last-child){border-bottom:1px solid #b1b1b1}.list-anchor{top:0;background:var(--color13)}.list-anchor--fixed{position:fixed;top:var(--header-height);left:0;width:100vw;border:0;transition:top .5s;z-index:200}.list-anchor--fixed::after{position:absolute;bottom:0;left:0;border-bottom:1px solid #b1b1b1;height:1px;width:100vw;content:" "}@media only screen and (min-width: 48rem),print{.list-anchor__inner,.list-anchor__toggle{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.list-anchor__inner,.list-anchor__toggle{width:45.5rem}}@media print{.list-anchor__inner,.list-anchor__toggle{width:auto}}@media only screen and (min-width: 48rem)and (min-width: 64rem){.list-anchor__inner,.list-anchor__toggle{width:61.5rem}}.container__inner .list-anchor__inner{padding:0}.list-anchor__toggle{height:var(--default-banner-height);display:flex;align-items:center;width:100%;padding:0 10px;max-width:calc(100% - 20px)}@media only screen and (min-width: 48rem),print{.list-anchor__toggle{padding:0;max-width:100%}}.list-anchor:not(.list-anchor--fixed) .list-anchor__toggle{display:none;top:calc(var(--default-banner-height)*-1)}.list-anchor__list{border-bottom:1px solid #b1b1b1;padding:0;margin:0}.ts-body .list-anchor__list{border-bottom:1px solid #f37a1f}@media only screen and (min-width: 48rem),print{.list-anchor__list{padding:0 10px}}.list-anchor--fixed .list-anchor__list{max-height:0;overflow:hidden;margin:0;transition:max-height .1s}.list-anchor--fixed .list-anchor__list--visible{max-height:calc(100vh - 90px);overflow-y:auto;transition:max-height .5s}.list-anchor__item{padding-bottom:30px}.list-anchor--fixed .list-anchor__item{padding:0}@media only screen and (max-width: 47.9375rem){.list-anchor--fixed .list-anchor__item{margin:20px 0}.list-anchor--fixed .list-anchor__item:first-child{margin-top:15px}}.list-anchor--fixed .list-anchor__link{display:flex;align-items:center;overflow:hidden;max-width:calc(100% - 40px);min-height:45px}.list-anchor:not(.list-anchor--fixed) .list-anchor__link{display:inline-block;position:relative;cursor:pointer;margin-left:calc(5px + 1rem);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.list-anchor:not(.list-anchor--fixed) .list-anchor__link::before{content:"";background:url(stihl-styles/resources/icons/icon-arrow-down-3-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);top:50%;right:100%;transform:translate3d(-5px, -50%, 0);height:1rem;transition:transform .2s;margin-top:-1px}.list-anchor:not(.list-anchor--fixed) .list-anchor__link::before{left:-30px;top:0;margin:0}.list-anchor__link--toggle{max-width:calc(100% - 40px);display:inline-block;position:relative;cursor:pointer;margin-right:38px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.list-anchor__link--toggle::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(1.0625rem, -50%, 0);height:1rem;transition:transform .2s;margin-top:-1px}.list-anchor__link--toggle::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-down-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none)}.list-anchor__link--toggle>span{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;display:inline-block;max-width:100%}.list-anchor__overlay{display:none;position:fixed;top:0;bottom:0;left:0;width:100vw;height:100vh;background:#000;opacity:0;z-index:100;transition:opacity 400ms}.list-anchor__overlay--active{display:block;opacity:.4}.anchorlist{margin-bottom:45px}@media only screen and (min-width: 48rem),print{.anchorlist{margin-bottom:50px}}@media only screen and (min-width: 48rem),print{.list-dealer-order-overview__product{grid-template:[row1-start] "img info stock qty" [row1-end];grid-template-columns:repeat(4, 1fr);padding:0 20px 10px}}.list-dealer-order-overview__picked-up--disabled{opacity:.4;pointer-events:none}.list-dealer-order-overview__picked-up:not(:first-child){margin-top:20px}.list-dealer-order-overview__picked-up-hint{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;margin-top:10px}@media only screen and (min-width: 48rem),print{.list-order-overview__product{grid-template:[row1-start] "img info stock qty" [row1-end] [row2-start] "img price stock summery" [row2-end];grid-template-columns:repeat(4, 1fr);padding-left:20px;padding-right:20px}}.list-order-overview__tracking{align-self:flex-start;grid-area:qty}@media only screen and (min-width: 48rem),print{.list-order-overview__tracking{margin-top:10px}.list-order-overview__tracking--customer{margin:5px 0 0 auto}}.list-order-overview__tracking-btn{padding:0}.list-order-overview__tracking-link,.list-order-overview__tracking-btn-inner{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.list-order-overview__tracking-link::after,.list-order-overview__tracking-btn-inner::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.list-order-overview__tracking-link:hover::after,.list-order-overview__tracking-btn-inner:hover::after{transform:translate3d(10px, -50%, 0)}.list-order-overview__order-info{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;grid-area:stock;align-self:flex-start;display:grid;grid-gap:5px}@media only screen and (min-width: 64rem){.list-order-overview__order-info{grid-template-columns:minmax(auto, 100px) 1fr;grid-gap:10px;margin-top:10px}}@media(max-width: 63.9375rem){.list-order-overview__order-info>*:nth-child(even):not(:last-child){margin-bottom:10px}}.list-order-overview__picked-up{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}@media only screen and (min-width: 64rem){.list-order-overview__picked-up{margin-top:10px;text-align:right}}.icon-list{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.icon-list--assortment{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.icon-list__headline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin-bottom:15px}.icon-list--assortment .icon-list__headline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.icon-list__list{display:inline-grid;grid-gap:.625rem}.icon-list--assortment .icon-list__list{grid-template-columns:auto auto;grid-gap:.9375rem}.icon-list__item{position:relative;padding-left:calc(1rem + 0.3125rem);display:flex;align-items:center}.icon-list__item::before{left:0}.icon-list__item--petrol::before{content:"";background:url(stihl-styles/resources/icons/icon-petrol-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none)}.icon-list__item--cordless::before{content:"";background:url(stihl-styles/resources/icons/icon-battery-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none)}.icon-list__item--electric::before{content:"";background:url(stihl-styles/resources/icons/icon-plug-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none)}.icon-list__item--imow::before{content:"";background:url(stihl-styles/resources/icons/icon-imow-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none)}.icon-list__item--cleaner::before{content:"";background:url(stihl-styles/resources/icons/icon-wrench-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none)}.icon-list__item--clothing::before{content:"";background:url(stihl-styles/resources/icons/icon-shirt-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none)}.icon-list__item--checkmark::before{content:"";background:url(stihl-styles/resources/icons/icon-check-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none)}.date-and-country{display:flex;flex-wrap:wrap;gap:1.5rem;align-items:center}.newsandvideodetailpage .date-and-country{margin:1.625rem .625rem 0}.newsandvideodetailpage .date-and-country-container{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}@media only screen and (min-width: 48rem),print{.newsandvideodetailpage .date-and-country-container{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.newsandvideodetailpage .date-and-country-container{width:45.5rem}}@media print{.newsandvideodetailpage .date-and-country-container{width:auto}}@media only screen and (min-width: 48rem)and (min-width: 64rem){.newsandvideodetailpage .date-and-country-container{width:61.5rem}}@media only screen and (max-width: 47.9375rem){.date-and-country--multi-countries{align-items:flex-start;flex-direction:column}}.filter-listing--has-multi-countries .date-and-country--multi-countries{align-items:flex-start;flex-direction:column;gap:.5rem}.date-and-country__date{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color6);font-family:var(--font-family-display-medium),Arial,sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.date-and-country__country{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color6);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.icon-link{cursor:pointer;display:flex;align-items:center}.icon-link__text{padding-left:.7rem}.search-suggest__entry--document .entry-content--top{display:flex;justify-content:space-between}.search-suggest__entry--link{gap:10px;padding:20px 8px 20px 16px}.price-summary{display:flex;flex-flow:column;position:relative}.price-summary:not(:last-child){margin-bottom:10px}@media only screen and (min-width: 48rem),print{.price-summary{max-width:22.1875rem}}.price-summary__list{padding-bottom:10px;border-bottom:1px solid #b1b1b1}.price-summary__entry{display:flex;justify-content:space-between}.price-summary__discounts .price-summary__entry{flex-wrap:wrap}.price-summary__entry-title{margin:0 10px 20px;max-width:60%;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.price-summary__entry-title--discount{margin-bottom:10px;text-transform:uppercase}.price-summary__entry-title--discount::before{content:"•";margin-right:10px}.price-summary__entry-value{margin:0 10px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;text-align:right}.price-summary__entry-value--discount{color:#f37a1f}.price-summary__entry-value--discount-total{width:100%}.price-summary__total{display:flex;justify-content:space-between;margin:30px 0}.price-summary__total-title{margin:0 10px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.price-summary__total-value{margin:0 10px;text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2}.price-summary__total+.price-summary__vat{margin-top:0}.price-summary__checkbox{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;margin:15px 0 20px}.price-summary__checkbox a{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow)}.price-summary__checkbox p{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.price-summary__vat+.price-summary__checkbox{margin-bottom:20px}.price-summary__terms-error{margin:15px 10px 0}.price-summary__vat{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;text-align:right;margin:5px 0 10px}.price-summary__recycle{margin-left:10px}.price-summary__recycle .text{margin-top:0;text-align:right}.price-summary__discounts{margin-bottom:10px}.price-summary__discounts-title{margin:0 10px 10px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.b2b-price-summary{width:440.1px;display:flex;flex-flow:column;margin-bottom:30px;position:relative}@media(max-width: 63.9375rem){.b2b-price-summary{max-width:unset}}.b2b-price-summary__list{padding-bottom:20px;border-bottom:4px solid #f37a1f}.b2b-price-summary__entry{display:flex;justify-content:space-between}.b2b-price-summary__entry-title{margin:0 0 10px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem}@media only screen and (min-width: 48rem),print{.b2b-price-summary__entry-title{font-size:.9375rem}}.b2b-price-summary__entry-title--discount{margin-bottom:10px}.b2b-price-summary__entry-title--discount::before{content:"•";margin-right:10px}.b2b-price-summary__entry-value{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;text-align:right}.b2b-price-summary__entry-value--discount{color:#f37a1f}.b2b-price-summary__total{display:flex;justify-content:space-between;margin:30px 0}.b2b-price-summary__total-title{margin:15px 0;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem;font-weight:bold}@media only screen and (min-width: 48rem),print{.b2b-price-summary__total-title{font-size:.9375rem}}.b2b-price-summary__total-value{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25}@media only screen and (min-width: 48rem),print{.b2b-price-summary__total-value{font-size:1.625rem;line-height:1.2}}.b2b-price-summary__total+.b2b-price-summary__vat{margin-top:0}.b2b-price-summary__text{margin-bottom:40px}.b2b-price-summary__text-span{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem;white-space:normal;text-align:left}@media only screen and (min-width: 48rem),print{.b2b-price-summary__text-span{font-size:.9375rem}}.b2b-price-summary__vat,.b2b-price-summary__terms{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;margin:15px 0 0}@media only screen and (max-width: 47.9375rem){.b2b-price-summary__terms{display:none}}.b2b-price-summary__terms a{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow)}.b2b-price-summary__return{display:flex;margin:20px 0;align-items:center}.b2b-price-summary__return-icon{display:flex;align-self:flex-start}.b2b-price-summary__return .richtexteditor{margin-left:10px;margin-top:0}.b2b-price-summary__discounts{margin-bottom:10px}.b2b-price-summary__discounts-title{margin:0 10px 10px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.benefit-summary{display:flex;flex-flow:column;margin:0 10px 30px}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.benefit-summary{width:calc(100%/(6 / 2))}.checkout .benefit-summary{width:100%}}@media only screen and (min-width: 64rem){.benefit-summary{min-width:450px;max-width:520px}}.benefit-summary__list{display:flex;flex-flow:column;margin-bottom:10px;margin-top:30px}.benefit-summary__item{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;position:relative;margin-bottom:1.25em;padding-left:1.375em}.benefit-summary__item::before{content:"";background:url(stihl-styles/resources/icons/icon-check-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);left:0;top:50%;transform:translateY(-50%)}.benefit-summary__certificates{margin-bottom:30px}.newsletter-register{display:flex;flex-flow:column;margin:20px 10px 30px}@media only screen and (min-width: 48rem),print{.newsletter-register{margin:0 10px 30px}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.newsletter-register{width:calc(100%/(6 / 2))}.checkout .newsletter-register{width:95%}}@media only screen and (min-width: 64rem){.newsletter-register{min-width:450px;max-width:520px}}.newsletter-register a{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow)}.react-datepicker--month-range{--datepicker-display: flex;--datepicker-width: 100%;--datepicker-input-height: 49px;--datepicker-border-radius: 0;--datepicker-border-color: transparent;--datepicker-margin: 0;--datepicker-font-family: var(--font-family-display-medium), "Arial", sans-serif;--datepicker-font-family-bold: var(--font-family-display-title), "Arial", sans-serif;--datepicker-font-size: 0.875rem;--datepicker-selected-bg-color: #EDEDED;--datepicker-selected-color: #000;--datepicker-header-bg-color: #fff;--datepicker-header-height: 64px;--datepicker-header-padding-top: 0;--datepicker-arrows-top: calc((var(--datepicker-header-height) - 12px) / 2);--datepicker-arrow-size: 12px;--datepicker-arrow-color: #000;--datepicker-arrow-left: calc(50% - 50px);--datepicker-arrow-right: calc(50% - 50px);--datepicker-month-container-width: calc(100vw - 42px);--datepicker-month-margin: 0;--datepicker-month-height: 32px;--datepicker-keyboard-selected-bg-color: #fff;--datepicker-triangle-display: none;--datepicker-triangle-size: 0;--datepicker-month-bg-transition: background 0.3s}@media only screen and (min-width: 48rem),print{.react-datepicker--month-range{--datepicker-month-container-width: 334px;--datepicker-border-color: #000;--datepicker-margin: 24px 31px}}.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle{margin-left:-8px;position:absolute}.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle,.react-datepicker__year-read-view--down-arrow::before,.react-datepicker__month-read-view--down-arrow::before,.react-datepicker__month-year-read-view--down-arrow::before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before{box-sizing:content-box;position:absolute;border:8px solid rgba(0,0,0,0);height:0;width:1px}.react-datepicker__year-read-view--down-arrow::before,.react-datepicker__month-read-view--down-arrow::before,.react-datepicker__month-year-read-view--down-arrow::before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before{content:"";z-index:-1;border-width:8px;left:-8px;border-bottom-color:#aeaeae}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle{top:0;margin-top:-8px}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before{border-top:none;border-bottom-color:#f0f0f0}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before{top:-1px;border-bottom-color:#aeaeae}.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle{bottom:0;margin-bottom:-8px}.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle,.react-datepicker__year-read-view--down-arrow::before,.react-datepicker__month-read-view--down-arrow::before,.react-datepicker__month-year-read-view--down-arrow::before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before{border-bottom:none;border-top-color:#fff}.react-datepicker__year-read-view--down-arrow::before,.react-datepicker__month-read-view--down-arrow::before,.react-datepicker__month-year-read-view--down-arrow::before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before{bottom:-1px;border-top-color:#aeaeae}.react-datepicker-wrapper{display:inline-block;padding:0;border:0;width:var(--datepicker-width, 100px)}.react-datepicker{font-family:var(--datepicker-font-family, "Helvetica Neue", helvetica, arial, sans-serif);font-size:var(--datepicker-font-size, 0.5rem);background-color:#fff;color:#000;border:1px solid var(--datepicker-border-color, #aeaeae);border-radius:var(--datepicker-border-radius, 0.1875rem);display:var(--datepicker-display, inline-block);position:relative}.react-datepicker--time-only .react-datepicker__triangle{left:35px}.react-datepicker--time-only .react-datepicker__time-container{border-left:0}.react-datepicker--time-only .react-datepicker__time{border-radius:.1875rem}.react-datepicker--time-only .react-datepicker__time-box{border-radius:.1875rem}.react-datepicker__triangle{position:absolute;left:50px;display:var(--datepicker-triangle-display, block)}.react-datepicker-popper{z-index:999}.react-datepicker-popper[data-placement^=bottom]{margin-top:var(--datepicker-triangle-size, 10px)}.react-datepicker-popper[data-placement=bottom-end] .react-datepicker__triangle,.react-datepicker-popper[data-placement=top-end] .react-datepicker__triangle{left:auto;right:50px}.react-datepicker-popper[data-placement^=top]{margin-bottom:var(--datepicker-triangle-size, 10px)}.react-datepicker-popper[data-placement^=right]{margin-left:8px}.react-datepicker-popper[data-placement^=right] .react-datepicker__triangle{left:auto;right:42px}.react-datepicker-popper[data-placement^=left]{margin-right:8px}.react-datepicker-popper[data-placement^=left] .react-datepicker__triangle{left:42px;right:auto}.react-datepicker__header{text-align:center;background-color:var(--datepicker-header-bg-color, #f0f0f0);border-bottom:1px solid var(--datepicker-border-color, #aeaeae);border-top-left-radius:var(--datepicker-border-radius, 0.1875rem);border-top-right-radius:var(--datepicker-border-radius, 0.1875rem);height:var(--datepicker-header-height, auto);padding-top:var(--datepicker-header-padding-top, 8px);position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center}.react-datepicker__header--time{padding-bottom:8px;padding-left:5px;padding-right:5px}.react-datepicker__year-dropdown-container--select,.react-datepicker__month-dropdown-container--select,.react-datepicker__month-year-dropdown-container--select,.react-datepicker__year-dropdown-container--scroll,.react-datepicker__month-dropdown-container--scroll,.react-datepicker__month-year-dropdown-container--scroll{display:inline-block;margin:0 2px}.react-datepicker__current-month,.react-datepicker-time__header,.react-datepicker-year-header{margin-top:0;color:#000;font-weight:bold;font-family:var(--datepicker-font-family-bold, "Helvetica Neue", helvetica, arial, sans-serif);font-size:var(--datepicker-font-size, 0.59rem)}.react-datepicker-time__header{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.react-datepicker__navigation{background:none;line-height:1.0625rem;text-align:center;cursor:pointer;position:absolute;top:var(--datepicker-arrows-top, 10px);width:var(--datepicker-arrow-size, 8px);padding:0;border:.28125rem solid var(--datepicker-arrow-color, #ccc);border-width:0 2px 2px 0;z-index:1;height:var(--datepicker-arrow-size, 8px);text-indent:-999em;overflow:hidden}.react-datepicker__navigation:hover{border-color:var(--datepicker-arrow-color, #b3b3b3)}.react-datepicker__navigation--previous{left:var(--datepicker-arrow-left, 10px);transform:rotate(135deg)}.react-datepicker__navigation--previous--disabled,.react-datepicker__navigation--previous--disabled:hover{border-color:#e6e6e6;cursor:default}.react-datepicker__navigation--next{right:var(--datepicker-arrow-right, 10px);transform:rotate(-45deg)}.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button){right:80px}.react-datepicker__navigation--next--disabled,.react-datepicker__navigation--next--disabled:hover{border-color:#e6e6e6;cursor:default}.react-datepicker__navigation--years{position:relative;top:0;display:block;margin-left:auto;margin-right:auto}.react-datepicker__navigation--years-previous{top:4px;border-top-color:#ccc}.react-datepicker__navigation--years-previous:hover{border-top-color:#b3b3b3}.react-datepicker__navigation--years-upcoming{top:-4px;border-bottom-color:#ccc}.react-datepicker__navigation--years-upcoming:hover{border-bottom-color:#b3b3b3}.react-datepicker__month-container{float:left;width:var(--datepicker-month-container-width, auto)}.react-datepicker__year-container{margin:.25rem;text-align:center;display:flex;flex-wrap:wrap}.react-datepicker__year-container-text{display:inline-block;cursor:pointer;flex:1 0 30%;width:12px;padding:2px}.react-datepicker__month{margin:var(--datepicker-margin, 0.25rem);text-align:center}.react-datepicker__month .react-datepicker__month-text,.react-datepicker__month .react-datepicker__quarter-text{display:flex;align-items:center;justify-content:center;flex:1;width:2.5rem;margin:var(--datepicker-month-margin, 2px);height:var(--datepicker-month-height, auto);transition:var(--datepicker-month-bg-transition, none)}.react-datepicker__input-time-container{clear:both;width:100%;float:left;margin:5px 0 10px 15px;text-align:left}.react-datepicker__input-time-container .react-datepicker-time__caption{display:inline-block}.react-datepicker__input-time-container .react-datepicker-time__input-container{display:inline-block}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input{display:inline-block;margin-left:10px}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input{width:85px}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button{-webkit-appearance:none;appearance:none;margin:0}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter{margin-left:5px;display:inline-block}.react-datepicker__time-container{float:right;border-left:1px solid #aeaeae;width:85px}.react-datepicker__time-container--with-today-button{display:inline;border:1px solid #aeaeae;border-radius:.1875rem;position:absolute;right:-72px;top:0}.react-datepicker__time-container .react-datepicker__time{position:relative;background:#fff;border-bottom-right-radius:.1875rem}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box{width:85px;overflow-x:hidden;margin:0 auto;text-align:center}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list{list-style:none;margin:0;height:calc(195px + (1.0625rem / 2));overflow-y:scroll;padding-right:0;padding-left:0;width:100%;box-sizing:content-box}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item{height:30px;padding:5px 10px;white-space:nowrap}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover{cursor:pointer;background-color:#f0f0f0}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected{background-color:#216ba5;color:#fff;font-weight:bold}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover{background-color:#216ba5}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled{color:#ccc}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover{cursor:default;background-color:rgba(0,0,0,0)}.react-datepicker__week-number{color:#ccc;display:inline-block;width:1.0625rem;line-height:1.0625rem;text-align:center;margin:.10375rem}.react-datepicker__week-number.react-datepicker__week-number--clickable{cursor:pointer}.react-datepicker__week-number.react-datepicker__week-number--clickable:hover{border-radius:.1875rem;background-color:#f0f0f0}.react-datepicker__day-names,.react-datepicker__week{white-space:nowrap}.react-datepicker__day-name,.react-datepicker__day,.react-datepicker__time-name{color:#000;display:inline-block;width:1.0625rem;line-height:1.0625rem;text-align:center;margin:.10375rem}.react-datepicker__day,.react-datepicker__month-text,.react-datepicker__quarter-text{cursor:pointer}.react-datepicker__day:hover,.react-datepicker__month-text:hover,.react-datepicker__quarter-text:hover{border-radius:var(--datepicker-border-radius, 0.1875rem);background-color:var(--datepicker-selected-bg-color, #f0f0f0)}.react-datepicker__day--today,.react-datepicker__month-text--today,.react-datepicker__quarter-text--today{font-family:var(--datepicker-font-family-bold, "Helvetica Neue", helvetica, arial, sans-serif);font-weight:bold}.react-datepicker__day--highlighted,.react-datepicker__month-text--highlighted,.react-datepicker__quarter-text--highlighted{border-radius:var(--datepicker-border-radius, 0.1875rem);background-color:#3dcc4a;color:#fff}.react-datepicker__day--highlighted:hover,.react-datepicker__month-text--highlighted:hover,.react-datepicker__quarter-text--highlighted:hover{background-color:#32be3f}.react-datepicker__day--highlighted-custom-1,.react-datepicker__month-text--highlighted-custom-1,.react-datepicker__quarter-text--highlighted-custom-1{color:#f0f}.react-datepicker__day--highlighted-custom-2,.react-datepicker__month-text--highlighted-custom-2,.react-datepicker__quarter-text--highlighted-custom-2{color:green}.react-datepicker__day--selected,.react-datepicker__day--in-selecting-range,.react-datepicker__day--in-range,.react-datepicker__month-text--selected,.react-datepicker__month-text--in-selecting-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--selected,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__quarter-text--in-range{border-radius:var(--datepicker-border-radius, 0.1875rem);background-color:var(--datepicker-selected-bg-color, #216ba5);color:var(--datepicker-selected-color, #fff)}.react-datepicker__day--selected:hover,.react-datepicker__day--in-selecting-range:hover,.react-datepicker__day--in-range:hover,.react-datepicker__month-text--selected:hover,.react-datepicker__month-text--in-selecting-range:hover,.react-datepicker__month-text--in-range:hover,.react-datepicker__quarter-text--selected:hover,.react-datepicker__quarter-text--in-selecting-range:hover,.react-datepicker__quarter-text--in-range:hover{background-color:#1d5d90}.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range),.react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range),.react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range){background-color:rgba(33,107,165,.5)}.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range),.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range),.react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range){background-color:#f0f0f0;color:#000}.react-datepicker__day--disabled,.react-datepicker__month-text--disabled,.react-datepicker__quarter-text--disabled{cursor:default;color:#ccc}.react-datepicker__day--disabled:hover,.react-datepicker__month-text--disabled:hover,.react-datepicker__quarter-text--disabled:hover{background-color:rgba(0,0,0,0)}.react-datepicker__month--selected,.react-datepicker__month--in-selecting-range,.react-datepicker__month--in-range,.react-datepicker__quarter--selected,.react-datepicker__quarter--in-selecting-range,.react-datepicker__quarter--in-range,.react-datepicker__year-container-text--selected,.react-datepicker__year-container-text--in-selecting-range,.react-datepicker__year-container-text--in-range{font-family:var(--datepicker-font-family-bold, "Helvetica Neue", helvetica, arial, sans-serif);border-radius:var(--datepicker-border-radius, 0.1875rem);background-color:var(--datepicker-selected-bg-color, #216ba5);color:var(--datepicker-selected-color, #fff)}.react-datepicker__month--selected:hover,.react-datepicker__month--in-selecting-range:hover,.react-datepicker__month--in-range:hover,.react-datepicker__quarter--selected:hover,.react-datepicker__quarter--in-selecting-range:hover,.react-datepicker__quarter--in-range:hover,.react-datepicker__year-container-text--selected:hover,.react-datepicker__year-container-text--in-selecting-range:hover,.react-datepicker__year-container-text--in-range:hover{background-color:var(--datepicker-selected-bg-color, #1d5d90)}.react-datepicker__month--disabled,.react-datepicker__quarter--disabled,.react-datepicker__year-container-text--disabled{color:#ccc;pointer-events:none}.react-datepicker__month--disabled:hover,.react-datepicker__quarter--disabled:hover,.react-datepicker__year-container-text--disabled:hover{cursor:default;background-color:rgba(0,0,0,0)}.react-datepicker--range-selected .react-datepicker__month--selected:not(.react-datepicker__month--in-range),.react-datepicker--range-selected .react-datepicker__quarter--selected:not(.react-datepicker__month--in-range),.react-datepicker--range-selected .react-datepicker__year-container-text--selected:not(.react-datepicker__month--in-range){border:0;background:rgba(0,0,0,0);color:currentcolor;font-family:inherit}.react-datepicker__month-text.react-datepicker__month--selected:hover,.react-datepicker__month-text.react-datepicker__month--in-range:hover,.react-datepicker__month-text.react-datepicker__quarter--selected:hover,.react-datepicker__month-text.react-datepicker__quarter--in-range:hover,.react-datepicker__quarter-text.react-datepicker__month--selected:hover,.react-datepicker__quarter-text.react-datepicker__month--in-range:hover,.react-datepicker__quarter-text.react-datepicker__quarter--selected:hover,.react-datepicker__quarter-text.react-datepicker__quarter--in-range:hover{background-color:var(--datepicker-selected-bg-color, #216ba5)}.react-datepicker__month-text:hover,.react-datepicker__quarter-text:hover{background-color:var(--datepicker-selected-bg-color, #f0f0f0)}.react-datepicker__input-container{position:relative;display:inline-block;width:100%;height:var(--datepicker-input-height, auto);cursor:pointer}.react-datepicker__year-read-view,.react-datepicker__month-read-view,.react-datepicker__month-year-read-view{border:1px solid rgba(0,0,0,0);border-radius:.1875rem}.react-datepicker__year-read-view:hover,.react-datepicker__month-read-view:hover,.react-datepicker__month-year-read-view:hover{cursor:pointer}.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow{border-top-color:#b3b3b3}.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow{border-top-color:#ccc;float:right;margin-left:20px;top:8px;position:relative;border-width:.28125rem}.react-datepicker__year-dropdown,.react-datepicker__month-dropdown,.react-datepicker__month-year-dropdown{background-color:#f0f0f0;position:absolute;width:50%;left:25%;top:30px;z-index:1;text-align:center;border-radius:.1875rem;border:1px solid #aeaeae}.react-datepicker__year-dropdown:hover,.react-datepicker__month-dropdown:hover,.react-datepicker__month-year-dropdown:hover{cursor:pointer}.react-datepicker__year-dropdown--scrollable,.react-datepicker__month-dropdown--scrollable,.react-datepicker__month-year-dropdown--scrollable{height:150px;overflow-y:scroll}.react-datepicker__year-option,.react-datepicker__month-option,.react-datepicker__month-year-option{line-height:20px;width:100%;display:block;margin-left:auto;margin-right:auto}.react-datepicker__year-option:first-of-type,.react-datepicker__month-option:first-of-type,.react-datepicker__month-year-option:first-of-type{border-top-left-radius:.1875rem;border-top-right-radius:.1875rem}.react-datepicker__year-option:last-of-type,.react-datepicker__month-option:last-of-type,.react-datepicker__month-year-option:last-of-type{-webkit-user-select:none;-moz-user-select:none;user-select:none;border-bottom-left-radius:.1875rem;border-bottom-right-radius:.1875rem}.react-datepicker__year-option:hover,.react-datepicker__month-option:hover,.react-datepicker__month-year-option:hover{background-color:#ccc}.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming{border-bottom-color:#b3b3b3}.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous{border-top-color:#b3b3b3}.react-datepicker__year-option--selected,.react-datepicker__month-option--selected,.react-datepicker__month-year-option--selected{position:absolute;left:15px}.react-datepicker__close-icon{cursor:pointer;background-color:rgba(0,0,0,0);border:0;outline:0;padding:0 6px 0 0;position:absolute;top:0;right:0;height:100%;display:table-cell;vertical-align:middle}.react-datepicker__close-icon::after{cursor:pointer;background-color:#216ba5;color:#fff;border-radius:50%;height:16px;width:16px;padding:2px;font-size:.75rem;line-height:1;text-align:center;display:table-cell;vertical-align:middle;content:"×"}.react-datepicker__today-button{background:#f0f0f0;border-top:1px solid #aeaeae;cursor:pointer;text-align:center;font-weight:bold;padding:5px 0;clear:left}.react-datepicker__portal{position:fixed;width:100vw;height:100vh;background-color:rgba(0,0,0,.8);left:0;top:0;justify-content:center;align-items:center;display:flex;z-index:2147483647}.react-datepicker__portal .react-datepicker__day-name,.react-datepicker__portal .react-datepicker__day,.react-datepicker__portal .react-datepicker__time-name{width:1.875rem;line-height:1.875rem}@media(width <= 400px),(height <= 550px){.react-datepicker__portal .react-datepicker__day-name,.react-datepicker__portal .react-datepicker__day,.react-datepicker__portal .react-datepicker__time-name{width:1.25rem;line-height:1}}.react-datepicker__portal .react-datepicker__current-month,.react-datepicker__portal .react-datepicker-time__header{font-size:.9rem}.react-datepicker__portal .react-datepicker__navigation{border:.50625rem solid rgba(0,0,0,0)}.react-datepicker__portal .react-datepicker__navigation--previous{border-right-color:#ccc}.react-datepicker__portal .react-datepicker__navigation--previous:hover{border-right-color:#b3b3b3}.react-datepicker__portal .react-datepicker__navigation--previous--disabled,.react-datepicker__portal .react-datepicker__navigation--previous--disabled:hover{border-right-color:#e6e6e6;cursor:default}.react-datepicker__portal .react-datepicker__navigation--next{border-left-color:#ccc}.react-datepicker__portal .react-datepicker__navigation--next:hover{border-left-color:#b3b3b3}.react-datepicker__portal .react-datepicker__navigation--next--disabled,.react-datepicker__portal .react-datepicker__navigation--next--disabled:hover{border-left-color:#e6e6e6;cursor:default}.react-datepicker__month-wrapper{display:flex;justify-content:space-between}.react-datepicker__close-btn{position:absolute;bottom:0;right:0}.product-status{display:flex;align-items:center;position:relative;padding:20px;border:1px solid #b1b1b1}.product-status__item{position:relative;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.product-status__item:not(:last-child){margin-bottom:5px}.product-status__item::after{position:absolute;left:-1.375rem;top:.0625rem}.product-status__item.stock::after{width:.75rem;height:.75rem;border-radius:100%;content:""}.product-status__item.in-stock::after{background:#749f4a}.product-status__item.partially-out-stock::after{background:#fdc543}.product-status__item.out-of-stock::after{background:#d43b3b}.product-status__item.delivery::after{content:"";background:url(stihl-styles/resources/icons/icon-truck-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none)}.product-status__item.pick-up::after{content:"";background:url(stihl-styles/resources/icons/icon-shop-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none)}.product-status__item-wrapper{margin-right:1.75rem;margin-left:1.375rem}.product-status__rte{margin-top:0}.product-status__rte p{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.product-status__rte b{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.product-status__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.product-status__item.stock .product-status__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.product-status--regular{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;text-transform:uppercase !important;font-size:.75rem !important}.product-status__circle{position:absolute;right:1.25rem;top:50%;transform:translateY(-50%)}.product-status__link{display:block;padding:0;font-family:inherit;font-size:inherit;text-decoration:underline;text-align:left}.overlay{--color-overlay-bg: #fff;display:flex;flex-flow:column;position:fixed;outline:none;z-index:501;max-width:100vw;overflow:hidden}.ts-body .overlay{--color-overlay-bg: #252525}.overlay--smaller{background:var(--color-overlay-bg);max-height:80vh}@media only screen and (max-width: 47.9375rem){.overlay--smaller{bottom:0;left:0;width:100%;min-height:160px}}@media only screen and (min-width: 48rem),print{.overlay--smaller{width:auto;position:fixed;top:50%;left:50%;transform:translate(-50%, -50%)}}@media only screen and (min-width: 64rem){.overlay--smaller{width:calc(61.5rem - (calc(45.5rem / 6) * 2))}}.overlay--standard,.overlay--image-full{background:var(--color-overlay-bg);max-height:80vh}@media only screen and (max-width: 47.9375rem){.overlay--standard,.overlay--image-full{bottom:0;left:0;width:100%;min-height:160px}}@media only screen and (min-width: 48rem),print{.overlay--standard,.overlay--image-full{width:calc(45.5rem);position:fixed;top:50%;left:50%;transform:translate(-50%, -50%)}}@media only screen and (min-width: 64rem){.overlay--standard,.overlay--image-full{width:calc(61.5rem - (calc(61.5rem / 12) * 2))}}.overlay--wide{background:var(--color-overlay-bg);max-height:100%}@media only screen and (height >= 1024px){.overlay--wide{max-height:80%}}@media only screen and (max-width: 47.9375rem){.overlay--wide{bottom:0;left:0;width:80%;min-height:160px}}@media only screen and (min-width: 48rem),print{.overlay--wide{width:80%;position:fixed;top:50%;left:50%;transform:translate(-50%, -50%)}}@media only screen and (min-width: 64rem){.overlay--wide{width:80%}}.overlay--wide-extended-content{background:var(--color-overlay-bg);height:100%}@media only screen and (max-width: 47.9375rem){.overlay--wide-extended-content{bottom:0;left:0;width:100%;min-height:160px}}@media only screen and (min-width: 48rem),print{.overlay--wide-extended-content{width:100%;position:fixed;top:50%;left:50%;transform:translate(-50%, -50%)}}@media only screen and (min-width: 64rem){.overlay--wide-extended-content{width:100%}}@media only screen and (min-width: 48rem),print{.overlay--image-full{width:30.375rem}}.overlay--full{inset:0}.overlay--sidebar{top:0;bottom:0;right:0;width:100%}@media only screen and (min-width: 48rem),print{.overlay--sidebar{width:29.0625rem}}@media only screen and (min-width: 64rem){.overlay--sidebar{width:36.875rem}}.overlay__content{background:var(--color-overlay-bg);overflow-y:auto}.overlay.overlay--full .overlay__content{height:100%}.overlay.overlay--sidebar .overlay__content{height:100%}.overlay__content-inner{margin:50px auto 60px}@media only screen and (min-width: 48rem),print{.overlay.overlay--standard .overlay__content-inner{width:calc(100%/(10 / 8))}}@media only screen and (max-width: 47.9375rem){.overlay.overlay--wide .overlay__content-inner{width:calc(100%/(12 / 10))}}@media only screen and (min-width: 48rem),print{.overlay.overlay--wide .overlay__content-inner{width:calc(100%/(12 / 8))}}@media only screen and (min-width: 64rem){.overlay.overlay--wide .overlay__content-inner{width:calc(100%/(12 / 7));max-width:1440px}}@media only screen and (height <= 1080px){.overlay.overlay--wide .overlay__content-inner{margin:0 auto 60px}}@media only screen and (max-width: 47.9375rem){.overlay.overlay--wide-extended-content .overlay__content-inner{width:calc(100%/(10 / 8))}}@media only screen and (min-width: 48rem),print{.overlay.overlay--wide-extended-content .overlay__content-inner{width:calc(100%/(12 / 11))}}@media only screen and (min-width: 64rem){.overlay.overlay--wide-extended-content .overlay__content-inner{width:calc(100%/(12 / 11));max-width:1440px}}@media only screen and (height <= 1080px){.overlay.overlay--wide-extended-content .overlay__content-inner{margin:0 auto 60px}}@media only screen and (max-width: 47.9375rem){.overlay.overlay--full .overlay__content-inner{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}}@media only screen and (min-width: 48rem),print{.overlay.overlay--full .overlay__content-inner{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.overlay.overlay--full .overlay__content-inner{width:45.5rem}}@media print{.overlay.overlay--full .overlay__content-inner{width:auto}}@media only screen and (min-width: 48rem)and (min-width: 64rem){.overlay.overlay--full .overlay__content-inner{width:61.5rem}}.overlay.overlay--sidebar .overlay__content-inner{margin:40px 45px 60px}.overlay.overlay--sidebar .overlay__content-inner h3>span{overflow-wrap:break-word}@media only screen and (max-width: 47.9375rem){.overlay.overlay--sidebar .overlay__content-inner{padding-top:0}}.overlay.overlay--image-full .overlay__content-inner{margin:0}.overlay__content-inner.animated{animation:fadeInContent 1s 200ms both}.overlay__content-inner-more-compact{padding:0 1em;margin:20px auto 40px}@media only screen and (min-width: 48rem),print{.overlay.overlay--standard .overlay__content-inner-more-compact{width:calc(100%/(10 / 8))}}@media only screen and (min-width: 48rem),print{.overlay.overlay--wide .overlay__content-inner-more-compact{width:calc(100%/(10 / 8))}}@media only screen and (min-width: 48rem),print{.overlay.overlay--wide-extended-content .overlay__content-inner-more-compact{width:calc(100%/(10 / 8))}}@media only screen and (max-width: 47.9375rem){.overlay.overlay--full .overlay__content-inner-more-compact{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}}@media only screen and (min-width: 48rem),print{.overlay.overlay--full .overlay__content-inner-more-compact{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.overlay.overlay--full .overlay__content-inner-more-compact{width:45.5rem}}@media print{.overlay.overlay--full .overlay__content-inner-more-compact{width:auto}}@media only screen and (min-width: 48rem)and (min-width: 64rem){.overlay.overlay--full .overlay__content-inner-more-compact{width:61.5rem}}.overlay.overlay--sidebar .overlay__content-inner-more-compact{margin:40px 45px 60px}.overlay.overlay--sidebar .overlay__content-inner-more-compact h3>span{overflow-wrap:break-word}@media only screen and (max-width: 47.9375rem){.overlay.overlay--sidebar .overlay__content-inner-more-compact{padding-top:0}}.overlay.overlay--image-full .overlay__content-inner-more-compact{margin:0}.overlay__content-inner-more-compact.animated{animation:fadeInContent 1s 200ms both}.overlay__footer{border-top:var(--border2);background:var(--color-overlay-bg)}.overlay__wrapper{display:flex;flex-direction:column;justify-content:space-between;height:100%}.overlay__button{background:var(--color-overlay-bg)}@media only screen and (max-width: 47.9375rem){.overlay.overlay--standard .overlay__button{background:rgba(0,0,0,0)}.overlay.overlay--standard .overlay__button-inner{animation:none}}@media only screen and (max-width: 47.9375rem){.overlay.overlay--wide .overlay__button{background:rgba(0,0,0,0)}.overlay.overlay--wide .overlay__button-inner{animation:none}}@media only screen and (max-width: 47.9375rem){.overlay.overlay--wide-extended-content .overlay__button{background:rgba(0,0,0,0)}.overlay.overlay--wide-extended-content .overlay__button-inner{animation:none}}.overlay.overlay--image-full .overlay__button{position:absolute;right:0;top:0;z-index:1}.overlay__button-inner.animated{animation:fadeDown 1s 200ms both}.overlay__button .btn-close-x{float:right}.overlay__background{background-color:#000;position:fixed;width:100%;height:100%;top:0;left:0;z-index:500;overflow-y:hidden}.overlay__background--active{animation-name:fadeInBackground}.overlay__background--inactive{animation-name:fadeOutBackground}.cookie-setting{--icon-bg: #000;flex:1;position:relative;margin:0 10px}.ts-body .cookie-setting{--icon-bg: #B1B1B1}@media only screen and (max-width: 47.9375rem){.cookie-setting{display:grid;grid-gap:20px;grid-template:[row1-start] "icon title" auto [row1-end] [row2-start] "icon check" auto [row2-end] [row3-start] "icon desc" auto [row3-end]/64px 1fr;margin-bottom:30px}}@media only screen and (min-width: 48rem),print{.cookie-setting{display:flex;flex-flow:column}}.cookie-setting:not(:first-child)::after{position:absolute;transition:background-position 400ms;content:""}@media only screen and (max-width: 47.9375rem){.cookie-setting:not(:first-child)::after{top:0;left:31px;transform:translateY(-100%);width:2px;height:100%;background:linear-gradient(to bottom, #EDEDED 50%, #F37A1F 50%) 0 0/200% 200%}}@media only screen and (min-width: 48rem),print{.cookie-setting:not(:first-child)::after{top:31px;left:-10px;transform:translateX(-50%);height:2px;width:50%;background:linear-gradient(to right, #EDEDED 50%, #F37A1F 50%) 0 0/200% 200%}}.cookie-setting.active::after{background-position:-100% -100%}.cookie-setting__icon{grid-area:icon;z-index:1;--outline-offset: 2px;position:relative;background:linear-gradient(to bottom, var(--icon-bg) 50%, #F37A1F 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:inline-flex;justify-content:center;align-items:center;position:relative;height:4rem;width:4rem;border-radius:50%;color:#fff;padding:0;box-sizing:content-box}.cookie-setting__icon .icon-svg{fill:#fff}.cookie-setting__icon.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.cookie-setting__icon:hover{background-position:0 -100%}.cookie-setting__icon:hover .icon-svg{fill:#000}}.cookie-setting__icon:hover{color:var(--color2)}.ts-body .cookie-setting__icon:hover::after{--svg-filter-invert-white: invert(1);transition:.25s ease}@media only screen and (min-width: 48rem),print{.cookie-setting__icon{align-self:center;margin-bottom:20px}}.cookie-setting__icon img{width:60%}.cookie-setting__title{grid-area:title;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}@media only screen and (min-width: 48rem),print{.cookie-setting__title{align-self:center;margin-bottom:21px}}.cookie-setting__checkbox{grid-area:check;display:flex;align-items:center;text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;height:20px}@media only screen and (min-width: 48rem),print{.cookie-setting__checkbox{margin-bottom:16px}}.cookie-setting__desc{grid-area:desc;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}@media only screen and (max-width: 47.9375rem){.cookie-settings__overlay{max-height:100vh;background-color:#fff;height:100%}}.cookie-settings__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;margin-bottom:30px}.cookie-settings__selection{display:flex;justify-content:space-around;margin:0 -10px 30px;overflow:hidden}@media only screen and (max-width: 47.9375rem){.cookie-settings__selection{flex-flow:column}}.cookie-settings__list{margin-bottom:30px}.cookie-settings__list-group{flex:1}@media only screen and (max-width: 47.9375rem){.cookie-settings__list-group:not(:last-child){margin-bottom:30px}}@media only screen and (min-width: 48rem),print{.cookie-settings__list-group:not(:last-child){margin-right:20px}}.cookie-settings__list-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-bottom:20px}.cookie-settings__list-entries ul{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.cookie-settings__list-entries ul li{position:relative;padding:0 0 15px 10px;-webkit-hyphens:auto;hyphens:auto}.cookie-settings__list-entries ul li::before{position:absolute;left:0;content:"•"}.cookie-settings__list-entries ul li:last-child{padding-bottom:0}.cookie-settings__list-entries ul ul,.cookie-settings__list-entries ul ol{width:100%;padding-top:15px;padding-left:25px}.cookie-settings__list-entries ul ul ul,.cookie-settings__list-entries ul ul ol,.cookie-settings__list-entries ul ol ul,.cookie-settings__list-entries ul ol ol{padding-left:20px}.cookie-settings__list .read-more__inner{display:flex}@media only screen and (max-width: 47.9375rem){.cookie-settings__list .read-more__inner{flex-flow:column}}.cookie-settings__list .read-more__action{transition:margin-top 250ms}.cookie-settings__list .read-more__action.more{margin-top:0}.cookie-settings__explanatory{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:30px}.cookie-settings__explanatory a{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow)}.cookie-settings__learn-more{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.cookie-settings__learn-more::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.cookie-settings__learn-more:hover::after{transform:translate3d(10px, -50%, 0)}.cookie-settings__btn:not(.full){min-width:0}.cookie-settings__btn--confirm{position:relative;background:linear-gradient(to bottom, var(--color2) 50%, var(--color1) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:#b1b1b1;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center;height:3.75rem;--outline-offset: 2px;width:100%}.cookie-settings__btn--confirm.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.cookie-settings__btn--confirm:hover{background-position:0 -100%}}.cookie-settings__btn--confirm.active{border-color:rgba(0,0,0,0)}@media(hover: hover)and (pointer: fine){.cookie-settings__btn--confirm:hover{border-color:rgba(0,0,0,0)}}.cookie-settings__btn--confirm:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.cookie-settings__btn--confirm.active{color:var(--color2)}@media(hover: hover)and (pointer: fine){.cookie-settings__btn--confirm:hover{color:var(--color2)}}@media(max-width: 63.9375rem){.cookie-settings__btn--confirm{width:100%}}.ts-body .cookie-settings__btn--confirm{border:1px solid #fff}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.cookie-settings__btn--confirm:not(.full){min-width:calc(calc(45.5rem / 6) * 2);max-width:calc(calc(45.5rem / 6) * 3)}}@media only screen and (min-width: 64rem){.cookie-settings__btn--confirm:not(.full){min-width:calc(calc(61.5rem / 12) * 3);max-width:calc(calc(61.5rem / 12) * 4)}}.cookie-settings__btn--confirm.shrink{min-width:auto}.cookie-settings__btn--confirm:not(.full){min-width:0}@media only screen and (max-width: 47.9375rem){.cookie-settings__btn:not(.full){width:calc(100%/var(--button-count, 2));text-align:center}}@media only screen and (max-width: 47.9375rem){.cookie-settings__inner{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}}@media only screen and (min-width: 48rem),print{.cookie-settings__inner{width:calc(100%/(12 / 8))}}.cookie-settings__bottom-bar{display:flex;justify-content:flex-end;background:#ededed}@media only screen and (max-width: 47.9375rem){.cookie-settings__bottom-bar{flex-wrap:wrap}}@media only screen and (min-width: 48rem),print{.cookie-settings__bottom-bar{gap:1px}}.cookie-settings__privacy{--privacy-border-right: $line1;flex-grow:1;display:flex;padding:0 20px;align-items:center;border-right:var(--privacy-border-right)}.ts-body .cookie-settings__privacy{--privacy-border-right: none}@media only screen and (max-width: 47.9375rem){.cookie-settings__privacy{min-height:50px;order:1;justify-content:space-around}}.cookie-settings__privacy-link{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#000;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.cookie-settings__privacy-link:not(:last-child){margin-right:10px}.overlay-checkout{display:grid;grid-gap:30px 1.25rem}@media only screen and (max-width: 47.9375rem){.overlay-checkout{grid-template:"icon" "text";margin:0 20px}}@media only screen and (min-width: 48rem),print{.overlay-checkout{grid-template:"icon text text text text text text text";grid-template-columns:repeat(8, 1fr)}}.overlay-checkout-icon{grid-area:icon;flex-grow:0}@media only screen and (max-width: 47.9375rem){.overlay-checkout-icon{margin-bottom:30px}}.overlay-checkout-content{grid-area:text}.overlay-checkout-content a{text-decoration:underline}.overlay-checkout-header{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;margin-bottom:30px}.overlay-checkout-btn-wrapper{display:grid;grid-gap:1.25rem;margin-top:30px}@media only screen and (min-width: 48rem),print{.overlay-checkout-btn-wrapper{display:inline-grid;grid-template-columns:1fr 1fr}}.overlay-checkout-btn-wrapper__ignore-inner{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center}.overlay-checkout-btn-wrapper__ignore-inner::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.overlay-checkout-btn-wrapper__ignore-inner:hover::after{transform:translate3d(10px, -50%, 0)}.overlay--sidebar__title{margin-bottom:60px;text-transform:uppercase}.m_product-variantlist__label{margin-bottom:10px}.m_product-variantlist__selectbutton{width:100%;margin-bottom:10px}.notification_sidebar{padding:17px 45px;background:#ededed;border-top:1px solid #b1b1b1}.notification_sidebar>h2{margin:0;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.notification_sidebar>p{margin-top:10px;margin-bottom:-4px;text-align:justify}.unsupported-browser{display:flex;flex-direction:column}@media only screen and (max-width: 47.9375rem){.unsupported-browser{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}}.unsupported-browser__headline{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;margin-bottom:30px}@media only screen and (max-width: 47.9375rem){.unsupported-browser__headline{margin:0 20px 30px}}.unsupported-browser__description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:30px}@media only screen and (max-width: 47.9375rem){.unsupported-browser__description{margin:0 20px 30px}}.unsupported-browser__logos{display:flex;margin-bottom:20px}@media only screen and (max-width: 47.9375rem){.unsupported-browser__logos{flex-wrap:wrap;margin-right:10px;margin-left:10px}}.unsupported-browser__logo{display:flex;flex-direction:column;align-items:center;margin:10px}@media only screen and (max-width: 47.9375rem){.unsupported-browser__logo{flex-direction:row;flex-basis:calc(50% - 20px)}}.unsupported-browser__icon{width:64px;height:64px;-o-object-fit:contain;object-fit:contain;margin-bottom:20px}@media only screen and (max-width: 47.9375rem){.unsupported-browser__icon{width:32px;height:32px;margin:0}}.unsupported-browser__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}@media only screen and (max-width: 47.9375rem){.unsupported-browser__title{display:flex;align-items:center;margin-left:10px}}@media only screen and (max-width: 47.9375rem){.unsupported-browser .btn_highlight{margin:0 20px}}.overlay__footer__btn--confirm{position:relative;background:linear-gradient(to bottom, var(--color2) 50%, var(--color1) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:#b1b1b1;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center;height:3.75rem;--outline-offset: 2px;width:100%}.overlay__footer__btn--confirm.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.overlay__footer__btn--confirm:hover{background-position:0 -100%}}.overlay__footer__btn--confirm.active{border-color:rgba(0,0,0,0)}@media(hover: hover)and (pointer: fine){.overlay__footer__btn--confirm:hover{border-color:rgba(0,0,0,0)}}.overlay__footer__btn--confirm:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.overlay__footer__btn--confirm.active{color:var(--color2)}@media(hover: hover)and (pointer: fine){.overlay__footer__btn--confirm:hover{color:var(--color2)}}@media(max-width: 63.9375rem){.overlay__footer__btn--confirm{width:100%}}.ts-body .overlay__footer__btn--confirm{border:1px solid #fff}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.overlay__footer__btn--confirm:not(.full){min-width:calc(calc(45.5rem / 6) * 2);max-width:calc(calc(45.5rem / 6) * 3)}}@media only screen and (min-width: 64rem){.overlay__footer__btn--confirm:not(.full){min-width:calc(calc(61.5rem / 12) * 3);max-width:calc(calc(61.5rem / 12) * 4)}}.overlay__footer__btn--confirm.shrink{min-width:auto}@media only screen and (max-width: 47.9375rem){.overlay__footer__btn:not(.full){width:50%;text-align:center}}.overlay__footer-bar{display:flex;justify-content:flex-end;background:#ededed}@media only screen and (max-width: 47.9375rem){.overlay__footer-bar{flex-wrap:wrap}}.overlay-cart{display:grid;grid-gap:30px 1.25rem}@media only screen and (max-width: 47.9375rem){.overlay-cart{grid-template:"icon" "text";margin:0 20px}}@media only screen and (min-width: 48rem),print{.overlay-cart{grid-template:"icon text text text text text text text";grid-template-columns:repeat(8, 1fr)}}.overlay-cart-icon{grid-area:icon;flex-grow:0}@media only screen and (max-width: 47.9375rem){.overlay-cart-icon{margin-bottom:30px}}.overlay-cart-content{grid-area:text}.overlay-cart-content a{text-decoration:underline}.overlay-cart-header{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;margin-bottom:30px}.overlay-cart-btn-wrapper{display:grid;grid-gap:1.25rem;margin-top:30px}@media only screen and (min-width: 48rem),print{.overlay-cart-btn-wrapper{display:inline-grid;grid-template-columns:1fr 1fr}}.overlay-picked-up__footer{display:flex;margin-top:50px}@media only screen and (min-width: 48rem),print{.overlay-picked-up__btn{width:auto}}.overlay-picked-up__btn:first-child{margin-right:10px}.overlay-picked-up .overlay__content-inner{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.overlay-picked-up .overlay__content-inner{width:45.5rem}}@media print{.overlay-picked-up .overlay__content-inner{width:auto}}@media only screen and (min-width: 64rem){.overlay-picked-up .overlay__content-inner{width:61.5rem}}.eloqua-response-overlay-content ul,.eloqua-response-overlay-content ol,.eloqua-response-overlay-content li{list-style:revert !important;margin-block-start:revert !important;margin-block-end:revert !important;margin-inline-start:revert !important;margin-inline-end:revert !important;padding-inline-start:revert !important}.list-overview__desc{display:flex;justify-content:space-between;margin-bottom:40px}.list-overview__desc .btn_standard{min-width:240px;max-width:240px}.list-overview__desc-list{align-self:center}.list-overview__count{justify-content:center;display:flex;align-items:center;position:relative;height:32px;width:32px;border-radius:50%;background:#000;color:#fff}.list-overview__count-digit{font-size:.875rem;line-height:1.2;font-weight:bold;margin-top:2px}.list-overview__name{margin-top:5px}.list-overview__overlay{text-align:center}.list-overview__product{display:grid;grid-gap:30px 1.25rem;position:relative;box-sizing:border-box;padding:40px 0 35px;grid-template:[row1-start] "check info info info info info . . price price price price" auto [row1-end] [row2-start] "check info info info info info . move move move move move" auto [row2-end];grid-template-columns:repeat(12, 1fr)}.list-overview.list{border-bottom:1px solid #b1b1b1}.list-overview:first-child.list{border-top:1px solid #b1b1b1}.list-overview:first-child.list__none{border-top:none}.list-overview__detail{grid-area:info;margin-left:-33px;margin-top:4px}.list-overview__detail-name{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;cursor:pointer;display:block;margin-bottom:5px}.list-overview__detail-time{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-right:15px;margin-bottom:18px}.list-overview__detail-icon{margin-right:10px}.list-overview__detail-icon-right{transform:rotate(270deg);vertical-align:middle}.list-overview__detail-icon-text{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;font-size:.875rem;margin-right:20px}.list-overview__detail-text{display:flex;margin-top:12px}.list-overview__price{grid-area:price;display:flex;justify-content:flex-end;margin-top:40px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.list-overview__price-text{margin-right:10px}.list-overview__move{grid-area:move;align-items:flex-end;display:flex;justify-content:flex-end}.list-overview__move-icon-bold{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;font-size:.875rem;cursor:pointer;margin-left:20px}.list-overview__move-icon-bold .no-underline{box-shadow:unset}.list-overview__flag{display:flex}.list-overview__flag-inner{padding-right:15px}.wishlist-table{width:100% !important}.wishlist-table .wishlist-cell{padding:unset;border-bottom:1px solid #b1b1b1;background-color:#fff}.wishlist-table .wishlist-cell:first-child{border-top:1px solid #b1b1b1}.tile_product-standard{display:flex;padding:1.25rem;border-bottom:1px solid #b1b1b1;background:#fff;box-sizing:border-box;cursor:pointer;position:relative}.tile_product-standard:has(a.sr-only:focus-visible){outline:var(--outline-width) solid var(--outline-color)}.column-control .tile_product-standard{height:100%}@media only screen and (max-width: 47.9375rem){.column-control .swiper-slide .tile_product-standard{padding-left:0;padding-right:0}}.tile_product-standard__wrapper{display:flex;flex-direction:column;justify-content:space-between;flex:1}.tile_product-standard__section{display:flex;flex-direction:column}.tile_product-standard__product-link{position:absolute;top:0;left:0;right:0;height:100%;z-index:1}.tile_product-standard__flags{display:flex;flex-wrap:wrap;min-height:25px;max-height:50px;padding-bottom:10px}.tile_product-standard__flags button{z-index:3}.tile_product-standard__flags>*{position:relative}.tile_product-standard__image-wrapper{width:100%;margin:0 auto}.tile_product-standard__label{height:24px;margin-bottom:8px}.tile_product-standard__title{margin-bottom:12px;z-index:2}.tile_product-standard__title-inner{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;margin-bottom:0}.tile_product-standard__category{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:block;margin-top:2px}.tile_product-standard__subline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:15px}.recommended .tile_product-standard__subline{flex:1}.tile_product-standard__status{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:flex;margin-bottom:15px}.tile_product-standard__status .icon-svg{flex-shrink:0;margin-right:10px}.tile_product-standard__status .icon-svg.circle{margin-top:2px}.tile_product-standard__price-info{display:inline-flex;flex-direction:column;width:100%}.tile_product-standard__commerce-info{margin-top:auto;display:flex;align-items:flex-end;justify-content:space-between;gap:.625rem}.tile_product-standard__commerce-info--no-price{justify-content:flex-end;align-items:center}.tile_product-standard__buy-button{margin-right:0;flex-shrink:0;z-index:2}.tile_product-standard__button-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.tile_product-standard__unit-price{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.tile_product-standard__info-wrapper{display:flex;flex-flow:column;flex-grow:1;justify-content:space-between}@media only screen and (min-width: 48rem),print{.column-control--has-cta .tile_product-standard__info-wrapper--no-cta{margin-bottom:81px}}.column-control--has-cta .swiper-slide .tile_product-standard__info-wrapper--no-cta{margin-bottom:81px}.tile_product-standard__cta-box{background:#ededed;padding:16px;height:100%;margin-top:20px;min-height:62px;display:flex;align-items:center;box-sizing:border-box;z-index:2}.tile_product-standard__cta-box span{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.tile_product-standard__cta-box span::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.tile_product-standard__cta-box span:hover::after{transform:translate3d(10px, -50%, 0)}.tile_product-standard__cta-button{z-index:2}.tile_product-standard .tooltip{width:calc(100% + 30px);top:-25px}@media only screen and (min-width: 64rem){.tile_product-standard .tooltip{width:100vw}}@media print{.tile_product-standard .tooltip{display:none}}.tile_product-standard .t-border::before{border-top:18px solid #fff;border-left:20px solid rgba(0,0,0,0);border-right:20px solid rgba(0,0,0,0);top:-27px}.tile_product-standard-list{display:flex;padding:1.25rem;border-bottom:1px solid #b1b1b1;background:#fff;box-sizing:border-box;cursor:pointer;position:relative;padding:25px 10px 20px}.tile_product-standard-list:has(a.sr-only:focus-visible){outline:var(--outline-width) solid var(--outline-color)}.column-control .tile_product-standard-list{height:100%}@media only screen and (max-width: 47.9375rem){.column-control .swiper-slide .tile_product-standard-list{padding-left:0;padding-right:0}}.tile_product-standard-list__wrapper{display:flex;flex-direction:column;justify-content:space-between;flex:1}.tile_product-standard-list__section{display:flex;flex-direction:column}.tile_product-standard-list__product-link{position:absolute;top:0;left:0;right:0;height:100%;z-index:1}.tile_product-standard-list__flags{display:flex;flex-wrap:wrap;min-height:25px;max-height:50px;padding-bottom:10px}.tile_product-standard-list__flags button{z-index:3}.tile_product-standard-list__flags>*{position:relative}.tile_product-standard-list__image-wrapper{width:100%;margin:0 auto}.tile_product-standard-list__label{height:24px;margin-bottom:8px}.tile_product-standard-list__title{margin-bottom:12px;z-index:2}.tile_product-standard-list__title-inner{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;margin-bottom:0}.tile_product-standard-list__category{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:block;margin-top:2px}.tile_product-standard-list__subline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:15px}.recommended .tile_product-standard-list__subline{flex:1}.tile_product-standard-list__status{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:flex;margin-bottom:15px}.tile_product-standard-list__status .icon-svg{flex-shrink:0;margin-right:10px}.tile_product-standard-list__status .icon-svg.circle{margin-top:2px}.tile_product-standard-list__price-info{display:inline-flex;flex-direction:column;width:100%}.tile_product-standard-list__commerce-info{margin-top:auto;display:flex;align-items:flex-end;justify-content:space-between;gap:.625rem}.tile_product-standard-list__commerce-info--no-price{justify-content:flex-end;align-items:center}.tile_product-standard-list__buy-button{margin-right:0;flex-shrink:0;z-index:2}.tile_product-standard-list__button-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.tile_product-standard-list__unit-price{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.tile_product-standard-list__info-wrapper{display:flex;flex-flow:column;flex-grow:1;justify-content:space-between}@media only screen and (min-width: 48rem),print{.column-control--has-cta .tile_product-standard-list__info-wrapper--no-cta{margin-bottom:81px}}.column-control--has-cta .swiper-slide .tile_product-standard-list__info-wrapper--no-cta{margin-bottom:81px}.tile_product-standard-list__cta-box{background:#ededed;padding:16px;height:100%;margin-top:20px;min-height:62px;display:flex;align-items:center;box-sizing:border-box;z-index:2}.tile_product-standard-list__cta-box span{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.tile_product-standard-list__cta-box span::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.tile_product-standard-list__cta-box span:hover::after{transform:translate3d(10px, -50%, 0)}.tile_product-standard-list__cta-button{z-index:2}@media(min-width: 33.125rem){.tile_product-standard-list__wrapper{flex-direction:row}.tile_product-standard-list__flags{position:absolute;bottom:100%;padding:0}.tile_product-standard-list__title{margin-top:10px}}.tile_product-standard-list__image-wrapper{flex-shrink:0;width:96px}@media(min-width: 33.125rem){.tile_product-standard-list__image-wrapper{width:138px;margin-right:1.25rem}}.tile_product-standard-list__info-wrapper{flex:1}.tile_product-hero{--outline-offset: -2px;display:flex;padding:1.25rem;border-bottom:1px solid #b1b1b1;background:#fff;box-sizing:border-box;cursor:pointer;position:relative}.tile_product-hero:has(a.sr-only:focus-visible){outline:var(--outline-width) solid var(--outline-color)}.column-control .tile_product-hero{height:100%}@media only screen and (max-width: 47.9375rem){.column-control .swiper-slide .tile_product-hero{padding-left:0;padding-right:0}}.tile_product-hero__wrapper{display:flex;flex-direction:column;justify-content:space-between;flex:1}.tile_product-hero__section{display:flex;flex-direction:column}.tile_product-hero__product-link{position:absolute;top:0;left:0;right:0;height:100%;z-index:1}.tile_product-hero__flags{display:flex;flex-wrap:wrap;min-height:25px;max-height:50px;padding-bottom:10px}.tile_product-hero__flags button{z-index:3}.tile_product-hero__flags>*{position:relative}.tile_product-hero__image-wrapper{width:100%;margin:0 auto}.tile_product-hero__label{height:24px;margin-bottom:8px}.tile_product-hero__title{margin-bottom:12px;z-index:2}.tile_product-hero__title-inner{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;margin-bottom:0}.tile_product-hero__category{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:block;margin-top:2px}.tile_product-hero__subline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:15px}.recommended .tile_product-hero__subline{flex:1}.tile_product-hero__status{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:flex;margin-bottom:15px}.tile_product-hero__status .icon-svg{flex-shrink:0;margin-right:10px}.tile_product-hero__status .icon-svg.circle{margin-top:2px}.tile_product-hero__price-info{display:inline-flex;flex-direction:column;width:100%}.tile_product-hero__commerce-info{margin-top:auto;display:flex;align-items:flex-end;justify-content:space-between;gap:.625rem}.tile_product-hero__commerce-info--no-price{justify-content:flex-end;align-items:center}.tile_product-hero__buy-button{margin-right:0;flex-shrink:0;z-index:2}.tile_product-hero__button-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.tile_product-hero__unit-price{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.tile_product-hero__info-wrapper{display:flex;flex-flow:column;flex-grow:1;justify-content:space-between}@media only screen and (min-width: 48rem),print{.column-control--has-cta .tile_product-hero__info-wrapper--no-cta{margin-bottom:81px}}.column-control--has-cta .swiper-slide .tile_product-hero__info-wrapper--no-cta{margin-bottom:81px}.tile_product-hero__cta-box{background:#ededed;padding:16px;height:100%;margin-top:20px;min-height:62px;display:flex;align-items:center;box-sizing:border-box;z-index:2}.tile_product-hero__cta-box span{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.tile_product-hero__cta-box span::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.tile_product-hero__cta-box span:hover::after{transform:translate3d(10px, -50%, 0)}.tile_product-hero__cta-button{z-index:2}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.tile_product-hero__image-wrapper{width:236px}}@media only screen and (min-width: 64rem){.tile_product-hero__image-wrapper{width:245px}}.tile_product-hero-small{display:flex;padding:1.25rem;border-bottom:1px solid #b1b1b1;background:#fff;box-sizing:border-box;cursor:pointer;position:relative}.tile_product-hero-small:has(a.sr-only:focus-visible){outline:var(--outline-width) solid var(--outline-color)}.column-control .tile_product-hero-small{height:100%}@media only screen and (max-width: 47.9375rem){.column-control .swiper-slide .tile_product-hero-small{padding-left:0;padding-right:0}}.tile_product-hero-small__wrapper{display:flex;flex-direction:column;justify-content:space-between;flex:1}.tile_product-hero-small__section{display:flex;flex-direction:column}.tile_product-hero-small__product-link{position:absolute;top:0;left:0;right:0;height:100%;z-index:1}.tile_product-hero-small__flags{display:flex;flex-wrap:wrap;min-height:25px;max-height:50px;padding-bottom:10px}.tile_product-hero-small__flags button{z-index:3}.tile_product-hero-small__flags>*{position:relative}.tile_product-hero-small__image-wrapper{width:100%;margin:0 auto}.tile_product-hero-small__label{height:24px;margin-bottom:8px}.tile_product-hero-small__title{margin-bottom:12px;z-index:2}.tile_product-hero-small__title-inner{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;margin-bottom:0}.tile_product-hero-small__category{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:block;margin-top:2px}.tile_product-hero-small__subline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:15px}.recommended .tile_product-hero-small__subline{flex:1}.tile_product-hero-small__status{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:flex;margin-bottom:15px}.tile_product-hero-small__status .icon-svg{flex-shrink:0;margin-right:10px}.tile_product-hero-small__status .icon-svg.circle{margin-top:2px}.tile_product-hero-small__price-info{display:inline-flex;flex-direction:column;width:100%}.tile_product-hero-small__commerce-info{margin-top:auto;display:flex;align-items:flex-end;justify-content:space-between;gap:.625rem}.tile_product-hero-small__commerce-info--no-price{justify-content:flex-end;align-items:center}.tile_product-hero-small__buy-button{margin-right:0;flex-shrink:0;z-index:2}.tile_product-hero-small__button-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.tile_product-hero-small__unit-price{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.tile_product-hero-small__info-wrapper{display:flex;flex-flow:column;flex-grow:1;justify-content:space-between}@media only screen and (min-width: 48rem),print{.column-control--has-cta .tile_product-hero-small__info-wrapper--no-cta{margin-bottom:81px}}.column-control--has-cta .swiper-slide .tile_product-hero-small__info-wrapper--no-cta{margin-bottom:81px}.tile_product-hero-small__cta-box{background:#ededed;padding:16px;height:100%;margin-top:20px;min-height:62px;display:flex;align-items:center;box-sizing:border-box;z-index:2}.tile_product-hero-small__cta-box span{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.tile_product-hero-small__cta-box span::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.tile_product-hero-small__cta-box span:hover::after{transform:translate3d(10px, -50%, 0)}.tile_product-hero-small__cta-button{z-index:2}.tile_product-hero-small__image-wrapper{width:160px}.tile-hero{--outline-offset: 4px;--outline-width: 4px;display:flex;padding:1.25rem;border-bottom:1px solid #b1b1b1;background:#fff;box-sizing:border-box;cursor:pointer;position:relative;height:100%;flex-direction:column;gap:.9375rem;justify-content:space-between;border-bottom:none;cursor:pointer}.tile-hero:has(a.sr-only:focus-visible){outline:var(--outline-width) solid var(--outline-color)}.column-control .tile-hero{height:100%}@media only screen and (max-width: 47.9375rem){.column-control .swiper-slide .tile-hero{padding-left:0;padding-right:0}}.tile-hero__wrapper{display:flex;flex-direction:column;justify-content:space-between;flex:1}.tile-hero__section{display:flex;flex-direction:column}.tile-hero__product-link{position:absolute;top:0;left:0;right:0;height:100%;z-index:1}.tile-hero__flags{display:flex;flex-wrap:wrap;min-height:25px;max-height:50px;padding-bottom:10px}.tile-hero__flags button{z-index:3}.tile-hero__flags>*{position:relative}.tile-hero__image-wrapper{width:100%;margin:0 auto}.tile-hero__label{height:24px;margin-bottom:8px}.tile-hero__title{margin-bottom:12px;z-index:2}.tile-hero__title-inner{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;margin-bottom:0}.tile-hero__category{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:block;margin-top:2px}.tile-hero__subline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:15px}.recommended .tile-hero__subline{flex:1}.tile-hero__status{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:flex;margin-bottom:15px}.tile-hero__status .icon-svg{flex-shrink:0;margin-right:10px}.tile-hero__status .icon-svg.circle{margin-top:2px}.tile-hero__price-info{display:inline-flex;flex-direction:column;width:100%}.tile-hero__commerce-info{margin-top:auto;display:flex;align-items:flex-end;justify-content:space-between;gap:.625rem}.tile-hero__commerce-info--no-price{justify-content:flex-end;align-items:center}.tile-hero__buy-button{margin-right:0;flex-shrink:0;z-index:2}.tile-hero__button-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.tile-hero__unit-price{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.tile-hero__info-wrapper{display:flex;flex-flow:column;flex-grow:1;justify-content:space-between}@media only screen and (min-width: 48rem),print{.column-control--has-cta .tile-hero__info-wrapper--no-cta{margin-bottom:81px}}.column-control--has-cta .swiper-slide .tile-hero__info-wrapper--no-cta{margin-bottom:81px}.tile-hero__cta-box{background:#ededed;padding:16px;height:100%;margin-top:20px;min-height:62px;display:flex;align-items:center;box-sizing:border-box;z-index:2}.tile-hero__cta-box span{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.tile-hero__cta-box span::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.tile-hero__cta-box span:hover::after{transform:translate3d(10px, -50%, 0)}.tile-hero__cta-button{z-index:2}@media only screen and (max-width: 47.9375rem){.tile-hero{padding-bottom:.625rem}}.tile-hero__headline{width:100%}.tile-hero__wrapper{display:grid;grid-template-columns:1fr 1fr;gap:.9375rem}.tile-hero__buy-button{margin-top:1.875rem}.tile-hero__flags:empty{padding:0;height:0;min-height:0}.tile-hero__info-wrapper{justify-content:center}@media only screen and (min-width: 48rem),print{.tile-hero{padding:2rem}}.tile-hero__headline{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2}.tile-hero__headline::after{display:block;content:"";background-color:var(--color1)}.tile-hero__headline::after{width:16px;height:3px;margin-top:3px}@media only screen and (min-width: 48rem),print{.tile-hero__headline::after{width:18px;height:3px;margin-top:5px}}.tile-full-width-hero{display:flex;padding:1.25rem;border-bottom:1px solid #b1b1b1;background:#fff;box-sizing:border-box;cursor:pointer;position:relative;height:100%;flex-direction:column;gap:.9375rem;justify-content:space-between;border-bottom:none;cursor:pointer;gap:1.5rem}.tile-full-width-hero:has(a.sr-only:focus-visible){outline:var(--outline-width) solid var(--outline-color)}.column-control .tile-full-width-hero{height:100%}@media only screen and (max-width: 47.9375rem){.column-control .swiper-slide .tile-full-width-hero{padding-left:0;padding-right:0}}.tile-full-width-hero__wrapper{display:flex;flex-direction:column;justify-content:space-between;flex:1}.tile-full-width-hero__section{display:flex;flex-direction:column}.tile-full-width-hero__product-link{position:absolute;top:0;left:0;right:0;height:100%;z-index:1}.tile-full-width-hero__flags{display:flex;flex-wrap:wrap;min-height:25px;max-height:50px;padding-bottom:10px}.tile-full-width-hero__flags button{z-index:3}.tile-full-width-hero__flags>*{position:relative}.tile-full-width-hero__image-wrapper{width:100%;margin:0 auto}.tile-full-width-hero__label{height:24px;margin-bottom:8px}.tile-full-width-hero__title{margin-bottom:12px;z-index:2}.tile-full-width-hero__title-inner{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;margin-bottom:0}.tile-full-width-hero__category{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:block;margin-top:2px}.tile-full-width-hero__subline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:15px}.recommended .tile-full-width-hero__subline{flex:1}.tile-full-width-hero__status{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:flex;margin-bottom:15px}.tile-full-width-hero__status .icon-svg{flex-shrink:0;margin-right:10px}.tile-full-width-hero__status .icon-svg.circle{margin-top:2px}.tile-full-width-hero__price-info{display:inline-flex;flex-direction:column;width:100%}.tile-full-width-hero__commerce-info{margin-top:auto;display:flex;align-items:flex-end;justify-content:space-between;gap:.625rem}.tile-full-width-hero__commerce-info--no-price{justify-content:flex-end;align-items:center}.tile-full-width-hero__buy-button{margin-right:0;flex-shrink:0;z-index:2}.tile-full-width-hero__button-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.tile-full-width-hero__unit-price{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.tile-full-width-hero__info-wrapper{display:flex;flex-flow:column;flex-grow:1;justify-content:space-between}@media only screen and (min-width: 48rem),print{.column-control--has-cta .tile-full-width-hero__info-wrapper--no-cta{margin-bottom:81px}}.column-control--has-cta .swiper-slide .tile-full-width-hero__info-wrapper--no-cta{margin-bottom:81px}.tile-full-width-hero__cta-box{background:#ededed;padding:16px;height:100%;margin-top:20px;min-height:62px;display:flex;align-items:center;box-sizing:border-box;z-index:2}.tile-full-width-hero__cta-box span{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.tile-full-width-hero__cta-box span::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.tile-full-width-hero__cta-box span:hover::after{transform:translate3d(10px, -50%, 0)}.tile-full-width-hero__cta-button{z-index:2}@media only screen and (max-width: 47.9375rem){.tile-full-width-hero{padding-bottom:.625rem}}.tile-full-width-hero__headline{width:100%}.tile-full-width-hero__wrapper{display:grid;grid-template-columns:1fr 1fr;gap:.9375rem}.tile-full-width-hero__buy-button{margin-top:1.875rem}.tile-full-width-hero__flags:empty{padding:0;height:0;min-height:0}.tile-full-width-hero__info-wrapper{justify-content:center}@media only screen and (min-width: 48rem),print{.tile-full-width-hero{padding:2rem}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.tile-full-width-hero{display:grid;grid:"headline headline" auto "image info" auto "image button" 1fr/1fr 1fr}.tile-full-width-hero__wrapper{display:contents}.tile-full-width-hero__headline{grid-area:headline}.tile-full-width-hero__image-wrapper{grid-area:image}.tile-full-width-hero__info-wrapper{grid-area:info}.tile-full-width-hero__section{min-width:10rem}.tile-full-width-hero__cta-button{grid-area:button}}@media only screen and (min-width: 96rem){.tile-full-width-hero{display:grid;grid:"headline headline" auto "image info" auto "image button" 1fr/minmax(120px, 200px) fit-content(75%)}.tile-full-width-hero__wrapper{display:contents}.tile-full-width-hero__headline{grid-area:headline}.tile-full-width-hero__image-wrapper{grid-area:image}.tile-full-width-hero__info-wrapper{grid-area:info}.tile-full-width-hero__section{min-width:10rem}.tile-full-width-hero__cta-button{grid-area:button}}@media only screen and (max-width: 47.9375rem){.tile-full-width-hero__wrapper{grid-template-columns:1fr 2fr}}.tile-full-width-hero__info-wrapper{justify-content:flex-start}.tile-full-width-hero__headline{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;margin-bottom:0}.tile-full-width-hero__headline::after{display:block;content:"";background-color:var(--color1)}.tile-full-width-hero__headline::after{width:16px;height:3px;margin-top:3px}@media only screen and (min-width: 48rem),print{.tile-full-width-hero__headline::after{width:18px;height:3px;margin-top:5px}}@media(max-width: 119.9375rem){.tile-full-width-hero__category{display:none}}.versions-flag{display:flex;justify-content:flex-start;align-items:stretch;flex-flow:row wrap;width:-moz-fit-content;width:fit-content;padding:0}.versions-flag__inner{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;-webkit-hyphens:none;hyphens:none;display:flex;align-items:center;height:24px;margin:0 1px 1px 0;padding:0 9px;background-color:#b1b1b1}.versions-flag__inner>span{margin-left:5px}.offline-promotions-flag{display:flex;justify-content:flex-start;align-items:stretch;flex-flow:row wrap;width:-moz-fit-content;width:fit-content;padding:0}.offline-promotions-flag__inner{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;-webkit-hyphens:none;hyphens:none;display:flex;align-items:center;height:24px;margin:0 1px 1px 0;padding:0 9px;background-color:#249abe}.offline-promotions-flag__inner>span{margin-left:5px}.tile-product-campaign{display:flex;padding:1.25rem;border-bottom:1px solid #b1b1b1;background:#fff;box-sizing:border-box;cursor:pointer;position:relative;height:100%;flex-direction:column;gap:.9375rem;justify-content:space-between;border-bottom:none;cursor:pointer}.tile-product-campaign:has(a.sr-only:focus-visible){outline:var(--outline-width) solid var(--outline-color)}.column-control .tile-product-campaign{height:100%}@media only screen and (max-width: 47.9375rem){.column-control .swiper-slide .tile-product-campaign{padding-left:0;padding-right:0}}.tile-product-campaign__wrapper{display:flex;flex-direction:column;justify-content:space-between;flex:1}.tile-product-campaign__section{display:flex;flex-direction:column}.tile-product-campaign__product-link{position:absolute;top:0;left:0;right:0;height:100%;z-index:1}.tile-product-campaign__flags{display:flex;flex-wrap:wrap;min-height:25px;max-height:50px;padding-bottom:10px}.tile-product-campaign__flags button{z-index:3}.tile-product-campaign__flags>*{position:relative}.tile-product-campaign__image-wrapper{width:100%;margin:0 auto}.tile-product-campaign__label{height:24px;margin-bottom:8px}.tile-product-campaign__title{margin-bottom:12px;z-index:2}.tile-product-campaign__title-inner{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;margin-bottom:0}.tile-product-campaign__category{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:block;margin-top:2px}.tile-product-campaign__subline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:15px}.recommended .tile-product-campaign__subline{flex:1}.tile-product-campaign__status{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:flex;margin-bottom:15px}.tile-product-campaign__status .icon-svg{flex-shrink:0;margin-right:10px}.tile-product-campaign__status .icon-svg.circle{margin-top:2px}.tile-product-campaign__price-info{display:inline-flex;flex-direction:column;width:100%}.tile-product-campaign__commerce-info{margin-top:auto;display:flex;align-items:flex-end;justify-content:space-between;gap:.625rem}.tile-product-campaign__commerce-info--no-price{justify-content:flex-end;align-items:center}.tile-product-campaign__buy-button{margin-right:0;flex-shrink:0;z-index:2}.tile-product-campaign__button-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.tile-product-campaign__unit-price{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.tile-product-campaign__info-wrapper{display:flex;flex-flow:column;flex-grow:1;justify-content:space-between}@media only screen and (min-width: 48rem),print{.column-control--has-cta .tile-product-campaign__info-wrapper--no-cta{margin-bottom:81px}}.column-control--has-cta .swiper-slide .tile-product-campaign__info-wrapper--no-cta{margin-bottom:81px}.tile-product-campaign__cta-box{background:#ededed;padding:16px;height:100%;margin-top:20px;min-height:62px;display:flex;align-items:center;box-sizing:border-box;z-index:2}.tile-product-campaign__cta-box span{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.tile-product-campaign__cta-box span::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.tile-product-campaign__cta-box span:hover::after{transform:translate3d(10px, -50%, 0)}.tile-product-campaign__cta-button{z-index:2}@media only screen and (max-width: 47.9375rem){.tile-product-campaign{padding-bottom:.625rem}}.tile-product-campaign__headline{width:100%}.tile-product-campaign__wrapper{display:grid;grid-template-columns:1fr 1fr;gap:.9375rem}.tile-product-campaign__buy-button{margin-top:1.875rem}.tile-product-campaign__flags:empty{padding:0;height:0;min-height:0}.tile-product-campaign__info-wrapper{justify-content:center}.tile-product-campaign__headline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2}.tile-product-campaign__headline::after{display:block;content:"";background-color:var(--color1)}.tile-product-campaign__headline::after{width:23px;height:4px;margin-top:5px}@media only screen and (min-width: 48rem),print{.tile-product-campaign__headline::after{width:21px;height:4px;margin-top:6px}}.productpicker{position:relative;display:block;min-height:300px}.m_product-tiles-lite{box-sizing:border-box;height:100%;border:1px solid #b1b1b1;display:flex;flex-direction:column;justify-content:space-between;flex:1;position:relative}@media print{.m_product-tiles-lite{display:block;page-break-inside:avoid;-moz-column-break-inside:avoid;break-inside:avoid}}.m_product-tiles-lite:last-child{margin-right:0 !important}.m_product-tiles-lite__section{display:flex;flex-direction:column}.m_product-tiles-lite__flags{display:grid;grid-template-columns:1fr minmax(calc(100% - 40px), auto) 1fr;margin-left:-20px;margin-right:-20px;min-height:25px;max-height:50px;padding-bottom:10px}.m_product-tiles-lite__flags>*{position:relative}.m_product-tiles-lite__flags .offline-promotions-flag{max-width:100%;height:24px;background-color:#249abe;align-items:center}.m_product-tiles-lite__flags .offline-promotions-flag__inner{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;height:unset;background-color:unset}.m_product-tiles-lite__flags .offline-promotions-flag__container{grid-column-start:2}.m_product-tiles-lite__flags .m_infobox_flag{grid-column-start:2}.m_product-tiles-lite__image{display:flex;justify-content:center;align-items:center;width:100%;height:140px}.m_product-tiles-lite__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;overflow-wrap:break-word;margin-bottom:12px}.m_product-tiles-lite__price-info{display:inline-flex;flex-direction:column;width:100%}.m_product-tiles-lite__original-price{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;height:16px;text-decoration:line-through}.m_product-tiles-lite__buy-price{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;height:20px;margin-top:5px}.m_product-tiles-lite__commerce-info{margin-top:auto;display:flex;align-items:flex-end;justify-content:space-between;gap:.625rem}.m_product-tiles-lite__commerce-info--no-price{justify-content:flex-end;align-items:center}.m_product-tiles-lite__buy-button{margin-right:0;flex-shrink:0}.m_product-tiles-lite__button-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.m_product-tiles-lite__info-wrapper{background:#ededed;min-height:180px;display:flex;flex-flow:column;flex-grow:1;justify-content:space-between;padding:0 20px 20px}.m_product-tiles-lite__slider{position:relative}@media only screen and (min-width: 48rem),print{.m_product-tiles-lite__slider:hover .swiper__next,.m_product-tiles-lite__slider:hover .swiper__prev{opacity:1;transition:opacity 1s}}.m_product-tiles-lite__slider .swiper-slide{max-width:17.5rem}@media print{.m_product-tiles-lite__slider .swiper-slide{max-width:calc(25% - 20px)}.m_product-tiles-lite__slider .swiper-slide:nth-child(n+5){display:none}}@media only screen and (max-width: 47.9375rem){.m_product-tiles-lite__slider .swiper__prev{display:none}}@media only screen and (min-width: 48rem),print{.m_product-tiles-lite__slider .swiper__prev{opacity:0;position:absolute;left:0;top:135px;background-color:#000;z-index:90;width:32px;height:32px}}@media only screen and (max-width: 47.9375rem){.m_product-tiles-lite__slider .swiper__next{display:none}}@media only screen and (min-width: 48rem),print{.m_product-tiles-lite__slider .swiper__next{opacity:0;position:absolute;right:0;top:135px;background-color:#000;z-index:90;width:32px;height:32px}}.m_product-tiles-lite__slider .swiper__next,.m_product-tiles-lite__slider .swiper__prev{display:flex;align-items:center;justify-content:center}.m_product-tiles-lite__slider .swiper__dots{margin-top:15px;display:flex;justify-content:center}@media print{.m_product-tiles-lite__slider .swiper__dots{display:none}}.icon-trusted-shops{width:45px;height:45px}.icon-trusted-shops::before{content:"";background-image:url(stihl-styles/resources/icons/logo-trusted_shops.svg);background-size:45px 45px !important;width:45px !important;height:45px !important;display:inline-block}.icon-tuev{width:45px;height:45px}.icon-tuev::before{content:"";background-image:url(stihl-styles/resources/icons/logo-tuev_sued.svg);background-size:45px 45px !important;width:45px !important;height:45px !important;display:inline-block}.icon-paypal{width:50px;height:32px}.icon-paypal::before{content:"";background-image:url(stihl-styles/resources/icons/logo-paypal.svg);background-size:50px 32px !important;width:50px !important;height:32px !important;display:inline-block}.icon-master{width:50px;height:32px}.icon-master::before{content:"";background-image:url(stihl-styles/resources/icons/logo-mastercard.svg);background-size:50px 32px !important;width:50px !important;height:32px !important;display:inline-block}.icon-visa{width:50px;height:32px}.icon-visa::before{content:"";background-image:url(stihl-styles/resources/icons/logo-visa.svg);background-size:50px 32px !important;width:50px !important;height:32px !important;display:inline-block}.icon-sofort{width:65.94px;height:21px}.icon-sofort::before{content:"";background-image:url(stihl-styles/resources/icons/logo-sofortueberweisung.svg);background-size:65.94px 21px !important;width:65.94px !important;height:21px !important;display:inline-block}.icon-info{width:8px;height:8px}.icon-info::before{content:"";background-image:url(stihl-styles/resources/icons/icon-info-16.svg);background-size:8px 8px !important;width:8px !important;height:8px !important;display:inline-block}.icon-flag-aus{width:16px;height:16px}.icon-flag-aus::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-aus-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-aus-big{width:24px;height:17px}.icon-flag-aus-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-aus-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-flag-aut{width:16px;height:16px}.icon-flag-aut::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-aut-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-aut-big{width:24px;height:17px}.icon-flag-aut-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-aut-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-flag-bel{width:16px;height:16px}.icon-flag-bel::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-bel-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-bel-big{width:24px;height:17px}.icon-flag-bel-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-bel-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-flag-can{width:16px;height:16px}.icon-flag-can::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-can-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-can-big{width:24px;height:17px}.icon-flag-can-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-can-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-flag-che{width:16px;height:16px}.icon-flag-che::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-che-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-che-big{width:24px;height:17px}.icon-flag-che-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-che-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-flag-chn{width:16px;height:16px}.icon-flag-chn::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-chn-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-chn-big{width:24px;height:17px}.icon-flag-chn-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-chn-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-flag-cze{width:16px;height:16px}.icon-flag-cze::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-cze-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-cze-big{width:24px;height:17px}.icon-flag-cze-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-cze-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-flag-deu{width:16px;height:16px}.icon-flag-deu::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-deu-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-deu-big{width:24px;height:17px}.icon-flag-deu-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-deu-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-flag-dnk{width:16px;height:16px}.icon-flag-dnk::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-dnk-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-dnk-big{width:24px;height:17px}.icon-flag-dnk-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-dnk-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-flag-esp{width:16px;height:16px}.icon-flag-esp::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-esp-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-esp-big{width:24px;height:17px}.icon-flag-esp-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-esp-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-flag-eu{width:16px;height:16px}.icon-flag-eu::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-eu-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-eu-big{width:24px;height:17px}.icon-flag-eu-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-eu-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-flag-fin{width:16px;height:16px}.icon-flag-fin::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-fin-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-fin-big{width:24px;height:17px}.icon-flag-fin-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-fin-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-flag-fra{width:16px;height:16px}.icon-flag-fra::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-fra-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-fra-big{width:24px;height:17px}.icon-flag-fra-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-fra-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-flag-gbr{width:16px;height:16px}.icon-flag-gbr::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-gbr-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-gbr-big{width:24px;height:17px}.icon-flag-gbr-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-gbr-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-flag-hun{width:16px;height:16px}.icon-flag-hun::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-hun-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-hun-big{width:24px;height:17px}.icon-flag-hun-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-hun-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-flag-ita{width:16px;height:16px}.icon-flag-ita::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-ita-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-ita-big{width:24px;height:17px}.icon-flag-ita-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-ita-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-flag-lux{width:16px;height:16px}.icon-flag-lux::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-lux-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-lux-big{width:24px;height:17px}.icon-flag-lux-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-lux-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-flag-nld{width:16px;height:16px}.icon-flag-nld::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-nld-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-nld-big{width:24px;height:17px}.icon-flag-nld-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-nld-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-flag-nor{width:16px;height:16px}.icon-flag-nor::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-nor-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-nor-big{width:24px;height:17px}.icon-flag-nor-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-nor-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-flag-nzl{width:16px;height:16px}.icon-flag-nzl::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-nzl-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-nzl-big{width:24px;height:17px}.icon-flag-nzl-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-nzl-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-flag-pol{width:16px;height:16px}.icon-flag-pol::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-pol-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-pol-big{width:24px;height:17px}.icon-flag-pol-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-pol-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-flag-rou{width:16px;height:16px}.icon-flag-rou::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-rou-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-rou-big{width:24px;height:17px}.icon-flag-rou-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-rou-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-flag-swe{width:16px;height:16px}.icon-flag-swe::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-swe-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-swe-big{width:24px;height:17px}.icon-flag-swe-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-swe-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-flag-usa{width:16px;height:16px}.icon-flag-usa::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-usa-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-usa-big{width:24px;height:17px}.icon-flag-usa-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-usa-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-flag-ukr{width:16px;height:16px}.icon-flag-ukr::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-ukr-16.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}.icon-flag-ukr-big{width:24px;height:17px}.icon-flag-ukr-big::before{content:"";background-image:url(stihl-styles/resources/icons/icon-country-ukr-16.svg);background-size:24px 17px !important;width:24px !important;height:17px !important;display:inline-block}.icon-svg{transition:fill 150ms}.icon-svg-unfilled{border:1px solid red !important}.m-header{display:flex;justify-content:center;height:var(--header-height);background:#ededed;box-sizing:border-box}@media print{.m-header{display:none}}@media only screen and (min-width: 64rem){.m-header{border-bottom:1px solid #b1b1b1}}@media only screen and (max-width: 47.9375rem){.m-header{border-top:none}}.m-header__container{height:100%}@media(max-width: 63.9375rem){.m-header__container{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}}@media only screen and (min-width: 64rem){.m-header__container{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 64rem)and (min-width: 48rem)and (max-width: 63.9375rem){.m-header__container{width:45.5rem}}@media only screen and (min-width: 64rem)and (min-width: 64rem){.m-header__container{width:61.5rem}}.m-header__list{display:flex;align-items:center;margin:0 auto;height:100%;padding:0}@media only screen and (max-width: 47.9375rem){.m-header__list{justify-content:space-between}}.m-header__item{text-align:center;position:relative;font-size:.75rem;line-height:1.5;font-weight:300;letter-spacing:.7px}@media only screen and (max-width: 47.9375rem){.m-header__item{width:2.25rem}}@media only screen and (min-width: 48rem),print{.m-header__item{flex:1;max-width:8%}}.m-header__item>a{display:inline-flex;padding:.625rem}@media only screen and (max-width: 47.9375rem){.m-header__item>a{display:flex}}.m-header__item>a:hover,.m-header__item>a:focus{text-decoration:none}@media(min-width: 33.125rem){.m-header__item--locator{text-align:left;max-width:34%}.m-header__item--locator a{padding:0;display:flex}}@media(min-width: 33.125rem){.m-header__item--search{text-align:right;max-width:25%}}.m-header__icon{display:inline-block;cursor:pointer}.m-header__icon,.m-header__icon svg{width:1rem;height:1rem}.m-header__icon--cart{position:relative}.m-header__icon--cart[data-qty-value]::after{display:flex;justify-content:center;align-items:center;position:absolute;right:6px;top:-8px;width:.9375rem;height:.9375rem;line-height:20px;background:#f37a1f;color:#fff;border-radius:50%;padding-top:3px;content:attr(data-qty-value)}@media only screen and (max-width: 47.9375rem){.m-header__icon--cart[data-qty-value]::after{right:-12px}}.m-header__icon-label{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.m-header__icon--profile{margin-right:.625rem}.m-header-search{display:flex;padding:0;position:relative;cursor:pointer}@media only screen and (max-width: 33.0625rem){.m-header-search__icon{width:100%}}@media(min-width: 33.125rem){.m-header-search>div{padding:0 10px}}.m-header-search__input{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;border-bottom:1px solid #000;padding:0 5px;width:170px;cursor:pointer}.m-header-search__placeholder{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;width:100%;position:absolute;left:25px}.m-header-search__link{display:inline-block;width:16px}.navbar-fixed-top{position:fixed;top:0;right:0;left:0;border-width:0;border-radius:0;z-index:300}.m-editable-header{display:flex;margin-bottom:10px}.m-editable-header.wishlist__editable-header{max-width:61.5rem;margin:0 auto 10px}.m-editable-header .default__label{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25}@media only screen and (min-width: 48rem),print{.m-editable-header .default__label{font-size:1.875rem;line-height:1.3}}.m-editable-header .default__btn{justify-content:center;align-self:center;margin-left:15px}.m-editable-header .edit{display:flex;width:100%;background:#ededed;padding:11px 0 8px 20px}.m-editable-header .edit__text{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;width:100%;margin-right:10px}@media only screen and (min-width: 48rem),print{.m-editable-header .edit__text{font-size:1.875rem;line-height:1.3}}.m-editable-header .edit__btn{display:flex;justify-content:center;align-self:center;margin-right:20px}.m-editable-header .edit:focus-within{border-bottom:4px solid #f37a1f}.v2{height:100%}.v2 .m-header{background:var(--meta-navigation-background);--outline-color: black}.v2 .m-header .pgph-2{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}@media only screen and (max-width: 47.9375rem){.v2 .m-header__container{width:100%;position:relative}}@media only screen and (max-width: 47.9375rem){.v2 .m-header__list{justify-content:space-evenly}}.v2 .m-header__list--only-left-links{justify-content:flex-start}@media only screen and (min-width: 48rem),print{.v2 .m-header__list__links:not(:last-child){margin-right:56px}}@media only screen and (max-width: 47.9375rem){.v2 .m-header__list__links{flex-grow:1;height:100%}.v2 .m-header__list__links:not(:last-child){border-right:1px solid #dadada}}.v2 .m-header__list__links--center{margin-right:0;flex-grow:1;height:100%;display:flex;align-items:center;justify-content:center}@media only screen and (min-width: 48rem),print{.v2 .m-header__list__links--no-search-picker{flex-grow:unset;margin-right:auto}}@media only screen and (max-width: 47.9375rem){.v2 .m-header__list__links-v3{flex-grow:1;height:auto}}.v2 .m-header__link-bold{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.v2 .m-header__item{display:flex;justify-content:center;align-items:center;width:100%;height:100%}.v2 .m-header__item>span{margin-top:4px}@media only screen and (min-width: 48rem),print{.v2 .m-header__item{flex:1;max-width:100%}.v2 .m-header__item__search--no-center,.v2 .m-header__item__picker--no-search{margin-left:auto}.v2 .m-header__item__search--no-picker{margin-right:0}}@media only screen and (max-width: 47.9375rem){.v2 .m-header__item{flex-direction:column}.v2 .m-header__item>span{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#000;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}}.v2 .m-header__icon{width:.75rem;height:.75rem}@media only screen and (max-width: 47.9375rem){.v2 .m-header__icon #search{position:absolute;width:.75rem;height:.75rem;top:.375rem}}@media only screen and (min-width: 48rem),print{.v2 .m-header__icon{width:1rem;height:1rem;margin-right:.5rem}}@media only screen and (max-width: 47.9375rem){.v2 .m-header-search{width:100%;height:100%;flex-direction:column;justify-content:center;align-items:center}}@media(min-width: 33.125rem){.v2 .m-header-search>div{padding:unset}}.v2 .m-header-search__text--mobile{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;margin-top:4px}@media only screen and (min-width: 48rem),print{.v2 .m-header-search__text--mobile{display:none}}@media only screen and (min-width: 48rem),print{.v2 .m-header-search__icon{position:absolute;right:8px;top:8px}}@media only screen and (max-width: 47.9375rem){.v2 .m-header-search__icon{width:.75rem;height:.75rem}}.v2 .m-header-search__input{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;padding:8px;background:var(--meta-navigation-searchbar);border:none;height:calc(2rem - 0.5rem - 0.5rem);width:calc(15rem - 0.5rem - 0.5rem)}.v2 .m-header-search__placeholder{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#000;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;width:-moz-max-content;width:max-content;left:8px;top:7px}@media only screen and (max-width: 47.9375rem){.v2 .m-header-search__link{width:12px;height:12px}}.header-v4{height:100%}.header-v4 .m-header{background:var(--meta-navigation-background)}.header-v4 .m-header__list{gap:.9375rem;justify-content:flex-start}.header-v4 .m-header__item{flex:none;width:auto;max-width:none}.header-v4 .m-header__item>a{padding:0}.header-v4 .m-header__text-bold{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;color:var(--color1);font-size:.8125rem;font-weight:600;line-height:1;height:auto;white-space:normal;word-break:break-word;word-wrap:break-word}.header-v4 .m-header__icon{display:block;width:auto;height:var(--header-height)}@media only screen and (min-width: 48rem),print{.header-v4 .m-header__icon{margin-right:.5rem}}.m-header-left{display:flex;justify-content:center;height:var(--header-height);background:#ededed;box-sizing:border-box}@media only screen and (min-width: 64rem){.m-header-left{border-bottom:1px solid #b1b1b1}}@media only screen and (max-width: 47.9375rem){.m-header-left{border-top:none}}.m-header-left__container{height:100%}@media(max-width: 63.9375rem){.m-header-left__container{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}}@media only screen and (min-width: 64rem){.m-header-left__container{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 64rem)and (min-width: 48rem)and (max-width: 63.9375rem){.m-header-left__container{width:45.5rem}}@media only screen and (min-width: 64rem)and (min-width: 64rem){.m-header-left__container{width:61.5rem}}.m-header-left__list{display:flex;align-items:center;margin:0 auto;height:100%;padding:0}@media only screen and (max-width: 47.9375rem){.m-header-left__list{justify-content:space-between}}.m-header-left__item{position:relative;font-size:.75rem;line-height:1.5;font-weight:300;letter-spacing:.7px}@media only screen and (max-width: 47.9375rem){.m-header-left__item{width:36px}.m-header-left__item--space{display:none}}@media only screen and (min-width: 48rem),print{.m-header-left__item{flex-basis:3.25rem}}.m-header-left__item>a{padding:.625rem}@media only screen and (max-width: 47.9375rem){.m-header-left__item>a{display:flex}}.m-header-left__item>a:hover,.m-header-left__item>a:focus{text-decoration:none}@media(min-width: 33.125rem){.m-header-left__item--account{flex-basis:unset;margin-right:20px}.m-header-left__item--account a{padding:0;display:flex}.m-header-left__item--space{flex:8;max-width:348px}}@media(max-width: 63.9375rem){.m-header-left__item--account{text-align:left;max-width:18%}.m-header-left__item--account a{padding:0;display:flex}}@media(min-width: 33.125rem){.m-header-left__item--search{flex:9}}.m-header-left__accordion{position:relative;display:flex;flex-direction:row;width:auto}@media only screen and (max-width: 47.9375rem){.m-header-left__accordion{width:55px}.m-header-left__accordion .acco__tab-icon-arrow-down::after{width:.625rem;height:.625rem}}.m-header-left__accordion .acco-standard{width:100%;margin:0}.m-header-left__accordion .acco-standard .acco{position:initial}.m-header-left__accordion .acco__tab{padding:.25rem 2.8125rem 0 .625rem;height:2.5rem;min-height:auto;background:#ededed}.m-header-left__accordion .acco__tab-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;line-height:1.4}.m-header-left__accordion .acco__content{position:absolute;width:11.875rem;border:none}@media(min-width: 33.125rem){.m-header-left__accordion .acco__content{margin:0}}@media(max-width: 63.9375rem){.m-header-left__accordion .acco__content{margin:0}}.m-header-left__accordion .acco__inner{padding:0}.m-header-left__icon{width:1rem;height:1rem;display:inline-block;cursor:pointer}.m-header-left__icon--cart{position:relative}.m-header-left__icon--cart[data-qty-value]::after{display:flex;justify-content:center;align-items:center;position:absolute;transform:translate(-25%, -50%);min-width:.9375rem;height:.9375rem;background:#f37a1f;color:#fff;border-radius:.46875rem;padding:.2rem .15rem 0;content:attr(data-qty-value)}.m-header-left__icon-label{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.m-header-search{display:flex;padding:0;position:relative;cursor:pointer}@media only screen and (max-width: 33.0625rem){.m-header-search__icon{width:100%}}@media(min-width: 33.125rem){.m-header-search>div{padding:0 10px}}.m-header-search__input{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;border-bottom:1px solid #000;padding:0 5px;width:170px;cursor:pointer}.m-header-search__placeholder{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;width:100%;position:absolute;left:25px}.m-header-search__link{display:inline-block;width:1rem}@media only screen and (max-width: 47.9375rem){.m-header-search__link{display:flex}}.navbar-fixed-top{position:fixed;top:0;right:0;left:0;border-width:0;border-radius:0;z-index:300}.header-user-accordion{display:flex;flex-direction:column;width:100%;background-color:#fff;border:1px solid #000;border-top:5px solid #f37a1f}.header-user-accordion .info-wrapper{display:flex;flex-direction:column;padding:15px 20px;border-bottom:1px solid #b1b1b1}.header-user-accordion .info-wrapper__label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;font-size:.625rem;line-height:1.2;margin-bottom:15px}.header-user-accordion .info-wrapper__value{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.header-user-accordion .info-wrapper__subsidiary{background-color:#ededed;border-bottom:2px solid #fff}.header-user-accordion .info-wrapper__subsidiary .show-all-btn{margin:0}.header-user-accordion .info-wrapper__subsidiary .show-all-btn .icon{margin-left:10px}.header-user-accordion .info-wrapper .subsidiary-item{display:flex}.header-user-accordion .info-wrapper .subsidiary-item .radio-input{margin-right:10px;height:16px;width:16px}.header-user-accordion .info-wrapper .subsidiary-item>.impersonation-button-inactive{cursor:pointer;display:flex}.header-user-accordion .info-wrapper .subsidiary-item>.impersonation-button-active{display:flex}.header-user-accordion .bottom-wrapper{display:flex;flex-direction:column;padding:5px 20px 5px 18px}.header-user-accordion .bottom-wrapper__button{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;display:flex;align-self:flex-start;margin:10px 0;padding:0}.header-user-accordion .bottom-wrapper__button .icon{margin-right:10px}.m-navigation-main{position:relative;height:var(--menu-height);margin:0;padding:0;background:var(--color13);z-index:200}@media(max-width: 63.9375rem){.m-navigation-main{display:flex;justify-content:space-between;width:100%}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m-navigation-main{justify-content:center}}.m-navigation-main__mobile{width:100%;height:var(--menu-height);border-top:var(--border3);border-bottom:var(--border3);background:var(--color13);box-sizing:border-box}.m-navigation-main--active .m-navigation-main__mobile{position:fixed;top:var(--header-height)}.promotionsbannerwrapper--visible~.navigationwrapper .m-navigation-main--active .m-navigation-main__mobile{top:calc(var(--header-height) + var(--default-banner-height))}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m-navigation-main__mobile{position:relative;width:calc(100% - (2 * 1.25rem))}.m-navigation-main__mobile::before,.m-navigation-main__mobile::after{content:"";position:absolute;top:-1px;width:20px;height:100%;border-top:var(--border3);border-bottom:var(--border3);box-sizing:content-box;background:inherit}}@media print{.m-navigation-main__mobile::before,.m-navigation-main__mobile::after{border:none}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m-navigation-main__mobile::before{right:100%}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m-navigation-main__mobile::after{left:100%}}@media print{.m-navigation-main__mobile body:not(.corporate-body){border:none;background-color:#ededed;top:0}}.m-navigation-main__logo-size{height:var(--menu-height);width:var(--logo-width)}.m-navigation-main__desktop{height:100%;box-sizing:border-box}@media(max-width: 63.9375rem){.m-navigation-main__desktop{display:none;--menu-height: 2.875rem;--logo-width: 6.5625rem;position:fixed;left:100vw;width:100%;top:calc(var(--header-height) + var(--menu-height));height:calc(100vh - (var(--header-height) + var(--menu-height)));background-color:var(--color13);overflow-y:auto;z-index:210;transition:left 300ms}}@media only screen and (max-width: 63.9375rem)and (min-width: 48rem)and (max-width: 63.9375rem),print and (max-width: 63.9375rem){.m-navigation-main__desktop{--menu-height: 4.125rem;--logo-width: 9.4375rem}}@media(max-width: 63.9375rem){.promotionsbannerwrapper--visible~.navigationwrapper .m-navigation-main__desktop{top:calc(var(--header-height) + var(--default-banner-height) + var(--menu-height));height:calc(100vh - (var(--header-height) + var(--default-banner-height) + var(--menu-height)))}}@media(max-width: 63.9375rem){.m-navigation-main__desktop.active{left:0}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m-navigation-main__desktop{padding:0 1.25rem}}@media only screen and (min-width: 64rem){.m-navigation-main__desktop{border-bottom:var(--border3)}}.m-navigation-main__overlay{display:none;position:fixed;top:0;bottom:0;width:100vw;height:100vh;background:#000;opacity:0;z-index:100;transition:opacity 400ms}.m-navigation-main__overlay--active{opacity:.4}.m-navigation-list{display:flex;flex-wrap:wrap;align-items:center;position:relative}@media only screen and (min-width: 64rem){.m-navigation-list{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto;flex-wrap:nowrap;height:100%;margin:0 auto}}@media only screen and (min-width: 64rem)and (min-width: 48rem)and (max-width: 63.9375rem){.m-navigation-list{width:45.5rem}}@media only screen and (min-width: 64rem)and (min-width: 64rem){.m-navigation-list{width:61.5rem}}.m-navigation-list__mobile{display:grid;grid-template-columns:1fr auto;grid-template-rows:100%;height:100%}@media(max-width: 63.9375rem){.m-navigation-list__mobile{justify-content:space-between}}@media only screen and (min-width: 64rem){.m-navigation-list__mobile{display:none}}.m-navigation-list__btn{--outline-offset: -2px;display:flex;align-items:center;justify-content:space-between;width:100%;font-family:inherit;font-size:inherit;font-weight:inherit;color:inherit;padding:0 .625rem;box-sizing:border-box}@media only screen and (max-width: 47.9375rem){.m-navigation-list__btn{padding:0}}.m-navigation-list--item{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:flex;height:100%;border-left:var(--border3);transition:background-color 250ms}@media print{.m-navigation-list--item{display:none}}@media only screen and (min-width: 64rem){.m-navigation-list--item:not(.m-navigation-list--item__logo){flex:1 14%}.ts-body .m-navigation-list--item:nth-last-child(2){border-right:var(--border3)}}@media only screen and (max-width: 47.9375rem){.m-navigation-flyout__mobile .m-navigation-list--item>a{margin-left:10px}}@media(max-width: 63.9375rem){.m-navigation-flyout__mobile .m-navigation-list--item{width:100%;border-left:none;border-bottom:var(--border3);height:70px;padding:0 20px}.m-navigation-flyout__mobile .m-navigation-list--item:last-child{border:none}}.m-navigation-list--item__active{background:var(--color4)}.m-navigation-list--item__logo{padding:0;border:0}@media print{.m-navigation-list--item__logo body:not(.corporate-body){margin-right:auto}}.m-navigation-list--item__logo a{--outline-offset: -2px;display:flex;width:100%}@media(max-width: 63.9375rem){.m-navigation-list--item__logo a{width:-moz-max-content;width:max-content}}.ts-body .m-navigation-list--item__logo a{padding:0 32px}@media only screen and (min-width: 48rem),print{.ts-body .m-navigation-list--item__logo a{padding-right:0}}.m-navigation-list--item__logo img{height:var(--menu-height)}.ts-body .m-navigation-list--item__logo img{height:calc(var(--menu-height) - 24px)}@media only screen and (min-width: 48rem),print{.ts-body .m-navigation-list--item__logo img{height:calc(var(--menu-height) - 32px)}}.m-navigation-list--item__icon,.m-navigation-list--item__icon__internal,.m-navigation-list--item__icon__external{transform:rotate(0);transition:transform 250ms}.m-navigation-list--item__icon::after,.m-navigation-list--item__icon__internal::after,.m-navigation-list--item__icon__external::after{background-image:url(stihl-styles/resources/icons/icon-plus-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:var(--svg-filter-invert, none);width:.625rem;height:.625rem;right:0;display:block;content:""}@media(max-width: 63.9375rem){.nav-title .m-navigation-list--item__icon::after,.nav-title .m-navigation-list--item__icon__internal::after,.nav-title .m-navigation-list--item__icon__external::after{background-image:url(stihl-styles/resources/icons/icon-arrow-right-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:var(--svg-filter-invert, none);width:.75rem;height:.75rem}}@media only screen and (min-width: 64rem){.m-navigation-list--item__icon::after,.m-navigation-list--item__icon__internal::after,.m-navigation-list--item__icon__external::after{width:.75rem;height:.75rem}}.m-navigation-list--item__active .m-navigation-list--item__icon,.m-navigation-list--item__active .m-navigation-list--item__icon__internal,.m-navigation-list--item__active .m-navigation-list--item__icon__external{transform:rotate(45deg)}@media only screen and (min-width: 64rem){.m-navigation-list--item__icon__external{margin-right:15px}.m-navigation-list--item__icon__external:hover::after{transform:translate(5px, 0);transition:transform .2s}}.m-navigation-list--item__icon__external::after{background-image:url(stihl-styles/resources/icons/icon-external-link-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:var(--svg-filter-invert, none);width:1rem;height:1rem}@media only screen and (min-width: 64rem){.m-navigation-list--item__icon__internal{display:none}}@media only screen and (max-width: 47.9375rem){.m-navigation-list--item__menu{flex:1;border-left:none;border-right:var(--border3)}.m-navigation-list--item__menu>a{margin-left:10px}}@media(max-width: 63.9375rem){.m-navigation-list--item__menu{padding:0 20px}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m-navigation-list--item__menu{width:calc(100%/(6 / 2));border-right:var(--border3)}}.m-navigation-list--item>a{display:flex;align-items:center;justify-content:space-between;width:100%}.m-navigation-list--item>div{width:100%;height:100%}.m-navigation-list--item>div>.navitem{height:100%}.m-navigation-list--item>div>.navitem>.nav-title{display:flex;justify-content:space-between;align-items:center;flex:1;position:relative;height:100%;overflow:hidden}.m-navigation-flyout__mobile .m-navigation-list--item__contact{flex-wrap:wrap;height:auto;background:var(--color4);padding-bottom:120px}.m-navigation-flyout{display:flex;position:fixed;top:1.25rem;width:100%;background:var(--flyout-background);margin-left:calc((var(--outline-width) + var(--outline-offset))*-1);margin-right:calc((var(--outline-width) + var(--outline-offset))*-1);padding-left:calc(var(--outline-width) + var(--outline-offset));padding-right:calc(var(--outline-width) + var(--outline-offset))}@media(max-width: 63.9375rem){.m-navigation-flyout{justify-content:center;top:5.4375rem;left:100vw;height:calc(100% - 5.4375rem);overflow-y:auto;transition:left 300ms}.m-navigation-flyout.active{left:0}.promotionsbannerwrapper--visible~.navigationwrapper .m-navigation-flyout{top:8.375rem;height:calc(100% - 8.375rem)}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m-navigation-flyout{top:7rem;height:calc(100% - 7rem)}.promotionsbannerwrapper--visible~.navigationwrapper .m-navigation-flyout{top:9.9375rem;height:calc(100% - 9.9375rem)}}@media only screen and (min-width: 64rem){.m-navigation-flyout{flex-direction:column;display:none;position:relative;top:0;width:100%;max-height:100%;margin-bottom:20px;overflow:hidden auto}.m-flyout-wrapper--close .m-navigation-flyout{display:none}}@media(max-width: 63.9375rem){.m-navigation-flyout__inner{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}}@media only screen and (min-width: 64rem){.m-navigation-flyout__inner{padding:0}}.m-navigation-flyout__close{display:flex;justify-content:center;align-items:center;position:absolute;right:0;top:0;width:45px;height:45px;background:#000;cursor:pointer}.m-global-list{position:relative;padding:0}.m-global-list__item{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem;line-height:1.1;display:block;margin:12.5px 0}@media only screen and (min-width: 48rem),print{.m-global-list__item{margin:1.25rem 0}}.m-flyout-level2{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:flex;justify-content:center;align-items:center;width:100%;height:70px;margin:0 -1.25rem;padding:0 1.25rem}@media only screen and (max-width: 47.9375rem){.m-flyout-level2{border-bottom:var(--border2)}}.m-flyout-level2__inner{flex:1;padding:0 10px 0 40px}.m-flyout-level2__inner::before{content:"";background:url(stihl-styles/resources/icons/icon-arrow-left-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);left:10px}.m-navigation-contact{width:100%}.m-navigation-contact__list{border-bottom:1px solid #b1b1b1;padding:30px 20px}.m-navigation-contact__list:last-child{border:none}.m-navigation-contact__list--country{border:none;padding-bottom:50px}@media(max-width: 63.9375rem){.m-navigation-contact__list{padding:30px 10px}}.m-navigation-contact__item{margin-bottom:30px}.m-navigation-contact__item:last-child{margin-bottom:0}.m-navigation-contact__item>a{display:flex;align-items:center}.m-navigation-contact__item__text{flex-grow:2;text-align:left}.m-navigation-contact__item__icon{margin-right:1.3125rem}.m-navigation-categories{padding-top:30px}@media only screen and (max-width: 47.9375rem){.m-navigation-categories{margin-bottom:30px}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m-navigation-categories{margin-bottom:60px}}@media only screen and (min-width: 64rem){.m-navigation-categories{margin-bottom:20px;padding-bottom:30px;border-bottom:var(--border3);padding-top:50px}}.m-navigation-categories>.flyout-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}@media only screen and (max-width: 47.9375rem){.m-navigation-categories>.flyout-title{margin-right:10px}}.m-navigation-categories__header{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;font-weight:bold;margin:30px 0 35px}@media only screen and (min-width: 48rem),print{.m-navigation-categories__header{margin:0 0 16px}}@media only screen and (max-width: 47.9375rem){.m-navigation-categories__header{margin-top:0;margin-bottom:40px;position:relative}.m-categories-list__item:not(:first-child) .m-navigation-categories__header,.m-navigation-advisor .m-navigation-categories__header{padding-top:30px}.m-categories-list__item:not(:first-child) .m-navigation-categories__header::before,.m-navigation-advisor .m-navigation-categories__header::before{border-top:var(--border2);position:absolute;left:-10px;width:calc(100% + 20px);top:0;content:" "}.m-navigation-advisor__list .m-categories-list .m-categories-list__item .m-navigation-categories__header::before{border-top:var(--border3)}}.benefit-summary .m-navigation-categories__header{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2}.m-navigation-categories__link{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:40px}@media only screen and (min-width: 48rem),print{.m-navigation-categories__link{margin-bottom:8px}}.category-item{--img-fit: scale-down}.topic-item,.category-item{display:flex;height:100%;position:relative;padding-bottom:20px;border-bottom:var(--border2);box-sizing:border-box}@media only screen and (max-width: 47.9375rem){.topic-item,.category-item{flex-direction:column}.topic-item__image,.category-item__image{width:100%;margin-right:0}}@media only screen and (min-width: 48rem),print{.topic-item,.category-item{flex-flow:column;justify-content:space-between}}.topic-item .ratio-image,.category-item .ratio-image{padding-top:calc((9 / 16)*100%)}.topic-item .ratio-image img,.category-item .ratio-image img{-o-object-fit:var(--img-fit, cover);object-fit:var(--img-fit, cover)}.topic-item__title,.category-item__title{margin-top:15px;margin-left:10px}.topic-item__title:not(.external),.category-item__title:not(.external){display:inline-block;position:relative;cursor:pointer;margin-right:38px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.topic-item__title:not(.external)::after,.category-item__title:not(.external)::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);top:100%;left:100%;transform:translate3d(1.0625rem, -100%, 0);height:1rem;transition:transform .2s;margin-top:-1px}.topic-item__title:not(.external):hover::after,.category-item__title:not(.external):hover::after{transform:translate3d(22px, -100%, 0)}.topic-item__title.external,.category-item__title.external{display:inline-block;position:relative;cursor:pointer;margin-right:38px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.topic-item__title.external::after,.category-item__title.external::after{content:"";background:url(stihl-styles/resources/icons/icon-external-link-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);top:100%;left:100%;transform:translate3d(1.0625rem, -100%, 0);height:1rem;transition:transform .2s;margin-top:-1px}.topic-item__title.external:hover::after,.category-item__title.external:hover::after{transform:translate3d(22px, -100%, 0)}.ts-body .topic-item__title,.ts-body .category-item__title{margin-top:22px;margin-left:0;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.ts-body .topic-item__title::after,.ts-body .category-item__title::after{top:unset;left:unset;transform:unset;margin-left:11px}.ts-body .topic-item__title:hover::after,.ts-body .category-item__title:hover::after{transform:translate(8px, 0)}.automated-article-item{border-bottom:none}.m-categories-list{display:flex}@media only screen and (max-width: 47.9375rem){.m-categories-list{flex-flow:column}}@media(max-width: 63.9375rem){.m-navigation-categories .m-categories-list .m-categories-list__item:not(:last-child){padding-bottom:20px}.m-navigation-advisor .m-categories-list{margin-bottom:30px}.m-navigation-advisor .m-categories-list .link.footerlink:not(:last-child) .m-navigation-categories__link{margin-bottom:35px}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m-categories-list{flex-flow:row wrap}.m-navigation-advisor .m-categories-list{margin:30px 0}}.m-categories-list__item{box-sizing:border-box}@media only screen and (max-width: 47.9375rem){.m-categories-list__item{padding:0 10px}}@media(max-width: 63.9375rem){.m-categories-list__item--empty{border:none !important}.m-navigation-advisor .m-categories-list__item--empty{padding-top:0 !important;margin:0 !important;min-height:0 !important}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m-categories-list__item{margin-bottom:1.25rem;padding-bottom:20px}.m-navigation-categories .m-categories-list__item{width:calc(calc(100% / 2) - 1.25rem + (1.25rem / 2));margin-right:1.25rem;border-bottom:1px solid #b1b1b1}.m-navigation-categories .m-categories-list__item:nth-child(2n){margin-right:0}.m-navigation-advisor .m-categories-list__item{padding:0 10px}.m-navigation-advisor .m-categories-list__item:not(:last-child){width:calc(calc(100% / 3) - 1.25rem + (1.25rem / 3));margin-right:1.25rem}.m-navigation-advisor .m-categories-list__item:not(:last-child):nth-child(3n){margin-right:0}.m-navigation-advisor .m-categories-list__item:last-child{width:100%}}@media only screen and (min-width: 64rem){.m-categories-list__item{width:calc(calc(100% / 4) - 1.25rem + (1.25rem / 4));margin-right:1.25rem}.m-categories-list__item:nth-child(4n){margin-right:0}.m-navigation-advisor .m-categories-list__item{margin-top:20px}.m-categories-list__item>.aem-Grid,.m-categories-list__item>.aem-Grid>.highlightteaser{height:100%}}.m-categories-list>a{display:flex;flex-direction:column}.m-flyout-wrapper{position:absolute;display:flex;justify-content:center;top:100%;left:0 !important;height:0;background:var(--flyout-background);overflow:visible;z-index:200}@media only screen and (max-width: 47.9375rem){.m-flyout-wrapper{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem;position:absolute}}@media only screen and (min-width: 48rem),print{.m-flyout-wrapper{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto;position:absolute}}@media only screen and (min-width: 48rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.m-flyout-wrapper{width:45.5rem}}@media print{.m-flyout-wrapper{width:auto}}@media only screen and (min-width: 48rem)and (min-width: 64rem){.m-flyout-wrapper{width:61.5rem}}@media only screen and (min-width: 64rem){.m-flyout-wrapper{height:0;max-height:calc(100vh - 160px);margin-top:1px;transition:height 400ms}.promotionsbannerwrapper--visible~.navigationwrapper .m-flyout-wrapper{max-height:calc(100vh - 205px)}.m-flyout-wrapper::before,.m-flyout-wrapper::after{position:absolute;height:100%;width:100vw;background:var(--flyout-background);box-sizing:content-box;content:""}.m-flyout-wrapper::before{right:100%}.m-flyout-wrapper::after{left:100%}.m-flyout-wrapper.flyout-open{height:600px;border-bottom:var(--border4);z-index:201}.m-flyout-wrapper.flyout-open::before,.m-flyout-wrapper.flyout-open::after{border-bottom:var(--border4)}}.m_backlink{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto;padding-bottom:20px !important;padding-top:20px !important}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_backlink{width:45.5rem}}@media print{.m_backlink{width:auto}}@media only screen and (min-width: 64rem){.m_backlink{width:61.5rem}}.m_backlink a{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.m_backlink div{margin-bottom:-4px;display:inline-block}.m-stage{position:relative;overflow:hidden;height:calc(100vh - 150px);min-height:500px;max-height:800px}.m_stage-promo{position:relative;height:100%}.m_stage-promo__background{height:100%}.m_stage-promo__background-image{width:100%;height:100%;background-color:#dadada;-o-object-fit:cover;object-fit:cover}.m_stage-promo__content{display:flex;justify-content:center;position:absolute;bottom:50px;width:100%}@media only screen and (min-width: 48rem),print{.m_stage-promo__content{bottom:100px}}@media only screen and (max-width: 47.9375rem){.m_stage-promo__container{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}}@media only screen and (min-width: 48rem),print{.m_stage-promo__container{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_stage-promo__container{width:45.5rem}}@media print{.m_stage-promo__container{width:auto}}@media only screen and (min-width: 48rem)and (min-width: 64rem){.m_stage-promo__container{width:61.5rem}}.m_stage-promo__container{opacity:1;transition:opacity 500ms 125ms,transform 500ms 125ms}@media only screen and (min-width: 48rem),print{.m_stage-promo__container{transition:opacity 500ms 250ms,transform 500ms 250ms}}.m_stage-promo__label-row{position:relative;z-index:0;transform:translate3d(0, 100%, 0);transition:transform 250ms}.m_stage-promo__promo-row{position:relative;z-index:1;display:grid;grid-gap:1.25rem;grid-template-areas:"teaser teaser";grid-template-columns:repeat(2, 1fr)}@media only screen and (min-width: 48rem),print{.m_stage-promo__promo-row{grid-template-columns:repeat(6, 1fr);grid-template-areas:"teaser teaser teaser teaser"}}@media only screen and (min-width: 64rem){.m_stage-promo__promo-row{grid-template-columns:repeat(12, 1fr);grid-template-areas:"teaser teaser teaser teaser teaser teaser"}}.m_stage-promo__promo{grid-area:teaser;background-color:var(--color2);padding:30px 10px}@media only screen and (min-width: 48rem),print{.m_stage-promo__promo{padding:30px}}.m_stage-promo__headline{margin-bottom:60px;overflow:hidden}@media only screen and (min-width: 48rem),print{.m_stage-promo__headline{margin-bottom:20px}}@media only screen and (max-width: 47.9375rem){.m_stage-promo__text{display:none}}@media only screen and (min-width: 48rem),print{.m_stage-promo__text{margin-bottom:25px;overflow:hidden}}.m_stage-promo__link{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:block;margin-bottom:20px}.m_stage-promo__link::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.m_stage-promo__link:hover::after{transform:translate3d(10px, -50%, 0)}.m_stage-promo__link::after{margin-top:0;margin-left:5px;left:auto;top:unset;transform:translate3d(5px, 1px, 0)}.m_stage-promo__link:hover::after{transform:translate3d(10px, 1px, 0)}.m_flags{margin-bottom:20px}@media only screen and (max-width: 47.9375rem){.m_flags{margin-bottom:30px}}.m_flags-gb{width:25px;height:25px;display:inline-block}.m_flags-gb::before{content:"";background-image:url(stihl-styles/resources/icons/262-united-kingdom.svg);background-size:25px 25px !important;width:25px !important;height:25px !important;display:inline-block}.m_flags-gb::before{background-position-y:5px;background-repeat:no-repeat;margin-bottom:-3px}.m_flags label{display:inline-block;position:relative;cursor:pointer;margin-right:24px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block;margin-left:10px}.m_flags label::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.4375rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.m_flags label:hover::after{transform:translate3d(12px, -50%, 0)}.m_flags label::after{position:relative;display:inline-block;margin-left:10px;height:10px;width:10px;content:"";background-image:url(stihl-styles/resources/icons/icon-arrow-right-16.svg);background-size:contain}.m_flags label:hover::after{left:5px;transition:left .2s}.m_footer-breadcrumb{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_footer-breadcrumb{width:45.5rem}}@media print{.m_footer-breadcrumb{width:auto}}@media only screen and (min-width: 64rem){.m_footer-breadcrumb{width:61.5rem}}.m_footer-breadcrumb ul,.m_footer-breadcrumb ol{list-style:none;padding:0;margin:0;display:inline-flex}.m_footer-breadcrumb ul li,.m_footer-breadcrumb ol li{display:inline-flex;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;line-height:17px;text-align:center}.m_footer-breadcrumb ul li::after,.m_footer-breadcrumb ol li::after{content:"";background-size:10px;padding:0 4px;line-height:17px;text-align:center;margin:0 !important}.ts-body .m_footer-breadcrumb ul li::after,.ts-body .m_footer-breadcrumb ol li::after{background-size:10px}.m_footer-breadcrumb ul li:first-child,.m_footer-breadcrumb ol li:first-child{padding-left:0}@media only screen and (max-width: 47.9375rem){.m_footer-breadcrumb ul li:first-child:not(:nth-last-child(2)),.m_footer-breadcrumb ol li:first-child:not(:nth-last-child(2)){display:none}}.m_footer-breadcrumb ul li:nth-last-child(3),.m_footer-breadcrumb ol li:nth-last-child(3){padding-left:0}@media only screen and (max-width: 47.9375rem){.m_footer-breadcrumb ul li:nth-last-child(3),.m_footer-breadcrumb ol li:nth-last-child(3){display:none}}.m_footer-breadcrumb ul li:nth-last-child(4),.m_footer-breadcrumb ol li:nth-last-child(4){padding-left:0}@media only screen and (max-width: 47.9375rem){.m_footer-breadcrumb ul li:nth-last-child(4),.m_footer-breadcrumb ol li:nth-last-child(4){display:none}}.m_footer-breadcrumb ul li:nth-last-child(2)::before,.m_footer-breadcrumb ol li:nth-last-child(2)::before{content:"";background-size:10px;padding:0 20px 0 0;line-height:17px;text-align:center;margin:0 !important}@media only screen and (min-width: 48rem),print{.m_footer-breadcrumb ul li:nth-last-child(2)::before,.m_footer-breadcrumb ol li:nth-last-child(2)::before{display:none}}.ts-body .m_footer-breadcrumb ul li:nth-last-child(2)::before,.ts-body .m_footer-breadcrumb ol li:nth-last-child(2)::before{background-size:10px}@media only screen and (max-width: 47.9375rem){.m_footer-breadcrumb ul li:nth-last-child(2),.m_footer-breadcrumb ol li:nth-last-child(2){text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;font-weight:bold;line-height:17px;text-align:center}.m_footer-breadcrumb ul li:nth-last-child(2)::after,.m_footer-breadcrumb ol li:nth-last-child(2)::after{content:"" !important;padding-right:0;background:none !important}}.m_footer-breadcrumb ul li:last-child,.m_footer-breadcrumb ol li:last-child{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;font-weight:bold;line-height:17px;text-align:center}@media only screen and (max-width: 47.9375rem){.m_footer-breadcrumb ul li:last-child,.m_footer-breadcrumb ol li:last-child{display:none}}.m_footer-breadcrumb ul li:last-child::after,.m_footer-breadcrumb ol li:last-child::after{content:"" !important;padding-right:0;background:none !important}.left-aligned{display:inline-flex;justify-content:flex-start}.m_footer-social{display:flex;justify-content:center;background-color:#f37a1f}@media print{.m_footer-social{display:none}}.m_footer-social__container{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}@media only screen and (min-width: 48rem),print{.m_footer-social__container{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_footer-social__container{width:45.5rem}}@media print{.m_footer-social__container{width:auto}}@media only screen and (min-width: 48rem)and (min-width: 64rem){.m_footer-social__container{width:61.5rem}}.m_footer-social__container__wrapper:first-child:last-child{margin-bottom:60px}.m_footer-social__container__text{text-align:center;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;margin-top:47px;margin-bottom:25px}@media only screen and (max-width: 47.9375rem){.m_footer-social__container__text{margin-left:10px;margin-right:10px}}@media only screen and (min-width: 48rem),print{.m_footer-social__container__text{margin-bottom:35px}}@media only screen and (min-width: 64rem){.m_footer-social__container__text{margin-top:58px}}.m_footer-social__subscribe{text-align:center}.m_footer-social__subscribe__group{display:inline-block;position:relative;max-width:100%;margin-bottom:30px;border-bottom:1px solid #fff}.m_footer-social__subscribe__group__icon{width:16px;height:16px;position:absolute;top:calc(50% - 8px);right:.625rem}.m_footer-social__subscribe__group__icon::before{content:"";background-image:url(stihl-styles/resources/icons/icon-pen-white-32.svg);background-size:16px 16px !important;width:16px !important;height:16px !important;display:inline-block}@media only screen and (min-width: 48rem),print{.m_footer-social__subscribe__group__icon{width:35px;height:35px;top:calc(50% - 17.5px)}.m_footer-social__subscribe__group__icon::before{content:"";background-image:url(stihl-styles/resources/icons/icon-pen-white-32.svg);background-size:35px 35px !important;width:35px !important;height:35px !important;display:inline-block}}.m_footer-social__subscribe__input{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;background-color:rgba(0,0,0,0);box-shadow:none;min-height:2.1875rem;width:0;min-width:13.125rem;max-width:calc(100vw - 66px);-webkit-hyphens:none;hyphens:none;transition:font-size .2s;padding:0 3.4375rem 0 .625rem}@media only screen and (min-width: 48rem),print{.m_footer-social__subscribe__input{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;min-width:20.625rem;min-height:3.125rem}}@media only screen and (min-width: 48rem)and (min-width: 48rem),print{.m_footer-social__subscribe__input{font-size:1.875rem;line-height:1.3}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_footer-social__subscribe__input{max-width:calc(100vw - 5rem)}}@media only screen and (min-width: 64rem){.m_footer-social__subscribe__input{max-width:40.9375rem}}.m_footer-social__subscribe__input::-moz-placeholder{color:#fff}.m_footer-social__subscribe__input::placeholder{color:#fff}.m_footer-social__subscribe__input:focus{box-shadow:none;border-color:rgba(0,0,0,0)}.m_footer-social__subscribe__input:focus::-moz-placeholder{color:rgba(0,0,0,0)}.m_footer-social__subscribe__input:focus::placeholder{color:rgba(0,0,0,0)}.m_footer-social__subscribe__input-copy{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;-webkit-hyphens:none;hyphens:none;visibility:hidden;position:absolute;z-index:-1}@media only screen and (min-width: 48rem),print{.m_footer-social__subscribe__input-copy{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;min-width:330px}}@media only screen and (min-width: 48rem)and (min-width: 48rem),print{.m_footer-social__subscribe__input-copy{font-size:1.875rem;line-height:1.3}}.m_footer-social__subscribe__button{display:flex;justify-content:center}@media only screen and (max-width: 47.9375rem){.m_footer-social__subscribe__button{width:100%}}.m_footer-social__subscribe__button button{position:relative;background:linear-gradient(to bottom, transparent 50%, var(--color1) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:#fff;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center;height:3.75rem;--outline-offset: 2px;width:100%;border-width:1px;border-style:solid;text-align:center;-webkit-hyphens:none;hyphens:none}.m_footer-social__subscribe__button button.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.m_footer-social__subscribe__button button:hover{background-position:0 -100%}}.m_footer-social__subscribe__button button.active{border-color:#fff}@media(hover: hover)and (pointer: fine){.m_footer-social__subscribe__button button:hover{border-color:#fff}}.m_footer-social__subscribe__button button:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.m_footer-social__subscribe__button button.active{color:var(--color2)}@media(hover: hover)and (pointer: fine){.m_footer-social__subscribe__button button:hover{color:var(--color2)}}@media(max-width: 63.9375rem){.m_footer-social__subscribe__button button{width:100%}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_footer-social__subscribe__button button:not(.full){min-width:calc(calc(45.5rem / 6) * 2);max-width:calc(calc(45.5rem / 6) * 3)}}@media only screen and (min-width: 64rem){.m_footer-social__subscribe__button button:not(.full){min-width:calc(calc(61.5rem / 12) * 3);max-width:calc(calc(61.5rem / 12) * 4)}}.m_footer-social__subscribe__button button.shrink{min-width:auto}@media only screen and (max-width: 47.9375rem){.m_footer-social__subscribe__button button{width:100% !important}}.m_footer-social__icons{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;margin:40px 0}@media only screen and (min-width: 48rem),print{.m_footer-social__icons{margin:50px 0}}@media only screen and (min-width: 64rem){.m_footer-social__icons{margin:60px 0}}.m_footer-social__icons>[class*=m_footer-social__container__icons-]{width:32px;height:32px}.m_footer-social__icons>[class*=m_footer-social__container__icons-]:not(:last-child){margin-right:40px}@media only screen and (max-width: 47.9375rem){.m_footer-social__icons>.img-comp-2{justify-content:center;align-items:center}.m_footer-social__icons>.img-comp-2>*{margin-left:25px;margin-right:25px}}.m_footer-social__icon{position:static;width:32px;height:32px}@media only screen and (min-width: 48rem),print{.m_footer-social__icon{position:relative}}.m_footer-social__icon img{width:32px;height:32px}.m_footer-social__icon>a{display:inline-block}.m_footer-social__icon-stihl{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;display:flex;justify-content:center;align-items:center;width:auto !important;height:auto !important;margin:20px}@media only screen and (max-width: 47.9375rem){.m_footer-social__icon-stihl{margin-top:40px}}@media only screen and (max-width: 47.9375rem){.m_footer-social__icon .tooltip{top:unset;left:0;transform:translate(0, calc(-100% - 44px))}.m_footer-social__icon .tooltip.close{transform:translate(0, -200%) rotate(6deg)}}.m_footer-corp{display:flex;justify-content:center;text-transform:uppercase}@media print{.m_footer-corp__container{display:none}}@media only screen and (max-width: 47.9375rem){.m_footer-corp__container{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}}@media only screen and (min-width: 48rem),print{.m_footer-corp__container{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_footer-corp__container{width:45.5rem}}@media print{.m_footer-corp__container{width:auto}}@media only screen and (min-width: 48rem)and (min-width: 64rem){.m_footer-corp__container{width:61.5rem}}.m_footer-corp__container--print{display:none}@media print{.m_footer-corp__container--print{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem;display:flex;justify-content:space-between;align-items:center;height:6.25rem}.m_footer-corp__container--print .m_footer-corp-bottom-co{flex:unset}.m_footer-corp__container--print .m_footer-corp-bottom-co p{font-weight:bold}}.m-footer-wrapper{overflow:hidden;background-color:#ededed}.m_footer-corp-main{display:flex;justify-content:space-between;margin-top:60px}@media only screen and (max-width: 47.9375rem){.m_footer-corp-main{flex-flow:column;align-items:center}}.m_footer-corp-main__col{position:relative;padding:0 10px;display:flex;flex-flow:column;align-items:center;width:100%}@media only screen and (min-width: 48rem),print{.m_footer-corp-main__col{flex:1}}.m_footer-corp-main__col *{display:block}@media only screen and (max-width: 47.9375rem){.m_footer-corp-main__col{margin-bottom:40px}.m_footer-corp-main__col:last-child{margin-bottom:0}}.m_footer-corp-main__col-dealer{display:flex;flex-direction:column;align-items:center;text-align:center}.m_footer-corp-main__col-dealer img{width:50px;height:50px;margin-bottom:15px}.m_footer-corp-main__col-return{background-image:url(stihl-styles/resources/icons/icon-circle-full-64.svg);background-position:center;width:auto;background-repeat:no-repeat;height:4rem;background-size:4rem;filter:var(--svg-filter-invert, none)}.m_footer-corp-main__col-return::after{content:url(stihl-styles/resources/icons/icon-return-white-32.svg);margin:calc((32 / 2)*1px) auto 0 auto;display:inline-block}.m_footer-corp-main__col-delivery{background-image:url(stihl-styles/resources/icons/icon-circle-full-64.svg);background-position:center;width:auto;background-repeat:no-repeat;height:4rem;background-size:4rem;filter:var(--svg-filter-invert, none)}.m_footer-corp-main__col-delivery::after{content:url(stihl-styles/resources/icons/icon-parcel-white-32.svg);margin:calc((32 / 2)*1px) auto 0 auto;display:inline-block}.m_footer-corp-middle{display:flex;justify-content:center;margin-top:50px}@media(max-width: 63.9375rem){.m_footer-corp-middle{flex-flow:column}.m_footer-corp-middle .footer-certificates{display:flex;justify-content:center;margin-bottom:50px}.m_footer-corp-middle .footer-certificates .img-comp-2{justify-content:center}}@media only screen and (min-width: 64rem){.m_footer-corp-middle{margin-top:60px;align-items:center}.m_footer-corp-middle .footer-certificates{width:calc(100%/(12 / 4))}.m_footer-corp-middle .payment-options{width:calc(100%/(12 / 8));align-items:center;margin-left:120px;height:-moz-max-content;height:max-content}.m_footer-corp-middle .img-comp-2{justify-content:center}}.m_footer-corp-middle__options,.m_footer-corp-middle .section{flex:1}.footercolumn{position:relative;padding:0 10px;flex:1}@media only screen and (max-width: 47.9375rem){.footercolumn{border-bottom:1px solid #b1b1b1}.footercolumn:first-child{border-top:1px solid #b1b1b1}}.m_footer-corp-links{margin-top:50px}@media only screen and (min-width: 48rem),print{.m_footer-corp-links{display:grid;grid-gap:1.25rem;grid:"one two" auto "tree four" auto/1fr 1fr;margin:3.125rem 0 0;padding-bottom:3.75rem;border-top:1px solid #b1b1b1;border-bottom:1px solid #b1b1b1}.m_footer-corp-links:first-child{border-top:none}}@media only screen and (min-width: 64rem){.m_footer-corp-links{grid:"one two tree" auto/1fr 1fr 1fr;margin:3.75rem 0 0}}.m_footer-corp-links>.footercolumn:nth-child(1){grid-area:one}.m_footer-corp-links>.footercolumn:nth-child(2){grid-area:two}.m_footer-corp-links>.footercolumn:nth-child(3){grid-area:tree}.m_footer-corp-links__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;padding:60px 10px 10px}@media(max-width: 63.9375rem){.m_footer-corp-links__title{padding-top:50px}}@media only screen and (max-width: 47.9375rem){.m_footer-corp-links__title{padding:30px 10px}}.m_footer-corp-links-section{width:100%;min-height:0;padding-left:0;padding-right:0}.m_footer-corp-links-section>:nth-child(2){padding-left:0;list-style:none}@media only screen and (max-width: 47.9375rem){.m_footer-corp-links-section>:nth-child(2)>div:last-child>label{padding-bottom:60px}}.m_footer-corp-links-section>:nth-child(2)>div>label{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem;line-height:1.1;display:flex;margin:20px 10px 0 !important}@media only screen and (max-width: 47.9375rem){.m_footer-corp-links-section>:nth-child(2)>div>label{display:none;margin-top:30px !important}}.m_footer-corp-bottom{display:flex;justify-content:space-between;margin:0 10px 30px;padding-top:60px}@media(max-width: 63.9375rem){.m_footer-corp-bottom{flex-flow:column;padding-top:50px;border-top:none}}.m_footer-corp-bottom-extra{flex:1}@media print{.m_footer-corp-bottom-extra{display:none}}@media only screen and (min-width: 64rem){.m_footer-corp-bottom-extra{flex:9}}.m_footer-corp-bottom-extra ul li{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem;line-height:1.1;display:inline-block;position:static;padding-right:11px;margin-bottom:30px}@media only screen and (max-width: 47.9375rem){.m_footer-corp-bottom-extra ul li{margin-bottom:25px;padding-right:21px}}.m_footer-corp-bottom-co{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;flex:1;text-transform:none;word-break:break-word}@media only screen and (min-width: 64rem){.m_footer-corp-bottom-co{flex:3;padding-top:3px}}@media(max-width: 63.9375rem){.m_footer-corp-bottom-co{align-items:flex-start;margin-top:5px}}.m_footer-corp-bottom-co>.cmp-text,.m_footer-corp-bottom-co p{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;margin:0}@media only screen and (max-width: 47.9375rem){.m_footer-accordion{display:inline-block;float:right}}@media only screen and (min-width: 48rem),print{.m_footer-accordion{display:none}}@media only screen and (max-width: 47.9375rem){.m_footer-accordion-open>span{content:url(stihl-styles/resources/icons/icon-arrow-up-16.svg);margin:calc((16 / 2)*1px) auto 0 auto;display:inline-block;margin:0 !important}}@media only screen and (max-width: 47.9375rem){.m_footer-accordion-closed>span{content:url(stihl-styles/resources/icons/icon-arrow-down-16.svg);margin:calc((16 / 2)*1px) auto 0 auto;display:inline-block;margin:0 !important}}.m_footer-accordion:hover{cursor:pointer}@media only screen and (max-width: 47.9375rem){.m_footer-accordion-hidden{display:none !important}}@media only screen and (max-width: 47.9375rem){.m_footer-accordion-visible{display:flex !important}.m_footer-accordion-visible img{width:12px;height:12px}}.m_header-banner{position:relative;max-width:1920px;margin:0 auto;display:grid}.m_header-banner__background{height:100%;grid-column:1/-1;grid-row:1}.m_header-banner__background-image{width:100%;-o-object-fit:cover;object-fit:cover;height:255px}.productdetailheaderbanner .m_header-banner__background-image{height:100px}@media only screen and (min-width: 48rem),print{.productdetailheaderbanner .m_header-banner__background-image{height:200px}}@media only screen and (min-width: 48rem),print{.m_header-banner__background-image{height:320px}}.m_header-banner__background-image-b2b{height:255px !important}@media only screen and (min-width: 48rem),print{.m_header-banner__background-image-b2b{height:300px !important}}.m_header-banner__content{display:flex;justify-content:center;grid-column:1/-1;grid-row:1}.m_header-banner__container{display:flex;flex-flow:column;justify-content:space-between;height:100%}@media only screen and (max-width: 47.9375rem){.m_header-banner__container{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}}@media only screen and (min-width: 48rem),print{.m_header-banner__container{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_header-banner__container{width:45.5rem}}@media print{.m_header-banner__container{width:auto}}@media only screen and (min-width: 48rem)and (min-width: 64rem){.m_header-banner__container{width:61.5rem}}.m_header-banner__backlink{max-width:90rem;position:relative;width:calc(100% - (2 * 1.25rem));padding-top:18px;padding-bottom:18px}.m_header-banner__backlink-wrapper{background-color:#ededed;display:flex;justify-content:center;align-items:center;overflow:hidden}@media print{.m_header-banner__backlink-wrapper{display:none}}@media only screen and (max-width: 47.9375rem){.m_header-banner__backlink{padding-top:10px;padding-bottom:10px}}.m_header-banner__backlink>.m_backlink{padding:0 !important;margin:0;display:inline-flex}.m_header-banner__backlink>.m_backlink>a{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;padding-left:10px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.m_header-banner__backlink>.m_backlink>.icon-16-bg-arrow-left,.m_header-banner__backlink>.m_backlink>.btn_icon-big__icon--arrow-left,.m_footer-breadcrumb ul .m_header-banner__backlink>.m_backlink>li:nth-last-child(2)::before,.m_footer-breadcrumb ol .m_header-banner__backlink>.m_backlink>li:nth-last-child(2)::before{width:10px !important;height:10px !important;margin-bottom:0;align-self:center}.m_header-banner__backlink>.m_backlink:hover>.icon-16-bg-arrow-left,.m_header-banner__backlink>.m_backlink:hover>.btn_icon-big__icon--arrow-left,.m_footer-breadcrumb ul .m_header-banner__backlink>.m_backlink:hover>li:nth-last-child(2)::before,.m_footer-breadcrumb ol .m_header-banner__backlink>.m_backlink:hover>li:nth-last-child(2)::before{animation:animateLeftArrow .2s forwards}.m_header-banner__backlink--white>.m_backlink>a{color:#fff}.m_header-banner__backlink--black>.m_backlink>a{color:#000}.m_header-banner__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;margin-bottom:30px}@media only screen and (min-width: 48rem),print{.m_header-banner__title{font-size:1.875rem;line-height:1.3}}.m_header-banner__title::after{display:block;content:"";background-color:#fff}.m_header-banner__title::after{width:23px;height:5px;margin-top:10px;background:#fff}@media only screen and (min-width: 48rem),print{.m_header-banner__title::after{width:34px;height:7px;margin-top:15px;background:#fff}}.m_header-banner__title--small{margin-bottom:20px}.m_header-banner__group-title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;margin:30px 0 20px}@keyframes animateLeftArrow{to{transform:translateX(-5px)}}.m_dealer-search{position:fixed;top:0;bottom:0;width:100vw;height:100vh;background:#fff;z-index:500;overflow-y:scroll}.m_dealer-search__map,.m_dealer-search__text{margin-bottom:120px}@media only screen and (max-width: 47.9375rem){.m_dealer-search__map,.m_dealer-search__text{margin-bottom:80px}}.m_dealer-search__map{height:450px;margin-top:100px}@media only screen and (max-width: 47.9375rem){.m_dealer-search__map{height:250px;margin-top:46px}}.m_dealer-search__footer{padding:60px 0;background:#ededed}@media only screen and (max-width: 47.9375rem){.m_dealer-search__footer{padding:30px 20px}}.m_dealer-search__showmore{text-align:center;margin-top:30px}.m_dealer-search__close{position:absolute;right:0;top:0}.dealer-order-overview{width:100%}@media only screen and (max-width: 47.9375rem){.dealer-order-overview{margin-bottom:20px}}.dealer-order-overview:not(:last-child){border-bottom:1px solid #b1b1b1}.dealer-order-overview__summary-wrapper{display:flex;padding:10px 0}@media only screen and (max-width: 47.9375rem){.dealer-order-overview__summary-wrapper{flex-direction:column-reverse}}@media only screen and (min-width: 48rem),print{.dealer-order-overview__summary-wrapper{padding:10px 20px}}.dealer-order-overview__summary-wrapper--dealer{justify-content:flex-end;flex-wrap:wrap;margin:20px 0 10px}.m_dialog-input{max-width:66.66%;text-align:center;margin:0 auto}@media only screen and (max-width: 47.9375rem){.m_dialog-input{max-width:100%}}.m_dialog-input__headline{margin-bottom:15px}@media only screen and (min-width: 64rem){.m_dialog-input__headline{padding:0 10%}}.m_dialog-input__form{text-align:center;margin:0 auto;display:flex;border-bottom-width:1px;border-color:#000;padding-bottom:5px;align-items:center;justify-content:space-between}@media only screen and (min-width: 64rem){.m_dialog-input__form{max-width:60%}}@media(max-width: 63.9375rem){.m_dialog-input__form{max-width:80%}}.m_dialog-input__text{width:80%;text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;margin-right:20px;outline:none;color:#f37a1f !important;text-align:center;flex:1 0 auto}@media only screen and (min-width: 48rem),print{.m_dialog-input__text{font-size:1.875rem;line-height:1.3}}.m_dialog-input__text::-moz-placeholder{color:#b1b1b1}.m_dialog-input__text::placeholder{color:#b1b1b1}.m_dialog-input__search{text-indent:-9999em;width:29px;height:29px;background-size:contain}@media only screen and (max-width: 47.9375rem){.m_dialog-input__search{width:17px;height:17px}}.m_dialog-input__button{margin-top:30px}@media only screen and (max-width: 47.9375rem){.m_dialog-input__button{padding:0 30px}}.m_teaser-info{display:flex}@media only screen and (max-width: 47.9375rem){.m_teaser-info{flex-wrap:wrap}}@media only screen and (max-width: 47.9375rem){.m_teaser-info__column{margin-bottom:40px}.m_teaser-info__column:last-child{margin-bottom:0}}@media only screen and (min-width: 64rem){.m_teaser-info__column{padding:0 30px}}.m_teaser-info__headline{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;margin-bottom:20px}.m-category-overview{display:flex;margin-top:40px}.m-category-overview:not(.m-category-overview--wide){position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m-category-overview:not(.m-category-overview--wide){width:45.5rem}}@media print{.m-category-overview:not(.m-category-overview--wide){width:auto}}@media only screen and (min-width: 64rem){.m-category-overview:not(.m-category-overview--wide){width:61.5rem}}.m-category-overview--wide{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}.m-category-overview__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;margin-bottom:0}@media only screen and (min-width: 48rem),print{.m-category-overview__title{font-size:1.875rem;line-height:1.3}}.m-category-overview__title::after{display:block;content:"";background-color:var(--color1)}.m-category-overview__title::after{width:23px;height:5px;margin-top:10px;background:var(--color1)}@media only screen and (min-width: 48rem),print{.m-category-overview__title::after{width:34px;height:7px;margin-top:15px;background:var(--color1)}}.m-category-overview__inner{padding:0 10px;width:100%}.m-category-overview--wide .m-category-overview__inner{padding:0}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m-category-overview__inner--cart{width:50%}}.m-category-overview__inner--border{border-top:1px solid #b1b1b1}.m-category-overview__text{margin-top:60px}@media only screen and (min-width: 48rem),print{.m-category-overview__text{margin-top:70px}}@media only screen and (min-width: 64rem){.m-category-overview__text{margin-top:80px}}.m-category-overview__text--less{display:block}.m-category-overview__text--hidden{display:none}@media only screen and (min-width: 48rem),print{.m-category-overview__text--mobile{display:none}}@media only screen and (max-width: 47.9375rem){.m-category-overview__text--desktop{display:none}}.m-category-overview__more{position:relative;cursor:pointer;margin-left:10px}.m-category-overview__more::after{position:absolute;left:100%;top:5px;width:10px;height:10px;margin-left:10px;content:""}.m-category-overview__more[aria-expanded=true]{display:none}.m-category-overview__less{position:relative;cursor:pointer;margin-top:30px;display:none}.m-category-overview__less::after{content:"";position:absolute;left:100%;margin-left:10px;width:10px;height:10px;top:5px}.m-category-overview__less--wrapper{margin-top:28px}.m-category-overview__more-wrapper{display:none}.m-category-overview:has(.m-category-overview__back-link){margin-top:1.25rem}.m-category-overview__back-link+.m-category-overview__title{margin-top:1.25rem}.seo-text{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.seo-text{width:45.5rem}}@media print{.seo-text{width:auto}}@media only screen and (min-width: 64rem){.seo-text{width:61.5rem}}.seo-text__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25}@media only screen and (min-width: 48rem),print{.seo-text__title{font-size:1.875rem;line-height:1.3}}.seo-text__title::after{display:block;content:"";background-color:var(--color1)}.seo-text__title::after{width:23px;height:5px;margin-top:10px;background:var(--color1)}@media only screen and (min-width: 48rem),print{.seo-text__title::after{width:34px;height:7px;margin-top:15px;background:var(--color1)}}.seo-text__inner{padding:0 10px;width:100%}.seo-text__text--less{display:block}.seo-text__text--hidden{display:none}.seo-text__more{position:relative;cursor:pointer;margin-left:10px}.seo-text__more::after{position:absolute;left:100%;top:5px;width:10px;height:10px;margin-left:10px;content:""}.seo-text__more[aria-expanded=true]{display:none}.seo-text__less{position:relative;cursor:pointer;margin-top:30px;display:none}.seo-text__less::after{content:"";position:absolute;left:100%;margin-left:10px;width:10px;height:10px;top:5px}.seo-text__less--wrapper{margin-top:28px}.seo-text__more-wrapper{display:none}.m_category-overview-tiles__pager{margin-top:20px;display:flex;width:100%;justify-content:center}.m_category-overview-tiles__item{display:flex;width:100%;box-sizing:border-box}.m_category-overview-tiles__item--slide{height:100%}.m_category-overview-tiles__filter-bar{margin-bottom:30px}.m_category-overview-tiles__products{display:grid;gap:10px;margin-bottom:20px}@media(min-width: 33.125rem){.m_category-overview-tiles__products{grid-template-columns:repeat(2, 1fr);gap:20px}}@media only screen and (min-width: 48rem),print{.m_category-overview-tiles__products{grid-template-columns:repeat(3, 1fr)}}@media only screen and (min-width: 64rem){.m_category-overview-tiles__products{row-gap:30px;margin-bottom:30px}}.m_category-overview-tiles__show{text-align:center;margin-top:20px}.m_category-overview-tiles__show:not(.m_category-overview-tiles__show--pdp){margin-bottom:60px}@media only screen and (min-width: 48rem),print{.m_category-overview-tiles__show{margin-top:10px}}@media only screen and (min-width: 64rem){.m_category-overview-tiles__show{margin-top:0}}.m_category-overview-tiles__search-link{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;margin:0 10px 60px}.m_category-overview-tiles__search-link a{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;position:relative}.m_category-overview-tiles__search-link a::after{content:"";background:url(stihl-styles/resources/icons/icon-external-link-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);margin-left:10px;margin-top:3px}@media only screen and (max-width: 47.9375rem){.m_category-overview-tiles__search-link a{display:block;margin-top:10px}}@media only screen and (min-width: 64rem){.m_category-overview-tiles__empty-results{grid-column:span 2}}.m_category-overview-tiles__grid{display:grid;gap:20px;margin-top:30px;grid-template-columns:minmax(0, 1fr)}@media only screen and (min-width: 48rem),print{.m_category-overview-tiles__grid{grid-template-columns:1fr 3fr}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_category-overview-tiles__grid .m_category-overview-tiles__products{grid-template-columns:repeat(2, 1fr)}}.m_category-overview-tiles__grid .m_filter-bar--stuck .m_filter-bar__sticky-container{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}.m_category-overview-tiles__grid .m_filter-bar--stuck .m_filter-bar__dropdowns{justify-content:space-between}.m_category-overview-tiles__grid .m_filter-bar__dropdowns{justify-content:flex-end;width:100%;margin-left:0}.m_category-overview-tiles__grid .m_filter-bar__dropdowns .dropdown_list{top:100%;left:unset;margin-left:unset;right:0}.m_category-overview-tiles__grid .m_filter-bar__dropdowns .dropdown_list__btn{margin-right:0}@media only screen and (min-width: 48rem),print{.m_category-overview-tiles__in-list-teaser{grid-column:span 2}}.swiper{width:100%;margin:0 auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}@media(min-width: 33.125rem){.swiper{margin:calc((var(--outline-width) + var(--outline-offset))*-1);padding:calc(var(--outline-width) + var(--outline-offset))}}.swiper-vertical{display:flex}@media only screen and (min-width: 48rem),print{.swiper-vertical{height:190px;overflow:hidden}}.swiper-no-swiping{width:100%}@media only screen and (min-width: 48rem),print{.vertical-slider--ssr .swiper-no-swiping:not(:first-child){display:none}}.swiper-wrapper{display:flex}@media only screen and (min-width: 48rem),print{.swiper-vertical .swiper-wrapper,.vertical-slider .swiper-wrapper{flex-direction:column}}.swiper-slide{flex-shrink:0;height:auto}.swiper-vertical .swiper-slide,.vertical-slider .swiper-slide{overflow:hidden;opacity:0;transition:opacity .2s}.swiper-vertical .swiper-slide-active,.vertical-slider .swiper-slide-active{opacity:1}.vertical-slider--ssr .swiper-slide{width:100%}.swiper-pagination-fraction{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;position:absolute;top:0;right:0}.swiper-pagination{display:flex;justify-content:center}.swiper-pagination-bullet{fill:#b1b1b1;padding-left:.3125rem}.swiper-pagination-bullet svg{width:.375rem}.swiper-pagination-bullet-active{fill:#000}.m_filter-bar__controls{height:45px;width:100%;display:inline-flex;align-items:center;justify-content:space-between}.m_filter-bar__control-buttons{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-flex;align-items:center}.m_filter-bar__compare-button{margin-left:10px}@media only screen and (min-width: 48rem),print{.m_filter-bar__compare-button{margin-left:30px}}.m_filter-bar__view-button{margin-left:10px}.m_filter-bar__dropdowns{display:inline-flex;position:relative;margin-left:10px}.m_filter-bar__product-count{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;margin:0 10px}.m_filter-bar__sticky{position:relative;left:0;right:0;margin-bottom:10px;background-color:#fff}.m_filter-bar__sticky--stuck-top{position:fixed;top:var(--header-height);border-bottom:1px solid #b1b1b1;z-index:500}.m_filter-bar__sticky--stuck-bottom{position:absolute;bottom:84px;border-bottom:1px solid #b1b1b1}.m_filter-bar--stuck{padding-top:55px}.m_filter-bar--stuck .m_filter-bar__view-button{height:45px;margin-left:1px}.m_filter-bar--stuck .m_filter-bar__sticky-container{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto;position:relative;margin:0 auto;transition:height 500ms,opacity 500ms}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_filter-bar--stuck .m_filter-bar__sticky-container{width:45.5rem}}@media print{.m_filter-bar--stuck .m_filter-bar__sticky-container{width:auto}}@media only screen and (min-width: 64rem){.m_filter-bar--stuck .m_filter-bar__sticky-container{width:61.5rem}}.m_filter-bar--stuck .m_filter-bar__controls{height:45px}.m_filter-bar--stuck .product-filter{border:none}.productgrid,.categorygrid{position:relative}.m_highlight-teaser-medium-2__wrapper{display:flex;flex-direction:column;justify-content:space-between;width:100%;padding:20px;background-color:#f37a1f;box-sizing:border-box}.m_highlight-teaser-medium-2__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;margin-bottom:15px}.m_highlight-teaser-medium-2__text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;margin-bottom:45px}.m_highlight-teaser-medium-2__text::after{display:block;content:"";background-color:#fff}.m_highlight-teaser-medium-2__text::after{width:23px;height:4px;margin-top:5px}@media only screen and (min-width: 48rem),print{.m_highlight-teaser-medium-2__text::after{width:21px;height:4px;margin-top:6px}}.m_highlight-teaser-medium-2__categories{margin-bottom:-18px;padding:0;display:flex;flex-wrap:wrap}.m_highlight-teaser-medium-2__category{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-bottom:20px;margin-right:20px}.m_highlight-teaser-medium-2__button button{position:relative;background:linear-gradient(to bottom, transparent 50%, var(--color1) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:#fff;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center;height:3.75rem;--outline-offset: 2px;width:100%;border-width:1px;border-style:solid;min-width:100%}.m_highlight-teaser-medium-2__button button.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.m_highlight-teaser-medium-2__button button:hover{background-position:0 -100%}}.m_highlight-teaser-medium-2__button button.active{border-color:#fff}@media(hover: hover)and (pointer: fine){.m_highlight-teaser-medium-2__button button:hover{border-color:#fff}}.m_highlight-teaser-medium-2__button button:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.m_highlight-teaser-medium-2__button button.active{color:var(--color2)}@media(hover: hover)and (pointer: fine){.m_highlight-teaser-medium-2__button button:hover{color:var(--color2)}}@media(max-width: 63.9375rem){.m_highlight-teaser-medium-2__button button{width:100%}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_highlight-teaser-medium-2__button button:not(.full){min-width:calc(calc(45.5rem / 6) * 2);max-width:calc(calc(45.5rem / 6) * 3)}}@media only screen and (min-width: 64rem){.m_highlight-teaser-medium-2__button button:not(.full){min-width:calc(calc(61.5rem / 12) * 3);max-width:calc(calc(61.5rem / 12) * 4)}}.m_highlight-teaser-medium-2__button button.shrink{min-width:auto}.m_product-details{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem;display:grid;grid-gap:1.25rem;grid:"gallery" auto "info" auto/1fr;margin-top:3.125rem;min-height:300px}@media only screen and (max-width: 47.9375rem){.m_product-details{overflow:hidden}}.m_product-details.productHighlights{grid:"gallery" auto "info" auto/0.4fr}@media only screen and (min-width: 64rem){.m_product-details{grid:"gallery info" auto/minmax(0, 1fr) minmax(0, 1fr);margin-top:3.75rem}.m_product-details.productHighlights{grid:"gallery info" auto/0.4fr minmax(0, 1fr)}}@media print{.m_product-details{margin-top:1.875rem}}.m_product-details__image-gallery{grid-area:gallery;margin-bottom:1.875rem}.m_product-details__image-gallery.productHighlights{margin-top:3.4375rem;margin-left:1.25rem}.m_product-details__infobox{grid-area:info}.m_product-details__infobox.productHighlights{margin-left:1.25rem}.m_product-details__free-gift{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem;margin-top:3.125rem;margin-bottom:3.125rem}@media print{.m_product-details__free-gift{display:none}}.m_product-details__rating-summary{margin-bottom:1.25rem}@media print{.m_product-details__rating-summary{display:none}}.m_infobox_product-detail{display:flex;flex-direction:column;padding:20px 20px 0;border:1px solid #b1b1b1;background-color:#fff}@media only screen and (min-width: 48rem),print{.m_infobox_product-detail{flex-direction:row}}@media only screen and (max-width: 47.9375rem){.m_infobox_product-detail__product-info .acco__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;padding-left:0}.m_infobox_product-detail__product-info .acco__title::after{right:7px}}@media only screen and (min-width: 48rem),print{.m_infobox_product-detail__product-info{width:50%;border-right:1px solid #b1b1b1;padding-right:20px}}.m_infobox_product-detail__buying-options{padding-top:25px}@media only screen and (min-width: 48rem),print{.m_infobox_product-detail__buying-options{width:50%;margin-top:5px;padding-top:0;padding-left:20px}}.m_infobox_product-detail__dropdown{margin-top:7px;margin-bottom:26px}.m_infobox_product-detail__bulletlist{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.m_infobox_product-detail__bulletlist li{position:relative;padding:0 0 15px 10px;-webkit-hyphens:auto;hyphens:auto}.m_infobox_product-detail__bulletlist li::before{position:absolute;left:0;content:"•"}.m_infobox_product-detail__bulletlist li:last-child{padding-bottom:0}.m_infobox_product-detail__bulletlist ul,.m_infobox_product-detail__bulletlist ol{width:100%;padding-top:15px;padding-left:25px}.m_infobox_product-detail__bulletlist ul ul,.m_infobox_product-detail__bulletlist ul ol,.m_infobox_product-detail__bulletlist ol ul,.m_infobox_product-detail__bulletlist ol ol{padding-left:20px}.m_infobox_product-detail__bulletlist.line-section>li:last-child{border-bottom:1px solid #b1b1b1;padding-bottom:24px}.m_infobox_product-detail__properties{width:100%;padding-top:30px}.m_infobox_product-detail__properties-horizontally{display:flex}.m_infobox_product-detail__agec{padding:30px 0;display:flex;width:100%}.m_infobox_product-detail__agec__picture{flex-shrink:0;padding-right:15px}.m_infobox_product-detail__agec__text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;max-width:200px;padding:0}.m_infobox_product-detail__agec__link{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow)}.m_infobox_product-detail__agec__tooltip-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;padding-bottom:15px}.m_infobox_product-detail__property{margin-top:-6px;margin-bottom:30px}@media only screen and (min-width: 48rem),print{.m_infobox_product-detail__property:last-child{border-bottom:1px solid #b1b1b1;padding-bottom:30px;margin-bottom:0}}.m_infobox_product-detail__property-horizontally{width:33%}.m_infobox_product-detail__property-without-border{margin-top:-6px;margin-bottom:30px}.m_infobox_product-detail__property-name{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;line-height:20px}.m_infobox_product-detail__property-name-horizontally{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:10px}.m_infobox_product-detail__property-value{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.m_infobox_product-detail__property-value-font-normal{font-weight:normal}.m_infobox_product-detail__property-value-horizontally{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;font-size:16px;padding-bottom:20px}.m_infobox_product-detail__selection-button{width:100%}.m_infobox_product-detail__buy-button{width:100%;margin-top:.625rem}@media only screen and (max-width: 47.9375rem){.m_infobox_product-detail__buy-button-sticky{position:fixed;bottom:0;left:0;width:100%;z-index:99;box-shadow:0 0 14px -4px #000;animation-name:fadeUp;animation-duration:200ms}.m_infobox_product-detail__buy-button-sticky .btn_highlight{width:100%}}.m_infobox_product-detail__buy-button-no-border{width:100%;max-width:unset}.m_infobox_product-dealer-only+.m_infobox_product-detail__buy-button-no-border{margin-top:.9375rem}.m_infobox_product-detail__price{display:inline-flex;align-items:baseline;margin-bottom:5px}@media only screen and (min-width: 48rem),print{.m_infobox_product-detail__price{flex-direction:column}}@media only screen and (min-width: 64rem){.m_infobox_product-detail__price{flex-direction:row}}.m_infobox_product-detail__price:blank{display:none}.m_infobox_product-detail__price-info{display:inline-flex;flex-direction:column;margin-bottom:24px;width:100%}.m_infobox_product-detail__price-info:blank{display:none}.m_infobox_product-detail__price-type{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;margin-top:-1px}.m_infobox_product-detail__price-value{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25}@media only screen and (min-width: 48rem),print{.m_infobox_product-detail__price-value{font-size:1.625rem;line-height:1.2}}.m_infobox_product-detail__price-value:blank{display:none}.m_infobox_product-detail__price-value.reduced-price{color:#f37a1f}.m_infobox_product-detail__unit-price{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.m_infobox_product-detail__tax-info{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;margin-top:6px;position:relative}.m_infobox_product-detail__shipping-cost{display:flex;margin-bottom:26px}.m_infobox_product-detail__shipping-cost--container{position:relative}.m_infobox_product-detail__shipping-cost--container .tooltip p:not(.m_infobox_product-detail__agec__tooltip-title){text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:block;margin-top:10px}.m_infobox_product-detail__shipping-cost--text{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;padding:0}.m_infobox_product-detail__shipping-cost--free,.m_infobox_product-detail__shipping-cost--free p{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.promotions-bundle__shipping .m_infobox_product-detail__shipping-cost--free{text-align:right}@media only screen and (min-width: 48rem),print{.shopping-cart__summary-wrapper .m_infobox_product-detail__shipping-cost--free{max-width:355px}}.m_infobox_product-detail__product-availability{padding:25px 0;border-top:1px solid #b1b1b1;border-bottom:1px solid #b1b1b1;margin-bottom:25px}.m_infobox_product-detail__buying-details:empty{display:none}.m_infobox_product-detail__select-variant-block{display:block}@media print{.m_infobox_product-detail__select-variant-block{display:none}}.m_infobox_product-detail__qty-addtocart-block{display:block}@media print{.m_infobox_product-detail__qty-addtocart-block{display:none}}.m_infobox_product-detail__selection-title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;margin-top:1px;margin-bottom:5px}.m_infobox_product-detail__product-details{padding-bottom:30px}.m_infobox_product-detail__dealer-error{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;margin-top:-3px;margin-bottom:-4px}.m_infobox_product-detail__address{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-bottom:3px}.m_infobox_product-detail__address::before{background-image:url(stihl-styles/resources/icons/icon-pin-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:var(--svg-filter-invert, none);display:block;float:left;width:12px;height:12px;margin-right:10px;background-size:contain;content:""}.m_infobox_product-detail__stock{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-bottom:-4px}.m_infobox_product-detail__stock--in-stock{color:green}.m_infobox_product-detail__stock--out-stock{color:red}.m_infobox_product-detail__stock::before{background-image:url(stihl-styles/resources/icons/icon-check-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:var(--svg-filter-invert, none);display:block;float:left;width:12px;height:12px;margin-right:10px;background-size:contain;content:""}.m_infobox_product-detail__quantity-select{width:100%}@media only screen and (min-width: 48rem),print{.m_infobox_product-detail__quantity-select{width:8.125rem}}.m_infobox_product-detail__highlights{display:flex;align-items:flex-start;gap:.9375rem;flex-flow:column}.m_infobox_product-detail__highlights-horizontally{padding-left:20px}.m_infobox_product-detail__dealer-locator{padding:20px;margin:30px -20px 0;background-color:#ededed}.m_infobox_product-detail__dealer-text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:flex}.m_infobox_product-detail__dealer-text>span{margin-left:10px}.m_infobox_product-detail__dealer-link{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-top:10px;margin-left:22px}.m_infobox_product-detail__dealer-link::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.m_infobox_teaser-highlight{width:100%;height:80px;background-color:#f37a21;display:flex;justify-content:flex-start;align-items:center}.m_infobox_teaser-highlight__inner{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;color:#fff;margin-left:20px}.m_infobox_product-dealer-only{padding:25px 0;border-top:1px solid #b1b1b1;border-bottom:1px solid #b1b1b1;margin-bottom:30px}.m_infobox_product-dealer-only__title-container{display:flex;align-items:baseline}.m_infobox_product-dealer-only__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;margin-left:20px}.m_infobox_product-dealer-only__title-icon{content:"";background:url(stihl-styles/resources/icons/icon-shop-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none)}.m_infobox_product-dealer-only__message{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;margin-top:5px}.m_infobox_product--reset-border{padding:0;border-top:none;border-bottom:none;margin-bottom:0}@media only screen and (max-width: 47.9375rem){.m_infobox_product--reset-border .m_infobox_delivery-options__headline{margin-top:0}}.m_infobox_flag{display:flex;justify-content:flex-start;align-items:stretch;flex-flow:row wrap;width:-moz-fit-content;width:fit-content}.m_infobox_flag__inner{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;-webkit-hyphens:none;hyphens:none;display:flex;align-items:center;height:24px;margin:0 1px 0 0;padding:0 10px;background-color:#f37a1f}@media only screen and (max-width: 47.9375rem){.m_infobox_flag__inner{margin-bottom:1px}.productdetail .m_infobox_flag__inner{margin-bottom:0}}.m_infobox_flag__inner.dealer{background-color:#249abe}.m_infobox_delivery-options{border:none;padding:10px 0 5px}.m_infobox_delivery-options__headline{display:flex;align-items:center}.m_infobox_delivery-options__headline .richtexteditor p{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.m_infobox_delivery-options__headline:not(:first-child){margin-top:20px}.m_infobox_delivery-options__headline .label-circle-tooltip{margin-left:10px}.m_infobox_delivery-options__headline .label-circle-tooltip h2{font-size:15px}.m_infobox_additional-info{margin:30px 0 0}@media only screen and (max-width: 47.9375rem){.m_infobox_additional-info{border-bottom:1px solid #b1b1b1}}.m_infobox_additional-info--promotions{margin:0}@media only screen and (max-width: 47.9375rem){.m_infobox_additional-info--promotions{border-bottom:0}}.m_infobox_additional-info h2{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin-bottom:20px;text-transform:lowercase}.m_infobox_additional-info__name{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text-demi),Arial,sans-serif;font-size:1rem;margin-bottom:15px;display:inline-block}.m_infobox_additional-info p{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:20px}.m_infobox_additional-info p:last-child{margin-bottom:30px}.m_infobox_additional-info--promotions p{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.m_infobox_additional-info a{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow)}.m_infobox_additional-info--bold a{font-weight:bold;text-decoration:underline}.m_infobox_product-detail-v2{display:flex;flex-direction:column;padding:1.25rem 0;border:1px solid #b1b1b1;background-color:#fff;gap:1.25rem}@media print{.m_infobox_product-detail-v2{gap:0}}.m_infobox_product-detail-v2 a{width:-moz-fit-content;width:fit-content}.m_infobox_product-detail-v2__section{padding:0 1.25rem;display:flex;flex-direction:row;justify-content:space-between}.m_infobox_product-detail-v2__section.flags{padding:0}@media only screen and (max-width: 47.9375rem){.m_infobox_product-detail-v2__section{flex-wrap:wrap}.m_infobox_product-detail-v2__section .m_infobox-price{flex-basis:100%;order:1}.m_infobox_product-detail-v2__section.flags{align-items:flex-end;flex-direction:column;flex-basis:100%;order:0;margin-bottom:0}.m_infobox_product-detail-v2__section .m_infobox_flag{width:unset}}.m_infobox_product-detail-v2__benefits{display:grid;gap:20px}.m_infobox_product-detail-v2__benefits p{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}@media only screen and (min-width: 48rem),print{.m_infobox_product-detail-v2__benefits{grid-template-columns:fit-content(214px) 1fr;align-items:center}}.m_infobox_product-detail-v2__benefits--images{display:flex;gap:10px}@media only screen and (min-width: 48rem),print{.m_infobox_product-detail-v2__benefits--images{gap:20px}}.m_infobox_product-detail-v2__benefits--image{height:31px}@media only screen and (min-width: 48rem),print{.m_infobox_product-detail-v2__benefits--image{height:53px}}.m_infobox_product-detail-v2__grid{padding:0 20px;display:grid;grid-template-columns:1fr;gap:20px;align-items:flex-end}@media only screen and (min-width: 48rem),print{.m_infobox_product-detail-v2__grid{grid-template-columns:1fr 1fr}}.m_infobox_product-detail-v2__grid.highlights{padding-top:20px;padding-bottom:20px;background-color:#ededed;align-items:flex-start}@media print{.m_infobox_product-detail-v2__grid.highlights{background-color:#fff;padding-bottom:0}.m_infobox_product-detail-v2__grid.highlights p:last-child{margin-bottom:0}}.m_infobox_product-detail-v2__grid .list-shopping-cart__stock{margin-bottom:0}@media print{.m_infobox_product-detail-v2__grid .list-shopping-cart__stock{display:none}}@media only screen and (max-width: 47.9375rem){.m_infobox_product-detail-v2__highlights-wrapper{padding-left:20px;padding-right:20px}.m_infobox_product-detail-v2__highlights-wrapper>.acco-standard{margin-top:15px;margin-bottom:15px}}.m_infobox_product-detail-v2__highlights-title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}@media only screen and (max-width: 47.9375rem){.m_infobox_product-detail-v2__highlights-title{display:none}}.m_infobox_product-detail-v2__highlights-link{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;cursor:pointer;text-decoration:underline;padding-left:10px}.m_infobox_product-detail-v2__price-and-ratings{display:grid;gap:1.25rem}.m_no-result{display:grid;flex-direction:column;gap:60px}@media only screen and (min-width: 48rem),print{.m_no-result{grid-template-columns:1fr 1fr;gap:20px}}.m_no-result__searchblock-explanation p{font-size:1rem;-webkit-hyphens:auto;hyphens:auto}@media only screen and (min-width: 48rem),print{.m_no-result__searchblock-explanation p{font-size:1.125rem}}.m_no-result__searchblock-box{margin-top:40px}.m_no-result__searchblock-box-searchterm h2{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25}@media only screen and (min-width: 48rem),print{.m_no-result__searchblock-box-searchterm h2{font-size:1.875rem;line-height:1.3}}@media only screen and (min-width: 48rem),print{.m_no-result__searchblock-box-searchterm{font-size:2rem}}.m_no-result__searchblock-box-search{display:flex;margin-top:20px;position:relative;cursor:pointer}.m_no-result__searchblock-box-search__input{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;padding:8px;border-bottom:1px solid #b1b1b1;height:32px;width:100%}.m_no-result__searchblock-box-search__icon{right:5px;top:18px;width:16px;height:16px;position:absolute}@media only screen and (min-width: 48rem),print{.m_no-result__searchblock-box-search__icon{right:18px;top:8px}.m_no-result__searchblock-box-search__icon svg{width:32px;height:32px}}.m_no-result__hintbox{padding:20px;background-color:#ededed}.m_no-result__hintbox-title p{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#f37a1f;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}@media only screen and (min-width: 48rem),print{.m_no-result__hintbox-title p{font-size:1.625rem}}.m_no-result__hintbox-bulletlist{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;line-height:32px}.m_no-result__hintbox-bulletlist li{position:relative;padding:0 0 15px 10px;-webkit-hyphens:auto;hyphens:auto}.m_no-result__hintbox-bulletlist li::before{position:absolute;left:0;content:"•"}.m_no-result__hintbox-bulletlist li:last-child{padding-bottom:0}.m_no-result__hintbox-bulletlist ul,.m_no-result__hintbox-bulletlist ol{width:100%;padding-top:15px;padding-left:25px}.m_no-result__hintbox-bulletlist ul ul,.m_no-result__hintbox-bulletlist ul ol,.m_no-result__hintbox-bulletlist ol ul,.m_no-result__hintbox-bulletlist ol ol{padding-left:20px}.m_no-result__hintbox-bulletlist p{font-size:1rem;margin-left:.9375rem;line-height:2}@media only screen and (min-width: 48rem),print{.m_no-result__hintbox-bulletlist p{font-size:1.125rem}}.m_no-result__hintbox-contact{margin-top:24px;display:flex;align-items:center;gap:8px}.m_no-result__hintbox-contact--text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#252525;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-weight:bold;font-size:1rem}@media only screen and (min-width: 48rem),print{.m_no-result__hintbox-contact--text{font-size:1.125rem}}@font-face{font-family:"Ionicons";src:url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/fonts/ionicons.eot?v=2.0.0");src:url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"),url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/fonts/ionicons.ttf?v=2.0.0") format("truetype"),url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/fonts/ionicons.woff?v=2.0.0") format("woff"),url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg");font-weight:normal;font-style:normal}.image-gallery-fullscreen-button::before,.image-gallery-play-button::before,.image-gallery-left-nav::before,.image-gallery-right-nav::before{display:inline-block;font-family:"Ionicons";speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;text-rendering:auto;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.box-image-gallery{position:relative}@media print{.box-image-gallery{width:25%}}.image-gallery{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}.image-gallery.fullscreen-modal{background:#000;inset:0;height:100%;position:fixed;width:100%;z-index:5}.image-gallery.fullscreen-modal .image-gallery-content{top:50%;transform:translateY(-50%)}.image-gallery-content{position:relative;line-height:0;top:0}.image-gallery-content.fullscreen{background:#000}.image-gallery-content.fullscreen .image-gallery-slide{background:#000}.image-gallery-slide-wrapper{position:relative}.image-gallery-slide-wrapper.left,.image-gallery-slide-wrapper.right{display:inline-block;width:calc(100% - 113px)}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.image-gallery-slide-wrapper.left,.image-gallery-slide-wrapper.right{width:75%}}@media print{.image-gallery-slide-wrapper.left,.image-gallery-slide-wrapper.right{width:100%}}.image-gallery-slide-wrapper.image-gallery-rtl{direction:rtl}.image-gallery-fullscreen-button,.image-gallery-play-button,.image-gallery-left-nav,.image-gallery-right-nav{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:rgba(0,0,0,0);border:0;cursor:pointer;outline:none;position:absolute;z-index:4}.image-gallery-fullscreen-button::before,.image-gallery-play-button::before,.image-gallery-left-nav::before,.image-gallery-right-nav::before{color:#fff;line-height:.7;text-shadow:0 2px 2px #1a1a1a;transition:color .2s ease-out}.image-gallery-fullscreen-button:hover::before,.image-gallery-play-button:hover::before,.image-gallery-left-nav:hover::before,.image-gallery-right-nav:hover::before{color:#337ab7}@media only screen and (max-width: 47.9375rem){.image-gallery-fullscreen-button:hover::before,.image-gallery-play-button:hover::before,.image-gallery-left-nav:hover::before,.image-gallery-right-nav:hover::before{color:#fff}}.image-gallery-fullscreen-button,.image-gallery-play-button{bottom:0}.image-gallery-fullscreen-button::before,.image-gallery-play-button::before{font-size:2.7em;padding:15px 20px;text-shadow:0 1px 1px #1a1a1a}@media only screen and (max-width: 47.9375rem){.image-gallery-fullscreen-button::before,.image-gallery-play-button::before{font-size:2.4em}}@media only screen and (max-width: 33.0625rem){.image-gallery-fullscreen-button::before,.image-gallery-play-button::before{font-size:2em}}.image-gallery-fullscreen-button:hover::before,.image-gallery-play-button:hover::before{color:#fff;transform:scale(1.1)}@media only screen and (max-width: 47.9375rem){.image-gallery-fullscreen-button:hover::before,.image-gallery-play-button:hover::before{transform:none}}.image-gallery-fullscreen-button{right:0}.image-gallery-fullscreen-button::before{content:""}.image-gallery-fullscreen-button.active::before{content:""}.image-gallery-fullscreen-button.active:hover::before{transform:scale(0.9)}.image-gallery-play-button{left:0}.image-gallery-play-button::before{content:""}.image-gallery-play-button.active::before{content:""}.image-gallery-left-nav,.image-gallery-right-nav{color:#fff;font-size:5em;padding:50px 15px;top:50%;transform:translateY(-50%)}.image-gallery-left-nav[disabled],.image-gallery-right-nav[disabled]{cursor:not-allowed;opacity:.6;pointer-events:none}@media only screen and (max-width: 47.9375rem){.image-gallery-left-nav,.image-gallery-right-nav{font-size:3.4em;padding:20px 15px}}@media only screen and (max-width: 33.0625rem){.image-gallery-left-nav,.image-gallery-right-nav{font-size:2.4em;padding:0 15px}}.image-gallery-left-nav{left:0}.image-gallery-left-nav::before{content:""}.image-gallery-right-nav{right:0}.image-gallery-right-nav::before{content:""}.image-gallery-slides{line-height:0;overflow:hidden;position:relative;white-space:nowrap}.image-gallery-slide{background:#fff;left:0;position:absolute;top:0;width:100%}.image-gallery-slide.center{position:relative}.image-gallery-slide.left{left:-1px}.image-gallery-slide.right{left:1px}.image-gallery-slide img{width:100%;height:auto}.image-gallery-slide .image-gallery-description{background:rgba(0,0,0,.4);bottom:70px;color:#fff;left:0;line-height:1;padding:10px 20px;position:absolute;white-space:normal}@media only screen and (max-width: 47.9375rem){.image-gallery-slide .image-gallery-description{bottom:45px;font-size:.8em;padding:8px 15px}}.image-gallery-bullets{bottom:20px;left:0;margin:0 auto;position:absolute;right:0;width:80%;z-index:4}.image-gallery-bullets .image-gallery-bullets-container{margin:0;padding:0;text-align:center}.image-gallery-bullets .image-gallery-bullet{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:50%;box-shadow:0 1px 0 #1a1a1a;cursor:pointer;display:inline-block;margin:0 5px;outline:none;padding:5px}@media only screen and (max-width: 47.9375rem){.image-gallery-bullets .image-gallery-bullet{margin:0 3px;padding:3px}}@media only screen and (max-width: 33.0625rem){.image-gallery-bullets .image-gallery-bullet{padding:2.7px}}.image-gallery-bullets .image-gallery-bullet.active{background:#fff}.image-gallery-thumbnails-wrapper{position:relative}.image-gallery-thumbnails-wrapper-rtl{direction:rtl}.image-gallery-thumbnails-wrapper.left,.image-gallery-thumbnails-wrapper.right{display:inline-block;vertical-align:top;width:108px}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.image-gallery-thumbnails-wrapper.left,.image-gallery-thumbnails-wrapper.right{width:25%}}.image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails,.image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails{height:100%;width:100%;left:0;padding:0;position:absolute;top:0}.image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails .image-gallery-thumbnail,.image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails .image-gallery-thumbnail{display:block;margin-right:unset;margin-left:10px;padding:0}.image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails .image-gallery-thumbnail+.image-gallery-thumbnail,.image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails .image-gallery-thumbnail+.image-gallery-thumbnail{margin-left:10px}.image-gallery-thumbnails-wrapper.left{margin-right:5px}@media only screen and (max-width: 47.9375rem){.image-gallery-thumbnails-wrapper.left{margin-right:3px}}.image-gallery-thumbnails{overflow:hidden}@media print{.image-gallery-thumbnails{display:none}}.image-gallery-thumbnails-container{display:flex;flex-flow:row wrap;margin-right:-10px;transition:transform .45s ease-out;cursor:pointer}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.image-gallery-thumbnails-container{align-items:flex-end;justify-content:flex-end;margin-right:unset}}@media only screen and (max-width: 47.9375rem){.image-gallery-thumbnails-container{text-align:center;white-space:nowrap;transition:transform .45s ease-out;cursor:pointer}}.image-gallery-image{display:flex;flex-wrap:wrap;text-align:center;justify-content:center}.image-gallery-image__picture{display:flex;width:100%}.image-gallery-image .product-image__icon-wrapper{position:relative}@media only screen and (min-width: 48rem),print{.image-gallery-image .product-image__icon{height:2rem}}.image-gallery-image img{-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center}.image-gallery-image iframe{border:none}.image-gallery-thumbnail{display:flex;width:72px;height:70px;margin-top:10px;padding:0;--outline-offset: -2px}@media only screen and (max-width: 47.9375rem){.image-gallery-thumbnail{width:75px}}.image-gallery-thumbnail:not(:last-child){margin-right:10px}.image-gallery-thumbnail-inner__bottom{position:absolute;height:5px;margin-top:5px;background-color:#000;transition:left .2s ease-in-out,display .2s linear,top .01s linear .18s}.image-gallery-thumbnail-label{box-sizing:border-box;color:#fff;font-size:1em;left:0;line-height:1em;padding:5%;position:absolute;top:50%;text-shadow:1px 1px 0 #000;transform:translateY(-50%);white-space:normal;width:100%}@media only screen and (max-width: 47.9375rem){.image-gallery-thumbnail-label{font-size:.8em;line-height:.8em}}.image-gallery-thumbnail img{vertical-align:middle;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center;height:60px;width:72px}.image-gallery-index{background:rgba(0,0,0,.4);color:#fff;line-height:1;padding:10px 20px;position:absolute;right:0;top:0;z-index:4}@media print{.image-gallery-index{display:none}}@media only screen and (max-width: 47.9375rem){.image-gallery-index{font-size:.8em;padding:5px 10px}}.image-gallery__overlay{height:100%;width:100%;max-height:100%}@media only screen and (min-width: 64rem){.image-gallery__overlay{width:calc(100% - 100px);max-height:calc(100% - 100px)}}.image-gallery__overlay--button{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;display:flex;gap:10px;align-items:center;position:absolute;bottom:0;z-index:1;background-color:#fff;padding:8px 10px;border:1px solid #b1b1b1;cursor:pointer}@media print{.image-gallery__overlay--button{display:none}}.image-gallery__overlay .image-gallery-thumbnails-container{justify-content:center;flex-flow:row nowrap}@media(hover: hover)and (pointer: fine){.image-gallery__overlay .image-gallery-image.is-zoomed-in{overflow:hidden;background-repeat:no-repeat;background-size:200%}.image-gallery__overlay .image-gallery-image.is-zoomed-in :hover img{opacity:0}}@media only screen and (min-width: 48rem),print{.image-gallery__overlay .image-gallery-left-nav,.image-gallery__overlay .image-gallery-right-nav{--outline-offset: 2px;border:1px solid var(--button-border);position:relative;background:linear-gradient(to bottom, black 50%, var(--color3) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:var(--button-border);height:2rem;width:2rem;color:#fff;padding:0;position:absolute}.image-gallery__overlay .image-gallery-left-nav.active,.image-gallery__overlay .image-gallery-right-nav.active{background-position:0 -100%}}@media only screen and (min-width: 48rem)and (hover: hover)and (pointer: fine),print and (hover: hover)and (pointer: fine){.image-gallery__overlay .image-gallery-left-nav:hover,.image-gallery__overlay .image-gallery-right-nav:hover{background-position:0 -100%}}@media only screen and (min-width: 48rem),print{.image-gallery__overlay .image-gallery-left-nav.active,.image-gallery__overlay .image-gallery-right-nav.active{border-color:var(--button-border)}}@media only screen and (min-width: 48rem)and (hover: hover)and (pointer: fine),print and (hover: hover)and (pointer: fine){.image-gallery__overlay .image-gallery-left-nav:hover,.image-gallery__overlay .image-gallery-right-nav:hover{border-color:var(--button-border)}}@media only screen and (min-width: 48rem),print{.image-gallery__overlay .image-gallery-left-nav:disabled,.image-gallery__overlay .image-gallery-right-nav:disabled{background:#ededed;border-color:#ededed;pointer-events:none}}@media only screen and (min-width: 48rem),print{.image-gallery__overlay .image-gallery-left-nav:hover,.image-gallery__overlay .image-gallery-right-nav:hover{color:var(--color2)}}@media only screen and (min-width: 48rem),print{.image-gallery__overlay .image-gallery-left-nav::after,.image-gallery__overlay .image-gallery-right-nav::after{z-index:1;position:relative}}.image-gallery__overlay .image-gallery-left-nav .image-gallery-svg,.image-gallery__overlay .image-gallery-right-nav .image-gallery-svg{display:none}.image-gallery__overlay .image-gallery-left-nav::before,.image-gallery__overlay .image-gallery-right-nav::before{content:none}@media only screen and (min-width: 48rem),print{.image-gallery__overlay .image-gallery-left-nav{left:-62px}.image-gallery__overlay .image-gallery-left-nav::before{content:"";background:url(stihl-styles/resources/icons/icon-arrow-left-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none)}}@media only screen and (min-width: 64rem){.image-gallery__overlay .image-gallery-left-nav{left:-52px}}@media only screen and (min-width: 48rem),print{.image-gallery__overlay .image-gallery-right-nav{right:-62px}.image-gallery__overlay .image-gallery-right-nav::before{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none)}}@media only screen and (min-width: 64rem){.image-gallery__overlay .image-gallery-right-nav{right:-52px}}.image-gallery__overlay .overlay__content{margin:auto 20px}@media only screen and (min-width: 48rem),print{.image-gallery__overlay .overlay__content-inner{max-width:700px}}.center-cropped{-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center;width:100px}.cursor-zoomIn{cursor:zoom-in}.icon--360{vertical-align:middle;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;height:60px;width:72px;color:#000;content:"";background-image:url(stihl-styles/resources/icons/icon-360view-64.svg);background-size:45px 45px;display:inline-block;background-position:center;background-repeat:no-repeat}.thumb--video{position:relative;width:100%;height:60px;z-index:2}.icon--play{fill:#fff;height:64px;width:64px;background-image:url(stihl-styles/resources/icons/icon-video-64.svg);position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.icon--play.big{height:96px;width:96px}@media only screen and (max-width: 47.9375rem){.icon--play.big{height:64px;width:64px}}.m_img-gallery-01{padding:0;margin:0 auto;position:relative;overflow:hidden;background:var(--color13)}.ts-body .white-container .m_img-gallery-01,.m_img-gallery-01{--nav-button-size: 45px}@media only screen and (max-width: 47.9375rem){.m_img-gallery-01{min-height:auto}}.ts-body .m_img-gallery-01{height:unset;--nav-button-size: 32px}.m_img-gallery-01__content{display:flex;background:var(--color13);white-space:normal;border:none;margin-top:45px;padding:0 10px}.ts-body .white-container .m_img-gallery-01__content>p>p>a,.m_img-gallery-01__content>p>p>a{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow)}.ts-body .white-container .m_img-gallery-01__content>p>p>b>a,.ts-body .white-container .m_img-gallery-01__content>p>p>i>a,.m_img-gallery-01__content>p>p>b>a,.m_img-gallery-01__content>p>p>i>a{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow)}@media only screen and (min-width: 48rem),print{.m_img-gallery-01__content{max-width:calc(100% - 170px)}.ts-body .white-container .m_img-gallery-01__content,.m_img-gallery-01__content{min-height:62px;margin-top:0;background:var(--color13)}.ts-body .white-container .m_img-gallery-01__content>p,.m_img-gallery-01__content>p{margin-top:16px}.ts-body .m_img-gallery-01__content{min-height:var(--nav-button-size);margin-top:24px;align-items:flex-start}.ts-body .m_img-gallery-01__content>p{margin-top:0}}.m_img-gallery-01__background{position:relative;padding-top:calc((3 / 4)*100%)}.m_img-gallery-01__background>picture,.m_img-gallery-01__background>a,.m_img-gallery-01__background>a>picture{position:absolute;inset:0 0 0 0}.m_img-gallery-01__background>picture>img,.m_img-gallery-01__background>a>img,.m_img-gallery-01__background>a>picture>img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}@media only screen and (min-width: 64rem){.m_img-gallery-01__background{padding-top:calc((9 / 16)*100%)}}.m_img-gallery-01__background-image{width:100%;height:100%;background-color:#dadada;-o-object-fit:cover;object-fit:cover}.m_img-gallery-01__button{width:var(--nav-button-size);height:var(--nav-button-size);z-index:1;position:absolute;left:auto}@media only screen and (max-width: 47.9375rem){.m_img-gallery-01__button{display:none}}.ts-body .white-container .m_img-gallery-01__button,.m_img-gallery-01__button{right:calc(var(--nav-button-size) + 1px);bottom:16px;border:none}.ts-body .white-container .m_img-gallery-01__button :first-child,.m_img-gallery-01__button :first-child{left:auto}.ts-body .white-container .m_img-gallery-01__button>*,.m_img-gallery-01__button>*{height:unset;width:unset}.ts-body .m_img-gallery-01__button{right:calc(var(--nav-button-size) + 4px)}.ts-body .m_img-gallery-01__button{bottom:0;border:1px solid #fff}.ts-body .m_img-gallery-01__button :first-child{left:calc(100% - var(--nav-button-size)*2 - 4px)}@media only screen and (max-width: 47.9375rem){.ts-body .m_img-gallery-01__button{display:grid}}.ts-body .m_img-gallery-01__button>*{height:calc(var(--nav-button-size)/2);width:calc(var(--nav-button-size)/2)}.ts-body .white-container .m_img-gallery-01__button+.m_img-gallery-01__button,.m_img-gallery-01__button+.m_img-gallery-01__button{right:0}.m_img-gallery-01 .image-gallery-index{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;display:flex;align-items:center;box-sizing:border-box;background:var(--color13)}.ts-body .white-container .m_img-gallery-01 .image-gallery-index,.m_img-gallery-01 .image-gallery-index{right:calc(var(--nav-button-size)*2 + 1px);height:var(--nav-button-size);padding:10px 20px;bottom:16px;top:unset}.ts-body .m_img-gallery-01 .image-gallery-index{right:calc(var(--nav-button-size)*2 + 4px);padding:10px calc(var(--nav-button-size)/2);bottom:0}@media only screen and (max-width: 47.9375rem){.m_img-gallery-01 .image-gallery-index{display:none}}.m_img-gallery-01 .image-gallery-slide{padding-top:0;background:var(--color13)}.m_img-gallery-01 .image-gallery-bullets{bottom:auto;top:calc(20px + var(--image-height, 21px));transition:opacity .2s}.m_img-gallery-01 .image-gallery-bullet{background:var(--button-color-state-zero);box-shadow:none;border:none;padding:0;width:6px;height:6px;margin:0}.m_img-gallery-01 .image-gallery-bullet+.image-gallery-bullet{margin-left:5px}.m_img-gallery-01 .image-gallery-bullet.active{background:var(--button-color-state-one)}.m_img-gallery-01--hidden-bullets .image-gallery-bullets{opacity:0}.confirmation-header__container{overflow:hidden;margin-top:var(--outline-space-negative-margin);margin-bottom:var(--outline-space-negative-margin);padding-top:var(--outline-space-padding);padding-bottom:var(--outline-space-padding);position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.confirmation-header__container{width:45.5rem}}@media print{.confirmation-header__container{width:auto}}@media only screen and (min-width: 64rem){.confirmation-header__container{width:61.5rem}}@media only screen and (min-width: 48rem),print{.confirmation-header__container{width:calc(100%/(10 / 8))}}.confirmation-header__container-lite{margin-bottom:30px;overflow-y:auto;position:relative;height:395px}.confirmation-header__big-container{overflow:hidden;position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.confirmation-header__big-container{width:45.5rem}}@media print{.confirmation-header__big-container{width:auto}}@media only screen and (min-width: 64rem){.confirmation-header__big-container{width:61.5rem}}@media only screen and (min-width: 48rem),print{.confirmation-header__big-container{width:calc(100%/(10 / 9))}}.confirmation-header__big-container-lite{margin-bottom:30px;overflow-y:auto;position:relative;height:395px}.confirmation-header__entry-tile{margin-top:20px}@media only screen and (min-width: 48rem),print{.confirmation-header__entry-tile{margin-top:60px}}.confirmation-header__action-wrapper{display:flex;align-items:center}.confirmation-header__checkbox{margin-right:1.5rem}.confirmation-header__keep-warning{margin-top:.5rem;color:var(--color3)}.confirmation-header__cta{margin-left:auto;display:flex;flex-direction:column;align-items:flex-end}@media only screen and (min-width: 48rem),print{.confirmation-header__cta{width:calc(100%/(6 / 2));align-items:center}}.confirmation-header__link{--outline-offset: -1px;margin:20px 20px 0 0}.confirmation .overlay__button{position:absolute;z-index:1;right:0}@media only screen and (min-width: 48rem),print{.confirmation .overlay__button{right:20px}}.confirmation .overlay__content-inner{width:100% !important;margin-top:0}@media only screen and (max-width: 47.9375rem){.confirmation .overlay__content-inner{margin-bottom:20px}}@media only screen and (max-width: 47.9375rem){.confirmation .list-shopping-cart__product>*:not(:last-child){margin-bottom:0}.confirmation .confirmation-header__entry-tile .list-shopping-cart__price-box,.confirmation .confirmation-header__entry-tile .list-shopping-cart__stock-box,.confirmation .confirmation-header__entry-tile .list-shopping-cart__quantity,.confirmation .confirmation-header__entry-tile .list-shopping-cart__summery,.confirmation .confirmation-header__entry-tile .list-shopping-cart__img-box{display:none}}.teaser-product-hero{display:flex;flex-direction:column}@media only screen and (min-width: 48rem),print{.teaser-product-hero{flex-direction:row;justify-content:space-between}.teaser-product-hero--left{flex-direction:row-reverse}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.teaser-product-hero{min-height:50rem}}@media only screen and (min-width: 64rem){.teaser-product-hero{min-height:49.375rem}}.teaser-product-hero__hidden{display:none}.teaser-product-hero__image{--image: "";position:relative}@media only screen and (max-width: 47.9375rem){.teaser-product-hero__image{padding-top:calc((9 / 16)*100%);margin-bottom:20px}.teaser-product-hero.teaser-product-hero--products .teaser-product-hero__image{padding-top:calc((4 / 3)*100%);margin-bottom:30px}}.teaser-product-hero__image::after{position:absolute;inset:0;opacity:0;background:rgba(0,0,0,0) var(--image) no-repeat;background-size:cover;content:"";transition:200ms opacity 400ms}.teaser-product-hero__image.do-fade::after{opacity:1}.teaser-product-hero__image picture{display:flex;flex-flow:column;flex:1;position:absolute;width:100%;height:100%}@media only screen and (max-width: 47.9375rem){.teaser-product-hero__image picture{position:absolute;inset:0}}@media only screen and (min-width: 48rem),print{.teaser-product-hero__image picture{height:100%}}.teaser-product-hero__image picture>img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.teaser-product-hero__content{display:flex;flex-direction:column;justify-content:space-between;margin-bottom:25px}@media only screen and (min-width: 48rem),print{.teaser-product-hero__content{margin-bottom:unset}}.teaser-product-hero__header{display:flex;flex-flow:column;margin-bottom:30px}@media only screen and (min-width: 48rem),print{.teaser-product-hero__header{margin-bottom:20px}}.teaser-product-hero__main{display:flex;flex:1;position:relative;overflow:hidden}@keyframes slideOld{0%{transform:translateX(0)}100%{transform:translateX(-100%)}}@keyframes slideNew{0%{transform:translateX(100%)}100%{transform:translateX(0)}}.teaser-product-hero__main.do-slide .teaser-product-hero__main-old>*:nth-child(1){animation:slideOld 300ms 0ms both}.teaser-product-hero__main.do-slide .teaser-product-hero__main-old>*:nth-child(2){animation:slideOld 300ms 150ms both}.teaser-product-hero__main.do-slide .teaser-product-hero__main-old>*:nth-child(3){animation:slideOld 300ms 300ms both}.teaser-product-hero__main.do-slide .teaser-product-hero__main-old>*:nth-child(4){animation:slideOld 300ms 450ms both}.teaser-product-hero__main.do-slide .teaser-product-hero__main-new>*:nth-child(1){animation:slideNew 300ms 150ms both}.teaser-product-hero__main.do-slide .teaser-product-hero__main-new>*:nth-child(2){animation:slideNew 300ms 300ms both}.teaser-product-hero__main.do-slide .teaser-product-hero__main-new>*:nth-child(3){animation:slideNew 300ms 450ms both}.teaser-product-hero__main.do-slide .teaser-product-hero__main-new>*:nth-child(4){animation:slideNew 300ms 600ms both}.teaser-product-hero__main-new{display:flex;flex-flow:column;flex:1;width:100%;height:100%;transition:all 500ms}.teaser-product-hero.teaser-product-hero--products .teaser-product-hero__main-new.has-header{justify-content:space-between}.teaser-product-hero.teaser-product-hero--products .teaser-product-hero__main-new header{max-height:43%}.teaser-product-hero.teaser-product-hero--products .teaser-product-hero__main-new .tile_product-hero{max-height:57%}@media(max-width: 63.9375rem){.teaser-product-hero.teaser-product-hero--products .teaser-product-hero__main-new header{max-height:35%}.teaser-product-hero.teaser-product-hero--products .teaser-product-hero__main-new .tile_product-hero{max-height:65%}}.teaser-product-hero.teaser-product-hero--products .teaser-product-hero__main-new.not-first .tile_product-hero-small,.teaser-product-hero.teaser-product-hero--products .teaser-product-hero__main-new.not-first .tile_product-standard-list{flex:1}.teaser-product-hero.teaser-product-hero--products .teaser-product-hero__main-new.not-first .tile_product-standard-list{margin-bottom:10px}.teaser-product-hero.teaser-product-hero--products .teaser-product-hero__main-new .tile_product-hero:last-child,.teaser-product-hero.teaser-product-hero--products .teaser-product-hero__main-new .tile_product-hero-small:last-child,.teaser-product-hero.teaser-product-hero--products .teaser-product-hero__main-new .tile_product-standard-list:last-child{border:0}@media only screen and (max-width: 47.9375rem){.teaser-product-hero__main{flex-flow:column}}.teaser-product-hero__main .swiper{width:100%}.teaser-product-hero__main .swiper-slide{flex-basis:100%}.teaser-product-hero__footer{display:none}@media only screen and (min-width: 48rem),print{.teaser-product-hero__footer{display:flex;justify-content:center;width:100%}}.teaser-product-hero__pager{display:flex;justify-content:center;width:100%;margin-top:20px}.teaser-product-hero__tab{display:flex;flex-flow:column;flex:1}@media only screen and (max-width: 47.9375rem){.teaser-product-hero__content-inner{margin:0 10px}}@media only screen and (min-width: 48rem),print{.teaser-product-hero__content-inner{margin-right:10px}.teaser-product-hero__content-inner--left{margin-right:unset;margin-left:10px}}.teaser-product-hero__headline{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25}@media only screen and (min-width: 48rem),print{.teaser-product-hero__headline{font-size:1.625rem;line-height:1.2}}.teaser-product-hero__description{margin-top:25px}.teaser-product-hero__description:empty{display:none}@media only screen and (max-width: 47.9375rem){.teaser-product-hero__product-tile{display:none}}@media only screen and (min-width: 48rem),print{.teaser-product-hero__image,.teaser-product-hero__content{width:calc(calc(100% / 2) - 1.25rem + (1.25rem / 2))}.teaser-product-hero__slider{display:none}}.teaser-product-hero.board-of-directors-articles .article-tab{max-height:none;flex:1}.recommended-articles-component h2{margin-bottom:1.25rem}.m_article__heading{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;position:relative;margin-top:50px}@media only screen and (min-width: 48rem),print{.m_article__heading{font-size:1.875rem;line-height:1.3}}.m_article__heading::after{display:block;content:"";background-color:var(--color1)}.m_article__heading::after{width:23px;height:5px;margin-top:10px;background:var(--color1)}@media only screen and (min-width: 48rem),print{.m_article__heading::after{width:34px;height:7px;margin-top:15px;background:var(--color1)}}.m_article__description{text-align:left;font-style:italic;text-transform:none;letter-spacing:0;color:var(--color1);font-size:2rem}@media only screen and (min-width: 64rem){.m_article__description{width:calc(100%/(12 / 10));margin-top:50px}}.m_article__date{margin-top:50px}.search-navi-flyout{--close-flyout-btn-height: 2.8125rem;--search-input-height: 6.8125rem;--elements-on-page-height: var(--close-flyout-btn-height) - var(--search-input-height) - var(--header-height);position:absolute;z-index:2147483640;height:calc(100vh - var(--header-height));max-height:calc(100vh - var(--header-height));overflow-y:hidden;width:100%;top:0;bottom:auto;background-color:rgba(0,0,0,.4)}.search-navi-flyout__logo{height:45px;width:103px}@media only screen and (min-width: 64rem){.search-navi-flyout__logo{height:66px;width:150px}}.search-navi-flyout__content{position:relative;height:auto;background-color:#fff}.search-navi-flyout__suggest-container{height:auto;max-height:calc(100vh - var(--elements-on-page-height));max-height:calc(100dvh - var(--elements-on-page-height));overflow-y:auto;background-color:#fff;display:grid;box-sizing:border-box}@media only screen and (min-width: 64rem){.search-navi-flyout__suggest-container{margin-left:calc((var(--outline-width) + var(--outline-offset))*-1);margin-right:calc((var(--outline-width) + var(--outline-offset))*-1);padding-left:calc(var(--outline-width) + var(--outline-offset));padding-right:calc(var(--outline-width) + var(--outline-offset));grid-template:"suggests products content" auto "categories products content" auto ". button ." 100px;grid-template-columns:1fr 2fr 0;overflow:auto;width:70%;grid-gap:30px;margin-left:auto;margin-right:auto}}@media(max-width: 63.9375rem){.search-navi-flyout__suggest-container{grid-template-columns:1fr;grid-gap:20px;grid-template-areas:"suggests" "products" "button" "categories" "content";padding:0 1.25rem 5rem;margin:0 auto}}@media only screen and (min-width: 64rem){.search-navi-flyout__suggest-container.specific-corporate{grid-template:"suggests results jobs news" auto ". button1 button2 button3" 100px;grid-template-columns:1fr 1fr 1fr 1fr 0;overflow:auto;width:70%;grid-gap:30px;margin-left:auto;margin-right:auto}}@media(max-width: 63.9375rem){.search-navi-flyout__suggest-container.specific-corporate{grid-template-columns:1fr;grid-gap:20px;grid-template-areas:"suggests" "results" "button1" "jobs" "button2" "news" "button3";padding:0 1.25rem 5rem;margin:0 auto}}@media only screen and (min-width: 64rem){.search-navi-flyout__suggest-container.specific-corporate.reduced{grid-template:"suggests results news" auto ". button1 button3" 100px;grid-template-columns:1fr 1fr 1fr}}@media(max-width: 63.9375rem){.search-navi-flyout__suggest-container.specific-corporate.reduced{grid-template-areas:"suggests" "results" "button1" "news" "button3"}}.search-navi-flyout__suggest-container--active{display:grid}.search-navi-flyout__suggest-container--inactive{display:none}.search-navi-flyout__suggest-container .suggest--focused{background-color:#dadada}.search-navi-flyout__close-button{display:flex;justify-content:flex-end;width:100%}.search-navi-flyout__container{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.search-navi-flyout__container{width:45.5rem}}@media print{.search-navi-flyout__container{width:auto}}@media only screen and (min-width: 64rem){.search-navi-flyout__container{width:61.5rem}}@media only screen and (min-width: 48rem),print{.search-navi-flyout__container{display:flex}}.search-navi-flyout__form{width:calc(100%/(2 / 2));position:relative;display:flex;margin:1.875rem auto 3.75rem}@media only screen and (min-width: 48rem),print{.search-navi-flyout__form{width:calc(100%/(6 / 4))}}@media only screen and (min-width: 64rem){.search-navi-flyout__form{width:calc(100%/(12 / 6))}}@media only screen and (max-width: 47.9375rem){.search-navi-flyout__form{padding-bottom:50px}}.search-navi-flyout__input{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;box-sizing:border-box;width:100%;border-bottom:1px solid #000}@media only screen and (min-width: 48rem),print{.search-navi-flyout__input{font-size:1.375rem}}@media only screen and (min-width: 48rem),print{.search-navi-flyout__input{height:2.5rem;padding:0 .625rem}}.search-navi-flyout__search-btn,.search-navi-flyout__delete-btn{position:absolute;cursor:pointer;top:.3125rem;margin:0;padding:0}@media only screen and (min-width: 48rem),print{.search-navi-flyout__search-btn,.search-navi-flyout__delete-btn{top:calc(50% - 0.5rem)}}.search-navi-flyout__search-btn svg,.search-navi-flyout__delete-btn svg{width:1rem;height:1rem}.search-navi-flyout__delete-btn{right:1.875rem}.search-navi-flyout__search-btn{right:.625rem}.search-navi-flyout__product-suggestions{grid-area:products}.search-navi-flyout__category-suggestions{grid-area:categories}.search-navi-flyout__suggests{grid-area:suggests}.search-navi-flyout__button-wrapper{grid-area:button}@media(max-width: 63.9375rem){.search-navi-flyout__button-wrapper{margin:0 0 20px}}@media only screen and (min-width: 64rem){.search-navi-flyout__button-wrapper{margin:0 0 40px}}.search-navi-flyout__button-results{grid-area:button1}@media(max-width: 63.9375rem){.search-navi-flyout__button-results{margin:0 0 20px}}@media only screen and (min-width: 64rem){.search-navi-flyout__button-results{margin:0 0 40px}}.search-navi-flyout__button-jobs{grid-area:button2}@media(max-width: 63.9375rem){.search-navi-flyout__button-jobs{margin:0 0 20px}}@media only screen and (min-width: 64rem){.search-navi-flyout__button-jobs{margin:0 0 40px}}.search-navi-flyout__button-news{grid-area:button3}@media(max-width: 63.9375rem){.search-navi-flyout__button-news{margin:0 0 20px}}@media only screen and (min-width: 64rem){.search-navi-flyout__button-news{margin:0 0 40px}}.search-navi-flyout__results{grid-area:results}.search-navi-flyout__jobs{grid-area:jobs}.search-navi-flyout__jobs h2{margin-bottom:1.25rem}.search-navi-flyout__news{grid-area:news}.search-navi-flyout__submit-button.suggest--focused{background-position:0 -100%}.search-navi-flyout__headline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#000;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-bottom:.75rem}.search-navi-flyout__suggested-search{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;width:100%;padding:0;margin-bottom:.5rem;border:1px solid #fff}.search-navi-flyout__suggested-search .highlight{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text-demi),Arial,sans-serif;font-size:1rem}.search-navi-flyout__product{display:grid;gap:20px;width:100%;margin-bottom:1.25rem;padding:0}@media(max-width: 63.9375rem){.search-navi-flyout__product:not(:first-child){padding-top:1.25rem;border-top:1px solid #b1b1b1}}@media only screen and (min-width: 64rem){.search-navi-flyout__product{grid-template-columns:100px 1fr}}.search-navi-flyout__product-name{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.search-navi-flyout__product-category{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:block;margin-top:2px}.search-navi-flyout__product-description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-top:7px}.search-navi-flyout__img-wrapper{position:relative;padding-top:calc((9 / 16)*100%)}.search-navi-flyout__img-wrapper>picture,.search-navi-flyout__img-wrapper>a,.search-navi-flyout__img-wrapper>a>picture{position:absolute;inset:0 0 0 0}.search-navi-flyout__img-wrapper>picture>img,.search-navi-flyout__img-wrapper>a>img,.search-navi-flyout__img-wrapper>a>picture>img{width:100%;height:100%;-o-object-fit:scale-down;object-fit:scale-down}.search-navi-flyout__item-link{display:flex;align-items:center;justify-content:space-between;border-bottom:.5px solid #c4c4c4;padding:.9375rem 0}.search-navi-flyout__item-link.specific-corporate-link{border-bottom:none;padding:0;padding-bottom:.9375rem}.search-navi-flyout__item:last-child .search-navi-flyout__item-link{border-bottom:none}.search-navi-flyout__item-name{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.product-filter{display:flex;justify-content:center;position:absolute;left:0;width:100%;background:var(--color13);overflow:hidden;z-index:500}@media only screen and (max-width: 47.9375rem){.product-filter{position:fixed;top:0;left:0;bottom:0;max-height:100%;height:auto !important;transition:transform 500ms}}@media only screen and (min-width: 48rem),print{.product-filter{border-bottom:1px solid #b1b1b1;transition:height 500ms,opacity 500ms}.dealer-locator__filter-bar .product-filter{padding:0 20px}}@media only screen and (max-width: 47.9375rem){.product-filter:not(.active){transform:translateX(100vw)}}@media only screen and (min-width: 48rem),print{.product-filter:not(.active){opacity:0}}.product-filter__close-x{--outline-offset: 2px;border:1px solid var(--button-border);position:relative;background:linear-gradient(to bottom, black 50%, var(--color3) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:var(--button-border);height:2.8125rem;width:2.8125rem;color:#fff}.product-filter__close-x.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.product-filter__close-x:hover{background-position:0 -100%}}.product-filter__close-x.active{border-color:var(--button-border)}@media(hover: hover)and (pointer: fine){.product-filter__close-x:hover{border-color:var(--button-border)}}.product-filter__close-x:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.product-filter__close-x:hover{color:var(--color2)}.product-filter__close-x::after{z-index:1;content:"";background:url(stihl-styles/resources/icons/icon-cross-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none);top:50%;left:50%;transform:translate(-50%, -50%)}.product-filter__close-x:hover::after{-webkit-mask:url(stihl-styles/resources/icons/icon-cross-white-16.svg);mask:url(stihl-styles/resources/icons/icon-cross-white-16.svg);background:var(--icon-btn-hover-color)}.ts-body .product-filter__close-x{--outline-offset: 2px;border:1px solid var(--button-border);position:relative;background:linear-gradient(to bottom, black 50%, var(--color3) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:var(--button-border);height:2rem;width:2rem;color:#fff}.ts-body .product-filter__close-x.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.ts-body .product-filter__close-x:hover{background-position:0 -100%}}.ts-body .product-filter__close-x.active{border-color:var(--button-border)}@media(hover: hover)and (pointer: fine){.ts-body .product-filter__close-x:hover{border-color:var(--button-border)}}.ts-body .product-filter__close-x:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.ts-body .product-filter__close-x:hover{color:var(--color2)}.ts-body .product-filter__close-x::after{z-index:1;content:"";background:url(stihl-styles/resources/icons/icon-cross-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none);top:50%;left:50%;transform:translate(-50%, -50%)}.ts-body .product-filter__close-x:hover::after{-webkit-mask:url(stihl-styles/resources/icons/icon-cross-white-16.svg);mask:url(stihl-styles/resources/icons/icon-cross-white-16.svg);background:var(--icon-btn-hover-color)}.ts-body .product-filter__close-x,.product-filter__close-x{position:absolute;top:0;right:0;z-index:20}.product-filter__container{--margin-bottom: 0;--margin-top: 45px;width:100%;position:relative;margin:var(--margin-top) 0 var(--margin-bottom);box-sizing:border-box}.ts-body .product-filter__container{--margin-top: 32px}@media only screen and (min-width: 48rem),print{.product-filter__container{display:flex;flex-flow:column-reverse;position:relative;width:100%;margin:30px 0}.m_filter-bar--stuck .product-filter__container{max-width:calc(100% - 40px)}}@media only screen and (max-width: 47.9375rem){.product-filter__wrapper{height:100%;padding:0 20px;overflow-y:auto}}@media only screen and (min-width: 48rem),print{.product-filter__wrapper{scrollbar-color:#000 #ededed;scrollbar-width:thin;margin:calc((var(--outline-width) + var(--outline-offset))*-1);padding:calc(var(--outline-width) + var(--outline-offset));overflow-x:hidden;display:grid;grid-template-columns:repeat(2, 1fr);grid-column-gap:20px;position:absolute;top:0}.ts-body .product-filter__wrapper{scrollbar-color:#fff #3e3e3e}.ts-body .product-filter__wrapper::-webkit-scrollbar-thumb{background-color:#fff}.product-filter__wrapper::-webkit-scrollbar{width:15px;background-color:rgba(255,255,255,0)}.product-filter__wrapper::-webkit-scrollbar-track,.product-filter__wrapper::-webkit-scrollbar-thumb{border:5px solid rgba(255,255,255,0);background-clip:padding-box}.product-filter__wrapper::-webkit-scrollbar-track{background-color:#ededed}.ts-body .product-filter__wrapper::-webkit-scrollbar-track{background-color:#3e3e3e}.product-filter__wrapper::-webkit-scrollbar-thumb{background-color:#000}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.product-filter__wrapper{max-height:50vh}}@media only screen and (min-width: 64rem){.product-filter__wrapper{grid-template-columns:repeat(3, 1fr);max-height:500px}}.product-filter__group:not(.results){width:100%}@media only screen and (min-width: 48rem),print{.product-filter__group:not(.results){margin-bottom:30px}}.product-filter__group.results button{position:relative;background:linear-gradient(to bottom, #F37A1F 50%, var(--color1) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:rgba(0,0,0,0);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center;height:3.75rem;--outline-offset: 2px;width:100%}.product-filter__group.results button.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.product-filter__group.results button:hover{background-position:0 -100%}}.product-filter__group.results button.active{border-color:rgba(0,0,0,0)}@media(hover: hover)and (pointer: fine){.product-filter__group.results button:hover{border-color:rgba(0,0,0,0)}}.product-filter__group.results button:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.product-filter__group.results button.active{color:var(--color2)}@media(hover: hover)and (pointer: fine){.product-filter__group.results button:hover{color:var(--color2)}}@media(max-width: 63.9375rem){.product-filter__group.results button{width:100%}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.product-filter__group.results button:not(.full){min-width:calc(calc(45.5rem / 6) * 2);max-width:calc(calc(45.5rem / 6) * 3)}}@media only screen and (min-width: 64rem){.product-filter__group.results button:not(.full){min-width:calc(calc(61.5rem / 12) * 3);max-width:calc(calc(61.5rem / 12) * 4)}}.product-filter__group.results button.shrink{min-width:auto}@media only screen and (max-width: 47.9375rem){.product-filter__group.results button{position:fixed;left:0;bottom:0;z-index:10}.product-filter__group.results button,.product-filter__group.results button:not(.full){width:100%}.product-filter__group.results button:not(:last-child){bottom:60px}.product-filter__group.results button.product-filter__group__btn--delete-selection{position:relative;background:linear-gradient(to bottom, #000 50%, var(--color3) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:rgba(0,0,0,0);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center;height:3.75rem;--outline-offset: 2px;width:100%;position:fixed}.product-filter__group.results button.product-filter__group__btn--delete-selection.active{background-position:0 -100%}}@media only screen and (max-width: 47.9375rem)and (hover: hover)and (pointer: fine){.product-filter__group.results button.product-filter__group__btn--delete-selection:hover{background-position:0 -100%}}@media only screen and (max-width: 47.9375rem){.product-filter__group.results button.product-filter__group__btn--delete-selection.active{border-color:rgba(0,0,0,0)}}@media only screen and (max-width: 47.9375rem)and (hover: hover)and (pointer: fine){.product-filter__group.results button.product-filter__group__btn--delete-selection:hover{border-color:rgba(0,0,0,0)}}@media only screen and (max-width: 47.9375rem){.product-filter__group.results button.product-filter__group__btn--delete-selection:disabled{background:#ededed;border-color:#ededed;pointer-events:none}}@media only screen and (max-width: 47.9375rem){.product-filter__group.results button.product-filter__group__btn--delete-selection.active{color:var(--color2)}}@media only screen and (max-width: 47.9375rem)and (hover: hover)and (pointer: fine){.product-filter__group.results button.product-filter__group__btn--delete-selection:hover{color:var(--color2)}}@media only screen and (max-width: 47.9375rem)and (max-width: 63.9375rem){.product-filter__group.results button.product-filter__group__btn--delete-selection{width:100%}}@media only screen and (max-width: 47.9375rem)and (min-width: 48rem)and (max-width: 63.9375rem){.product-filter__group.results button.product-filter__group__btn--delete-selection:not(.full){min-width:calc(calc(45.5rem / 6) * 2);max-width:calc(calc(45.5rem / 6) * 3)}}@media only screen and (max-width: 47.9375rem)and (min-width: 64rem){.product-filter__group.results button.product-filter__group__btn--delete-selection:not(.full){min-width:calc(calc(61.5rem / 12) * 3);max-width:calc(calc(61.5rem / 12) * 4)}}@media only screen and (max-width: 47.9375rem){.product-filter__group.results button.product-filter__group__btn--delete-selection.shrink{min-width:auto}}@media only screen and (max-width: 47.9375rem){.product-filter__group.results button.product-filter__group__btn--delete-selection .btn-inner{display:flex;gap:8px}}@media only screen and (max-width: 47.9375rem){.product-filter__group.results button.product-filter__group__btn--delete-selection:hover .icon-svg{fill:var(--color2)}}.product-filter__group>.acco__content>.acco__inner{flex-wrap:wrap;padding:20px 0 30px}.product-filter__group>.acco__content>.acco__inner--v2{padding:0 0 30px;display:flex;flex-direction:column}.product-filter__group>.acco__content>.acco__inner--v2 label:not(.multiselect-dropdown__item--label){padding:9.75px 64px 9.75px 16px;gap:16px}.product-filter__group>.acco__content>.acco__inner--v2 label:not(.multiselect-dropdown__item--label):hover{background-color:var(--dropdown-multiselect-hover)}.product-filter__group>.acco__content>.acco__inner--v2 label:not(.multiselect-dropdown__item--label),.product-filter__group>.acco__content>.acco__inner--v2 label:not(.multiselect-dropdown__item--label):hover{transition:.25s ease}.product-filter__group>.acco__content>.acco__inner--v2 .checkbox.checked.standard{font-weight:700}.product-filter__group--column{display:flex;flex-direction:column}.product-filter__mobile-title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25;margin:24px 10px 32px}@media only screen and (min-width: 48rem),print{.product-filter__mobile-title{font-size:1.625rem;line-height:1.2}}@media only screen and (min-width: 48rem),print{.product-filter__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin:0 0 5px 10px}}.product-filter__content--inner{flex-flow:row wrap}@media only screen and (min-width: 48rem),print{.product-filter__content--inner{display:flex;margin:0 -5px;height:auto !important}}.selected-filter{display:flex;flex-wrap:wrap;align-items:center;background-color:#fff;margin-top:8px}.selected-filter--filterbar{margin:.9375rem 0 1.5625rem}.selected-filter--filterbar button:nth-last-child(2){margin-right:1.25rem}.selected-filter__tab{display:flex;justify-content:center;align-items:center;position:relative;box-sizing:border-box;overflow:hidden;cursor:pointer;height:2.1875rem;min-width:5rem;max-width:15.625rem;text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;justify-content:space-between;padding:0 10px;background:#000;color:#fff;margin:5px 8px 5px 0}.selected-filter__tab::before{content:"";background:url(stihl-styles/resources/icons/icon-cross-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none);position:relative;height:16px;margin-right:10px}.selected-filter--filterbar .selected-filter__tab{margin-right:.625rem}.selected-filter__more{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;padding:5px 0}.selected-filter__more::after{content:"";background:url(stihl-styles/resources/icons/icon-plus-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.selected-filter__more span{pointer-events:none}.m_login-form{flex:1;display:flex;flex-direction:column;position:relative}.m_login-form__headline{padding-bottom:15px;margin-bottom:20px;border-bottom:1px solid #b1b1b1}.m_login-form__action{display:flex;flex-direction:column;align-items:flex-end}.m_login-form__link{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin:17px 20px 0 0}.m_login-form__link::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.m_login-form__link:hover::after{transform:translate3d(10px, -50%, 0)}.m_login-form__new-customer{margin-top:50px}@media only screen and (min-width: 48rem),print{.m_login-form__new-customer{margin-top:60px}}.m_login-form__dealer{display:inline-flex}.m_login-form__inline-link{margin-left:.3125rem}.m_login-form .error-message{margin-bottom:0}.m_login-form__new-customer-subline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;font-weight:bold}.m_login-form__bulletlist{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.m_login-form__bulletlist li{position:relative;padding:0 0 15px 10px;-webkit-hyphens:auto;hyphens:auto}.m_login-form__bulletlist li::before{position:absolute;left:0;content:"•"}.m_login-form__bulletlist li:last-child{padding-bottom:0}.m_login-form__bulletlist ul,.m_login-form__bulletlist ol{width:100%;padding-top:15px;padding-left:25px}.m_login-form__bulletlist ul ul,.m_login-form__bulletlist ul ol,.m_login-form__bulletlist ol ul,.m_login-form__bulletlist ol ol{padding-left:20px}.m_forgot-form{margin:35px 20px 0}.m_forgot-form__headline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;margin-bottom:30px}@media only screen and (min-width: 48rem),print{.m_forgot-form__headline{margin-bottom:40px}}.m_forgot-form__info{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;margin-bottom:40px}.m_forgot-form__submit{margin-top:20px}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_forgot-form .form-field{min-width:350px;grid-template-columns:35% 1fr}}.m_product-specifications__container{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem;margin:0 auto}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_product-specifications__container{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_product-specifications__container{width:45.5rem}}@media print{.m_product-specifications__container{width:auto}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem)and (min-width: 64rem){.m_product-specifications__container{width:61.5rem}}.m_product-specifications__headline{padding:0 .625rem;margin-top:5rem;margin-bottom:2.5rem}@media only screen and (min-width: 64rem){.m_product-specifications__headline{margin-top:5.625rem}}@media print{.m_product-specifications__headline{margin-top:2.5rem}}.m_product-specifications__table{margin:0 10px 30px}@media only screen and (max-width: 47.9375rem){.m_product-specifications__table>table td,.m_product-specifications__table>table th{display:block;background-color:#ededed;border:none}.m_product-specifications__table>table td:nth-child(even),.m_product-specifications__table>table th:nth-child(even){background-color:#fff}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_product-specifications__table>table td:last-child,.m_product-specifications__table>table th:last-child{width:calc(100%/(6 / 4))}}@media only screen and (min-width: 48rem),print{.m_product-specifications__table{display:flex;flex-direction:column}}@media only screen and (min-width: 64rem){.m_product-specifications__table{width:calc(100%/(12 / 8))}.m_product-specifications__table>table td:last-child,.m_product-specifications__table>table th:last-child{width:calc(100%/(8 / 5))}}.m_product-specifications__footer{margin:30px 10px 0}@media only screen and (min-width: 64rem){.m_product-specifications__footer{width:calc(100%/(12 / 8))}}.m_product-specifications__footer span{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;margin-right:20px}.m_product-specifications__footer sup::after{content:" "}.m_product-accessories{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_product-accessories{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_product-accessories{width:45.5rem}}@media print{.m_product-accessories{width:auto}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem)and (min-width: 64rem){.m_product-accessories{width:61.5rem}}.m_product-accessories__headline{padding:0 .625rem;margin-top:3.75rem;margin-bottom:2.5rem}@media only screen and (min-width: 64rem){.m_product-accessories__headline{margin-top:5rem}}@media only screen{.m_product-accessories__gray-background{background:#ededed}}.m_product-accessories__white-background{background-color:#fff}@media print{.m_product-accessories{padding-bottom:0 !important}}.aem-GridColumn:has(.m_product-accessories__gray-background):has(.m_product-accessories__headline){padding-bottom:3.75rem}@media only screen{.aem-GridColumn:has(.m_product-accessories__gray-background):has(.m_product-accessories__headline){background:#ededed}}.aem-GridColumn:has(.m_product-accessories__white-background):has(.m_product-accessories__headline){background:#fff}@media only screen{.aem-GridColumn:has(.m_product-accessories__white-background):has(.m_product-accessories__headline){padding-bottom:3.75rem}}.m_product-recommendations{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_product-recommendations{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_product-recommendations{width:45.5rem}}@media print{.m_product-recommendations{width:auto}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem)and (min-width: 64rem){.m_product-recommendations{width:61.5rem}}.m_product-recommendations__headline{padding:0 .625rem;margin-top:3.75rem;margin-bottom:2.5rem}@media only screen and (min-width: 64rem){.m_product-recommendations__headline{margin-top:5rem}}@media only screen{.m_product-recommendations__gray-background{background-color:#ededed}}.m_product-recommendations__white-background{background-color:#fff}.aem-GridColumn:has(.m_product-recommendations__gray-background):has(.m_product-recommendations__headline){padding-bottom:3.75rem}@media only screen{.aem-GridColumn:has(.m_product-recommendations__gray-background):has(.m_product-recommendations__headline){background:#ededed}}.aem-GridColumn:has(.m_product-recommendations__white-background):has(.m_product-recommendations__headline){background:#fff;padding-bottom:3.75rem}.m_last-seen{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}@media print{.m_last-seen{display:none}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_last-seen{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_last-seen{width:45.5rem}}@media print{.m_last-seen{width:auto}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem)and (min-width: 64rem){.m_last-seen{width:61.5rem}}.m_last-seen__headline{padding:0 .625rem;margin-top:3.75rem;margin-bottom:2.5rem}@media only screen and (min-width: 64rem){.m_last-seen__headline{margin-top:5rem}}@media only screen{.m_last-seen__gray-background{background-color:#ededed}}.m_last-seen__white-background{background-color:#fff}.aem-GridColumn:has(.m_last-seen__gray-background):has(.m_last-seen__headline){padding-bottom:3.75rem}@media only screen{.aem-GridColumn:has(.m_last-seen__gray-background):has(.m_last-seen__headline){background:#ededed}}.aem-GridColumn:has(.m_last-seen__white-background):has(.m_last-seen__headline){background:#fff;padding-bottom:3.75rem}.m_product-detail-headline__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;margin-bottom:1.875rem}@media only screen and (min-width: 48rem),print{.m_product-detail-headline__title{font-size:1.875rem;line-height:1.3}}.m_product-detail-headline__title::after{display:block;content:"";background-color:var(--color1)}.m_product-detail-headline__title::after{width:23px;height:5px;margin-top:10px;background:var(--color1)}@media only screen and (min-width: 48rem),print{.m_product-detail-headline__title::after{width:34px;height:7px;margin-top:15px;background:var(--color1)}}.product-details{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem;margin-top:5rem}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.product-details{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.product-details{width:45.5rem}}@media print{.product-details{width:auto}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem)and (min-width: 64rem){.product-details{width:61.5rem}}@media only screen and (min-width: 64rem){.product-details{margin-top:90px}}@media print{.product-details{margin-top:1.875rem}}.product-details .read-more__action{margin-left:10px}@media only screen and (min-width: 64rem){.product-details__grid{display:grid;grid-template-columns:4fr 3fr;gap:10px}}.product-details__image{padding-top:15px}@media print{.product-details__image{display:none}}.product-details__title{padding:0 .625rem;margin-top:5rem;margin-bottom:2.5rem}@media only screen and (min-width: 64rem){.product-details__title{margin-top:5.625rem}}@media print{.product-details__title{margin-top:2.5rem}}.product-details__title:first-child{margin-top:0}.product-details__description{margin:0 10px}.product-details__description+.product-details__description{margin-top:40px}.product-details__description .richtexteditor h3{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;margin-top:40px;margin-bottom:30px}.product-details__description .richtexteditor h4{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;margin-top:40px;margin-bottom:30px}.product-details__description .richtexteditor h5{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;margin-top:30px;margin-bottom:20px}.product-details__spacing{margin-top:0 !important;margin-bottom:20px}.product-details__highlights{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;margin-top:30px}.product-details__highlights li{position:relative;padding:0 0 20px 14px;-webkit-hyphens:auto;hyphens:auto}.product-details__highlights li::before{position:absolute;left:0;content:"•"}.product-details__highlights li:last-child{padding-bottom:0}.product-details__highlights ul,.product-details__highlights ol{width:100%;padding-top:20px;padding-left:21px}.product-details__highlights ul ul,.product-details__highlights ul ol,.product-details__highlights ol ul,.product-details__highlights ol ol{padding-left:16px}.product-section-headers{max-width:120rem;margin:0 auto}@media print{.product-section-headers{display:none}}.product-section-headers__container{height:100%;justify-content:center}.product-section-headers__list{background-color:#ededed;height:2.5rem;display:inline-block;width:100%}@media only screen and (min-width: 48rem),print{.product-section-headers__list{height:3.75rem}}.product-section-headers .tab-bar_header__wrapper{border:none}.product-section-headers .tab-bar_header__item{height:inherit}.product-section-headers .tab-bar_header__tab{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;display:flex;align-items:center;box-sizing:content-box;padding:.25em 1.5em 0;height:calc(100% - 0.5em);border:none;cursor:pointer}@media only screen and (min-width: 48rem),print{.product-section-headers .tab-bar_header__tab{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}}.product-section-headers .tab-bar_header__tab--active{background-color:rgba(0,0,0,0);border-bottom:4px solid #f37a1f}.product-section-headers .tab-bar_header .icon-high{height:2.5rem}@media only screen and (min-width: 48rem),print{.product-section-headers .tab-bar_header .icon-high{height:3.75rem}}.productdetailsectionheaders{position:sticky;top:var(--header-height);z-index:90;margin-top:5rem}@media print{.productdetailsectionheaders{display:none}}@media only screen and (min-width: 64rem){.productdetailsectionheaders{margin-top:5.625rem}}.m_product-ingredients{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_product-ingredients{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_product-ingredients{width:45.5rem}}@media print{.m_product-ingredients{width:auto}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem)and (min-width: 64rem){.m_product-ingredients{width:61.5rem}}.m_product-ingredients--promotions{margin-bottom:30px;width:100%}@media only screen and (min-width: 48rem),print{.m_product-ingredients--promotions{padding:0}}.m_product-ingredients__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text-demi),Arial,sans-serif;font-size:1rem}.m_product-ingredients__content{margin:0 10px}.m_product-ingredients--promotions .m_product-ingredients__content{margin:0}@media only screen and (min-width: 64rem){.m_product-ingredients__inner{width:calc(100%/(12 / 8))}}.m_product-ingredients--promotions .m_product-ingredients__inner{width:100%}.m_product-ingredients__headline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;margin-top:50px}.m_product-ingredients__link{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow);margin-top:10px;display:inline-block}.m_product-ingredients__description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;margin-top:10px}.m_product-ingredients p{margin:10px 0}.m_myaccount-data{border-bottom:1px solid #b1b1b1;margin-bottom:10px;padding:0 30px 30px 0}@media only screen and (max-width: 47.9375rem){.m_myaccount-data{padding:20px 0}}.m_myaccount-data__headline{margin-bottom:1.25rem}@media only screen and (min-width: 48rem),print{.m_myaccount-data__headline{margin-left:20px}}.m_myaccount-data__input{display:flex;margin-bottom:10px;flex-wrap:wrap}@media only screen and (max-width: 47.9375rem){.m_myaccount-data__input{flex-wrap:wrap}}@media only screen and (min-width: 48rem),print{.m_myaccount-data__input{margin-left:20px}}.m_myaccount-data__errormessage{padding:0 0 20px}@media only screen and (min-width: 48rem),print{.m_myaccount-data__errormessage{padding:20px}}.m_myaccount-data__addresslist{display:flex;flex-wrap:wrap;margin-bottom:10px}@media only screen and (min-width: 48rem),print{.m_myaccount-data__addresslist{padding:20px 0 20px 20px}}.m_myaccount-data__address{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;min-width:47%;padding-bottom:10px;position:relative}@media only screen and (min-width: 48rem),print{.m_myaccount-data__address{padding:10px}}@media only screen and (max-width: 47.9375rem){.m_myaccount-data__address{margin:0 0 20px;width:100%}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_myaccount-data__address{flex:1 0 auto;margin:0 40px 20px 0}}.m_myaccount-data__address input[type=checkbox]{border:1px solid #b1b1b1;width:16px;height:16px}.m_myaccount-data__address--container{display:flex;justify-content:center}@media only screen and (min-width: 48rem),print{.checkout .m_myaccount-data__address--container{padding-top:20px}}.m_myaccount-data__address--title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;margin-bottom:50px}.m_myaccount-data__address-box{width:100%;height:100%;min-height:150px}.m_myaccount-data__edit{position:absolute;right:20px;top:10px}.m_myaccount-data__edit button{width:25px;height:25px;cursor:pointer}.m_myaccount-data__edit button::before{content:"";background-image:url(stihl-styles/resources/icons/icon-pen-orange-16.svg);background-size:25px 25px !important;width:25px !important;height:25px !important;display:inline-block}.m_myaccount-data__message{height:15px;padding-left:10px}.m_myaccount-data__message .success-message,.m_myaccount-data__message .error-message{margin-bottom:0}.shipmentcollection{width:100%}@media only screen and (max-width: 47.9375rem){.shipmentcollection__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25}}@media only screen and (max-width: 47.9375rem)and (min-width: 48rem){.shipmentcollection__title{font-size:1.875rem;line-height:1.3}}@media only screen and (max-width: 47.9375rem){.shipmentcollection__title::after{display:block;content:"";background-color:var(--color1)}}@media only screen and (max-width: 47.9375rem){.shipmentcollection__title::after{width:23px;height:5px;margin-top:10px;background:var(--color1)}}@media only screen and (max-width: 47.9375rem)and (min-width: 48rem){.shipmentcollection__title::after{width:34px;height:7px;margin-top:15px;background:var(--color1)}}@media only screen and (max-width: 47.9375rem){.shipmentcollection__collapsed{display:none}}.shipmentcollection__collapsed{padding:10px 20px 20px}.shipmentcollection__subtitle{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;margin-bottom:30px}.shipmentcollection__formwrapper{width:100%;padding-left:10px}@media only screen and (max-width: 47.9375rem){.shipmentcollection__addresswrapper{margin-bottom:50px}}.shipmentcollection__selection-btn{display:flex;margin-bottom:30px}@media only screen and (min-width: 64rem){.shipmentcollection__selection-btn{width:calc(100%/(12 / 5))}}.shipmentcollection__selection-btn .checkbox{margin-left:30px}.shipmentcollection__spacing{margin:20px 0 40px}.shipmentcollection__selection{margin-bottom:40px}.shipmentcollection__change-delivery{display:inline-block;position:relative;cursor:pointer;margin-right:29px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.shipmentcollection__change-delivery::after{content:"";background:url(stihl-styles/resources/icons/icon-pen-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.75rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}@media(max-width: 63.9375rem){.shipmentcollection__change-delivery{margin:0 0 10px 10px}}@media only screen and (min-width: 64rem){.shipmentcollection__change-delivery::after{top:15%}}.shipmentcollection .list-shopping-cart:last-child .list-shopping-cart__notice-box,.shipmentcollection .list-confirmation:last-child .list-shopping-cart__notice-box{border:0}.shipmentcollection__box-wrapper{align-self:flex-end}.shipmentcollection__cheering{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#749f4a;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;margin-bottom:30px;font-weight:bold}.personalinformation{width:100%}@media only screen and (max-width: 47.9375rem){.personalinformation__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25}}@media only screen and (max-width: 47.9375rem)and (min-width: 48rem){.personalinformation__title{font-size:1.875rem;line-height:1.3}}@media only screen and (max-width: 47.9375rem){.personalinformation__title::after{display:block;content:"";background-color:var(--color1)}}@media only screen and (max-width: 47.9375rem){.personalinformation__title::after{width:23px;height:5px;margin-top:10px;background:var(--color1)}}@media only screen and (max-width: 47.9375rem)and (min-width: 48rem){.personalinformation__title::after{width:34px;height:7px;margin-top:15px;background:var(--color1)}}@media only screen and (max-width: 47.9375rem){.personalinformation__collapsed{display:none}}.personalinformation__collapsed{padding:10px 20px 20px}@media only screen and (min-width: 48rem),print{.personalinformation{padding-left:10px}}.personalinformation__subtitle{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;margin-bottom:10px;margin-top:10px}@media only screen and (min-width: 48rem),print{.personalinformation__subtitle{margin-left:5px}}.personalinformation__formwrapper{width:100%}@media only screen and (min-width: 48rem),print{.personalinformation__formwrapper .btn_selection{width:calc(100%/(3 / 2))}.shipmentcollection .personalinformation__formwrapper .btn_selection{min-width:280px;width:auto}}.payment{--payment-icon-width: 40px;--card-margin: -20px;width:100%}.payment .tab-bar_pager{margin-bottom:30px}@media only screen and (min-width: 48rem),print{.payment .tab-bar_pager{margin-bottom:60px}}@media only screen and (max-width: 47.9375rem){.payment__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25}}@media only screen and (max-width: 47.9375rem)and (min-width: 48rem){.payment__title{font-size:1.875rem;line-height:1.3}}@media only screen and (max-width: 47.9375rem){.payment__title::after{display:block;content:"";background-color:var(--color1)}}@media only screen and (max-width: 47.9375rem){.payment__title::after{width:23px;height:5px;margin-top:10px;background:var(--color1)}}@media only screen and (max-width: 47.9375rem)and (min-width: 48rem){.payment__title::after{width:34px;height:7px;margin-top:15px;background:var(--color1)}}@media only screen and (max-width: 47.9375rem){.payment__collapsed{display:none}}@media only screen and (min-width: 64rem){.payment{width:calc(100%/(12 / 7))}}.payment__collapsed{padding:10px 20px 20px}@media only screen and (min-width: 48rem),print{.payment__formwrapper{width:100%}}.payment__formwrapper .form__section{margin-bottom:30px}.payment__providers{display:flex;align-items:center;position:relative;height:32px;margin-bottom:30px}@media only screen and (max-width: 47.9375rem){.payment__providers{flex-flow:column}}.payment__providers-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-right:30px}.payment__providers-item{margin-right:30px;height:100%}.payment__providers-item.master::after,.payment__providers-item.visa::after{position:absolute}.payment__providers-item.master{width:41px}.payment__providers-item.master::after{content:url(stihl-styles/resources/icons/logo-mastercard.svg);height:32px;width:41px}.payment__providers-item.visa{width:100px}.payment__providers-item.visa::after{content:url(stihl-styles/resources/icons/logo-visa.svg);height:32px;width:100px}.payment__description{margin:0 10px 30px}.payment__description .icon-paypal{margin-bottom:30px}.payment__fields{width:100%}@media only screen and (min-width: 48rem),print{.payment__fields{width:calc(100% - var(--payment-icon-width) + var(--card-margin))}}.payment__card-radios{display:flex;gap:10px;align-items:center}@media only screen and (max-width: 47.9375rem){.payment__card-radios{margin:0 10px}}@media only screen and (min-width: 48rem),print{.payment__card-radios{grid-column:2/-1}}.payment__card-radio-label{margin-right:auto;max-width:calc(100% - 175px)}.payment-accepted-cards{display:grid;grid-gap:10px;align-items:center;margin-bottom:30px}@media only screen and (min-width: 48rem),print{.payment-accepted-cards{grid-template-columns:30% 1fr}}.payment-accepted-cards__wrapper{display:flex;align-items:center}@media only screen and (max-width: 47.9375rem){.payment-accepted-cards__wrapper{margin:0 10px}}.payment-accepted-cards__card{width:var(--payment-icon-width)}.payment-accepted-cards__card:not(:last-child){margin-right:30px}.payment-accepted-cards__cvv_container{display:flex}@media only screen and (min-width: 48rem),print{.payment-accepted-cards__cvv_container .tooltip{top:7px;transform:translate(-90%, -100%)}}@media only screen and (min-width: 48rem),print{.payment-accepted-cards__card-type{position:absolute;right:var(--card-margin);top:18px;width:var(--payment-icon-width);height:26px;transform:translateX(100%)}}@media only screen and (max-width: 47.9375rem){.payment-accepted-cards__card-type{display:none}}.payment-accepted-cards__payment-icon{width:var(--payment-icon-width)}.adyen-checkout__await{display:flex;flex-direction:column;align-items:center}.adyen-checkout__await__brand-logo,.adyen-checkout__await__icon{max-height:26px;max-width:40px}.adyen-checkout__await__indicator-holder,.adyen-checkout__await__subtitle{margin:5px 0}.m_order-summary{display:flex;flex-direction:column;margin-top:20px}.m_order-summary__processed,.m_order-summary__info-section{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_order-summary__processed,.m_order-summary__info-section{width:45.5rem}}@media print{.m_order-summary__processed,.m_order-summary__info-section{width:auto}}@media only screen and (min-width: 64rem){.m_order-summary__processed,.m_order-summary__info-section{width:61.5rem}}.m_order-summary__message{padding:30px 10px 40px;background-color:#ededed}@media only screen and (min-width: 64rem){.m_order-summary__message{padding-left:0}}@media only screen and (min-width: 64rem){.m_order-summary__processed,.m_order-summary__box{padding:0 10px}}.m_order-summary__order{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;margin-bottom:20px}@media only screen and (min-width: 64rem){.m_order-summary__order{padding-left:15px}}.m_order-summary__text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;margin:0}@media only screen and (min-width: 64rem){.m_order-summary__text{padding-left:15px}}.m_order-summary__info{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25;margin:80px 0 50px}@media only screen and (min-width: 48rem),print{.m_order-summary__info{font-size:1.625rem;line-height:1.2}}@media only screen and (min-width: 48rem),print{.m_order-summary__info{margin:120px 0 60px}}.m_order-summary__box{padding-left:10px}@media(max-width: 63.9375rem){.m_order-summary__box{padding-left:5px}}.m_order-summary__link{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow)}.m_order-summary__section{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.m_order-summary__segmentation{padding:30px 0 40px}@media only screen and (max-width: 47.9375rem){.checkoutoverview__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;padding-top:15px}}@media only screen and (max-width: 47.9375rem)and (min-width: 48rem){.checkoutoverview__title{font-size:1.875rem;line-height:1.3}}@media only screen and (max-width: 47.9375rem){.checkoutoverview__title::after{display:block;content:"";background-color:var(--color1)}}@media only screen and (max-width: 47.9375rem){.checkoutoverview__title::after{width:23px;height:5px;margin-top:10px;background:var(--color1)}}@media only screen and (max-width: 47.9375rem)and (min-width: 48rem){.checkoutoverview__title::after{width:34px;height:7px;margin-top:15px;background:var(--color1)}}.checkoutoverview__item{padding-top:20px;padding-bottom:20px;border-bottom:1px solid #b1b1b1}.checkoutoverview__item>.label_circle-no-text-l::after{content:"";background:url(stihl-styles/resources/icons/icon-pen-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);right:10px;transition:transform 250ms}.checkoutoverview__step{padding-top:10px}@media only screen and (min-width: 48rem),print{.checkoutoverview__step{padding-top:20px}}.checkoutoverview__step img{max-height:40px}@media only screen and (max-width: 47.9375rem){.checkoutoverview__step img{max-width:60px}}.checkoutoverview__step.paypal{width:-moz-fit-content;width:fit-content}.article-tab{--outline-offset: -2px;flex:1;display:block;position:relative;padding:0 10px;box-sizing:border-box}@media only screen and (min-width: 48rem),print{.article-tab{position:relative;background:linear-gradient(to bottom, var(--color2) 50%, var(--color4) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;padding:20px 40px 20px 20px;min-height:180px;max-height:35%}.article-tab .icon-svg{fill:var(--color1)}.article-tab.active{background-position:0 -100%}}@media only screen and (min-width: 48rem)and (hover: hover)and (pointer: fine),print and (hover: hover)and (pointer: fine){.article-tab:hover{background-position:0 -100%}.article-tab:hover .icon-svg{fill:var(--color1)}}@media only screen and (min-width: 48rem),print{.article-tab:not(:last-child){border-bottom:var(--border2)}}@media only screen and (min-width: 48rem),print{.article-tab.no-link{cursor:auto}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.article-tab{min-height:163px;padding:15px 40px 15px 20px}}.article-tab__inner{display:flex;flex-flow:row;justify-content:space-between;align-items:center;height:100%;width:100%}@media only screen and (min-width: 48rem),print{.article-tab__inner::after{background-image:url(stihl-styles/resources/icons/icon-arrow-right-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:var(--svg-filter-invert, none);position:absolute;right:0;height:100%;width:20px;padding:0 10px;transform:translateX(100%);content:"";box-sizing:content-box}}.article-tab__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;width:calc(100% - 30px);margin-bottom:15px;max-height:35%;overflow:hidden}.article-tab__icon .icon-svg{width:16px;height:16px}.article-tab__desc{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.column-control{display:flex;flex-wrap:wrap}@media only screen and (max-width: 33.0625rem){.column-control{flex-flow:column;align-items:center}}.column-control .publish:has(.ghost){display:initial}.column-control .publish:has(.ghost:only-child){display:none}.column-control__inner{display:flex;flex-flow:column;position:relative;width:100%;box-sizing:border-box;word-break:break-word}.teaser-grid .column-control__inner>*:not(.new){height:100%}.swiper-slide .column-control__inner{height:100%}.column-control__inner>*:not(:first-child){margin-top:30px}@media only screen and (max-width: 47.9375rem){.column-control__inner:not(:last-child){margin-bottom:30px}.column-control__inner.swiper-slide{margin-bottom:15px}}@media only screen and (min-width: 33.125rem)and (max-width: 47.9375rem){div:not(.swiper-slide)>.column-control__inner{width:calc(calc(100% / 2) - 1.25rem + (1.25rem / 2));margin-right:1.25rem}div:not(.swiper-slide)>.column-control__inner:nth-child(2n){margin-right:0}div:not(.swiper-slide)>.column-control__inner:nth-last-child(-n+2){margin-bottom:30px}}@media only screen and (min-width: 48rem),print{.column-control.column-size-2 .column-control__inner{width:calc(calc(100% / 2) - 1.25rem + (1.25rem / 2));margin-right:1.25rem}.column-control.column-size-2 .column-control__inner:nth-child(2n){margin-right:0}.column-control.column-size-2 .column-control__inner:nth-child(n+3){margin-top:30px}.column-control.column-size-3 .column-control__inner{width:calc(calc(100% / 3) - 1.25rem + (1.25rem / 3));margin-right:1.25rem}.column-control.column-size-3 .column-control__inner:nth-child(3n){margin-right:0}.column-control.column-size-3 .column-control__inner:nth-child(n+4){margin-top:30px}.column-control.column-size-4 .column-control__inner{width:calc(calc(100% / 4) - 1.25rem + (1.25rem / 4));margin-right:1.25rem}.column-control.column-size-4 .column-control__inner:nth-child(4n){margin-right:0}.column-control.column-size-4 .column-control__inner:nth-child(n+5){margin-top:30px}}@media only screen and (min-width: 64rem){.column-control.column-ratio-2-1 .column-control__inner:nth-child(1){flex:2}.column-control.column-ratio-2-1 .column-control__inner:nth-child(2){flex:1}.column-control.column-ratio-1-2 .column-control__inner:nth-child(1){flex:1}.column-control.column-ratio-1-2 .column-control__inner:nth-child(2){flex:2}}.column-control__inner .cta{display:flex;flex:1}.column-control__inner .cta>.btn{align-self:flex-end;width:100%}.teaser-grid .column-control .swiper{width:calc(100vw - 20px)}@media only screen and (max-width: 47.9375rem){.teaser-grid .column-control .swiper-slide{width:40%}}@media only screen and (max-width: 33.0625rem){.teaser-grid .column-control .swiper-slide{width:75%}}.column-control .pager{margin:0 auto}.content-card{--content-card-border: 1px solid #DADADA;--content-card-image-bg-color: #DADADA;display:grid;grid-template-rows:auto 1fr;grid-template-columns:minmax(0, 1fr);height:100%;background:var(--content-card-bg-color);transition:all .5s}.ts-body .content-card{--content-card-bg-color: #252525;--content-card-image-bg-color: transparent;--content-card-font-color: #B1B1B1;--content-card-box-shadow: inset 0 -5px #F37A1F;--content-card-move-tile-on-hover: 5px;--content-card-border: none}@media only screen and (min-width: 48rem),print{.ts-body .content-card--display-horizontally{--content-card-box-shadow: inset -5px 0 #F37A1F}}.content-card:hover .content-card__content{box-shadow:var(--content-card-box-shadow, none)}.content-card__video-icon-wrapper{display:flex;position:absolute;right:8px;bottom:8px;width:32px;height:24px;background:#252525;justify-content:center;align-items:center}.content-card__video-icon{border-top:6px solid rgba(0,0,0,0);border-left:13px solid #f37a1f;border-bottom:6px solid rgba(0,0,0,0)}.column-control .content-card,.filter-listing .grid .content-card{margin-top:var(--content-card-move-tile-on-hover, 0)}.column-control .content-card:hover,.filter-listing .grid .content-card:hover{margin-top:0;margin-bottom:var(--content-card-move-tile-on-hover, 0)}@media only screen and (min-width: 48rem),print{.content-card--display-horizontally{grid-template-columns:232px 1fr;grid-template-rows:100%}.content-card--display-horizontally:hover{margin-left:calc(var(--content-card-move-tile-on-hover, 0)*-1);margin-right:var(--content-card-move-tile-on-hover, 0)}.content-card--display-horizontally .content-card__image-wrapper{border-right:0}}.content-card__image-wrapper{position:relative;padding-bottom:calc((9 / 16)*100%);background:var(--content-card-image-bg-color);border:var(--content-card-border)}.content-card__image{width:100%;height:100%;position:absolute;-o-object-fit:cover;object-fit:cover}.content-card .font_special-2{color:#f37a1f}.content-card__content{display:flex;flex-direction:column;justify-content:space-between;border:var(--content-card-border)}.content-card--display-vertically .content-card__content{border-top:none}.content-card__content-truncate{-webkit-line-clamp:3;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.ts-body .content-card__content-title{color:#fff}.content-card__content-description{margin-bottom:32px}.ts-body .content-card__content-description{color:#ededed}.content-card__date{margin-right:16px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--content-card-font-color, #000);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.content-card__country{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--content-card-font-color, #000);font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem}@media only screen and (min-width: 48rem),print{.content-card__country{font-size:.9375rem}}.contentcard{height:100%}.contact-card{display:grid;grid-template-rows:100%;grid-template-columns:max-content auto;grid-gap:20px}.contact-card--large{align-items:center}.contact-card__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;margin-bottom:2px;font-weight:bold}.contact-card__avatar{border-radius:50%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}.contact-card__avatar--small{width:64px;height:64px;margin:8px 0}.contact-card__avatar--large{width:120px;height:120px}.contact-card__text-container{display:grid;grid-template-rows:repeat(3, min-content)}.contact-card__text-container--small{margin-top:14px}.contact-card__contact-options-container{display:flex;gap:3rem}@media only screen and (max-width: 47.9375rem){.contact-card__contact-options-container{flex-direction:column;gap:8px}}.contact-card__contact-email-container,.contact-card__contact-phone-container{display:flex;align-items:center;gap:8px}.contact-card__contact-phone,.contact-card__contact-email{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;color:#249abe}.m_countdown{display:flex;justify-content:center;background:#252525}.t_event-page__container .m_countdown{width:100vw;margin-left:-20px}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.t_event-page__container .m_countdown{margin-left:calc((100vw - 45.5rem)*-0.5)}}@media only screen and (min-width: 64rem){.t_event-page__container .m_countdown{margin-left:calc((100vw - 61.5rem)*-0.5)}}.m_countdown__inner{display:flex;align-items:center;justify-content:center;width:calc(100% - 40px);height:calc(26.5625rem - 6.5rem);padding:52px 20px}@media only screen and (min-width: 48rem),print{.m_countdown__inner{justify-content:space-between;width:61.5rem;height:17.1875rem;gap:24px;padding:0 20px}}.m_countdown__heading{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25}@media only screen and (min-width: 48rem),print{.m_countdown__heading{font-size:1.625rem;line-height:1.2}}.m_countdown__heading:not(.m-0){margin-bottom:24px}.m_countdown__description{display:flex;flex-direction:column;width:100%}@media only screen and (max-width: 47.9375rem){.m_countdown__description{gap:36px}.m_countdown__description>h2{margin:0}}.m_countdown__description--after-event{justify-content:center;align-items:center}@media only screen and (min-width: 48rem),print{.m_countdown__description--after-event{flex-direction:row;gap:48px}}.m_countdown__timer{display:none;flex-direction:column;align-items:center;position:relative;margin-right:80px;gap:4px}@media only screen and (max-width: 47.9375rem){.m_countdown__timer{max-width:299px}}@media only screen and (min-width: 48rem),print{.m_countdown__timer{display:flex}}.m_countdown__description>.m_countdown__timer{display:flex;justify-content:center;align-self:center}@media only screen and (min-width: 48rem),print{.m_countdown__description>.m_countdown__timer{display:none}}.m_countdown__timer__text{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2}.m_countdown__timer__time{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;font-size:3rem}@media only screen and (min-width: 48rem),print{.m_countdown__timer__time{font-size:1.875rem;line-height:1.3}}@media only screen and (min-width: 48rem),print{.m_countdown__timer__time{font-size:5rem}}.m_countdown__timer__time::after{position:absolute;content:"";background:url(stihl-styles/resources/icons/icon-calendar-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none);background-size:50%;background-color:#f37a1f;width:48px;height:48px;border-radius:50%;right:-80px;top:calc(50% - 24px)}.m_countdown__timer__label-wrapper{width:100%;display:flex;justify-content:space-around}.m_product-features{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_product-features{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_product-features{width:45.5rem}}@media print{.m_product-features{width:auto}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem)and (min-width: 64rem){.m_product-features{width:61.5rem}}.m_product-features__headline{padding:0 .625rem;margin-top:5rem;margin-bottom:2.5rem}@media only screen and (min-width: 64rem){.m_product-features__headline{margin-top:5.625rem}}@media print{.m_product-features__headline{margin-top:2.5rem}}.m_product-features__subheadline{padding:0 10px;margin-bottom:30px}.m_product-features__accordions{border-top:var(--border1)}.m_product-features__accordions__headline{padding-left:1.25rem}.m_product-features__accordions__content{display:grid;gap:1.25rem;padding:0 1.25rem;width:100%}.m_product-features__accordions__content:not(:has(.m_product-features__accordions__content__img)){display:flex}.m_product-features__accordions__content__img{width:auto;max-width:100%;position:relative;padding-top:calc((9 / 16)*100%)}.m_product-features__accordions__content__img>picture,.m_product-features__accordions__content__img>a,.m_product-features__accordions__content__img>a>picture{position:absolute;inset:0 0 0 0}.m_product-features__accordions__content__img>picture>img,.m_product-features__accordions__content__img>a>img,.m_product-features__accordions__content__img>a>picture>img{width:100%;height:100%;-o-object-fit:scale-down;object-fit:scale-down}@media only screen and (min-width: 48rem),print{.m_product-features__accordions__content{grid-template-columns:3fr 1fr}}@media only screen and (max-width: 47.9375rem){.m_product-features__overlay.overlay--standard{height:100vh;max-height:100vh}}.m_product-features__overlay.overlay--standard .overlay__button{position:absolute;top:0;right:0;z-index:1}@media only screen and (min-width: 48rem),print{.m_product-features__overlay.overlay--standard .overlay__button{right:1.25rem}}.m_product-features__overlay.overlay--standard .overlay__content-inner{min-height:500px;width:100%;margin:0 auto}.m_img-gallery-05 .image-gallery-slide{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;padding-top:0;white-space:normal}@media only screen and (max-width: 47.9375rem){.m_img-gallery-05 .image-gallery-slide{overflow-y:scroll;height:100vh}}.m_img-gallery-05 .image-gallery-swipe{display:flex;justify-content:center}@media only screen and (min-width: 64rem){.m_img-gallery-05 .image-gallery-slides{padding:0 82px}}.m_img-gallery-05 .image-gallery-index{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;display:flex;align-items:center;left:90px;background:rgba(0,0,0,0);color:#000;max-width:100px;height:25px}@media only screen and (max-width: 47.9375rem){.m_img-gallery-05 .image-gallery-index{position:fixed;top:0;height:35px}}.m_img-gallery-05 .image-gallery-index-separator{display:none}.m_img-gallery-05 .image-gallery-index-current{position:relative;margin-right:10px}.m_img-gallery-05 .image-gallery-index-current::after{content:"|";position:absolute;right:-8px}.m_img-gallery-05__slide{display:flex}@media only screen and (max-width: 47.9375rem){.m_img-gallery-05__slide{flex-direction:column}}@media only screen and (min-width: 48rem),print{.m_img-gallery-05__slide{padding:20px}}@media only screen and (min-width: 64rem){.m_img-gallery-05__slide{padding:20px 5px}}.m_img-gallery-05__content{display:flex;flex-direction:column;flex:1;padding-left:20px;margin-top:90px}@media only screen and (max-width: 47.9375rem){.m_img-gallery-05__content{margin-top:10px;padding:20px}}.m_img-gallery-05__image{padding:0 10px;margin-top:90px}@media only screen and (max-width: 47.9375rem){.m_img-gallery-05__image{flex:1;margin-top:45px;padding:0;position:relative;padding-top:calc((3 / 4)*100%)}.m_img-gallery-05__image picture{position:absolute;inset:0}}@media only screen and (min-width: 48rem),print{.m_img-gallery-05__image{flex-basis:314px}}@media only screen and (min-width: 64rem){.m_img-gallery-05__image{flex-basis:304px}}.m_img-gallery-05__image img{width:100%;height:100%;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center}@media only screen and (min-width: 48rem),print{.m_img-gallery-05__image img{max-height:235px}}@media only screen and (min-width: 64rem){.m_img-gallery-05__image img{max-height:228px}}.m_img-gallery-05__description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:30px}.m_img-gallery-05__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;margin-bottom:30px}.m_img-gallery-05__button{width:45px;height:45px;margin-right:10px;z-index:1;position:absolute;top:0;left:0}.m_img-gallery-05__button--right{left:46px}.m_img-gallery-05__button--right-counter{font-weight:bold;align-self:center;font-size:20px;line-height:1.3;left:45px;position:absolute;padding:10px 20px;right:0;top:0;z-index:4}.m_img-gallery-05__button--right .full-width{width:100%;height:100%;margin-right:10px}@media only screen and (min-width: 48rem),print{.m_img-gallery-05__button{position:absolute}}.m_img-gallery-05__pager{position:absolute;top:0;left:20px}.read-more{--read-more-icon: "plus";--read-less-icon: "minus"}.ts-body .read-more{--readmore-icon: "plus-white";--read-less-icon: "minus-white"}.read-more__content{position:relative;overflow:visible;transition:height 250ms}.read-more__content p{overflow:visible}.read-more__content:not(.active){max-height:4.5rem;overflow:hidden}.read-more__content:not(.active) p{overflow:hidden}.read-more__inner{width:100%;margin-top:0 !important}.read-more__action{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;cursor:pointer;margin-top:20px;padding:0}.read-more__action.more,.read-more__action.less{position:relative}.read-more__action.more::after,.read-more__action.less::after{top:50%;transform:translateY(-50%);margin-top:-1px;margin-left:10px}.read-more__action.more::after{content:"";background:url(stihl-styles/resources/icons/icon-plus-16.svg) no-repeat center/contain;position:absolute;height:.875rem;width:.875rem;filter:var(--svg-filter-invert, none)}.read-more__action.less::after{content:"";background:url(stihl-styles/resources/icons/icon-minus-16.svg) no-repeat center/contain;position:absolute;height:.875rem;width:.875rem;filter:var(--svg-filter-invert, none)}.trip-advisor{display:flex;flex-direction:column;justify-content:center;background-color:#f37a1f}.trip-advisor__content{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem;padding:50px 0}@media only screen and (min-width: 48rem),print{.trip-advisor__content{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.trip-advisor__content{width:45.5rem}}@media print{.trip-advisor__content{width:auto}}@media only screen and (min-width: 48rem)and (min-width: 64rem){.trip-advisor__content{width:61.5rem}}.trip-advisor__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25;margin:0 auto}@media only screen and (min-width: 48rem),print{.trip-advisor__title{font-size:1.625rem;line-height:1.2}}@media only screen and (min-width: 48rem),print{.trip-advisor__title{text-align:center;width:calc(100%/(12 / 8))}}.trip-advisor__link{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.trip-advisor__link::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.trip-advisor__link:hover::after{transform:translate3d(10px, -50%, 0)}.trip-advisor__link-container{display:flex;height:100px;background-color:#ededed;justify-content:center;align-items:center}.trip-advisor__icon{margin-left:10px}.teasertile{display:flex;position:relative}@media only screen and (max-width: 47.9375rem){.teasertile{flex-direction:column;align-items:flex-start}}@media only screen and (min-width: 48rem),print{.teasertile{flex-flow:column}}.teasertile__image{display:block;height:0;padding-bottom:56.25%;overflow:hidden}.teasertile__image img{width:100%;max-width:100%;max-height:unset}@media only screen and (max-width: 47.9375rem){.teasertile__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;margin:17px 10px 0}}@media only screen and (min-width: 48rem),print{.teasertile__title{display:inline-block;position:relative;cursor:pointer;margin-right:36px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:block;margin:10px 40px 0 10px}.teasertile__title::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);top:4px;left:100%;transform:translate3d(0.9375rem, 0, 0);height:1rem;transition:transform .2s;margin-top:-1px}.teasertile__title:hover::after{transform:translate3d(20px, 0, 0)}}.teasertile:hover .teasertile__title::after{transform:translate3d(20px, 0, 0)}.text-img{display:grid;grid-gap:1.25rem}.text-img.text-img--30 .text-img__img,.text-img.text-img--60 .text-img__img,.text-img.text-img--70 .text-img__img{padding-top:calc((3 / 4)*100%)}.text-img.text-img--40 .text-img__img{padding-top:calc((9 / 16)*100%)}.text-img.text-img--50 .text-img__img{padding-top:calc((4 / 3)*100%)}.teaser-grid .text-img.text-img--60{height:100%;grid-template-rows:auto 1fr;margin-bottom:0}@media only screen and (min-width: 48rem),print{.teaser-grid .text-img.text-img--60{grid-gap:0}}@media only screen and (max-width: 47.9375rem){.text-img{grid-template-areas:"img" "text"}}@media only screen and (min-width: 48rem),print{.text-img{grid-template-columns:repeat(6, 1fr)}.text-img.text-img--30{grid-template-areas:"img img text text text text"}.text-img.text-img--40,.text-img.text-img--50,.text-img.text-img--60{grid-template-areas:"img img img text text text"}.text-img.text-img--70{grid-template-areas:"img img img img text text"}.text-img.text-img--top,.text-img.text-img--tile{grid-template-areas:"img" "text";grid-template-columns:auto}.text-img.text-img--top{width:calc(100%/(12 / 4))}.text-img--right.text-img--30{grid-template-areas:"text text text text img img"}.text-img--right.text-img--40,.text-img--right.text-img--50,.text-img--right.text-img--60{grid-template-areas:"text text text img img img"}.text-img--right.text-img--70{grid-template-areas:"text text img img img img"}.text-img--top{grid-template-areas:"img" "text";grid-template-columns:auto;width:calc(100%/(12 / 4))}.text-img--tile{grid-template-areas:"img" "text"}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.text-img.text-img--40,.text-img.text-img--60{grid-auto-columns:1fr 1fr}.text-img.text-img--60 .text-img__img{padding-top:calc((1 / 1)*100%)}.teaser-grid .text-img.text-img--60 .text-img__img{padding-top:calc((3 / 4)*100%)}}@media(max-width: 63.9375rem){.text-img{margin-bottom:50px}}@media only screen and (min-width: 64rem){.text-img{grid-template-columns:repeat(12, 1fr);margin-bottom:60px}.text-img.text-img--30{grid-template-areas:"img img img img text text text text text text text text"}.text-img.text-img--40{grid-template-areas:"img img img img img text text text text text text text"}.text-img.text-img--50{grid-template-areas:"img img img img img img text text text text text text"}.text-img.text-img--60{grid-template-areas:"img img img img img img img text text text text text"}.text-img.text-img--70{grid-template-areas:"img img img img img img img img text text text text"}.text-img.text-img--top,.text-img.text-img--tile{grid-template-areas:"img" "text"}.text-img--right.text-img--30{grid-template-areas:"text text text text text text text text img img img img"}.text-img--right.text-img--40{grid-template-areas:"text text text text text text text img img img img img"}.text-img--right.text-img--50{grid-template-areas:"text text text text text text img img img img img img "}.text-img--right.text-img--60{grid-template-areas:"text text text text text img img img img img img img"}.text-img--right.text-img--70{grid-template-areas:"text text text text img img img img img img img img"}}.job-detail-page .text-img{margin-bottom:0}.job-detail-page .text-img .text-img__img.cq-dd-image{padding-top:calc((3 / 4)*100%)}.text-img__img{position:relative}.text-img__img picture{position:absolute;inset:0}.text-img__img picture img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.text-img__img-wrapper{grid-area:img;position:relative;overflow:hidden}@media only screen and (min-width: 48rem),print{.teaser-grid .text-img__img-wrapper{flex-shrink:0}}.text-img__img-wrapper .richtexteditor{margin-top:15px}.text-img__img-desc{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin:15px 10px 0}.text-img__img-desc p{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin:0}.text-img__img-error{position:absolute;top:20px}.text-img__text{grid-area:text;margin:0 10px}.text-img__text h2,.text-img__text h3,.text-img__text h4,.text-img__text h5{margin-bottom:20px}@media only screen and (min-width: 64rem){.text-img__text h2{margin-bottom:50px}}.text-img__text>*:not(:first-child),.text-img__text>div>*:not(:first-child){margin-top:1.25rem}.text-img__text>a{margin-top:30px !important}@media only screen and (min-width: 48rem),print{.teaser-grid .text-img__text>a{position:absolute;bottom:0}}.text-img__text .richtexteditor{margin-top:0}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.text-img--70 .text-img__text .btn_standard{min-width:auto}}@media only screen and (min-width: 48rem),print{.text-img__text{margin-top:5px}.teaser-grid .text-img__text{position:relative;margin:20px 10px 0;padding-bottom:40px}}.job-detail-page .text-img__text ol{padding-left:20px;margin-bottom:0}.job-detail-page .text-img__text ol li:not(:last-child){margin-bottom:20px}.text-img__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25;word-break:break-word}@media only screen and (min-width: 48rem),print{.text-img__title{font-size:1.625rem;line-height:1.2}}.text-img--top .text-img__title,.text-img--tile .text-img__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.teaser-grid .text-img__title{margin-bottom:20px;margin-top:0;min-height:34px}.contentoverview{height:100%}.contentoverview>div{height:100%}.cookie-layer{display:flex;justify-content:center;color:var(--color1);position:fixed;bottom:0;width:100%;border-top:var(--border2);background:#fff;transition:transform 500ms;z-index:1000;top:unset;left:unset;transform:unset;padding-left:unset}.cookie-layer.close{transform:translateY(100%)}.cookie-layer__inner{display:flex;justify-content:space-between;padding-top:20px;margin-top:0}@media only screen and (max-width: 47.9375rem){.cookie-layer__inner{flex-flow:column;margin-bottom:20px;padding:20px 20px 0}}@media only screen and (max-width: 47.9375rem)and (orientation: landscape){.cookie-layer__inner{max-height:300px;overflow-y:scroll}}@media only screen and (min-width: 48rem),print{.cookie-layer__inner{margin-bottom:40px}.overlay.overlay--standard .cookie-layer__inner{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.overlay.overlay--standard .cookie-layer__inner{width:45.5rem}}@media print{.overlay.overlay--standard .cookie-layer__inner{width:auto}}@media only screen and (min-width: 48rem)and (min-width: 64rem){.overlay.overlay--standard .cookie-layer__inner{width:61.5rem}}.cookie-layer__btn-wrapper{white-space:nowrap;align-items:flex-start;max-width:227px}@media only screen and (max-width: 47.9375rem){.cookie-layer__btn-wrapper{margin-top:1.25rem}}@media only screen and (min-width: 48rem),print{.cookie-layer__btn-wrapper{margin-left:1.25rem}}.cookie-layer__btn:not(:first-child){margin-top:1.25rem}.cookie-layer__btn-corporate:not(:first-child){margin-top:.7rem}@media only screen and (max-width: 47.9375rem){.cookie-layer__text p{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;overflow:hidden}.cookie-layer__text p+p{margin-top:10px}}.cookie-layer__text a{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow)}.m_checkout-dealer-search{display:flex;margin:60px 0 30px}@media only screen and (max-width: 47.9375rem){.m_checkout-dealer-search{flex-wrap:wrap;margin-top:50px}}.m_checkout-dealer-search__formfield{display:flex;flex-direction:column;align-items:flex-start;min-width:auto}.m_checkout-dealer-search__formfield .form-field__datalist{top:90px}.m_checkout-dealer-search__formfield input{width:100%;padding-right:30px;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}.m_checkout-dealer-search__formfield input::-webkit-inner-spin-button,.m_checkout-dealer-search__formfield input::-webkit-outer-spin-button{-webkit-appearance:none;appearance:none;margin:0}.m_checkout-dealer-search__text{position:relative;margin-right:20px;margin-bottom:10px}@media only screen and (max-width: 47.9375rem){.m_checkout-dealer-search__text{margin-right:0;margin-bottom:40px;width:100%}}.m_checkout-dealer-search__text .btn_selection__icon-high{height:60px;top:auto}.m_checkout-dealer-search__text .form-field{margin-bottom:unset}@media(max-width: 63.9375rem){.m_checkout-dealer-search__dropdown{width:100%}}.m_checkout-dealer-search__dealer-list{position:relative;width:100%;min-height:200px;margin-top:30px}.cta__component--container{margin:5px 0}@media only screen and (max-width: 47.9375rem){.cta__component--container{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}}@media only screen and (min-width: 48rem),print{.cta__component--container{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.cta__component--container{width:45.5rem}}@media print{.cta__component--container{width:auto}}@media only screen and (min-width: 48rem)and (min-width: 64rem){.cta__component--container{width:61.5rem}}.acco-order{position:relative;margin:20px 0;min-height:300px}.acco-order__tab,.acco-order__header{display:grid;grid-template-columns:repeat(4, 1fr);width:100%;box-sizing:border-box;grid-gap:20px}.acco-order__header{border-bottom:1px solid #b1b1b1;padding:0 20px 5px}@media only screen and (max-width: 47.9375rem){.acco-order__header{grid-gap:20px;padding:0 10px 5px;grid-template-columns:1.3fr 1fr}}.acco-order__tab{align-items:center}@media only screen and (max-width: 47.9375rem){.acco-order__tab{grid-gap:20px;grid-template:"col11 col12" auto "col21 col22" auto/1.3fr 1fr}}@media only screen and (max-width: 47.9375rem){.acco-order__order-number{grid-area:col11;word-break:break-all}.acco-order__order-date{grid-area:col12;align-self:flex-start}.acco-order__order-total{grid-area:col21}.acco-order__order-shipping{grid-area:col22;justify-self:center}}.acco-article-search{position:relative}.acco-article-search__part-tab{display:grid;grid-template-columns:580px 1fr;width:100%;box-sizing:border-box;align-items:center}.acco-article-search__part-description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin-left:20px;margin-right:30px}.acco-article-search__product-tab{display:grid;grid-template-columns:200px 380px 1fr;width:100%;box-sizing:border-box;align-items:center}.acco-article-search__product-line{height:89px;padding:11px 45px 11px 0}.acco-article-search__product-description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin-right:30px}.acco-article-search__image{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;height:67px;margin-left:20px;margin-right:30px;position:relative}.acco-article-search__image>picture{display:flex;justify-content:center;align-items:center;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;height:100%}.acco-article-search__item-number-wrapper{display:flex;flex-direction:row;align-items:flex-end}.acco-article-search__item-number-content{display:flex;flex-direction:row}.acco-article-search__item-number-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-right:20px}.acco-article-search__item-number-value{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin-right:10px}.acco-article-search__kit-flag{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;background:#505050;color:#fff;padding:6px 10px 4px}.acco-article-search__kit-wrapper{border-left:1px solid #dadada;margin-bottom:40px}.acco-article-search__kit-content{padding:20px 30px}.acco-article-search__kit-entry{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;display:grid;grid-template-columns:30px 421px 1fr}.acco-article-search__kit-entry:not(:last-child){margin-bottom:30px}.acco-article-search__kit--description-section{display:flex;flex-direction:column}.acco-article-search__kit-radio-button{cursor:pointer;margin-right:10px}.acco-article-search__kit-description{width:320px}.acco-article-search__kit-measures{display:flex;flex-direction:column;margin-top:10px}.acco-article-search__kit-measures .search-select-measures__row:not(:last-child){margin-bottom:12px}.m_quick-order__container{display:flex;margin-bottom:20px}.m_quick-order__container.with-description{margin-bottom:0}.m_quick-order__article{width:43%}.m_quick-order__article>input{width:100%}.m_quick-order__search-icon{position:relative;display:flex}.m_quick-order__search-icon-btn{position:absolute;top:15px;right:15px;border-radius:50%;background:#f37a1f;height:32px;width:32px;display:flex;align-items:center;justify-content:center}.m_quick-order__comment{margin-left:10px;width:33%}.m_quick-order__comment>input{width:100%}.m_quick-order__options{display:flex;align-items:center;justify-content:flex-end;margin-left:32px}.m_quick-order__promotion-clickable{cursor:pointer}.m_quick-order__article-description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-top:10px;margin-bottom:10px;margin-left:20px;display:flex;flex-direction:column}.m_quick-order__article-description.with-error-message{margin-bottom:0;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.m_quick-order__article-description.with-error-message>div.m_quick-order__article-erp-messages>div.erp-messages-wrapper>div.erp-messages-wrapper__section.undefined{margin-bottom:6px}.m_quick-order__article-description.with-error-message>div.m_quick-order__article-erp-messages>div.erp-messages-wrapper>div.erp-messages-wrapper__section.undefined>div.erp-message-wrapper.erp-message-wrapper__error-text>div.message{font-size:unset}.m_quick-order__delete{margin-left:31px}.m_quick-order__button-bar{display:grid;grid-template-columns:50% 50%;margin-bottom:40px}.m_quick-order__button-bar-left{display:flex;align-items:center}.m_quick-order__button-bar-right{display:flex;justify-content:flex-end}.m_quick-order__button-empty-quick-order-form{cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:flex;align-items:center}.m_quick-order__button-empty-quick-order-form>span{margin-left:10px}.m_quick-order__button-add-to-list{width:202px}.m_quick-order__button-add-to-cart{margin-left:20px}.m_quick-order__default-instructions{margin-bottom:40px;width:83%}.acco-quick-order{position:relative;margin:20px 0;min-height:300px;padding-bottom:15px}.acco-quick-order__content{margin-bottom:40px}.acco-quick-order__tab,.acco-quick-order__header{display:grid;grid-template-columns:2.5fr repeat(1, 1fr) 1.5fr;width:100%;box-sizing:border-box}.acco-quick-order__header{border-bottom:1px solid #b1b1b1;padding-right:45px}@media only screen and (max-width: 47.9375rem){.acco-quick-order__header{grid-gap:20px;grid-template-columns:1.3fr 1fr}}.acco-quick-order__tab{align-items:center}@media only screen and (max-width: 47.9375rem){.acco-quick-order__tab{grid-gap:20px;grid-template:"col11 col12" auto "col21 col22" auto/1.3fr 1fr}}@media only screen and (max-width: 47.9375rem){.acco-quick-order__order-article{grid-area:col11;word-break:break-all}.acco-quick-order__order-quantity{grid-area:col12;align-self:flex-start}.acco-quick-order__order-links{grid-area:col21}}.acco-quick-order__order-article{padding-right:20px}.acco-quick-order__order-comment{margin-bottom:20px;margin-left:10px}.acco-quick-order__input{width:100%}.acco-quick-order__order-links .quick-order-link{margin-right:0}.m_quick-order-overlay__container{overflow:unset;padding-left:0;padding-right:0}.m_quick-order-overlay__wrapper{display:flex;flex-direction:column}.m_quick-order-overlay__wrapper .search-input__field>.buttons{align-content:flex-end}.m_quick-order-overlay__search{display:flex;flex-direction:row}.m_quick-order-overlay__search--wrapper{min-width:170px;max-width:250px;position:relative}@media only screen and (max-width: 47.9375rem){.m_quick-order-overlay__search{flex-direction:column}}.m_quick-order-overlay__search-icon{position:absolute;left:20px}.m_quick-order-overlay__search .form-field__input{flex-grow:.15}@media only screen and (max-width: 47.9375rem){.m_quick-order-overlay__search .form-field__input{margin-right:0;margin-bottom:20px}}.m_quick-order-overlay__search--button-wrapper{position:relative;background:linear-gradient(to bottom, #F37A1F 50%, var(--color1) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:rgba(0,0,0,0);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center;height:3.75rem;--outline-offset: 2px;width:100%;display:flex;align-items:center;max-width:1rem !important}.m_quick-order-overlay__search--button-wrapper.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.m_quick-order-overlay__search--button-wrapper:hover{background-position:0 -100%}}.m_quick-order-overlay__search--button-wrapper.active{border-color:rgba(0,0,0,0)}@media(hover: hover)and (pointer: fine){.m_quick-order-overlay__search--button-wrapper:hover{border-color:rgba(0,0,0,0)}}.m_quick-order-overlay__search--button-wrapper:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.m_quick-order-overlay__search--button-wrapper.active{color:var(--color2)}@media(hover: hover)and (pointer: fine){.m_quick-order-overlay__search--button-wrapper:hover{color:var(--color2)}}@media(max-width: 63.9375rem){.m_quick-order-overlay__search--button-wrapper{width:100%}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_quick-order-overlay__search--button-wrapper:not(.full){min-width:calc(calc(45.5rem / 6) * 2);max-width:calc(calc(45.5rem / 6) * 3)}}@media only screen and (min-width: 64rem){.m_quick-order-overlay__search--button-wrapper:not(.full){min-width:calc(calc(61.5rem / 12) * 3);max-width:calc(calc(61.5rem / 12) * 4)}}.m_quick-order-overlay__search--button-wrapper.shrink{min-width:auto}.m_quick-order-overlay__search-product-id-cell{margin-bottom:unset;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem;font-weight:bold;display:flex;justify-content:space-between}.m_quick-order-overlay__comment{padding:10px;border:1px solid #b1b1b1;max-width:90%;min-width:87%}.m_quick-order-overlay__pagination-wrapper{display:flex;flex-direction:column;justify-content:center;gap:30px}.m_quick-order-overlay__pagination-wrapper .highlight-button{display:flex;justify-content:flex-end}.m_quick-order-overlay__quantity--relative-tooltip{position:relative;padding:5px 10px !important;border:1px solid #b1b1b1 !important;margin:0 10px}.m_quick-order-overlay__quantity-tooltip{white-space:normal !important;border-radius:10px !important;left:4em !important}.m_quick-order-overlay__quantity-tooltip .tooltip__inner{white-space:normal !important}.m_quick-order-overlay__selected-row{background-color:#fee2cd !important}.m_quick-order-overlay__header{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;margin-bottom:1vh}@media only screen and (min-width: 48rem),print{.m_quick-order-overlay__header{font-size:1.875rem;line-height:1.3}}.m_quick-order-overlay__buttons-wrapper{display:flex;flex-direction:row;justify-content:space-between;align-items:center}.m_quick-order-overlay__buttons-wrapper .availability{line-height:unset;font-size:1.1rem}.m_quick-order-overlay__buttons-wrapper .inactive{cursor:unset;color:#505050}.m_quick-order-overlay__buttons--add-to-quick-order{display:flex;flex-direction:row}.m_quick-order-overlay__cell-checkbox{display:flex;justify-content:center}.m_quick-order-overlay__messages{display:flex;gap:10px;justify-content:flex-end}.m_dialogue-input{display:flex;flex-direction:column;align-items:center;margin:0 auto}@media only screen and (min-width: 48rem),print{.m_dialogue-input{max-width:45.5rem}}@media only screen and (min-width: 64rem){.m_dialogue-input{width:calc(100%/(12 / 8));max-width:61.5rem;margin-left:calc(100%/(12 / 2));margin-right:0}}.m_dialogue-input__sub-heading{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;margin-top:0;margin-bottom:21px}@media only screen and (min-width: 64rem){.m_dialogue-input__sub-heading{margin-bottom:27px}}.m_dialogue-input__heading{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;margin-bottom:5px}@media only screen and (min-width: 64rem){.m_dialogue-input__heading{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;margin-bottom:-3px}}@media only screen and (min-width: 64rem)and (min-width: 48rem){.m_dialogue-input__heading{font-size:1.875rem;line-height:1.3}}.m_dialogue-input__input{max-width:100%;border-bottom:1px solid #000}@media only screen and (min-width: 48rem),print{.m_dialogue-input__input{white-space:nowrap}}@media only screen and (min-width: 64rem){.m_dialogue-input__input{max-width:calc(100% - 50px)}}.m_dialogue-input__submit-button{padding:0}.m_dialogue-input__input-icon{margin-left:10px}@media only screen and (min-width: 64rem){.m_dialogue-input__input-icon{margin-left:20px}}.m_dialogue-input__input-icon svg{width:16px;height:16px}@media only screen and (min-width: 64rem){.m_dialogue-input__input-icon svg{width:32px;height:32px}}.m_dialogue-input__input-text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#f37a1f;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;max-width:calc(100% - 26px)}@media only screen and (min-width: 64rem){.m_dialogue-input__input-text{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#f37a1f;font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;margin-bottom:-4px}}@media only screen and (min-width: 64rem)and (min-width: 48rem){.m_dialogue-input__input-text{font-size:1.875rem;line-height:1.3}}.m_dialogue-input__input-text::-moz-placeholder{color:#b1b1b1;opacity:1;white-space:nowrap}.m_dialogue-input__input-text::placeholder{color:#b1b1b1;opacity:1;white-space:nowrap}.m_dialogue-input__input-reference{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;display:inline-block;max-width:calc(100vw - 40px);visibility:hidden;height:0;overflow:hidden;text-overflow:ellipsis}@media only screen and (min-width: 64rem){.m_dialogue-input__input-reference{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;max-width:100%}}@media only screen and (min-width: 64rem)and (min-width: 48rem){.m_dialogue-input__input-reference{font-size:1.875rem;line-height:1.3}}.shipping-method{width:100%}@media only screen and (max-width: 47.9375rem){.shipping-method__collapsed{display:none}}.shipping-method__collapsed{padding:10px 20px 20px}.shipping-method__formwrapper{width:100%}@media only screen and (min-width: 48rem),print{.shipping-method__formwrapper .btn_selection{width:calc(100%/(3 / 2))}}.shipping-method__delivery-inner{display:grid;grid-gap:30px 1.25rem;margin-bottom:50px}@media only screen and (min-width: 48rem),print{.shipping-method__delivery-inner{grid-gap:60px 1.25rem;grid-template-columns:1fr 1fr;margin-bottom:60px}}@media only screen and (max-width: 47.9375rem){.shipping-method__delivery .form__submit{width:100%}}.shipping-method__dealer-footer{margin:30px 10px 0}.shipping-method__dealer-footer>p:not(:last-child){margin-bottom:10px}.checkout-select__wrapper{display:flex;align-items:center}.checkout-select__wrapper section{display:flex;flex-flow:column;align-items:flex-start;flex:1;margin-right:10px}@media only screen and (min-width: 48rem),print{.checkout-select__wrapper section{margin-right:30px}}.checkout-select__wrapper p,.checkout-select__wrapper span{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.checkout-select__wrapper p{margin-top:10px}.checkout-select__wrapper span{display:block}.checkout-select__icon{display:flex;align-items:center;align-self:center;position:relative;width:32px;height:32px;margin-right:10px}@media only screen and (min-width: 48rem),print{.checkout-select__icon{width:64px;height:64px;margin-right:20px}}.checkout-select__icon::after{top:50%;left:50%;transform:translate(-50%, -50%)}@media only screen and (min-width: 48rem),print{.checkout-select__icon::after{width:64px !important;height:64px !important}}.checkout-select__icon.deliver::after{content:"";background:url(stihl-styles/resources/icons/icon-truck-64.svg) no-repeat center/contain;position:absolute;height:2rem;width:2rem;filter:var(--svg-filter-invert, none)}.checkout-select__icon.pick-up::after{content:"";background:url(stihl-styles/resources/icons/icon-shop-64.svg) no-repeat center/contain;position:absolute;height:2rem;width:2rem;filter:var(--svg-filter-invert, none)}.checkout-select__icon.document::after{content:"";background:url(stihl-styles/resources/icons/icon-document-64.svg) no-repeat center/contain;position:absolute;height:2rem;width:2rem;filter:var(--svg-filter-invert, none)}.checkout-select__icon.mc::after{content:"";background:url(stihl-styles/resources/icons/logo-mastercard.svg) no-repeat center/contain;position:absolute;height:32px;width:32px}.checkout-select__icon.visa::after{content:"";background:url(stihl-styles/resources/icons/logo-visa.svg) no-repeat center/contain;position:absolute;height:32px;width:32px}.checkout-select__icon.klarna_paylater::after,.checkout-select__icon.klarna_sliceit::after,.checkout-select__icon.klarna_paynow::after{content:"";background:url(stihl-styles/resources/icons/logo-klarna.svg) no-repeat center/contain;position:absolute;height:32px;width:32px}.checkout-select__icon.ideal::after{content:"";background:url(stihl-styles/resources/icons/logo-ideal.svg) no-repeat center/contain;position:absolute;height:32px;width:32px}.checkout-select__icon.oney::after{content:"";background:url(stihl-styles/resources/icons/logo-oney.svg) no-repeat center/contain;position:absolute;height:32px;width:32px}.checkout-select__icon.mbway::after{content:"";background:url(stihl-styles/resources/icons/logo-mbway.svg) no-repeat center/contain;position:absolute;height:32px;width:32px}.checkout-select__icon.paypal::after,.checkout-select__icon.express_paypal::after{content:"";background:url(stihl-styles/resources/icons/logo-paypal.svg) no-repeat center/contain;position:absolute;height:32px;width:32px}.checkout-select__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.checkout-select__cta{display:inline-block;position:relative;cursor:pointer;margin-left:calc(5px + 0.75rem);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:block;margin-top:10px;font-weight:bold}.checkout-select__cta::before{content:"";background:url(stihl-styles/resources/icons/icon-arrow-left-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;right:100%;transform:translate3d(-5px, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.checkout-select__cta:hover::before{transform:translate3d(-10px, -50%, 0)}.m_video{position:relative;padding-bottom:56.25%;padding-top:0;overflow:hidden;container-type:inline-size}.m_video__iframe{position:absolute;top:0;left:0;width:100%;height:100%}.m_video--moving{padding-bottom:calc(56.25% + 25px)}.m_video--text{margin:20px 10px 0}@media only screen and (min-width: 48rem),print{.m_video--text{width:calc(100%/(6 / 5))}}@media only screen and (min-width: 64rem){.m_video--text{width:calc(100%/(12 / 8))}}.m_img-comb-single{width:100%;height:100%}.m_img-comb-container{max-width:100%}@media only screen and (min-width: 48rem),print{.m_img-comb-container--portrait{width:354px}}@media only screen and (min-width: 64rem){.m_img-comb-container--portrait{width:482px}}.m_img-comb-container__inner{position:relative;width:100%}.m_img-comb-container__inner--portrait{padding-top:calc((4 / 3)*100%)}.m_img-comb-container__inner--landscape{padding-top:calc((3 / 4)*100%)}@media only screen and (min-width: 64rem){.m_img-comb-container__inner--landscape{padding-top:calc((9 / 16)*100%)}}.column-control .m_img-comb-container__inner{padding-top:calc((9 / 16)*100%)}.m_img-comb-container__title{margin-top:8px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.m_img-comb-container picture{position:absolute;inset:0}.m_img-comb-container picture img{width:100%;height:100%}.personal-information__wrapper{margin-bottom:30px}.personal-information__checkbox{margin-bottom:20px}.promotions-summary{margin-bottom:30px}@media only screen and (min-width: 48rem),print{.promotions-summary{max-width:355px}}.promotions-summary__form-field{margin-bottom:15px}.promotions-summary__list{border-bottom:1px solid #b1b1b1;padding:0 10px 20px;margin-top:30px}.promotions-item{display:flex;justify-content:space-between;margin-bottom:10px}.promotions-item__label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.promotions-item__label--promotion{color:#f37a1f}.promotions-item__button{content:"";background:url(stihl-styles/resources/icons/icon-cross-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);position:relative}@media only screen and (max-width: 47.9375rem){.promotions-conditions{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}}@media only screen and (min-width: 48rem),print{.promotions-conditions{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.promotions-conditions{width:45.5rem}}@media print{.promotions-conditions{width:auto}}@media only screen and (min-width: 48rem)and (min-width: 64rem){.promotions-conditions{width:61.5rem}}.promotions-conditions p{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.promotionsbanner-conditionswrapper:not(.promotionsbanner-conditionswrapper--visible){display:none}.promotionsbanner-conditionswrapper+.footerwrapper{margin-top:0}@media print{.promotionsconditionswrapper{display:none}}.promotionsconditionswrapper--visible{margin-top:120px;margin-bottom:60px}@media only screen and (max-width: 47.9375rem){.promotionsconditionswrapper--visible{margin-top:80px;margin-bottom:50px}}.promotionsconditionswrapper--top_margin{margin-top:120px}@media only screen and (max-width: 47.9375rem){.promotionsconditionswrapper--top_margin{margin-top:80px}}.promotionsconditionswrapper--bottom_margin{margin-bottom:60px}@media only screen and (max-width: 47.9375rem){.promotionsconditionswrapper--bottom_margin{margin-bottom:50px}}.promotionsconditionswrapper--no_bottom{margin-bottom:0}.promotionsconditionswrapper--no_top{margin-top:0}.pricedisclaimerwrapper--bottom_margin{margin-bottom:60px}@media only screen and (max-width: 47.9375rem){.pricedisclaimerwrapper--bottom_margin{margin-bottom:50px}}.promotions-banner{--outline-offset: -2px;padding:0 20px;position:relative;height:var(--default-banner-height)}@media print{.promotions-banner{display:none}}.promotions-banner__container{display:flex;align-items:center;justify-content:center;height:100%}.promotions-banner__content{display:flex;flex-grow:1;justify-content:center;align-items:center}.promotions-banner__anchor{font-weight:bold;color:#252525}.promotions-banner__link{cursor:pointer}.promotions-banner__text{margin:0 10px}.promotions-banner__text p{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;display:inline-block}a .promotions-banner__text p{position:relative;margin-right:27px}a .promotions-banner__text p::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-white-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert-white, none);top:50%;left:100%;transform:translate3d(0.625rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}a .promotions-banner__text p:hover::after{transform:translate3d(15px, -50%, 0)}@media only screen and (max-width: 47.9375rem){a .promotions-banner__text p{margin-right:0}a .promotions-banner__text p::after{display:inline-block;position:relative;top:auto;left:auto;bottom:-8px}}div .promotions-banner__text p{position:relative}@media only screen and (max-width: 47.9375rem){div .promotions-banner__text p{margin-right:0}}a:hover .promotions-banner__text p::after{transform:translate3d(15px, -50%, 0)}.promotions-banner__text p.outage{color:#000}.promotions-banner__text p.impersonation{color:#252525}.promotions-banner__text b{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;display:inline-flex;align-items:center}.promotions-banner__text p,.promotions-banner__text b{color:#fff}.promotions-banner__icon-cross{height:20px;width:20px;flex-shrink:0}.promotionsbannerwrapper--visible{margin-top:calc(var(--header-height)*-1)}@supports(position: sticky){.promotionsbannerwrapper--visible+.metanavwrapper{position:sticky;top:0;z-index:300}.promotionsbannerwrapper--visible+.metanavwrapper .navbar-fixed-top{position:static}}.promotionswidget__wrapper{display:flex;flex-wrap:wrap;justify-content:flex-start}.promotionswidget__wrapper>.loader{position:relative}.offline-promotions-banner{padding:10px;position:relative}@media only screen and (min-width: 48rem),print{.offline-promotions-banner{padding:0 20px;height:var(--default-banner-height)}}.offline-promotions-banner__container{display:flex;align-items:center;justify-content:center;height:100%}.offline-promotions-banner__container .label-circle{margin-right:10px}@media only screen and (max-width: 47.9375rem){.offline-promotions-banner__container .label-circle-tooltip{margin-left:0}}.offline-promotions-banner__content{display:flex;flex-grow:1;justify-content:center;align-items:center}.offline-promotions-banner__content p{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;display:inline-block}a .offline-promotions-banner__content p{position:relative;margin-right:27px}a .offline-promotions-banner__content p::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-white-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert-white, none);top:50%;left:100%;transform:translate3d(0.625rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}a .offline-promotions-banner__content p:hover::after{transform:translate3d(15px, -50%, 0)}@media only screen and (max-width: 47.9375rem){a .offline-promotions-banner__content p{margin-right:0}a .offline-promotions-banner__content p::after{display:inline-block;position:relative;top:auto;left:auto;bottom:-8px}}div .offline-promotions-banner__content p{position:relative}@media only screen and (max-width: 47.9375rem){div .offline-promotions-banner__content p{margin-right:0}}a:hover .offline-promotions-banner__content p::after{transform:translate3d(15px, -50%, 0)}.offline-promotions-banner__content b{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;display:inline-flex;align-items:center}.offline-promotions-banner__richtext{color:#fff;display:flex}.offline-promotions-banner__richtext p,.offline-promotions-banner__richtext b{color:#fff}.offline-promotions-banner__gutter{margin-bottom:60px}.product-safety-warnings{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.product-safety-warnings{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.product-safety-warnings{width:45.5rem}}@media print{.product-safety-warnings{width:auto}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem)and (min-width: 64rem){.product-safety-warnings{width:61.5rem}}.product-safety-warnings--promotions{margin-bottom:30px;width:100%}@media only screen and (min-width: 48rem),print{.product-safety-warnings--promotions{padding:0}}.product-safety-warnings__headline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;margin-top:50px}.product-safety-warnings__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text-demi),Arial,sans-serif;font-size:1rem}.product-safety-warnings__inner{padding:0 10px}.product-safety-warnings--promotions .product-safety-warnings__inner{padding:0}.product-safety-warnings__icons{display:flex;flex-wrap:wrap;margin:10px 0 20px}.product-safety-warnings__warnings{width:calc(100%/(12 / 12))}@media only screen and (min-width: 48rem),print{.product-safety-warnings__warnings{width:calc(100%/(12 / 8))}}@media print{.product-safety-warnings__warnings{width:100%}}.product-safety-warnings__danger-word{margin-bottom:20px}.product-safety-warnings__danger-notes{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;margin-bottom:20px}.product-safety-warnings__icon-wrapper img{height:60px;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}.product-safety-warnings__item:not(:last-child){margin-bottom:25px}.warranty-info-wrapper{display:flex;height:333px}.warranty-info-wrapper .form-input{display:flex}.overlay-warranty{display:flex;flex-direction:column}.overlay-warranty .content-message{margin-bottom:40px}.overlay-warranty .overlay-warranty-header{display:flex;margin-bottom:40px}.overlay-warranty .overlay-warranty-header .icon{margin-right:20px}.overlay-warranty .overlay-warranty-header .header{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;align-self:center}.overlay-warranty .overlay-warranty-content{display:flex;justify-content:center}.overlay-warranty .overlay-warranty-content.end{justify-content:end}.overlay-warranty .overlay-warranty-content .btn-cancel{margin-right:10px}.overlay-warranty .overlay-warranty-content .btn-cancel.link{align-self:center;font-weight:bold;cursor:pointer}.overlay-warranty .overlay-warranty-content .btn-proceed{margin-left:10px}.serialized-dialog__header{margin-bottom:1.25rem}.serialized-dialog__header .title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;padding-bottom:1rem}.serialized-dialog__actions{display:flex;margin-top:1.25rem;-moz-column-gap:2em;column-gap:2em}.serialized-dialog__actions .cancel{display:flex;justify-content:center;align-items:center;padding:0;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.serialized-dialog__actions .cancel>span{margin-left:.625rem}.documents__wrapper{display:flex;flex-direction:column;padding:20px 0 40px;border-bottom:1px solid #b1b1b1}.documents__download-all-documents{display:flex;justify-content:flex-start;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;cursor:pointer;width:-moz-fit-content;width:fit-content}.documents__download-all-documents svg{margin-right:10px}.repair-information-wrapper{display:flex;flex-direction:column;padding-bottom:40px;border-bottom:1px solid #b1b1b1}.repair-information-wrapper input.loading,.repair-information-wrapper button.loading{border-bottom:4px solid #f37a1f;animation:loading 1s infinite}@keyframes loading{50%{border-bottom:4px solid #505050}}.repair-information-wrapper input:focus,.repair-information-wrapper button:focus{border-bottom:4px solid #f37a1f}.repair-information-wrapper .dropdown-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;align-items:flex-end;margin-bottom:10px}.repair-information-wrapper .dropdown-wrapper{display:flex;flex-direction:column}.repair-information-wrapper .dropdown-wrapper .unfilled{border:1px solid red}.repair-information-wrapper .dropdown-wrapper .input{width:100%}.repair-information-wrapper .dropdown-wrapper .suggestions-list{position:absolute;z-index:500;width:572px}.repair-information-wrapper .dropdown-wrapper .suggestions-list .tag_filter-2,.repair-information-wrapper .dropdown-wrapper .suggestions-list .list-anchor--fixed .list-anchor__link,.list-anchor--fixed .repair-information-wrapper .dropdown-wrapper .suggestions-list .list-anchor__link{font-weight:normal}.repair-information-wrapper .dropdown-wrapper .suggestions-list .dropdown_list--large{height:280px}.repair-information-wrapper .dropdown-wrapper .category-label{margin-top:10px}.repair-information-wrapper .dropdown-wrapper .disabled-dropdown{display:flex;flex-direction:column}.warranty-request-form-wrapper{display:flex;flex-direction:column}.warranty-request-form-wrapper .header-section{display:flex;flex-direction:column}.warranty-request-form-wrapper .header-section .title-section{display:flex;flex-direction:row;align-items:baseline;justify-content:space-between;margin-bottom:20px}.warranty-request-form-wrapper .header-section .title-section .title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;margin-bottom:0;margin-right:50px}@media only screen and (min-width: 48rem),print{.warranty-request-form-wrapper .header-section .title-section .title{font-size:1.875rem;line-height:1.3}}.warranty-request-form-wrapper .header-section .title-section .title::after{display:block;content:"";background-color:var(--color1)}.warranty-request-form-wrapper .header-section .title-section .title::after{width:23px;height:5px;margin-top:10px;background:var(--color1)}@media only screen and (min-width: 48rem),print{.warranty-request-form-wrapper .header-section .title-section .title::after{width:34px;height:7px;margin-top:15px;background:var(--color1)}}.warranty-request-form-wrapper .header-section .title-section .request-number{white-space:nowrap}.warranty-request-form-wrapper .header-section .last-modified .m_infobox_product-detail__property-without-border{display:flex;flex-direction:row;align-items:baseline;margin-bottom:0}.warranty-request-form-wrapper .header-section .last-modified .m_infobox_product-detail__property-without-border .m_infobox_product-detail__property-name{margin-right:10px}.warranty-request-form-wrapper .activation-button-wrapper{display:grid;justify-items:center;margin-bottom:2em}.warranty-request-form-wrapper .extended-warranty-activation-info-wrapper{display:grid;margin-top:20px;justify-content:end}.warranty-request-form-wrapper .side-details-wrapper-extended-warranty{display:flex;justify-content:flex-end}.warranty-request-form-wrapper .inner-form-wrapper{display:flex;margin-top:20px}.warranty-request-form-wrapper .inner-form-wrapper .information-wrapper{display:flex;flex-direction:column;width:572px;margin-right:70px}.warranty-request-form-wrapper .inner-form-wrapper .information-wrapper .information-header{display:flex;margin-bottom:30px}.warranty-request-form-wrapper .inner-form-wrapper .information-wrapper .information-header .display{display:flex;padding:0 10px;margin-top:10px}.warranty-request-form-wrapper .inner-form-wrapper .information-wrapper .information-header .item{display:flex;margin-right:50px}.warranty-request-form-wrapper .inner-form-wrapper .information-wrapper .header-wrapper{display:flex;justify-content:space-between}.warranty-request-form-wrapper .inner-form-wrapper .information-wrapper .status-details__wrapper{display:flex;flex-direction:column}.warranty-request-form-wrapper .inner-form-wrapper .information-wrapper .status-details__property-name{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;width:150px}.warranty-request-form-wrapper .inner-form-wrapper .information-wrapper .status-details__property-value{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.warranty-request-form-wrapper .inner-form-wrapper .information-wrapper .status-details-row{display:flex;flex-direction:row}.warranty-request-form-wrapper .inner-form-wrapper .information-wrapper .note-wrapper{display:flex;flex-direction:column;margin-bottom:20px;border-radius:0;border:1px solid #b1b1b1;padding:20px}.warranty-request-form-wrapper .inner-form-wrapper .information-wrapper .note-wrapper .note-title-wrapper{display:flex;align-items:center;justify-content:center;width:-moz-max-content;width:max-content;height:30px;background:#fee2cd;margin-bottom:10px}.warranty-request-form-wrapper .inner-form-wrapper .information-wrapper .note-wrapper .title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;white-space:nowrap;margin:0 5px}.warranty-request-form-wrapper .warranty-request-form-details-wrapper{display:flex;flex-direction:column}.warranty-request-form-wrapper .warranty-request-form-details-wrapper .display{display:flex;flex-wrap:wrap}.warranty-request-form-wrapper .warranty-request-form-details-wrapper .display .item{width:100%;height:40px}.warranty-request-form-wrapper .button-section{margin-top:40px;display:flex;flex-direction:column}.warranty-request-form-wrapper .button-section .buttons-wrapper{display:flex;flex-direction:row;justify-content:flex-end}.warranty-request-form-wrapper .button-section .buttons-wrapper .close-button{margin-right:20px}.warranty-request-additional-information-wrapper{display:flex;flex-direction:row;justify-content:space-between;padding-bottom:40px;border-bottom:1px solid #b1b1b1}.warranty-request-additional-information-wrapper textarea{resize:none}.warranty-request-additional-information-wrapper textarea:focus{border-bottom:4px solid #f37a1f}.warranty-request-additional-information-wrapper .additional-info-input__wrapper{display:flex;flex-direction:row}.warranty-request-additional-information-wrapper .additional-info-input__container{display:flex;flex-direction:column;margin-top:40px}.warranty-request-additional-information-wrapper .additional-info-input__container .input{width:574px;outline:none;height:110px;padding:20px}.warranty-request-additional-information-wrapper .additional-info-input__border-error{border:1px solid red}.warranty-request-additional-information-wrapper .additional-info-input__error{justify-content:flex-start;display:flex;flex:.5;margin-top:10px}.warranty-request-additional-information-wrapper .additional-info-input__length-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:flex;flex:.5;justify-content:flex-end;margin-top:10px;opacity:.6}.warranty-form-basic-information-wrapper{display:flex;flex-direction:column;padding-bottom:40px;border-bottom:1px solid #b1b1b1}.warranty-form-basic-information-wrapper .general-title{padding-top:20px}.warranty-form-basic-information-wrapper input:focus{border-bottom:4px solid #f37a1f}.warranty-form-basic-information-wrapper .calendar-icon{background-image:url(stihl-styles/resources/icons/icon-calendar-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:var(--svg-filter-invert, none);width:50px;height:50px}.warranty-form-basic-information-wrapper .data-input-formfield{display:flex;flex-direction:column}.warranty-form-basic-information-wrapper .image-calendar-wrapper{display:flex;flex-direction:row;align-items:center;background-color:#ededed;height:60px}.warranty-form-basic-information-wrapper .image-calendar-wrapper-unfilled{border:1px solid red}.warranty-form-basic-information-wrapper .datepicker{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;width:100%;text-align:center}.warranty-form-basic-information-wrapper .datepicker:focus{border:none}.warranty-form-basic-information-wrapper .datepicker-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;align-items:flex-end;margin-bottom:10px;gap:.25em;font-weight:bold}.warranty-form-basic-information-wrapper .reference-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:10px}.warranty-form-basic-information-wrapper .info-display{display:flex;flex-direction:row;align-items:flex-end}.warranty-form-basic-information-wrapper .datepicker-input-wrapper{width:188px;margin-right:20px}.warranty-form-basic-information-wrapper .reference-input-wrapper{display:flex;flex-direction:column;width:372px}.warranty-form-basic-information-wrapper .date-picker-error-message{position:absolute}.warranty-form-basic-information-wrapper .field-margin{margin-right:20px}.warranty-form-basic-information-wrapper .disabled-field{display:flex;flex-direction:column}.warranty-form-basic-information-wrapper .disabled-field__date{margin-right:20px;width:200px}.warranty-form-basic-information-wrapper .disabled-field__reference{width:372px}.no-border{border-bottom:unset}.repair-times-mileage-wrapper{display:flex;flex-direction:column;padding-bottom:40px;border-bottom:1px solid #b1b1b1}.repair-times-mileage-wrapper input:focus,.repair-times-mileage-wrapper button:focus{border-bottom:4px solid #f37a1f}.repair-times-mileage-wrapper .title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;height:50px;padding-left:10px;border-bottom:1px solid #b1b1b1;display:flex;align-items:center;margin-bottom:20px}.repair-times-mileage-wrapper .dropdown-wrapper{display:flex;flex-direction:column;margin-bottom:20px}.repair-times-mileage-wrapper .dropdown-wrapper .dropdown-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;align-items:flex-end;margin-bottom:10px}.repair-times-mileage-wrapper .dropdown-wrapper__section{display:flex;justify-content:space-between;margin-bottom:20px}.repair-times-mileage-wrapper .dropdown-wrapper__section .dropdown{display:flex;flex-direction:column;width:938px}.repair-times-mileage-wrapper .dropdown-wrapper__section .dropdown .dropdown-inner{display:block;min-width:unset}.repair-times-mileage-wrapper .dropdown-wrapper__section .dropdown .dropdown-inner>input{width:100%;text-overflow:ellipsis;padding-right:40px}.repair-times-mileage-wrapper .dropdown-wrapper__section .dropdown.dropdown_repair-times .tag_filter-2,.repair-times-mileage-wrapper .dropdown-wrapper__section .dropdown.dropdown_repair-times .list-anchor--fixed .list-anchor__link,.list-anchor--fixed .repair-times-mileage-wrapper .dropdown-wrapper__section .dropdown.dropdown_repair-times .list-anchor__link{font-weight:normal}.repair-times-mileage-wrapper .dropdown-wrapper__section .dropdown.dropdown_repair-times .dropdown_list--large{height:280px}.repair-times-mileage-wrapper .dropdown-wrapper__section .trash-can{display:flex;align-items:center}.repair-times-mileage-wrapper .dropdown-wrapper__section .trash-can__icon{cursor:pointer}.repair-times-mileage-wrapper .dropdown-wrapper__section .trash-can__icon:focus{height:22px}.repair-times-mileage-wrapper .disabled-repair-dropdown__wrapper{display:flex;flex-direction:column}.repair-times-mileage-wrapper .disabled-repair-dropdown__header{display:flex;flex-direction:row;justify-content:space-between;align-items:flex-end}.repair-times-mileage-wrapper .disabled-repair-dropdown__header .acceptance-title{width:95px;padding-right:12px}.repair-times-mileage-wrapper .disabled-repair-dropdown__value-wrapper{display:flex;flex-direction:column}.repair-times-mileage-wrapper .disabled-repair-dropdown__value-wrapper .dropdown{display:flex;flex-direction:row;justify-content:space-between;margin-bottom:20px}.repair-times-mileage-wrapper .disabled-repair-dropdown__value-wrapper .value{width:859px}.repair-times-mileage-wrapper .disabled-repair-dropdown__value-wrapper .acceptance{justify-content:flex-end;width:105px}.repair-times-mileage-wrapper .disabled-repair-dropdown__value-wrapper .total-time-text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.repair-times-mileage-wrapper .total-time{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;width:938px;margin-top:6px;text-align:flex-end}.repair-times-mileage-wrapper .input-mileage__wrapper{display:flex;flex-direction:column;margin-top:20px}.repair-times-mileage-wrapper .input-mileage__wrapper .mileage-label{margin-bottom:20px;margin-left:0;display:flex;gap:.25em}.repair-times-mileage-wrapper .input-mileage__measure{margin-top:35px}.repair-times-mileage-wrapper .input-mileage__section{display:flex;flex-direction:row;align-items:center}.repair-times-mileage-wrapper .input-mileage__section .km-label{margin-left:20px}.repair-times-mileage-wrapper .disabled-mileage__wrapper{display:flex;justify-content:flex-end}.repair-times-mileage-wrapper .disabled-mileage__wrapper .inner-wrapper{display:flex;flex-direction:column}.repair-times-mileage-wrapper .disabled-mileage__wrapper--measure{margin-top:35px;flex-direction:column}.repair-times-mileage-wrapper .disabled-mileage__value-wrapper{display:flex;flex-direction:row;align-items:center}.repair-times-mileage-wrapper .disabled-mileage__field-wrapper{justify-content:flex-end;width:120px}.repair-times-mileage-wrapper .disabled-mileage__acceptance-width{justify-content:flex-end;width:105px}.repair-times-mileage-wrapper .disabled-mileage__label{padding-left:10px;padding-right:10px}.repair-times-mileage-wrapper .disabled-mileage__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-bottom:10px}.disabled-input__wrapper{border-radius:0;border:1px solid #ededed;height:60px;display:flex;align-items:center}.disabled-input__wrapper--blocked{background-color:#ededed;color:#ababab}.disabled-input__value{justify-content:flex-end;padding-right:20px;padding-left:20px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.disabled-input__comment{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;border-radius:0;border:1px solid #ededed;display:flex;outline:none;width:532px;height:100px;padding:20px}.disabled-input__unfilled{border:1px solid red}.warranty-claim-field-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;align-items:flex-end;margin-bottom:10px}.warranty-claim-section-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;height:18px;margin-bottom:30px;padding-top:40px;display:flex;gap:.25em}.warranty-product-info__storybook{display:grid;grid-template-columns:repeat(2, 1fr);gap:30px 50px}.warranty-product-info__claim_information-container{border-radius:0;border:1px solid #b1b1b1}@media only screen and (min-width: 48rem),print{.warranty-product-info__claim_information-container{width:340px}}.warranty-product-info__claim_information-container-no-border{border:none !important}.warranty-product-info__claim_information-header{background:#ededed;padding-top:20px;padding-bottom:20px}.warranty-product-info__claim_information-header>:last-child{margin:0 30px}.warranty-product-info__claim_information-header-element{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;display:flex;justify-content:space-between;margin:0 30px 14px}.warranty-product-info__claim_information-header-element .label{text-align:left;white-space:nowrap}.warranty-product-info__claim_information-header-element .value{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;width:50%;text-align:right;word-break:break-word}.warranty-product-info__claim_information-header-element.information{margin:0 30px 20px}.warranty-product-info__claim_information-header-element.information-smaller-margin{margin:0 0 10px !important}.warranty-product-info__claim_information-header-element-details{display:grid !important;text-align:left;margin:0}.warranty-product-info__claim_information-header-element-details-title-bold{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text-demi),Arial,sans-serif;font-size:1rem}.warranty-product-info__claim_information-header-element-details-title{margin-bottom:1.375rem}.warranty-product-info__claim_information-header-element-details-value{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.warranty-product-info__claim_information-header-element-document-kind{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.warranty-product-info__claim_information-body{width:100%;margin-bottom:20px}.warranty-product-info__claim_information-body .value{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;width:50%;text-align:right}.warranty-product-info__claim_information-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin:20px 30px;padding-bottom:20px;border-bottom:1px solid #b1b1b1;display:flex;flex-direction:column}.warranty-product-info__claim_information-title .description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:8px}.warranty-product-info__claim_information-lifecycle{margin:20px 30px 0;padding-top:20px;border-top:1px solid #b1b1b1}.warranty-product-info__claim_information-lifecycle .link{display:inline-block;position:relative;cursor:pointer;margin-right:24px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;font-size:.8125rem;display:block}.warranty-product-info__claim_information-lifecycle .link::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.4375rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.warranty-product-info__claim_information-lifecycle .link:hover::after{transform:translate3d(12px, -50%, 0)}.warranty-product-info__claim_information-lifecycle .link::after{margin-top:0;margin-left:5px;left:auto;top:unset;transform:translate3d(5px, 1px, 0)}.warranty-product-info__claim_information-lifecycle .link:hover::after{transform:translate3d(10px, 1px, 0)}.warranty-product-info__claim_information-more-details-acco{margin:0 30px}.warranty-product-info__claim_information-more-details-acco .acco{border-bottom:unset}.warranty-product-info__claim_information-more-details-acco .acco .acco__tab{min-height:unset;padding:unset}.warranty-product-info__claim_information-more-details-acco .acco .acco__inner{padding:unset}.warranty-product-info__claim_information-more-details-acco .title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.warranty-product-info__claim_information-more-details-acco .content{display:flex;flex-direction:column;width:100%;margin-top:20px}.warranty-product-info__claim_information-more-details-acco-element{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;justify-content:space-between}.warranty-product-info__claim_information-more-details-acco-element:not(:last-child){margin-bottom:20px}.warranty-product-info__claim_information-more-details-acco-element .value{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;width:50%;text-align:right}.spare-parts{padding-bottom:40px;border-bottom:1px solid #b1b1b1}.spare-parts input:focus,.spare-parts button:focus{border-bottom:4px solid #f37a1f}.spare-parts__line,.spare-parts__header{display:grid;grid-template-columns:1.3fr .72fr 1fr 1fr .8fr .1fr;width:100%;box-sizing:border-box}.spare-parts__line{align-items:baseline}.spare-parts__item-number{margin-right:10px}.spare-parts__suggested-list{position:absolute;z-index:500;width:420px}.spare-parts__description{margin-right:10px}.spare-parts__input{width:100%}.spare-parts__failure-part{margin-right:10px}.spare-parts__failure-code{margin-right:10px}.spare-parts__primary-part{grid-column-start:5;justify-self:center}.spare-parts__remove{cursor:pointer;margin-top:5px}.spare-parts__remove:focus{height:22px}.spare-parts__dropdown{display:block;min-width:unset}.spare-parts__dropdown input{width:100%;text-overflow:ellipsis;padding-right:40px}.spare-parts__dropdown.dropdown-disabled{opacity:.2}.spare-parts__dropdown-unfilled{border:1px solid red}.spare-parts__content{margin-top:10px;margin-bottom:10px}.spare-parts__add-button-section{display:flex;flex-direction:row;margin-top:30px}.spare-parts__add-button-wrapper{cursor:pointer}.spare-parts__add-button-wrapper:not(:last-child){margin-right:30px}.spare-parts__add-button-content{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:flex;align-items:center}.spare-parts__add-button-content>svg{margin-right:10px}.spare-parts__add-button-content>span{padding-top:1px}.spare-parts .product-requested{display:flex;flex-direction:row}.spare-parts .product-requested .check-icon-wrapper{width:83px;display:flex;margin-right:20px;align-items:center;justify-content:center}.spare-parts .product-requested .label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:flex;align-items:center}.spare-parts-disabled__line,.spare-parts-disabled__header{display:grid;grid-template-columns:80px 190px 73px 125px 125px 120px 115px 155px}.spare-parts-disabled__line__hide-requested-parts,.spare-parts-disabled__header__hide-requested-parts{width:100%;display:grid;grid-template-columns:190px 92px 167px 167px 88px 95px 146px}.spare-parts-disabled__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:flex;align-items:flex-end;word-break:break-all}.spare-parts-disabled__field-margin{margin-right:20px}.spare-parts-disabled__requested,.spare-parts-disabled__primary-part{display:flex;align-items:center;justify-content:center;margin-right:20px}.spare-parts-disabled__acceptance{justify-content:flex-end}.spare-parts-disabled__description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-top:10px;margin-left:100px;margin-bottom:20px}.spare-parts-disabled__repair{margin-left:20px}.spare-parts-measure__line,.spare-parts-measure__header{display:grid;grid-template-columns:230px 92px 287px 287px 88px}.spare-parts-measure__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:flex;align-items:flex-end}.spare-parts-measure__field-margin{margin-right:20px}.spare-parts-measure__requested,.spare-parts-measure__primary-part{display:flex;align-items:center;justify-content:center;margin-right:20px}.spare-parts-measure__description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-top:10px;margin-left:20px;margin-bottom:20px}.spare-parts-invoices__container{margin:40px 0}.spare-parts-invoices__container .no-margin{margin-bottom:0}.spare-parts-invoices__section-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;height:18px;padding-bottom:20px}.spare-parts-invoices__section-title-wrapper{margin-bottom:30px}.spare-parts-invoices__data-display-container{display:flex;flex-direction:column;width:100%}.spare-parts-invoices__headers-row{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:grid;grid-template-columns:200px 300px 150px 1fr;width:100%;box-sizing:border-box;margin-bottom:20px;padding-left:15px}.spare-parts-invoices__results-wrapper{display:"flex";flex-direction:"column"}.spare-parts-invoices__tab .acco__label{margin-left:10px}.spare-parts-invoices__row-gray{background-color:#ededed}.spare-parts-invoices__results-row{display:grid;grid-template-columns:200px 300px 150px 1fr;width:100%;box-sizing:border-box}.spare-parts-invoices__row-data-cell-wrapper{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;border-right:1px solid #b1b1b1;align-items:center;word-break:break-all;padding:15px}.spare-parts-invoices__row-data-cell-wrapper:last-child{border-right:unset}.spare-parts-invoices--invoice-error{color:#d43b3b;font-weight:bold}.warranty-claims-overview-wrapper{display:flex;flex-direction:column;margin-top:61px}.warranty-claims-overview-wrapper .claims-table-wrapper{overflow-x:auto;scrollbar-color:#dadada #000}.warranty-claims-overview-wrapper .claims-table-wrapper::-webkit-scrollbar{width:auto;height:12px}.warranty-claims-overview-wrapper .claims-table-wrapper::-webkit-scrollbar-track{background-color:#dadada}.warranty-claims-overview-wrapper .claims-table-wrapper::-webkit-scrollbar-thumb{background-color:#000}.warranty-claims-overview-wrapper .claims-table-wrapper th{background-color:#fff;color:#000;border:none}.warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .cell,.warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .filterable-table-wrapper .table-wrapper .table .cell-no-border,.warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .filterable-table-wrapper .table-wrapper .table-widget .cell-no-border,.filterable-table-wrapper .table-wrapper .table .warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .cell-no-border,.filterable-table-wrapper .table-wrapper .table-widget .warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .cell-no-border{font-size:.75rem;padding:14px;text-align:left;min-width:100px;white-space:nowrap}.warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .cell .cell-header,.warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .filterable-table-wrapper .table-wrapper .table .cell-no-border .cell-header,.warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .filterable-table-wrapper .table-wrapper .table-widget .cell-no-border .cell-header,.filterable-table-wrapper .table-wrapper .table .warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .cell-no-border .cell-header,.filterable-table-wrapper .table-wrapper .table-widget .warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .cell-no-border .cell-header{display:flex;white-space:normal;-webkit-hyphens:none;hyphens:none}.warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .cell .cell-header span,.warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .filterable-table-wrapper .table-wrapper .table .cell-no-border .cell-header span,.warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .filterable-table-wrapper .table-wrapper .table-widget .cell-no-border .cell-header span,.filterable-table-wrapper .table-wrapper .table .warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .cell-no-border .cell-header span,.filterable-table-wrapper .table-wrapper .table-widget .warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .cell-no-border .cell-header span{margin:auto 0}.warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .cell .cell-header .arrowsContent,.warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .filterable-table-wrapper .table-wrapper .table .cell-no-border .cell-header .arrowsContent,.warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .filterable-table-wrapper .table-wrapper .table-widget .cell-no-border .cell-header .arrowsContent,.filterable-table-wrapper .table-wrapper .table .warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .cell-no-border .cell-header .arrowsContent,.filterable-table-wrapper .table-wrapper .table-widget .warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .cell-no-border .cell-header .arrowsContent{display:flex;flex-direction:column;margin-left:10px}.warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .cell .cell-header .arrowsContent button,.warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .filterable-table-wrapper .table-wrapper .table .cell-no-border .cell-header .arrowsContent button,.warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .filterable-table-wrapper .table-wrapper .table-widget .cell-no-border .cell-header .arrowsContent button,.filterable-table-wrapper .table-wrapper .table .warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .cell-no-border .cell-header .arrowsContent button,.filterable-table-wrapper .table-wrapper .table-widget .warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .cell-no-border .cell-header .arrowsContent button{padding:0;display:flex;justify-content:center}.warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .cell-multiple-item{cursor:pointer;font-size:.75rem;padding:6px;text-align:left;min-width:100px;white-space:nowrap;display:block}.warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .cell-multiple-item:hover{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow)}.warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .row{cursor:pointer;height:54px}.warranty-claims-overview-wrapper .claims-table-wrapper .claims-table .row:hover{background-color:#dadada}.warranty-claims-overview-wrapper .claims-table-wrapper tr:nth-child(even){background-color:#ededed}.warranty-claims-overview-wrapper .claims-table-wrapper tr:nth-child(odd){background-color:#fff}.warranty-claims-overview-wrapper .show-more-section{margin:55px auto 120px;width:150px;height:57px}.warranty-claims-overview-wrapper .show-more-section .show-more-btn{display:flex;flex-direction:column;margin:0 auto}.warranty-claims-overview-wrapper .show-more-section .show-more-btn__icon{margin:0 auto 10px;background:#000;border-radius:50%;height:32px;width:32px;display:flex;align-items:center}.warranty-claims-overview-wrapper .show-more-section .show-more-btn__icon svg{margin:0 auto}.warranty-claims-overview-wrapper .show-more-section .show-more-btn__label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.warranty-claims-overview-wrapper .claims-tabs .tab-bar_header__tab{max-width:270px}.warranty-claims-overview-wrapper .claims-tabs .tab-bar_header__title__focus{background-color:#fee2cd}.warranty-claims-overview-wrapper .claims-tabs .tab-bar_header .icon-high:first-child{left:-40px}.warranty-claims-overview-wrapper .claims-tabs .tab-bar_header .icon-high:last-child{right:-40px}.warranty-claims-overview-wrapper .claims-tabs.overlap{margin:0 39.5px -1px}.warranty-claims-overview-wrapper .claims-filter-wrapper{margin-top:30px;display:flex;flex-direction:column}.warranty-claims-overview-wrapper .claims-filter-wrapper.border{padding-top:30px;margin-top:0;border-top:1px solid #b1b1b1}.warranty-claims-overview-wrapper .claims-filter-wrapper .filters{display:flex;flex-direction:row;position:relative}.warranty-claims-overview-wrapper .claims-filter-wrapper .filters input:focus,.warranty-claims-overview-wrapper .claims-filter-wrapper .filters button:focus{border-bottom:4px solid #f37a1f}.warranty-claims-overview-wrapper .claims-filter-wrapper .filters .accordion-filter{width:100%;margin-top:8px}.warranty-claims-overview-wrapper .claims-filter-wrapper .filters .accordion-filter .acco-standard{margin:0}.warranty-claims-overview-wrapper .claims-filter-wrapper .filters .accordion-filter .acco{border:none}.warranty-claims-overview-wrapper .claims-filter-wrapper .filters .accordion-filter .acco--open{overflow:visible}.warranty-claims-overview-wrapper .claims-filter-wrapper .filters .accordion-filter .acco__content{transition:none}.warranty-claims-overview-wrapper .claims-filter-wrapper .filters .accordion-filter .acco__tab{padding:0;min-height:auto;width:100px;text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2}.warranty-claims-overview-wrapper .claims-filter-wrapper .filters .accordion-filter .acco__tab-icon-arrow-down::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-down-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);right:10px;transition:transform 250ms}.acco--open .warranty-claims-overview-wrapper .claims-filter-wrapper .filters .accordion-filter .acco__tab-icon-arrow-down::after{transform:rotate(180deg)}.warranty-claims-overview-wrapper .claims-filter-wrapper .filters .accordion-filter .acco__tab-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;line-height:1.4}.warranty-claims-overview-wrapper .claims-filter-wrapper .filters .search-filter{position:absolute;top:0;right:0;display:flex;width:350px;height:-moz-fit-content;height:fit-content}.warranty-claims-overview-wrapper .claims-filter-wrapper .filters .search-filter__input{font-size:1rem}.warranty-claims-overview-wrapper .claims-filter-wrapper .filters .search-filter__input::-moz-placeholder{color:#000;opacity:1}.warranty-claims-overview-wrapper .claims-filter-wrapper .filters .search-filter__input::placeholder{color:#000;opacity:1}.warranty-claims-overview-wrapper .claims-filter-wrapper .filters .search-filter__icon{cursor:default;height:20px}.warranty-claims-overview-wrapper .claims-filter-wrapper .selected-filters{display:flex}.warranty-claims-overview-wrapper .claims-filter-wrapper .selected-filters .selected-filter{margin:8px 0 24px}.warranty-claims-overview-wrapper .claims-filter-wrapper .selected-filters .selected-filter__tab{max-width:none}.warranty-claims-overview-wrapper .claims-filter-wrapper .selected-filters .selected-filter__tab .btn-inner{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;color:#fff}.warranty-claims-overview-wrapper .claims-filter-wrapper .selected-filters .selected-filter__tab::before{width:10px;height:10px;margin-right:8px}.warranty-claims-overview-wrapper .claims-filter-wrapper .selected-filters .selected-filter button:nth-last-child(2){margin-right:10px}.warranty-claims-overview-wrapper .list-shopping-cart__detail.lite{margin:0}.warranty-claims-overview-wrapper .list-shopping-cart__detail.lite .list-shopping-cart__detail-category.lite{margin-top:unset;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.warranty-extended-overview-table .list-shopping-cart__detail.lite{margin:0}.warranty-extended-overview-table .list-shopping-cart__detail.lite .list-shopping-cart__detail-category.lite{margin-top:unset;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.filter-claims-wrapper{display:flex;margin-top:18px;width:100%}.filter-claims-wrapper .filter{display:flex;flex-direction:column;width:100%;max-width:226px;margin-right:30px}.filter-claims-wrapper .filter:last-child{margin-right:0}.filter-claims-wrapper .filter__label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.filter-claims-wrapper .filter__input{display:flex;flex-direction:column;width:100%;margin-top:20px}.filter-claims-wrapper .filter__input .input-element{display:flex;margin-bottom:20px;height:60px}.filter-claims-wrapper .filter__input .input-element .input{width:100%}.filter-claims-wrapper .filter__input .input-element__label{margin:auto 15px auto 0;min-width:40px}.filter-claims-wrapper .filter__input .input-element__button{width:100%}.filter-claims-wrapper .filter__input .input-element__button .results-button{min-width:0;width:100%}.filter-claims-wrapper .filter__input .input-element .calendar-wrapper{display:flex;flex-direction:row;align-items:center;background-color:#ededed;height:60px}.filter-claims-wrapper .filter__input .input-element .calendar-wrapper .datepicker{display:flex;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;width:100%;text-align:center;margin-left:10px}.filter-claims-wrapper .filter__input .input-element .calendar-wrapper .datepicker:focus{border:none}.filter-claims-wrapper .filter__input .input-element .calendar-wrapper .calendar-icon{display:flex;background-image:url(stihl-styles/resources/icons/icon-calendar-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:var(--svg-filter-invert, none);width:50px;height:50px}.filter-claims-wrapper .filter__input .input-element .calendar-wrapper .form-field__input{width:100%}.extended-warranty-activation-table{width:100% !important}.product-registration-form-wrapper{display:flex;flex-direction:column}.product-registration-form-wrapper .product-registration-form__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;font-size:1.875rem !important;line-height:1.25 !important;margin-bottom:40px}@media only screen and (min-width: 48rem),print{.product-registration-form-wrapper .product-registration-form__title{font-size:1.875rem;line-height:1.3}}.product-registration-form-wrapper .product-registration-form__title::after{display:block;content:"";background-color:var(--color1)}.product-registration-form-wrapper .product-registration-form__title::after{width:23px;height:5px;margin-top:10px;background:var(--color1)}@media only screen and (min-width: 48rem),print{.product-registration-form-wrapper .product-registration-form__title::after{width:34px;height:7px;margin-top:15px;background:var(--color1)}}.product-registration-form-wrapper .inner-form-wrapper{display:flex;margin-top:10px}.product-registration-form-wrapper .inner-form-wrapper .information-wrapper{display:flex;flex-direction:column;width:572px;margin-right:70px}.product-registration-form-wrapper .inner-form-wrapper .information-wrapper .information-header{display:flex;margin-bottom:30px}.product-registration-form-wrapper .inner-form-wrapper .information-wrapper .information-header .display{display:flex;padding:0 10px;margin-top:10px}.product-registration-form-wrapper .inner-form-wrapper .information-wrapper .information-header .item{display:flex;margin-right:50px}.product-registration-form-wrapper .inner-form-wrapper .information-wrapper .header-wrapper{display:flex;justify-content:space-between}.product-registration-form-wrapper .inner-form-wrapper .information-wrapper .status-details__wrapper{display:flex;flex-direction:column}.product-registration-form-wrapper .inner-form-wrapper .information-wrapper .status-details__property-name{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;width:120px}.product-registration-form-wrapper .inner-form-wrapper .information-wrapper .status-details__property-value{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.product-registration-form-wrapper .inner-form-wrapper .information-wrapper .status-details-row{display:flex;flex-direction:row}.product-registration-form-wrapper .inner-form-wrapper .side-details-wrapper{display:flex;flex-direction:column;width:33%;height:auto}.product-registration-form-wrapper .inner-form-wrapper .side-details-wrapper .group{display:flex;flex-direction:column;border:1px solid #b1b1b1;background-color:#ededed;width:340px}.product-registration-form-wrapper .inner-form-wrapper .side-details-wrapper .group .header{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;height:50px;padding-left:20px;border-bottom:1px solid #b1b1b1;display:flex;align-items:center;margin-bottom:10px}.product-registration-form-wrapper .inner-form-wrapper .side-details-wrapper .group .details{padding:0 20px;margin:10px 0}.product-registration-form-wrapper .inner-form-wrapper .side-details-wrapper .group .details .accordion .acco-standard{margin:0}.product-registration-form-wrapper .inner-form-wrapper .side-details-wrapper .group .details .accordion .acco{border:none}.product-registration-form-wrapper .inner-form-wrapper .side-details-wrapper .group .details .accordion .acco__tab{background-color:#ededed;padding:0}.product-registration-form-wrapper .inner-form-wrapper .side-details-wrapper .group .details .accordion .acco__tab-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;font-size:.6875rem}.product-registration-form-wrapper .inner-form-wrapper .side-details-wrapper .group .footer{margin:0 20px 20px;padding-top:10px}.product-registration-form-wrapper .inner-form-wrapper .side-details-wrapper .group .separator{border-top:1px solid #b1b1b1;margin:5px 20px}.product-registration-form-wrapper .inner-form-wrapper .side-details-wrapper .group .button{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;font-size:.6875rem;padding:0}.product-registration-form-wrapper .inner-form-wrapper .side-details-wrapper .group .button::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.product-registration-form-wrapper .inner-form-wrapper .side-details-wrapper .group .button:hover::after{transform:translate3d(10px, -50%, 0)}.product-registration-form-wrapper .inner-form-wrapper .side-details-wrapper .group__last{margin-top:30px}.product-registration-form-wrapper .product-registration-form-details-wrapper{display:flex;flex-direction:column}.product-registration-form-wrapper .product-registration-form-details-wrapper .display{display:flex;flex-wrap:wrap}.product-registration-form-wrapper .product-registration-form-details-wrapper .display .item{width:100%;height:40px}.product-registration-form-wrapper .button-section{margin-top:40px;margin-bottom:40px;display:flex;flex-direction:column}.product-registration-form-wrapper .button-section .buttons-wrapper{display:flex;flex-direction:row;justify-content:flex-end}.product-registration-form-wrapper .button-section .buttons-wrapper .close-button{margin-right:20px}.product-registration-form-wrapper .toggle-section{margin-top:40px}.product-registration-form-wrapper .toggle-section.section-separator{padding-bottom:40px;border-bottom:1px solid #b1b1b1}.product-registration-form-wrapper .toggle-section .toggle__input{width:-moz-fit-content;width:fit-content}.product-registration-sales-information-wrapper{display:flex;flex-direction:column;padding-bottom:40px;border-bottom:1px solid #b1b1b1}.product-registration-sales-information-wrapper input:focus{border-bottom:4px solid #f37a1f}.product-registration-sales-information-wrapper .section-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;height:18px;margin-bottom:30px;padding-top:40px}.product-registration-sales-information-wrapper .calendar-icon{background-image:url(stihl-styles/resources/icons/icon-calendar-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:var(--svg-filter-invert, none);width:50px;height:50px}.product-registration-sales-information-wrapper .data-input-formfield{display:flex;flex-direction:column}.product-registration-sales-information-wrapper .image-calendar-wrapper{display:flex;flex-direction:row;align-items:center;background-color:#ededed;height:60px}.product-registration-sales-information-wrapper .datepicker{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.product-registration-sales-information-wrapper .datepicker:focus{border:none}.product-registration-sales-information-wrapper .datepicker-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;align-items:flex-end;margin-bottom:10px}.product-registration-sales-information-wrapper .reference-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:10px}.product-registration-sales-information-wrapper .extended{display:block !important}.product-registration-sales-information-wrapper .info-display{display:flex;flex-direction:row;align-items:flex-end}.product-registration-sales-information-wrapper .info-display-unfilled{border:1px solid red}.product-registration-sales-information-wrapper .datepicker-input-wrapper{width:188px;margin-right:20px}.product-registration-sales-information-wrapper .datepicker-input-wrapper-extended{width:auto}.product-registration-sales-information-wrapper .datepicker-input-wrapper-extended-input-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text-demi),Arial,sans-serif;font-size:1rem}.product-registration-sales-information-wrapper .reference-input-wrapper{display:flex;flex-direction:column;width:372px}.product-registration-sales-information-wrapper .date-picker-error-message{position:absolute}.product-registration-sales-information-wrapper .field-margin{margin-right:20px}.product-registration-sales-information-wrapper .disabled-field{display:flex;flex-direction:column}.product-registration-sales-information-wrapper .disabled-field__date{margin-right:20px;width:200px}.product-registration-sales-information-wrapper .disabled-field__reference{width:372px}.product-registration-form-section-wrapper{display:flex;flex-direction:column;padding-bottom:5rem;border-bottom:1px solid #dadada}.product-registration-form-section-wrapper .updated-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;text-transform:uppercase;margin-bottom:.875rem}.product-registration-form-section-wrapper input:focus,.product-registration-form-section-wrapper button:focus{border-bottom:4px solid #f37a1f}.product-registration-form-section-wrapper .product-registration-section{display:flex;-moz-column-gap:.5em;column-gap:.5em;margin-top:2em}.product-registration-form-section-wrapper .product-registration-section .sub-section{display:flex;-moz-column-gap:.5em;column-gap:.5em;border-bottom:1px solid #b1b1b1}.product-registration-form-section-wrapper .product-registration-section .sub-section__details{display:flex;flex-direction:column;row-gap:3em;max-width:25%}.product-registration-form-section-wrapper div.product-registration-multi-select-section div:last-child{border-bottom:none;width:100%;margin-right:0;padding-bottom:0}.product-registration-form-section-wrapper div.product-registration-multi-select-section div:first-child{margin-top:0}.product-registration-form-section-wrapper .product-registration-multi-select-section{display:grid;row-gap:.5em;margin-top:3.375rem}.product-registration-form-section-wrapper .product-registration-multi-select-section .sub-section{display:flex;-moz-column-gap:2rem;column-gap:2rem;border-bottom:1px solid #dadada;margin-bottom:4.375rem}.product-registration-form-section-wrapper .product-registration-multi-select-section .sub-section__details{display:grid;grid-template-columns:12.5rem;grid-template-rows:auto auto;row-gap:1.375rem}.product-registration-form-section-wrapper .product-registration-multi-select-section .sub-section__details .image-section{display:flex;align-items:center}.product-registration-form-section-wrapper .product-registration-multi-select-section .sub-section .inner-form-wrapper .information-wrapper .section-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text-demi),Arial,sans-serif;font-size:1rem}.product-registration-form-section-wrapper .product-registration-multi-select-section .permissions-section{margin-top:-4.375rem}.product-registration-form-section-wrapper .register-customer{margin-top:3.5rem}.product-registration-form-section-wrapper .register-customer-section{display:flex;-moz-column-gap:1em;column-gap:1em}.product-registration-form-section-wrapper .register-customer-section-container{display:flex;align-items:baseline}.product-registration-form-section-wrapper .register-customer-section-container-btn{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text-demi),Arial,sans-serif;font-size:1rem;border-bottom:none}.product-registration-form-section-wrapper .register-customer-section-button-bar{display:flex;-moz-column-gap:2rem;column-gap:2rem}.product-registration-form-section-wrapper .section-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;height:18px;margin-bottom:30px;padding-top:40px}.product-registration-form-section-wrapper .title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;height:50px;padding-left:10px;border-bottom:1px solid #b1b1b1;display:flex;align-items:center;margin-bottom:20px}.product-registration-form-section-wrapper .input-wrapper{display:flex;flex-direction:column;padding-top:1.5em}.product-registration-form-section-wrapper .input-wrapper>:not(:last-child){margin-bottom:20px}.product-registration-form-section-wrapper .input-wrapper .extended{display:block !important}.product-registration-form-section-wrapper .input-wrapper .auto-width{width:auto !important}.product-registration-form-section-wrapper .input-wrapper__section{display:flex}.product-registration-form-section-wrapper .input-wrapper__section .input{display:flex;flex-direction:column;width:590px;margin-right:20px}.product-registration-form-section-wrapper .input-wrapper__section .input-unfilled{border:1px solid red}.product-registration-form-section-wrapper .input-wrapper__section .input .input-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;align-items:flex-end;margin-bottom:10px;gap:.25em;font-weight:bold;padding-top:1em}.product-registration-form-section-wrapper .input-wrapper__section .input .city-input-container{display:flex}.product-registration-form-section-wrapper .input-wrapper__section .input .city-input-container-city-input{width:-webkit-fill-available;width:-moz-available;width:fill-available;flex:1}.product-registration-form-section-wrapper .input-wrapper .double-inputs-extended{display:grid;grid-template-columns:1fr 1fr;-moz-column-gap:.75em;column-gap:.75em}.product-registration-form-section-wrapper .input-wrapper .double-inputs-extended .input{width:auto !important}.product-registration-form-section-wrapper .input-wrapper .double-inputs-extended-unfilled{border:1px solid red}.product-registration-form-section-wrapper .input-wrapper .double-inputs{display:flex;flex-direction:row}.product-registration-form-section-wrapper .input-wrapper .double-inputs .input{width:285px}.product-registration-form-section-wrapper .input-wrapper .double-inputs .input-unfilled{border:1px solid red}.product-registration-form-section-wrapper .input-wrapper .double-inputs .street-input{width:370px}.product-registration-form-section-wrapper .input-wrapper .double-inputs .house-no-input{width:200px}.product-registration-form-section-wrapper .input-wrapper .double-inputs .zip-code-input{width:200px}.product-registration-form-section-wrapper .input-wrapper .double-inputs .city-input-extended{flex:1 !important}.product-registration-form-section-wrapper .input-wrapper .double-inputs .city-input-smaller{width:370px !important}.product-registration-form-section-wrapper .endcustomer-label{margin-top:10px}.product-registration-form-section-wrapper .dropdown-wrapper{display:flex;flex-direction:column}.product-registration-form-section-wrapper .dropdown-wrapper>:not(:last-child){margin-bottom:20px}.product-registration-form-section-wrapper .dropdown-wrapper__section .dropdown{display:flex;flex-direction:column;width:590px;margin-right:30px}.product-registration-form-section-wrapper .dropdown-wrapper__section .dropdown .dropdown-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;align-items:flex-end;margin-bottom:10px;cursor:default;gap:.25em}.product-registration-form-section-wrapper .dropdown-wrapper__section .dropdown-extended{display:flex;flex-direction:column;margin-right:30px}.product-registration-form-section-wrapper .dropdown-wrapper__section .dropdown-extended .dropdown-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;align-items:flex-end;margin-bottom:10px;cursor:default;gap:.25em;font-weight:bold}.product-registration-form-section-wrapper .dropdown-wrapper__section .text{display:flex;flex-direction:column;width:590px}.product-registration-form-section-wrapper .dropdown-wrapper__section .text__label{margin-bottom:20px}.product-registration-form-section-wrapper .dropdown-wrapper__section .text__button{display:flex;flex-direction:row-reverse}.product-registration-form-section-wrapper .dropdown-wrapper__section .text__button .plus-button-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-left:10px}.product-registration-form-section-wrapper .dropdown-wrapper__section .text__button .plus-button-icon{display:flex;flex-direction:row;align-self:flex-start}.product-registration-form-section-wrapper .questions-section{display:flex;flex-direction:column;margin-bottom:40px}.product-registration-form-section-wrapper .questions-section .question-smaller{display:grid;justify-content:left;margin-bottom:15px}.product-registration-form-section-wrapper .questions-section .question-smaller__text{margin-right:40px;display:grid;gap:.5em}.product-registration-form-section-wrapper .questions-section .question-smaller__buttons{display:flex;-moz-column-gap:1.25rem;column-gap:1.25rem;min-width:12.5rem;justify-content:left !important;margin:.25em}.product-registration-form-section-wrapper .questions-section .question-smaller__buttons .radio-button__input{display:flex;flex-direction:row;cursor:pointer;margin-right:10px;height:20px}.product-registration-form-section-wrapper .questions-section .question-smaller__buttons .radio-button__input>svg{margin-right:10px}.product-registration-form-section-wrapper .questions-section .question{display:flex;justify-content:space-between;margin-bottom:15px}.product-registration-form-section-wrapper .questions-section .question__text{margin-right:40px;display:grid;gap:.5em}.product-registration-form-section-wrapper .questions-section .question__buttons{display:flex;min-width:200px;justify-content:space-around;align-items:center}.product-registration-form-section-wrapper .questions-section .question__buttons .radio-button__input{display:flex;flex-direction:row;cursor:pointer;margin-right:10px;height:20px}.product-registration-form-section-wrapper .questions-section .question__buttons .radio-button__input>svg{margin-right:10px}.product-registration-form-section-wrapper .permissions-section{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.product-registration-form-section-wrapper .permissions-section a{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow)}.product-registration-form-section-wrapper .bottom-label{font-size:1rem;margin-top:40px}.multi-success-dialog{padding:0 2em 1em;position:relative;margin:1em 0}.multi-success-dialog__warning{display:flex;margin-top:25px;max-width:calc(100% - 10px);min-height:44px}.multi-success-dialog__warning>span{margin-left:10px;margin-top:2px}.multi-success-dialog__wrapper{display:flex;flex-direction:column}.multi-success-dialog__header{display:grid;row-gap:1em;text-align:left;margin-bottom:20px;align-items:center;justify-content:left}.multi-success-dialog__header .title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;text-align:left;font-size:1.2rem}.multi-success-dialog__header .description{text-align:left}.multi-success-dialog__serials-list{display:grid;row-gap:.5em;overflow-y:auto;max-height:10em;place-items:center left}.multi-success-dialog__serials-list .serial-number{display:flex;-moz-column-gap:1em;column-gap:1em;margin-left:1em}.multi-success-dialog__serials-list .serial-number-digit{font-weight:normal}.multi-success-dialog__serials-list .serial-number-digit-error{color:#d43b3b}.multi-success-dialog__serials-list .serial-number-status{font-weight:bold}.multi-success-dialog__serials-list .serial-number-status .success{display:flex;-moz-column-gap:.5em;column-gap:.5em}.multi-success-dialog__serials-list .serial-number-status .success .inner-elements{display:flex;-moz-column-gap:.5em;column-gap:.5em;cursor:pointer}.multi-success-dialog__serials-list .serial-number-status .success .inner-elements>svg{margin-top:1px}.multi-success-dialog__serials-list .serial-number-status .error{color:#d43b3b}.multi-success-dialog__serials-list::-webkit-scrollbar{width:.625rem}.multi-success-dialog__serials-list::-webkit-scrollbar-track{background-color:#ededed}.multi-success-dialog__serials-list::-webkit-scrollbar-thumb{background-color:#b1b1b1;outline:.5px solid #b1b1b1}.multi-success-dialog__buttons{display:flex;text-align:center;justify-content:flex-end;margin-top:1.25rem;-moz-column-gap:1em;column-gap:1em;background-color:#fff}.multi-success-dialog__buttons .download-zip-button{display:flex;justify-content:center;align-items:center}.multi-success-dialog__buttons .download-zip-button .inner-elements{display:flex;-moz-column-gap:.5em;column-gap:.5em;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;cursor:pointer;align-items:center}.multi-success-dialog__buttons .continue-button{display:flex;justify-content:center}.success-dialog__header{margin-bottom:1.25rem}.success-dialog__header .title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;padding-bottom:1rem}.success-dialog__header .subtitle{max-width:80%}.success-dialog__actions{display:flex;justify-content:space-between;margin-top:1.25rem}.success-dialog__actions .download{display:flex;justify-content:center;align-items:center;padding:0;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.success-dialog__actions .download>span{margin-right:.625rem}.success-dialog__actions .continue{margin-left:auto}.product-registration-details__information-container{border-radius:0;border:1px solid #b1b1b1}@media only screen and (min-width: 48rem),print{.product-registration-details__information-container{width:340px}}.product-registration-details__information-header{background:#ededed;padding-top:20px;padding-bottom:20px}.product-registration-details__information-header>:last-child{margin:0 30px}.product-registration-details__information-header-element{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;justify-content:space-between;margin:0 30px 14px}.product-registration-details__information-header-element .value{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;width:50%;text-align:right}.product-registration-details__information-header-element.information{margin:0 30px 20px}.product-registration-details__information-body{width:100%;margin-bottom:20px}.product-registration-details__information-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin:20px 30px;padding-bottom:20px;border-bottom:1px solid #b1b1b1;display:flex;flex-direction:column}.product-registration-details__information-title .description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:8px}.updated-title{line-height:1.2;font-weight:900;font-size:1.25rem;text-transform:uppercase}.mandatory{color:#f37a1f}.no-bottom-border{border-bottom:none !important}.small-bottom-padding{padding-bottom:20px !important}.no-bottom-padding{padding-bottom:0 !important}.no-top-padding{padding-top:0 !important}.no-bottom-margin{margin-bottom:0 !important}.auto-width{width:auto !important;margin-right:0 !important}.font-weight-normal{font-weight:normal !important}.small-top-margin{margin-top:20px !important}.small-bottom-margin{margin-bottom:20px !important}.stihlid__section{margin-top:20px}.stihlid__section .stihlid-registration-input:focus{border-bottom:none}.stihlid__section .stihlid-indent{margin-left:56px}.m_shopping-cart-top-bar__container{display:grid;grid-template-columns:50% 50%;margin-bottom:40px}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_shopping-cart-top-bar__container{grid-template-columns:40% 60%}}@media only screen and (max-width: 47.9375rem){.m_shopping-cart-top-bar__container{display:flex;flex-direction:column;margin-bottom:30px}}.m_shopping-cart-top-bar__extra-buttons{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;align-self:center;display:flex}.m_shopping-cart-top-bar__extra-buttons>:not(:last-child){margin-right:32px}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_shopping-cart-top-bar__extra-buttons{flex-direction:column}.m_shopping-cart-top-bar__extra-buttons>:not(:last-child){margin-bottom:20px}}@media only screen and (max-width: 47.9375rem){.m_shopping-cart-top-bar__extra-buttons{flex-direction:column;margin-bottom:30px;width:100%}.m_shopping-cart-top-bar__extra-buttons>:not(:last-child){margin-bottom:20px}}.m_shopping-cart-top-bar__extra-button{display:flex;align-items:center;cursor:pointer}.m_shopping-cart-top-bar__extra-button>span{margin-left:10px}.m_shopping-cart-top-bar__cart-buttons{display:grid;grid-template-columns:40% 60%}@media only screen and (max-width: 47.9375rem){.m_shopping-cart-top-bar__cart-buttons{display:flex;flex-direction:column}.m_shopping-cart-top-bar__cart-buttons>:not(:last-child){margin-bottom:10px}}.m_shopping-cart-top-bar__update-button{position:relative;background:linear-gradient(to bottom, #000 50%, var(--button-standard-bg-color-hover) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:var(--button-standard-border-color);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center;height:3.75rem;--outline-offset: 2px;width:100%;border:var(--button-standard-border);padding-left:50px;padding-right:50px}.m_shopping-cart-top-bar__update-button.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.m_shopping-cart-top-bar__update-button:hover{background-position:0 -100%}}.m_shopping-cart-top-bar__update-button.active{border-color:var(--button-standard-border-color-hover)}@media(hover: hover)and (pointer: fine){.m_shopping-cart-top-bar__update-button:hover{border-color:var(--button-standard-border-color-hover)}}.m_shopping-cart-top-bar__update-button:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.m_shopping-cart-top-bar__update-button.active{color:var(--color2)}@media(hover: hover)and (pointer: fine){.m_shopping-cart-top-bar__update-button:hover{color:var(--color2)}}@media(max-width: 63.9375rem){.m_shopping-cart-top-bar__update-button{width:100%}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_shopping-cart-top-bar__update-button:not(.full){min-width:calc(calc(45.5rem / 6) * 2);max-width:calc(calc(45.5rem / 6) * 3)}}@media only screen and (min-width: 64rem){.m_shopping-cart-top-bar__update-button:not(.full){min-width:calc(calc(61.5rem / 12) * 3);max-width:calc(calc(61.5rem / 12) * 4)}}.m_shopping-cart-top-bar__update-button.shrink{min-width:auto}.m_shopping-cart-top-bar__order-button{margin-left:20px}@media only screen and (max-width: 47.9375rem){.m_shopping-cart-top-bar__order-button{margin-left:unset}}.m_shopping-cart-top-bar__error{display:flex;gap:.5rem;margin:2rem 0;line-height:1.5;font-weight:normal;font-size:.875rem}.m_shopping-cart-top-bar__error>:first-child{margin-top:.15rem}.m_shopping-cart-top-bar-slim__container{display:flex;flex-direction:column;padding-top:10px}.m_shopping-cart-top-bar-slim__container.cart-top-bar-sticky{position:sticky;top:45px;background:#fff;z-index:11}.m_shopping-cart-top-bar-slim__top{display:flex;justify-content:end;margin-bottom:16px}.m_shopping-cart-top-bar-slim__counter{margin-top:10px}.m_shopping-cart-top-bar-slim__left{display:flex}.m_shopping-cart-top-bar-slim__left .toggle .toggle__label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.m_shopping-cart-top-bar-slim__left .toggle.active .toggle__background{background-color:#f37a1f}.m_shopping-cart-top-bar-slim__left .toggle .toggle__background{background-color:#505050}.m_shopping-cart-top-bar-slim__right{display:flex}.m_shopping-cart-top-bar-slim__update-button-container{display:flex;min-width:7.5rem;max-width:20.5rem}.m_shopping-cart-top-bar-slim__bottom{display:flex;justify-content:space-between;height:3.375rem;padding-left:16px;padding-right:16px;background-color:#dadada;margin-bottom:1px}.m_shopping-cart-top-bar-slim__button{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;display:flex;align-items:center;cursor:pointer}.m_shopping-cart-top-bar-slim__button:not(:last-child){margin-right:24px}.m_shopping-cart-top-bar-slim__button>svg{margin-right:9px}.m_shopping-cart-bottom-bar__container{display:flex;align-items:center;margin-top:55px}.m_shopping-cart-bottom-bar__buttons{display:flex;align-items:center;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.m_shopping-cart-bottom-bar__buttons>div{display:flex;align-items:center;margin-right:30px}.m_shopping-cart-bottom-bar__buttons>div>span{margin-left:10px}@media only screen and (max-width: 47.9375rem){.m_shopping-cart-bottom-bar__buttons>div{margin-bottom:20px}}@media only screen and (max-width: 47.9375rem){.m_shopping-cart-bottom-bar__buttons{flex-direction:column;align-items:flex-start}}.m_shopping-cart-bottom-bar__empty-cart{cursor:pointer}.m_shopping-cart-bottom-bar__add-cart-to-list{cursor:pointer}.m_shopping-cart-bottom-bar__save-cart{cursor:pointer}@media(max-width: 63.9375rem){.m_shopping-cart__extra-info{margin-bottom:30px}}.m_shopping-cart__extra-info-cfdi div.unfilled>button{border:red 1px solid}.m_shopping-cart__extra-info-po-number{margin-bottom:10px}.m_shopping-cart__extra-info-po-number-input{width:462px}@media(max-width: 63.9375rem){.m_shopping-cart__extra-info-po-number-input{width:100%}}.m_shopping-cart__extra-info-po-number-input::-moz-placeholder{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.m_shopping-cart__extra-info-po-number-input::placeholder{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.m_shopping-cart__extra-info-po-number-input.unfilled{border:red 1px solid}.m_shopping-cart__extra-info-po-number-textarea{width:462px;height:119px;padding-top:17px;resize:none;line-height:1.5;letter-spacing:1px;outline:none}.m_shopping-cart__extra-info-po-number-textarea::-moz-placeholder{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.m_shopping-cart__extra-info-po-number-textarea::placeholder{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}@media(max-width: 63.9375rem){.m_shopping-cart__extra-info-po-number-textarea{width:100%}}.m_shopping-cart__extra-info-image-calendar-wrapper-outer{display:flex;background-color:#ededed;align-items:center;padding:0 20px;margin-bottom:20px;min-width:288px;height:50px}.m_shopping-cart__extra-info__calendar-icon{display:flex;background-image:url(stihl-styles/resources/icons/icon-calendar-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:var(--svg-filter-invert, none);width:16px;height:16px}.m_shopping-cart__extra-info .react-datepicker-wrapper{width:100%;padding:0 0 0 10px}.m_shopping-cart__extra-info .react-datepicker-wrapper .datepicker{width:100%;font-weight:bold;vertical-align:middle}.m_shopping-cart__extra-info .react-datepicker-wrapper .react-datepicker__close-icon::after{background-color:#000}.m_shopping-cart__extra-info-cfdi{margin-bottom:10px}.m_shopping-cart__extra-info-cfdi>.form-field{min-width:unset;box-sizing:border-box;grid-template:"input input"}.m_shopping-cart__extra-info-cfdi>.form-field>.form-field__datalist{grid-area:1}.attachments__section{border-bottom:1px solid #b1b1b1}.attachments__cursor-download{cursor:pointer}.attachments__content-wrapper{display:flex;flex-direction:row;margin-top:40px;padding-bottom:40px}.attachments__upload-file-wrapper{display:flex;flex-direction:column;flex:.4;margin-right:30px}.attachments__drag-n-drop{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;color:#b1b1b1;display:flex;justify-content:center;align-items:center;border:1px dashed #dadada;height:180px;flex:.6}.attachments__drag-n-drop-unfilled{border:1px solid red !important;display:grid !important}.attachments__drag-n-drop .text-wrapper{display:flex;flex-direction:row;color:#b1b1b1}.attachments__drag-n-drop .icon{margin-left:10px;margin-top:4px}.attachments__drag-n-drop>svg{margin-left:10px}.attachments__green-border-drag-over{border:3px dashed #749f4a}.attachments__display{display:flex;flex-direction:column;padding-bottom:40px}.attachments__upload-file-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;height:18px;margin-bottom:20px;display:flex;gap:.25em}.attachments__upload-file-description{margin-bottom:30px}.attachments__upload-file-input{visibility:hidden;height:0}.attachments__upload-file-button{display:flex;flex-direction:row;align-self:flex-start}.attachments__upload-file-button-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-left:10px;color:#b1b1b1}.attachments__headers-row{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:grid;grid-template-columns:.7fr .5fr .3fr 1.3fr .1fr;width:100%;box-sizing:border-box;margin-bottom:20px;padding-left:10px}.attachments__results-row{display:grid;grid-template-columns:.7fr .5fr .3fr 1.2fr .2fr;width:100%;box-sizing:border-box}.attachments__headers-cell{padding:10px}.attachments__row-data-cell{padding:10px}.attachments__row-data-cell-wrapper{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;border-right:1px solid #000;align-items:center;word-break:break-all}.attachments__row-gray{background-color:#ededed}.attachments__odd-row-padding{display:block;min-width:unset;border-right:1px solid #000;background-color:#fff;padding:5px 10px}.attachments__odd-row-padding input{width:100%;text-overflow:ellipsis}.attachments__comments{display:block;min-width:unset;border-right:1px solid #000;background-color:#fff;padding-left:10px;padding-right:10px}.attachments__comments input{width:100%;text-overflow:ellipsis}.attachments__trash-icon-wrapper{display:flex;align-items:center;justify-content:center;background-color:#fff}.attachments__remove{background-image:url(stihl-styles/resources/icons/icon-bin-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:var(--svg-filter-invert, none);transition:transform 250ms;cursor:pointer;background-color:#fff}.attachments__remove:focus{height:22px}.attachments__file-extension-block{display:flex;min-width:50px;height:30px;background-color:#000;color:#fff;justify-content:center;align-items:center;margin-right:10px;font-weight:bold}.attachments__with-table-cell{display:flex;justify-content:center;align-items:center}.attachments__with-table-cell .cell,.attachments__with-table-cell .filterable-table-wrapper .table-wrapper .table .cell-no-border,.attachments__with-table-cell .filterable-table-wrapper .table-wrapper .table-widget .cell-no-border,.filterable-table-wrapper .table-wrapper .table .attachments__with-table-cell .cell-no-border,.filterable-table-wrapper .table-wrapper .table-widget .attachments__with-table-cell .cell-no-border{display:flex;align-items:center}.attachments__tooltip{position:relative}.lifecycle__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;margin-bottom:0;-webkit-hyphens:none;hyphens:none}@media only screen and (min-width: 48rem),print{.lifecycle__title{font-size:1.875rem;line-height:1.3}}.lifecycle__title::after{display:block;content:"";background-color:var(--color1)}.lifecycle__title::after{width:23px;height:5px;margin-top:10px;background:var(--color1)}@media only screen and (min-width: 48rem),print{.lifecycle__title::after{width:34px;height:7px;margin-top:15px;background:var(--color1)}}.lifecycle__overlay{width:65%}.lifecycle__information-header{margin-top:20px;width:40%}.lifecycle__information-item-container{display:flex;-moz-column-gap:1em;column-gap:1em;align-items:end}.lifecycle__information-item{min-width:-moz-fit-content;min-width:fit-content;align-self:center}.lifecycle__table-wrapper-with-top-border{border-top:1px solid #b1b1b1;margin-top:3em;padding-top:1em}.lifecycle__table-wrapper{overflow-x:auto}.lifecycle__table-wrapper th{background-color:#fff;color:#000;border:none}.lifecycle__table-wrapper .lifecycle-table{width:100% !important;max-width:none;min-width:auto}.lifecycle__table-wrapper .lifecycle-table .cell,.lifecycle__table-wrapper .lifecycle-table .filterable-table-wrapper .table-wrapper .table .cell-no-border,.lifecycle__table-wrapper .lifecycle-table .filterable-table-wrapper .table-wrapper .table-widget .cell-no-border,.filterable-table-wrapper .table-wrapper .table .lifecycle__table-wrapper .lifecycle-table .cell-no-border,.filterable-table-wrapper .table-wrapper .table-widget .lifecycle__table-wrapper .lifecycle-table .cell-no-border{font-size:.75rem;padding:14px;text-align:center;min-width:100px}.lifecycle__table-wrapper .lifecycle-table .cell .cell-header,.lifecycle__table-wrapper .lifecycle-table .filterable-table-wrapper .table-wrapper .table .cell-no-border .cell-header,.lifecycle__table-wrapper .lifecycle-table .filterable-table-wrapper .table-wrapper .table-widget .cell-no-border .cell-header,.filterable-table-wrapper .table-wrapper .table .lifecycle__table-wrapper .lifecycle-table .cell-no-border .cell-header,.filterable-table-wrapper .table-wrapper .table-widget .lifecycle__table-wrapper .lifecycle-table .cell-no-border .cell-header{display:flex}.lifecycle__table-wrapper .lifecycle-table .cell .cell-header span,.lifecycle__table-wrapper .lifecycle-table .filterable-table-wrapper .table-wrapper .table .cell-no-border .cell-header span,.lifecycle__table-wrapper .lifecycle-table .filterable-table-wrapper .table-wrapper .table-widget .cell-no-border .cell-header span,.filterable-table-wrapper .table-wrapper .table .lifecycle__table-wrapper .lifecycle-table .cell-no-border .cell-header span,.filterable-table-wrapper .table-wrapper .table-widget .lifecycle__table-wrapper .lifecycle-table .cell-no-border .cell-header span{width:100%;margin:auto 0}.filterable-table-wrapper{display:flex;flex-direction:column}.filterable-table-wrapper__top-margin{margin-top:61px}.filterable-table-wrapper .table-wrapper{overflow-x:auto;scrollbar-color:#dadada #000}.filterable-table-wrapper .table-wrapper::-webkit-scrollbar{width:auto;height:12px}.filterable-table-wrapper .table-wrapper::-webkit-scrollbar-track{background-color:#dadada}.filterable-table-wrapper .table-wrapper::-webkit-scrollbar-thumb{background-color:#000}.filterable-table-wrapper .table-wrapper th{background-color:#fff;color:#000;border:none}.filterable-table-wrapper .table-wrapper .table .dark-header,.filterable-table-wrapper .table-wrapper .table-widget .dark-header{background-color:#000;color:#fff;border-right:1px solid}.filterable-table-wrapper .table-wrapper .table .white-row,.filterable-table-wrapper .table-wrapper .table-widget .white-row{background-color:#fff}.filterable-table-wrapper .table-wrapper .table .white-row .cell-border,.filterable-table-wrapper .table-wrapper .table-widget .white-row .cell-border{border-right:1px solid #ededed}.filterable-table-wrapper .table-wrapper .table .cell,.filterable-table-wrapper .table-wrapper .table-widget .cell,.filterable-table-wrapper .table-wrapper .table .cell-no-border,.filterable-table-wrapper .table-wrapper .table-widget .cell-no-border{font-size:.75rem;padding:14px;text-align:left;min-width:100px;white-space:nowrap}.filterable-table-wrapper .table-wrapper .table .cell .cell-header,.filterable-table-wrapper .table-wrapper .table-widget .cell .cell-header,.filterable-table-wrapper .table-wrapper .table .cell-no-border .cell-header,.filterable-table-wrapper .table-wrapper .table-widget .cell-no-border .cell-header{display:flex;white-space:normal;-webkit-hyphens:none;hyphens:none;line-height:1.5}.filterable-table-wrapper .table-wrapper .table .cell .cell-header span,.filterable-table-wrapper .table-wrapper .table-widget .cell .cell-header span,.filterable-table-wrapper .table-wrapper .table .cell-no-border .cell-header span,.filterable-table-wrapper .table-wrapper .table-widget .cell-no-border .cell-header span{width:100%;margin:auto 0}.filterable-table-wrapper .table-wrapper .table .cell .cell-header .arrowsContent,.filterable-table-wrapper .table-wrapper .table-widget .cell .cell-header .arrowsContent,.filterable-table-wrapper .table-wrapper .table .cell-no-border .cell-header .arrowsContent,.filterable-table-wrapper .table-wrapper .table-widget .cell-no-border .cell-header .arrowsContent{display:flex;flex-direction:column;margin-left:10px}.filterable-table-wrapper .table-wrapper .table .cell .cell-header .arrowsContent button,.filterable-table-wrapper .table-wrapper .table-widget .cell .cell-header .arrowsContent button,.filterable-table-wrapper .table-wrapper .table .cell-no-border .cell-header .arrowsContent button,.filterable-table-wrapper .table-wrapper .table-widget .cell-no-border .cell-header .arrowsContent button{padding:0;display:flex;justify-content:center}.filterable-table-wrapper .table-wrapper .table .cell-no-border,.filterable-table-wrapper .table-wrapper .table-widget .cell-no-border{border:none}.filterable-table-wrapper .table-wrapper .table .row,.filterable-table-wrapper .table-wrapper .table-widget .row{cursor:pointer;height:54px}.filterable-table-wrapper .table-wrapper .table .row:hover,.filterable-table-wrapper .table-wrapper .table-widget .row:hover{background-color:#dadada}.filterable-table-wrapper .table-wrapper .table .cell-multiple-item,.filterable-table-wrapper .table-wrapper .table-widget .cell-multiple-item{cursor:pointer;font-size:.75rem;padding:6px;text-align:left;min-width:100px;white-space:nowrap;display:block}.filterable-table-wrapper .table-wrapper .table .cell-multiple-item:hover,.filterable-table-wrapper .table-wrapper .table-widget .cell-multiple-item:hover{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow)}.filterable-table-wrapper .table-wrapper .table .cell-multiple-item-no-url,.filterable-table-wrapper .table-wrapper .table-widget .cell-multiple-item-no-url{font-size:.75rem;padding:6px;text-align:left;min-width:100px;white-space:nowrap;display:block}.filterable-table-wrapper .table-wrapper .table-widget .cell,.filterable-table-wrapper .table-wrapper .table-widget .cell-no-border{min-width:50px}@media only screen and (min-width: 64rem){.filterable-table-wrapper .table-wrapper .table-widget{min-width:100px;width:-webkit-fill-available !important;width:-moz-available !important;width:stretch !important;width:available !important}}.filterable-table-wrapper .table-wrapper tr:nth-child(even){background-color:#ededed}.filterable-table-wrapper .table-wrapper tr:nth-child(odd){background-color:#fff}.filterable-table-wrapper .show-more-section{margin:55px auto 120px;width:150px;height:57px}.filterable-table-wrapper .show-more-section .show-more-btn{display:flex;flex-direction:column;margin:0 auto}.filterable-table-wrapper .show-more-section .show-more-btn__icon{margin:0 auto 10px;background:#000;border-radius:50%;height:32px;width:32px;display:flex;align-items:center}.filterable-table-wrapper .show-more-section .show-more-btn__icon svg{margin:0 auto}.filterable-table-wrapper .show-more-section .show-more-btn__label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.filterable-table-wrapper .tabs .tab-bar_header__tab{max-width:230px}.filterable-table-wrapper .tabs .tab-bar_header__title__focus{background-color:#fee2cd}.filterable-table-wrapper .tabs.overlap{margin:0 39.5px -1px}.filterable-table-wrapper .tab-border{border-bottom:1px solid #b1b1b1;margin-top:-1px}.filterable-table-wrapper .filter-wrapper-small-margin-top{margin-top:10px}.filterable-table-wrapper .filter-wrapper{margin-top:30px;margin-bottom:24px;display:flex;flex-direction:column}.filterable-table-wrapper .filter-wrapper.border{padding-top:30px;margin-top:0;border-top:1px solid #b1b1b1}.filterable-table-wrapper .filter-wrapper .filters{display:flex;flex-direction:row;position:relative}.filterable-table-wrapper .filter-wrapper .filters input:focus,.filterable-table-wrapper .filter-wrapper .filters button:focus{border-bottom:4px solid #f37a1f}.filterable-table-wrapper .filter-wrapper .filters .accordion-filter{width:100%}.filterable-table-wrapper .filter-wrapper .filters .accordion-filter .acco-standard{margin:0}.filterable-table-wrapper .filter-wrapper .filters .accordion-filter .acco{border:none}.filterable-table-wrapper .filter-wrapper .filters .accordion-filter .acco--open{overflow:visible}.filterable-table-wrapper .filter-wrapper .filters .accordion-filter .acco__content{transition:none;flex-direction:column}.filterable-table-wrapper .filter-wrapper .filters .accordion-filter .acco[aria-expanded=false] .acco__content{display:none}.filterable-table-wrapper .filter-wrapper .filters .accordion-filter .acco__tab{padding:0;min-height:auto;width:100px;text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2}.filterable-table-wrapper .filter-wrapper .filters .accordion-filter .acco__tab-icon-arrow-down::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-down-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);right:10px;transition:transform 250ms}.acco--open .filterable-table-wrapper .filter-wrapper .filters .accordion-filter .acco__tab-icon-arrow-down::after{transform:rotate(180deg)}.filterable-table-wrapper .filter-wrapper .filters .accordion-filter .acco__tab-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;line-height:1.4}.filterable-table-wrapper .filter-wrapper .filters .search-filter{position:absolute;top:0;right:0;display:flex;width:350px;height:-moz-fit-content;height:fit-content}.filterable-table-wrapper .filter-wrapper .filters .search-filter__input{font-size:18px}.filterable-table-wrapper .filter-wrapper .filters .search-filter__input::-moz-placeholder{color:#000;opacity:1}.filterable-table-wrapper .filter-wrapper .filters .search-filter__input::placeholder{color:#000;opacity:1}.filterable-table-wrapper .filter-wrapper .filters .search-filter__icon{cursor:default}.filterable-table-wrapper .filter-wrapper .selected-filters{display:flex}.filterable-table-wrapper .filter-wrapper .selected-filters .selected-filter__tab{max-width:none}.filterable-table-wrapper .filter-wrapper .selected-filters .selected-filter__tab .btn-inner{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;color:#fff}.filterable-table-wrapper .filter-wrapper .selected-filters .selected-filter__tab::before{width:10px;height:10px;margin-right:8px}.filterable-table__multi-items__wrapper{width:-moz-fit-content;width:fit-content;display:flex;justify-content:center}.filterable-table__delete-wrapper{font-weight:bold}.filterable-table__delete-wrapper>svg{padding-right:10px}.filterable-table__options-button{display:flex;-moz-column-gap:.25rem;column-gap:.25rem}.filterable-table__options-flyout{position:relative}.filterable-table__options-wrapper{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;position:absolute;top:1.1875rem;left:-1rem;z-index:11;display:flex;flex-direction:column;background-color:var(--color2);border:2px solid var(--color1)}.filterable-table__options-wrapper>*{padding:8px 16px}.filterable-table__options-wrapper>*:hover{background-color:#fee2cd !important}table.fix-last-1-columns th:last-child,table.fix-last-1-columns td:last-child{position:sticky;right:-1px}table.table-box-shadow.fix-last-1-columns th:last-child::after,table.table-box-shadow.fix-last-1-columns td:last-child::after{background-image:linear-gradient(to right, rgba(210, 210, 210, 0), rgba(210, 210, 210, 0.5));left:-15px;content:"";width:15px;position:absolute;bottom:-1px;top:-1px}.horizontal-graph-wrapper{display:flex;flex-direction:column}.horizontal-graph-wrapper__label{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2}.horizontal-graph-wrapper__graph{display:flex;flex-direction:row;width:100%;margin-top:20px}.horizontal-graph-wrapper__graph .graph-element{height:20px}.horizontal-graph-wrapper__elements-description{display:flex;flex-direction:row;margin-top:30px}.horizontal-graph-wrapper__elements-description .graph-element{display:flex;margin-right:30px}.horizontal-graph-wrapper__elements-description .graph-element__label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;font-size:.875rem;margin:0 10px}.messages-container{z-index:9999;position:fixed;top:130px;right:15%}.messages-container--active{visibility:visible;animation:fadeInMessage 200ms}.messages-container--inactive{visibility:hidden;animation:fadeOutMessage 200ms}.messages-container .generic-message{box-shadow:0 4px 14px 0 rgba(0,0,0,.06);padding:15px;z-index:500}.messages-container .generic-message--success{background:rgba(116,159,74,.2);display:flex;position:relative;margin-bottom:10px}@keyframes fadeInMessage{from{opacity:0}to{opacity:1}}@keyframes fadeOutMessage{from{opacity:1}to{opacity:0}}.messages-container .generic-message--active{visibility:visible;animation:fadeInMessage 200ms}.messages-container .generic-message--inactive{visibility:hidden;animation:fadeOutMessage 200ms}.messages-container .generic-message__icon{display:inline-block;width:22px;height:22px;transform:rotate(45deg)}.messages-container .generic-message__icon-circle-success{background-color:#749f4a;position:absolute;width:1.375rem;height:1.375rem;border-radius:.6875rem;left:0;top:0;z-index:-1}.messages-container .generic-message__icon-success{transform:rotate(315deg);text-align:center;width:13px;height:13px;margin:2px 0 0 2px}.messages-container .generic-message__label{color:#000;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;cursor:default;margin-left:20px}.m_metanav-flyout__container{display:flex}.m_metanav-flyout__container>span{margin-left:10px}.m_metanav-flyout__container .metanav-circle{margin-right:5px}.m_metanav-flyout__container .metanav-circle.label-circle.label-no-icon{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem;font-weight:bold;font-size:.75rem;color:#fff;z-index:1}@media only screen and (min-width: 48rem),print{.m_metanav-flyout__container .metanav-circle.label-circle.label-no-icon{font-size:.9375rem}}@media only screen and (max-width: 47.9375rem){.m_metanav-flyout__container .impersonated{margin-left:-10px;border:1px solid #ededed}}.m_metanav-flyout__impersonated{align-self:center;margin-left:15px !important}@media only screen and (max-width: 47.9375rem){.m_metanav-flyout__impersonated{margin-left:0 !important}}.m_metanav-flyout__impersonated::after{transform:scaleX(-1)}.stolen-report-form-wrapper{display:flex;flex-direction:column}.stolen-report-form-wrapper .inner-form-wrapper{display:flex;margin-top:10px;padding-bottom:50px;border-bottom:1px solid #b1b1b1}.stolen-report-form-wrapper .inner-form-wrapper .information-wrapper{display:flex;flex-direction:column;width:572px;margin-right:70px;margin-top:30px}.stolen-report-form-wrapper .inner-form-wrapper .information-wrapper .information-header{display:flex;margin-bottom:30px}.stolen-report-form-wrapper .inner-form-wrapper .information-wrapper .information-header .display{display:flex;padding:0 10px;margin-top:10px}.stolen-report-form-wrapper .inner-form-wrapper .information-wrapper .information-header .item{display:flex;margin-right:50px}.stolen-report-form-wrapper .inner-form-wrapper .information-wrapper .header-wrapper{display:flex;justify-content:space-between}.stolen-report-form-wrapper .inner-form-wrapper .information-wrapper .status-details__wrapper{display:flex;flex-direction:column}.stolen-report-form-wrapper .inner-form-wrapper .information-wrapper .status-details__property-name{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;width:120px}.stolen-report-form-wrapper .inner-form-wrapper .information-wrapper .status-details__property-value{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.stolen-report-form-wrapper .inner-form-wrapper .information-wrapper .status-details-row{display:flex;flex-direction:row}.stolen-report-form-wrapper .inner-form-wrapper .information-wrapper .note-wrapper{display:flex;flex-direction:column;margin-bottom:20px;border-radius:0;border:1px solid #b1b1b1;padding:20px}.stolen-report-form-wrapper .inner-form-wrapper .information-wrapper .note-wrapper .note-title-wrapper{display:flex;align-items:center;justify-content:center;width:60px;height:30px;background:#f37a1f;margin-bottom:10px}.stolen-report-form-wrapper .inner-form-wrapper .information-wrapper .note-wrapper .title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.stolen-report-form-wrapper .inner-form-wrapper .side-details-wrapper{display:flex;flex-direction:column;width:33%;height:auto}.stolen-report-form-wrapper .inner-form-wrapper .side-details-wrapper .group{display:flex;flex-direction:column;border:1px solid #b1b1b1;background-color:#ededed;width:340px}.stolen-report-form-wrapper .inner-form-wrapper .side-details-wrapper .group .header{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;height:50px;padding-left:20px;border-bottom:1px solid #b1b1b1;display:flex;align-items:center;margin-bottom:10px}.stolen-report-form-wrapper .inner-form-wrapper .side-details-wrapper .group .details{padding:0 20px;margin:10px 0}.stolen-report-form-wrapper .inner-form-wrapper .side-details-wrapper .group .details .accordion{width:auto;margin-top:0;margin-bottom:0}.stolen-report-form-wrapper .inner-form-wrapper .side-details-wrapper .group .details .accordion .acco-standard{margin:0}.stolen-report-form-wrapper .inner-form-wrapper .side-details-wrapper .group .details .accordion .acco{border:none}.stolen-report-form-wrapper .inner-form-wrapper .side-details-wrapper .group .details .accordion .acco__tab{background-color:#ededed;padding:0}.stolen-report-form-wrapper .inner-form-wrapper .side-details-wrapper .group .details .accordion .acco__tab-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;font-size:.6875rem}.stolen-report-form-wrapper .inner-form-wrapper .side-details-wrapper .group .footer{margin:0 20px 20px;padding-top:10px}.stolen-report-form-wrapper .inner-form-wrapper .side-details-wrapper .group .separator{border-top:1px solid #b1b1b1;margin:5px 20px}.stolen-report-form-wrapper .inner-form-wrapper .side-details-wrapper .group .button{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;font-size:.6875rem;padding:0}.stolen-report-form-wrapper .inner-form-wrapper .side-details-wrapper .group .button::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.stolen-report-form-wrapper .inner-form-wrapper .side-details-wrapper .group .button:hover::after{transform:translate3d(10px, -50%, 0)}.stolen-report-form-wrapper .inner-form-wrapper .side-details-wrapper .group__last{margin-top:30px}.stolen-report-form-wrapper .stolen-report-form-details-wrapper{display:flex;flex-direction:column}.stolen-report-form-wrapper .stolen-report-form-details-wrapper .display{display:flex;flex-wrap:wrap}.stolen-report-form-wrapper .stolen-report-form-details-wrapper .display .item{width:100%;height:40px}.stolen-report-form-wrapper .button-section{margin-top:40px;margin-bottom:40px;display:flex;flex-direction:column}.stolen-report-form-wrapper .button-section .buttons-wrapper{display:flex;flex-direction:row;justify-content:flex-end}.stolen-report-form-wrapper .button-section .buttons-wrapper .close-button{margin-right:20px}.stolen-report-form-wrapper .footer-wrapper{margin-top:30px}.stolen-report-form-wrapper .footer-wrapper .input-wrapper{display:flex;flex-direction:column}.stolen-report-form-wrapper .footer-wrapper .input-wrapper__section{display:flex;margin-top:20px}.stolen-report-form-wrapper .footer-wrapper .input-wrapper__section .input{display:flex;flex-direction:column;width:100%}.stolen-report-form-wrapper .footer-wrapper .input-wrapper__section .input .input-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;align-items:flex-end;margin-bottom:10px}.stolen-report-form-wrapper .footer-wrapper .input-wrapper__section .input-text{width:100%}.stolen-report-form-wrapper .footer-wrapper .input-wrapper__section .textarea-input{display:flex;outline:none;padding:20px;min-height:110px;min-width:100%;resize:none}.stolen-report-form-wrapper .footer-wrapper .input-wrapper__section .textarea-input:focus{border-bottom:4px solid #f37a1f}.stolen-report-form-wrapper .footer-wrapper .section-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;height:18px;margin-bottom:30px}.stolen-report-form-information-wrapper{display:flex;flex-direction:column;padding-bottom:40px}.stolen-report-form-information-wrapper input:focus{border-bottom:4px solid #f37a1f}.stolen-report-form-information-wrapper .section-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;height:18px;margin-bottom:30px}.stolen-report-form-information-wrapper .calendar-icon{background-image:url(stihl-styles/resources/icons/icon-calendar-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:var(--svg-filter-invert, none);width:50px;height:50px}.stolen-report-form-information-wrapper .data-input-formfield{display:flex;flex-direction:column}.stolen-report-form-information-wrapper .image-calendar-wrapper{display:flex;flex-direction:row;align-items:center;background-color:#ededed;height:60px}.stolen-report-form-information-wrapper .datepicker{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.stolen-report-form-information-wrapper .datepicker:focus{border:none}.stolen-report-form-information-wrapper .datepicker-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;align-items:flex-end;margin-bottom:10px}.stolen-report-form-information-wrapper .reference-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:10px}.stolen-report-form-information-wrapper .info-display{display:flex;flex-direction:row;align-items:flex-end}.stolen-report-form-information-wrapper .datepicker-input-wrapper{width:188px;margin-right:20px}.stolen-report-form-information-wrapper .reference-input-wrapper{display:flex;flex-direction:column;width:372px}.stolen-report-form-information-wrapper .date-picker-error-message{position:absolute}.stolen-report-form-information-wrapper .field-margin{margin-right:20px}.stolen-report-form-information-wrapper .disabled-field{display:flex;flex-direction:column}.stolen-report-form-information-wrapper .disabled-field__date{margin-right:20px;width:200px}.stolen-report-form-information-wrapper .disabled-field__reference{width:372px}.stolen-report-form-section-wrapper{display:flex;flex-direction:column;width:100%}.stolen-report-form-section-wrapper input:focus,.stolen-report-form-section-wrapper button:focus{border-bottom:4px solid #f37a1f}.stolen-report-form-section-wrapper .section-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;height:18px;margin-bottom:30px;padding-top:40px}.stolen-report-form-section-wrapper .title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;height:50px;padding-left:10px;border-bottom:1px solid #b1b1b1;display:flex;align-items:center;margin-bottom:20px}.stolen-report-form-section-wrapper .input-wrapper{display:flex;flex-direction:column}.stolen-report-form-section-wrapper .input-wrapper__section{display:flex}.stolen-report-form-section-wrapper .input-wrapper__section .input{display:flex;flex-direction:column;width:600px}.stolen-report-form-section-wrapper .input-wrapper__section .input .input-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;align-items:flex-end;margin-bottom:10px}.stolen-report-form-section-wrapper .input-wrapper__section .form-field{margin-top:20px;grid-template:[row1-start] "label" [row1-end] [row2-start] "input" [row2-end]/1fr}.stolen-report-form-section-wrapper .input-wrapper__section .form-field__label-text{margin-left:0}.stolen-report-form-section-wrapper .input-wrapper__section .secondInput{margin-top:30px}.stolen-report-form-section-wrapper .input-wrapper__section .input-text{width:100%}.stolen-report-form-section-wrapper .input-wrapper__section .toggle-wrapper{justify-self:center}.stolen-report-form-section-wrapper .input-wrapper__section .toggle-wrapper__toggle:focus{margin-bottom:-4px}.stolen-report-form-section-wrapper .input-wrapper__section .textarea-input{display:flex;outline:none;padding:20px;min-height:110px;min-width:100%;resize:none}.stolen-report-form-section-wrapper .input-wrapper__section .textarea-input:focus{border-bottom:4px solid #f37a1f}.stolen-report-form-section-wrapper .input-wrapper .details{margin-bottom:50px}.stolen-report-form-section-wrapper .bottom-label{font-size:1rem;margin-top:40px}.check-availability{position:relative;padding-bottom:40px;border-bottom:1px solid #b1b1b1}.check-availability input:focus,.check-availability button:focus{border-bottom:4px solid #f37a1f}.check-availability__header-filled{display:grid;position:relative;box-sizing:border-box;padding-bottom:40px;padding-top:40px;grid-template-columns:repeat(12, 1fr);grid-template-areas:"article article article article qty qty statusEta statusEta prices prices prices trash" "config config config config config config config config config config config config" "msg msg msg msg msg msg msg msg msg msg msg msg" "wrapAddBar wrapAddBar wrapAddBar wrapAddBar wrapAddBar . . . button button button button";grid-column-gap:20px}.check-availability__header-smaller{grid-template-columns:repeat(8, 1fr);align-items:baseline}.check-availability__article{position:relative;grid-area:article;align-items:flex-start}.check-availability__article-input{width:100%}.check-availability__order-quantity{grid-area:qty;margin-top:15px}.check-availability__order-quantity>.qty-select{width:unset}.check-availability__qty-description{text-align:center}.check-availability__statusEta{grid-area:statusEta;margin-top:15px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.check-availability__statusEta-eta{margin-top:13px}.check-availability__prices{grid-area:prices;margin-top:11px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.check-availability__config-bar{grid-area:config;margin-right:20px;margin-top:10px}.check-availability__msg{grid-area:msg;margin-top:10px}.check-availability__prices-box{grid-area:prices;align-self:flex-start;margin-top:8px;margin-left:10px}@media(max-width: 63.9375rem){.check-availability__prices-box{margin-left:0}}.check-availability__prices-box-ul{display:grid}.check-availability__prices-box-li{display:grid;grid-template-columns:60% 40%;justify-items:flex-start;margin-top:4px}.check-availability__prices-box-li:not(:last-child){margin-bottom:5px}.check-availability__prices-box-li-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.check-availability__prices-box-li-value{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;justify-self:flex-end}.check-availability__trashIcon{grid-area:trash;height:65px}.check-availability__check-button{position:relative;background:linear-gradient(to bottom, #000 50%, var(--button-standard-bg-color-hover) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:var(--button-standard-border-color);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center;height:3.75rem;--outline-offset: 2px;width:100%;border:var(--button-standard-border);grid-area:button;padding-left:25px;padding-right:25px;margin-top:20px;margin-left:10px;width:285px;visibility:visible;display:inherit}.check-availability__check-button.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.check-availability__check-button:hover{background-position:0 -100%}}.check-availability__check-button.active{border-color:var(--button-standard-border-color-hover)}@media(hover: hover)and (pointer: fine){.check-availability__check-button:hover{border-color:var(--button-standard-border-color-hover)}}.check-availability__check-button:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.check-availability__check-button.active{color:var(--color2)}@media(hover: hover)and (pointer: fine){.check-availability__check-button:hover{color:var(--color2)}}@media(max-width: 63.9375rem){.check-availability__check-button{width:100%}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.check-availability__check-button:not(.full){min-width:calc(calc(45.5rem / 6) * 2);max-width:calc(calc(45.5rem / 6) * 3)}}@media only screen and (min-width: 64rem){.check-availability__check-button:not(.full){min-width:calc(calc(61.5rem / 12) * 3);max-width:calc(calc(61.5rem / 12) * 4)}}.check-availability__check-button.shrink{min-width:auto}.check-availability__check-button-hidden{display:none;visibility:hidden}.check-availability__article-description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;grid-area:article;margin-left:20px;margin-top:10px;cursor:pointer}.check-availability__article-error-message{margin-top:10px}.check-availability__button{cursor:pointer;text-align:left;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;align-items:center}.check-availability__button:not(:last-child){margin-right:20px}.check-availability__button>svg{margin-right:9px}.check-availability__toggle-button>*>.toggle__label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.check-availability__wrapper-add-buttons{grid-area:wrapAddBar;display:flex;justify-content:flex-end;border-top:1px solid #b1b1b1;border-bottom:1px solid #b1b1b1;padding-top:15px;padding-bottom:15px}.check-availability__wrapper-add-buttons>*:last-child{margin-right:10px}.check-availability__header-empty{display:grid;position:relative;box-sizing:border-box;padding-bottom:40px;padding-top:40px;grid-template-columns:repeat(11, 1fr);grid-template-areas:"emptyArt emptyArt emptyArt emptyArt emptyArt emptyArt emptyQty emptyQty emptybutton emptybutton emptybutton" "msg msg msg msg msg msg msg msg msg msg msg";grid-column-gap:20px}.check-availability__article-empty{position:relative;grid-area:emptyArt;align-items:flex-start}.check-availability__article-empty-input{width:100%}.check-availability__order-quantity-empty{grid-area:emptyQty;margin-top:15px}.check-availability__order-quantity-empty>.qty-select{width:unset}.check-availability__check-button-empty{position:relative;background:linear-gradient(to bottom, #000 50%, var(--button-standard-bg-color-hover) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:var(--button-standard-border-color);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center;height:3.75rem;--outline-offset: 2px;width:100%;border:var(--button-standard-border);grid-area:emptybutton;padding-left:15px;padding-right:15px;width:278px}.check-availability__check-button-empty.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.check-availability__check-button-empty:hover{background-position:0 -100%}}.check-availability__check-button-empty.active{border-color:var(--button-standard-border-color-hover)}@media(hover: hover)and (pointer: fine){.check-availability__check-button-empty:hover{border-color:var(--button-standard-border-color-hover)}}.check-availability__check-button-empty:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.check-availability__check-button-empty.active{color:var(--color2)}@media(hover: hover)and (pointer: fine){.check-availability__check-button-empty:hover{color:var(--color2)}}@media(max-width: 63.9375rem){.check-availability__check-button-empty{width:100%}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.check-availability__check-button-empty:not(.full){min-width:calc(calc(45.5rem / 6) * 2);max-width:calc(calc(45.5rem / 6) * 3)}}@media only screen and (min-width: 64rem){.check-availability__check-button-empty:not(.full){min-width:calc(calc(61.5rem / 12) * 3);max-width:calc(calc(61.5rem / 12) * 4)}}.check-availability__check-button-empty.shrink{min-width:auto}.check-availability__bold{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.m_document-detail__title_bar{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:60px}.m_document-detail__title_bar-date{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-size:1.125rem;text-transform:capitalize}@media only screen and (min-width: 48rem),print{.m_document-detail__title_bar-date{font-size:1.375rem}}@media only screen and (min-width: 48rem),print{.m_document-detail__title_bar-date{font-size:1.125rem}}.m_document-detail__request-copy-wrapper{cursor:pointer}.m_document-detail__request-copy-wrapper .inner-elements{display:flex}.m_document-detail__request-copy-wrapper .inner-elements>*{margin-right:10px}.m_document-detail__container{display:flex;margin-bottom:80px;justify-content:space-between}@media only screen and (max-width: 47.9375rem){.m_document-detail__container{flex-direction:column}}.m_document-detail__addresses{margin-bottom:25px}.m_document-detail__bank-information{margin-top:25px;margin-bottom:25px}.m_document-detail__view-document{margin-top:25px}.m_document-detail__left{padding-right:60px;width:542px}@media only screen and (max-width: 47.9375rem){.m_document-detail__left{padding-bottom:30px}}.m_document-detail__left-header{display:flex;flex-flow:row wrap;width:100%;margin-bottom:30px}.m_document-detail__left-header>div{width:50%}@media(max-width: 63.9375rem){.m_document-detail__left-header>div{width:100%;padding-bottom:30px}}@media only screen and (min-width: 48rem),print{.m_document-detail__left-header>div:not(:nth-child(-1n+2)){padding-top:40px}}.m_document-detail__shipping-details>h3{margin:0 0 16px;width:100%}.m_document-detail__shipping-details>*{display:flex;flex-direction:column;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.m_document-detail__shipping-details-courier-tracking{cursor:pointer;text-align:left;width:-moz-fit-content;width:fit-content;white-space:nowrap;display:block}.m_document-detail__shipping-details-courier-tracking.highlight:hover{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow)}.m_document-detail__shipping-details-courier-tracking.no-pointer{cursor:unset}.m_document-detail__order_information-container{border-radius:0;border:1px solid #b1b1b1}@media only screen and (min-width: 48rem),print{.m_document-detail__order_information-container{width:382px}}.m_document-detail__order_information-header{background:#ededed;padding-top:20px;padding-bottom:20px}.m_document-detail__order_information-header>:last-child{margin:0 30px}.m_document-detail__order_information-header-element{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;justify-content:space-between;margin:0 30px 14px}.m_document-detail__order_information-header-element .label{text-align:left;white-space:nowrap}.m_document-detail__order_information-header-element .value{width:50%;text-align:right}.m_document-detail__order_information-header-element.order-information{margin:0 30px 20px;align-items:center}.m_document-detail__order_information-header-element-status-partially{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;background:#fee2cd;padding:5px}.m_document-detail__order_information-header-element-document-kind{display:flex;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;justify-content:flex-end}.m_document-detail__order_information-header-element-document-kind .obsolete-date{margin-top:5px;margin-left:7px}.m_document-detail__order_information-header-element-document-kind .strike{text-decoration:line-through}.m_document-detail__order_information-header-element-document-kind.rma_detail__wrongly-delivered-item-comment{justify-content:start}.m_document-detail__order_information-body{width:100%}.m_document-detail__order_information-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin:20px 30px;padding-bottom:20px;border-bottom:1px solid #b1b1b1}.m_document-detail__left-body{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem;margin-bottom:30px}@media only screen and (min-width: 48rem),print{.m_document-detail__left-body{font-size:.9375rem}}.m_document-detail__download_all_documents{display:flex;justify-content:flex-start;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;cursor:pointer;width:-moz-fit-content;width:fit-content}.m_document-detail__download_all_documents svg{margin-right:10px}.m_document-detail__accordion_title-container{display:flex;flex-direction:row;width:100%;align-items:baseline;height:30px}.m_document-detail__accordion_title-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin-right:15px;height:100%}.m_document-detail__accordion_title-items{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;height:100%}.m_document-detail__accordion-container .acco__tab{padding:20px 45px 5px 0}.m_document-detail__accordion-container .acco__content{display:block;transition:height 80ms}.m_document-detail__accordion-container .acco__inner{flex-direction:column}.m_document-detail__footer_bar{margin-top:40px}.m_document-detail__footer_bar-buttons{display:flex;align-items:center;flex-flow:wrap;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.m_document-detail__footer_bar-buttons>div{display:flex;align-items:center;margin-right:30px;margin-bottom:20px;cursor:pointer}.m_document-detail__footer_bar-buttons>div>span{margin-left:10px}@media only screen and (max-width: 47.9375rem){.m_document-detail__footer_bar-buttons>div{margin-bottom:20px}}@media only screen and (max-width: 47.9375rem){.m_document-detail__footer_bar-buttons{flex-direction:column;align-items:flex-start}}.m_document-detail-entry{display:grid;margin-top:30px;margin-bottom:30px;gap:5px 20px;grid-template-columns:50px 200px 220px 90px 1fr 100px;grid-template-areas:"entry details quantity-indicator tax-code prices price" ". kit kit kit kit ."}@media only screen and (max-width: 47.9375rem){.m_document-detail-entry{grid-template-columns:50px 1fr;grid-template-areas:"entry details" ". quantity-indicator" ". tax-code" ". prices" ". status" ". bottom-bar" ". price"}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_document-detail-entry{grid-template-columns:50px repeat(2, 1fr) 150px;grid-template-areas:"entry details tax-code price" ". quantity-indicator prices ." "bottom-bar bottom-bar bottom-bar status"}}.m_document-detail-entry__wrapper{margin-bottom:0 !important}.m_document-detail-entry__product_number{grid-area:entry;justify-content:flex-start;display:flex}.m_document-detail-entry__product_details{grid-area:details;justify-content:flex-start;display:flex;flex-direction:column}.m_document-detail-entry__product_details .article-number{height:25px;align-items:flex-end}.m_document-detail-entry__product_tax_code{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;grid-area:tax-code;display:flex}.m_document-detail-entry__product_tax_code_label{flex-basis:70%}.m_document-detail-entry__product_tax_code_value{flex-basis:30%}.m_document-detail-entry__product_quantity_indicator{grid-area:quantity-indicator}.m_document-detail-entry__product_quantity_indicator-ul{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;width:100%;flex-flow:row wrap;min-width:50%;max-width:100%}@media(max-width: 63.9375rem){.m_document-detail-entry__product_quantity_indicator-ul{justify-content:flex-start}}.m_document-detail-entry__product_quantity_indicator-li-label{flex-basis:50%;max-width:50%;padding-bottom:10px}.m_document-detail-entry__product_quantity_indicator-li-value{flex-basis:20%;padding-right:10px}.m_document-detail-entry__product_quantity_indicator-li-pieces{flex-basis:20%}.m_document-detail-entry__product_quantity_indicator-order-position-number{display:flex;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:10px}.m_document-detail-entry__product_quantity_indicator-order-position-number-label{flex-basis:50%}.m_document-detail-entry__product_quantity_indicator-order-position-number-value{flex-basis:50%;text-align:flex-start}.m_document-detail-entry__product_prices{grid-area:prices;justify-content:center;display:flex}@media(max-width: 63.9375rem){.m_document-detail-entry__product_prices{justify-content:flex-start}}.m_document-detail-entry__product_prices-li{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;padding-bottom:13px;display:flex;justify-content:space-between}.m_document-detail-entry__product_prices-li-value{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-left:20px}.m_document-detail-entry__product_price{grid-area:price;display:flex;justify-content:flex-end}.m_document-detail-entry__product_price>span{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.m_document-detail-entry__product_eta{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;grid-area:eta;display:flex;justify-content:center}@media only screen and (max-width: 47.9375rem){.m_document-detail-entry__product_eta{justify-content:flex-start}}.m_document-detail-entry__product_status{grid-area:status;justify-content:flex-end;display:flex;align-items:center;flex-basis:20%}@media only screen and (max-width: 47.9375rem){.m_document-detail-entry__product_status{justify-content:flex-start}}.m_document-detail-entry__product_status-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;background:#f5ddcc;padding:5px}.m_document-detail-entry__product_comment{display:flex;align-items:center;padding-bottom:30px;padding-left:65px}.m_document-detail-entry__product_comment span{margin-left:10px}.m_document-detail-entry__product__bottom_bar_wrapper{display:flex;align-items:flex-start}.m_document-detail-entry__product_bottom_bar{display:flex;align-items:center;width:100%;padding-bottom:30px;padding-left:65px;flex-basis:80%}.m_document-detail-entry__product_bottom_bar-buttons{display:flex;align-items:center;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.m_document-detail-entry__product_bottom_bar-buttons>div{display:flex;align-items:center;margin-right:30px}.m_document-detail-entry__product_bottom_bar-buttons>div>span{margin-left:10px}@media only screen and (max-width: 47.9375rem){.m_document-detail-entry__product_bottom_bar-buttons>div{margin-bottom:20px}}@media only screen and (max-width: 47.9375rem){.m_document-detail-entry__product_bottom_bar-buttons{flex-direction:column;align-items:flex-start}}.m_document-detail-entry__product_bottom_bar-button-lite{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;cursor:pointer}.m_document-detail-entry__product_bottom_bar-button-lite-disabled{pointer-events:none;opacity:.5}.m_document-detail-entry__product_bottom_bar-button-lite-enabled{pointer-events:auto;opacity:1}.button-icon{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;margin-top:50px;margin-bottom:50px;margin-left:10px}@media only screen and (min-width: 48rem),print{.button-icon{margin-top:60px;margin-bottom:60px}}.serial-number-overlay__container{margin-bottom:30px}.serial-number-overlay__header{display:flex;flex-direction:row;justify-content:space-between;margin-bottom:30px}.serial-number-overlay__header .main-header-element{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;flex-basis:50%;margin-right:10px}.serial-number-overlay__header .element{margin-left:10px}.serial-number-overlay__values-wrapper{display:flex;flex-direction:column}.serial-number-overlay__values-wrapper .element{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.serial-number-overlay__border{border-bottom:1px solid #b1b1b1}.document-details-overlay__container{margin-bottom:30px}.document-details-overlay__header{display:flex;flex-direction:row;justify-content:space-between;margin-bottom:30px}.document-details-overlay__header .main-header-element{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2}.document-details-overlay__header .secondary-header-element{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.document-details-overlay__header .secondary-header-element .text{margin-left:5px}.document-details-overlay__border{border-bottom:1px solid #b1b1b1}.document-overlay-documents__entry-wrapper{display:flex;flex-direction:row;margin-bottom:10px}.document-overlay-documents__entry-wrapper .left{flex-basis:25%;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.document-overlay-documents__entry-wrapper .document_kind{margin-right:5px}.document-overlay-documents__entry-wrapper .right{display:flex;flex-direction:column;flex-basis:75%}.document-overlay-documents__entry-wrapper .item-info{display:flex;flex-direction:row;padding-bottom:5px}.document-overlay-documents__entry-wrapper .element{flex-basis:40%;text-align:center;margin-bottom:5px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;cursor:pointer}.document-overlay-documents__entry-wrapper .last{flex-basis:20%;text-align:right;font-style:normal;text-transform:none;letter-spacing:0;color:#000;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.document-overlay-entry_documents__container{display:flex;flex-direction:row}.document-overlay-entry_documents__container .product-number{flex-basis:10%;justify-content:center;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.document-overlay-entry_documents__container .product-info{display:flex;flex-basis:50%}.document-overlay-entry_documents__info_container{display:flex;flex-basis:40%;flex-direction:column}.document-overlay-entry_documents__info_container .entry-wrapper{display:flex;flex-direction:row;margin-bottom:10px}.document-overlay-entry_documents__info_container .entry-wrapper .left{flex-basis:60%;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.document-overlay-entry_documents__info_container .entry-wrapper .document_kind{margin-right:5px}.document-overlay-entry_documents__info_container .entry-wrapper .right{display:flex;flex-direction:column;flex-basis:40%;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;cursor:pointer}.document-overlay-entry_documents__info_container .entry-wrapper .right .icon-svg{float:right}.document-overlay-entry_documents__info_container .entry-wrapper .element{margin-bottom:10px;text-align:flex-start}.m_document-detail-kitComponent-accordion{grid-area:kit;width:520px}.m_document-detail-kitComponent-accordion .acco-standard{margin:0}.m_document-detail-kitComponent-accordion .acco{border:none}.m_document-detail-kitComponent-accordion .acco__tab{padding:0;width:160px}.m_document-detail-kitComponent-accordion .acco__tab-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.m_document-detail-kitComponent-accordion .acco__tab-icon-arrow-down{background-color:#fff}.m_document-detail-kitComponent-accordion .acco__tab-icon-arrow-down::after{position:static;margin-left:10px;transform:none}.m_document-detail-kitComponent-accordion .acco--open .acco__tab-icon-arrow-down::after{transform:rotate(180deg)}.m_document-detail-kitComponent-accordion .acco__content{flex-direction:row;transition:height 250ms ease-in-out .2s}.m_document-detail-kitComponent-accordion .acco__inner{background-color:#fff}.m_document-detail-kitComponent-accordion-article-kit-bom-list{display:flex;flex-direction:column;width:100%}.m_document-detail-kitComponent-accordion-article-kit-bom-list__item{display:grid;position:relative;box-sizing:border-box;grid-template-columns:repeat(7, 1fr);grid-template-areas:"description description description description quantity availability availability";grid-column-gap:20px;padding-bottom:20px;padding-left:10px}.m_document-detail-kitComponent-accordion-article-kit-bom-list__item .description{grid-area:description;display:flex;flex-direction:column}.m_document-detail-kitComponent-accordion-article-kit-bom-list__item .description__category{margin-top:0}.m_document-detail-kitComponent-accordion-article-kit-bom-list__item .quantity{grid-area:quantity;margin-top:0}.m_document-detail-kitComponent-accordion-article-kit-bom-list__item .quantity__value{margin-right:10px}.m_document-detail-kitComponent-accordion-article-kit-bom-list__item .availability{display:flex;flex-direction:column;grid-area:availability;justify-self:center;margin-left:18px}.m_document-detail-kitComponent-accordion-article-kit-bom-list__item .availability__item{margin-top:0}.document-table-error-overlay__additional-content{margin-top:.75rem}.document-table-error-overlay__additional-content ul{padding-inline-start:40px;-webkit-margin-before:1em;margin-block:1em;-webkit-margin-start:1em;-webkit-margin-after:1em;-webkit-margin-end:1em}.document-table-error-overlay__additional-content ul>li{list-style:disc}.filter-table-wrapper{display:flex;flex-direction:column;margin-top:18px;width:100%}.filter-table-wrapper .filter-section{display:flex;flex-direction:row}.filter-table-wrapper .submit-btn{max-width:226px;margin-top:34px}.filter-table-wrapper .filter{display:flex;flex-direction:column;width:100%;max-width:226px;margin-right:30px}.filter-table-wrapper .filter:last-child{margin-right:0}.filter-table-wrapper .filter__label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.filter-table-wrapper .filter__input{display:flex;flex-direction:column;height:100%;width:100%;margin-top:20px}.filter-table-wrapper .filter__input .input-element{display:flex;margin-bottom:20px;height:60px}.filter-table-wrapper .filter__input .input-element .input{width:100%}.filter-table-wrapper .filter__input .input-element__label{margin:auto 15px auto 0;min-width:40px}.filter-table-wrapper .filter__input .input-element__button{margin-top:14px;width:100%}.filter-table-wrapper .filter__input .input-element__button .results-button{min-width:0;width:100%}.filter-table-wrapper .filter__input .input-element .calendar-wrapper{width:100%;display:flex;flex-direction:row;align-items:center;background-color:#ededed;justify-content:center}.filter-table-wrapper .filter__input .input-element .calendar-wrapper .datepicker{display:flex;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;width:100%;text-align:center;margin-left:10px}.filter-table-wrapper .filter__input .input-element .calendar-wrapper .datepicker:focus{border:none}.filter-table-wrapper .filter__input .input-element .calendar-wrapper .calendar-icon{display:flex;background-image:url(stihl-styles/resources/icons/icon-calendar-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:var(--svg-filter-invert, none);width:50px;height:50px}.filter-table-wrapper .filter__input .input-element .calendar-wrapper .form-field__input{width:100%}.filter-table-wrapper .filter__input .input-element .calendar-wrapper .react-datepicker-popper{z-index:99}.erp-messages-wrapper{width:100%}.erp-messages-wrapper-tooltip{word-break:break-word;max-width:18em}.erp-messages-wrapper__section{margin-bottom:20px}.erp-messages-wrapper__section.grid-layout{margin-bottom:0}.erp-messages-wrapper .erp-message-wrapper{display:flex;width:100%;padding:10px;height:auto}.erp-messages-wrapper .erp-message-wrapper.grid-layout-remove-width{width:unset}.erp-messages-wrapper .erp-message-wrapper.tooltip-remove-width{width:unset}.erp-messages-wrapper .erp-message-wrapper__error{background-color:rgba(212,59,59,.2)}.erp-messages-wrapper .erp-message-wrapper__error-text{color:#d43b3b;padding:0}.erp-messages-wrapper .erp-message-wrapper__information{background-color:#ededed}.erp-messages-wrapper .erp-message-wrapper__warning{background-color:#ededed}.erp-messages-wrapper .erp-message-wrapper__warning-text{padding:10px 0}.erp-messages-wrapper .erp-message-wrapper__information-text{padding:10px 0}.erp-messages-wrapper .message-icon-wrapper{margin-right:15px}.erp-messages-wrapper .message-icon-wrapper .message-icon{height:20px;width:20px}.erp-messages-wrapper .message-icon-wrapper .message-icon__warning{background-color:#f37a1f;border-color:#f37a1f}.erp-messages-wrapper .grid-layout-message{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.erp-messages-wrapper .message{width:100%;font-size:18px;line-height:25px}.shopping-cart-promotion{display:flex;min-height:85px;background-color:#ededed;padding:0 20px 0 0 !important}.shopping-cart-promotion.notification-message{background-color:#f37a1f}.shopping-cart-promotion__icon{display:flex;justify-content:center;background-color:#f37a1f;min-width:36px}.shopping-cart-promotion__icon.notification-icon{border-right:1px #fff solid}.shopping-cart-promotion__image{width:180px}.shopping-cart-promotion__text{padding:21px 20px 12px}.shopping-cart-promotion__text.img{width:620px}.shopping-cart-promotion__text.noimg{width:800px}@media only screen and (max-width: 47.9375rem){.shopping-cart-promotion__text{padding:20px 10px}}.shopping-cart-promotion__text-headline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.shopping-cart-promotion__text-headline.notification-color{color:#fff}.shopping-cart-promotion__text-desc{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin:6px 0 8px}.shopping-cart-promotion__text-desc.notification-color{color:#fff}.shopping-cart-promotion__text-link{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.shopping-cart-promotion__text-link::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.shopping-cart-promotion__text-link:hover::after{transform:translate3d(10px, -50%, 0)}.list-overview-detail__item{margin-bottom:54px}.list-overview-detail__information{margin-bottom:40px;margin-top:40px}.list-overview-detail__text{display:flex}.list-overview-detail__text.options{margin:-15px 0 0 -30px;flex-direction:column}.list-overview-detail__links{display:flex;margin-bottom:40px;justify-content:space-between}.list-overview-detail__links-link{display:flex}.list-overview-detail__icon-bold{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;font-size:.875rem;cursor:pointer;margin-right:20px;align-self:center}.list-overview-detail__icon-bold.padding-reset{padding:unset}.list-overview-detail__count{color:#000;font-weight:bold}.list-overview-detail__btn{min-width:240px !important;max-width:240px !important}.list-overview-detail__product{display:grid;grid-gap:15px 1.25rem;position:relative;box-sizing:border-box;padding:35px 0 27px;border-top:1px solid #b1b1b1;grid-template:[row1-start] ". img info info info qty . status . price price price" auto [row1-end] [row2-start] ". error error error error error error error error error error error" auto [row2-end] [row3-start] "kit kit kit kit kit kit kit kit kit kit kit kit" auto [row3-end] [row4-start] ". delete delete delete delete delete delete . . . . ." auto [row4-end];grid-template-columns:repeat(12, 1fr);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.list-overview-detail__product-last{border-bottom:1px solid #b1b1b1}.list-overview-detail__img{position:relative;width:106px;height:67px}.list-overview-detail__img-box{grid-area:img;margin-left:-30px}.list-overview-detail__img picture{position:absolute;inset:0}.list-overview-detail__img picture>img{height:100%;width:100%;-o-object-fit:scale-down;object-fit:scale-down}.list-overview-detail__detail{grid-area:info;padding-top:10px}.list-overview-detail__detail-name{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;display:block;margin-bottom:15px}.list-overview-detail__detail-time{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-right:15px;margin-bottom:30px}.list-overview-detail__detail-icon{margin-right:10px}.list-overview-detail__detail-icon-text{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;font-size:.875rem;margin-right:20px;margin-top:2px}.list-overview-detail__detail-text{display:flex}.list-overview-detail__qty{grid-area:qty}.list-overview-detail__qty-text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-top:10px;text-align:center}.list-overview-detail__qty-read-only{width:140px;justify-content:center;display:flex;align-items:center;height:45px;font-weight:bold}.list-overview-detail__status{grid-area:status;width:-moz-max-content;width:max-content;position:relative;max-width:180px}.list-overview-detail__status-text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.list-overview-detail__status-text::after{position:absolute;left:-22px;top:10%;transform:translateY(-50%)}.product-status__item.stock .list-overview-detail__status-text::after{width:12px;height:12px;border-radius:100%;content:""}.product-status__item.in-stock .list-overview-detail__status-text::after{background:#749f4a}.list-overview-detail__desc{grid-area:desc;width:-moz-max-content;width:max-content;margin-bottom:10px}.list-overview-detail__price{margin-bottom:10px}.list-overview-detail__price.bold{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem;font-weight:bold;font-size:1rem}@media only screen and (min-width: 48rem),print{.list-overview-detail__price.bold{font-size:.9375rem}}.list-overview-detail__total{grid-area:total;margin-bottom:10px;width:-moz-max-content;width:max-content;text-align:right}.list-overview-detail__messages{grid-area:error}.list-overview-detail__kit{grid-area:kit;margin-left:37px}.list-overview-detail__offer{grid-area:offer;color:#fff;display:flex;min-height:84px;height:auto;margin-bottom:15px;padding:0 20px 0 0 !important;background-color:#f37a1f}.list-overview-detail__offer-symbol{display:flex;width:36px;position:relative;border-right:1px #fff solid}.list-overview-detail__offer-symbol-percent{width:46%;height:40%;position:absolute;bottom:0;right:0;transform:translate(-50%, -50%)}.list-overview-detail__offer-text{width:100%;padding:20px 0 0 20px}.list-overview-detail__offer-text-headline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;color:#fff}.list-overview-detail__offer-text-desc{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;color:#fff;margin-top:6px}.list-overview-detail__delete{grid-area:delete}.list-overview-detail__bottom-button{margin-top:40px;float:right}.list-overview-detail__empty{display:flex;flex-direction:column;justify-content:center}.list-overview-detail__empty-img{margin-top:149px;align-self:center}.list-overview-detail__empty-info{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;margin-top:73px;align-self:center}.list-overview-detail__empty-description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;margin-top:23px;align-self:center}.list-overview-detail__empty-btn{min-width:240px !important;max-width:240px !important;margin-top:44px;align-self:center}.list-overview-detail__empty-link{display:flex;margin-top:32px;align-self:center}.list-overview-detail .m_document-detail__order_information-header-element.order-information{margin:0 30px 10px 0}.list-overview-detail .m_document-detail__order_information-header-element-document-kind{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.list-overview-detail .m_document-detail__order_information-body{width:50%}.list-overview-detail__wishlist{margin:0 auto;max-width:61.5rem}.list-overview-detail__wishlist .m_document-detail__order_information-body{width:100%}.list-overview-detail__wishlist .m_document-detail__order_information-body .m_document-detail__order_information-header-element{width:75%}.list-overview-detail__wishlist-cta{display:flex;justify-content:end;width:100%;margin:16px 0}.list-overview-detail__wishlist-button-container{display:flex}.list-item-overlay{width:680px;padding-left:0;padding-right:0}.list-item-overlay>.overlay__content>.overlay__content-inner{width:unset;margin:0;padding:30px 0 80px}.list-item-overlay__center{padding:0 80px}.list-item-overlay__center .product-return__reason>.dropdown-block>.dropdown_list{border-top:3px solid #f37a1f}.list-item-overlay__center .product-return__reason>.dropdown-block>.dropdown_list>.dropdown_list__item :hover{background-color:#000}.list-item-overlay__center .product-return__reason>.dropdown-block>.dropdown_list>.dropdown_list__item .tag_filter-2:hover,.list-item-overlay__center .product-return__reason>.dropdown-block>.dropdown_list>.dropdown_list__item .list-anchor--fixed .list-anchor__link:hover,.list-anchor--fixed .list-item-overlay__center .product-return__reason>.dropdown-block>.dropdown_list>.dropdown_list__item .list-anchor__link:hover{color:#fff}.list-item-overlay__center .product-return__reason .form-field__input ::-moz-placeholder{color:rgba(0,0,0,.6)}.list-item-overlay__center .product-return__reason .form-field__input ::placeholder{color:rgba(0,0,0,.6)}.list-item-overlay__center .form-field__input{width:100%}.list-item-overlay .fixed-height{min-height:215px}.list-item-overlay__headline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;margin-bottom:40px}.list-item-overlay__headline::after{display:block;content:"";background-color:var(--color1)}.list-item-overlay__headline::after{width:23px;height:4px;margin-top:5px}@media only screen and (min-width: 48rem),print{.list-item-overlay__headline::after{width:21px;height:4px;margin-top:6px}}.list-item-overlay__title{display:flex}.list-item-overlay__title>.list-overview__count{margin-right:20px;margin-bottom:60px}.list-item-overlay>.overlay__content>.overlay__content-inner>.tab-bar_header>.tab-bar_header__wrapper>.tab-bar_header__tab{max-width:unset}.list-item-overlay__tabs{border-bottom:1px solid #b1b1b1;padding:0 80px;position:relative;margin:70px 0 30px !important}.list-item-overlay>.overlay__content>.overlay__content-inner>.tab-bar_header>.tab-bar_header__wrapper{position:absolute;bottom:-1px}.list-item-overlay__toggle{margin:32px 20px 41px}.list-item-overlay__btn{min-width:240px !important;max-width:240px !important}.list-item-overlay .btn-position{margin-top:40px}.list-item-overlay__warning-message{margin-top:20px}.list-item-overlay__btn-toggle{margin-top:30px;margin-left:20px}.list-item-overlay__btn-toggle>.toggle__label{font-size:.875rem}.upload-overlay-view__loader>div{margin-left:20px;margin-right:20px;margin-top:45px}.upload-overlay-view__container{width:680px}.upload-overlay-view>.overlay__content>.overlay__content-inner{padding:0 80px 80px;margin-top:30px;width:unset}.upload-overlay-view__headline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;margin-bottom:40px}.upload-overlay-view__headline::after{display:block;content:"";background-color:var(--color1)}.upload-overlay-view__headline::after{width:23px;height:4px;margin-top:5px}@media only screen and (min-width: 48rem),print{.upload-overlay-view__headline::after{width:21px;height:4px;margin-top:6px}}.upload-overlay-view__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:15px}.upload-overlay-view__choose{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;color:#b1b1b1}.upload-overlay-view__choose-icon{margin-right:5px;vertical-align:text-bottom}.upload-overlay-view__dragDrop-icon{vertical-align:middle}.upload-overlay-view__dragDrop-text{margin-right:10px}.upload-overlay-view-temporary{background-color:#f37a1f !important}.upload-overlay-view__file{display:flex;margin-bottom:20px;position:relative}.upload-overlay-view__file-csv{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;background-color:#000;color:#fff;height:24px;width:47px;display:flex;justify-content:center;align-items:center;padding-top:2px}.upload-overlay-view__file-name{margin:0 10px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;align-self:flex-end}.upload-overlay-view__file-delete{left:136px;top:4px}.upload-overlay-view__showCsv{display:flex;margin:30px 0}.upload-overlay-view__showCsv-text{margin-left:10px;text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;font-size:.875rem}.upload-overlay-view__showCsv-icon{transform:rotate(180deg)}.upload-overlay-view__btn{min-width:240px !important;max-width:240px !important}.upload-overlay-view__upload-file{margin-bottom:20px}.upload-overlay-view__button-label{color:#000}.upload-overlay-view__drag-n-drop{cursor:pointer;margin-bottom:60px}.upload-overlay-view__dropdown{display:flex;flex-direction:column;margin-bottom:20px}.upload-overlay-view__dropdown .dropdown-inner{display:block;min-width:unset;margin-bottom:20px}.upload-overlay-view__dropdown .dropdown-inner>input{width:100%;text-overflow:ellipsis;padding-right:40px}.upload-overlay-view__dropdown .button-section{display:flex;flex-direction:row;margin-bottom:20px;margin-left:5px}.upload-overlay-view__dropdown .button-wrapper:not(:last-child){margin-right:30px}.upload-overlay-view__dropdown .button-content{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:flex;align-items:center}.upload-overlay-view__dropdown .button-content>svg{margin-right:10px}.upload-overlay-view__dropdown .button-content>span{padding-top:1px}.free-promotion-bar{display:flex;min-height:105px}.free-promotion-bar__symbol{min-width:36px;background:#f37a1f;display:flex;justify-content:center}.free-promotion-bar__symbol-percent{align-self:center}.free-promotion-bar__text{width:100%;padding:20px;background:#ededed}@media only screen and (min-width: 48rem),print{.free-promotion-bar__text{padding:20px 73px 20px 20px}}.free-promotion-bar__text-headline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.free-promotion-bar__text-desc{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-top:6px}.shopping-cart-promotion-block{display:flex;width:100%}.shopping-cart-promotion-block__container{min-height:308px;width:308px;position:relative}.shopping-cart-promotion-block__container:not(:last-child){margin-right:20px}.shopping-cart-promotion-block__image{height:140px;width:100%}.shopping-cart-promotion-block__icon{background-color:#f37a1f;width:50px;height:50px;position:absolute;right:0;top:0;display:flex;justify-content:center;z-index:99}.shopping-cart-promotion-block__icon-percent{align-self:center}.shopping-cart-promotion-block__text{padding:20px;background-color:#ededed}.shopping-cart-promotion-block__text.noImg{padding:30px 20px 25px}.shopping-cart-promotion-block__text.noImg .shopping-cart-promotion-block__text-headline{width:220px}.shopping-cart-promotion-block__text-headline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;-webkit-hyphens:unset;hyphens:unset;word-break:break-all}.shopping-cart-promotion-block__text-desc{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin:6px 0}.shopping-cart-promotion-block__text-link{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.shopping-cart-promotion-block__text-link::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.shopping-cart-promotion-block__text-link:hover::after{transform:translate3d(10px, -50%, 0)}.quick-links{background-color:#fff;min-height:75px;width:1044px;border:1px solid #000;position:relative}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.quick-links{width:unset;overflow-y:auto}}@media only screen and (max-width: 47.9375rem){.quick-links{width:unset}}.quick-links__links{display:flex;align-items:center;padding:30px 0}@media only screen and (max-width: 47.9375rem){.quick-links__links{flex-direction:column;padding:unset;align-items:unset}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.quick-links__links{width:-moz-max-content;width:max-content}}.quick-links__links-link{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;font-size:.875rem;padding-left:16px}.quick-links__links-link::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.quick-links__links-link:hover::after{transform:translate3d(10px, -50%, 0)}@media only screen and (min-width: 48rem),print{.quick-links__links-link:first-child{padding-left:30px}}.quick-links__links-link::after{width:20px}@media only screen and (max-width: 47.9375rem){.quick-links__links-link{padding:24px 0 0 20px}.quick-links__links-link:last-child{padding-bottom:24px}.quick-links__links-link::after{width:20px;top:unset;left:unset;margin-top:7px}}.quick-links__edit{background-color:#000;border-radius:100%;width:40px;height:40px;position:absolute;right:-20px;top:25%;z-index:999}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.quick-links__edit{box-shadow:-15px 0 25px 25px #fff;position:fixed;right:10px;top:65px}}@media only screen and (max-width: 47.9375rem){.quick-links__edit{bottom:12px;right:12px;top:unset}}.quick-links__edit-icon{padding:11px}.promotions-bundle{overflow:hidden}.promotions-bundle__summary{display:flex;flex-direction:column;justify-content:flex-end;margin-top:20px;max-width:100%}@media only screen and (min-width: 48rem){.promotions-bundle__summary{margin-top:30px}}.promotions-bundle__price-summary{display:flex;flex-direction:column;align-items:flex-end;width:100%}.promotions-bundle__amount{padding-left:8px;flex-shrink:0}.promotions-bundle__amount--discount{color:#f37a1f}.promotions-bundle__total{display:flex;justify-content:space-between;align-items:center;width:100%}.promotions-bundle__buy{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25;display:flex;align-items:flex-end;justify-content:flex-end;flex-wrap:wrap;text-align:right;width:100%}@media only screen and (min-width: 48rem),print{.promotions-bundle__buy{font-size:1.625rem;line-height:1.2}}@supports not ((-webkit-hyphens: auto) or (hyphens: auto)){.promotions-bundle__buy span:first-child{word-break:break-word}}.promotions-bundle__rrp{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.promotions-bundle__vat{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.promotions-bundle__vat:not(:empty),.promotions-bundle__rrp:not(:empty){margin-top:5px}.promotions-bundle__rrp-info:not(:empty){margin-top:10px}.promotions-bundle__btn{margin-top:25px}@media only screen and (min-width: 48rem){.promotions-bundle__btn{max-width:335px}}.promotions-bundle__accordion-container{margin-top:20px}.promotions-bundle__accordion-container .acco__inner{padding:0 10px;flex-wrap:wrap}.promotions-bundle__unavailable{margin-top:20px;color:#d43b3b}.promotions-bundle__item{display:flex;width:100%;margin-bottom:10px;box-sizing:border-box}@media only screen and (min-width: 33.125rem)and (max-width: 47.9375rem){.promotions-bundle__item{width:calc(calc(100% / 2) - 1.25rem + (1.25rem / 2));margin-right:1.25rem}.promotions-bundle__item:nth-child(2n){margin-right:0}}@media only screen and (min-width: 48rem),print{.promotions-bundle__item{width:calc(calc(100% / 3) - 1.25rem + (1.25rem / 3));margin-right:1.25rem}.promotions-bundle__item:nth-child(3n){margin-right:0}}.promotions-bundle__shipping{display:flex;justify-content:flex-end;margin-top:6px}.promotions-bundle__product-ingredients p{margin-bottom:20px}.promotions-bundle__product-ingredients a{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow)}.promotions-bundle__product-ingredients-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text-demi),Arial,sans-serif;font-size:1rem}.company-information__info-wrapper{display:flex;flex-direction:column;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.company-information__content-title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;padding-bottom:20px}.company-information__item{margin-bottom:5px}.company-information__item-margin{margin-bottom:15px}.company-information__customer{display:flex;flex-direction:row;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-top:20px}.company-information__request-change{width:20%;display:flex;flex-direction:row;height:50px;align-items:center}.company-information__request-change .label{width:80%;justify-content:center}.company-information__request-change .icon-wrapper{display:flex;width:20%;height:30px;align-items:center;justify-content:flex-start;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.split-pane__parent{display:flex;flex-direction:row;width:80%;justify-content:space-between}.split-pane__item{width:50%}.m_customer-hero{position:relative;height:100%}.m_customer-hero__background{height:100%}.m_customer-hero__background-image{width:100%;height:100%;background-color:#dadada;-o-object-fit:cover;object-fit:cover}.m_customer-hero__content{display:flex;justify-content:center;position:absolute;bottom:50px;width:100%}@media only screen and (min-width: 48rem),print{.m_customer-hero__content{bottom:100px}}@media only screen and (max-width: 47.9375rem){.m_customer-hero__container{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}}@media only screen and (min-width: 48rem),print{.m_customer-hero__container{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_customer-hero__container{width:45.5rem}}@media print{.m_customer-hero__container{width:auto}}@media only screen and (min-width: 48rem)and (min-width: 64rem){.m_customer-hero__container{width:61.5rem}}.m_customer-hero__background-image{height:350px}.m_customer-hero__content{top:72px}@media only screen and (max-width: 47.9375rem){.m_customer-hero__content{top:40px}}.m_customer-hero .customer-info-hero__wrapper{display:flex;flex-direction:column}.m_customer-hero .customer-info-hero__sub-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;color:#fff;margin-bottom:10px}.m_customer-hero .customer-info-hero__main-label{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;margin-bottom:40px}@media only screen and (min-width: 48rem),print{.m_customer-hero .customer-info-hero__main-label{font-size:1.875rem;line-height:1.3}}.m_customer-hero .customer-info-hero__main-label::after{display:block;content:"";background-color:#fff}.m_customer-hero .customer-info-hero__main-label::after{width:23px;height:5px;margin-top:10px;background:#fff}@media only screen and (min-width: 48rem),print{.m_customer-hero .customer-info-hero__main-label::after{width:34px;height:7px;margin-top:15px;background:#fff}}.m_customer-hero .customer-info-hero__button-link{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:flex;flex-direction:row;align-items:center;color:#fff;margin-bottom:30px;cursor:pointer;width:-moz-fit-content;width:fit-content}.m_customer-hero .customer-info-hero__button-link>span{margin-left:10px}.my-account-orders{width:100%}@media only screen and (min-width: 64rem){.my-account-orders{width:50%}}.my-account-orders__headline{display:flex;justify-content:space-between;padding-bottom:20px;border-bottom:1px solid #b1b1b1}.my-account-orders__headline-text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2}.my-account-orders__headline-see{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;align-self:center;margin-right:15px}.my-account-orders__headline-see::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.my-account-orders__headline-see:hover::after{transform:translate3d(10px, -50%, 0)}.my-account-orders__heading{display:flex;width:100%;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;font-size:.875rem;padding:30px 35px 15px 0}.my-account-orders__heading-first{margin-left:20px;width:26%}@media only screen and (max-width: 47.9375rem){.my-account-orders__heading-first{width:28%}}.my-account-orders__heading-first.warranty{width:23.2%}.my-account-orders__heading-second{width:32%}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.my-account-orders__heading-second{width:45%}}@media only screen and (max-width: 47.9375rem){.my-account-orders__heading-second{width:40%}}.my-account-orders__heading-second.warranty{width:34%}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.my-account-orders__heading-second.warranty{width:35%}}.my-account-orders__options{display:flex;padding:20px 0 20px 20px;position:relative}.my-account-orders__options:nth-child(odd){background-color:#ededed}.my-account-orders__options.notifications{padding:34px 0 0}@media only screen and (max-width: 47.9375rem){.my-account-orders__options.notifications{padding-right:30px}}.my-account-orders__options.notifications:nth-child(odd){background-color:unset}.my-account-orders__options-text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;width:27%}@media only screen and (max-width: 47.9375rem){.my-account-orders__options-text{width:30%}}.my-account-orders__options-text.warranty{width:24%}.my-account-orders__options-text.mid{width:34%}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.my-account-orders__options-text.mid{width:46%}}@media only screen and (max-width: 47.9375rem){.my-account-orders__options-text.mid{width:42%}}.my-account-orders__options-text.mid.warranty{width:36%}.my-account-orders__options-status{text-transform:capitalize;font-size:1.125rem;font-weight:bold}.my-account-orders__options-status-text{display:flex;font-weight:normal}.my-account-orders__options-status-text_exclamation{width:20px;height:20px;border-radius:50%;background-color:#f37a1f;margin-right:10px}.my-account-orders__options-status-text_exclamation-icon{padding-left:4px}.my-account-orders__options-status-text_list{background-color:#000;color:#fff;width:32px;height:32px;border-radius:50%;font-weight:normal;text-align:center}.my-account-orders__options-status-text_list-qty{vertical-align:sub}.my-account-orders__options-status-icon{position:absolute;right:20px}.my-account-orders__options-status-icon.notifications{top:56%}@media only screen and (max-width: 47.9375rem){.my-account-orders__options-status-icon{right:2px}}.my-account-orders__options-status.list{width:90%}@media only screen and (max-width: 47.9375rem){.my-account-orders__options-status.list{width:100%}}.my-account-orders__options-status__lists{display:flex;justify-content:space-between}.search-select-product__link,.search-select-measures__link{display:inline-block;position:relative;cursor:pointer;margin-right:36px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text-demi),Arial,sans-serif;font-size:1rem;display:block}.search-select-product__link::after,.search-select-measures__link::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-3-16.svg) no-repeat center/contain;position:absolute;height:1.5rem;width:1.5rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.4375rem, -50%, 0);height:1.5rem;transition:transform .2s;margin-top:-1px}.search-select-product__link:hover::after,.search-select-measures__link:hover::after{transform:translate3d(12px, -50%, 0)}.search-select-product__link::after,.search-select-measures__link::after{margin-top:0;margin-left:5px;left:auto;top:unset;transform:translate3d(5px, 4px, 0)}.search-select-product__link:hover::after,.search-select-measures__link:hover::after{transform:translate3d(10px, 4px, 0)}.search-select-product__search-wrapper{display:flex;flex-direction:row;margin-bottom:40px}.search-select-product__search-wrapper .link{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:block;align-self:center;margin-left:88px}.search-select-product__search-wrapper .link::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.search-select-product__search-wrapper .link:hover::after{transform:translate3d(10px, -50%, 0)}.search-select-product__search-wrapper .link::after{margin-top:0;margin-left:5px;left:auto;top:unset;transform:translate3d(5px, 1px, 0)}.search-select-product__search-wrapper .link:hover::after{transform:translate3d(10px, 1px, 0)}.search-select-product__input-section{display:flex;flex-direction:column;gap:5px}.search-select-product__input-section .input-box{display:flex;flex-direction:row}.search-select-product__input-section .link-box{text-decoration:underline;font-weight:bold}.search-select-product__input-section .input__wrapper{position:relative}.search-select-product__input-section .input__field{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;width:459px}.search-select-product__input-section .input__reset-button{position:absolute;top:20px;right:15px}.search-select-product__input-section .search-button{position:relative;background:linear-gradient(to bottom, #F37A1F 50%, var(--color1) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:rgba(0,0,0,0);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center;height:3.75rem;--outline-offset: 2px;width:100%;width:-moz-fit-content;width:fit-content;padding-right:30px;padding-left:30px}.search-select-product__input-section .search-button.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.search-select-product__input-section .search-button:hover{background-position:0 -100%}}.search-select-product__input-section .search-button.active{border-color:rgba(0,0,0,0)}@media(hover: hover)and (pointer: fine){.search-select-product__input-section .search-button:hover{border-color:rgba(0,0,0,0)}}.search-select-product__input-section .search-button:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.search-select-product__input-section .search-button.active{color:var(--color2)}@media(hover: hover)and (pointer: fine){.search-select-product__input-section .search-button:hover{color:var(--color2)}}@media(max-width: 63.9375rem){.search-select-product__input-section .search-button{width:100%}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.search-select-product__input-section .search-button:not(.full){min-width:calc(calc(45.5rem / 6) * 2);max-width:calc(calc(45.5rem / 6) * 3)}}@media only screen and (min-width: 64rem){.search-select-product__input-section .search-button:not(.full){min-width:calc(calc(61.5rem / 12) * 3);max-width:calc(calc(61.5rem / 12) * 4)}}.search-select-product__input-section .search-button.shrink{min-width:auto}.search-select-product__input-section .search-button:not(.full){min-width:146px}.search-select-product__input-section .search-button>span{margin-left:10px}.search-select-product__info-wrapper{display:grid;grid-template-columns:11.25rem auto;border-bottom:1px solid #ededed;padding-top:1.875rem;padding-bottom:1.875rem;-moz-column-gap:1.875rem;column-gap:1.875rem}.search-select-product__info-wrapper:has(.no-margin-right){-moz-column-gap:0;column-gap:0}.search-select-product__info-wrapper .dealer-service-overlay .content{display:flex;flex-direction:column;margin-bottom:2em}.search-select-product__info-wrapper .dealer-service-overlay .content .header-description-section{text-align:left;display:flex;flex-direction:column;row-gap:.5em;margin-bottom:2em}.search-select-product__info-wrapper .dealer-service-overlay .content .header-description-section .header{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2}.search-select-product__info-wrapper .dealer-service-overlay .content .header-description-section .description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.search-select-product__info-wrapper .dealer-service-overlay .content .items-list{display:flex;flex-direction:column;row-gap:.5em}.search-select-product__info-wrapper .dealer-service-overlay .content .items-list .item{display:flex;-moz-column-gap:.25em;column-gap:.25em;place-content:center left;align-items:center;margin-left:1em}.search-select-product__info-wrapper .dealer-service-overlay .content .items-list .item-serial-number{font-weight:bold;display:flex;-moz-column-gap:.25em;column-gap:.25em;place-content:center center}.search-select-product__info-wrapper .dealer-service-overlay .action-buttons-wrapper{margin-top:3em;display:flex;justify-content:end;align-items:center;-moz-column-gap:1em;column-gap:1em}.search-select-product__info-wrapper .dealer-service-overlay .action-buttons-wrapper .proceed-button-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;cursor:pointer}.search-select-product__info-wrapper .dealer-service-overlay .action-buttons-wrapper .proceed-button-label.disabled{cursor:unset}.search-select-product__info-wrapper .image-section-smaller{max-width:7em}.search-select-product__info-wrapper .image-section{width:11.25rem;height:11.25rem;display:flex;align-items:center;justify-content:center}.search-select-product__info-wrapper .with-border{border:1px solid #dadada}.search-select-product__info-wrapper .info-section-center-aligned{align-self:center}.search-select-product__info-wrapper .info-section{display:flex;flex-direction:column}.search-select-product__info-wrapper .info-section .product-details-area{display:grid;row-gap:1em}.search-select-product__info-wrapper .info-section .product-details-area .serial-number-section{display:flex;align-items:baseline;justify-content:space-between}.search-select-product__info-wrapper .info-section .product-details-area .serial-number-section-label{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;font-weight:bold;margin-bottom:0 !important}.search-select-product__info-wrapper .info-section .product-details-area .serial-number-section-hyperlink{cursor:pointer;text-decoration:underline}.search-select-product__info-wrapper .info-section .product-details-area .serial-number-section-remove-btn{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;display:flex;-moz-column-gap:.5rem;column-gap:.5rem;cursor:pointer;text-transform:uppercase}.search-select-product__info-wrapper .info-section .product-details-area .serial-number-section .serial-number-data-section{display:flex;-moz-column-gap:1.25rem;column-gap:1.25rem;align-items:baseline}.search-select-product__info-wrapper .info-section .product-details-area .serial-number-section .serial-number-data-section .serial-number-error-msg{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text-demi),Arial,sans-serif;font-size:1rem;color:#d43b3b}.search-select-product__info-wrapper .info-section .product-details-area .lifecycle-data-section{display:flex;-moz-column-gap:1rem;column-gap:1rem}.search-select-product__info-wrapper .info-section .product-details-area .lifecycle-data-section-label{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;text-transform:uppercase;padding:.3125rem 1.25rem .1875rem;border:1px solid #000}.search-select-product__info-wrapper .info-section .product-details-area .model-details-section{display:flex;-moz-column-gap:1.25rem;column-gap:1.25rem;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.search-select-product__info-wrapper .info-section .product-details-area .model-details-section__item-container{display:grid}.search-select-product__info-wrapper .info-section .product-details-area .model-details-section__item-container-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text-demi),Arial,sans-serif;font-size:1rem}.search-select-product__info-wrapper .info-section .product-details-area .model-details-section__item-container-text-uppercase{text-transform:uppercase}.search-select-product__info-wrapper .info-section .product-details-area__wrapper{display:flex;flex-direction:row;margin-bottom:40px}.search-select-product__info-wrapper .info-section .product-details-area__left-column,.search-select-product__info-wrapper .info-section .product-details-area__right-column{min-width:362px}.search-select-product__info-wrapper .info-section .product-details-area__left-column .label-area,.search-select-product__info-wrapper .info-section .product-details-area__right-column .label-area{min-width:132px}.search-select-product__info-wrapper .info-section .product-details-area__description-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.search-select-product__info-wrapper .info-section .product-details-area__description-tooltip{position:relative}.search-select-product__info-wrapper .info-section .product-details-area__feature-row{display:flex;flex-direction:row;height:22px;align-items:flex-end}.search-select-product__info-wrapper .info-section .product-details-area__feature-row:not(:last-child){margin-bottom:18px}.search-select-product__info-wrapper .info-section .product-details-area__feature-row:last-child{flex-wrap:wrap;row-gap:.5em;word-break:break-all}.search-select-product__info-wrapper .info-section .product-details-area__feature-row-product-name{display:flex;flex-direction:row;height:22px;align-items:center;margin-bottom:18px}.search-select-product__info-wrapper .info-section .product-details-area__feature-row-highlight{display:flex;flex-direction:row;height:22px;align-items:center}.search-select-product__info-wrapper .info-section .product-details-area__feature-row-highlight:not(:last-child){margin-bottom:18px}.search-select-product__info-wrapper .info-section .product-details-area__feature-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.search-select-product__info-wrapper .info-section .product-details-area__feature-description-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.search-select-product__info-wrapper .info-section .product-details-area__feature-description-tooltip{position:relative}.search-select-product__info-wrapper .info-section .product-details-area__feature-description__tooltip-wrapper{padding:10px}.search-select-product__info-wrapper .info-section .product-details-area__feature-description__tooltip-text{position:absolute;left:50%;padding:20px 50px 20px 20px;transform:translate(-50%, -100%);opacity:1;width:-moz-max-content;width:max-content;box-sizing:border-box;background:#fff;transition:transform 250ms,opacity 250ms,z-index 250ms;z-index:10;top:-25px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.search-select-product__info-wrapper .info-section .product-details-area__feature-description__tooltip-text.close{opacity:0;transform:translate(-50%, -150%) rotate(6deg);transition:transform 250ms 250ms,opacity 250ms 250ms,z-index 250ms 250ms;z-index:-1;pointer-events:none}@media only screen and (max-width: 47.9375rem){.search-select-product__info-wrapper .info-section .product-details-area__feature-description__tooltip-text{width:calc(100vw - (1.25rem * 2))}}.search-select-product__info-wrapper .info-section .product-details-area__feature-description__tooltip-text__link{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;align-self:flex-start;margin-bottom:10px}.search-select-product__info-wrapper .info-section .product-details-area__feature-description__tooltip-text__link::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.search-select-product__info-wrapper .info-section .product-details-area__feature-description__tooltip-text__link:hover::after{transform:translate3d(10px, -50%, 0)}.search-select-product__info-wrapper .info-section .product-details-area__feature-description__tooltip-text__link+a:last-child{margin-bottom:0}.search-select-product__info-wrapper .info-section .product-details-area__feature-description__tooltip-text__close-x{--outline-offset: 2px;border:1px solid var(--button-border);position:relative;background:linear-gradient(to bottom, black 50%, var(--color3) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:var(--button-border);height:1.875rem;width:1.875rem;color:#fff;position:absolute;top:0;right:0}.search-select-product__info-wrapper .info-section .product-details-area__feature-description__tooltip-text__close-x.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.search-select-product__info-wrapper .info-section .product-details-area__feature-description__tooltip-text__close-x:hover{background-position:0 -100%}}.search-select-product__info-wrapper .info-section .product-details-area__feature-description__tooltip-text__close-x.active{border-color:var(--button-border)}@media(hover: hover)and (pointer: fine){.search-select-product__info-wrapper .info-section .product-details-area__feature-description__tooltip-text__close-x:hover{border-color:var(--button-border)}}.search-select-product__info-wrapper .info-section .product-details-area__feature-description__tooltip-text__close-x:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.search-select-product__info-wrapper .info-section .product-details-area__feature-description__tooltip-text__close-x:hover{color:var(--color2)}.search-select-product__info-wrapper .info-section .product-details-area__feature-description__tooltip-text__close-x::after{z-index:1;content:"";background:url(stihl-styles/resources/icons/icon-cross-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none);top:50%;left:50%;transform:translate(-50%, -50%)}.search-select-product__info-wrapper .info-section .product-details-area__feature-description__tooltip-text__close-x:hover::after{-webkit-mask:url(stihl-styles/resources/icons/icon-cross-white-16.svg);mask:url(stihl-styles/resources/icons/icon-cross-white-16.svg);background:var(--icon-btn-hover-color)}.search-select-product__info-wrapper .info-section .product-details-area__feature-description__tooltip-text__inner{display:flex}.column-view .search-select-product__info-wrapper .info-section .product-details-area__feature-description__tooltip-text__inner{flex-direction:column}.search-select-product__info-wrapper .info-section .product-details-area__feature-description__tooltip-text::before{position:absolute;content:" ";left:0;height:20px;width:30%}.search-select-product__info-wrapper .info-section .product-details-area__feature-info{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2}.search-select-product__info-wrapper .info-section .product-details-area__feature-info .customer{display:grid}.search-select-product__info-wrapper .info-section .product-details-area__feature-info-highlight{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;background:#fee2cd;padding:4px 5px 3px}.search-select-product__info-wrapper .info-section .product-link-area{display:flex;flex-direction:column;margin-bottom:30px}.search-select-product__info-wrapper .info-section .product-additional-info-area__wrapper{display:flex;flex-direction:column;border-top:1px solid #b1b1b1;padding-top:30px;margin-bottom:30px}.search-select-product__info-wrapper .info-section .product-additional-info-area__row{display:flex;flex-direction:row;align-items:center}.search-select-product__info-wrapper .info-section .product-additional-info-area__row:not(:last-child){margin-bottom:18px}.search-select-product__info-wrapper .info-section .product-additional-info-area__row.info{align-items:flex-start}.search-select-product__info-wrapper .info-section .product-additional-info-area__info{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;margin-left:10px}.search-select-product__info-wrapper .info-section .dropdown-area{display:flex;flex-direction:row}.search-select-product__info-wrapper .info-section .dropdown-area .dropdown__wrapper{width:430px;margin-right:20px}.search-select-product__info-wrapper .info-section .dropdown-area .dropdown__item{width:100%;display:block;min-width:unset}.search-select-product__info-wrapper .info-section .dropdown-area .dropdown__item>input{width:100%;text-overflow:ellipsis;padding-right:50px}.search-select-product__info-wrapper .info-section .dropdown-area .dropdown__item>div>div>div>button:hover{background-color:#000;color:#fff}.search-select-product__info-wrapper .info-section .dropdown-area .dropdown__item .dropdown-block>div:focus{outline:none !important}.search-select-product__info-wrapper .info-section .dropdown-area .continue-button__wrapper{display:flex;flex-direction:column;width:202px}.search-select-product__info-wrapper .info-section .dropdown-area .continue-button__toggle-section{display:flex;align-items:center;height:60px;margin-bottom:20px}.search-select-product__info-wrapper .info-section .dropdown-area .continue-button__toggle-section .inner-section{height:60px}.search-select-product__info-wrapper .info-section .dropdown-area .continue-button__content{min-width:unset}.search-select-product__selected-actions-wrapper-title{font-size:1rem;font-weight:normal;padding-top:3.5rem}.search-select-product__selected-actions-wrapper__sub-wrapper{display:flex;flex-wrap:wrap;-moz-column-gap:4.0625rem;column-gap:4.0625rem;align-items:baseline;justify-content:flex-start}.search-select-product__selected-actions-wrapper__sub-wrapper-action{display:grid;gap:1.5rem;place-items:stretch center;grid-template-columns:7.5rem;grid-template-rows:7.5rem auto;position:relative}.search-select-product__selected-actions-wrapper__sub-wrapper-action-icon{box-sizing:border-box;border:2px solid #dadada;cursor:pointer;width:100%;display:flex;align-items:center;justify-content:center}.search-select-product__selected-actions-wrapper__sub-wrapper-action-icon-disabled{box-sizing:border-box;border:2px solid #b1b1b1;width:100%;display:flex;align-items:center;justify-content:center}.search-select-product__selected-actions-wrapper__sub-wrapper-action-tooltip{position:absolute}.search-select-product__selected-actions-wrapper__sub-wrapper-action-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;text-align:center;text-transform:uppercase;color:#f37a1f}.search-select-product__selected-actions-wrapper__sub-wrapper-action-label-disabled{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;text-align:center;color:#b1b1b1;text-transform:uppercase;pointer-events:none}.search-select-product-action__wrapper{display:flex;flex-direction:column;width:100%}.search-select-product-action__disabled-line{opacity:.2}.search-select-product-action__section{display:flex;flex-direction:row;align-items:center;margin-bottom:30px;margin-right:30px}.search-select-product-action__section .dropdown__wrapper{width:380px;margin-right:40px}.search-select-product-action__section .dropdown__item{width:100%;display:block;min-width:unset}.search-select-product-action__section .dropdown__item>input{width:100%;text-overflow:ellipsis;padding-right:50px}.search-select-product-action__section .dropdown__item>div>div>div>button:hover{background-color:#000;color:#fff}.search-select-product-action__section .dropdown__item .dropdown-block>div:focus{outline:none !important}.search-select-product-action__section .date-of-sale__wrapper{display:flex;flex-direction:row;align-items:center;width:380px;margin-right:40px}.search-select-product-action__section .date-of-sale__wrapper .calendar-wrapper{display:flex;flex-direction:row;align-items:center;justify-content:space-between;background-color:#ededed;height:60px;width:inherit}.search-select-product-action__section .date-of-sale__wrapper .calendar-wrapper .react-datepicker-wrapper{width:-moz-fit-content;width:fit-content}.search-select-product-action__section .date-of-sale__wrapper .calendar-wrapper .react-datepicker-popper{z-index:500}.search-select-product-action__section .date-of-sale__wrapper .calendar-wrapper .datepicker{display:flex;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;width:100%;margin-left:20px}.search-select-product-action__section .date-of-sale__wrapper .calendar-wrapper .datepicker:focus{border:none}.search-select-product-action__section .date-of-sale__wrapper .calendar-wrapper .calendar-icon{display:flex;background-image:url(stihl-styles/resources/icons/icon-calendar-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:var(--svg-filter-invert, none);width:50px;height:50px}.search-select-product-action__section .date-of-sale__wrapper .calendar-wrapper .form-field__input{width:100%}.search-select-product-action__section .date-of-sale__label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;white-space:nowrap;margin-right:20px}.search-select-product-action__section .customer-type__wrapper{display:flex;flex-direction:row;align-items:center}.search-select-product-action__section .customer-type__label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;white-space:nowrap;margin-right:20px}.search-select-product-action__section .customer-type__dropdown{width:100%;display:block;min-width:unset}.search-select-product-action__section .customer-type__dropdown>input{width:100%}.search-select-product-action__section .customer-type__dropdown>div>div>div>button:hover{background-color:#000;color:#fff}.search-select-product-action__section .customer-type__dropdown .dropdown-block>div:focus{outline:none !important}.search-select-product-action__button-section{display:flex;justify-content:space-between;margin-top:10px;margin-bottom:55px;margin-right:30px}.search-select-product-action__button-section .warranty-end-date__wrapper{display:flex;flex-direction:row;align-items:center}.search-select-product-action__button-section .warranty-end-date__label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;margin-right:20px}.search-select-product-action__button-section .warranty-end-date__value{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.search-select-product-action__button-section>button{width:359px}.search-select-article-tab__wrapper{border-bottom:1px solid #b1b1b1;position:relative;height:60px;width:100%}.search-select-article-tab__content{position:absolute;bottom:-1px}.search-select-product-tab__content{display:flex;flex-direction:column;margin-left:200px;width:100%}.search-select-product-tab__measures-section{margin-bottom:40px}.search-select-measures__row{display:flex;flex-direction:row;align-items:center}.search-select-measures__row:not(:last-child){margin-bottom:18px}.search-select-measures__row.info{align-items:flex-start}.search-select-measures__link{margin-left:10px;white-space:nowrap}.search-select-measures__info{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;margin-left:10px}.image-container-smaller-size{max-width:80% !important}.selected-title{font-size:1.25rem;font-weight:bold;margin-bottom:0;padding-bottom:30px;border-bottom:1px solid #ededed}.dealer-multiple-addresses__wrapper{display:flex;flex-direction:column;margin-bottom:40px}.dealer-multiple-addresses__wrapper .acco{border-bottom:0}.dealer-multiple-addresses__wrapper .acco__inner{display:block}.dealer-multiple-addresses__wrapper .acco__tab{padding-bottom:20px;border-bottom:1px solid #b1b1b1}.dealer-multiple-addresses__title-section{display:flex;flex-direction:row;justify-content:space-between;align-items:center;padding-bottom:20px;border-bottom:1px solid #b1b1b1;margin-bottom:40px}.dealer-multiple-addresses__title-content{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2}.dealer-multiple-addresses__button-section{display:flex;flex-direction:row}.dealer-multiple-addresses__button-wrapper{cursor:pointer}.dealer-multiple-addresses__button-wrapper:not(:last-child){margin-right:20px}.dealer-multiple-addresses__button-content{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:flex;align-items:center}.dealer-multiple-addresses__button-content>svg{margin-right:10px}.dealer-multiple-addresses__content-section{display:grid;grid-template-columns:repeat(3, 1fr);gap:40px 30px}.dealer-multiple-addresses__content-section-impersonation{margin-top:40px;grid-row-gap:30px}.dealer-impersonation-address{border:1px solid #b1b1b1;padding:30px;height:100%;box-sizing:border-box;cursor:pointer}.dealer-impersonation-address--headquarter{background:#ededed}.dealer-impersonation-address__header{display:flex}.dealer-impersonation-address .checkout-step__title.b2b-checkout{margin-bottom:16px}.dealer-impersonation-address__radio{margin:0 9.5px 16px 0;width:17px}.dealer-impersonation-address__badge{display:inline-block;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;background:#fee2cd;padding:5px}.dealer-impersonation-address__badge__icon{margin-right:5px;width:10px}.dealer-impersonation-address__badge svg{transform:scale(-1, 1);transform-origin:center}.dealer-impersonation-address .checkout__addresses-ul{margin-bottom:20px}.dealer-impersonation-address .checkout__addresses-li.customer{margin-bottom:12px}.dealer-impersonation-address .checkout__addresses-li.custom-margin{margin-top:12px;margin-bottom:0}.widget-header{border-bottom:1px solid #b1b1b1}.widget-header__title{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:20px;border-bottom:#b1b1b1}.widget-header__title-text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2}.widget-header__title-link{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;cursor:pointer}.widget-header__title-link>span{margin-right:10px}.widget-header__title-link.payments>svg{vertical-align:sub}.widget-header__title-link.payments:not(:last-child){margin-bottom:6px}.widget-header__title-link.payments:first-child{margin-bottom:6px}.widget-body{margin-top:40px}.widget-body>.loader{position:relative}.b2b-product-details{width:52.8125rem;max-width:100%;border:1px solid #b1b1b1}.b2b-product-details .acco__tab{background-color:#ededed}.b2b-product-details .acco__content{background-color:#ededed}.b2b-product-details .acco__inner{display:block;background-color:#ededed}.b2b-product-details__accordion-title{margin-left:20px}.b2b-product-details__header{display:grid;position:relative;box-sizing:border-box;padding-bottom:30px;padding-top:30px;grid-template-columns:repeat(9, 1fr) minmax(200px, 1fr);grid-template-areas:"check article article article qty qty qty availability availability price" ". error error error error error error error error error" ". kitBom kitBom kitBom kitBom kitBom . . . .";grid-column-gap:1rem;margin-right:20px;margin-left:20px}.b2b-product-details__check{grid-area:check;align-items:flex-start;display:flex;margin-top:7px}.b2b-product-details__header-entry{border-bottom:1px solid #b1b1b1;margin-right:30px;margin-left:20px}.b2b-product-details__article{grid-area:article;align-items:flex-start;margin-top:7px}.b2b-product-details__article-number{margin-bottom:15px}.b2b-product-details__article-cursor-pointer{cursor:pointer}.b2b-product-details__article-cursor-default{cursor:default}.b2b-product-details__article-description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-top:15px}.b2b-product-details__quantity{grid-area:qty;align-items:flex-start}.b2b-product-details__quantity-description{margin-right:44px;margin-top:11px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.b2b-product-details__availability{grid-area:availability;align-items:flex-start}.b2b-product-details__instructions{margin:20px 30px 10px 20px}.b2b-product-details .checkbox.big{grid-gap:1px}.b2b-product-details__prices-box{grid-area:price;align-self:flex-start;margin-top:7px;margin-left:10px}@media(max-width: 63.9375rem){.b2b-product-details__prices-box{margin-left:0}}.b2b-product-details__prices-box-ul{display:grid}.b2b-product-details__prices-box-li{display:grid;grid-template-columns:repeat(2, 1fr);justify-items:flex-start;grid-column-gap:1rem;margin-top:4px}.b2b-product-details__prices-box-li:not(:last-child){margin-bottom:5px}.b2b-product-details__prices-box-li-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;justify-self:flex-end}.b2b-product-details__prices-box-li-value{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;justify-self:flex-start}.b2b-product-details__bottom_bar{display:grid;position:relative;box-sizing:border-box;padding-bottom:20px;padding-top:30px;grid-template-columns:repeat(12, 1fr);grid-template-areas:"addList addList addList addList availability availability availability availability cart cart cart cart" ". kitBom kitBom kitBom kitBom kitBom . . . . . .";grid-column-gap:20px;margin-right:30px}.b2b-product-details__bottom_bar_buttons_top{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #b1b1b1;margin-right:30px;margin-left:20px;height:50px}.b2b-product-details__bottom_bar_top_left{margin-left:10px}.b2b-product-details__bottom_bar_top_right{margin-right:10px;display:flex}.b2b-product-details__addList{grid-area:addList;margin-left:20px}.b2b-product-details__list-link{cursor:pointer;text-align:left;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;align-items:center}.b2b-product-details__list-link:not(:last-child){margin-right:20px}.b2b-product-details__list-link>svg{margin-right:9px}.b2b-product-details__priceAvailability{grid-area:availability;text-align:center}.b2b-product-details__add-cart-btn{grid-area:cart}.b2b-product-details__ETA{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;grid-area:availability;place-self:flex-start center;margin-top:16px}@media(max-width: 63.9375rem){.b2b-product-details__ETA{justify-self:flex-start;margin-top:unset;margin-bottom:32px}}@media only screen and (max-width: 47.9375rem){.b2b-product-details__ETA{margin-bottom:20px;display:flex;flex-direction:row;width:100%}.b2b-product-details__ETA--message{flex:50%}.b2b-product-details__ETA--value{flex:50%}}.b2b-product-details__erp-messages{margin:20px 51px 10px 20px}.b2b-product-details__messages{grid-area:error;margin-top:15px}.b2b-product-details__scc_btn{display:flex;justify-content:flex-end}.b2b-product-details-kitComponent-accordion{grid-area:kitBom}.b2b-product-details-kitComponent-accordion .acco-standard{margin:0;min-width:520px}.b2b-product-details-kitComponent-accordion .acco{border:none}.b2b-product-details-kitComponent-accordion .acco__tab{padding:0;width:160px}.b2b-product-details-kitComponent-accordion .acco__tab-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.b2b-product-details-kitComponent-accordion .acco__tab-icon-arrow-down{background-color:#fff}.b2b-product-details-kitComponent-accordion .acco__tab-icon-arrow-down::after{position:static;margin-left:10px;transform:none}.b2b-product-details-kitComponent-accordion .acco--open .acco__tab-icon-arrow-down::after{transform:rotate(180deg)}.b2b-product-details-kitComponent-accordion .acco__content{flex-direction:row}.b2b-product-details-kitComponent-accordion .acco__inner{background-color:#fff}.b2b-product-details-product-kit-bom-list{display:flex;flex-direction:column;width:100%}.b2b-product-details-product-kit-bom-list__item{display:grid;position:relative;box-sizing:border-box;grid-template-columns:repeat(7, 1fr);grid-template-areas:"description description description description quantity availability availability";grid-column-gap:20px;padding-bottom:20px;padding-left:10px}.b2b-product-details-product-kit-bom-list__item .description{grid-area:description;display:flex;flex-direction:column}.b2b-product-details-product-kit-bom-list__item .description__category{margin-top:0}.b2b-product-details-product-kit-bom-list__item .quantity{grid-area:quantity;margin-top:0}.b2b-product-details-product-kit-bom-list__item .quantity__value{margin-right:10px}.b2b-product-details-product-kit-bom-list__item .availability{display:flex;flex-direction:column;grid-area:availability;justify-self:center;margin-left:18px}.b2b-product-details-product-kit-bom-list__item .availability__item{margin-top:0}.grid-layout-product-kit-bom-list{display:flex;flex-direction:column}.grid-layout-product-kit-bom-list__title{padding:0 16px}.grid-layout-product-kit-bom-list__item{display:flex;position:relative;box-sizing:border-box}.grid-layout-product-kit-bom-list__item .description{padding:10px 16px;display:flex;flex-direction:column;border:1px solid #ededed}.grid-layout-product-kit-bom-list__item .description__category{margin-top:0}.grid-layout-product-kit-bom-list__item .quantity{min-width:60px;padding:10px 16px;border:1px solid #ededed;margin-top:0;display:flex;justify-content:center}.grid-layout-product-kit-bom-list__item .quantity__value{margin-right:10px}.grid-layout-product-kit-bom-list__item .availability{min-width:60px;display:flex;flex-direction:column;padding:10px 16px;border:1px solid #ededed}.grid-layout-product-kit-bom-list__item .availability__item{margin-top:0}.grid-layout-product-kit-bom-list__detail-name{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;font-weight:bold}.grid-layout-product-kit-bom-list-product-pieces{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;font-weight:bold}.grid-layout-product-kit-bom-list__stock-box.product-status{padding:0;border:unset}.backlogs-overview-wrapper{display:flex;flex-direction:column;margin-top:61px}.backlogs-overview-wrapper .backlogs-table-wrapper{overflow-x:auto}.backlogs-overview-wrapper .backlogs-table-wrapper th{background-color:#fff;color:#000;border:none}.backlogs-overview-wrapper .backlogs-table-wrapper .backlogs-table .cell,.backlogs-overview-wrapper .backlogs-table-wrapper .backlogs-table .filterable-table-wrapper .table-wrapper .table .cell-no-border,.filterable-table-wrapper .table-wrapper .table .backlogs-overview-wrapper .backlogs-table-wrapper .backlogs-table .cell-no-border,.backlogs-overview-wrapper .backlogs-table-wrapper .backlogs-table .filterable-table-wrapper .table-wrapper .table-widget .cell-no-border,.filterable-table-wrapper .table-wrapper .table-widget .backlogs-overview-wrapper .backlogs-table-wrapper .backlogs-table .cell-no-border{font-size:.75rem;padding:14px;text-align:center;min-width:100px}.backlogs-overview-wrapper .backlogs-table-wrapper .backlogs-table .cell .cell-header,.backlogs-overview-wrapper .backlogs-table-wrapper .backlogs-table .filterable-table-wrapper .table-wrapper .table .cell-no-border .cell-header,.filterable-table-wrapper .table-wrapper .table .backlogs-overview-wrapper .backlogs-table-wrapper .backlogs-table .cell-no-border .cell-header,.backlogs-overview-wrapper .backlogs-table-wrapper .backlogs-table .filterable-table-wrapper .table-wrapper .table-widget .cell-no-border .cell-header,.filterable-table-wrapper .table-wrapper .table-widget .backlogs-overview-wrapper .backlogs-table-wrapper .backlogs-table .cell-no-border .cell-header{display:flex}.backlogs-overview-wrapper .backlogs-table-wrapper .backlogs-table .cell .cell-header span,.backlogs-overview-wrapper .backlogs-table-wrapper .backlogs-table .filterable-table-wrapper .table-wrapper .table .cell-no-border .cell-header span,.filterable-table-wrapper .table-wrapper .table .backlogs-overview-wrapper .backlogs-table-wrapper .backlogs-table .cell-no-border .cell-header span,.backlogs-overview-wrapper .backlogs-table-wrapper .backlogs-table .filterable-table-wrapper .table-wrapper .table-widget .cell-no-border .cell-header span,.filterable-table-wrapper .table-wrapper .table-widget .backlogs-overview-wrapper .backlogs-table-wrapper .backlogs-table .cell-no-border .cell-header span{width:100%;margin:auto 0}.backlogs-overview-wrapper .backlogs-table-wrapper .backlogs-table .row{cursor:pointer}.backlogs-overview-wrapper .backlogs-table-wrapper .backlogs-table tr:nth-child(even){background-color:#ededed}.backlogs-overview-wrapper .backlogs-table-wrapper .backlogs-table tr:nth-child(odd){background-color:#fff}.backlogs-overview-wrapper .show-more-section{margin:55px auto 120px;width:150px;height:57px}.backlogs-overview-wrapper .show-more-section .show-more-btn{display:flex;flex-direction:column;margin:0 auto}.backlogs-overview-wrapper .show-more-section .show-more-btn__icon{margin:0 auto 10px;background:#000;border-radius:50%;height:32px;width:32px;display:flex;align-items:center}.backlogs-overview-wrapper .show-more-section .show-more-btn__icon svg{margin:0 auto}.backlogs-overview-wrapper .show-more-section .show-more-btn__label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.teaser{display:flex;position:relative;margin-bottom:40px;margin-right:1%}.teaser:nth-child(3n){margin-right:0}.teaser__link{max-width:100%}.teaser__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin-top:20px;margin-bottom:10px}.teaser__description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:30px}.teaser__footer{height:25px}.teaser img{width:315px;height:177px}.teaser .checkout_link{align-items:center;cursor:pointer;position:absolute;bottom:0}.teaser .checkout_link>span{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-left:10px}@media only screen and (max-width: 47.9375rem){.teaser{flex-direction:column;align-items:flex-start;margin-right:0}}@media only screen and (min-width: 48rem),print{.teaser{max-width:32.66%;flex-flow:column}}.category-slider{position:relative;margin-top:40px}@media only screen and (max-width: 47.9375rem){.category-slider{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}}@media only screen and (min-width: 48rem),print{.category-slider{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.category-slider{width:45.5rem}}@media print{.category-slider{width:auto}}@media only screen and (min-width: 48rem)and (min-width: 64rem){.category-slider{width:61.5rem}}@media(max-width: 63.9375rem){.category-slider{width:calc(100vw - 20px);margin-right:unset}}@media only screen and (min-width: 64rem){.category-slider{max-width:calc(100vw - 150px)}}.category-slider .swiper__prev,.category-slider .swiper__next{display:none}@media only screen and (min-width: 64rem){.category-slider .swiper__prev,.category-slider .swiper__next{--outline-offset: 2px;position:relative;background:linear-gradient(to bottom, var(--button-color-state-one) 50%, var(--color3) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:inline-flex;justify-content:center;align-items:center;position:relative;height:2rem;width:2rem;border-radius:50%;color:#fff;display:flex;align-self:center;position:absolute;top:calc(50% - 16px);z-index:10}.category-slider .swiper__prev .icon-svg,.category-slider .swiper__next .icon-svg{fill:#fff}.category-slider .swiper__prev.active,.category-slider .swiper__next.active{background-position:0 -100%}}@media only screen and (min-width: 64rem)and (hover: hover)and (pointer: fine){.category-slider .swiper__prev:hover,.category-slider .swiper__next:hover{background-position:0 -100%}.category-slider .swiper__prev:hover .icon-svg,.category-slider .swiper__next:hover .icon-svg{fill:#000}}@media only screen and (min-width: 64rem){.category-slider .swiper__prev:hover,.category-slider .swiper__next:hover{color:var(--color2)}.ts-body .category-slider .swiper__prev:hover::after,.ts-body .category-slider .swiper__next:hover::after{--svg-filter-invert-white: invert(1);transition:.25s ease}}@media only screen and (min-width: 64rem){.category-slider .swiper__prev svg,.category-slider .swiper__next svg{width:12px}}.category-slider .swiper__prev{left:-50px}.category-slider .swiper__next{right:-50px}.category-slider__allproducts{display:flex;padding:16px;background-color:#ededed;box-sizing:border-box;height:100%}@media only screen and (min-width: 64rem){.category-slider__allproducts{padding-bottom:20px}}.category-slider__link{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;align-self:flex-end}.category-slider__link::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.category-slider__link:hover::after{transform:translate3d(10px, -50%, 0)}.category-slider__element{--outline-offset: -2px;margin:calc((var(--outline-width) + var(--outline-offset))*-1);padding:calc(var(--outline-width) + var(--outline-offset));display:flex;flex-direction:column;justify-content:space-between;height:100%}.category-slider .swiper-slide{--slider-items-per-view: 2.5;width:calc(100%/var(--slider-items-per-view) - 20px);margin-right:20px}@media only screen and (min-width: 48rem),print{.category-slider .swiper-slide{--slider-items-per-view: 4.5}}@media only screen and (min-width: 64rem){.category-slider .swiper-slide{--slider-items-per-view: 5.88}}.category-slider__name{position:relative;display:inline-block;position:relative;cursor:pointer;margin-right:24px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.category-slider__name::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.4375rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.category-slider__name:hover::after{transform:translate3d(12px, -50%, 0)}.category-slider__name span{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.category-slider__image{position:relative;padding-top:calc((4 / 6)*100%);overflow:hidden;font-size:.75rem}.category-slider__image>picture,.category-slider__image>a,.category-slider__image>a>picture{position:absolute;inset:0 0 2px 0}.category-slider__image>picture>img,.category-slider__image>a>img,.category-slider__image>a>picture>img{width:100%;height:100%;-o-object-fit:scale-down;object-fit:scale-down}.category-slider .swiper{position:relative}@media only screen and (min-width: 64rem){.category-slider .swiper-pagination{display:none}}.slider-view{margin-top:30px}.slider-view--static{display:flex;flex-direction:row;align-items:stretch;gap:20px}@media(max-width: 63.9375rem){.slider-view{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem;width:100%}}@media only screen and (max-width: 33.0625rem){.slider-view{width:calc(100vw - 20px);margin-left:0}}@media only screen and (min-width: 64rem){.slider-view{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto;padding:0}}@media only screen and (min-width: 64rem)and (min-width: 48rem)and (max-width: 63.9375rem){.slider-view{width:45.5rem}}@media only screen and (min-width: 64rem)and (min-width: 64rem){.slider-view{width:61.5rem}}.slider-view--with-desktop-controls{padding-bottom:63px}.slider-view__navigation{display:grid;grid-template-columns:repeat(2, 1fr);position:absolute;grid-gap:4px;right:0;top:calc(100% - 32px)}@media only screen and (max-width: 33.0625rem){.ts-body .slider-view__navigation{right:15px}}.slider-view__navigation>*{position:relative;width:32px}.slider-view__content{font-size:.75rem;display:flex;flex-flow:column;overflow:hidden;height:100%}.slider-view__content--static{--flex-basis: 100%;flex:0 1 calc(100%/var(--flex-basis))}.slider-view__content--3,.slider-view__content--4{--flex-basis: 1}@media(min-width: 33.125rem){.slider-view__content--3,.slider-view__content--4{--flex-basis: 2}}@media only screen and (min-width: 48rem),print{.slider-view__content--3{--flex-basis: 3}.slider-view__content--4{--flex-basis: 4}}@media(max-width: 63.9375rem){.slider-view__content--static:last-child{padding-right:0}}.slider-view .swiper .swiper-wrapper{width:calc(100vw - 20px)}@media only screen and (min-width: 33.125rem)and (max-width: 47.9375rem){.slider-view .swiper .swiper-wrapper{width:calc(100vw - 40px);margin-left:0}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.slider-view .swiper .swiper-wrapper{margin-left:0;width:100%}}@media only screen and (min-width: 64rem){.slider-view .swiper .swiper-wrapper{width:100%;margin-left:0}}.slider-view .swiper .swiper-pagination{display:flex;justify-content:center}.slider-view .swiper .swiper-pagination-bullets{margin-top:8px;height:-moz-max-content;height:max-content}.slider-view .swiper .swiper-pagination-bullet{fill:#fff;padding:0 2.5px}.slider-view .swiper .swiper-pagination-bullet svg{width:6px}.slider-view .swiper .swiper-pagination-bullet-active{fill:#f37a1f}@media only screen and (min-width: 64rem){.slider-view .swiper .swiper-pagination{display:none}}.briggs-stratton{position:relative;padding-bottom:40px;border-bottom:1px solid #b1b1b1}.briggs-stratton__container{display:grid;grid-template-columns:repeat(3, 1fr);-moz-column-gap:20px;column-gap:20px}.briggs-stratton__container .input-container{display:flex;flex-direction:column}.briggs-stratton__container .input-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;padding-bottom:10px}.briggs-stratton__container .input{width:100%}.briggs-stratton .disabled-input__entry{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;cursor:unset;border-radius:0;border:1px solid #ededed;height:60px;display:flex;align-items:center;padding:0 20px}.market-service-measures__table .table-wrapper{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;overflow-x:unset}.market-service-measures__table .table-wrapper .cell-text{padding:4px 5px 3px;width:-moz-fit-content;width:fit-content}.market-service-measures__table .table-wrapper .background-coloring{background:#fee2cd}.market-service-measures__table .table-wrapper .title-text{max-width:150px;min-width:150px;white-space:normal}.market-service-measures__table .table-wrapper .wrap-text{white-space:normal}.market-service-measures__tooltip-wrapper{width:130px}.market-service-measures__tooltip-wrapper .tooltip{padding:20px;box-sizing:unset}.market-service-measures__tooltip-text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;white-space:pre-wrap;word-break:break-word}.measures-details__wrapper{display:flex;flex-direction:column}.measures-details__wrapper .top-info-wrapper{display:flex;margin-top:40px;padding-bottom:40px}.measures-details__wrapper .top-info-wrapper .description{flex-basis:70%}.measures-details__wrapper .top-info-wrapper .side-details-wrapper{display:flex;flex-direction:column;height:auto;flex-basis:30%}.measures-details__instructions__display{display:flex;flex-direction:column}.measures-details__instructions__headers-row{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:grid;grid-template-columns:.3fr .2fr .1fr .4fr;width:100%;box-sizing:border-box;margin-bottom:20px;padding-left:15px}.measures-details__instructions__results-row{display:grid;grid-template-columns:.3fr .2fr .1fr .4fr;width:100%;box-sizing:border-box}.measures-details__instructions__row-gray{background-color:#ededed}.measures-details__instructions__row-data-cell-wrapper{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;border-right:1px solid #b1b1b1;align-items:center;word-break:break-all;padding:10px}.measures-details__instructions__row-data-cell-wrapper:last-child{border-right:unset}.measures-details__instructions__with-table-cell{display:flex;justify-content:center;align-items:center;cursor:pointer}.measures-details__instructions__with-table-cell .cell,.measures-details__instructions__with-table-cell .filterable-table-wrapper .table-wrapper .table .cell-no-border,.filterable-table-wrapper .table-wrapper .table .measures-details__instructions__with-table-cell .cell-no-border,.measures-details__instructions__with-table-cell .filterable-table-wrapper .table-wrapper .table-widget .cell-no-border,.filterable-table-wrapper .table-wrapper .table-widget .measures-details__instructions__with-table-cell .cell-no-border{display:flex;align-items:center}.measures-details__description{margin-top:40px}.measures-details__description__text{word-break:break-word}.measures-details__section-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;height:18px;padding-bottom:20px}.measures-details__section-title-wrapper{border-bottom:1px solid #b1b1b1;margin-bottom:30px}.measures-details__buttons-wrapper{display:flex;justify-content:space-between;margin-top:60px}.measures-details__affected-products{margin-bottom:40px}.measures-details__affected-products .no-margin{margin-bottom:0}.measures-details__affected-products__tab .acco__label{margin-left:10px}.measures-details__affected-products__material-numbers-wrapper{display:flex;flex-direction:row;width:100%}.measures-details__affected-products__material-numbers-table-wrapper{display:flex;flex-direction:column;flex-basis:60%;margin-left:10px}.measures-details__affected-products__material-numbers-serials-range{display:flex;flex-direction:column;flex-basis:40%;margin-left:50px}.measures-details__affected-products__material-numbers-serials-range .title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-bottom:20px;padding-left:15px}.measures-details__affected-products__material-numbers-serials-range .values{display:flex;flex-direction:column;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;padding-left:15px}.measures-details__affected-products__headers-row{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:grid;grid-template-columns:.4fr .6fr;width:100%;box-sizing:border-box;margin-bottom:20px;padding-left:15px}.measures-details__affected-products__results-row{display:grid;grid-template-columns:.4fr .6fr;width:100%;box-sizing:border-box}.measures-details__affected-products__row-gray{background-color:#ededed}.measures-details__affected-products__row-data-cell-wrapper{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;border-right:1px solid #b1b1b1;align-items:center;word-break:break-all;padding:10px}.measures-details__affected-products__row-data-cell-wrapper:last-child{border-right:unset}.information-box__container{border-radius:0;border:1px solid #b1b1b1;width:100%}.information-box__header{background:#ededed;padding-top:20px;padding-bottom:20px}.information-box__header>:last-child{margin:0 30px}.information-box__header .element{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;justify-content:space-between;margin:0 30px 14px}.information-box__header .element .label{text-align:left;white-space:nowrap}.information-box__header .element .value{width:50%;text-align:right}.information-box__body{width:100%}.information-box__body .element{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;justify-content:space-between;margin:0 30px 14px}.information-box__body .element .label{font-weight:bold}.information-box__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin:20px 30px 14px;padding-bottom:20px;border-bottom:1px solid #b1b1b1}.step-wrapper{width:100%;margin-left:41px;margin-bottom:60px}.step-wrapper .bottom-buttons{display:flex;margin-top:40px;height:60px}.step-wrapper .bottom-buttons button{margin-right:20px;max-width:240px}.step-wrapper .filterable-table-wrapper__top-margin{margin-top:0}.step-wrapper .filterable-table-wrapper .filter-wrapper .filters .accordion-filter .acco__tab-icon-arrow-down::after{position:static;margin-left:10px;transform:none}.step-wrapper .filterable-table-wrapper .filter-wrapper .filters .accordion-filter .acco--open .acco__tab-icon-arrow-down::after{transform:rotate(180deg)}.rma-document-selection-wrapper .filterable-table-wrapper .table-wrapper .table,.rma-document-selection-wrapper .filterable-table-wrapper .table-wrapper .table-widget{width:100% !important}.rma-document-selection-wrapper .filterable-table-wrapper .table-wrapper .table .cell,.rma-document-selection-wrapper .filterable-table-wrapper .table-wrapper .table-widget .cell,.rma-document-selection-wrapper .filterable-table-wrapper .table-wrapper .table .cell-no-border,.rma-document-selection-wrapper .filterable-table-wrapper .table-wrapper .table-widget .cell-no-border{min-width:unset}.rma-document-selection-wrapper .filterable-table-wrapper .table-wrapper .table .cell .radio-wrapper,.rma-document-selection-wrapper .filterable-table-wrapper .table-wrapper .table-widget .cell .radio-wrapper,.rma-document-selection-wrapper .filterable-table-wrapper .table-wrapper .table .cell-no-border .radio-wrapper,.rma-document-selection-wrapper .filterable-table-wrapper .table-wrapper .table-widget .cell-no-border .radio-wrapper{display:flex;justify-content:center}.rma-document-selection-wrapper .filterable-table-wrapper .table-wrapper .table .cell .radio-wrapper .radiobutton__icon,.rma-document-selection-wrapper .filterable-table-wrapper .table-wrapper .table-widget .cell .radio-wrapper .radiobutton__icon,.rma-document-selection-wrapper .filterable-table-wrapper .table-wrapper .table .cell-no-border .radio-wrapper .radiobutton__icon,.rma-document-selection-wrapper .filterable-table-wrapper .table-wrapper .table-widget .cell-no-border .radio-wrapper .radiobutton__icon{margin-right:0}.rma-document-selection-completed-wrapper{display:flex;flex-direction:row;margin-left:42px;margin-top:10px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.rma-document-selection-completed-wrapper .labels{display:flex;flex-direction:column;margin-right:20px;gap:1rem}.rma-document-selection-completed-wrapper .labels span{height:1.3rem}.rma-document-selection-completed-wrapper .values{display:flex;flex-direction:column;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;gap:1rem}.rma-document-selection-completed-wrapper .values span{height:1.3rem}@media only screen and (min-width: 64rem){.steps-wrapper>:nth-last-child(n+2){border-bottom:1px solid #b1b1b1}}.rma-button-section{margin-top:60px;display:flex;justify-content:flex-end}.measures-overlay__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;-webkit-hyphens:none;hyphens:none;margin-bottom:40px}.measures-overlay__title::after{display:block;content:"";background-color:var(--color1)}.measures-overlay__title::after{width:23px;height:4px;margin-top:5px}@media only screen and (min-width: 48rem),print{.measures-overlay__title::after{width:21px;height:4px;margin-top:6px}}.measures-overlay__wrapper{display:flex;flex-direction:column}.measures-overlay__content{border-top:1px solid #b1b1b1}.measures-overlay__tab{padding-left:10px}.measures-overlay__acco-header-section{display:flex;flex-direction:column}.measures-overlay__acco-header-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;display:flex;flex-direction:row;align-items:baseline;margin-bottom:10px}.measures-overlay__acco-header-icon{margin-right:10px}.measures-overlay__acco-header-date{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.measures-overlay__acco-content-section{display:flex;flex-direction:column;padding-left:10px}.measures-overlay__acco-content-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;margin-bottom:10px}.measures-overlay__acco-content-description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;margin-bottom:30px}.measures-overlay__acco-content-details-button{width:-moz-fit-content;width:fit-content;margin-bottom:30px}.measures-overlay__acco-content-disclaimer-button{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:flex;flex-direction:row;align-items:baseline;margin-bottom:30px}.measures-overlay__acco-content-disclaimer-button>svg{margin-right:10px}.order-overview__summary-wrapper{display:grid;grid-gap:20px}@media only screen and (max-width: 47.9375rem){.order-overview__summary-wrapper{grid-gap:30px;margin:30px 0;display:flex;flex-flow:column-reverse}}@media only screen and (min-width: 48rem),print{.order-overview__summary-wrapper{grid-template-columns:1fr 1fr .75fr 1.25fr;padding:20px}}.order-overview__summary-item{display:flex;flex-direction:column;width:100%;position:relative;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}@media only screen and (max-width: 47.9375rem){.order-overview__summary-item{order:2}}.order-overview__summary-item--dealer{display:grid;grid-template-areas:"picked-up" "download";grid-row-gap:10px;width:auto}@media only screen and (min-width: 48rem),print{.order-overview__summary-item--dealer{grid-template-areas:"download picked-up";grid-gap:20px 30px;margin-left:auto}}.order-overview__summary-item--error{width:100%}@media only screen and (max-width: 47.9375rem){.order-overview__summary-item--error{order:1}}@media only screen and (min-width: 48rem),print{.order-overview__summary-item--error{text-align:right}}.order-overview__summary-item--return{grid-template-areas:"picked-up" "download" "return";order:1}@media only screen and (min-width: 48rem),print{.order-overview__summary-item--return{grid-template-areas:"download picked-up" ". return"}}.order-overview__summary-item--customer{order:0}@media only screen and (max-width: 47.9375rem){.order-overview__summary-item--customer{margin-top:30px}}@media only screen and (min-width: 48rem),print{.order-overview__summary-item--customer{max-width:40%}}[aria-expanded=false] .order-overview__summary-item{display:none}.order-overview__customer-info{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;display:grid;grid-gap:5px}@media only screen and (min-width: 64rem){.order-overview__customer-info{grid-template-columns:minmax(60px, auto) 1fr;grid-gap:10px}}@media only screen and (max-width: 47.9375rem){.order-overview__customer-info>*:nth-child(even):not(:last-child){margin-bottom:10px}}.order-overview__summary-card{height:26px;width:40px;margin-bottom:10px}.order-overview__summary-addresses{display:inline-grid;grid-template-columns:minmax(min-content, max-content);grid-template-areas:"dealer-address" "customer-address"}.order-overview__summary-address{grid-area:customer-address}.order-overview__summary-address--dealer{grid-area:dealer-address}.order-overview__summary-address+.order-overview__summary-address ul{border-top:1px solid #b1b1b1;padding-top:15px;margin-top:15px}.order-overview__summary-title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.order-overview__summary-btn:not(:first-of-type){margin-top:15px}.order-overview__print-button{margin-top:10px;padding:0;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow)}.order-overview__return{display:flex;align-items:center;grid-area:return}.order-overview__return p{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}@media only screen and (min-width: 48rem),print{.order-overview__return{max-width:325px}}.order-overview__return-icon{display:flex;align-self:flex-start}.order-overview__return .richtexteditor{margin-left:10px;margin-top:0}.order-overview__picked-up{grid-area:picked-up}.order-overview__download{display:flex;align-items:center;grid-area:download;height:60px}@media only screen and (min-width: 48rem),print{.order-overview__download{max-width:250px}}.order-overview__buy-again{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;margin-top:10px}.order-overview__buy-again:not(:last-child){margin-bottom:20px}.order-overview__stock{margin:20px 0 0}.list-product-url-wrapper-article__container{grid-area:img;display:flex}.list-product-url-wrapper-article__flags{display:flex}.list-product-url-wrapper-article__flags>div:not(:last-child){margin-right:10px}.list-product-url-wrapper-article__flags>.list-product-url-wrapper-article__flag{display:flex;align-items:center}.list-product-url-wrapper-article__flags>.list-product-url-wrapper-article__flag>.tab-bar_header__flag-offer-circle-container{padding-left:unset}.list-product-url-wrapper-article__flag>.tab-bar_header__flag-offer-circle-container>.tab-bar_header__flag-offer-circle{width:20px;height:20px}.list-product-url-wrapper-article__flag.link{cursor:pointer}.m_promotion-overlay__container{max-width:514px;min-width:680px;min-height:485px}.m_promotion-overlay__container .image-gallery-slides{white-space:unset}.m_promotion-overlay__container .image-gallery-slide{padding-top:0}.m_promotion-overlay__container .loader{min-width:680px;min-height:500px;display:flex;position:relative}.m_promotion-overlay__container>.overlay__button{right:0;position:absolute;z-index:1}.m_promotion-overlay__container-inner{width:100% !important;margin:0}.m_promotion-overlay__hero{max-height:284px;min-height:260px;overflow:hidden}.m_promotion-overlay__content{margin:30px 20px;display:grid;row-gap:1.35em}.m_promotion-overlay__title{line-height:1.2;font-size:1rem;font-weight:bold;margin:0}.m_promotion-overlay__multiple-promotions-title{line-height:1.2;font-size:1.25rem;font-weight:bold;margin:0}.m_promotion-overlay__summary{line-height:initial;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem}@media only screen and (min-width: 48rem),print{.m_promotion-overlay__summary{font-size:.9375rem}}.m_promotion-overlay__learn-more{line-height:initial;display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;box-shadow:none !important}.m_promotion-overlay__learn-more::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.m_promotion-overlay__learn-more:hover::after{transform:translate3d(10px, -50%, 0)}.m_promotion-overlay__learn-more::after{left:initial}.b2b-rma-article-selection{width:845px;border:1px solid #b1b1b1}.b2b-rma-article-selection .acco__tab{background-color:#ededed}.b2b-rma-article-selection .acco__content{background-color:#ededed}.b2b-rma-article-selection .acco__inner{display:block;background-color:#ededed}.b2b-rma-article-selection__accordion-title{margin-left:20px}.b2b-rma-article-selection__header{display:flex;position:relative;box-sizing:border-box;padding-bottom:30px;padding-top:30px;grid-column-gap:20px;border-top:1px solid #b1b1b1}.b2b-rma-article-selection__header .list-shopping-cart__product-slim__content{overflow:inherit;display:contents}.b2b-rma-article-selection__header .list-shopping-cart__entry-comment.lite--input{width:auto}.b2b-rma-article-selection__check{grid-area:check;align-items:flex-start;display:flex}.b2b-rma-article-selection__article{grid-area:article;align-items:flex-start}.b2b-rma-article-selection__article-number{margin-bottom:15px}.b2b-rma-article-selection__article-cursor-pointer{cursor:pointer}.b2b-rma-article-selection__article-cursor-default{cursor:default}.b2b-rma-article-selection__article-description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-top:15px;white-space:break-spaces}.b2b-rma-article-selection__quantity{grid-area:qty;align-items:flex-start}.b2b-rma-article-selection__quantity-description{margin-top:11px;margin-left:10px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.b2b-rma-article-selection__orderDetails{display:grid}.b2b-rma-article-selection__orderDetails-details{display:flex}.b2b-rma-article-selection__orderDetails-message{justify-self:end;text-align:left;font-size:medium}.b2b-rma-article-selection__prices-box{grid-area:price;align-self:flex-start;margin-top:4px;margin-left:10px;display:grid;grid-template-columns:60% 40%;justify-items:flex-start}@media(max-width: 63.9375rem){.b2b-rma-article-selection__prices-box{margin-left:0}}.b2b-rma-article-selection__prices-box:not(:last-child){margin-bottom:5px}.b2b-rma-article-selection__prices-box-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-right:20px;margin-left:48px}.b2b-rma-article-selection__prices-box-value{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;justify-self:flex-end}.b2b-rma-article-selection__instructions{margin:20px 30px 10px 20px}.b2b-rma-article-selection__comment{margin-top:20px}.b2b-rma-article-selection .checkbox.big{grid-gap:1px}.b2b-rma-article-selection__list-link{display:flex;cursor:pointer;margin-right:auto;margin-top:23px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.b2b-rma-article-selection__list-link-text{margin-left:10px;color:#000;font-size:.875rem;height:.9375rem;line-height:1.2}.b2b-rma-article-selection-completed__accordion-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-left:28px}.b2b-rma-article-selection-completed__wrapper{flex-direction:column;border-left:1px solid #b1b1b1}.b2b-rma-article-selection-completed__completed-entry{margin-left:20px}.b2b-rma-article-selection-completed__article-number{margin-bottom:5px;margin-top:30px}.b2b-rma-article-selection-completed__details{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:5px}.b2b-rma-article-selection-completed__details-status-wrapper{display:flex;flex-direction:row;justify-content:space-between;align-items:flex-start}.b2b-rma-article-selection-completed__details-status-display{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;padding:5px;background:#fee2cd}.b2b-rma-article-selection-completed .acco{border-bottom:0;margin-left:44px}.b2b-rma-article-selection-completed .acco__tab-icon-arrow-down::after{right:0;left:0}.rma-article-selection-wrapper .filterable-table-wrapper .table-wrapper tr:nth-child(even){background-color:#fff}.rma-article-selection-wrapper .filterable-table-wrapper .table-wrapper tr:nth-child(odd){background-color:#fff}.rma-article-selection-wrapper .filterable-table-wrapper .cell,.rma-article-selection-wrapper .filterable-table-wrapper .table-wrapper .table .cell-no-border,.rma-article-selection-wrapper .filterable-table-wrapper .table-wrapper .table-widget .cell-no-border{padding:0 !important}.rma-article-selection-wrapper .show-more-section{margin-top:0 !important;margin-bottom:20px !important}.rma-request-information{position:relative;padding-bottom:40px;display:flex;flex-direction:column}.rma-request-information *>button:focus,.rma-request-information input:focus{border-bottom:4px solid #f37a1f}.rma-request-information__header{display:flex;flex-direction:row;margin:10px}.rma-request-information__requested-resolution{flex:50%;margin-right:10px;display:flex;flex-direction:column}.rma-request-information__return-reasons{flex:50%;margin-left:10px;display:flex;flex-direction:column}.rma-request-information__dropdown{display:block;min-width:unset}.rma-request-information__dropdown input{width:100%;text-overflow:ellipsis;padding-right:40px}.rma-request-information__dropdown label{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;margin:0 0 15px}.rma-request-information__dropdown .form-field__datalist{top:80px}.rma-request-information__special{display:flex;flex-direction:row;justify-content:flex-end}.rma-request-information__special-attachment{flex:100%;align-items:center;margin:32px 10px 0}.rma-request-information__special-quantity{flex:50%;align-items:center;display:flex;flex-direction:column;margin:32px 0 0 165px}.rma-request-information__special-quantity label{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;margin:0 0 15px 84px}.rma-request-information__special-article{display:flex;flex-direction:column;margin:32px 0 0 250px;flex:0}.rma-request-information__special-article input{width:453px;align-self:flex-end;margin-right:10px}.rma-request-information__special-article label{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;margin:0 0 15px}.rma-request-information__special-article-form>.error-message{margin-bottom:unset}.rma-request-information__footer{display:flex;flex-direction:column;margin:72px 10px 10px}.rma-request-information__container{display:flex;flex-direction:row}.rma-request-information__container-customer-reference{flex:50%;display:flex;flex-direction:column;margin-right:10px}.rma-request-information__container-customer-reference label{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;margin:0 0 15px}.rma-request-information__container-contact{flex:50%;display:flex;flex-direction:column;margin-left:10px}.rma-request-information__container-contact label{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;margin:0 0 15px}.rma-request-information__comment{display:flex;flex-direction:column;margin-top:42px}.rma-request-information__comment label{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;margin:0 0 15px}.rma-request-information__comment input{height:110px}.rma-request-information__comment .textarea-input{display:flex;outline:none;padding:10px;height:70px;line-height:1.5em;letter-spacing:1px;resize:none;margin-top:10px}.dealer-locator-map{--container-width: 100%;--marker-size: 64px;margin-bottom:50px;height:calc(100vh - 100px)}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.dealer-locator-map{--container-width: 45.5rem}}@media only screen and (min-width: 64rem){.dealer-locator-map{--container-width: 61.5rem}}.dealer-locator-map--full{width:100vw}.container__inner .dealer-locator-map--full{margin-left:calc((var(--container-width) - 100vw)/2)}@media only screen and (min-width: 48rem),print{.dealer-locator-map{overflow:hidden;min-height:500px;margin-bottom:80px}}@media only screen and (min-width: 48rem),print{.dealer-locator-map__tabs{display:flex;align-items:center}}.dealer-locator-map__count{order:1;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}@media only screen and (max-width: 47.9375rem){.dealer-locator-map__count{text-align:right;margin-bottom:20px}}@media only screen and (min-width: 48rem),print{.dealer-locator-map__count{padding-left:20px}}.dealer-locator-map__marker{height:var(--marker-size);width:var(--marker-size);position:relative;top:calc(-1*var(--marker-size));left:calc(-0.5*var(--marker-size))}.dealer-locator-map__marker svg{pointer-events:none}.dealer-locator-map__container{position:relative}.dealer-locator-map__overlay{background:#fff;max-width:100%}@media only screen and (min-width: 48rem),print{.dealer-locator-map__overlay{width:36.25rem;min-height:15.3125rem;position:absolute;top:50%;left:0;transform:translateY(-50%)}}@media all and (display-mode: fullscreen){.dealer-locator-map__overlay{top:0;left:-25%}}.dealer-locator-map__overlay-btn{position:absolute;z-index:1;right:0}@media only screen and (max-width: 47.9375rem){.dealer-locator-map__overlay-btn{display:none}}.dealer-locator-map__error-overlay{width:unset}.dealer-locator-map__error-overlay__content{margin:10px 30px 50px}.dealer-locator-map__error-overlay__header{text-align:center;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#000;font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25;margin-bottom:20px}@media only screen and (min-width: 48rem),print{.dealer-locator-map__error-overlay__header{font-size:1.625rem;line-height:1.2}}.dealer-locator-map__error-overlay__inner{text-align:center;font-style:normal;text-transform:none;letter-spacing:0;color:#000;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.dealer-locator-map>.loader{position:fixed;width:calc(100vw + 20px)}.dealer-locator-map .gm-style-moc p{text-align:center}.sales-statistics-wrapper .sales-statistics-form{display:flex;flex-direction:row;margin-top:50px}.sales-statistics-wrapper .filterable-table-wrapper__top-margin{margin-top:unset}.sales-statistics-wrapper .no-padding{padding:unset;margin-top:30px}.sales-statistics-wrapper .total-entries{margin-top:16px;display:flex;-moz-column-gap:.25em;column-gap:.25em}.sales-statistics-wrapper .total-results-line{font-weight:bold}.sales-statistics-wrapper .breadcrumb-entry{cursor:pointer}.dealer-locator-search{--searchbox-height: rem(62px);display:flex;gap:20px;justify-content:center;margin-bottom:20px;position:relative}@media only screen and (min-width: 48rem),print{.dealer-locator-search{--searchbox-height: rem(81px)}}@media(max-width: 63.9375rem){.dealer-locator-search{margin-top:20px;flex-wrap:wrap}}@media only screen and (min-width: 64rem){.dealer-locator-search{margin-bottom:40px}}.dealer-locator-search__location-detection{display:inline-block;position:relative;cursor:pointer;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;align-self:end;display:inline-flex;align-items:center;white-space:nowrap;padding:0}.dealer-locator-search__location-detection svg{padding-right:.3125rem;width:1rem;height:1rem}.dealer-locator-search__autocomplete{top:var(--searchbox-height);z-index:2}@media only screen and (min-width: 48rem),print{.dealer-locator-search__autocomplete{width:calc(60% - 40px);margin-left:20%}}.teaser-product-campaign{--tile-to-bg-space: 30px;--tile-width: 20rem;margin-top:50px}@media only screen and (max-width: 47.9375rem){.teaser-product-campaign{--badge-to-bg-space: 32px;--tile-to-bg-space: 20px}}.teaser-product-campaign__inner{position:relative}.teaser-product-campaign__bg{position:relative;padding-top:calc((9 / 16)*100%)}.teaser-product-campaign__bg>picture,.teaser-product-campaign__bg>a,.teaser-product-campaign__bg>a>picture{position:absolute;inset:0 0 0 0}.teaser-product-campaign__bg>picture>img,.teaser-product-campaign__bg>a>img,.teaser-product-campaign__bg>a>picture>img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}@media only screen and (min-width: 48rem),print{.teaser-product-campaign__bg{padding-top:calc((1 / 1.5)*100%)}}@media only screen and (min-width: 64rem){.teaser-product-campaign__bg{padding-top:calc((1 / 2)*100%)}}@media only screen and (min-width: 48rem),print{.teaser-product-campaign__tile{position:absolute;width:var(--tile-width);right:var(--tile-to-bg-space);top:var(--tile-to-bg-space);bottom:var(--tile-to-bg-space)}.teaser-product-campaign--left .teaser-product-campaign__tile{right:auto;left:var(--tile-to-bg-space)}}.teaser-product-campaign__badge-container{position:absolute;width:100%;padding-top:calc((9 / 16)*100%)}@media only screen and (min-width: 48rem),print{.teaser-product-campaign__badge-container{padding-top:calc((1 / 1.5)*100%);width:calc(100% - var(--tile-width) - var(--tile-to-bg-space))}}@media only screen and (min-width: 64rem){.teaser-product-campaign__badge-container{padding-top:calc((1 / 2)*100%)}}.teaser-product-campaign--left .teaser-product-campaign__badge-container{right:0}@media only screen and (min-width: 48rem),print{.teaser-content-campaign{display:grid;grid-template-areas:"content img";grid-template-columns:1fr 1fr;margin-top:50px}}.teaser-content-campaign__content{grid-area:content;display:flex;flex-direction:column;justify-content:center;padding:32px;background:#f37a1f}.teaser-content-campaign__content,.teaser-content-campaign__content p{color:#fff}.teaser-content-campaign__headline{color:#fff;margin-bottom:1.25rem}.teaser-content-campaign__img{grid-area:img;position:relative;padding-top:calc((1 / 1.05)*100%)}.teaser-content-campaign__img>picture,.teaser-content-campaign__img>a,.teaser-content-campaign__img>a>picture{position:absolute;inset:0 0 0 0}.teaser-content-campaign__img>picture>img,.teaser-content-campaign__img>a>img,.teaser-content-campaign__img>a>picture>img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.teaser-content-campaign__btn{margin-top:32px}.teaser-content-campaign__link-container{margin-top:20px}.teaser-content-campaign__link--anchor{display:inline-block;position:relative;cursor:pointer;margin-left:calc(10px + 0.9375rem);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-left:25px}.teaser-content-campaign__link--anchor::before{content:"";background:url(stihl-styles/resources/icons/icon-arrow-down-3-white-16.svg) no-repeat center/contain;position:absolute;height:.9375rem;width:.9375rem;filter:var(--svg-filter-invert-white, none);top:50%;right:100%;transform:translate3d(-10px, -50%, 0);height:.9375rem;transition:transform .2s;margin-top:-1px}.teaser-content-campaign__link--external{display:inline-block;position:relative;cursor:pointer;margin-right:30px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.teaser-content-campaign__link--external::after{content:"";background:url(stihl-styles/resources/icons/icon-external-link-white-16.svg) no-repeat center/contain;position:absolute;height:.9375rem;width:.9375rem;filter:var(--svg-filter-invert-white, none);top:50%;left:100%;transform:translate3d(0.625rem, -50%, 0);height:.9375rem;transition:transform .2s;margin-top:-1px}.teaser-campaign{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.teaser-campaign{width:45.5rem}}@media print{.teaser-campaign{width:auto}}@media only screen and (min-width: 64rem){.teaser-campaign{width:61.5rem}}@media only screen and (max-width: 47.9375rem){.teaser-campaign{padding:0;margin:32px 0 0}}.container__inner .teaser-campaign{padding:0}@media only screen and (max-width: 47.9375rem){.container__inner .teaser-campaign{margin-left:-20px;width:100vw;max-width:100vw}}.rma_detail .m_document-detail__left-header{margin-bottom:20px}.rma_detail .m_document-detail__left-header>div{width:100%}.rma_detail .m_document-detail__left-body{margin-bottom:40px}.rma_detail .m_document-detail__order_information-title{border-bottom:1px solid #b1b1b1}.rma_detail .m_document-detail__order_information-label{max-width:50%;word-break:break-word}.rma_detail .m_document-detail__order_information-header-element-document-kind{width:50%;text-align:right;word-break:break-word}.rma_detail__additional-information{margin-bottom:40px}.rma_detail .rma-document-selection-completed-wrapper{margin-left:0}.rma_detail__view-document{margin-bottom:20px}.rma_detail__information-box-last{padding-bottom:20px;border-bottom:1px solid #b1b1b1}.rma_detail__wrongly-delivered-item{display:block}.rma_detail__wrongly-delivered-item-label{margin-bottom:15px;flex:50%}.rma_detail__wrongly-delivered-item-comment{margin-bottom:15px;width:unset !important;text-align:left !important}.rma_detail__detail-selected-items{border:1px solid #b1b1b1;width:auto}.rma_detail__detail-selected-last-item{margin-bottom:25px}.rma_detail .attachments__section{border-bottom:0}.rma_detail .attachments__headers-row{grid-template-columns:.8fr .6fr .35fr 1.4fr}.rma_detail .attachments__results-row{grid-template-columns:.7fr .5fr .3fr 1.2fr}.rma_detail .attachments__with-table-cell{cursor:pointer}.rma_detail .attachments__comments{padding-left:0;padding-right:0}.rma_detail .attachments__odd-row-padding{padding:0}.rma_detail__attachments{margin-bottom:30px}.dealer-locator-details{position:relative;padding:0 10px}.dealer-locator-details--list{padding:30px 10px}@media only screen and (min-width: 48rem),print{.dealer-locator-details{padding:20px 32px 20px 20px}.dealer-locator-details--list{padding:0 20px}}@media only screen and (max-width: 47.9375rem){.dealer-locator-details__header{margin-bottom:20px}}@media only screen and (min-width: 48rem),print{.dealer-locator-details__header{display:flex;justify-content:space-between}}.dealer-locator-details__headline{display:inline-block;position:relative;cursor:pointer;margin-right:38px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.dealer-locator-details__headline::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(1.0625rem, -50%, 0);height:1rem;transition:transform .2s;margin-top:-1px}.dealer-locator-details__headline:hover::after{transform:translate3d(22px, -50%, 0)}.dealer-locator-details__distance{position:relative;padding-left:calc(1rem + 0.625rem);white-space:nowrap;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}@media only screen and (max-width: 47.9375rem){.dealer-locator-details__distance{display:inline-block;margin-top:20px}}@media only screen and (min-width: 48rem),print{.dealer-locator-details__distance{margin-left:40px;margin-right:30px}}.dealer-locator-details__distance::before{content:"";background:url(stihl-styles/resources/icons/icon-distance-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);left:0}.dealer-locator-details__content{display:grid;grid-template-areas:"contact" "details";grid-gap:25px 10px;margin-top:25px}.dealer-locator-details--list .dealer-locator-details__content{grid-template-areas:"contact" "assortments" "details" "badges"}@media only screen and (min-width: 48rem),print{.dealer-locator-details__content{grid-template:"contact details" auto "assortments details" 1fr;grid-template-columns:repeat(2, 1fr);grid-gap:30px 20px}.dealer-locator-details--list .dealer-locator-details__content{grid-template-areas:"contact details badges" "assortments details badges";grid-template-columns:repeat(3, 1fr)}}.dealer-locator-details__contact{grid-area:contact}.dealer-locator-details__details{grid-area:details}.dealer-locator-details__badges{grid-area:badges}@media only screen and (max-width: 47.9375rem){.dealer-locator-details__badges{margin-top:15px}}.dealer-locator-details__select-dealer{width:100%}@media only screen and (max-width: 47.9375rem){.dealer-locator-details__select-dealer{margin-top:15px}}.dealer-locator-details__select-dealer:not(:first-child){margin-top:40px}@media only screen and (min-width: 48rem),print{.dealer-locator-details__select-dealer:not(:first-child){margin-top:20px}}.dealer-locator-details__assortments{grid-area:assortments}@media only screen and (max-width: 47.9375rem){.dealer-locator-details--map .dealer-locator-details__assortments{display:none}}.dealer-locator-details__hint{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;margin-top:10px}.dealer-locator-extended-info{display:grid;grid-gap:30px}@media only screen and (min-width: 48rem),print{.dealer-locator-extended-info{grid-template-columns:repeat(3, 1fr);grid-gap:20px}}.dealer-locator-extended-info__item{padding:0 10px}.dealer-locator-extended-info__item--badges{padding:0}@media only screen and (max-width: 47.9375rem){.dealer-locator-extended-info__item--badges{margin-top:10px}}.dealer-locator-opening-hours{margin-bottom:20px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;position:relative;padding-left:calc(1rem + 0.625rem)}.dealer-locator-opening-hours::before{content:"";background:url(stihl-styles/resources/icons/icon-clock-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);left:0}@media only screen and (min-width: 48rem),print{.dealer-locator-opening-hours--expanded{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;max-width:80%;padding:calc(2rem + 1.25rem) 0 0 0}.dealer-locator-opening-hours--expanded::before{content:"";background:url(stihl-styles/resources/icons/icon-clock-16.svg) no-repeat center/contain;position:absolute;height:2rem;width:2rem;filter:var(--svg-filter-invert, none);left:calc(50% - 1rem);top:0}}.dealer-locator-opening-hours__content{display:grid;grid-template-columns:auto auto;grid-gap:5px 10px}.dealer-locator-opening-hours__day--current,.dealer-locator-opening-hours+.dealer-locator-opening-hours__time{font-weight:bold}.dealer-locator-opening-hours__no-data,.dealer-locator-opening-hours__time-slot{white-space:nowrap}.dealer-locator-opening-hours__time-slot{display:inline-block;grid-template-columns:auto auto}.dealer-locator-opening-hours__time-slot:first-child:not(:empty){margin-right:3px}.dealer-locator-contact__address{position:relative;padding-left:1.625rem;margin-bottom:10px}@media only screen and (min-width: 48rem),print{.dealer-locator-contact--detail-page .dealer-locator-contact__address{padding:calc(2rem + 1.25rem) 0 0 0}}.dealer-locator-contact__address p{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}@media only screen and (min-width: 48rem),print{.dealer-locator-contact--detail-page .dealer-locator-contact__address p{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}}.dealer-locator-contact__address::before{content:"";background:url(stihl-styles/resources/icons/icon-house-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);left:0}@media only screen and (min-width: 48rem),print{.dealer-locator-contact--detail-page .dealer-locator-contact__address::before{content:"";background:url(stihl-styles/resources/icons/icon-house-16.svg) no-repeat center/contain;position:absolute;height:2rem;width:2rem;filter:var(--svg-filter-invert, none);top:0;left:calc(50% - 32px / 2)}}.dealer-locator-contact__route{display:inline-block;padding-left:calc(1rem + 0.625rem);margin-bottom:20px;display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.dealer-locator-contact__route::after{content:"";background:url(stihl-styles/resources/icons/icon-external-link-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}@media only screen and (min-width: 48rem),print{.dealer-locator-contact--detail-page .dealer-locator-contact__route{padding-left:0}}.dealer-locator-contact__route:last-child{margin-bottom:0}.dealer-locator-contact__link{-webkit-hyphens:auto;hyphens:auto;word-break:break-word}.dealer-locator-contact__link:not(:first-child){margin-top:20px}.dealer-locator-contact__link--mail a{display:inline-block;position:relative;cursor:pointer;margin-left:calc(10px + 1rem);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#000;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.dealer-locator-contact__link--mail a::before{content:"";background:url(stihl-styles/resources/icons/icon-at-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);top:50%;right:100%;transform:translate3d(-10px, -50%, 0);height:1rem;transition:transform .2s;margin-top:-1px}.dealer-locator-contact__link--phone a{display:inline-block;position:relative;cursor:pointer;margin-left:calc(10px + 1rem);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#000;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.dealer-locator-contact__link--phone a::before{content:"";background:url(stihl-styles/resources/icons/icon-phone-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);top:50%;right:100%;transform:translate3d(-10px, -50%, 0);height:1rem;transition:transform .2s;margin-top:-1px}.dealer-locator-contact__link--website a{display:inline-block;position:relative;cursor:pointer;margin-left:calc(10px + 1rem);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#000;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.dealer-locator-contact__link--website a::before{content:"";background:url(stihl-styles/resources/icons/icon-globe-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);top:50%;right:100%;transform:translate3d(-10px, -50%, 0);height:1rem;transition:transform .2s;margin-top:-1px}@media only screen and (min-width: 48rem),print{.dealer-locator-contact--detail-page .dealer-locator-contact__links{position:relative;padding-top:calc(2rem + 1.25rem)}.dealer-locator-contact--detail-page .dealer-locator-contact__links::before{content:"";background:url(stihl-styles/resources/icons/icon-speachbubble-16.svg) no-repeat center/contain;position:absolute;height:2rem;width:2rem;filter:var(--svg-filter-invert, none);top:0;left:calc(50% - 32px / 2)}}.dealer-locator-benefits{background-color:#ededed;margin-bottom:100px}@media only screen and (max-width: 47.9375rem){.dealer-locator-benefits{width:100vw;margin-left:-1.25rem;margin-bottom:50px}}.dealer-locator-benefits__inner{padding:30px 40px 50px}@media only screen and (min-width: 48rem),print{.dealer-locator-benefits__inner{width:calc(100%/(12 / 8));padding:50px 0 70px;margin:0 auto;text-align:center}}.dealer-locator-benefits__headline{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25;margin-bottom:30px}@media only screen and (min-width: 48rem),print{.dealer-locator-benefits__headline{font-size:1.625rem;line-height:1.2}}@media only screen and (min-width: 48rem),print{.dealer-locator-benefits__headline{margin-bottom:55px;text-align:center}}.dealer-locator-benefits__list{display:inline-grid;grid-template-columns:repeat(1, 1fr);grid-gap:25px 60px}@media only screen and (min-width: 48rem),print{.dealer-locator-benefits__list{grid-template-columns:repeat(2, auto);max-width:38.75rem}}.dealer-locator-benefits__item{--icon-width: 1.375rem;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;position:relative;padding-left:var(--icon-width)}@media only screen and (min-width: 48rem),print{.dealer-locator-benefits__item{display:flex;align-items:center;max-width:calc(17.5rem - var(--icon-width))}}.dealer-locator-benefits__item::before{content:"";background:url(stihl-styles/resources/icons/icon-check-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);left:0;top:50%;transform:translateY(-50%)}.dealer-locator-list{position:relative}.dealer-locator-list__item{border-bottom:1px solid #b1b1b1}@media only screen and (min-width: 48rem),print{.dealer-locator-list__item{padding:45px 0 50px}}.dealer-locator-list__show-more{text-align:center;margin-top:30px}.dealer-locator-badges__content{display:grid;grid-template-columns:1fr 1fr;grid-gap:1.25rem}.dealer-locator-badges__item{display:flex;align-items:flex-start}.dealer-locator-badges__item img{max-width:calc(100% - 1.25rem);margin-right:.3125rem}.dealer-locator-badges__headline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-bottom:.9375em}.dealer-locator-general-info{position:relative;min-height:335px}@media only screen and (min-width: 48rem),print{.dealer-locator-general-info{min-height:346px}}.dealer-locator-general-info__headline{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;padding:0 10px;margin-bottom:20px}@media only screen and (min-width: 48rem),print{.dealer-locator-general-info__headline{font-size:1.875rem;line-height:1.3}}.dealer-locator-general-info__headline::after{display:block;content:"";background-color:var(--color1)}.dealer-locator-general-info__headline::after{width:23px;height:5px;margin-top:10px;background:var(--color1)}@media only screen and (min-width: 48rem),print{.dealer-locator-general-info__headline::after{width:34px;height:7px;margin-top:15px;background:var(--color1)}}@media only screen and (min-width: 48rem),print{.dealer-locator-general-info__headline{margin-bottom:30px}}.dealer-locator-general-info__inner{display:grid;grid-template-areas:"address" "contact" "opening-hours" "logo" "select-dealer";grid-gap:20px}@media only screen and (min-width: 48rem),print{.dealer-locator-general-info__inner{grid-template:"address contact opening-hours" auto "address logo opening-hours" 1fr "address select-dealer opening-hours" auto;grid-template-columns:repeat(3, 1fr);grid-row-gap:50px}}@media only screen and (min-width: 48rem),print{.dealer-locator-general-info__item{display:flex;flex-direction:column;align-items:center}}.dealer-locator-general-info__item--address{grid-area:address}.dealer-locator-general-info__item--contact{grid-area:contact}.dealer-locator-general-info__item--opening-hours{grid-area:opening-hours}.dealer-locator-general-info__item--select-dealer{grid-area:select-dealer}.dealer-locator-general-info__item--select-dealer p{text-align:center}.dealer-locator-general-info__item__logo{display:flex;justify-content:center;grid-area:logo;width:100%}@media only screen and (max-width: 47.9375rem){.dealer-locator-general-info__item__logo{margin-top:20px}}.dealer-locator-general-info__item__logo__img{max-width:250px;max-height:100px}.dealer-locator-regional-directories{box-sizing:border-box}.dealer-locator-regional-directories__headline{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25;padding-left:10px;margin-bottom:25px}@media only screen and (min-width: 48rem),print{.dealer-locator-regional-directories__headline{font-size:1.625rem;line-height:1.2}}.dealer-locator-regional-directories .acco__tab-title{padding-left:10px}.dealer-locator-about-us{display:grid;grid-gap:30px 20px}@media only screen and (min-width: 48rem),print{.dealer-locator-about-us{padding:0 10px;grid-template-columns:repeat(12, 1fr)}}@media only screen and (min-width: 48rem),print{.dealer-locator-about-us__intro{grid-column:span 12}}.dealer-locator-about-us__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;margin-bottom:20px}@media only screen and (min-width: 48rem),print{.dealer-locator-about-us__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25;margin-bottom:30px}}@media only screen and (min-width: 48rem)and (min-width: 48rem),print{.dealer-locator-about-us__title{font-size:1.625rem;line-height:1.2}}.dealer-locator-about-us__subtitle{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;margin-bottom:20px}@media only screen and (min-width: 48rem),print{.dealer-locator-about-us__subtitle{margin-bottom:25px}}@media only screen and (min-width: 48rem),print{.dealer-locator-about-us__team{margin-top:10px;grid-column:span 5}}@media only screen and (min-width: 48rem),print{.dealer-locator-about-us__team-full{margin-top:10px;grid-column:span 12}}@media only screen and (min-width: 48rem),print{.dealer-locator-about-us__image{grid-column:span 7}}@media only screen and (min-width: 48rem),print{.dealer-locator-about-us__image-only{grid-column:span 12}}@media only screen and (min-width: 48rem),print{.dealer-locator-about-us__gallery{grid-column:span 12}}.dealer-locator-about-us p{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;white-space:pre-line}@media only screen and (min-width: 64rem){.dealer-locator-about-us p{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}}.ssc-catalog{width:100%;display:flex;flex-direction:row;justify-content:space-between}.ssc-catalog__product-groups__wrapper{height:-moz-fit-content;height:fit-content;display:flex;width:312px;flex-direction:column;border:1px solid #b1b1b1;margin-right:40px}.ssc-catalog__product-groups__header{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;background-color:#ededed;padding:25px;display:flex;flex-direction:row}.ssc-catalog__product-groups__header .icon-wrapper{cursor:pointer;display:flex;align-items:center}.ssc-catalog__product-groups__header .text{flex-basis:90%;padding:0 10px}.ssc-catalog__product-groups__body{display:flex;flex-direction:column;padding:25px}.ssc-catalog__product-groups__body .element{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;cursor:pointer;display:flex;flex-direction:row;justify-content:space-between;padding:10px 5px;align-items:center}.ssc-catalog__product-groups__body .element .label{flex-basis:90%}.ssc-catalog__product-groups__body .element .non-bold{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.ssc-catalog__no-line-items{display:flex;justify-content:center;align-items:center;flex-direction:column;width:610px;height:100%;margin-top:40px}.ssc-catalog__no-line-items__image{background-color:#ededed;-webkit-mask:url(stihl-styles/resources/icons/icon-products-shelf-64.svg) no-repeat center/contain;mask:url(stihl-styles/resources/icons/icon-products-shelf-64.svg) no-repeat center/contain;width:164px;height:164px;margin-bottom:60px}.ssc-catalog__no-line-items__headline{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;margin-bottom:20px}.ssc-catalog__no-line-items__text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.ssc-catalog__line-items{display:flex;flex-direction:column;width:610px;height:-moz-fit-content;height:fit-content}.ssc-catalog__line-items:nth-last-child(-n+1){border-bottom:1px solid #b1b1b1}.ssc-catalog__line-items .no-margin{margin-bottom:0}.ssc-catalog__line-items .acco{border-top:1px solid #b1b1b1;border-bottom:unset}.ssc-catalog__line-items .acco .acco__label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.ssc-catalog__line-items__wrapper{display:flex;flex-direction:row;width:100%;margin-bottom:20px}.ssc-catalog__line-items__table-wrapper{width:100%;display:flex;flex-direction:column;margin-left:10px}.ssc-catalog__line-items__headers-row{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:grid;grid-template-columns:.25fr .3fr .45fr;width:100%;box-sizing:border-box;margin-bottom:20px;padding-left:15px}.ssc-catalog__line-items__results-row{display:grid;height:-moz-fit-content;height:fit-content;grid-template-columns:.25fr .3fr .45fr;width:100%;box-sizing:border-box}.ssc-catalog__line-items__row-gray{background-color:#ededed}.ssc-catalog__line-items__row-data-cell-wrapper{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;border-right:1px solid #b1b1b1;align-items:center;word-break:break-all;padding:15px}.ssc-catalog__line-items__row-data-cell-wrapper:nth-last-child(-n+2){border-right:unset}.ssc-catalog__line-items__row-data-cell{width:100%}.ssc-catalog__line-items .selected-product__wrapper{display:flex;justify-content:flex-end}.ssc-catalog__line-items .selected-product__link{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:block}.ssc-catalog__line-items .selected-product__link::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.ssc-catalog__line-items .selected-product__link:hover::after{transform:translate3d(10px, -50%, 0)}.ssc-catalog__line-items .selected-product__link::after{margin-top:0;margin-left:5px;left:auto;top:unset;transform:translate3d(5px, 1px, 0)}.ssc-catalog__line-items .selected-product__link:hover::after{transform:translate3d(10px, 1px, 0)}.ssc-catalog__line-items .selected-product__text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-right:10px;cursor:pointer}.ssc-catalog__tooltip-text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.shipping-conditions-overlay__footer{display:flex;justify-content:space-between}.shipping-conditions-overlay__loader>div{margin-left:20px;margin-right:20px;margin-top:45px}.shipping-conditions-overlay__container{width:680px}.shipping-conditions-overlay>.overlay__content>.overlay__content-inner{padding:0 80px 80px;margin-top:30px;width:unset}.shipping-conditions-overlay__headline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;margin-bottom:40px}.shipping-conditions-overlay__headline::after{display:block;content:"";background-color:var(--color1)}.shipping-conditions-overlay__headline::after{width:23px;height:4px;margin-top:5px}@media only screen and (min-width: 48rem),print{.shipping-conditions-overlay__headline::after{width:21px;height:4px;margin-top:6px}}.shipping-conditions-overlay__form{display:flex;margin-bottom:40px;flex-direction:column}.shipping-conditions-overlay__label{display:flex;flex-direction:row}.shipping-conditions-overlay__delivery-type{margin-left:10px}.shipping-conditions-overlay__input{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-right:10px;cursor:pointer;display:flex;align-items:center}.shipping-conditions-overlay__input>svg{margin-right:10px}.shipping-conditions-overlay__input:not(:last-child){margin-right:20px;margin-bottom:20px}.shipping-conditions-overlay__summary-container{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;margin-bottom:40px}.shipping-conditions-overlay__summary-image{margin-right:20px}.shipping-conditions-overlay__summary-text{padding:4px 0 0 20px}.shipping-conditions-overlay__btn{min-width:240px !important;max-width:240px !important}.teaser-highlight-banner{--text-color: var(--color1);--background-color: var(--teaser-highlight-banner-color);background:var(--background-color);position:relative}@media only screen and (max-width: 47.9375rem){.teaser-highlight-banner{width:calc(100% + 1.25rem * 2);left:-1.25rem}}.teaser-highlight-banner--orange{--background-color: #F37A1F;--text-color: #fff}.teaser-highlight-banner__inner{display:flex;align-items:center}@media only screen and (max-width: 47.9375rem){.teaser-highlight-banner__inner{flex-direction:column}}.teaser-highlight-banner__img,.teaser-highlight-banner__video{position:relative;padding-top:calc((9 / 16)*100%)}.teaser-highlight-banner__img>picture,.teaser-highlight-banner__img>a,.teaser-highlight-banner__img>a>picture,.teaser-highlight-banner__video>picture,.teaser-highlight-banner__video>a,.teaser-highlight-banner__video>a>picture{position:absolute;inset:0 0 0 0}.teaser-highlight-banner__img>picture>img,.teaser-highlight-banner__img>a>img,.teaser-highlight-banner__img>a>picture>img,.teaser-highlight-banner__video>picture>img,.teaser-highlight-banner__video>a>img,.teaser-highlight-banner__video>a>picture>img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.teaser-highlight-banner__img+.teaser-highlight-banner__badge-container,.teaser-highlight-banner__video+.teaser-highlight-banner__badge-container{position:relative;padding-top:calc((9 / 16)*100%);position:absolute;width:100%;top:0}.teaser-highlight-banner__img+.teaser-highlight-banner__badge-container>picture,.teaser-highlight-banner__img+.teaser-highlight-banner__badge-container>a,.teaser-highlight-banner__img+.teaser-highlight-banner__badge-container>a>picture,.teaser-highlight-banner__video+.teaser-highlight-banner__badge-container>picture,.teaser-highlight-banner__video+.teaser-highlight-banner__badge-container>a,.teaser-highlight-banner__video+.teaser-highlight-banner__badge-container>a>picture{position:absolute;inset:0 0 0 0}.teaser-highlight-banner__img+.teaser-highlight-banner__badge-container>picture>img,.teaser-highlight-banner__img+.teaser-highlight-banner__badge-container>a>img,.teaser-highlight-banner__img+.teaser-highlight-banner__badge-container>a>picture>img,.teaser-highlight-banner__video+.teaser-highlight-banner__badge-container>picture>img,.teaser-highlight-banner__video+.teaser-highlight-banner__badge-container>a>img,.teaser-highlight-banner__video+.teaser-highlight-banner__badge-container>a>picture>img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.teaser-highlight-banner__badge-static{--badge-width: 140px;--badge-padding: 10px;margin:0 auto}@media only screen and (min-width: 48rem),print{.teaser-highlight-banner__badge-static{position:absolute;top:50%;right:64px;margin-top:-70px}}@media only screen and (max-width: 47.9375rem){.teaser-highlight-banner__badge-container{padding-top:24px}}.teaser-highlight-banner__content{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto;display:flex;flex-direction:column;align-items:center;margin:32px 0}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.teaser-highlight-banner__content{width:45.5rem}}@media print{.teaser-highlight-banner__content{width:auto}}@media only screen and (min-width: 64rem){.teaser-highlight-banner__content{width:61.5rem}}@media only screen and (min-width: 48rem),print{.teaser-highlight-banner__content{width:calc(100%/(12 / 11));margin:50px auto}.teaser-highlight-banner--text .teaser-highlight-banner__content{width:calc(100%/(12 / 6))}}.teaser-highlight-banner__headline>*{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;color:var(--text-color);margin-bottom:32px}@media only screen and (min-width: 48rem),print{.teaser-highlight-banner__headline>*{font-size:1.875rem;line-height:1.3}}@media only screen and (min-width: 48rem),print{.teaser-highlight-banner__headline>*{text-align:center}}.teaser-highlight-banner--text .teaser-highlight-banner__headline>*{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25;color:var(--text-color)}@media only screen and (min-width: 48rem),print{.teaser-highlight-banner--text .teaser-highlight-banner__headline>*{font-size:1.625rem;line-height:1.2}}@media only screen and (min-width: 48rem),print{.teaser-highlight-banner--text .teaser-highlight-banner__headline>*{text-align:center}}.teaser-highlight-banner__description{margin-bottom:32px}.teaser-highlight-banner__link{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.teaser-highlight-banner__link::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.teaser-highlight-banner__link:hover::after{transform:translate3d(10px, -50%, 0)}.teaser-highlight-banner--orange .teaser-highlight-banner__link{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;color:var(--text-color)}.teaser-highlight-banner--orange .teaser-highlight-banner__link::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-white-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert-white, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.teaser-highlight-banner--orange .teaser-highlight-banner__link:hover::after{transform:translate3d(10px, -50%, 0)}@media only screen and (max-width: 47.9375rem){.teaser-highlight-banner__btn{width:100%}}.ts-body .teaser-highlight-banner__btn .btn_standard{position:relative;background:linear-gradient(to bottom, #F37A1F 50%, var(--color1) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:rgba(0,0,0,0);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center;height:3.75rem;--outline-offset: 2px;width:100%;border:0}.ts-body .teaser-highlight-banner__btn .btn_standard.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.ts-body .teaser-highlight-banner__btn .btn_standard:hover{background-position:0 -100%}}.ts-body .teaser-highlight-banner__btn .btn_standard.active{border-color:rgba(0,0,0,0)}@media(hover: hover)and (pointer: fine){.ts-body .teaser-highlight-banner__btn .btn_standard:hover{border-color:rgba(0,0,0,0)}}.ts-body .teaser-highlight-banner__btn .btn_standard:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.ts-body .teaser-highlight-banner__btn .btn_standard.active{color:var(--color2)}@media(hover: hover)and (pointer: fine){.ts-body .teaser-highlight-banner__btn .btn_standard:hover{color:var(--color2)}}@media(max-width: 63.9375rem){.ts-body .teaser-highlight-banner__btn .btn_standard{width:100%}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.ts-body .teaser-highlight-banner__btn .btn_standard:not(.full){min-width:calc(calc(45.5rem / 6) * 2);max-width:calc(calc(45.5rem / 6) * 3)}}@media only screen and (min-width: 64rem){.ts-body .teaser-highlight-banner__btn .btn_standard:not(.full){min-width:calc(calc(61.5rem / 12) * 3);max-width:calc(calc(61.5rem / 12) * 4)}}.ts-body .teaser-highlight-banner__btn .btn_standard.shrink{min-width:auto}.end-customer-details__order_link{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#f37a1f;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.end-customer-details__wrapper{display:flex;flex-direction:column;border:1px solid #b1b1b1;padding:20px}.end-customer-details__loader .loader{position:unset;margin-bottom:20px}.end-customer-details__info-wrapper{display:grid;grid-template-columns:1fr .75fr .75fr;margin-bottom:30px}.end-customer-details__info-company .header{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;margin-bottom:10px}.end-customer-details__info-company .element{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.end-customer-details__info-contact .header{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;margin-bottom:5px}.end-customer-details__info-contact .header-empty{height:20px;margin-bottom:8px}.end-customer-details__info-contact .element{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.end-customer-details__info-segmentation{display:flex;flex-direction:column;align-items:flex-end}.end-customer-details__info-segmentation .header{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin-bottom:10px;text-align:right}.end-customer-details__info-segmentation .element{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;text-align:right}.end-customer-details__download{display:flex;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;cursor:pointer}.end-customer-details__download .link{display:flex;gap:10px}.end-customer-details__download>span{margin-left:10px}.end-customer-details__buttons-bar{display:flex;flex-direction:row}.end-customer-details__buttons-element{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-right:50px}.end-customer-details__buttons-element::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.end-customer-details__buttons-element:hover::after{transform:translate3d(10px, -50%, 0)}.end-customer-details__table-image{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;height:60px;position:relative}.end-customer-details__table-image>picture{display:flex;justify-content:center;align-items:center;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;height:100%}.end-customer-details__table-unregister{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.end-customer-details__table-unregister::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.end-customer-details__table-unregister:hover::after{transform:translate3d(10px, -50%, 0)}.end-customer-details__product-registration-descr{margin-top:40px}.end-customer-details__product-registration-search{margin-top:40px}.list-product-promotion-indicator__container{grid-area:promotion-bar;display:flex;margin-bottom:30px}.list-product-promotion-indicator__container>div:not(:last-child){margin-right:20px}.list-product-promotion-indicator__available{background:#f5ddcc;display:flex;padding:5px;cursor:pointer}.list-product-promotion-indicator__available-text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.list-product-promotion-indicator__applied-text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.list-product-promotion-indicator__applied{display:flex;padding:5px;cursor:pointer}.list-product-promotion-indicator__applied>svg{padding-right:10px;align-self:center}.affected-products__top-info{display:flex;flex-direction:row;justify-content:space-between;margin-top:60px}.affected-products__general-info{display:flex;justify-content:flex-start;height:-moz-fit-content;height:fit-content;padding:25px 25px 10px;flex-direction:column;flex-basis:20%;border:1px solid #b1b1b1}.affected-products__general-info__affected-count-wrapper{display:flex;align-items:center;height:-moz-fit-content;height:fit-content}.affected-products__general-info__affected-count-wrapper .dot{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:flex;height:15px;width:15px;background-color:#000;border-radius:100%;padding:5px;margin-right:10px;justify-content:center}.affected-products__general-info__affected-count-wrapper .affected-products-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text-demi),Arial,sans-serif;font-size:.75rem}.affected-products__general-info__sold-and-registered-wrapper{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;padding:10px 10px 10px 35px}.affected-products__general-info__sold-and-registered-text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text-demi),Arial,sans-serif;font-size:.75rem;margin-left:10px}.affected-products__side-details-wrapper{display:flex;flex-direction:column;height:auto;flex-basis:30%;justify-content:flex-end}.affected-products__overlay{width:1200px}.affected-products__details-view__top__wrapper{display:flex;flex-direction:row;justify-content:space-between;align-items:center}.affected-products__details-view__top__title{display:flex;flex-direction:column;text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;margin-bottom:0;-webkit-hyphens:none;hyphens:none}@media only screen and (min-width: 48rem),print{.affected-products__details-view__top__title{font-size:1.875rem;line-height:1.3}}.affected-products__details-view__top__title::after{display:block;content:"";background-color:var(--color1)}.affected-products__details-view__top__title::after{width:23px;height:5px;margin-top:10px;background:var(--color1)}@media only screen and (min-width: 48rem),print{.affected-products__details-view__top__title::after{width:34px;height:7px;margin-top:15px;background:var(--color1)}}.affected-products__details__wrapper{width:100%;display:flex;flex-direction:row;margin:40px 0}.affected-products__details__customer-info{display:flex;flex-direction:row;justify-content:space-between;padding:20px;flex-basis:70%;margin-right:20px;height:200px;border:1px solid #b1b1b1}.affected-products__details__customer-info__details__wrapper{display:flex;flex-direction:column}.affected-products__details__lifecycle{margin-bottom:40px}.affected-products__no-measure-performed-section__button-section{display:flex;width:100%;justify-content:flex-end}.affected-products__no-measure-performed-section__button-section .button-wrapper{display:flex;flex-direction:row}.affected-products__no-measure-performed-section__button-section .measure-not-feasible-button{margin-right:40px;text-align:center}.affected-products__measure-performed-container{display:flex;width:100%;flex-direction:row}.affected-products__measure-performed__info-box{flex-basis:35%;margin-right:30px}.affected-products__measure-performed__comment{display:flex;flex-direction:column;flex-basis:75%;border:1px solid #b1b1b1;padding:20px}.affected-products__measure-performed__comment .comment-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin-bottom:25px}.affected-products__measure-performed__comment .comment-text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.affected-products__measure-information-wrapper{width:100%;margin-bottom:20px}.affected-products__measure-information-wrapper .header{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;padding:20px;border-bottom:1px solid #b1b1b1}.affected-products__measure-information-wrapper .details{padding:20px 20px 5px}.affected-products__measure-information-wrapper .details .label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:5px}.affected-products__measure-information-wrapper .details .text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;font-weight:bold;margin-bottom:5px}.affected-products__tooltip-wrapper{width:150px}.affected-products__tooltip-wrapper .tooltip{padding:20px;box-sizing:unset}.affected-products__tooltip-text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;white-space:pre-wrap;word-break:break-word}.customer-overlay__wrapper{display:flex;flex-direction:column;border:1px solid #b1b1b1;padding:20px;margin-right:50px;flex-basis:60%;height:-moz-fit-content;height:fit-content}.customer-overlay__wrapper .loader{position:unset;margin-bottom:20px}.customer-overlay__wrapper .end-customer-details__info-wrapper{display:grid;grid-template-columns:repeat(2, 0.5fr);grid-template-areas:"company segmentation" "contact ."}.customer-overlay__wrapper .end-customer-details__info-company{grid-area:company;margin-bottom:60px}.customer-overlay__wrapper .end-customer-details__info-company .header{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;margin-bottom:10px}.customer-overlay__wrapper .end-customer-details__info-company .element{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.customer-overlay__wrapper .end-customer-details__info-contact{grid-area:contact}.customer-overlay__wrapper .end-customer-details__info-contact .header{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;margin-bottom:5px}.customer-overlay__wrapper .end-customer-details__info-contact .element{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.customer-overlay__wrapper .end-customer-details__info-segmentation{grid-area:segmentation;display:flex;flex-direction:column;align-items:flex-end}.customer-overlay__wrapper .end-customer-details__info-segmentation .header{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin-bottom:10px}.customer-overlay__wrapper .end-customer-details__info-segmentation .element{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.measure-feasibility-form__wrapper{display:flex;flex-direction:column}.measure-feasibility-form__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;margin-bottom:40px}@media only screen and (min-width: 48rem),print{.measure-feasibility-form__title{font-size:1.875rem;line-height:1.3}}.measure-feasibility-form__title::after{display:block;content:"";background-color:var(--color1)}.measure-feasibility-form__title::after{width:23px;height:5px;margin-top:10px;background:var(--color1)}@media only screen and (min-width: 48rem),print{.measure-feasibility-form__title::after{width:34px;height:7px;margin-top:15px;background:var(--color1)}}.measure-feasibility-form__body{display:flex;flex-direction:column}.measure-feasibility-form__body .section__top{display:flex;flex-direction:row;border-bottom:1px solid #b1b1b1;padding-bottom:40px;margin-bottom:40px}.measure-feasibility-form__body .section__top .general-info-section{display:flex;flex-direction:column;width:572px;margin-right:70px}.measure-feasibility-form__body .section__top .section-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin-top:20px;margin-bottom:30px}.measure-feasibility-form__body .section__top .dropdown__wrapper{display:flex;flex-direction:column}.measure-feasibility-form__body .section__top .dropdown__label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:10px}.measure-feasibility-form__body .section__bottom{display:flex;flex-direction:column;margin-bottom:40px}.measure-feasibility-form__body .section__bottom .section-title{display:flex;flex-direction:row;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin-bottom:30px}.measure-feasibility-form__body .section__bottom .text-area .textarea-input{display:flex;border:1px solid #b1b1b1;outline:none;padding:10px;min-height:100px;min-width:100%}.measure-feasibility-form__body .section__bottom .text-area .textarea-input:focus{border-bottom:4px solid #f37a1f}.measure-feasibility-form__buttons-wrapper{display:flex;flex-direction:row;justify-content:flex-end}.measure-feasibility-form__buttons-wrapper .close-button{margin-right:20px}.dealer-locator-advantages{border-bottom:1px solid #b1b1b1}.dealer-locator-advantages__inner{display:grid;grid-gap:30px;margin-bottom:30px}@media only screen and (min-width: 48rem),print{.dealer-locator-advantages__inner{margin-bottom:40px}}@media only screen and (min-width: 48rem),print{.dealer-locator-advantages__inner{grid-template-columns:repeat(3, 1fr);grid-gap:20px}}.dealer-locator-advantages__item{padding:0 10px}.dealer-locator-advantages__headline{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25;padding:0 10px;margin-bottom:40px}@media only screen and (min-width: 48rem),print{.dealer-locator-advantages__headline{font-size:1.625rem;line-height:1.2}}@media only screen and (min-width: 48rem),print{.dealer-locator-advantages__headline{margin-bottom:50px}}.dealer-locator-advantages__title{display:flex;align-items:center;margin-bottom:20px}.dealer-locator-advantages__title span{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2}@media only screen and (min-width: 48rem),print{.dealer-locator-advantages__title{margin-bottom:25px}}.dealer-locator-advantages__icon{width:50px;height:50px;margin-right:20px;overflow:hidden}.dealer-locator-advantages__text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.dealer-locator-global-events__headline{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25;padding:0 10px;margin-bottom:40px}@media only screen and (min-width: 48rem),print{.dealer-locator-global-events__headline{font-size:1.625rem;line-height:1.2}}@media only screen and (min-width: 48rem),print{.dealer-locator-global-events__headline{margin-bottom:50px}}.dealer-locator-global-events__header{display:grid;grid-gap:20px}@media only screen and (min-width: 48rem),print{.dealer-locator-global-events__header{grid-template-areas:"image description" "secondary secondary";grid-template-columns:1fr 1fr;gap:40px 20px}}.dealer-locator-global-events__img{width:100%}@media only screen and (min-width: 48rem),print{.dealer-locator-global-events__img{grid-area:image}}@media only screen and (min-width: 48rem),print{.dealer-locator-global-events__info{grid-area:description;padding:0 10px}}.dealer-locator-global-events__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;margin-bottom:20px}.dealer-locator-global-events__dates{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;margin-bottom:20px}.dealer-locator-global-events__description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}@media only screen and (min-width: 48rem),print{.dealer-locator-global-events__description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}}.dealer-locator-global-events__secondary-description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;margin-bottom:80px}@media only screen and (max-width: 47.9375rem){.dealer-locator-global-events__secondary-description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}}@media only screen and (min-width: 48rem),print{.dealer-locator-global-events__secondary-description{grid-area:secondary}}.dealer-locator-banner-image{height:300px;margin:0 auto}@media only screen and (max-width: 47.9375rem){.dealer-locator-banner-image{height:auto;width:100%}}.upload_registrations_wrapper{z-index:9;position:relative;cursor:pointer}.upload-registrations__button-section{display:flex;flex-direction:row;justify-content:flex-end;margin-bottom:20px;margin-left:25px}.upload-registrations__button-section.box{margin-left:unset;margin-right:25px}.upload-registrations__button-wrapper{cursor:pointer}.upload-registrations__button-wrapper.box{margin-top:16px}.upload-registrations__button-wrapper:not(:last-child){margin-right:30px}.upload-registrations__button-content{display:flex;align-items:center}.upload-registrations__button-content.box{margin-bottom:7px;margin-top:1px;font-weight:bold}.upload-registrations__button-content.box-second{margin-top:7px;margin-bottom:7px}.upload-registrations__button-content>svg{margin-right:10px}.upload-registrations__button-content>span{padding-top:1px;height:13px}.registration-links{display:flex;flex-direction:row;justify-content:flex-end;margin-bottom:40px}.registration-links .registrations-actions{display:flex;flex-direction:column;justify-content:flex-start}.registration-links .export-customers-button{display:flex;justify-content:flex-start}.newsletter-overlay{max-width:100%}.newsletter-overlay__image{position:relative;padding-top:calc((9 / 16)*100%)}.newsletter-overlay__image>picture,.newsletter-overlay__image>a,.newsletter-overlay__image>a>picture{position:absolute;inset:0 0 0 0}.newsletter-overlay__image>picture>img,.newsletter-overlay__image>a>img,.newsletter-overlay__image>a>picture>img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.newsletter-overlay__badge{position:absolute;left:40px;top:50%;transform:translateY(-50%)}@media only screen and (max-width: 47.9375rem){.newsletter-overlay__badge .badge{--badge-width: 80px}}@media only screen and (min-width: 48rem),print{.newsletter-overlay__badge{left:60px}}.newsletter-overlay__content{padding:32px 20px}.newsletter-overlay__content,.newsletter-overlay__content p:not(.newsletter-overlay__hint){text-align:center;font-style:normal;text-transform:none;letter-spacing:0;color:#000;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.newsletter-overlay__button{margin:24px auto 0}.newsletter-overlay__hint{text-align:center;font-style:normal;text-transform:none;letter-spacing:0;color:#000;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;margin-top:24px}.newsletter-overlay__headline{text-align:center;font-style:normal;text-transform:none;letter-spacing:0;color:#000;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2}.teaser-highlight-box{background:#f37a1f;padding:32px 20px;display:flex;flex-direction:column;align-content:flex-end;box-sizing:border-box;z-index:2;height:100%;width:100vw}@media only screen and (max-width: 47.9375rem){.teaser-highlight-box{margin-left:-20px}}@media only screen and (min-width: 48rem),print{.teaser-highlight-box{width:100%}}@media(max-width: 63.9375rem){.teaser-highlight-box{margin-bottom:20px}}.teaser-highlight-box__headline{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;display:inline-block}.teaser-highlight-box__headline-link{display:inline-block;position:relative;cursor:pointer;margin-right:38px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;color:#fff}.teaser-highlight-box__headline-link::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none);top:50%;left:100%;transform:translate3d(1.0625rem, -50%, 0);height:1rem;transition:transform .2s;margin-top:-1px}.teaser-highlight-box__headline-link:hover::after{transform:translate3d(22px, -50%, 0)}.teaser-highlight-box__link{display:flex}.teaser-highlight-box__link:not(:last-child){margin-bottom:13px}.teaser-highlight-box__link:first-child{margin-top:26px}.teaser-highlight-box__link a{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;color:#fff}.teaser-highlight-box__link a::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-white-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert-white, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.teaser-highlight-box__link a:hover::after{transform:translate3d(10px, -50%, 0)}.teaser-highlight-box__links{margin-top:auto}@media only screen and (min-width: 64rem){.teaser-highlight-box__content{order:1}.teaser-highlight-box__content:not(:last-child){margin-top:auto}.teaser-highlight-box__content:last-child{display:flex;flex-direction:column;height:100%}}.teaser-highlight-box__badge{z-index:2;margin:10px 0 -60px auto}.teaser-highlight-box__badge .badge{--badge-width: 6.25rem}@media only screen and (min-width: 64rem){.teaser-highlight-box__badge{margin:0 0 30px}}.unregister-product-form__wrapper{display:flex;flex-direction:column}.unregister-product-form__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;margin-bottom:40px}@media only screen and (min-width: 48rem),print{.unregister-product-form__title{font-size:1.875rem;line-height:1.3}}.unregister-product-form__title::after{display:block;content:"";background-color:var(--color1)}.unregister-product-form__title::after{width:23px;height:5px;margin-top:10px;background:var(--color1)}@media only screen and (min-width: 48rem),print{.unregister-product-form__title::after{width:34px;height:7px;margin-top:15px;background:var(--color1)}}.unregister-product-form__body{display:flex;flex-direction:column}.unregister-product-form__body .section__top{display:flex;flex-direction:row;border-bottom:1px solid #b1b1b1;padding-bottom:40px;margin-bottom:40px}.unregister-product-form__body .section__top .general-info-section{display:flex;flex-direction:column;width:572px;margin-right:70px}.unregister-product-form__body .section__top .general-info-section .datepicker-input-wrapper{margin-bottom:30px}.unregister-product-form__body .section__top .general-info-section .datepicker-input-wrapper .calendar-icon{background-image:url(stihl-styles/resources/icons/icon-calendar-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:var(--svg-filter-invert, none);width:50px;height:50px}.unregister-product-form__body .section__top .general-info-section .datepicker-input-wrapper .react-datepicker-popper{z-index:500}.unregister-product-form__body .section__top .general-info-section .datepicker-input-wrapper .data-input-formfield{display:flex;flex-direction:column}.unregister-product-form__body .section__top .general-info-section .datepicker-input-wrapper .image-calendar-wrapper{display:flex;flex-direction:row;align-items:center;background-color:#ededed;width:50%;height:60px}.unregister-product-form__body .section__top .general-info-section .datepicker-input-wrapper .datepicker{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.unregister-product-form__body .section__top .general-info-section .datepicker-input-wrapper .datepicker:focus{border:none}.unregister-product-form__body .section__top .general-info-section .datepicker-input-wrapper .datepicker-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;align-items:flex-end;margin-bottom:10px}.unregister-product-form__body .section__top .section-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin-top:20px;margin-bottom:30px}.unregister-product-form__body .section__top .dropdown__wrapper{display:flex;flex-direction:column}.unregister-product-form__body .section__top .dropdown__label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:10px}.unregister-product-form__body .section__bottom{display:flex;flex-direction:column;margin-bottom:40px}.unregister-product-form__body .section__bottom .section-title{display:flex;flex-direction:row;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin-bottom:30px}.unregister-product-form__body .section__bottom .text-area .textarea-input{display:flex;border:1px solid #b1b1b1;outline:none;padding:10px;min-height:100px;min-width:100%}.unregister-product-form__body .section__bottom .text-area .textarea-input:focus{border-bottom:4px solid #f37a1f}.unregister-product-form__buttons-wrapper{display:flex;flex-direction:row;justify-content:flex-end}.unregister-product-form__buttons-wrapper .close-button{margin-right:20px}.repair-claim__section__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;height:18px;margin-bottom:30px;padding-top:40px}.repair-claim__accessories__wrapper{display:flex;flex-direction:column;padding-bottom:40px;border-bottom:1px solid #b1b1b1}.repair-claim__accessories__subtitle{padding:0 0 5px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.repair-claim__accessories__line,.repair-claim__accessories__header{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-top:20px;display:grid;grid-template-columns:784px 140px 20px;grid-column-gap:20px;width:100%;box-sizing:border-box;align-items:center}.repair-claim__accessories__line-disabled,.repair-claim__accessories__header-disabled{margin-top:20px;display:grid;grid-template-columns:872px 92px;grid-column-gap:20px;width:100%;box-sizing:border-box;align-items:center}.repair-claim__accessories__results__content{margin:10px 0}.repair-claim__accessories__general-cost-info__wrapper{display:flex;flex-direction:column;padding-bottom:40px;border-bottom:1px solid #b1b1b1}.repair-claim__accessories__general-cost-info__wrapper .info-display{display:flex;flex-direction:row;align-items:flex-end;justify-content:space-between}.repair-claim__accessories__general-cost-info__wrapper .input-wrapper{display:flex;flex-direction:column;width:275px}.repair-claim__accessories__general-cost-info__wrapper .input-wrapper .cost-limit{display:flex}.repair-claim__accessories__general-cost-info__wrapper .input-wrapper .cost-limit .form-field__input{text-align:right;width:275px}.repair-claim__accessories__general-cost-info__wrapper .input-wrapper .cost-limit .currency{display:flex;align-items:center;margin-left:10px}.repair-claim__accessories__general-cost-info__wrapper .input-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:flex;align-items:flex-end;margin-bottom:10px}.repair-claim__accessories__general-cost-info__wrapper .decision-dropdown-wrapper{width:100%;margin-top:20px}.repair-claim__accessories__add-button-section{display:flex;flex-direction:row;margin-top:30px}.repair-claim__accessories__add-button-wrapper{cursor:pointer}.repair-claim__accessories__add-button-wrapper:not(:last-child){margin-right:30px}.repair-claim__accessories__add-button-content{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:flex;align-items:center}.repair-claim__accessories__add-button-content>svg{margin-right:10px}.repair-claim__accessories__add-button-content>span{padding-top:1px}.repair-claim__accessories__suggested-list{position:absolute;z-index:500;width:679px}.repair-claim__disabled-input__wrapper{border-radius:0;border:1px solid #ededed;height:60px;display:flex;align-items:center}.repair-claim__disabled-input__value{justify-content:flex-end;padding-right:20px;padding-left:20px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.repair-claim__disabled-input__comment{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;border-radius:0;border:1px solid #ededed;display:flex;outline:none;width:50%;height:100px;padding:20px}.repair-claim__disabled-input__cost-limit{justify-content:flex-end}.repair-claim__disabled__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:flex;align-items:flex-end}.no-border{border-bottom:unset}.teaser-hero{--tile-to-bg-space: 20px;--outline-offset: 4px;--outline-width: 4px;display:grid;grid-gap:9px;max-width:90rem;margin:0 auto;grid-template-areas:"big-tile" "small-tile"}.teaser-hero--invert-mobile{grid-template-areas:"small-tile" "big-tile"}@media only screen and (min-width: 64rem){.teaser-hero{grid-template-columns:1fr 1fr 36%}.teaser-hero--default{grid-template-areas:"big-tile big-tile small-tile"}.teaser-hero--invert{grid-template-areas:"small-tile big-tile big-tile"}}.teaser-hero--full{grid-template-columns:none;grid-template-areas:none}.breadcrumb+.responsivegrid .teaser-hero{margin-top:10px}@media only screen and (min-width: 48rem),print{.breadcrumb+.responsivegrid .teaser-hero{margin-top:20px}}.pagetitle+.responsivegrid .teaser-hero{margin-top:10px}@media only screen and (min-width: 48rem),print{.pagetitle+.responsivegrid .teaser-hero{margin-top:20px}}.teaser-hero__item{position:relative}.teaser-hero__item--big{grid-area:big-tile}.teaser-hero__item--small{grid-area:small-tile}.teaser-hero__headline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;margin-bottom:32px}.teaser-hero__headline::after{display:block;content:"";background-color:#fff}.teaser-hero__headline::after{width:23px;height:4px;margin-top:5px}@media only screen and (min-width: 48rem),print{.teaser-hero__headline::after{width:21px;height:4px;margin-top:6px}}.teaser-hero__cta{--outline-color: #fff;display:flex}.teaser-hero__cta:nth-child(2){margin-top:20px}.teaser-hero__cta--link a{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.teaser-hero__cta--link a::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-white-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert-white, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.teaser-hero__cta--link a:hover::after{transform:translate3d(10px, -50%, 0)}.teaser-hero__description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;margin-bottom:26px}.teaser-hero__product{position:relative;min-height:17.5rem}@media only screen and (min-width: 48rem),print{.teaser-hero__product{position:absolute;top:var(--tile-to-bg-space);bottom:var(--tile-to-bg-space);width:20.3125rem}.teaser-hero__product--left{left:var(--tile-to-bg-space)}.teaser-hero__product--right{right:var(--tile-to-bg-space)}.teaser-hero__product--center{left:0;right:0;margin-right:auto;margin-left:auto}.teaser-hero__product--no-link{cursor:default}}.teaser-hero__content{position:relative;z-index:1;display:flex;align-items:center;flex-grow:1;padding:24px 0}@media only screen and (min-width: 48rem),print{.teaser-hero__content{padding:56px 0}}@media only screen and (min-width: 64rem){.teaser-hero__content{max-height:calc(28.75rem - 3.5rem * 2)}}@media(max-width: 63.9375rem){.teaser-hero__content{margin-top:calc(9 / 16 * -100%)}}@media(max-width: 63.9375rem)and (min-width: 33.125rem){.teaser-hero__item--small .teaser-hero__content{margin-top:calc(10 / 25 * -100%)}}@media(max-width: 63.9375rem){.teaser-hero__item--has-content .teaser-hero__content{margin-top:calc(10 / 100 * -100%)}}.teaser-hero__content-inner{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto;margin:0 auto;width:100%}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.teaser-hero__content-inner{width:45.5rem}}@media print{.teaser-hero__content-inner{width:auto}}@media only screen and (min-width: 64rem){.teaser-hero__content-inner{width:61.5rem}}@media only screen and (min-width: 48rem),print{.teaser-hero__content-inner{width:calc(100%/(12 / 8))}}@media only screen and (min-width: 64rem){.teaser-hero__item--small .teaser-hero__content-inner{width:calc(100%/(12 / 9))}}.teaser-hero__headline,.teaser-hero__description,.teaser-hero__links{max-width:438px}.teaser-hero__image{position:absolute;display:flex;flex-direction:column;background:#dadada}.teaser-hero__image--linked{cursor:pointer}@media(max-width: 63.9375rem){:not(.teaser-hero__item--has-content)>.teaser-hero__image{position:relative;padding-top:calc((9 / 16)*100%)}:not(.teaser-hero__item--has-content)>.teaser-hero__image>picture,:not(.teaser-hero__item--has-content)>.teaser-hero__image>a,:not(.teaser-hero__item--has-content)>.teaser-hero__image>a>picture{position:absolute;inset:0 0 0 0}:not(.teaser-hero__item--has-content)>.teaser-hero__image>picture>img,:not(.teaser-hero__item--has-content)>.teaser-hero__image>a>img,:not(.teaser-hero__item--has-content)>.teaser-hero__image>a>picture>img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.teaser-hero__item--has-content .teaser-hero__image{position:relative;padding-top:calc((10 / 100)*100%)}.teaser-hero__item--has-content .teaser-hero__image>picture,.teaser-hero__item--has-content .teaser-hero__image>a,.teaser-hero__item--has-content .teaser-hero__image>a>picture{position:absolute;inset:0 0 0 0}.teaser-hero__item--has-content .teaser-hero__image>picture>img,.teaser-hero__item--has-content .teaser-hero__image>a>img,.teaser-hero__item--has-content .teaser-hero__image>a>picture>img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}}@media only screen and (min-width: 64rem){.teaser-hero__image{height:28.75rem;position:relative;display:flex;flex-direction:column}.teaser-hero__image>picture,.teaser-hero__image>a>picture,.teaser-hero__image>a{position:absolute;inset:0}.teaser-hero__image>picture img,.teaser-hero__image>a>picture img,.teaser-hero__image>a img{-o-object-fit:cover;object-fit:cover;width:100%;height:100%}}.teaser-hero__image--dark-gray{background:#252525}.teaser-hero__image--light-gray{background:#ededed}.teaser-hero__image--light-gray .teaser-hero__headline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#252525;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2}.teaser-hero__image--light-gray .teaser-hero__headline::after{display:block;content:"";background-color:#252525}.teaser-hero__image--light-gray .teaser-hero__headline::after{width:23px;height:4px;margin-top:5px}@media only screen and (min-width: 48rem),print{.teaser-hero__image--light-gray .teaser-hero__headline::after{width:21px;height:4px;margin-top:6px}}.teaser-hero__image--light-gray .teaser-hero__description{color:#252525}.teaser-hero__image--light-gray .teaser-hero__cta--link a{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#252525;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.teaser-hero__image--light-gray .teaser-hero__cta--link a::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.teaser-hero__image--light-gray .teaser-hero__cta--link a:hover::after{transform:translate3d(10px, -50%, 0)}.import-file-overlay{width:680px;padding-left:0;padding-right:0}.import-file-overlay>.overlay__content>.overlay__content-inner{width:unset;margin:0;padding:30px 0 80px}.import-file-overlay__center{padding:0 80px}.import-file-overlay__center .product-return__reason>.dropdown-block>.dropdown_list{border-top:3px solid #f37a1f}.import-file-overlay__center .product-return__reason>.dropdown-block>.dropdown_list>.dropdown_list__item :hover{background-color:#000}.import-file-overlay__center .product-return__reason>.dropdown-block>.dropdown_list>.dropdown_list__item .tag_filter-2:hover,.import-file-overlay__center .product-return__reason>.dropdown-block>.dropdown_list>.dropdown_list__item .list-anchor--fixed .list-anchor__link:hover,.list-anchor--fixed .import-file-overlay__center .product-return__reason>.dropdown-block>.dropdown_list>.dropdown_list__item .list-anchor__link:hover{color:#fff}.import-file-overlay__center .product-return__reason .form-field__input ::-moz-placeholder{color:rgba(0,0,0,.6)}.import-file-overlay__center .product-return__reason .form-field__input ::placeholder{color:rgba(0,0,0,.6)}.import-file-overlay__center .form-field__input{width:100%}.import-file-overlay .fixed-height{min-height:215px}.import-file-overlay__headline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;margin-bottom:40px}.import-file-overlay__headline::after{display:block;content:"";background-color:var(--color1)}.import-file-overlay__headline::after{width:23px;height:4px;margin-top:5px}@media only screen and (min-width: 48rem),print{.import-file-overlay__headline::after{width:21px;height:4px;margin-top:6px}}.import-file-overlay__title{display:flex}.import-file-overlay__title>.list-overview__count{margin-right:20px;margin-bottom:60px}.import-file-overlay>.overlay__content>.overlay__content-inner>.tab-bar_header>.tab-bar_header__wrapper>.tab-bar_header__tab{max-width:unset}.import-file-overlay__tabs{border-bottom:1px solid #b1b1b1;padding:0 80px;position:relative;margin:70px 0 30px !important}.import-file-overlay>.overlay__content>.overlay__content-inner>.tab-bar_header>.tab-bar_header__wrapper{position:absolute;bottom:-1px}.import-file-overlay__toggle{margin:32px 20px 41px}.import-file-overlay__btn{min-width:240px !important;max-width:240px !important}.import-file-overlay .btn-position{margin-top:40px}.m_information-box{display:flex;padding:30px}@media only screen and (max-width: 47.9375rem){.m_information-box{padding:30px 20px}}.m_information-box__bg-grey{background-color:#ededed}.m_information-box__bg-green{background-color:#e5f0db}.m_information-box__bg-forestGreen{background-color:#dbf0e1}.m_information-box__content{display:flex;flex-direction:column}@media only screen and (min-width: 64rem){.m_information-box__content{max-width:792px}}.m_information-box__text-content{display:flex;flex-direction:column}.m_information-box__line{display:flex;flex-direction:row}.m_information-box__line:not(:last-child){margin-bottom:30px}.m_information-box__headline{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;margin-bottom:10px}.m_information-box__headline-bold{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin-bottom:10px}.m_information-box__text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.m_information-box__text a{display:inline;position:relative;cursor:pointer;font-weight:bold;box-shadow:var(--link-inner-shadow)}.m_information-box__icon{width:32px;height:32px;margin-right:30px}.product-manuals{display:grid;gap:50px;grid-template-columns:minmax(0, 1fr);position:relative}@media only screen and (min-width: 48rem),print{.product-manuals{margin:120px 0 180px;gap:80px}}.product-manuals__autocomplete{grid-area:unset;z-index:20;top:35px}@media only screen and (min-width: 48rem),print{.product-manuals__autocomplete{width:50%;left:25%;top:40px}}.product-manuals__headline{margin-bottom:1rem}.link-list{width:100%;box-sizing:border-box}.link-list__headline{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;padding:0 .625rem;margin-bottom:1.5625rem}.link-list__items{display:grid;grid-gap:.625rem 1.25rem;margin-bottom:1.875rem;padding:0 .625rem}@media only screen and (min-width: 48rem),print{.link-list__items{grid-template-columns:repeat(4, 1fr)}}.link-list__item{display:inline-block;position:relative;cursor:pointer;margin-left:calc(5px + 0.75rem);text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:flex;align-items:center}.link-list__item::before{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;right:100%;transform:translate3d(-5px, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.link-list__item:hover::before{transform:translate3d(0px, -50%, 50px)}.link-list__link{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.address-selection-display{border-bottom:1px solid #b1b1b1;padding:30px;height:100%;box-sizing:border-box;cursor:pointer}.address-selection-display--headquarter{background:#ededed}.address-selection-display__header{display:flex}.address-selection-display .checkout-step__title.b2b-checkout{margin-bottom:16px}.address-selection-display__radio{margin:0 9.5px 16px 0;width:17px}.address-selection-display__badge{display:inline-block;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;background:#fee2cd;padding:5px}.address-selection-display__badge__icon{margin-right:5px;width:10px}.address-selection-display__badge svg{transform:scale(-1, 1);transform-origin:center}.address-selection-display .checkout__addresses-ul{margin-bottom:20px}.address-selection-display .checkout__addresses-li.customer{margin-bottom:12px}.address-selection-display .checkout__addresses-li.custom-margin{margin-top:12px;margin-bottom:0}.stage-header{width:100%;max-width:988px;position:relative}@media only screen and (max-width: 47.9375rem){.stage-header{display:flex;justify-content:flex-start;align-items:flex-end;height:242.66px}}@media only screen and (min-width: 48rem),print{.stage-header{position:relative;padding-bottom:calc((1 / 3)*100%)}}.stage-header__image{width:100%;height:100%;position:absolute;-o-object-fit:cover;object-fit:cover}@media only screen and (max-width: 47.9375rem){.stage-header__image{margin-top:-242.66px}}.stage-header__subtitle{margin-bottom:8px;text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2}.stage-header__subtitle--white-font{color:#fff}.stage-header__subtitle--black-font{color:#000}.stage-header__title{margin:0}.stage-header__title--white-font{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25}@media only screen and (min-width: 48rem),print{.stage-header__title--white-font{font-size:1.875rem;line-height:1.3}}.stage-header__title--white-font::after{display:block;content:"";background-color:#fff}.stage-header__title--white-font::after{width:23px;height:5px;margin-top:10px;background:#fff}@media only screen and (min-width: 48rem),print{.stage-header__title--white-font::after{width:34px;height:7px;margin-top:15px;background:#fff}}.stage-header__title--black-font{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#000;font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25}@media only screen and (min-width: 48rem),print{.stage-header__title--black-font{font-size:1.875rem;line-height:1.3}}.stage-header__title--black-font::after{display:block;content:"";background-color:#000}.stage-header__title--black-font::after{width:23px;height:5px;margin-top:10px;background:#000}@media only screen and (min-width: 48rem),print{.stage-header__title--black-font::after{width:34px;height:7px;margin-top:15px;background:#000}}.stage-header__text-wrapper{width:-moz-max-content;width:max-content;max-width:calc(100% - 88px);height:-moz-max-content;height:max-content;position:relative;padding:24px;margin:20px}@media only screen and (min-width: 48rem),print{.stage-header__text-wrapper{margin:0;max-width:calc(100% - 120px);position:absolute;padding:30px;left:30px;bottom:30px}}.stage-header__text-wrapper--white-bg{background:#fff}.m_infobox-price__wrapper{display:flex;flex-direction:column}.m_infobox-price__original-price{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;height:1.25rem;text-decoration:line-through}.m_infobox-price__buy-price{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25;height:2.5rem}@media only screen and (min-width: 48rem),print{.m_infobox-price__buy-price{font-size:1.625rem;line-height:1.2}}.m_infobox-price__unit-price{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.m_infobox-price__tax-info{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.m_infobox-price__additional-price-info p{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.m_infobox-price__shipping-info__wrapper{display:flex;flex-direction:row;margin-top:5px;margin-bottom:5px}.m_infobox-price__shipping-info__icon{margin-right:10px}.m_infobox-price__shipping-info__icon .label-circle{border-width:2px}.m_infobox-price__shipping-info__label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#749f4a;line-height:1.5;font-weight:normal;font-family:var(--font-family-text-demi),Arial,sans-serif;font-size:.75rem}.m_infobox-price__recycle-cost{margin-top:0;margin-bottom:5px}.m_infobox-price__shipping-cost{display:flex}.m_infobox-price__shipping-cost--container{position:relative;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.m_infobox-price__shipping-cost--container .tooltip p:not(.m_infobox_product-detail__agec__tooltip-title){text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;display:block;margin-top:10px}.m_infobox-price__shipping-cost--text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;margin-bottom:5px;margin-left:10px;padding:0}.m_infobox-price__shipping-cost--free,.m_infobox-price__shipping-cost--free p{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#749f4a;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.m_infobox-price__discount{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;margin-top:5px}.m_infobox-price__discount--text::after{content:" "}.m_infobox-price__discount--value{font-weight:bold;color:#f37a1f}.m_infobox-price__promotion-period{margin:5px 10px 0 0}.vertical-slider{display:flex;position:relative;max-width:100%}@media(max-width: 63.9375rem){.vertical-slider{flex-direction:column;align-items:center;gap:10px;text-align:center}}@media(max-width: 63.9375rem){.vertical-slider{text-align:center}}.vertical-slider__counter{font-size:7.5rem;font-weight:900;line-height:.9}@media only screen and (min-width: 48rem),print{.vertical-slider__counter{font-size:10rem}}@media(max-width: 63.9375rem){.vertical-slider__content--no-counter div{padding:0 20px}}@media only screen and (min-width: 48rem),print{.vertical-slider__content{padding:0 20px;display:flex;flex-direction:column;max-height:calc(100% - 15px)}}@media(max-width: 63.9375rem){.vertical-slider__content p{text-align:center}}.vertical-slider__heading{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-bottom:24px}@media(max-width: 63.9375rem){.vertical-slider__heading{text-align:center}.vertical-slider__content .vertical-slider__heading{display:none}}@media only screen and (min-width: 48rem),print{.vertical-slider__heading{margin-bottom:16px}}@media only screen and (min-width: 48rem),print{.vertical-slider__heading--ssr{display:none}}.vertical-slider__button-container{display:flex;flex-direction:column;gap:2px;align-items:center;order:1;margin-left:auto}@media(max-width: 63.9375rem){.vertical-slider__button-container{display:none}}.vertical-slider__page-numbers{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}@media only screen and (min-width: 48rem),print{.vertical-slider__page-numbers{margin-top:20px}}.vertical-slider__btn{position:absolute;z-index:2;top:4.375rem}.vertical-slider__btn--prev{left:-20px}.vertical-slider__btn--next{right:-20px}.b2b-shoppingcart__top-container{max-width:984px;margin:0 auto;padding-top:50px}.b2b-shoppingcart-checkout__top-container{margin:0 auto;padding-top:50px}.b2b-shoppingcart-table-header__table{background-color:#ededed;min-width:100%}.b2b-shoppingcart-table-header__table-tr{height:54px}.b2b-shoppingcart-table-header__table--bank-accounts{min-width:100%}.b2b-shoppingcart-table-header__div{max-height:760px;overflow:auto}.b2b-shoppingcart-table-header__div--wide{max-width:none}.b2b-shoppingcart-table-header__div::-webkit-scrollbar{-webkit-appearance:none;appearance:none;margin-top:16px;width:12px;height:12px}.b2b-shoppingcart-table-header__div::-webkit-scrollbar-thumb{border-radius:4px;background-color:#dadada;box-shadow:0 0 1px rgba(255,255,255,.5)}.b2b-shoppingcart-table-header__table-th{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem;font-size:1rem !important;color:#fff;white-space:nowrap;padding:0 16px;position:sticky;top:0;z-index:10;outline:1px solid #fff}@media only screen and (min-width: 48rem),print{.b2b-shoppingcart-table-header__table-th{font-size:.9375rem}}@media only screen and (min-width: 48rem),print{.b2b-shoppingcart-table-header__table-th.total{position:sticky;right:0;text-align:right}}@media only screen and (min-width: 48rem),print{.b2b-shoppingcart-table-header__table-th.total.total-cart{right:56px}}@media only screen and (min-width: 48rem),print{.b2b-shoppingcart-table-header__table-th.remove{position:sticky;right:-1px;text-align:right}}.b2b-shoppingcart-table-header__table-th.options.opened{position:sticky;left:0;z-index:10}.b2b-shoppingcart-table-header__table-th-options{display:flex;justify-content:flex-start;color:#fff}.b2b-shoppingcart-table-header__table-th-options>svg{padding-right:8px}.b2b-shoppingcart-table-header__table-th-options-flyout{position:absolute;background:#fff;min-width:167px;border:2px solid #000;display:flex;flex-direction:column;font-size:.9375rem;z-index:11;padding-top:8px;padding-bottom:8px;margin-top:32px;margin-left:20px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.b2b-shoppingcart-table-header__table-th-options-flyout>*{padding:8px 16px}.b2b-shoppingcart-table-header__table-th-options-flyout>*:hover{background-color:#fee2cd !important}.b2b-shoppingcart-table-header__table-th:first-child{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem}@media only screen and (min-width: 48rem),print{.b2b-shoppingcart-table-header__table-th:first-child{font-size:.9375rem}}.b2b-shoppingcart-table-header__table-th--white.sort{padding:0 16px}.b2b-shoppingcart-table-header__table-th--white:first-child{color:#fff}.b2b-shoppingcart-table-row{height:54px;background-color:#fff !important}.b2b-shoppingcart-table-row--error td{background-color:#eebcbd !important}.b2b-shoppingcart-table-row--error:hover td{background-color:#fee2cd !important}.b2b-shoppingcart-table-row--clickable{cursor:pointer}.b2b-shoppingcart-table-row--clickable:hover td{background-color:#fee2cd !important}.b2b-shoppingcart-table-row:hover{background-color:#fee2cd !important}.b2b-shoppingcart-table-row:hover>.total{background-color:#fee2cd !important}.b2b-shoppingcart-table-row__td{padding:0;border:1px solid #ededed}.b2b-shoppingcart-table-row__td:last-child{border:1px solid #ededed}.b2b-shoppingcart-table-row__td>*{margin:0 !important}.b2b-shoppingcart-table-row__td--centered{text-align:center}.b2b-shoppingcart-table-row__td.entry{min-width:70px}.b2b-shoppingcart-table-row__td.entry.mouse-pointer{cursor:pointer}.b2b-shoppingcart-table-row__td-entry__container{display:flex;justify-content:flex-start;padding-left:16px;padding-right:10px}.b2b-shoppingcart-table-row__td-entry__product-details{display:flex;justify-content:space-around;flex-direction:row}.b2b-shoppingcart-table-row__td-entry__product-details-accordion{display:flex;flex-direction:row;cursor:pointer}.b2b-shoppingcart-table-row__td-entry__product-details-accordion-arrow{margin-right:12px}.b2b-shoppingcart-table-row__td-entry__product-details>.list-shopping-cart__entry-number{justify-content:flex-end;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem;margin-top:2px}@media only screen and (min-width: 48rem),print{.b2b-shoppingcart-table-row__td-entry__product-details>.list-shopping-cart__entry-number{font-size:.9375rem}}.b2b-shoppingcart-table-row__td.details{min-width:170px;padding:7px 16px;max-width:250px}.b2b-shoppingcart-table-row__td.details>.list-shopping-cart__detail.lite{justify-content:space-between}.b2b-shoppingcart-table-row__td.details>.list-shopping-cart__detail.lite>.list-product-url-wrapper-article__container.article-number.flag{justify-content:space-between}.b2b-shoppingcart-table-row__td.details>.list-shopping-cart__detail.lite>.list-product-url-wrapper-article__container.article-number.flag>.list-shopping-cart__detail-name.lite{margin-bottom:unset;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem;font-weight:bold}@media only screen and (min-width: 48rem),print{.b2b-shoppingcart-table-row__td.details>.list-shopping-cart__detail.lite>.list-product-url-wrapper-article__container.article-number.flag>.list-shopping-cart__detail-name.lite{font-size:.9375rem}}.b2b-shoppingcart-table-row__td.details>.list-shopping-cart__detail.lite>.list-product-url-wrapper-article__container.article-number.flag>.list-product-url-wrapper-article__flags>.list-product-url-wrapper-article__flag.link>.tab-bar_header__flag-offer-circle-container>.tab-bar_header__flag-offer-circle{height:16px;width:16px}.b2b-shoppingcart-table-row__td.details>.list-shopping-cart__detail.lite>.list-shopping-cart__detail-category.lite{margin-top:unset;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.b2b-shoppingcart-table-row__td.quantity{padding-left:16px;padding-right:16px;width:60px}.b2b-shoppingcart-table-row__td.quantity>*>.qty-select{width:60px;background-color:#fff}.b2b-shoppingcart-table-row__td.quantity>*>.qty-select>input{width:60px}.b2b-shoppingcart-table-row__td.quantity>.list-shopping-cart__quantity.lite.read-only{text-align:center}.b2b-shoppingcart-table-row__td.quantity__display-tooltip{position:relative}.b2b-shoppingcart-table-row__td.availability{min-width:112px;max-width:120px;padding:16px}.b2b-shoppingcart-table-row__td.availability>.list-shopping-cart__stock-box>.product-status__item-wrapper{margin-right:5px;margin-left:22px}.b2b-shoppingcart-table-row__td.availability>.list-shopping-cart__ETA>.list-shopping-cart__ETA--message{font-size:.75rem !important}.b2b-shoppingcart-table-row__td.availability>.list-shopping-cart__ETA>.list-shopping-cart__ETA--value{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem;font-weight:bold;font-size:.75rem !important}@media only screen and (min-width: 48rem),print{.b2b-shoppingcart-table-row__td.availability>.list-shopping-cart__ETA>.list-shopping-cart__ETA--value{font-size:.9375rem}}.b2b-shoppingcart-table-row__td.comment{min-width:300px}.b2b-shoppingcart-table-row__td.comment>*>.wrapper{display:flex;flex-direction:row;align-items:center;padding:5px}.b2b-shoppingcart-table-row__td.comment>*>.wrapper>.comment-input{margin-left:10px}.b2b-shoppingcart-table-row__td.prices{min-width:50px;padding:16px;text-align:right}.b2b-shoppingcart-table-row__td.total{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem;font-weight:bold;background-color:#fff;outline:1px solid #ededed;text-align:right;overflow:visible}@media only screen and (min-width: 48rem),print{.b2b-shoppingcart-table-row__td.total{font-size:.9375rem}}@media only screen and (min-width: 48rem),print{.b2b-shoppingcart-table-row__td.total{position:sticky;right:0}}.b2b-shoppingcart-table-row__td.total>.list-price.list-price__promotion_applied>span{color:#f37a1f}.b2b-shoppingcart-table-row__td.total>.list-price>.list-price__buy{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem;font-weight:bold;display:unset}@media only screen and (min-width: 48rem),print{.b2b-shoppingcart-table-row__td.total>.list-price>.list-price__buy{font-size:.9375rem}}@media only screen and (min-width: 48rem),print{.b2b-shoppingcart-table-row__td.total.total-cart{right:56px}}.b2b-shoppingcart-table-row__td.table-box-shadow::after{background-image:linear-gradient(to right, rgba(210, 210, 210, 0), rgba(210, 210, 210, 0.5));left:-15px;content:"";width:15px;position:absolute;bottom:-1px;top:-1px}.b2b-shoppingcart-table-row__td.remove{padding:16px;width:60px;background-color:#fff;outline:1px solid #ededed}@media only screen and (min-width: 48rem),print{.b2b-shoppingcart-table-row__td.remove{position:sticky;right:-1px}}.b2b-shoppingcart-table-row__td.bank-accounts{min-width:70px;white-space:nowrap;border-right:1px solid #ededed;background-color:#fff;padding:16px;font-size:1rem}.b2b-shoppingcart-table-row__td.bank-accounts--no-border{border-right:none}.b2b-shoppingcart-table-row:not(:last-child){border-bottom:1px solid #ededed}.b2b-shoppingcart-table-cell{background-color:#fff;border-right:1px solid #dadada;border-left:1px solid #dadada;border-bottom:1px solid #dadada;padding:16px;white-space:nowrap;font-size:1rem}.b2b-shoppingcart-table-cell .strike{text-decoration:line-through}.b2b-shoppingcart-table-cell .end{display:flex;justify-content:flex-end;flex-direction:row}.b2b-shoppingcart-table-cell .end .message-icon-wrapper{margin-right:15px}.b2b-shoppingcart-table-cell .tooltip-icon-wrapper{display:flex;justify-content:flex-end}.b2b-shoppingcart-table-cell .tooltip-icon-wrapper .tooltips{position:relative}.b2b-shoppingcart-table-cell .tooltip-icon-wrapper .tooltips>svg{vertical-align:text-top;padding-right:8px}.b2b-shoppingcart-table-cell .tooltip-icon-wrapper .tooltips.save{margin-top:2px}.b2b-shoppingcart-table-cell.quantity{padding:0 16px}.b2b-shoppingcart-table-cell .cell-multiple-item{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#f37a1f;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.b2b-shoppingcart-table-cell .checkbox.small .checkbox__mark.centered{position:absolute;place-self:center center}.b2b-shoppingcart-table-cell:last-child{border-bottom:1px solid #dadada;border-right:1px solid #dadada}.b2b-shoppingcart-table-cell--centered{text-align:center}.b2b-shoppingcart-table-cell--strike{text-decoration:line-through}.b2b-shoppingcart-table-cell--strike.right{text-align:right}.b2b-shoppingcart-table-cell--strike-valid{color:#00ac1e}.b2b-shoppingcart-table-cell--strike-valid.right{text-align:right}.b2b-shoppingcart-table-cell--valid{color:#00ac1e}.b2b-shoppingcart-table-cell--valid.right{text-align:right}.b2b-shoppingcart-table-cell--border{border-bottom:1px solid #dadada}.b2b-shoppingcart-table-cell--border--clickable{white-space:nowrap}.b2b-shoppingcart-table-cell--border-right{border-bottom:1px solid #dadada;text-align:right}.b2b-shoppingcart__price-summary-container{width:100%;display:flex;justify-content:flex-end}.b2b-shoppingcart__product-layout-grid-details{display:flex;flex-direction:row;background-color:#ededed;margin:16px 0 0 110px}.b2b-shoppingcart__product-layout-grid-details.border-bottom{border-bottom:1px solid #dadada}.b2b-shoppingcart__product-layout-grid-details__wrapper{padding:0}.b2b-shoppingcart__product-layout-grid-details__wrapper-date{flex-direction:column}.b2b-shoppingcart__kitcomponent-acc{border-bottom:1px solid #dadada}.b2b-shoppingcart__kitcomponent-acc .acco-standard{margin:0}.b2b-shoppingcart__kitcomponent-acc .acco{border:none}.b2b-shoppingcart__kitcomponent-acc .acco__tab{padding:0;width:170px;background-color:#ededed;z-index:unset;height:17px;min-height:unset}.b2b-shoppingcart__kitcomponent-acc .acco__inner{position:unset;height:-moz-fit-content;height:fit-content}.b2b-shoppingcart__kitcomponent-acc .acco__tab-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.b2b-shoppingcart__kitcomponent-acc .acco__content{flex-direction:row;margin-top:16px}.b2b-shoppingcart__comment-wrapper{width:300px;padding:5px 0 0 16px;display:flex;flex-direction:column;margin-bottom:15px}.b2b-shoppingcart__comment-label{display:flex;align-items:center;margin-bottom:10px}.b2b-shoppingcart__comment-input{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem;border:1px solid #b1b1b1;padding:10px;height:80px}@media only screen and (min-width: 48rem),print{.b2b-shoppingcart__comment-input{font-size:.9375rem}}.b2b-shoppingcart__grid-layout-bottom-buttons{width:100%;display:flex;justify-content:flex-end}.b2b-shoppingcart__grid-layout-bottom-buttons-container{display:flex;flex-direction:column;width:440.1px}.b2b-shoppingcart__grid-layout-bottom-buttons-top{padding:32px 0}.b2b-shoppingcart__grid-layout-bottom-buttons-proceed{max-width:unset !important;margin-left:unset}.b2b-shoppingcart__free-gift{color:#f37a1f}.b2b-shoppingcart__pagination-container{display:grid;grid-template-columns:.6fr .4fr;margin-top:16px;align-items:center}.b2b-shoppingcart__pagination-row-count-selector-wrapper{display:flex}.b2b-shoppingcart__pagination-row-count-selector-wrapper .total{padding-left:12px;align-self:center;font-size:1rem}.b2b-shoppingcart__pagination-row-count-selector-wrapper .form-field{width:-moz-fit-content;width:fit-content;display:flex;grid-template:unset;grid-template-columns:unset;min-width:unset;padding-right:12px;border-right:1px solid #b1b1b1}.b2b-shoppingcart__pagination-row-count-selector-wrapper .form-field__input{padding-left:8px;width:70px;height:32px;border:1px solid #b1b1b1;background-color:#fff}.b2b-shoppingcart__pagination-row-count-selector-wrapper .form-field__datalist{left:125px;top:31.5px;right:12px}.b2b-shoppingcart__pagination-row-count-selector-wrapper .form-field__datalist .dropdown_list{min-width:54px}.b2b-shoppingcart__pagination-row-count-selector-wrapper .form-field__datalist .dropdown_list .dropdown_list__item .tag_filter-2,.b2b-shoppingcart__pagination-row-count-selector-wrapper .form-field__datalist .dropdown_list .dropdown_list__item .list-anchor--fixed .list-anchor__link,.list-anchor--fixed .b2b-shoppingcart__pagination-row-count-selector-wrapper .form-field__datalist .dropdown_list .dropdown_list__item .list-anchor__link{padding:0 10px;height:32px}.b2b-shoppingcart__pagination-row-count-selector-wrapper .form-field__button{right:8px;height:32px}.b2b-shoppingcart__pagination-row-count-selector-wrapper .form-field__button::after{top:9px;right:10px;height:12px;width:12px}.b2b-shoppingcart__pagination-row-count-selector-wrapper .form-field__label{grid-area:unset;white-space:nowrap}.b2b-shoppingcart__pagination-row-count-selector-wrapper .form-field__label-text{margin:unset;font-size:1rem}.b2b-shoppingcart__pagination-row-count-selector-input{background-color:#fff !important;border:1px solid #b1b1b1}.b2b-shoppingcart__pagination-row-count-selector-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.b2b-shoppingcart__pagination-page-selection-container{display:flex;align-items:center;justify-content:flex-end;min-height:40px}.b2b-shoppingcart__pagination-page-selection-elements-container{height:32px;display:flex;align-items:center}.b2b-shoppingcart__pagination-page-selection-elements-text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;padding-left:4px;padding-right:4px}.b2b-shoppingcart__pagination-page-selection-elements-text:last-child{padding-right:unset}.b2b-shoppingcart__pagination-page-selection-elements-text:first-child{padding-left:unset}.b2b-shoppingcart__pagination-page-selection-elements-text .element{cursor:pointer}.b2b-shoppingcart__pagination-page-selection-elements-text .element.selected{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text-demi),Arial,sans-serif;font-size:1rem;text-decoration:underline}.b2b-shoppingcart__pagination-page-selection-selected{display:flex}.b2b-shoppingcart__pagination-page-selection-icon-wrapper{background-color:#000;cursor:pointer;display:flex;align-items:center;justify-content:center;height:32px;width:32px}.b2b-shoppingcart__pagination-page-selection-icon-wrapper-right{margin-left:16px}.b2b-shoppingcart__pagination-page-selection-icon-wrapper-left{margin-right:16px}.b2b-shoppingcart.updated{display:inline-flex;align-items:center;gap:8px}.b2b-shoppingcart.updated__arrows{display:flex;flex-direction:column;margin-left:-6px;margin-right:-6px}.b2b-shoppingcart.updated__arrows .arrowDownActive{margin-top:-3px}.b2b-shoppingcart.updated__arrows .arrowUpActive{margin-bottom:-3px}.b2b-shoppingcart.updated__arrows .arrowDown{margin-top:-3px}.b2b-shoppingcart.updated__arrows .arrowUp{margin-bottom:-3px}.b2b-shoppingcart__image-calendar-wrapper{display:flex;flex-direction:column;align-items:flex-start;background-color:#ededed;padding:5px 0 0 16px;margin-bottom:15px}.b2b-shoppingcart__image-calendar-wrapper-outer{display:flex;background-color:#fff;border:1px solid #b1b1b1;align-items:center;padding:5px}.b2b-shoppingcart__image-calendar-wrapper__calendar-icon{display:flex;background-image:url(stihl-styles/resources/icons/icon-calendar-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:var(--svg-filter-invert, none);width:16px;height:16px}.b2b-shoppingcart__image-calendar-wrapper .datepicker{width:262px;padding:0 0 0 10px;vertical-align:middle}.b2b-shoppingcart__image-calendar-wrapper__form-label{font-weight:bold}.b2b-shoppingcart__image-calendar-wrapper .react-datepicker-wrapper{width:100%}.b2b-shoppingcart__image-calendar-wrapper .react-datepicker-wrapper .react-datepicker__close-icon::after{background-color:#000}.job-info-icon-grid{display:grid;gap:32px 24px;grid-template-columns:repeat(2, 1fr);height:-moz-max-content;height:max-content}.job-detail-text:not(:first-child){margin-top:40px}.job-detail-text__headline{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25;margin-bottom:1.25rem}@media only screen and (min-width: 48rem),print{.job-detail-text__headline{font-size:1.625rem;line-height:1.2}}.job-detail-text ul{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.job-detail-text ul li{position:relative;padding:0 0 20px 14px;-webkit-hyphens:auto;hyphens:auto}.job-detail-text ul li::before{position:absolute;left:0;content:"•"}.job-detail-text ul li:last-child{padding-bottom:0}.job-detail-text ul ul,.job-detail-text ul ol{width:100%;padding-top:20px;padding-left:21px}.job-detail-text ul ul ul,.job-detail-text ul ul ol,.job-detail-text ul ol ul,.job-detail-text ul ol ol{padding-left:16px}.job-detail-description h2{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25;margin:2.5rem 0 1.25rem}@media only screen and (min-width: 48rem),print{.job-detail-description h2{font-size:1.625rem;line-height:1.2}}.job-detail-description ul{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.job-detail-description ul li{position:relative;padding:0 0 20px 14px;-webkit-hyphens:auto;hyphens:auto}.job-detail-description ul li::before{position:absolute;left:0;content:"•"}.job-detail-description ul li:last-child{padding-bottom:0}.job-detail-description ul ul,.job-detail-description ul ol{width:100%;padding-top:20px;padding-left:21px}.job-detail-description ul ul ul,.job-detail-description ul ul ol,.job-detail-description ul ol ul,.job-detail-description ul ol ol{padding-left:16px}.job-detail-description__introduction-text{display:none}@media only screen and (min-width: 48rem),print{.job-detail-description__introduction-text{display:block}}@media only screen and (min-width: 48rem),print{.job-detail-description__description-text{margin-top:1.25rem}}.campaign-in-list-teaser__wrapper{display:flex;flex-direction:column;border:1px solid #b1b1b1;width:100%;box-sizing:border-box;margin:10px 0}@media(min-width: 33.125rem){.campaign-in-list-teaser__wrapper{margin:unset}}@media only screen and (min-width: 48rem),print{.campaign-in-list-teaser__wrapper{position:relative;flex-direction:row;height:inherit;min-height:480px}}@media only screen and (min-width: 48rem),print{.campaign-in-list-teaser__image-wrapper{width:calc(50% - (1.25rem / 2))}}@media only screen and (min-width: 48rem),print{.campaign-in-list-teaser__image{width:100%}.campaign-in-list-teaser__image>img{height:100%;-o-object-fit:cover;object-fit:cover}}.campaign-in-list-teaser__content{display:flex;flex-direction:column;padding:20px}@media only screen and (min-width: 48rem),print{.campaign-in-list-teaser__content{position:absolute;padding:32px;bottom:40px;right:0;background-color:#fff;width:calc(66% - (32px * 2))}}.campaign-in-list-teaser__content .btn_highlight{min-width:unset}.campaign-in-list-teaser__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;margin-bottom:11px}.campaign-in-list-teaser__description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;margin-bottom:20px}@media only screen and (min-width: 48rem),print{.campaign-in-list-teaser__description{margin-bottom:32px}}.campaign-in-list-teaser__link{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;width:-moz-fit-content;width:fit-content}.campaign-in-list-teaser__link::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.campaign-in-list-teaser__link:hover::after{transform:translate3d(10px, -50%, 0)}.campaign-banner__single{margin-bottom:30px}@media only screen and (min-width: 48rem),print{.campaign-banner__single{margin-bottom:60px}}.campaign-banner__wrapper{display:flex;flex-direction:column;width:100%}@media only screen and (min-width: 48rem),print{.campaign-banner__wrapper{flex-direction:row;height:300px}}.campaign-banner__image-wrapper{order:1;height:100px}@media only screen and (min-width: 48rem),print{.campaign-banner__image-wrapper{order:2;width:50%;height:inherit}}.campaign-banner__image>img{height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.campaign-banner__content{order:2;display:flex;flex-direction:column;padding:20px;box-sizing:border-box;max-height:200px}@media only screen and (min-width: 48rem),print{.campaign-banner__content{order:1;justify-content:flex-end;width:50%;padding:32px;max-height:300px;background-color:#ededed}}.campaign-banner__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin-bottom:10px;text-align:center}@media only screen and (min-width: 48rem),print{.campaign-banner__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;margin-bottom:11px}}.campaign-banner__description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;margin-bottom:20px;max-height:100px;text-overflow:ellipsis;overflow:hidden}@media only screen and (min-width: 48rem),print{.campaign-banner__description{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;margin-bottom:32px;max-height:100px;text-overflow:ellipsis;overflow:hidden}}.campaign-banner__button-wrapper{display:flex;flex-direction:row}.campaign-banner__button-wrapper .btn_highlight{min-width:unset}.campaign-banner__button-wrapper .btn_highlight:not(:last-child){margin-right:20px}@media only screen and (max-width: 47.9375rem){.campaign-banner__button-wrapper .btn_highlight{height:45px}}.campaign-banner__button-wrapper .btn_outline-black{position:relative;background:linear-gradient(to bottom, transparent 50%, var(--color1) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:#000;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#000;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center;height:3.75rem;--outline-offset: 2px;width:100%;border-width:1px;border-style:solid;border-width:2px;min-width:unset !important}.campaign-banner__button-wrapper .btn_outline-black.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.campaign-banner__button-wrapper .btn_outline-black:hover{background-position:0 -100%}}.campaign-banner__button-wrapper .btn_outline-black.active{border-color:#000}@media(hover: hover)and (pointer: fine){.campaign-banner__button-wrapper .btn_outline-black:hover{border-color:#000}}.campaign-banner__button-wrapper .btn_outline-black:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.campaign-banner__button-wrapper .btn_outline-black.active{color:#fff}@media(hover: hover)and (pointer: fine){.campaign-banner__button-wrapper .btn_outline-black:hover{color:#fff}}@media(max-width: 63.9375rem){.campaign-banner__button-wrapper .btn_outline-black{width:100%}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.campaign-banner__button-wrapper .btn_outline-black:not(.full){min-width:calc(calc(45.5rem / 6) * 2);max-width:calc(calc(45.5rem / 6) * 3)}}@media only screen and (min-width: 64rem){.campaign-banner__button-wrapper .btn_outline-black:not(.full){min-width:calc(calc(61.5rem / 12) * 3);max-width:calc(calc(61.5rem / 12) * 4)}}.campaign-banner__button-wrapper .btn_outline-black.shrink{min-width:auto}@media only screen and (max-width: 47.9375rem){.campaign-banner__button-wrapper .btn_outline-black{height:45px}}.campaign-banner__slider{position:relative;margin-top:60px;margin-bottom:60px}@media only screen and (min-width: 48rem),print{.campaign-banner__slider:hover .swiper__next,.campaign-banner__slider:hover .swiper__prev{opacity:1;transition:opacity 1s}}@media only screen and (max-width: 47.9375rem){.campaign-banner__slider .swiper__prev{display:none}}@media only screen and (min-width: 48rem),print{.campaign-banner__slider .swiper__prev{opacity:0;position:absolute;left:0;top:135px;background-color:#000;z-index:90;width:32px;height:32px}.campaign-banner__slider .swiper__prev>svg{padding-top:3px;padding-right:2px}}@media only screen and (max-width: 47.9375rem){.campaign-banner__slider .swiper__next{display:none}}@media only screen and (min-width: 48rem),print{.campaign-banner__slider .swiper__next{opacity:0;position:absolute;right:0;top:135px;background-color:#000;z-index:90;width:32px;height:32px}.campaign-banner__slider .swiper__next>svg{padding-top:3px;padding-left:2px}}.usp-banner{background:#dadad9}.breadcrumb+.responsivegrid .usp-banner{margin-top:10px}@media only screen and (min-width: 48rem),print{.breadcrumb+.responsivegrid .usp-banner{margin-top:20px}}.usp-banner__list{display:grid;gap:20px;padding:10px}@media only screen and (min-width: 48rem),print{.usp-banner__list{grid-template-columns:repeat(2, 1fr)}}@media only screen and (min-width: 64rem){.usp-banner__list{grid-template-columns:repeat(3, 1fr);justify-items:center;padding:10px 20px}}.usp-banner--full .usp-banner__list{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.usp-banner--full .usp-banner__list{width:45.5rem}}@media print{.usp-banner--full .usp-banner__list{width:auto}}@media only screen and (min-width: 64rem){.usp-banner--full .usp-banner__list{width:61.5rem}}.usp-banner__item{display:flex;gap:10px;align-items:center}.usp-banner__img{width:50px;height:50px;flex-grow:0;flex-shrink:0}.usp-banner__text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}@media only screen and (min-width: 64rem){.usp-banner__text{text-align:center}}@media only screen and (max-width: 47.9375rem){.social-share{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}}.social-share__headline{margin-bottom:1rem}.social-share__list{display:flex;flex-wrap:wrap;gap:2px}.social-share__link{display:flex;align-items:center;justify-content:center;cursor:pointer;background:var(--social-media-bg);width:80px;height:80px}@media only screen and (min-width: 48rem),print{.social-share__link{width:90px;height:90px}}.social-share__link--mail{--social-media-bg: #B1B1B1}.social-share__link--whats-app{--social-media-bg: #25d366}.social-share__link--xing{--social-media-bg: #006567}.social-share__link--linked-in{--social-media-bg: #0077b5}.social-share__link--facebook{--social-media-bg: #3b5998}.social-share__link--twitter{--social-media-bg: white}.social-share__link--copy-clipboard{--social-media-bg: #505050}.social-share svg{width:30px;height:30px;fill:#fff}.newest-job-offer{margin-top:2em;grid-area:newest-job-offers}.newest-job-offer__headline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;margin-bottom:0;line-height:1.25em}.newest-job-offer__container{margin-top:0;display:grid;grid-template-columns:1fr 1fr 1fr;-moz-column-gap:.5em;column-gap:.5em}.newest-job-offer__sub-container{display:grid;gap:1em .35em;align-items:center}.newest-job-offer__sub-container__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-top:3.5em;margin-bottom:0;text-transform:uppercase;font-size:.8em}.newest-job-offer__sub-container__company-name{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;font-size:.8em}.newest-job-offer__sub-container__location{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.newest-job-offer__sub-container__redirect-url{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;font-size:.7em}.newest-job-offer-no-top-margin{margin-top:0}.job-card{display:grid;gap:20px;padding:24px;border:1px solid #dadada}@media only screen and (min-width: 48rem),print{.job-card{grid-template-columns:1fr 1fr 1fr;align-items:center;padding:24px 29px}}@media only screen and (min-width: 64rem){.job-card{grid-template-columns:2fr 1fr 1fr}}.job-card__title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.job-card__headline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.job-card__text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-top:8px}.job-quick-info-box{display:flex;flex-direction:column;gap:24px;padding:32px;border:1px solid #dadada}.job-quick-info-box h5{margin-bottom:4px}.job-quick-info-box p{-webkit-hyphens:auto;hyphens:auto}.job-header{margin-bottom:24px;position:relative}@media only screen and (min-width: 48rem),print{.job-header{height:320px}.job-header__image{position:absolute;right:0;-o-object-fit:cover;object-fit:cover}}.job-header__title-wrapper{padding:24px;background-color:#fff;border:1px solid #dadada;height:-moz-max-content;height:max-content}@media only screen and (min-width: 48rem),print{.job-header__title-wrapper{position:absolute;left:0;top:0;bottom:0;margin-top:auto;margin-bottom:auto;width:60%}}.job-header__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25;-webkit-line-clamp:3;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;margin:0}@media only screen and (min-width: 48rem),print{.job-header__title{font-size:1.625rem;line-height:1.2}}.job-hr-contact-module{display:flex;flex-direction:column;gap:20px}.job-hr-contact-module--headline{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2}.job-hr-contact-module--contactDetails{display:flex;flex-direction:row;gap:22px}.job-hr-contact-module--contactDetails--image_wrapper{border-radius:50%;background-color:#b1b1b1;width:65px;height:65px}.job-hr-contact-module--contactDetails--image{border-radius:50%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;width:65px;height:65px;display:inline-block}.job-hr-contact-module--contactDetails--information{display:flex;flex-direction:column}.job-hr-contact-module--contactDetails--information__name{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.job-hr-contact-module--contactDetails--information__contacts{display:flex;flex-direction:column}.job-hr-contact-module--contactDetails--information__contacts .email-section,.job-hr-contact-module--contactDetails--information__contacts .phone-section{display:flex;flex-direction:row;gap:20px}.job-hr-contact-module--contactDetails--information__contacts .email-section .phone,.job-hr-contact-module--contactDetails--information__contacts .phone-section .phone{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;color:#249abe;margin-top:0}.job-hr-contact-module--contactDetails--information__contacts .email-section .email,.job-hr-contact-module--contactDetails--information__contacts .phone-section .email{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;color:#249abe;margin-top:0}.job-hr-contact-module--contactDetails--information__contacts .email-section .icon-envelope,.job-hr-contact-module--contactDetails--information__contacts .phone-section .icon-envelope{background-image:url(stihl-styles/resources/icons/icon-envelope-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:var(--svg-filter-invert, none);min-width:1rem;margin-top:0}.job-hr-contact-module--contactDetails--information__contacts .email-section .icon-phone,.job-hr-contact-module--contactDetails--information__contacts .phone-section .icon-phone{background-image:url(stihl-styles/resources/icons/icon-phone-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:var(--svg-filter-invert, none);min-width:1rem;margin-top:0}@media only screen and (min-width: 48rem),print{.job-cta-module{display:grid;gap:24px;grid-template-columns:3fr 2fr}}@media print{.job-cta-module__apply-btn{display:none}}@media only screen and (min-width: 48rem),print{.job-cta-module__apply-btn{margin-top:60px}}.job-cta-module__text{display:none}@media only screen and (min-width: 48rem),print{.job-cta-module__text{display:block}}.guided-selling-content__wrapper{display:flex;flex-direction:column;max-height:532px}.guided-selling-content__top-section{display:grid;grid-template-columns:1fr;align-items:center;justify-content:space-between;margin-bottom:40px}@media only screen and (min-width: 48rem),print{.guided-selling-content__top-section{grid-template-columns:1fr 4fr 1fr}}.guided-selling-question__wrapper{display:flex;flex-direction:column;margin-bottom:20px}@media only screen and (min-width: 48rem),print{.guided-selling-question__wrapper{min-height:255px}}.guided-selling-question__wrapper .swiper__prev,.guided-selling-question__wrapper .swiper__next{opacity:0;position:absolute;top:calc(50% - 25px);background-color:#000;z-index:90;width:32px;height:32px;transition:opacity 1s}.guided-selling-question__wrapper .swiper__prev>svg,.guided-selling-question__wrapper .swiper__next>svg{padding-top:3px;padding-right:2px}.guided-selling-question__wrapper .swiper__prev{left:0}.guided-selling-question__wrapper .swiper__next{right:0}.guided-selling-question__wrapper:hover .swiper__next,.guided-selling-question__wrapper:hover .swiper__prev{opacity:1}.guided-selling-question__question{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;font-weight:bold;margin-bottom:20px}@media only screen and (min-width: 48rem),print{.guided-selling-question__question{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text-demi),Arial,sans-serif;font-size:1rem;margin-bottom:30px}}.guided-selling-question__success{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;font-weight:bold;margin-top:10px}@media only screen and (min-width: 48rem),print{.guided-selling-question__success{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text-demi),Arial,sans-serif;font-size:1rem}}.guided-selling-question__finished{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}@media only screen and (min-width: 48rem),print{.guided-selling-question__finished{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2}}.guided-selling-question__answers{display:flex;flex-direction:column;gap:20px}@media only screen and (min-width: 48rem),print{.guided-selling-question__answers{display:grid;grid-template-columns:repeat(4, 1fr)}}.guided-selling-question__answers-slider{display:flex;flex-direction:column}@media only screen and (min-width: 48rem),print{.guided-selling-question__answers-slider{display:grid;grid-template-columns:repeat(4, 1fr);gap:20px}}.guided-selling-question__answers-slide{position:relative}.guided-selling-question__answer-wrapper{position:relative;display:grid}.guided-selling-question__answer{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text-demi),Arial,sans-serif;font-size:1rem;display:flex;flex-direction:column;background-color:#fff;cursor:pointer;max-height:260px}.guided-selling-question__answer.with-image{border-bottom:1px solid #b1b1b1}.guided-selling-question__answer.without-image{border:1px solid #b1b1b1}.guided-selling-question__answer--text{display:flex;gap:10px;align-items:center;min-height:60px;padding:0 20px}.guided-selling-question__answer--picture{flex-grow:1;max-height:200px}.guided-selling-question__answer--image{-o-object-fit:cover;object-fit:cover;height:100%;width:100%}.guided-selling-controls__wrapper{display:flex;flex-direction:column}@media only screen and (min-width: 48rem),print{.guided-selling-controls__wrapper{flex-direction:row;justify-content:space-between;align-items:center}.guided-selling-controls__wrapper.first-step{justify-content:flex-end}}.guided-selling-controls__wrapper .btn_highlight{min-width:unset}@media only screen and (min-width: 48rem),print{.guided-selling-controls__wrapper .btn_highlight{max-width:240px}}.guided-selling-controls__wrapper .btn_highlight:disabled{background:#dadada;border-color:#dadada}.guided-selling-controls__reset-button{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;padding:0;display:flex;flex-direction:row;align-items:center}.guided-selling-controls__reset-button>svg{margin-right:10px;transform:scaleY(-1) rotate(90deg)}.guided-selling-controls__progress-bar{display:flex;grid-column-start:1;justify-content:space-between}@media only screen and (min-width: 48rem),print{.guided-selling-controls__progress-bar{grid-column-start:2}}.guided-selling-controls__progress-step:not(:first-child){position:relative;flex:1;display:flex;justify-content:flex-end;align-items:center}.guided-selling-controls__progress-step:not(:first-child)::before{content:"";position:absolute;width:calc(100% - 18px);right:18px;border:1px solid #505050}@media only screen and (min-width: 48rem),print{.guided-selling-controls__progress-step:not(:first-child)::before{width:calc(100% - 30px);right:30px}}.guided-selling-controls__progress-step:not(:first-child).active::before,.guided-selling-controls__progress-step:not(:first-child).complete::before{border-color:#f37a1f}.guided-selling-controls__progress-icon{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;position:relative;display:flex;align-items:center;justify-content:center;border:2px solid #505050;width:14px;height:14px;border-radius:14px;font-size:.6875rem;-webkit-user-select:none;-moz-user-select:none;user-select:none}@media only screen and (min-width: 48rem),print{.guided-selling-controls__progress-icon{width:26px;height:26px;border-radius:26px;font-size:1.25rem}}.active .guided-selling-controls__progress-icon,.complete .guided-selling-controls__progress-icon{border-color:#f37a1f;background-color:#f37a1f;color:#fff}@media only screen and (min-width: 48rem),print{.complete .guided-selling-controls__progress-icon{background-color:rgba(0,0,0,0);color:#f37a1f;cursor:pointer}}.guided-selling-controls__previous-button{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;font-size:.875rem;padding:0;display:flex;flex-direction:row;align-items:center;margin-bottom:20px}@media only screen and (min-width: 48rem),print{.guided-selling-controls__previous-button{font-size:1rem;margin-bottom:0}}.guided-selling-controls__previous-button:hover>svg{animation:animateLeftArrow .2s forwards}.guided-selling-controls__previous-button>svg{margin-right:3px}@media only screen and (min-width: 48rem),print{.guided-selling-controls__previous-button>svg{margin-right:8px}}.campaign-guided-selling{margin:30px 0}@media only screen and (min-width: 48rem),print{.campaign-guided-selling{margin:60px 0}}.campaign-guided-selling__wrapper{display:flex;flex-direction:column;background-color:#ededed;padding:0;align-items:center;justify-content:space-between;min-height:180px}@media only screen and (min-width: 48rem),print{.campaign-guided-selling__wrapper{flex-direction:row;padding:0 20px;min-height:120px}}.campaign-guided-selling__headline{margin:0;padding:20px}@media only screen and (min-width: 48rem),print{.campaign-guided-selling__headline{padding:28px 0}}.campaign-guided-selling__headline--main{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;display:block}@media only screen and (min-width: 48rem),print{.campaign-guided-selling__headline--main{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2}}.campaign-guided-selling__headline--secondary{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;display:block;margin-top:10px}.campaign-guided-selling__button--icon{display:flex;align-items:center;justify-content:center;background-color:#fff;margin-left:20px;width:32px;height:32px;border-radius:32px}.campaign-guided-selling__button--icon-svg{transform:rotateX(0deg);transition:transform 250ms}.campaign-guided-selling__button--icon-svg.is-expanded{transform:rotateX(180deg)}.campaign-guided-selling__reset--icon-svg{margin-right:20px;transform:scaleY(-1) rotate(90deg)}.campaign-guided-selling__content{height:0;transition:height 250ms,margin 250ms;overflow:hidden}@media only screen and (min-width: 48rem),print{.campaign-guided-selling__content{background-color:#ededed}}.campaign-guided-selling__content.is-expanded{margin-top:5px}.campaign-guided-selling__content--inner{padding-top:30px;padding-bottom:20px}@media only screen and (min-width: 48rem),print{.campaign-guided-selling__content--inner{padding:30px 20px}}.search-grid-headline__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#000;font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;margin-bottom:30px}@media only screen and (min-width: 48rem),print{.search-grid-headline__title{font-size:1.875rem;line-height:1.3}}.search-grid-headline__title::after{display:block;content:"";background-color:#000}.search-grid-headline__title::after{width:23px;height:5px;margin-top:10px;background:#000}@media only screen and (min-width: 48rem),print{.search-grid-headline__title::after{width:34px;height:7px;margin-top:15px;background:#000}}.search-grid-headline__title:first-child{margin-top:20px}.search-grid-headline__term{color:#f37a1f}.m_search-filter{padding-bottom:60px}@media only screen and (min-width: 48rem),print{.m_search-filter{padding-bottom:unset}}@media only screen and (max-width: 47.9375rem){.m_search-filter--ssr{display:none}}.m_search-filter__headline{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;display:flex;align-items:center;justify-content:center;padding:0 20px 30px;margin:0;height:45px}@media only screen and (min-width: 48rem),print{.m_search-filter__headline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;justify-content:flex-start}}.m_search-filter__headline--text{margin-left:15px;line-height:1}.m_search-filter__headline--sticky{padding:0 0 0 20px;border:none}.m_search-filter__group{overflow:hidden}.m_search-filter__group~.m_search-filter__group .acco{border-top:unset}.m_search-filter__group .acco{width:auto;border-top:1px solid #b1b1b1;min-height:2.8125rem}.m_search-filter__group .acco__tab{padding:.75rem 1.25rem;justify-content:space-between;font-size:1rem;min-height:2.8125rem}.m_search-filter__group .acco__tab-icon-plus::after{position:relative;right:unset;height:14px;width:14px;min-width:14px;transition:transform 250ms}.m_search-filter__group .acco__inner{padding:0 1.25rem;width:auto}.m_search-filter__group .acco__label{margin:0}.m_search-filter__group .acco--open .acco__tab-icon-plus::after{transform:rotate(45deg)}.m_search-filter__entry{font-size:.875rem;padding-top:1.0714285714em}.m_search-filter__entry:last-child{padding-bottom:1.4285714286em}.m_search-filter__entry.checkbox .checkbox__mark{height:1em;width:1em;border-radius:3px}.m_search-filter__entry.checkbox .checkbox__mark::after{height:.7142857143em;width:.7142857143em}.m_search-filter__entry.checkbox.checked.standard .checkbox__mark::after{height:.7142857143em;width:.7142857143em}.m_search-filter__sort-and-filter{height:100%;flex:1}.m_search-filter__sort-and-filter--btn{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;display:flex;justify-content:center;align-items:center;gap:.9375rem;border:1px solid #000;height:100%;width:100%;padding:0}.m_filter-bar--stuck .m_search-filter__sort-and-filter--btn{border:none}.overlay.overlay--sidebar .m_search-filter__overlay--inner{margin:0}.m_search-filter__overlay--button{position:fixed;bottom:0;z-index:20}.m_search-filter__group-title-facet{display:flex;flex-direction:row;align-items:center}.m_search-filter__group-title-sort{display:flex;flex-direction:row;align-items:baseline}.m_search-filter__qty-icon{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:flex;justify-content:center;height:15px;width:15px;background:#f37a1f;border-radius:50%;border:2px solid #f37a1f;color:#fff}.m_search-filter__qty-icon.acco_overlay{margin-left:10px}.m_search-filter__selected-sort{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;margin-left:10px}.m_featured-products__wrapper{display:flex;flex-direction:column}@media only screen and (min-width: 48rem),print{.m_featured-products__wrapper{margin-top:10px;align-items:center}}.m_featured-products__tile{display:flex;padding:1.25rem;border-bottom:1px solid #b1b1b1;background:#fff;box-sizing:border-box;cursor:pointer;position:relative;height:100%;border:1px solid #b1b1b1;padding:0}.m_featured-products__tile:has(a.sr-only:focus-visible){outline:var(--outline-width) solid var(--outline-color)}.column-control .m_featured-products__tile{height:100%}@media only screen and (max-width: 47.9375rem){.column-control .swiper-slide .m_featured-products__tile{padding-left:0;padding-right:0}}.m_featured-products__tile__wrapper{display:flex;flex-direction:column;justify-content:space-between;flex:1}.m_featured-products__tile__section{display:flex;flex-direction:column}.m_featured-products__tile__product-link{position:absolute;top:0;left:0;right:0;height:100%;z-index:1}.m_featured-products__tile__flags{display:flex;flex-wrap:wrap;min-height:25px;max-height:50px;padding-bottom:10px}.m_featured-products__tile__flags button{z-index:3}.m_featured-products__tile__flags>*{position:relative}.m_featured-products__tile__image-wrapper{width:100%;margin:0 auto}.m_featured-products__tile__label{height:24px;margin-bottom:8px}.m_featured-products__tile__title{margin-bottom:12px;z-index:2}.m_featured-products__tile__title-inner{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;margin-bottom:0}.m_featured-products__tile__category{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:block;margin-top:2px}.m_featured-products__tile__subline{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-bottom:15px}.recommended .m_featured-products__tile__subline{flex:1}.m_featured-products__tile__status{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:flex;margin-bottom:15px}.m_featured-products__tile__status .icon-svg{flex-shrink:0;margin-right:10px}.m_featured-products__tile__status .icon-svg.circle{margin-top:2px}.m_featured-products__tile__price-info{display:inline-flex;flex-direction:column;width:100%}.m_featured-products__tile__commerce-info{margin-top:auto;display:flex;align-items:flex-end;justify-content:space-between;gap:.625rem}.m_featured-products__tile__commerce-info--no-price{justify-content:flex-end;align-items:center}.m_featured-products__tile__buy-button{margin-right:0;flex-shrink:0;z-index:2}.m_featured-products__tile__button-label{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.m_featured-products__tile__unit-price{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}.m_featured-products__tile__info-wrapper{display:flex;flex-flow:column;flex-grow:1;justify-content:space-between}@media only screen and (min-width: 48rem),print{.column-control--has-cta .m_featured-products__tile__info-wrapper--no-cta{margin-bottom:81px}}.column-control--has-cta .swiper-slide .m_featured-products__tile__info-wrapper--no-cta{margin-bottom:81px}.m_featured-products__tile__cta-box{background:#ededed;padding:16px;height:100%;margin-top:20px;min-height:62px;display:flex;align-items:center;box-sizing:border-box;z-index:2}.m_featured-products__tile__cta-box span{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.m_featured-products__tile__cta-box span::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.m_featured-products__tile__cta-box span:hover::after{transform:translate3d(10px, -50%, 0)}.m_featured-products__tile__cta-button{z-index:2}.m_featured-products__tile .m_featured-products__tile__info-wrapper{background-color:#ededed;padding:0 20px 20px}.promotion-articles .list-product-url-wrapper-article__flag{align-items:flex-start}.address-suggestion{position:absolute;right:0}.address-suggestion__form-field{display:flex;flex-direction:column}.address-suggestion__autofill-btn.btn_highlight{padding:1em;min-width:auto !important}.address-suggestion__autofill-btn:disabled{background:#dadada !important;color:#b1b1b1 !important}.address-suggestion__lookup-btn.btn_highlight{margin-top:15px;min-width:-moz-fit-content;min-width:fit-content;max-height:2em}.overlay-address-suggestion-btn-wrapper{display:inline-grid;grid-template-columns:1fr 1fr;grid-gap:1.25rem;margin-top:30px}.overlay-address-suggestion__headline-text{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;padding-bottom:10px}.overlay-address-suggestion__headline-desc{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.overlay-address-suggestion__list{margin-top:20px;border:0 solid #000}.address-suggestion-list__content{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;justify-content:space-between;margin-top:20px;display:grid;grid-template-columns:3.5fr 1fr}.address-suggestion-list__option{padding:2px}.address-suggestion-list__suggestions{background:#ededed;max-height:140px;overflow:scroll;flex:0 0 50%}.address-suggestion-list__display-address{margin-left:1em}.payment-request .form-field__input,.payment-request .form-field__datalist{grid-area:unset}.payment-request__tooltip{text-transform:lowercase;padding:20px}.payment-request__tooltip.tooltip.t-border.open.t-bg-default,.payment-request__tooltip.tooltip.t-border.close.t-bg-default{visibility:unset !important}.payment-request__tooltip>div>span::first-letter{text-transform:uppercase}.payment-request__overlay{text-align:center}.payment-request__overlay-link{display:flex;justify-content:center;cursor:pointer;font-weight:bold;-moz-column-gap:.5em;column-gap:.5em}.payment-request__overlay .success-dialog__header{display:flex;align-items:center;justify-content:center;-moz-column-gap:.5em;column-gap:.5em}.payment-request__calendar-wrapper{display:flex;flex-direction:row;justify-content:space-between;align-items:center;background-color:#ededed}.payment-request__calendar-wrapper--datepicker{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;width:100%;text-align:center;margin-left:10px}.payment-request__calendar-wrapper--calendar-icon{background-image:url(stihl-styles/resources/icons/icon-calendar-16.svg);background-position:center;width:auto;background-repeat:no-repeat;height:1rem;background-size:1rem;filter:var(--svg-filter-invert, none);width:50px;height:50px}.payment-request__top-container{max-width:984px;margin:0 auto;padding-top:50px}.payment-request__top-container .acco__tab-title,.payment-request__top-container .payment-request__title{text-transform:uppercase}.payment-request__grid{display:grid;grid-template-columns:repeat(5, 1fr);margin-bottom:15px;min-height:120px;border:1.5px solid #dadada !important}.payment-request__grid-cell{display:flex;flex-direction:column;justify-content:center;padding:0 20px;gap:10px}.payment-request__grid-cell:first-child{background-color:#ededed}.payment-request__grid-cell__wide{grid-column-start:span 2}.payment-request__grid-cell--justify{justify-content:space-between;display:flex}.payment-request__grid-cell--title{text-transform:uppercase;display:flex;gap:10px}.payment-request__error{background-color:rgba(212,59,59,.2);padding:10px 20px;margin-bottom:15px}.payment-request__error--message{margin-bottom:unset}.payment-request__button{display:flex;flex-direction:row-reverse;gap:30px;align-items:center}.payment-request__button>a{cursor:pointer}.payment-request__button>a>svg{vertical-align:middle;margin-right:6px}.payment-request__button>a>span{font-weight:bold;text-transform:uppercase}.payment-request__dropdown{grid-template:none;grid-template-columns:none;justify-items:unset;align-items:unset;min-width:90%}.payment-request__top-bar-wrapper{border-top:1px solid #b1b1b1;padding-top:10px;display:flex;justify-content:space-between}.payment-history__table-outer table{width:100% !important}.open-transactions-payment.saved-scheduled-overlay{width:unset !important}.open-transactions-payment.description{padding-top:20px}.open-transactions-payment.download-wrapper{cursor:pointer}.open-transactions-payment.download-wrapper>a{box-shadow:none}.open-transactions-payment.total-amount-wrapper{border:1px solid #ededed;height:54px;display:flex;justify-content:space-between}.open-transactions-payment.total-amount-wrapper.end{justify-content:end}.open-transactions-payment.payment-info{display:inline-flex;gap:4px;padding:16px 0;margin-left:16px}.open-transactions-payment.payment-info>div{font-weight:bold}.open-transactions-payment.payment-info>.count,.open-transactions-payment.payment-info .total{border-right:1px solid #ededed;padding-right:12px;margin-right:12px}.open-transactions-payment.totals{display:inline-flex}.open-transactions-payment.total-amount{font-weight:bold;margin-right:16px}.open-transactions-payment.total-line{padding:16px 0;display:flex;gap:4px}.open-transactions-payment.total-line>.icon{margin-top:1px}.open-transactions-payment.total-line>svg{margin-right:4px;height:18px}.open-transactions-payment.total-line>div{font-weight:bold}.open-transactions-payment.total-line.total-amount-scheduled{margin-right:12px;border-right:1px solid #ededed;padding-right:12px;padding-top:initial}.payment-table-overlay__overlay{text-align:center;gap:50px;display:flex;flex-direction:column}.payment-table-overlay__buttons{display:flex;gap:50px}.bv-reviews{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem;padding:0 .625rem;margin-top:5rem;margin-bottom:2.5rem}@media print{.bv-reviews{display:none}}@media only screen and (min-width: 64rem){.bv-reviews{margin-top:5.625rem}}@media print{.bv-reviews{margin-top:2.5rem}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.bv-reviews{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.bv-reviews{width:45.5rem}}@media print{.bv-reviews{width:auto}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem)and (min-width: 64rem){.bv-reviews{width:61.5rem}}.back-to-top{position:fixed;width:4rem;height:4rem;bottom:2rem;right:2rem;border-radius:50%;box-shadow:0 1px 3px 0 rgba(0,0,0,.3),0 4px 8px 3px rgba(0,0,0,.15);background-color:#fff;cursor:pointer}.back-to-top__icon{margin:auto;background:url(stihl-styles/resources/icons/icon-arrow-up-16.svg) no-repeat center;width:1rem;height:1rem}.article-search-overlay__table-cell{background-color:#fff;border-right:1px solid #dadada;border-left:1px solid #dadada;border-bottom:1px solid #dadada;padding:8px;white-space:nowrap;font-size:.9375rem}.article-search-overlay__table-cell .prices{text-align:right;font-size:.875rem}.article-search-overlay__table-cell .total{text-align:right;font-weight:bold;font-size:.9375rem}.article-search-overlay__table-cell:last-of-type{border-right:1px solid #dadada;border-bottom:1px solid #dadada}.article-search-overlay__table-cell:has(.m_quick-order-overlay__quantity--relative-tooltip){width:40px}.article-search-overlay__table-cell:has(.availability-wrapper){width:155px}@media only screen and (height <= 768px){.article-search-overlay__table-max-height{max-height:43vh}}@media only screen and (height >= 768px){.article-search-overlay__table-max-height{max-height:46vh}}@media only screen and (height >= 900px){.article-search-overlay__table-max-height{max-height:54vh}}@media only screen and (height >= 1024px){.article-search-overlay__table-max-height{max-height:59vh}}@media only screen and (height >= 1080px){.article-search-overlay__table-max-height{max-height:62vh}}.article-search-overlay__table-max-height--non-multi-selection{max-height:62vh}.article-search-overlay__ETA{font-size:.75rem}.article-search-overlay__ETA--value{font-weight:bold}.article-display__overflow{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:200px;position:relative;font-size:.875rem}.article-display__overflow+.article-display__tooltip{visibility:hidden;background-color:#555;color:#fff;text-align:center;border-radius:5px;padding:5px;position:absolute;z-index:1;opacity:0;transition:opacity .3s;font-size:.7rem;left:200px;top:25px}.article-display__overflow:hover+.article-display__tooltip{visibility:visible;opacity:1}.b2b-bank-accounts__error{text-align:center}.b2b-bank-accounts__buttons{margin-top:30px}.b2b-bank-accounts.radio-wrapper{display:flex;justify-content:center}.b2b-bank-accounts.radio-wrapper .radiobutton__icon{margin-right:0}.b2b-bank-accounts.form-field{display:flex;flex-direction:column;align-items:unset;font-size:unset;margin-top:10px}.b2b-bank-accounts.form-field .form-field__label>.form-field__label-text{margin:unset;font-weight:bold}.b2b-bank-accounts.form-headline{margin-bottom:40px;text-transform:uppercase}.m_shopping-cart-error-bar{background-color:#eebcbd;display:flex;align-items:center;height:54px}.m_shopping-cart-error-bar .number-info{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;padding:.5rem;display:flex;align-items:center}.m_shopping-cart-error-bar .number-info--bold{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.m_shopping-cart-error-bar .number-info>:first-child{margin-right:.5rem}.m_shopping-cart-error-bar .toggle{display:flex;align-items:center}.m_shopping-cart-error-bar .toggle__text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}.cmp-horizontal-line{border-bottom:1px solid #b1b1b1;margin:0}.knowledge-article{display:grid;row-gap:1em;margin-bottom:.5em}.knowledge-article__error{color:#d43b3b;margin-top:10px}.knowledge-article__category{background-color:#f37a1f}.knowledge-article__radios{display:flex;gap:40px;margin:10px 0 20px}.knowledge-article__radios .radio{margin-left:2px}.knowledge-article__radios .radio>label>.radiobutton__text>p{text-transform:lowercase}.knowledge-article__comment{border:solid 1px #000;padding:10px;resize:none}.knowledge-article__comment-label{margin:10px 0}.knowledge-article__close-button{max-width:-moz-fit-content !important;max-width:fit-content !important;min-width:unset !important;padding:0 24px;max-height:48px}.knowledge-article__close-button.orange{position:relative;background:linear-gradient(to bottom, #F37A1F 50%, #000 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:rgba(0,0,0,0)}.knowledge-article__close-button.orange.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.knowledge-article__close-button.orange:hover{background-position:0 -100%}}.knowledge-article__close-button.orange.active{border-color:rgba(0,0,0,0)}@media(hover: hover)and (pointer: fine){.knowledge-article__close-button.orange:hover{border-color:rgba(0,0,0,0)}}.knowledge-article__close-button.orange:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.knowledge-article__filters{border-bottom:none}.knowledge-article__filters>.acco__tab-icon-arrow-down::after{position:relative;left:15px;top:-1px}.knowledge-article__layout-overlay::before,.knowledge-article__layout-overlay::after{justify-content:left}.knowledge-article__item{margin-top:1em;border:1px solid #b1b1b1;padding:1em;display:grid;row-gap:8px;cursor:pointer}.knowledge-article__item-headline{font-size:medium;font-weight:bold;margin:0;text-transform:none}.knowledge-article__item-sub-headline{font-size:medium}.knowledge-article__item__inner-wrapper{display:flex}.knowledge-article__item__inner-wrapper-calendar-wrapper{display:flex;gap:40px;align-items:center}.knowledge-article__item__inner-wrapper-calendar-wrapper-date{display:flex;gap:.5em;font-weight:bold;font-size:medium;align-items:baseline}.knowledge-article__item__inner-wrapper-banner{color:#fff;background-color:#f37a1f;padding:.35em;text-transform:uppercase;font-weight:bold;font-size:smaller;line-height:normal}.knowledge-article__item-overlay{padding:1em;display:grid;row-gap:.25em;cursor:pointer}.knowledge-article__item-overlay-headline{font-size:medium;font-weight:bold;margin:0;text-transform:none}.knowledge-article__item-overlay-sub-headline{font-size:medium}.knowledge-article__item-overlay__inner-wrapper{display:flex;gap:1em;margin-bottom:1.5em}.knowledge-article__item-overlay__inner-wrapper-calendar-wrapper{display:flex;gap:40px;align-items:center}.knowledge-article__item-overlay__inner-wrapper-calendar-wrapper-date{display:flex;gap:.5em;font-weight:bold;font-size:medium;align-items:baseline}.knowledge-article__item-overlay__inner-wrapper-banner{color:#fff;background-color:#f37a1f;padding:.35em;text-transform:uppercase;font-weight:bold;font-size:smaller}.knowledge-article__item-overlay__content{margin-bottom:1.5em;font-size:.875rem;margin-left:.5em}.knowledge-article__item-overlay__content.border{border:solid 1px #dadada;padding:20px;margin-left:unset}.knowledge-article__item-overlay__content.border>h4{margin-bottom:10px}.knowledge-article__item-overlay__content.border>button{margin-top:10px;padding:0 24px;max-height:48px;min-width:unset !important;max-width:-moz-fit-content !important;max-width:fit-content !important}.knowledge-article__item-overlay__associated-products{margin-bottom:1em}.filters-top-bar{min-height:54px;display:inline-flex}.filters-top-bar__checkbox{display:inline-flex;grid-gap:8px;font-size:1rem;line-height:1.2rem}.filters-top-bar__action{padding:16px 0;margin:0 24px 0 16px;text-wrap:nowrap}.filters-top-bar__items{line-height:1.5rem;padding:16px 0}.filters-top-bar__items>*{margin-right:24px}.filters-top-bar__items .filter{display:inline-block;margin-top:.2rem}.filters-top-bar__items .filter-value{margin-left:4px}.job-filters__header{width:100%;position:relative}@media only screen and (min-width: 48rem),print{.job-filters__header{position:relative;padding-bottom:calc((1 / 3)*100%)}}.job-filters__filter-container{display:flex;flex-direction:column;gap:16px;z-index:2;padding-bottom:0}@media only screen and (min-width: 48rem),print{.job-filters__filter-container{display:flex;gap:12px;flex-direction:row;margin-top:20px}}@media only screen and (min-width: 48rem),print{.job-filters__filter-container .multiselect-dropdown{min-width:180px}}.job-filters__text-wrapper{width:-moz-max-content;width:max-content;max-width:calc(100% - 88px);height:-moz-max-content;height:max-content;position:relative;padding:24px;margin:20px}@media only screen and (min-width: 48rem),print{.job-filters__text-wrapper{margin:0;max-width:calc(100% - 120px);position:absolute;padding:30px;right:30px;bottom:30px}}.job-filters__text-wrapper--white-bg{background:#fff}.job-filters__search-button{margin-top:25px;padding:0 20px;min-width:130px !important;height:47px}.search-input{display:flex;flex-direction:row}.search-input__field{height:32px;width:360px;justify-content:space-between;border:2px solid #252525;display:flex}.search-input__field--top-bar{align-self:center;background-color:#fff}.search-input__field .buttons{align-content:center}.search-input__field .buttons>*{vertical-align:middle;margin-top:.4375rem}.search-input__field .search-term{padding:0 8px;height:32px;background-color:unset;width:80%;outline-width:0}.search-input__field .search-icon{padding-inline-end:8px}.search-input__field.global-search{background-color:#fff}.sets-overlay__description{margin-bottom:2.5rem;text-align:justify}.sets-overlay__error-message{margin:.625rem 0;color:#d43b3b}.sets-overlay__buttons{margin-top:3.125rem;display:flex;gap:1.875rem}.sets-overlay__buttons .continue{min-width:7.125rem !important;max-width:-moz-fit-content;max-width:fit-content}.sets-overlay__buttons .cancel{min-width:6.0625rem !important;max-width:-moz-fit-content;max-width:fit-content;background:linear-gradient(to bottom, rgba(72, 156, 199, 0) 50%, #000 50%) 0 0/200% 200%;color:#000;border:1px solid #000}.sets-overlay__wrapper{width:40.625rem;max-height:50.625rem}.sets-overlay__parent{display:flex;margin:1.5625rem 0 .625rem 0}.sets-overlay__parent .value{font-weight:bold}.sets-overlay__parent .set-checkbox{margin:.625rem .625rem 0 0}.sets-overlay__parent .set-checkbox>.checkbox__mark{width:1.25rem;height:1.25rem}.sets-overlay__parent .relation-description{margin-bottom:.625rem;font-weight:bold}.sets-overlay__parent .serial,.sets-overlay__parent .articleDescription,.sets-overlay__parent .article,.sets-overlay__parent .type{display:grid}.sets-overlay__parent .serial:not(:last-child),.sets-overlay__parent .articleDescription:not(:last-child),.sets-overlay__parent .article:not(:last-child),.sets-overlay__parent .type:not(:last-child){margin-right:1.25rem}.sets-overlay__parent .info__headline--overlay{display:flex;margin-bottom:1rem}.sets-overlay__parent .info__details--overlay-internal,.sets-overlay__parent .info__details--overlay-external{display:flex;margin-bottom:.625rem}.tab-navigation{display:flex;margin-top:.625rem;padding-left:3.125rem}.tab-content{border-top:1px solid #b1b1b1;display:flex;justify-content:space-between}.refine-message{height:100px;width:50%;margin:auto;text-align:center}.refine-message span{display:block;color:#505050;padding:.625rem;background-color:#ededed}.search-navi-flyout{--close-flyout-btn-height: 2.8125rem;--search-input-height: 6.8125rem;--elements-on-page-height: var(--close-flyout-btn-height) - var(--search-input-height) - var(--header-height);position:absolute;z-index:2147483640;height:calc(100vh - var(--header-height));max-height:calc(100vh - var(--header-height));overflow-y:hidden;top:0;bottom:auto;margin:auto;background-color:rgba(0,0,0,.4)}.search-navi-flyout__suggest-container-b2b{margin:0 auto;padding:0 8px;height:auto}@media only screen and (min-width: 64rem){.search-navi-flyout__suggest-container-b2b{max-width:96rem;padding:0}}.search-navi-flyout__suggest-container-b2b .tab-content,.search-navi-flyout__suggest-container-b2b .refine-message{margin:0 auto;padding:20px 0 30px}.search-navi-flyout__suggest-container-b2b .tab-content{max-height:60vh;overflow:auto}.search-navi-flyout__suggest-container-b2b .tab-bar_header.overlap{margin:0}@media only screen and (min-width: 64rem){.search-navi-flyout__suggest-container-b2b .tab-bar_header.overlap{margin:0 2.46875rem -0.0625rem}}.search-suggest__content .grid-container{display:grid;grid-template-columns:repeat(3, 1fr)}.search-suggest__list-view{max-height:470px;overflow-y:auto;scrollbar-gutter:stable both-edges;scrollbar-width:none;background:linear-gradient(white 30%, rgba(255, 255, 255, 0)) center top/350px 240px no-repeat,linear-gradient(rgba(255, 255, 255, 0), white 70%) center bottom/350px 240px no-repeat,radial-gradient(farthest-side at 50% 0, rgb(210, 210, 210), rgba(0, 0, 0, 0)) center top/350px 240px no-repeat,radial-gradient(farthest-side at 50% 100%, rgb(210, 210, 210), rgba(0, 0, 0, 0)) center bottom/350px 240px no-repeat;background-repeat:no-repeat;background-size:100% 40px,100% 40px,100% 20px,100% 20px;background-attachment:local,local,scroll,scroll}.search-suggest__buttons-wrapper{margin:30px 0 0}.search-suggest__headline{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2;padding:36px 16px 0;color:#666;font-weight:bold}.search-suggest__headline div{padding-bottom:12px;border-bottom:1px solid #b1b1b1}.search-suggest__headline span{padding-left:8px}.search-suggest__content{display:flex;height:-moz-fit-content;height:fit-content;flex-direction:column;justify-content:space-between;width:100%}.search-suggest__list li{margin:0 8px;cursor:pointer}.search-suggest__list li:nth-child(even){background:#ededed}.search-suggest__show-all{padding:0 1rem}.search-suggest__show-all a{margin:auto;text-transform:uppercase;font-size:16px;font-weight:bold}.search-suggest__entry--link{display:flex;flex-direction:column;justify-content:center}.search-suggest__entry--link--more-indicator{font-size:24px}.list-container:not(.last-list-container),.search-suggest__headline:not(.last-list-container){border-right:1px solid #b1b1b1}.shopping-cart{width:100%}.shopping-cart__loader{min-height:300px}.shopping-cart__empty-cart{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;margin-top:50px;margin-bottom:50px;margin-left:10px}@media only screen and (min-width: 48rem),print{.shopping-cart__empty-cart{margin-top:60px;margin-bottom:60px}}.shopping-cart__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;display:inline-block;position:relative;margin-bottom:30px;padding:0 10px}.shopping-cart__title .label-circle-tooltip{position:absolute;top:50%;right:-20px;transform:translateY(-50%)}@media only screen and (max-width: 47.9375rem){.shopping-cart .tooltip{width:calc(100vw - 80px)}}.shopping-cart__summary-wrapper.lite{display:flex;justify-content:space-between;margin-bottom:20px}@media(max-width: 63.9375rem){.shopping-cart__summary-wrapper.lite{display:flex;flex-direction:column-reverse}}@media only screen and (max-width: 47.9375rem){.shopping-cart__summary-wrapper.lite{margin-top:40px}}.shopping-cart__bottom-cart-buttons{display:flex;flex-direction:row;justify-content:space-between}@media only screen and (max-width: 47.9375rem){.shopping-cart__bottom-cart-buttons{flex-direction:column}.shopping-cart__bottom-cart-buttons>:not(:last-child){margin-bottom:10px}}.shopping-cart__bottom-cart-buttons-update-button{min-width:202px}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.shopping-cart__bottom-cart-buttons-update-button{min-width:283px;max-width:283px}}@media only screen and (max-width: 47.9375rem){.shopping-cart__bottom-cart-buttons-update-button{width:100%;min-width:unset;max-width:unset}}.shopping-cart__bottom-cart-buttons-proceed-button{width:440.1px}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.shopping-cart__bottom-cart-buttons-proceed-button{min-width:337px;max-width:337px}}@media only screen and (max-width: 47.9375rem){.shopping-cart__bottom-cart-buttons-proceed-button{width:100%;min-width:unset;max-width:unset}}.shopping-cart__summary-wrapper{display:flex;margin-top:60px}@media only screen and (max-width: 47.9375rem){.shopping-cart__summary-wrapper{flex-flow:column-reverse}.list-shopping-cart+.shopping-cart__summary-wrapper,.list-confirmation+.shopping-cart__summary-wrapper{margin-top:30px}}@media only screen and (min-width: 48rem),print{.shopping-cart__summary-wrapper{justify-content:space-between}}@media only screen and (max-width: 47.9375rem){.shopping-cart__check-btn{position:fixed;bottom:0;left:0;width:100%;z-index:99;box-shadow:0 0 14px -4px #000;background:#fff}.shopping-cart__check-btn .btn_highlight{width:100%}}@media only screen and (min-width: 48rem),print{.shopping-cart__check-btn{display:flex;justify-content:flex-end;position:absolute;right:20px;padding-bottom:60px;transform:translateY(-100%);max-width:335px}.shopping-cart__check-btn .btn_highlight{max-width:unset;width:355px}}.shopping-cart__paypal{margin-top:10px;margin-left:auto;width:50%}.shopping-cart__shipping-cost{display:flex;justify-content:flex-end}.shopping-cart__cheering{margin-bottom:32px !important}@media only screen and (max-width: 47.9375rem){.t_login-page__container{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}}@media only screen and (min-width: 48rem),print{.t_login-page__container{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.t_login-page__container{width:45.5rem}}@media print{.t_login-page__container{width:auto}}@media only screen and (min-width: 48rem)and (min-width: 64rem){.t_login-page__container{width:61.5rem}}.t_login-page__headline{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;margin:60px 0}@media only screen and (min-width: 48rem),print{.t_login-page__headline{font-size:1.875rem;line-height:1.3}}.t_login-page__headline::after{display:block;content:"";background-color:var(--color1)}.t_login-page__headline::after{width:23px;height:5px;margin-top:10px;background:var(--color1)}@media only screen and (min-width: 48rem),print{.t_login-page__headline::after{width:34px;height:7px;margin-top:15px;background:var(--color1)}}.t_login-page__form{margin-top:60px;margin-bottom:60px}@media only screen and (max-width: 47.9375rem){.t_registration-page__container{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}}@media only screen and (min-width: 48rem),print{.t_registration-page__container{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.t_registration-page__container{width:45.5rem}}@media print{.t_registration-page__container{width:auto}}@media only screen and (min-width: 48rem)and (min-width: 64rem){.t_registration-page__container{width:61.5rem}}.t_registration-page__headline{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;margin:60px 0}@media only screen and (min-width: 48rem),print{.t_registration-page__headline{font-size:1.875rem;line-height:1.3}}.t_registration-page__headline::after{display:block;content:"";background-color:var(--color1)}.t_registration-page__headline::after{width:23px;height:5px;margin-top:10px;background:var(--color1)}@media only screen and (min-width: 48rem),print{.t_registration-page__headline::after{width:34px;height:7px;margin-top:15px;background:var(--color1)}}.t_registration-page__form{width:calc(100%/(12 / 12));margin-top:60px;margin-bottom:60px}@media only screen and (min-width: 64rem){.t_registration-page__form{width:calc(100%/(12 / 8))}}.t_registration-page__success-teaser{margin-top:100px}.t_registration-page__success-link{background-color:#ededed;justify-content:center;display:flex}.t_registration-page__success-link-container{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto;padding:30px 10px}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.t_registration-page__success-link-container{width:45.5rem}}@media print{.t_registration-page__success-link-container{width:auto}}@media only screen and (min-width: 64rem){.t_registration-page__success-link-container{width:61.5rem}}.t_registration-page__success-message{margin-top:30px}.checkout .form__submit{align-self:flex-start}.checkout .next-step{margin-bottom:20px}@media only screen and (max-width: 47.9375rem){.checkout__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25}}@media only screen and (max-width: 47.9375rem)and (min-width: 48rem){.checkout__title{font-size:1.875rem;line-height:1.3}}@media only screen and (max-width: 47.9375rem){.checkout__title::after{display:block;content:"";background-color:var(--color1)}}@media only screen and (max-width: 47.9375rem){.checkout__title::after{width:23px;height:5px;margin-top:10px;background:var(--color1)}}@media only screen and (max-width: 47.9375rem)and (min-width: 48rem){.checkout__title::after{width:34px;height:7px;margin-top:15px;background:var(--color1)}}@media only screen and (max-width: 47.9375rem){.checkout .form__submit{width:100%}}@media(max-width: 63.9375rem){.checkout{display:flex;flex-flow:wrap}.checkout .step-wizard{width:100%}}.checkout-step__title,.checkout-step__subtitle{margin:0 10px 25px}.checkout-step__title.b2b-checkout,.checkout-step__title.b2b-checkout__shipping-details{margin:0 0 25px;width:100%}.checkout-step__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2}.checkout-step__subtitle{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}@media only screen and (min-width: 64rem){.checkout__steps-wrapper>:nth-last-child(n+2){border-bottom:1px solid #b1b1b1}}.checkout__footer-wrapper{display:flex;width:100%;margin-top:0}@media only screen and (max-width: 47.9375rem){.checkout__footer-wrapper{flex-flow:column-reverse}}@media only screen and (min-width: 48rem),print{.checkout__footer-wrapper{justify-content:space-between}}@media(max-width: 63.9375rem){.checkout__footer-container{width:100%}}.checkout__navigation{display:flex;padding-bottom:20px}.checkout__navigation .label-circle:not(:last-child){margin-right:10px}.checkout__navigation_active{background:#000;color:#fff}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.checkout__infobox{width:calc(100%/(6 / 3))}}@media only screen and (min-width: 48rem),print{.checkout__infobox--wrapper{width:calc(100%/(12 / 4));margin-top:20px}}@media(max-width: 63.9375rem){.checkout__infobox--wrapper{grid-row:1;margin:10px 0 40px}}.checkout__cart{display:flex;flex-direction:row}.checkout__cart-title{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;text-transform:uppercase;margin-bottom:20px;margin-right:15px}.checkout__cart-items{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;margin-top:5px}.checkout__cart-items.quantity{margin-right:6px}.checkout__header{display:flex;flex-direction:row;margin-bottom:60px}.checkout_addresses-link{flex:50%;display:flex;flex-direction:column}.checkout__addresses{display:flex;flex-direction:row-reverse}.checkout__addresses-ul{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.checkout__addresses-li{margin-bottom:5px}.checkout__addresses-li .flag-wrapper{background:#b1b1b1;margin-left:10px;width:-moz-fit-content;width:fit-content;padding:0 4px}.checkout__addresses-li .flag-wrapper>span{color:#fff}.checkout__addresses-li.custom-margin{margin-top:15px}.checkout__addresses-li.flag{display:flex;flex-direction:row}.checkout_link{align-items:center;cursor:pointer;margin-top:5px}.checkout_link>span{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-left:10px}.checkout__addresses.billing{flex:50%;display:flex;flex-direction:column}.checkout__addresses.shipping{flex:50%;display:flex;flex-direction:column}.checkout__shipping-details{flex:25%;display:flex}.checkout__shipping-conditions-change{flex:50%}.checkout__payment-details{display:flex;flex-direction:column;flex:50%}.checkout__shipping-details.payment{flex-direction:column}.checkout__shipping-details.conditions{flex-direction:column}.checkout__shipping-details.content{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.t_myaccount{display:flex;justify-content:center}.t_myaccount__header{margin-top:20px}@media only screen and (min-width: 48rem),print{.t_myaccount__header{margin-top:40px}}@media only screen and (max-width: 47.9375rem){.t_myaccount__container{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}}@media only screen and (min-width: 48rem),print{.t_myaccount__container{position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.t_myaccount__container{width:45.5rem}}@media print{.t_myaccount__container{width:auto}}@media only screen and (min-width: 48rem)and (min-width: 64rem){.t_myaccount__container{width:61.5rem}}.t_myaccount__tabs{margin-top:20px;border-bottom:1px solid #b1b1b1;display:flex;align-items:flex-end;justify-content:space-between}@media only screen and (min-width: 48rem),print{.t_myaccount__tabs{margin-top:30px;align-items:center}}.t_myaccount__tabs--wrapper{padding-left:0;padding-right:0;width:100%}@media only screen and (max-width: 47.9375rem){.t_myaccount__tabs--wrapper{max-width:215px}}.t_myaccount__linksSection{display:flex}@media only screen and (max-width: 47.9375rem){.t_myaccount__linksSection{margin-top:15px;justify-content:flex-end;flex-wrap:wrap;align-items:flex-end;gap:5px 20px}}.t_myaccount__logout-link{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;padding:0}@media only screen and (min-width: 48rem),print{.t_myaccount__logout-link{margin-right:30px}}.t_myaccount__userdata{margin-top:20px}.t_myaccount__addresses{margin-top:20px}.t_myaccount__addresses>.m_myaccount-data{padding-right:20px}@media only screen and (max-width: 47.9375rem){.t_myaccount .tab-bar_header>.icon-high{bottom:-1px}.t_myaccount .tab-bar_header__item{width:100%}}.t_myaccount .tab-bar_header__tab{position:relative;bottom:-1px}@media only screen and (min-width: 48rem),print{.t_myaccount .tab-bar_header__tab{max-width:unset}}.t_event-page{display:flex;flex-direction:column;align-items:center}.t_event-page__container{margin-top:56px;width:100%}@media only screen and (min-width: 48rem),print{.t_event-page__container{margin-top:80px}}.order-lookup{margin:50px 0}.order-lookup .data__input{margin-left:unset}.order-lookup .data__input .form-field__label-text{margin-left:unset}.order-lookup .data__errormessage{display:flex;flex-direction:column}.order-lookup .data__errormessage .error-message{margin-top:10px;margin-bottom:0}@media only screen and (max-width: 47.9375rem){.order-lookup .data__errormessage .error-message{align-self:center}}.order-lookup .submit-btn{margin-top:15px}.job-detail-page__main{display:grid;gap:40px 24px;grid-template-areas:"apply-now" "description" "quick-info-box" "cta-module" "contact-details" "job-application-process" "video" "newest-job-offers"}@media only screen and (min-width: 48rem),print{.job-detail-page__main{grid-template-columns:3fr 2fr;grid-template-areas:"description apply-now" "cta-module cta-module" "job-application-process job-application-process" "video video" "newest-job-offers newest-job-offers"}}.job-detail-page__main-no-video{display:grid;gap:40px 24px;grid-template-areas:"apply-now" "description" "quick-info-box" "cta-module" "contact-details" "job-application-process" "newest-job-offers"}@media only screen and (min-width: 48rem),print{.job-detail-page__main-no-video{grid-template-columns:3fr 2fr;grid-template-areas:"description apply-now" "cta-module cta-module" "job-application-process job-application-process" "newest-job-offers newest-job-offers"}}.job-detail-page__description{grid-area:description}.job-detail-page__job-application-process{grid-area:job-application-process}@media only screen and (min-width: 48rem),print{.job-detail-page__job-application-process{margin-bottom:40px}}.job-detail-page__job-application-process-no-video{grid-area:job-application-process;margin-bottom:0}@media only screen and (min-width: 48rem),print{.job-detail-page__job-application-process-no-video{margin-bottom:0}}.job-detail-page__apply-now{grid-area:apply-now}.job-detail-page__video{grid-area:video}.job-detail-page__job-cta-module{grid-area:cta-module}@media only screen and (min-width: 48rem),print{.job-detail-page__job-cta-module{margin-bottom:40px}}.job-detail-page__quick-info-box{grid-area:quick-info-box}.job-detail-page__apply-now-inner{display:grid;gap:20px;grid-template-areas:"apply-btn" "export-links" "contact-details" "icon-list"}@media only screen and (min-width: 48rem),print{.job-detail-page__apply-now-inner{gap:40px;grid-template-areas:"export-links" "apply-btn" "contact-details" "icon-list"}}.job-detail-page__export-links{grid-area:export-links;display:flex;gap:32px}@media only screen and (max-width: 47.9375rem){.job-detail-page__export-links{margin-top:4px;margin-bottom:20px}}@media only screen and (min-width: 48rem),print{.job-detail-page__export-links{justify-self:flex-end}}.job-detail-page__apply-btn{grid-area:apply-btn}.job-detail-page__icon-list{grid-area:icon-list}.job-detail-page__contact-details{grid-area:contact-details}.job-detail-page__qr-code{display:none}.m_footer{--gap-width: 112px;border-top:3px solid #f37a1f;background-color:var(--color4);color:var(--color1)}@media only screen and (min-width: 64rem){.m_footer{--gap-width: 208px}}.m_footer__inner{display:grid;gap:var(--gap-width);margin:52px 0}.ts-body .m_footer__inner{margin:52px 0 64px}@media only screen and (max-width: 47.9375rem){.ts-body .m_footer__inner,.m_footer__inner{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}}@media only screen and (min-width: 48rem),print{.ts-body .m_footer__inner,.m_footer__inner{margin:31px 0;min-height:284px;grid-template-columns:5fr 7fr;position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.ts-body .m_footer__inner,.m_footer__inner{width:45.5rem}}@media print{.ts-body .m_footer__inner,.m_footer__inner{width:auto}}@media only screen and (min-width: 48rem)and (min-width: 64rem){.ts-body .m_footer__inner,.m_footer__inner{width:61.5rem}}.m_footer__bottom-bar{display:flex;justify-content:center;background-color:var(--bottom-footer-background);color:var(--color1)}.m_footer__bottom-bar-content{display:flex}@media only screen and (max-width: 47.9375rem){.m_footer__bottom-bar-content{padding:40px 0;flex-direction:column;align-items:flex-start;gap:48px;position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem}}@media only screen and (min-width: 48rem),print{.m_footer__bottom-bar-content{padding:22px;align-items:center;position:relative;width:auto;max-width:100%;padding-left:1.25rem;padding-right:1.25rem;margin-left:auto;margin-right:auto}}@media only screen and (min-width: 48rem)and (min-width: 48rem)and (max-width: 63.9375rem),print{.m_footer__bottom-bar-content{width:45.5rem}}@media print{.m_footer__bottom-bar-content{width:auto}}@media only screen and (min-width: 48rem)and (min-width: 64rem){.m_footer__bottom-bar-content{width:61.5rem}}.m_footer__bottom-bar-links-wrapper{display:flex;gap:12px 24px;flex-wrap:wrap}.m_footer__bottom-bar-link{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem;line-height:1.1;width:-moz-max-content;width:max-content}.m_footer__bottom-bar-address{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text-demi),Arial,sans-serif;font-size:.75rem}.ts-body .m_footer__bottom-bar-address{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem}@media only screen and (min-width: 48rem),print{.m_footer__bottom-bar-address{margin-left:auto}}.m_footer__heading{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;margin-bottom:28px}.m_footer__heading:not(:first-child){margin-top:56px}@media only screen and (min-width: 48rem),print{.m_footer__heading:not(:first-child){margin-top:auto}}.m_footer__social-media{display:grid;grid-template-columns:repeat(3, max-content);gap:32px 56px}@media only screen and (min-width: 48rem),print{.m_footer__social-media{grid-template-columns:repeat(auto-fill, 24px);gap:24px}}.m_footer__link{width:-moz-max-content;width:max-content;display:inline-block;position:relative;cursor:pointer;margin-right:25px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.m_footer__link::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.5rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.m_footer__link:hover::after{transform:translate3d(13px, -50%, 0)}.m_footer__link--external{display:inline-block;position:relative;cursor:pointer;margin-right:25px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.m_footer__link--external::after{content:"";background:url(stihl-styles/resources/icons/icon-external-link-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.5rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.m_footer__link--site{margin-top:24px;display:inline-block;position:relative;cursor:pointer;margin-right:25px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.m_footer__link--site::after{content:"";background:url(stihl-styles/resources/icons/icon-globe-32.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.5rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.m_footer__link-wrapper{display:flex;flex-direction:column;gap:40px}@media only screen and (min-width: 48rem),print{.m_footer__link-wrapper{gap:24px}}.m_footer__left{display:flex;flex-direction:column}.m_footer__right{display:grid;gap:20px;--border-position: calc(var(--gap-width) / 2 * -1);position:relative}.m_footer__right::before{position:absolute;content:" ";height:1px;width:100%;border-top:var(--border2);top:var(--border-position)}@media only screen and (min-width: 48rem),print{.m_footer__right::before{height:100%;width:1px;border-left:var(--border2);left:var(--border-position);top:0}}.m_footer__right .sponsors{display:flex;flex-direction:column;height:100%}@media only screen and (min-width: 48rem),print{.m_footer__left,.m_footer__right{padding:15px 0}.ts-body .m_footer__left,.ts-body .m_footer__right{padding:15px 0 52px}}.m_footer__all-sponsors{width:-moz-max-content;width:max-content;margin-top:48px;display:inline-block;position:relative;cursor:pointer;margin-right:25px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.m_footer__all-sponsors::after{content:"";background:url(stihl-styles/resources/icons/icon-arrow-right-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.5rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.m_footer__all-sponsors:hover::after{transform:translate3d(13px, -50%, 0)}@media only screen and (min-width: 48rem),print{.m_footer__all-sponsors{margin-top:auto}}.m_footer__sponsors{display:flex;flex-flow:row wrap;gap:32px 48px}@media only screen and (min-width: 48rem),print{.m_footer__sponsors{display:grid;grid-template-columns:repeat(auto-fill, minmax(100px, 1fr));gap:24px 32px}.ts-body .m_footer__sponsors{display:grid;grid-template-columns:repeat(4, max-content)}}.m_footer__icon{height:24px}.m_footer__icon--sponsor{height:50px}.event-card{display:grid;grid-template-rows:max-content auto;grid-template-columns:minmax(0, 1fr);background-color:#fff;color:#000;height:100%}.ts-body .event-card{--outline-offset: 2px}@media only screen and (min-width: 48rem),print{.event-card--list{grid-template-columns:309.16px 1fr;height:236px}}.event-card__image-wrapper{position:relative;padding-top:calc((1 / 1.4)*100%);overflow:hidden}.event-card__image-wrapper>picture,.event-card__image-wrapper>a,.event-card__image-wrapper>a>picture{position:absolute;inset:0 0 0 0}.event-card__image-wrapper>picture>img,.event-card__image-wrapper>a>img,.event-card__image-wrapper>a>picture>img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}@media only screen and (min-width: 48rem),print{.event-card--list .event-card__image-wrapper{position:relative;padding-top:calc((1 / 1.31)*100%)}.event-card--list .event-card__image-wrapper>picture,.event-card--list .event-card__image-wrapper>a,.event-card--list .event-card__image-wrapper>a>picture{position:absolute;inset:0 0 0 0}.event-card--list .event-card__image-wrapper>picture>img,.event-card--list .event-card__image-wrapper>a>img,.event-card--list .event-card__image-wrapper>a>picture>img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}}.event-card__image-wrapper picture{transition:all .5s}.event-card__info-wrapper{padding:24px 32px 32px;display:flex;flex-direction:column}.event-card--list .event-card__info-wrapper{justify-content:center}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.event-card--list .event-card__info-wrapper{padding:24px 24px 32px}}.event-card__name{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#000;font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2;-webkit-line-clamp:3;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;height:4.5rem;margin-bottom:16px;overflow:hidden}.event-card--list .event-card__name{height:-moz-min-content;height:min-content}@media(max-width: 63.9375rem){.event-card--list .event-card__name{margin-bottom:16px}}.event-card__date{display:flex;align-items:center}.event-card__detail{display:flex;flex-direction:column;gap:.5rem;margin-bottom:.5rem}.event-card__detail:not(:last-child){margin-bottom:1rem}@media only screen and (min-width: 48rem),print{.event-card__detail--list{flex-direction:row;gap:24px;align-items:flex-start}}@media only screen and (min-width: 64rem){.event-card__detail--list{gap:40px}}.event-card__location{display:flex}@media only screen and (min-width: 48rem),print{.event-card--list .event-card__location{margin-top:-2px}}@media only screen and (min-width: 64rem){.event-card--list .event-card__location{max-width:250px}}.event-card__location>.icon-flag{margin-top:3px}.event-card__date-value{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#000;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin-left:8px}@media only screen and (min-width: 64rem){.event-card__date-value{white-space:nowrap}}.event-card__location-value{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#000;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;-webkit-line-clamp:3;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;margin-left:8px;max-height:75px}.event-card:hover{cursor:pointer}.event-card:hover .event-card__image-wrapper picture{transform:scale(1.2)}.original-column-size-4 .event-card__name,.swiper .event-card__name{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#000;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;height:51px}.event-stage{width:100%;max-width:988px}.event-stage__image{width:100%;height:100%;position:absolute;-o-object-fit:cover;object-fit:cover}@media only screen and (max-width: 47.9375rem){.event-stage__image{margin-top:-242.66px}}.event-stage__image-wrapper{position:relative;width:100%}@media only screen and (max-width: 47.9375rem){.event-stage__image-wrapper{display:flex;justify-content:flex-start;align-items:flex-end;height:242.66px}}@media only screen and (min-width: 48rem),print{.event-stage__image-wrapper{position:relative;padding-bottom:calc((1 / 3)*100%)}}.event-stage__heading{position:relative;background:#fff;padding:24px;width:-moz-max-content;width:max-content;max-width:calc(100% - 88px);margin:20px;text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#000;font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25}@media only screen and (min-width: 48rem),print{.event-stage__heading{font-size:1.875rem;line-height:1.3}}.event-stage__heading::after{display:block;content:"";background-color:#000}.event-stage__heading::after{width:23px;height:5px;margin-top:10px;background:#000}@media only screen and (min-width: 48rem),print{.event-stage__heading::after{width:34px;height:7px;margin-top:15px;background:#000}}@media only screen and (min-width: 48rem),print{.event-stage__heading{margin:0;position:absolute;padding:30px;left:30px;bottom:30px;max-width:calc(100% - 120px)}}.event-stage__information{display:flex;justify-content:flex-start;align-items:center;gap:24px;min-height:203px}@media(max-width: 63.9375rem){.event-stage__information{justify-content:space-between}}.event-stage__information__content{display:flex;flex-flow:row wrap;gap:8px 32px;margin-top:24px}@media only screen and (max-width: 47.9375rem){.event-stage__information__content{align-self:flex-start}}@media only screen and (min-width: 48rem),print{.event-stage__information__content{gap:0 48px}}.event-stage__information__location{display:flex;flex-direction:row}.event-stage__information__location__image{height:24px;width:24px;margin-right:16px;padding-top:2px}.event-stage__information__date{margin-left:40px}.event-stage__information__date::before{content:"";background:url(stihl-styles/resources/icons/icon-calendar-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none);transform:translate3d(-35px, 2px, 0)}.event-stage__information__link{display:inline-block;position:relative;cursor:pointer;margin-right:31px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;margin-top:32px}.event-stage__information__link::after{content:"";background:url(stihl-styles/resources/icons/icon-external-link-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none);top:50%;left:100%;transform:translate3d(0.625rem, -50%, 0);height:1rem;transition:transform .2s;margin-top:-1px}.ts-body .white-container .event-stage__information__link{display:inline-block;position:relative;cursor:pointer;margin-right:31px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.ts-body .white-container .event-stage__information__link::after{content:"";background:url(stihl-styles/resources/icons/icon-external-link-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.625rem, -50%, 0);height:1rem;transition:transform .2s;margin-top:-1px}.event-stage__seal{height:115px;width:100px;margin:40px 123.5px 48px 83px}@media(max-width: 63.9375rem){.event-stage__seal{margin:40px 0 48px}}@media only screen and (max-width: 47.9375rem){.event-stage__seal{margin:24px 0 0;align-self:flex-start;height:85px;width:70px}}.page-filter{display:grid;grid-template-rows:repeat(2, max-content)}@media only screen and (min-width: 48rem),print{.page-filter{width:45.5rem}}@media only screen and (min-width: 64rem){.page-filter{width:61.5rem}}.page-filter__sort-dropdown-btn{position:relative}.page-filter__sort-dropdown-list{position:absolute;width:100%}.page-filter__btn{width:-moz-max-content;width:max-content}.page-filter__btn--show-more{padding-left:0;display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.page-filter__btn--show-more::after{content:"";background:url(stihl-styles/resources/icons/icon-plus-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.page-filter__btn--show-less{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.page-filter__btn--show-less::after{content:"";background:url(stihl-styles/resources/icons/icon-minus-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.page-filter__btn--toggle-mobile{position:relative;background:linear-gradient(to bottom, transparent 50%, var(--color1) 50%) 0 0/200% 200%;box-sizing:border-box;overflow:hidden;cursor:pointer;transition:background-position 400ms,border-color 400ms,color 200ms;display:flex;justify-content:center;align-items:center;border-color:#dadada;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:center;height:3.75rem;--outline-offset: 2px;width:100%;border-width:1px;border-style:solid;justify-content:space-between;padding:0 16px 0 32px}.page-filter__btn--toggle-mobile.active{background-position:0 -100%}@media(hover: hover)and (pointer: fine){.page-filter__btn--toggle-mobile:hover{background-position:0 -100%}}.page-filter__btn--toggle-mobile.active{border-color:#dadada}@media(hover: hover)and (pointer: fine){.page-filter__btn--toggle-mobile:hover{border-color:#dadada}}.page-filter__btn--toggle-mobile:disabled{background:#ededed;border-color:#ededed;pointer-events:none}.page-filter__btn--toggle-mobile.active{color:var(--color2)}@media(hover: hover)and (pointer: fine){.page-filter__btn--toggle-mobile:hover{color:var(--color2)}}@media(max-width: 63.9375rem){.page-filter__btn--toggle-mobile{width:100%}}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.page-filter__btn--toggle-mobile:not(.full){min-width:calc(calc(45.5rem / 6) * 2);max-width:calc(calc(45.5rem / 6) * 3)}}@media only screen and (min-width: 64rem){.page-filter__btn--toggle-mobile:not(.full){min-width:calc(calc(61.5rem / 12) * 3);max-width:calc(calc(61.5rem / 12) * 4)}}.page-filter__btn--toggle-mobile.shrink{min-width:auto}.page-filter__btn--toggle-mobile::after{content:"";background:url(stihl-styles/resources/icons/icon-filter-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none)}.page-filter__btn--toggle-mobile:hover::after{content:"";background:url(stihl-styles/resources/icons/icon-filter-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none)}.ts-body .page-filter__btn--toggle-mobile:hover::after{--svg-filter-invert-white: invert(1)}.page-filter__btn--toggle-mobile::after,.page-filter__btn--toggle-mobile:hover::after,.ts-body .page-filter__btn--toggle-mobile::after,.ts-body .page-filter__btn--toggle-mobile:hover::after{position:relative;height:16px;margin-right:20px;transition:.25s ease}.page-filter__presentation-switch{display:none}@media only screen and (min-width: 48rem),print{.page-filter__presentation-switch{margin-left:auto;display:flex;gap:12px}.page-filter__presentation-switch__btn{display:flex;justify-content:center;align-items:center;width:32px;height:32px;border:var(--page-filter-presentation-switch)}.page-filter__presentation-switch__btn--active{border:1px solid #f37a1f}}.page-filter__tools{display:flex;flex-direction:column;gap:16px;z-index:2;padding-bottom:2rem;border-bottom:var(--page-filter)}@media only screen and (min-width: 48rem),print{.page-filter__tools{display:grid;grid-template-columns:auto 14.5rem;grid-template-rows:repeat(2, max-content);gap:0 .5rem}}.page-filter__dropdown{display:grid;gap:16px 8px}.page-filter__dropdown--2{grid-template-columns:repeat(2, minmax(0, 1fr))}.page-filter__dropdown--3{grid-template-columns:repeat(3, minmax(0, 1fr))}.page-filter__dropdown--4{grid-template-columns:repeat(4, minmax(0, 1fr))}.page-filter__search-bar{position:relative;width:100%;height:-moz-max-content;height:max-content}.page-filter__search-bar input{background-color:var(--searchbar-background);border:var(--searchbar-outline);color:#fff;padding:13px 48px 13px 16px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;width:calc(100% - 66px)}.ts-body .page-filter__search-bar input{width:calc(100% - 64px)}.page-filter__search-icon{position:absolute;width:16px;height:16px;right:16px;padding:0;top:calc(50% - 8px)}.page-filter__search-svg>path{fill:var(--color1)}.page-filter__badge-item{display:inline-block;position:relative;cursor:pointer;margin-right:25px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;margin:0}.page-filter__badge-item::after{content:"";background:url(stihl-styles/resources/icons/icon-cross-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.5rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.ts-body .page-filter__badge-item{display:inline-block;position:relative;cursor:pointer;margin-right:25px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.ts-body .page-filter__badge-item::after{content:"";background:url(stihl-styles/resources/icons/icon-cross-white-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert-white, none);top:50%;left:100%;transform:translate3d(0.5rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.page-filter__badge-item__wrapper{display:flex;justify-content:center;align-items:center;background-color:var(--badge-background);border-radius:15px;height:30px;padding:8px 32px 8px 16px}.ts-body .page-filter__badge-item__wrapper{padding:8px 0 8px 16px}.page-filter__badges{display:flex;flex-direction:column;gap:32px;margin-top:16px}@media only screen and (min-width: 48rem),print{.page-filter__badges{margin-top:32px;height:-moz-max-content;height:max-content;min-height:30px;grid-column:1/3;display:grid;grid-template-columns:calc(100% - 232px) 232px;gap:8px}}.page-filter__badges p{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem}.page-filter__badges__btn{height:-moz-max-content;height:max-content;display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.page-filter__badges__btn::after{content:"";background:url(stihl-styles/resources/icons/icon-cross-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}.ts-body .page-filter__badges__btn{display:inline-block;position:relative;cursor:pointer;margin-right:22px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.ts-body .page-filter__badges__btn::after{content:"";background:url(stihl-styles/resources/icons/icon-cross-white-16.svg) no-repeat center/contain;position:absolute;height:.75rem;width:.75rem;filter:var(--svg-filter-invert-white, none);top:50%;left:100%;transform:translate3d(0.3125rem, -50%, 0);height:.75rem;transition:transform .2s;margin-top:-1px}@media(max-width: 63.9375rem){.page-filter__badges__btn{width:-moz-max-content;width:max-content}}@media only screen and (min-width: 48rem),print{.page-filter__badges__btn{margin-left:auto;margin-top:7px}}.page-filter__badges__wrapper{display:flex;flex-wrap:wrap;gap:8px}.page-filter__badges__container{display:flex;flex-direction:column;gap:8px}.page-filter__badges__container>p{margin-top:4px}@media only screen and (min-width: 48rem),print{.page-filter__badges__container{display:grid;grid-template-columns:max-content auto}}.page-filter__results-controls{width:100%;height:-moz-max-content;height:max-content;margin-top:24px;z-index:1;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;font-weight:bold;display:flex;gap:5px}.page-filter__results-controls .dropdown_list__btn{padding-left:0}@media only screen and (min-width: 48rem),print{.page-filter__results-controls{margin-top:32px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}}.filter-listing{display:block;padding-bottom:48px}.filter-listing>div:nth-child(2){margin-top:64px}.filter-listing>div:last-child{margin-top:48px}.filter-listing--2-1-results{display:grid;margin-bottom:20px;margin-top:40px;gap:20px}@media only screen and (min-width: 48rem),print{.filter-listing--2-1-results{margin-bottom:48px;grid-template-columns:repeat(3, minmax(0, 1fr));gap:16px}.filter-listing--2-1-results>*:first-child{grid-column:1/span 2}}.filter-listing__grid,.filter-listing__list{display:grid;gap:20px}@media only screen and (min-width: 48rem),print{.filter-listing__grid,.filter-listing__list{width:45.5rem;grid-template-columns:repeat(3, minmax(0, 1fr));gap:48px 16px}}@media only screen and (min-width: 64rem){.filter-listing__grid,.filter-listing__list{width:61.5rem}}.filter-listing__list{margin-top:40px}@media only screen and (min-width: 48rem),print{.filter-listing__list{grid-template-columns:100%}}.filter-listing__list--small{gap:20px}.ts-results-header{margin-bottom:40px;display:flex;flex-direction:column}.ts-results-header__title{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25}@media only screen and (min-width: 48rem),print{.ts-results-header__title{font-size:1.625rem;line-height:1.2}}.ts-results-header__link{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:inline-block;position:relative;cursor:pointer;margin-right:31px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;width:-moz-fit-content;width:fit-content;display:flex;align-items:center}.ts-results-header__link::after{content:"";background:url(stihl-styles/resources/icons/icon-external-link-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none);top:50%;left:100%;transform:translate3d(0.625rem, -50%, 0);height:1rem;transition:transform .2s;margin-top:-1px}@media only screen and (max-width: 47.9375rem){.ts-results-header__link{margin-top:24px}}.ts-body .white-container .ts-results-header__link{display:inline-block;position:relative;cursor:pointer;margin-right:31px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:flex}.ts-body .white-container .ts-results-header__link::after{content:"";background:url(stihl-styles/resources/icons/icon-external-link-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.625rem, -50%, 0);height:1rem;transition:transform .2s;margin-top:-1px}@media only screen and (min-width: 48rem),print{.ts-results-header{flex-direction:row;justify-content:space-between}}.ts-results-list__item{display:flex;padding:32px 0;border-bottom:var(--border2);flex-wrap:wrap;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem}@media only screen and (min-width: 48rem),print{.ts-results-list__item{font-size:.9375rem}}.ts-results-list__item:first-of-type{border-top:var(--border2)}.ts-results-list__item:hover{background-color:#252525}@media only screen and (min-width: 48rem),print{.ts-results-list__item{justify-content:space-between;align-items:center;padding-left:24px}}.ts-results-list__top-row{width:100%;display:flex;margin-bottom:30px}.ts-results-list__bottom-row{width:100%;display:flex;justify-content:space-between}.ts-results-list__athleteRankNameAndLevel{flex:1;display:flex;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold}@media only screen and (min-width: 48rem),print{.ts-results-list__athleteRankNameAndLevel{flex:unset;width:50%}}.ts-results-list__rank{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#f37a1f;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;margin-right:16px}.ts-results-list__athleteName{width:-moz-fit-content;width:fit-content}@media only screen and (min-width: 48rem),print{.ts-results-list__athleteName{display:flex;align-items:center}}.ts-results-list__level{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#f37a1f;font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;margin-left:16px}.ts-results-list__nation{display:flex}.ts-results-list__nation .icon-flag{margin-right:16px}.ts-results-list__link{display:inline-block;position:relative;cursor:pointer;margin-right:31px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.ts-results-list__link::after{content:"";background:url(stihl-styles/resources/icons/icon-external-link-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none);top:50%;left:100%;transform:translate3d(0.625rem, -50%, 0);height:1rem;transition:transform .2s;margin-top:-1px}.ts-body .white-container .ts-results-list__link{display:inline-block;position:relative;cursor:pointer;margin-right:31px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1}.ts-body .white-container .ts-results-list__link::after{content:"";background:url(stihl-styles/resources/icons/icon-external-link-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none);top:50%;left:100%;transform:translate3d(0.625rem, -50%, 0);height:1rem;transition:transform .2s;margin-top:-1px}.athlete-card{display:grid;grid-template-rows:max-content;background-color:#252525;color:#fff;height:100%;transition:margin .5s;margin-top:var(--content-card-move-tile-on-hover, 0)}.ts-body .athlete-card{--content-card-box-shadow: inset 0 -5px #F37A1F;--content-card-move-tile-on-hover: 5px}.athlete-card[role=link]{cursor:pointer}.athlete-card__image-wrapper{position:relative;padding-top:calc((1.4 / 1)*100%)}.athlete-card__image-wrapper>picture,.athlete-card__image-wrapper>a,.athlete-card__image-wrapper>a>picture{position:absolute;inset:0 0 0 0}.athlete-card__image-wrapper>picture>img,.athlete-card__image-wrapper>a>img,.athlete-card__image-wrapper>a>picture>img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.column-size-3 .athlete-card__image-wrapper{position:relative;padding-top:calc((1.3 / 1)*100%)}.column-size-3 .athlete-card__image-wrapper>picture,.column-size-3 .athlete-card__image-wrapper>a,.column-size-3 .athlete-card__image-wrapper>a>picture{position:absolute;inset:0 0 0 0}.column-size-3 .athlete-card__image-wrapper>picture>img,.column-size-3 .athlete-card__image-wrapper>a>img,.column-size-3 .athlete-card__image-wrapper>a>picture>img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.column-size-2 .athlete-card__image-wrapper{position:relative;padding-top:calc((1 / 1.1)*100%)}.column-size-2 .athlete-card__image-wrapper>picture,.column-size-2 .athlete-card__image-wrapper>a,.column-size-2 .athlete-card__image-wrapper>a>picture{position:absolute;inset:0 0 0 0}.column-size-2 .athlete-card__image-wrapper>picture>img,.column-size-2 .athlete-card__image-wrapper>a>img,.column-size-2 .athlete-card__image-wrapper>a>picture>img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.athlete-card__image-wrapper img{-o-object-fit:cover;object-fit:cover;width:100%}.athlete-card__info-wrapper{display:flex;flex-direction:column;padding:24px}.athlete-card__level{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#f37a1f;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.9375rem;line-height:1.1;margin-bottom:24px}.athlete-card__name{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;-webkit-line-clamp:3;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;margin-bottom:32px}@media only screen and (min-width: 48rem),print{.original-column-size-3 .athlete-card__name,.original-column-size-2 .athlete-card__name{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#fff;font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.25rem;line-height:1.2}}.athlete-card__location{display:flex;margin-bottom:8px}.athlete-card__location-value{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;-webkit-line-clamp:3;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;margin-left:8px}.athlete-card__link{display:inline-block;position:relative;cursor:pointer;margin-right:31px;text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#fff;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:block;margin-top:auto}.athlete-card__link::after{content:"";background:url(stihl-styles/resources/icons/icon-external-link-white-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert-white, none);top:50%;left:100%;transform:translate3d(0.625rem, -50%, 0);height:1rem;transition:transform .2s;margin-top:-1px}.athlete-card__link::after{left:unset}.athlete-card:hover,.athlete-card[role=link]:focus-visible{margin-top:0;margin-bottom:var(--content-card-move-tile-on-hover, 0);box-shadow:var(--content-card-box-shadow, none);outline:none}@media only screen and (max-width: 47.9375rem){.legacy-site-overlay__title{margin-left:16px}}.legacy-site-overlay__container{margin-left:16px}@media only screen and (min-width: 48rem),print{.legacy-site-overlay__container{display:flex;flex-wrap:wrap;margin-left:unset}}.legacy-site-overlay__item{height:38px;display:flex;align-items:center;position:relative}.legacy-site-overlay__item:hover{background-color:#3e3e3e;cursor:pointer}@media only screen and (min-width: 48rem),print{.legacy-site-overlay__item{width:50%}}.legacy-site-overlay__icon{margin-left:16px;content:"";background:url(stihl-styles/resources/icons/icon-arrow-full-right-16.svg) no-repeat center/contain;position:absolute;height:1rem;width:1rem;filter:var(--svg-filter-invert, none)}.legacy-site-overlay__text{margin-left:48px}.separator--shorter{margin-top:80px}.separator--bigger{margin-top:120px}.image-separator{max-width:90rem;width:100%;margin:0 auto;-o-object-fit:cover;object-fit:cover}.image-separator__image-big{height:670px}@media only screen and (max-width: 47.9375rem){.image-separator__image-big{height:480px}}.image-separator__image-small{height:240px}@media only screen and (max-width: 47.9375rem){.image-separator__image-small{height:200px}}.item-link{border-bottom:1px solid #dadada;padding-top:1.875rem;padding-bottom:.9375rem}.item-link__link{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;font-weight:bold;line-height:1;display:flex;align-items:center;justify-content:space-between}.item-link__text{display:flex;flex-direction:column;gap:.5rem}.item-link__date{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15}.item-link__icon{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;display:flex;align-items:center;gap:.6rem}.full-width-hero-teaser{--product-image-ratio-x: 1;--product-image-ratio-y: 1;display:grid}.full-width-hero-teaser__inner{grid-column:-1/1;grid-row:2;max-width:100%;position:relative}@media only screen and (min-width: 64rem){.full-width-hero-teaser__inner{grid-row:1}}@media only screen and (min-width: 96rem){.full-width-hero-teaser__inner{max-width:96rem;margin-left:calc((100vw - 96rem)/2)}}.full-width-hero-teaser__inner--disclaimer{display:flex;grid-row:3}@media only screen and (min-width: 64rem){.full-width-hero-teaser__inner--disclaimer{justify-content:right;grid-row:2}}.full-width-hero-teaser__inner--disclaimer>*{padding-left:1.25rem;padding-right:1.25rem}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.full-width-hero-teaser__inner--disclaimer>*{padding-top:0}}.full-width-hero-teaser__background{grid-column:-1/1;grid-row:1;background:#ededed}@media only screen and (max-width: 47.9375rem){.full-width-hero-teaser__background{aspect-ratio:1.75/1}}@media only screen and (min-width: 48rem),print{.full-width-hero-teaser__background{height:28.75rem}}@media only screen and (min-width: 96rem){.full-width-hero-teaser__background{aspect-ratio:3/1;height:auto}}.full-width-hero-teaser__background--link{cursor:pointer;z-index:1}@media only screen and (min-width: 64rem){.full-width-hero-teaser__background--video{z-index:1}.full-width-hero-teaser__background--video:hover+.full-width-hero-teaser__inner .full-width-hero-teaser__box{margin-bottom:3.4375rem}}.full-width-hero-teaser__background img,.full-width-hero-teaser__background video{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.full-width-hero-teaser__background video{display:block}.full-width-hero-teaser__content{display:grid;background:#fff;gap:1.5rem;padding:2rem 1.25rem}@media only screen and (min-width: 64rem){.full-width-hero-teaser__content{gap:2rem;padding:2rem}}.full-width-hero-teaser__content-headline{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25;margin-bottom:0}@media only screen and (min-width: 48rem),print{.full-width-hero-teaser__content-headline{font-size:1.875rem;line-height:1.3}}.full-width-hero-teaser__content-headline::after{display:block;content:"";background-color:var(--color1)}.full-width-hero-teaser__content-headline::after{width:23px;height:5px;margin-top:10px;background:var(--color1)}@media only screen and (min-width: 48rem),print{.full-width-hero-teaser__content-headline::after{width:34px;height:7px;margin-top:15px;background:var(--color1)}}.full-width-hero-teaser__box{transition:margin-bottom .3s ease}@media only screen and (min-width: 64rem){.full-width-hero-teaser__box{position:absolute;z-index:2}.full-width-hero-teaser__box--top{top:1.25rem}.full-width-hero-teaser__box--left{left:1.25rem}.full-width-hero-teaser__box--bottom{bottom:1.25rem}.full-width-hero-teaser__box--right{right:1.25rem}}.full-width-hero-teaser__box--product{min-height:12.5rem}@media only screen and (min-width: 48rem)and (max-width: 63.9375rem),print{.full-width-hero-teaser__box--product{min-height:25rem}}@media only screen and (min-width: 64rem){.full-width-hero-teaser__box--product{width:20.5rem}}@media only screen and (min-width: 96rem){.full-width-hero-teaser__box--product{width:28rem}}@media only screen and (min-width: 120rem){.full-width-hero-teaser__box--product{width:auto;min-width:28rem;max-width:39rem}}@media only screen and (min-width: 64rem){.full-width-hero-teaser__box--content{width:29.0625rem}}@media only screen and (min-width: 96rem){.full-width-hero-teaser__box--content{width:35.5rem}}@media only screen and (min-width: 120rem){.full-width-hero-teaser__box--content{width:38.9375rem}}.search-form-brand-portal{display:flex;align-items:center;border-bottom:1px solid #b1b1b1}.search-form-brand-portal__input{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#f37a1f;font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.375rem;line-height:1.25;width:calc(100% - 28px)}@media only screen and (min-width: 48rem),print{.search-form-brand-portal__input{font-size:1.625rem;line-height:1.2}}.search-form-brand-portal__input::-moz-placeholder{color:#b1b1b1}.search-form-brand-portal__input::placeholder{color:#b1b1b1}.search-form-brand-portal__input[type=search]::-webkit-search-cancel-button{-webkit-appearance:none;appearance:none}.brand-portal-search-results__section{padding-bottom:2.5rem}.brand-portal-search-results__btn{text-align:center;margin-top:3.75rem}.brand-portal-search-results__form{width:25rem;max-width:100%;margin:0 auto}.brand-portal-search-results__heading{text-align:center;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25}@media only screen and (min-width: 48rem),print{.brand-portal-search-results__heading{font-size:1.875rem;line-height:1.3}}.m_brandportal-login{position:relative;overflow:hidden}.m_brandportal-login .bp-login{position:relative;height:calc(100vh - 2.5625rem)}@media only screen and (min-width: 48rem),print{.m_brandportal-login .bp-login{height:calc(100vh - 2.875rem)}}.m_brandportal-login .bp-login__editor{height:100%}.m_brandportal-login .bp-login__background{height:100%}.m_brandportal-login .bp-login__background-image{width:100%;height:100%;background-color:#dadada;-o-object-fit:cover;object-fit:cover}.m_brandportal-login .bp-login__logo{position:absolute;top:1.5rem;right:1.25rem}@media only screen and (min-width: 48rem),print{.m_brandportal-login .bp-login__logo{top:4.5rem;right:4.5rem}}.m_brandportal-login .bp-login__logo-size{width:12.5rem;height:5.5rem}@media only screen and (min-width: 48rem),print{.m_brandportal-login .bp-login__logo-size{width:19.375rem;height:9.375rem}}.m_brandportal-login .bp-login__messages{position:absolute;top:8.5rem;right:1.25rem}@media only screen and (min-width: 48rem),print{.m_brandportal-login .bp-login__messages{top:16.125rem;right:4.5rem}}.m_brandportal-login .bp-login__messages .messages-container{position:unset}.m_brandportal-login .bp-login__messages .messages-container .generic-message--warning{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;background-color:var(--color6);color:var(--color1);border:1px solid var(--color1)}.m_brandportal-login .bp-login__messages .messages-container .generic-message--error{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem;background-color:var(--color3);color:var(--color1);border:1px solid var(--color1)}.m_brandportal-login .bp-login__content{display:flex;justify-content:center;position:absolute;width:100%;top:8.75rem;bottom:3.125rem;overflow:hidden}@media only screen and (min-width: 48rem),print{.m_brandportal-login .bp-login__content{top:18.75rem;bottom:4.625rem}}.m_brandportal-login .bp-login__container{height:100%;opacity:1}@media only screen and (max-width: 47.9375rem){.m_brandportal-login .bp-login__container{position:relative;width:calc(100% - (2 * 1.25rem));margin-left:auto;margin-right:auto;max-width:90rem;transition:opacity 500ms 125ms,transform 500ms 125ms}}@media only screen and (min-width: 48rem),print{.m_brandportal-login .bp-login__container{transition:opacity 500ms 250ms,transform 500ms 250ms;position:relative;margin-left:6.25rem;margin-right:auto;width:34rem;padding-right:4.5rem}}.m_brandportal-login .bp-login__promo-row{position:relative;z-index:1;height:100%;overflow:auto;display:grid;grid-gap:1.25rem;grid-template-areas:"teaser teaser";grid-template-columns:repeat(2, 1fr)}@media only screen and (min-width: 48rem),print{.m_brandportal-login .bp-login__promo-row{display:flex;row-gap:3.75rem}}@media only screen and (min-width: 64rem){.m_brandportal-login .bp-login__promo-row{display:flex;row-gap:4.5rem}}.m_brandportal-login .bp-login__promo{grid-area:teaser;display:flex;flex-direction:column;row-gap:4.5rem;height:-moz-fit-content;height:fit-content;background-color:var(--color2);padding:30px 10px}@media only screen and (min-width: 48rem),print{.m_brandportal-login .bp-login__promo{padding:2.25rem}}.m_brandportal-login .bp-login__ctas{display:flex;flex-direction:column;row-gap:1.25rem}.m_brandportal-login .bp-login__headline{overflow:hidden}.m_brandportal-login .bp-login__headline .cmp-title__text{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25}@media only screen and (min-width: 48rem),print{.m_brandportal-login .bp-login__headline .cmp-title__text{font-size:1.875rem;line-height:1.3}}.m_brandportal-login .bp-login__headline .cmp-title__text::after{display:block;content:"";background-color:var(--color1)}.m_brandportal-login .bp-login__headline .cmp-title__text::after{width:23px;height:5px;margin-top:10px;background:var(--color1)}@media only screen and (min-width: 48rem),print{.m_brandportal-login .bp-login__headline .cmp-title__text::after{width:34px;height:7px;margin-top:15px;background:var(--color1)}}.m_brandportal-login .bp-login__headline .richtexteditor h2{margin-bottom:0}@media only screen and (min-width: 48rem),print{.m_brandportal-login .bp-login__text{margin-bottom:25px;overflow:hidden}}.quote--text{text-align:left;font-style:italic;text-transform:none;letter-spacing:0;color:var(--color1);font-size:2rem;text-align:center}.quote--left-mark{width:25px;height:25px;display:inline-block;margin-right:20px;vertical-align:sub}.quote--left-mark::before{content:"";background-image:url(stihl-styles/resources/icons/quotation-mark-01.svg);background-size:25px 25px !important;width:25px !important;height:25px !important;display:inline-block}.quote--right-mark{width:25px;height:25px;display:inline-block;margin-left:20px;vertical-align:sub}.quote--right-mark::before{content:"";background-image:url(stihl-styles/resources/icons/quotation-mark-02.svg);background-size:25px 25px !important;width:25px !important;height:25px !important;display:inline-block}.quote--info{margin-top:25px;display:flex;flex-direction:column;align-items:center}.quote--info__image{border-radius:50%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;background-color:#b1b1b1;width:64px;height:64px;display:inline-block;margin-bottom:8px}.quote--info__no-image{width:64px;height:64px;display:inline-block;margin-bottom:8px}.quote--info__no-image::before{content:"";background-image:url(stihl-styles/resources/icons/icon-unknown-person.svg);background-size:64px 64px !important;width:64px !important;height:64px !important;display:inline-block}.quote--info__detail{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.875rem;text-align:center;max-width:60%}.chatbot{position:fixed;right:8px;bottom:0;z-index:2}@media print{.chatbot{display:none}}.chatbot__launcher{position:absolute;right:-28px;bottom:90px;width:320px;margin:32px;padding:1.3em 1.3em 1em;border:1px solid #000;background-color:#fff;animation-name:slideOutRight;opacity:1;font-size:.9375rem;text-align:left;line-height:1.9;animation-duration:.7s;transition-duration:.8s}.chatbot__launcher::before,.chatbot__launcher::after{content:"";position:absolute;top:100%;left:90%;width:0;height:0;border:solid rgba(0,0,0,0);pointer-events:none}.chatbot__launcher::before{border-color:rgba(243,122,31,0);border-top-color:#000;border-width:9px;margin-left:-31px}.chatbot__launcher::after{border-color:rgba(255,255,255,0);border-top-color:#fff;border-width:8px;margin-left:-30px}.chatbot__launcher.open{display:block;animation-name:slideInRight;opacity:1}.chatbot__launcher.open::after:hover{border-top-color:#f37a1f !important}.chatbot__launcher strong{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1rem;line-height:1.2}@keyframes slideInRight{from{transform:translate3d(150%, 0, 0);visibility:visible}to{transform:translate3d(0, 0, 0)}}@keyframes slideOutRight{from{transform:translate3d(0, 0, 0);visibility:visible}to{transform:translate3d(150%, 0, 0)}}.chatbot .benni{position:absolute;justify-content:center;padding:2px;width:80px;height:80px;bottom:20px;right:20px;overflow:hidden;background:#fff;border-radius:50%;border:1px solid #d4d4d4;transition-duration:.5s;transition-timing-function:ease-out;transition-property:all;transform-origin:bottom right;transform:scale(0.6) translateX(13px);display:flex;opacity:0;pointer-events:none}.chatbot .benni.open{transform:scale(1) translateX(0);pointer-events:all;opacity:1}.chatbot .benni img{width:120px;height:80px;max-width:500px;max-height:500px;display:inline-block;position:relative;align-self:center}.speechbubble{position:absolute;right:-158px;bottom:0;width:150px;height:75px;margin:20px 0;padding:5px;border-radius:75px 0 0 75px;background-color:#f37a1f;cursor:pointer;box-sizing:border-box;animation-duration:.7s;transition-duration:.5s;transition-timing-function:ease-out;transition-property:background-color,border-color,opacity;opacity:0;pointer-events:none}.speechbubble-circle{border-radius:50%;overflow:hidden;background-color:#f37a1f;display:flex;justify-content:center;align-items:center;width:65px;height:65px;transition-duration:.5s;transition-timing-function:ease-out;transition-property:background-color,border-color,opacity}.speechbubble.open{opacity:1;pointer-events:all;right:-8px}@media(max-width: 63.9375rem){.speechbubble.open{width:100px}}.speechbubble .icon svg,.speechbubble .icon svg path{fill:#fff}.speechbubble:hover{background-color:#000;animation:speechbubbleHover .3s ease}@keyframes speechbubbleHover{0%{width:150px}50%{width:160px}100%{width:150px}}.speechbubble:hover .speechbubble-circle{background-color:#000}.speechbubble:hover circle{animation:dots 1s infinite}.speechbubble:hover .icon--speechbubble .speechbubble__dot2{animation-delay:.2s}.speechbubble:hover .icon--speechbubble .speechbubble__dot3{animation-delay:.4s}.speechbubble .icon{width:24px;height:24px}@keyframes dots{0%{transform:translateY(0)}50%{transform:translateY(-2px)}100%{transform:translateY(0)}}#WACContainer.WACContainer .WACAlternateSuggestionsButton__button{display:none !important}#WACContainer.WACContainer .WAC__button-holder .WAC__button--base{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:#000 !important;font-family:var(--font-family-display-medium),Arial,sans-serif;-webkit-hyphens:auto;hyphens:auto;background-color:#dadada !important}#WACContainer.WACContainer .WAC__button-holder .WAC__button--base:hover{background-color:#000 !important;color:#fff !important}#WACContainer.WACContainer #WAC__messages .WAC__sent::after{border:5px solid rgba(0,0,0,0);border-left:6px solid #fff;right:-11px;bottom:19px}#WACContainer.WACContainer #WAC__messages .WAC__sent::before{content:" ";border:6px solid rgba(0,0,0,0);border-left:7px solid #000;right:-13px;bottom:18px;position:absolute}#WACContainer.WACContainer .WAC__send-button:not([disabled]){color:#fff !important}#WACContainer.WACContainer .WAC__send-button:not([disabled]):hover{color:#f37a1f !important}#WACContainer.WACContainer .WAC__button--round{border-radius:0 !important}#WACContainer.WACContainer .WAC__message--padding .WAC__sent{border:1px solid #000;padding:1.3em 1.3em 1em;background-color:#fff !important;border-radius:0;color:#000 !important}#WACContainer.WACContainer #WACHeader>.WACHeader__Buttons{flex-direction:column;align-items:flex-end;padding:6px}#WACContainer.WACContainer #WACHeader>.WACHeader__Buttons .WAC__headerButtonContainer{margin:2px}#WACContainer.WACContainer #WACHeader>.WACHeader__Buttons>.chatbot-feedback--link>a{color:#f37a1f;font-size:.9375rem;text-decoration:none;padding:6px;margin:2px}#WACContainer.WACContainer #WACHeader>.WACHeader__Buttons>.chatbot-feedback--link>a:hover{background-color:var(--WatsonAssistantChat-PRIMARY-color-hover)}@media print{@page{.corporate-body{size:a4;padding:1cm;counter-increment:page}}.corporate-body .job-detail-page__qr-code{display:block !important;margin-top:-100px;margin-left:0;z-index:500 !important;position:relative}.corporate-body .image-gallery-slide{position:static !important;page-break-after:always;page-break-before:always}.corporate-body .image-gallery-slide .pgph-2 p{font-size:9pt}.corporate-body .container__inner .richtexteditor:nth-child(6){page-break-after:always}.corporate-body .m-navigation-main__mobile,.corporate-body .m-navigation-main__desktop{border:none}.corporate-body .m-navigation-list{justify-content:end}.corporate-body .m-navigation-list .m-navigation-list--item__logo a{width:4.33cm;height:.9cm}.corporate-body .m_img-gallery-01__content.pgph-2{margin-top:0}.corporate-body .job-detail-page .job-header .job-header__title-wrapper{margin-top:2rem}.corporate-body header,.corporate-body .m-navigation-main .m-navigation-list--item,.corporate-body .footerwrapper,.corporate-body .cta.section,.corporate-body .chatbot,.corporate-body .m_img-gallery-01__button .icon-high,.corporate-body .container__inner .richtexteditor:nth-last-child(2),.corporate-body .container__inner .gridcomponent.section,.corporate-body .image-gallery-slide-wrapper .image-gallery-index,.corporate-body .cmp-title__text,.corporate-body .image-gallery-bullets,.corporate-body .generateprintpdf,.corporate-body .breadcrumb,.corporate-body .job-detail-page .job-detail-page__export-links,.corporate-body .job-detail-page .job-header picture,.corporate-body .job-detail-page .job-detail-page__apply-btn,.corporate-body .job-detail-page .job-cta-module__apply-btn,.corporate-body .job-detail-page .job-detail-page__links,.corporate-body .job-detail-page .job-detail-page__video,.corporate-body .job-detail-page .job-application-process .text-img__img-wrapper,.corporate-body .job-detail-page__job-cta-module,.corporate-body .job-detail-page__job-application-process,.corporate-body .newest-job-offer{display:none}.corporate-body .job-detail-page .text-img--container{display:flex;flex-direction:column;gap:15rem}.corporate-body .job-detail-page .job-detail-page__main{display:flex;flex-direction:column;gap:1.5rem}.corporate-body .container__inner .cmp-image .text-img__text .richtexteditor,.corporate-body .job-detail-description .job-detail-description__introduction-text,.corporate-body .job-detail-page .job-application-process .text-img--container,.corporate-body .job-application-process .text-img__text .richtexteditor.text,.corporate-body .job-detail-page .job-cta-module__text{display:block}.corporate-body .container__inner .cmp-image .text-img{display:flex;flex-direction:column;gap:2rem}.corporate-body .container__inner .m_img-comb-container__inner picture{overflow:hidden}.corporate-body .container__inner h1,.corporate-body .container__inner .headline__container .headline__wrapper{font-size:12pt}.corporate-body .container__inner .richtexteditor .cmp-text h2,.corporate-body .container__inner .richtexteditor .cmp-text h3,.corporate-body .container__inner .richtexteditor .cmp-text h4,.corporate-body .container__inner .richtexteditor .cmp-text h4 b,.corporate-body .container__inner .richtexteditor .cmp-text h5,.corporate-body .container__inner .richtexteditor .cmp-text h6{font-size:11pt}.corporate-body .container__inner .richtexteditor .cmp-text p{font-size:10.5pt}.corporate-body .container__inner .text-img__img-wrapper .text-img__img-desc p,.corporate-body .container__inner .image-gallery-slides .pgph-2 p{font-size:9pt}.corporate-body .job-header__title-wrapper{position:static;width:auto}.corporate-body .job-header{height:auto}.corporate-body .m-navigation-list--item__logo{margin-left:auto}.corporate-body .job-detail-page__apply-now{order:1}.corporate-body .job-detail-page__apply-now-inner{display:flex;flex-direction:column}}.language-navigation-v3__btn{display:flex;align-items:center;gap:.5rem}.language-navigation-v3__btn-text{display:none}@media only screen and (min-width: 64rem){.language-navigation-v3__btn__btn{gap:.5625rem}.language-navigation-v3__btn-text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.75rem;display:block;border-bottom:2px solid #252525}}.search-language-navigation-v3{position:absolute;top:0;left:0;z-index:1000;width:100%}@media only screen and (min-width: 64rem){.search-language-navigation-v3{z-index:1;left:auto;top:auto;right:0;width:16.25rem;border:solid 2px #252525}}.search-language-navigation-v3__top-section{display:flex;align-items:center;justify-content:space-between;height:3.75rem;background-color:#f8f8f8;border-bottom:#ededed 1px solid}@media only screen and (min-width: 64rem){.search-language-navigation-v3__top-section{display:none}}.search-language-navigation-v3__current-language{display:flex;align-items:center;gap:8px;padding-left:2.125rem}.search-language-navigation-v3__close-btn{display:flex;align-items:center;flex-direction:column;justify-content:center;height:3.125rem;gap:2px;border-left:#ededed 1px solid;padding-left:2.125rem;padding-right:1rem;margin-bottom:-0.5625rem}.search-language-navigation-v3__close-btn-text{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:.625rem}.search-language-navigation-v3__down-section{height:100vh;background-color:#f8f8f8;padding:1rem 2rem 0}.search-language-navigation-v3__down-section-main{overflow-y:scroll;scrollbar-width:auto;scrollbar-color:#b1b1b1 #ededed;max-height:25rem}.search-language-navigation-v3__down-section-main::-webkit-scrollbar{width:.3125rem}.search-language-navigation-v3__down-section-main::-webkit-scrollbar-track{background-color:#ededed}.search-language-navigation-v3__down-section-main::-webkit-scrollbar-thumb{background-color:#b1b1b1;outline:.5px solid #b1b1b1;height:2.4375rem}@media only screen and (min-width: 64rem){.search-language-navigation-v3__down-section{width:16.25rem;height:25rem;padding:0}.search-language-navigation-v3__down-section-main{width:13rem;max-height:20rem;padding:0 1rem;margin-top:1rem}}.search-language-navigation-v3__search{display:flex;align-items:center;justify-content:space-around;background-color:#fff;margin:1.5rem auto}@media only screen and (min-width: 64rem){.search-language-navigation-v3__search:hover{background-color:#ededed}}.search-language-navigation-v3__search-input{width:12.5rem;height:3rem;padding:.25rem .5rem}.search-language-navigation-v3__search-btn-wrapper,.search-language-navigation-v3__search-cross-icon,.search-language-navigation-v3__search-search-icon{width:16px}@media only screen and (min-width: 64rem){.search-language-navigation-v3__search-input{width:11.25rem}.search-language-navigation-v3__search-btn-wrapper{padding-right:1rem}.search-language-navigation-v3__search-search-icon{padding-left:1rem}}.search-language-navigation-v3__search-input::-moz-placeholder{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#505050;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}.search-language-navigation-v3__search-input::placeholder{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:#505050;line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}@media only screen and (min-width: 64rem){.search-language-navigation-v3__search{margin:auto}}.search-language-navigation-v3__search-border-small{border:solid 1px #252525}.search-language-navigation-v3__search-border-medium{border:solid 2px #252525}@media only screen and (min-width: 64rem){.search-language-navigation-v3__search-border-small,.search-language-navigation-v3__search-border-medium{border:none;border-bottom:2px solid #252525}}.search-language-navigation-v3__heading{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1.25rem;font-weight:bold;line-height:1.2;margin-bottom:1.5rem;padding-bottom:.5rem;border-bottom:#ededed 1px solid}@media only screen and (min-width: 64rem){.search-language-navigation-v3__heading{text-align:left;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-medium),Arial,sans-serif;-webkit-hyphens:auto;hyphens:auto;font-size:.875rem;line-height:1.15;padding-bottom:.25rem}.search-language-navigation-v3__heading:last-of-type{margin-top:1rem}}.search-language-navigation-v3 input[type=search]::-ms-clear{display:none;width:0;height:0}.search-language-navigation-v3 input[type=search]::-ms-reveal{display:none;width:0;height:0}.search-language-navigation-v3 input[type=search]::-webkit-search-decoration,.search-language-navigation-v3 input[type=search]::-webkit-search-cancel-button,.search-language-navigation-v3 input[type=search]::-webkit-search-results-button,.search-language-navigation-v3 input[type=search]::-webkit-search-results-decoration{display:none}.search-language-navigation-v3__list{padding-left:1.5rem}.search-language-navigation-v3__list-item{margin-bottom:1.5rem}@media only screen and (min-width: 64rem){.search-language-navigation-v3__list-item{margin-bottom:.5rem}}.search-language-navigation-v3__list-link{text-align:left;font-style:normal;text-transform:none;letter-spacing:0;color:var(--color1);line-height:1.5;font-weight:normal;font-family:var(--font-family-text),Arial,sans-serif;font-size:1rem}@media only screen and (min-width: 64rem){.search-language-navigation-v3__list-link{font-size:.875rem}}.search-language-navigation-v3__list-label{padding-right:.375rem;color:#000;font-weight:bold}@media only screen and (min-width: 64rem){.search-language-navigation-v3__list{padding-left:0}}.cc-search-results__section{padding-bottom:2.5rem}.cc-search-results__btn{text-align:center;margin-top:3.75rem}.cc-search-results__form{width:25rem;max-width:100%;margin:0 auto}.cc-search-results__heading{text-align:center;font-style:normal;text-transform:uppercase;letter-spacing:0;color:var(--color1);font-family:var(--font-family-display-title),"Arial Black",sans-serif;line-height:1.1;-webkit-hyphens:auto;hyphens:auto;font-size:1.625rem;line-height:1.25}@media only screen and (min-width: 48rem),print{.cc-search-results__heading{font-size:1.875rem;line-height:1.3}} /*# sourceMappingURL=styles.css.map*/