From 078ef542cdf7e43d64be10d0aaac0fb97eb2454c Mon Sep 17 00:00:00 2001 From: Ralf Baussenwein Date: Wed, 10 May 2023 13:06:49 +0200 Subject: [PATCH] CS --- .../ContentElement/ColumnStartController.php | 28 +- .../ContentElement/ColumnsStartController.php | 4 +- .../RockSolidColumnsExtension.php | 12 +- .../AddColumnsClassesToContentListener.php | 48 +- .../AddColumnsClassesToFormListener.php | 66 +- .../AddFrontendAssetsListener.php | 12 +- .../AddBackendAssetsListener.php | 42 +- ...eateStopElementsSubmitCallbackListener.php | 118 ++-- src/Migration/ColumnsXLargeMigration.php | 54 +- src/Resources/config/services.yaml | 12 +- src/Resources/contao/dca/tl_content.php | 2 +- src/Resources/contao/dca/tl_form_field.php | 4 +- src/Resources/public/css/be_main.css | 8 +- src/Resources/public/css/columns.css | 640 +++++++++--------- 14 files changed, 525 insertions(+), 525 deletions(-) diff --git a/src/Controller/ContentElement/ColumnStartController.php b/src/Controller/ContentElement/ColumnStartController.php index 666072f..7e7aaff 100644 --- a/src/Controller/ContentElement/ColumnStartController.php +++ b/src/Controller/ContentElement/ColumnStartController.php @@ -29,13 +29,13 @@ class ColumnStartController extends AbstractContentElementController { private ScopeMatcher $scopeMatcher; - private Studio $studio; + private Studio $studio; - public function __construct(ScopeMatcher $scopeMatcher, Studio $studio) + public function __construct(ScopeMatcher $scopeMatcher, Studio $studio) { $this->scopeMatcher = $scopeMatcher; - $this->studio = $studio; - } + $this->studio = $studio; + } protected function getResponse(Template $template, ContentModel $model, Request $request): ?Response { @@ -79,16 +79,16 @@ protected function getResponse(Template $template, ContentModel $model, Request } if (trim($model->rs_column_background_image)) { - $figure = $this->studio - ->createFigureBuilder() - ->fromUuid($model->rs_column_background_image ?: '') - ->setSize($model->rs_column_background_image_size) - ->enableLightbox(false) - ->buildIfResourceExists() - ; - if (null !== $figure) { - $styles[] = 'background-image: url("' . $figure->getImage()->getImageSrc(true) . '");'; - } + $figure = $this->studio + ->createFigureBuilder() + ->fromUuid($model->rs_column_background_image ?: '') + ->setSize($model->rs_column_background_image_size) + ->enableLightbox(false) + ->buildIfResourceExists() + ; + if (null !== $figure) { + $styles[] = 'background-image: url("' . $figure->getImage()->getImageSrc(true) . '");'; + } } if ($model->rs_column_background_size) { diff --git a/src/Controller/ContentElement/ColumnsStartController.php b/src/Controller/ContentElement/ColumnsStartController.php index 586b29f..dad65ef 100644 --- a/src/Controller/ContentElement/ColumnsStartController.php +++ b/src/Controller/ContentElement/ColumnsStartController.php @@ -86,7 +86,7 @@ protected function getResponse(Template $template, ContentModel $model, Request * Generate the columns configuration * * @param array $data Data array - * @return array Columns configuration + * @return array Columns configuration */ public static function getColumnsConfiguration(array $data): array { @@ -134,7 +134,7 @@ public static function getColumnsConfiguration(array $data): array * Generate the wrapper class name * * @param array $data Data array - * @return string Wrapper class name + * @return string Wrapper class name */ public static function getWrapperClassName(array $data): string { diff --git a/src/DependencyInjection/RockSolidColumnsExtension.php b/src/DependencyInjection/RockSolidColumnsExtension.php index 74d9ffc..2f01b83 100644 --- a/src/DependencyInjection/RockSolidColumnsExtension.php +++ b/src/DependencyInjection/RockSolidColumnsExtension.php @@ -15,10 +15,10 @@ final class RockSolidColumnsExtension extends Extension { - public function load(array $configs, ContainerBuilder $container): void - { - (new YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'))) - ->load('services.yaml') - ; - } + public function load(array $configs, ContainerBuilder $container): void + { + (new YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'))) + ->load('services.yaml') + ; + } } diff --git a/src/EventListener/AddColumnsClassesToContentListener.php b/src/EventListener/AddColumnsClassesToContentListener.php index e4a484e..6be4864 100644 --- a/src/EventListener/AddColumnsClassesToContentListener.php +++ b/src/EventListener/AddColumnsClassesToContentListener.php @@ -16,36 +16,36 @@ */ class AddColumnsClassesToContentListener { - public function __invoke(ContentModel $contentModel, string $buffer, $element): string - { - $parentKey = ($contentModel->ptable ?: 'tl_article').'__'.$contentModel->pid; - $excludeElements = ['rs_columns_start', 'rs_columns_stop', 'rs_column_start', 'rs_column_stop']; + public function __invoke(ContentModel $contentModel, string $buffer, $element): string + { + $parentKey = ($contentModel->ptable ?: 'tl_article').'__'.$contentModel->pid; + $excludeElements = ['rs_columns_start', 'rs_columns_stop', 'rs_column_start', 'rs_column_stop']; - if ( - isset($GLOBALS['TL_RS_COLUMNS'][$parentKey]) - && $GLOBALS['TL_RS_COLUMNS'][$parentKey]['active'] - && !\in_array($contentModel->type, $excludeElements, true) - ) { + if ( + isset($GLOBALS['TL_RS_COLUMNS'][$parentKey]) + && $GLOBALS['TL_RS_COLUMNS'][$parentKey]['active'] + && !\in_array($contentModel->type, $excludeElements, true) + ) { - $GLOBALS['TL_RS_COLUMNS'][$parentKey]['count']++; - $count = $GLOBALS['TL_RS_COLUMNS'][$parentKey]['count']; + $GLOBALS['TL_RS_COLUMNS'][$parentKey]['count']++; + $count = $GLOBALS['TL_RS_COLUMNS'][$parentKey]['count']; - if ($count) { + if ($count) { - $classes = array('rs-column'); - foreach ($GLOBALS['TL_RS_COLUMNS'][$parentKey]['config'] as $name => $media) { - $classes = array_merge($classes, $media[($count - 1) % count($media)]); - if ($count - 1 < count($media)) { - $classes[] = '-'.$name.'-first-row'; - } - } + $classes = array('rs-column'); + foreach ($GLOBALS['TL_RS_COLUMNS'][$parentKey]['config'] as $name => $media) { + $classes = array_merge($classes, $media[($count - 1) % count($media)]); + if ($count - 1 < count($media)) { + $classes[] = '-'.$name.'-first-row'; + } + } - return '
'.$buffer.'
'; + return '
'.$buffer.'
'; - } + } - } + } - return $buffer; - } + return $buffer; + } } diff --git a/src/EventListener/AddColumnsClassesToFormListener.php b/src/EventListener/AddColumnsClassesToFormListener.php index 17f3a67..02bab77 100644 --- a/src/EventListener/AddColumnsClassesToFormListener.php +++ b/src/EventListener/AddColumnsClassesToFormListener.php @@ -17,37 +17,37 @@ */ class AddColumnsClassesToFormListener { - public function __invoke(Widget $widget, string $formId, array $data, Form $form): Widget - { - $parentKey = 'tl_form__'.$widget->pid; - $excludeWidgets = ['rs_columns_start', 'rs_columns_stop', 'rs_column_start', 'rs_column_stop']; - - if (isset($GLOBALS['TL_RS_COLUMNS'][$parentKey]) - && $GLOBALS['TL_RS_COLUMNS'][$parentKey]['active'] - && !\in_array($widget->type, $excludeWidgets, true) - ) { - - $GLOBALS['TL_RS_COLUMNS'][$parentKey]['count']++; - $count = $GLOBALS['TL_RS_COLUMNS'][$parentKey]['count']; - - if ($count) { - - $classes = array('rs-column'); - foreach ($GLOBALS['TL_RS_COLUMNS'][$parentKey]['config'] as $name => $media) { - $classes = array_merge($classes, $media[($count - 1) % count($media)]); - if ($count - 1 < count($media)) { - $classes[] = '-'.$name.'-first-row'; - } - } - - if ('fieldsetStart' === $widget->type || 'submit' === $widget->type) { - $widget->class .= ' '.implode(' ', $classes); - } else { - $widget->prefix .= ' '.implode(' ', $classes); - } - } - } - - return $widget; - } + public function __invoke(Widget $widget, string $formId, array $data, Form $form): Widget + { + $parentKey = 'tl_form__'.$widget->pid; + $excludeWidgets = ['rs_columns_start', 'rs_columns_stop', 'rs_column_start', 'rs_column_stop']; + + if (isset($GLOBALS['TL_RS_COLUMNS'][$parentKey]) + && $GLOBALS['TL_RS_COLUMNS'][$parentKey]['active'] + && !\in_array($widget->type, $excludeWidgets, true) + ) { + + $GLOBALS['TL_RS_COLUMNS'][$parentKey]['count']++; + $count = $GLOBALS['TL_RS_COLUMNS'][$parentKey]['count']; + + if ($count) { + + $classes = array('rs-column'); + foreach ($GLOBALS['TL_RS_COLUMNS'][$parentKey]['config'] as $name => $media) { + $classes = array_merge($classes, $media[($count - 1) % count($media)]); + if ($count - 1 < count($media)) { + $classes[] = '-'.$name.'-first-row'; + } + } + + if ('fieldsetStart' === $widget->type || 'submit' === $widget->type) { + $widget->class .= ' '.implode(' ', $classes); + } else { + $widget->prefix .= ' '.implode(' ', $classes); + } + } + } + + return $widget; + } } diff --git a/src/EventListener/AddFrontendAssetsListener.php b/src/EventListener/AddFrontendAssetsListener.php index 39a651b..f9e8ad6 100644 --- a/src/EventListener/AddFrontendAssetsListener.php +++ b/src/EventListener/AddFrontendAssetsListener.php @@ -18,10 +18,10 @@ */ class AddFrontendAssetsListener { - public function __invoke(PageModel $pageModel, LayoutModel $layout, PageRegular $pageRegular): void - { - if ($layout->rs_columns_load_css) { - $GLOBALS['TL_CSS'][] = 'bundles/rocksolidcolumns/css/columns.css||static'; - } - } + public function __invoke(PageModel $pageModel, LayoutModel $layout, PageRegular $pageRegular): void + { + if ($layout->rs_columns_load_css) { + $GLOBALS['TL_CSS'][] = 'bundles/rocksolidcolumns/css/columns.css||static'; + } + } } diff --git a/src/EventListener/DataContainer/AddBackendAssetsListener.php b/src/EventListener/DataContainer/AddBackendAssetsListener.php index 137d23e..230d612 100644 --- a/src/EventListener/DataContainer/AddBackendAssetsListener.php +++ b/src/EventListener/DataContainer/AddBackendAssetsListener.php @@ -18,31 +18,31 @@ */ class AddBackendAssetsListener { - private RequestStack $requestStack; - private ScopeMatcher $scopeMatcher; + private RequestStack $requestStack; + private ScopeMatcher $scopeMatcher; - public function __construct(RequestStack $requestStack, ScopeMatcher $scopeMatcher) - { - $this->requestStack = $requestStack; - $this->scopeMatcher = $scopeMatcher; - } + public function __construct(RequestStack $requestStack, ScopeMatcher $scopeMatcher) + { + $this->requestStack = $requestStack; + $this->scopeMatcher = $scopeMatcher; + } - public function __invoke(string $table): void - { - if ('tl_content' !== $table && 'tl_form_field' !== $table) { - return; - } + public function __invoke(string $table): void + { + if ('tl_content' !== $table && 'tl_form_field' !== $table) { + return; + } - $request = $this->requestStack->getCurrentRequest(); + $request = $this->requestStack->getCurrentRequest(); - if (null === $request || !$this->scopeMatcher->isBackendRequest($request)) { - return; - } + if (null === $request || !$this->scopeMatcher->isBackendRequest($request)) { + return; + } - $GLOBALS['TL_CSS'][] = 'bundles/rocksolidcolumns/css/be_main.css'; + $GLOBALS['TL_CSS'][] = 'bundles/rocksolidcolumns/css/be_main.css'; - if ('tl_form_field' === $table) { - System::loadLanguageFile('tl_content'); - } - } + if ('tl_form_field' === $table) { + System::loadLanguageFile('tl_content'); + } + } } diff --git a/src/EventListener/DataContainer/CreateStopElementsSubmitCallbackListener.php b/src/EventListener/DataContainer/CreateStopElementsSubmitCallbackListener.php index 90e0f33..387071d 100644 --- a/src/EventListener/DataContainer/CreateStopElementsSubmitCallbackListener.php +++ b/src/EventListener/DataContainer/CreateStopElementsSubmitCallbackListener.php @@ -18,20 +18,20 @@ */ class CreateStopElementsSubmitCallbackListener { - public function __invoke(DataContainer $dc): void - { - $activeRecord = $dc->activeRecord; - if (!$activeRecord) { - return; - } + public function __invoke(DataContainer $dc): void + { + $activeRecord = $dc->activeRecord; + if (!$activeRecord) { + return; + } - if ($activeRecord->type === 'rs_columns_start' || $activeRecord->type === 'rs_column_start') { + if ($activeRecord->type === 'rs_columns_start' || $activeRecord->type === 'rs_column_start') { - if ($dc->table === 'tl_content') { + if ($dc->table === 'tl_content') { - // Find the next columns or column element - $nextElement = Database::getInstance() - ->prepare(' + // Find the next columns or column element + $nextElement = Database::getInstance() + ->prepare(' SELECT type FROM tl_content WHERE pid = ? @@ -41,19 +41,19 @@ public function __invoke(DataContainer $dc): void ORDER BY sorting ASC LIMIT 1 ') - ->execute( - $activeRecord->pid, - $activeRecord->ptable ?: 'tl_article', - $activeRecord->ptable === 'tl_article' ? '' : $activeRecord->ptable, - $activeRecord->sorting - ); + ->execute( + $activeRecord->pid, + $activeRecord->ptable ?: 'tl_article', + $activeRecord->ptable === 'tl_article' ? '' : $activeRecord->ptable, + $activeRecord->sorting + ); - } - else { + } + else { - // Find the next columns or column element - $nextElement = Database::getInstance() - ->prepare(' + // Find the next columns or column element + $nextElement = Database::getInstance() + ->prepare(' SELECT type FROM ' . $dc->table . ' WHERE pid = ? @@ -62,47 +62,47 @@ public function __invoke(DataContainer $dc): void ORDER BY sorting ASC LIMIT 1 ') - ->execute( - $activeRecord->pid, - $activeRecord->sorting - ); + ->execute( + $activeRecord->pid, + $activeRecord->sorting + ); - } + } - // Check if a stop element should be created - if ( - !$nextElement->type - || ($activeRecord->type === 'rs_columns_start' && $nextElement->type === 'rs_column_stop') - || ($activeRecord->type === 'rs_column_start' && ( - $nextElement->type === 'rs_column_start' || $nextElement->type === 'rs_columns_stop' - )) - ) { - $set = array(); + // Check if a stop element should be created + if ( + !$nextElement->type + || ($activeRecord->type === 'rs_columns_start' && $nextElement->type === 'rs_column_stop') + || ($activeRecord->type === 'rs_column_start' && ( + $nextElement->type === 'rs_column_start' || $nextElement->type === 'rs_columns_stop' + )) + ) { + $set = array(); - // Get all default values for the new entry - foreach ($GLOBALS['TL_DCA'][$dc->table]['fields'] as $field => $config) { - if (array_key_exists('default', $config)) { - $set[$field] = \is_array($config['default']) ? serialize($config['default']) : $config['default']; - } - } + // Get all default values for the new entry + foreach ($GLOBALS['TL_DCA'][$dc->table]['fields'] as $field => $config) { + if (array_key_exists('default', $config)) { + $set[$field] = \is_array($config['default']) ? serialize($config['default']) : $config['default']; + } + } - $set['pid'] = $activeRecord->pid; - $set['type'] = substr($activeRecord->type, 0, -5) . 'stop'; - $set['sorting'] = $activeRecord->sorting + 1; - $set['invisible'] = $activeRecord->invisible; - $set['tstamp'] = time(); + $set['pid'] = $activeRecord->pid; + $set['type'] = substr($activeRecord->type, 0, -5) . 'stop'; + $set['sorting'] = $activeRecord->sorting + 1; + $set['invisible'] = $activeRecord->invisible; + $set['tstamp'] = time(); - if ($dc->table === 'tl_content') { - $set['ptable'] = $activeRecord->ptable ?: 'tl_article'; - $set['start'] = $activeRecord->start; - $set['stop'] = $activeRecord->stop; - } + if ($dc->table === 'tl_content') { + $set['ptable'] = $activeRecord->ptable ?: 'tl_article'; + $set['start'] = $activeRecord->start; + $set['stop'] = $activeRecord->stop; + } - Database::getInstance() - ->prepare('INSERT INTO ' . $dc->table . ' %s') - ->set($set) - ->execute(); - } - } - } + Database::getInstance() + ->prepare('INSERT INTO ' . $dc->table . ' %s') + ->set($set) + ->execute(); + } + } + } } diff --git a/src/Migration/ColumnsXLargeMigration.php b/src/Migration/ColumnsXLargeMigration.php index 84010c9..72a3e26 100644 --- a/src/Migration/ColumnsXLargeMigration.php +++ b/src/Migration/ColumnsXLargeMigration.php @@ -14,40 +14,40 @@ class ColumnsXLargeMigration extends AbstractMigration { - private Connection $connection; + private Connection $connection; - public function __construct(Connection $connection) - { - $this->connection = $connection; - } + public function __construct(Connection $connection) + { + $this->connection = $connection; + } - public function shouldRun(): bool - { - $schemaManager = $this->connection->createSchemaManager(); + public function shouldRun(): bool + { + $schemaManager = $this->connection->createSchemaManager(); - if (!$schemaManager->tablesExist(['tl_content'])) { - return false; - } + if (!$schemaManager->tablesExist(['tl_content'])) { + return false; + } - $columns = $schemaManager->listTableColumns('tl_content'); + $columns = $schemaManager->listTableColumns('tl_content'); - if (!isset($columns['rs_columns_large'])) { - return false; - } + if (!isset($columns['rs_columns_large'])) { + return false; + } - return !isset($columns['rs_columns_xlarge']); - } + return !isset($columns['rs_columns_xlarge']); + } - public function run(): MigrationResult - { - $schemaManager = $this->connection->createSchemaManager(); - $columns = $schemaManager->listTableColumns('tl_content'); + public function run(): MigrationResult + { + $schemaManager = $this->connection->createSchemaManager(); + $columns = $schemaManager->listTableColumns('tl_content'); - if (!isset($columns['rs_columns_xlarge'])) { - $this->connection->executeStatement("ALTER TABLE tl_content ADD rs_columns_xlarge VARCHAR(255) DEFAULT '' NOT NULL"); - $this->connection->executeStatement("UPDATE tl_content SET rs_columns_xlarge = rs_columns_large WHERE rs_columns_large != ''"); - } + if (!isset($columns['rs_columns_xlarge'])) { + $this->connection->executeStatement("ALTER TABLE tl_content ADD rs_columns_xlarge VARCHAR(255) DEFAULT '' NOT NULL"); + $this->connection->executeStatement("UPDATE tl_content SET rs_columns_xlarge = rs_columns_large WHERE rs_columns_large != ''"); + } - return $this->createResult(true); - } + return $this->createResult(true); + } } diff --git a/src/Resources/config/services.yaml b/src/Resources/config/services.yaml index f819815..3c46263 100644 --- a/src/Resources/config/services.yaml +++ b/src/Resources/config/services.yaml @@ -1,8 +1,8 @@ services: - _defaults: - autowire: true - autoconfigure: true + _defaults: + autowire: true + autoconfigure: true - MadeYourDay\RockSolidColumns\: - resource: '../../*' - exclude: '../../{DependencyInjection,Resources}' + MadeYourDay\RockSolidColumns\: + resource: '../../*' + exclude: '../../{DependencyInjection,Resources}' diff --git a/src/Resources/contao/dca/tl_content.php b/src/Resources/contao/dca/tl_content.php index 79430ec..a6e88d6 100644 --- a/src/Resources/contao/dca/tl_content.php +++ b/src/Resources/contao/dca/tl_content.php @@ -12,8 +12,8 @@ * @author Martin Auswöger */ -use Contao\System; use Contao\BackendUser; +use Contao\System; $GLOBALS['TL_DCA']['tl_content']['palettes']['rs_columns_start'] = '{type_legend},type,headline;{rs_columns_legend},rs_columns_xlarge,rs_columns_large,rs_columns_medium,rs_columns_small,rs_columns_xsmall,rs_columns_gutter,rs_columns_outside_gutters,rs_columns_equal_height;{protected_legend:hide},protected;{expert_legend:hide},guests,cssID;{invisible_legend:hide},invisible,start,stop'; $GLOBALS['TL_DCA']['tl_content']['palettes']['rs_columns_stop'] = '{type_legend},type;{protected_legend:hide},protected;{expert_legend:hide},guests;{invisible_legend:hide},invisible,start,stop'; diff --git a/src/Resources/contao/dca/tl_form_field.php b/src/Resources/contao/dca/tl_form_field.php index 8349ca2..ffdf6ca 100644 --- a/src/Resources/contao/dca/tl_form_field.php +++ b/src/Resources/contao/dca/tl_form_field.php @@ -12,8 +12,8 @@ * @author Martin Auswöger */ -use Contao\System; use Contao\BackendUser; +use Contao\System; $GLOBALS['TL_DCA']['tl_form_field']['palettes']['rs_columns_start'] = '{type_legend},type;{rs_columns_legend},rs_columns_xlarge,rs_columns_large,rs_columns_medium,rs_columns_small,rs_columns_xsmall,rs_columns_gutter,rs_columns_outside_gutters,rs_columns_equal_height;{expert_legend:hide},class;{invisible_legend:hide},invisible'; $GLOBALS['TL_DCA']['tl_form_field']['palettes']['rs_columns_stop'] = '{type_legend},type;{invisible_legend:hide},invisible'; @@ -151,7 +151,7 @@ 'exclude' => true, 'inputType' => 'imageSize', 'options_callback' => static function () { - return System::getContainer()->get('contao.image.sizes')->getOptionsForUser(BackendUser::getInstance()); + return System::getContainer()->get('contao.image.sizes')->getOptionsForUser(BackendUser::getInstance()); }, 'reference' => &$GLOBALS['TL_LANG']['MSC'], 'eval' => array( diff --git a/src/Resources/public/css/be_main.css b/src/Resources/public/css/be_main.css index dfbab86..b57f33b 100644 --- a/src/Resources/public/css/be_main.css +++ b/src/Resources/public/css/be_main.css @@ -17,12 +17,12 @@ @media (max-width: 767px) { .rs_columns_w33, .rs_columns_w20 { - float: none; - width: calc(100% - 30px); - min-height: 0; + float: none; + width: calc(100% - 30px); + min-height: 0; } .rs_columns_w33.m12, .rs_columns_w20.m12 { - min-height: 0; + min-height: 0; } } diff --git a/src/Resources/public/css/columns.css b/src/Resources/public/css/columns.css index 737f2a4..76ba23c 100644 --- a/src/Resources/public/css/columns.css +++ b/src/Resources/public/css/columns.css @@ -314,969 +314,969 @@ } @media screen and (max-width: 1200px) { .rs-column.-xlarge-first { - clear: none; + clear: none; } .rs-column.-large-first { - clear: left; + clear: left; } .rs-column.-large-col-1-1 { - width: 100%; + width: 100%; } .rs-column.-large-col-2-1 { - width: 50%; + width: 50%; } .rs-column.-large-col-2-2 { - width: 100%; + width: 100%; } .rs-column.-large-col-3-1 { - width: 33.33333%; + width: 33.33333%; } .rs-column.-large-col-3-2 { - width: 66.66667%; + width: 66.66667%; } .rs-column.-large-col-3-3 { - width: 100%; + width: 100%; } .rs-column.-large-col-4-1 { - width: 25%; + width: 25%; } .rs-column.-large-col-4-2 { - width: 50%; + width: 50%; } .rs-column.-large-col-4-3 { - width: 75%; + width: 75%; } .rs-column.-large-col-4-4 { - width: 100%; + width: 100%; } .rs-column.-large-col-5-1 { - width: 20%; + width: 20%; } .rs-column.-large-col-5-2 { - width: 40%; + width: 40%; } .rs-column.-large-col-5-3 { - width: 60.0%; + width: 60.0%; } .rs-column.-large-col-5-4 { - width: 80%; + width: 80%; } .rs-column.-large-col-5-5 { - width: 100%; + width: 100%; } .rs-column.-large-col-6-1 { - width: 16.66667%; + width: 16.66667%; } .rs-column.-large-col-6-2 { - width: 33.33333%; + width: 33.33333%; } .rs-column.-large-col-6-3 { - width: 50%; + width: 50%; } .rs-column.-large-col-6-4 { - width: 66.66667%; + width: 66.66667%; } .rs-column.-large-col-6-5 { - width: 83.33333%; + width: 83.33333%; } .rs-column.-large-col-6-6 { - width: 100%; + width: 100%; } .rs-column.-large-col-7-1 { - width: 14.28571%; + width: 14.28571%; } .rs-column.-large-col-7-2 { - width: 28.57143%; + width: 28.57143%; } .rs-column.-large-col-7-3 { - width: 42.85714%; + width: 42.85714%; } .rs-column.-large-col-7-4 { - width: 57.14286%; + width: 57.14286%; } .rs-column.-large-col-7-5 { - width: 71.42857%; + width: 71.42857%; } .rs-column.-large-col-7-6 { - width: 85.71429%; + width: 85.71429%; } .rs-column.-large-col-7-7 { - width: 100%; + width: 100%; } .rs-column.-large-col-8-1 { - width: 12.5%; + width: 12.5%; } .rs-column.-large-col-8-2 { - width: 25%; + width: 25%; } .rs-column.-large-col-8-3 { - width: 37.5%; + width: 37.5%; } .rs-column.-large-col-8-4 { - width: 50%; + width: 50%; } .rs-column.-large-col-8-5 { - width: 62.5%; + width: 62.5%; } .rs-column.-large-col-8-6 { - width: 75%; + width: 75%; } .rs-column.-large-col-8-7 { - width: 87.5%; + width: 87.5%; } .rs-column.-large-col-8-8 { - width: 100%; + width: 100%; } .rs-column.-large-col-9-1 { - width: 11.11111%; + width: 11.11111%; } .rs-column.-large-col-9-2 { - width: 22.22222%; + width: 22.22222%; } .rs-column.-large-col-9-3 { - width: 33.33333%; + width: 33.33333%; } .rs-column.-large-col-9-4 { - width: 44.44444%; + width: 44.44444%; } .rs-column.-large-col-9-5 { - width: 55.55556%; + width: 55.55556%; } .rs-column.-large-col-9-6 { - width: 66.66667%; + width: 66.66667%; } .rs-column.-large-col-9-7 { - width: 77.77778%; + width: 77.77778%; } .rs-column.-large-col-9-8 { - width: 88.88889%; + width: 88.88889%; } .rs-column.-large-col-9-9 { - width: 100%; + width: 100%; } .rs-column.-large-col-10-1 { - width: 10%; + width: 10%; } .rs-column.-large-col-10-2 { - width: 20%; + width: 20%; } .rs-column.-large-col-10-3 { - width: 30.0%; + width: 30.0%; } .rs-column.-large-col-10-4 { - width: 40%; + width: 40%; } .rs-column.-large-col-10-5 { - width: 50%; + width: 50%; } .rs-column.-large-col-10-6 { - width: 60.0%; + width: 60.0%; } .rs-column.-large-col-10-7 { - width: 70%; + width: 70%; } .rs-column.-large-col-10-8 { - width: 80%; + width: 80%; } .rs-column.-large-col-10-9 { - width: 90%; + width: 90%; } .rs-column.-large-col-10-10 { - width: 100%; + width: 100%; } .rs-column.-large-col-11-1 { - width: 9.09091%; + width: 9.09091%; } .rs-column.-large-col-11-2 { - width: 18.18182%; + width: 18.18182%; } .rs-column.-large-col-11-3 { - width: 27.27273%; + width: 27.27273%; } .rs-column.-large-col-11-4 { - width: 36.36364%; + width: 36.36364%; } .rs-column.-large-col-11-5 { - width: 45.45455%; + width: 45.45455%; } .rs-column.-large-col-11-6 { - width: 54.54545%; + width: 54.54545%; } .rs-column.-large-col-11-7 { - width: 63.63636%; + width: 63.63636%; } .rs-column.-large-col-11-8 { - width: 72.72727%; + width: 72.72727%; } .rs-column.-large-col-11-9 { - width: 81.81818%; + width: 81.81818%; } .rs-column.-large-col-11-10 { - width: 90.90909%; + width: 90.90909%; } .rs-column.-large-col-11-11 { - width: 100%; + width: 100%; } .rs-column.-large-col-12-1 { - width: 8.33333%; + width: 8.33333%; } .rs-column.-large-col-12-2 { - width: 16.66667%; + width: 16.66667%; } .rs-column.-large-col-12-3 { - width: 25%; + width: 25%; } .rs-column.-large-col-12-4 { - width: 33.33333%; + width: 33.33333%; } .rs-column.-large-col-12-5 { - width: 41.66667%; + width: 41.66667%; } .rs-column.-large-col-12-6 { - width: 50%; + width: 50%; } .rs-column.-large-col-12-7 { - width: 58.33333%; + width: 58.33333%; } .rs-column.-large-col-12-8 { - width: 66.66667%; + width: 66.66667%; } .rs-column.-large-col-12-9 { - width: 75%; + width: 75%; } .rs-column.-large-col-12-10 { - width: 83.33333%; + width: 83.33333%; } .rs-column.-large-col-12-11 { - width: 91.66667%; + width: 91.66667%; } .rs-column.-large-col-12-12 { - width: 100%; + width: 100%; } } @media screen and (max-width: 900px) { .rs-column.-large-first { - clear: none; + clear: none; } .rs-column.-medium-first { - clear: left; + clear: left; } .rs-column.-medium-col-1-1 { - width: 100%; + width: 100%; } .rs-column.-medium-col-2-1 { - width: 50%; + width: 50%; } .rs-column.-medium-col-2-2 { - width: 100%; + width: 100%; } .rs-column.-medium-col-3-1 { - width: 33.33333%; + width: 33.33333%; } .rs-column.-medium-col-3-2 { - width: 66.66667%; + width: 66.66667%; } .rs-column.-medium-col-3-3 { - width: 100%; + width: 100%; } .rs-column.-medium-col-4-1 { - width: 25%; + width: 25%; } .rs-column.-medium-col-4-2 { - width: 50%; + width: 50%; } .rs-column.-medium-col-4-3 { - width: 75%; + width: 75%; } .rs-column.-medium-col-4-4 { - width: 100%; + width: 100%; } .rs-column.-medium-col-5-1 { - width: 20%; + width: 20%; } .rs-column.-medium-col-5-2 { - width: 40%; + width: 40%; } .rs-column.-medium-col-5-3 { - width: 60.0%; + width: 60.0%; } .rs-column.-medium-col-5-4 { - width: 80%; + width: 80%; } .rs-column.-medium-col-5-5 { - width: 100%; + width: 100%; } .rs-column.-medium-col-6-1 { - width: 16.66667%; + width: 16.66667%; } .rs-column.-medium-col-6-2 { - width: 33.33333%; + width: 33.33333%; } .rs-column.-medium-col-6-3 { - width: 50%; + width: 50%; } .rs-column.-medium-col-6-4 { - width: 66.66667%; + width: 66.66667%; } .rs-column.-medium-col-6-5 { - width: 83.33333%; + width: 83.33333%; } .rs-column.-medium-col-6-6 { - width: 100%; + width: 100%; } .rs-column.-medium-col-7-1 { - width: 14.28571%; + width: 14.28571%; } .rs-column.-medium-col-7-2 { - width: 28.57143%; + width: 28.57143%; } .rs-column.-medium-col-7-3 { - width: 42.85714%; + width: 42.85714%; } .rs-column.-medium-col-7-4 { - width: 57.14286%; + width: 57.14286%; } .rs-column.-medium-col-7-5 { - width: 71.42857%; + width: 71.42857%; } .rs-column.-medium-col-7-6 { - width: 85.71429%; + width: 85.71429%; } .rs-column.-medium-col-7-7 { - width: 100%; + width: 100%; } .rs-column.-medium-col-8-1 { - width: 12.5%; + width: 12.5%; } .rs-column.-medium-col-8-2 { - width: 25%; + width: 25%; } .rs-column.-medium-col-8-3 { - width: 37.5%; + width: 37.5%; } .rs-column.-medium-col-8-4 { - width: 50%; + width: 50%; } .rs-column.-medium-col-8-5 { - width: 62.5%; + width: 62.5%; } .rs-column.-medium-col-8-6 { - width: 75%; + width: 75%; } .rs-column.-medium-col-8-7 { - width: 87.5%; + width: 87.5%; } .rs-column.-medium-col-8-8 { - width: 100%; + width: 100%; } .rs-column.-medium-col-9-1 { - width: 11.11111%; + width: 11.11111%; } .rs-column.-medium-col-9-2 { - width: 22.22222%; + width: 22.22222%; } .rs-column.-medium-col-9-3 { - width: 33.33333%; + width: 33.33333%; } .rs-column.-medium-col-9-4 { - width: 44.44444%; + width: 44.44444%; } .rs-column.-medium-col-9-5 { - width: 55.55556%; + width: 55.55556%; } .rs-column.-medium-col-9-6 { - width: 66.66667%; + width: 66.66667%; } .rs-column.-medium-col-9-7 { - width: 77.77778%; + width: 77.77778%; } .rs-column.-medium-col-9-8 { - width: 88.88889%; + width: 88.88889%; } .rs-column.-medium-col-9-9 { - width: 100%; + width: 100%; } .rs-column.-medium-col-10-1 { - width: 10%; + width: 10%; } .rs-column.-medium-col-10-2 { - width: 20%; + width: 20%; } .rs-column.-medium-col-10-3 { - width: 30.0%; + width: 30.0%; } .rs-column.-medium-col-10-4 { - width: 40%; + width: 40%; } .rs-column.-medium-col-10-5 { - width: 50%; + width: 50%; } .rs-column.-medium-col-10-6 { - width: 60.0%; + width: 60.0%; } .rs-column.-medium-col-10-7 { - width: 70%; + width: 70%; } .rs-column.-medium-col-10-8 { - width: 80%; + width: 80%; } .rs-column.-medium-col-10-9 { - width: 90%; + width: 90%; } .rs-column.-medium-col-10-10 { - width: 100%; + width: 100%; } .rs-column.-medium-col-11-1 { - width: 9.09091%; + width: 9.09091%; } .rs-column.-medium-col-11-2 { - width: 18.18182%; + width: 18.18182%; } .rs-column.-medium-col-11-3 { - width: 27.27273%; + width: 27.27273%; } .rs-column.-medium-col-11-4 { - width: 36.36364%; + width: 36.36364%; } .rs-column.-medium-col-11-5 { - width: 45.45455%; + width: 45.45455%; } .rs-column.-medium-col-11-6 { - width: 54.54545%; + width: 54.54545%; } .rs-column.-medium-col-11-7 { - width: 63.63636%; + width: 63.63636%; } .rs-column.-medium-col-11-8 { - width: 72.72727%; + width: 72.72727%; } .rs-column.-medium-col-11-9 { - width: 81.81818%; + width: 81.81818%; } .rs-column.-medium-col-11-10 { - width: 90.90909%; + width: 90.90909%; } .rs-column.-medium-col-11-11 { - width: 100%; + width: 100%; } .rs-column.-medium-col-12-1 { - width: 8.33333%; + width: 8.33333%; } .rs-column.-medium-col-12-2 { - width: 16.66667%; + width: 16.66667%; } .rs-column.-medium-col-12-3 { - width: 25%; + width: 25%; } .rs-column.-medium-col-12-4 { - width: 33.33333%; + width: 33.33333%; } .rs-column.-medium-col-12-5 { - width: 41.66667%; + width: 41.66667%; } .rs-column.-medium-col-12-6 { - width: 50%; + width: 50%; } .rs-column.-medium-col-12-7 { - width: 58.33333%; + width: 58.33333%; } .rs-column.-medium-col-12-8 { - width: 66.66667%; + width: 66.66667%; } .rs-column.-medium-col-12-9 { - width: 75%; + width: 75%; } .rs-column.-medium-col-12-10 { - width: 83.33333%; + width: 83.33333%; } .rs-column.-medium-col-12-11 { - width: 91.66667%; + width: 91.66667%; } .rs-column.-medium-col-12-12 { - width: 100%; + width: 100%; } } @media screen and (max-width: 599px) { .rs-column.-medium-first { - clear: none; + clear: none; } .rs-column.-small-first { - clear: left; + clear: left; } .rs-column.-small-col-1-1 { - width: 100%; + width: 100%; } .rs-column.-small-col-2-1 { - width: 50%; + width: 50%; } .rs-column.-small-col-2-2 { - width: 100%; + width: 100%; } .rs-column.-small-col-3-1 { - width: 33.33333%; + width: 33.33333%; } .rs-column.-small-col-3-2 { - width: 66.66667%; + width: 66.66667%; } .rs-column.-small-col-3-3 { - width: 100%; + width: 100%; } .rs-column.-small-col-4-1 { - width: 25%; + width: 25%; } .rs-column.-small-col-4-2 { - width: 50%; + width: 50%; } .rs-column.-small-col-4-3 { - width: 75%; + width: 75%; } .rs-column.-small-col-4-4 { - width: 100%; + width: 100%; } .rs-column.-small-col-5-1 { - width: 20%; + width: 20%; } .rs-column.-small-col-5-2 { - width: 40%; + width: 40%; } .rs-column.-small-col-5-3 { - width: 60.0%; + width: 60.0%; } .rs-column.-small-col-5-4 { - width: 80%; + width: 80%; } .rs-column.-small-col-5-5 { - width: 100%; + width: 100%; } .rs-column.-small-col-6-1 { - width: 16.66667%; + width: 16.66667%; } .rs-column.-small-col-6-2 { - width: 33.33333%; + width: 33.33333%; } .rs-column.-small-col-6-3 { - width: 50%; + width: 50%; } .rs-column.-small-col-6-4 { - width: 66.66667%; + width: 66.66667%; } .rs-column.-small-col-6-5 { - width: 83.33333%; + width: 83.33333%; } .rs-column.-small-col-6-6 { - width: 100%; + width: 100%; } .rs-column.-small-col-7-1 { - width: 14.28571%; + width: 14.28571%; } .rs-column.-small-col-7-2 { - width: 28.57143%; + width: 28.57143%; } .rs-column.-small-col-7-3 { - width: 42.85714%; + width: 42.85714%; } .rs-column.-small-col-7-4 { - width: 57.14286%; + width: 57.14286%; } .rs-column.-small-col-7-5 { - width: 71.42857%; + width: 71.42857%; } .rs-column.-small-col-7-6 { - width: 85.71429%; + width: 85.71429%; } .rs-column.-small-col-7-7 { - width: 100%; + width: 100%; } .rs-column.-small-col-8-1 { - width: 12.5%; + width: 12.5%; } .rs-column.-small-col-8-2 { - width: 25%; + width: 25%; } .rs-column.-small-col-8-3 { - width: 37.5%; + width: 37.5%; } .rs-column.-small-col-8-4 { - width: 50%; + width: 50%; } .rs-column.-small-col-8-5 { - width: 62.5%; + width: 62.5%; } .rs-column.-small-col-8-6 { - width: 75%; + width: 75%; } .rs-column.-small-col-8-7 { - width: 87.5%; + width: 87.5%; } .rs-column.-small-col-8-8 { - width: 100%; + width: 100%; } .rs-column.-small-col-9-1 { - width: 11.11111%; + width: 11.11111%; } .rs-column.-small-col-9-2 { - width: 22.22222%; + width: 22.22222%; } .rs-column.-small-col-9-3 { - width: 33.33333%; + width: 33.33333%; } .rs-column.-small-col-9-4 { - width: 44.44444%; + width: 44.44444%; } .rs-column.-small-col-9-5 { - width: 55.55556%; + width: 55.55556%; } .rs-column.-small-col-9-6 { - width: 66.66667%; + width: 66.66667%; } .rs-column.-small-col-9-7 { - width: 77.77778%; + width: 77.77778%; } .rs-column.-small-col-9-8 { - width: 88.88889%; + width: 88.88889%; } .rs-column.-small-col-9-9 { - width: 100%; + width: 100%; } .rs-column.-small-col-10-1 { - width: 10%; + width: 10%; } .rs-column.-small-col-10-2 { - width: 20%; + width: 20%; } .rs-column.-small-col-10-3 { - width: 30.0%; + width: 30.0%; } .rs-column.-small-col-10-4 { - width: 40%; + width: 40%; } .rs-column.-small-col-10-5 { - width: 50%; + width: 50%; } .rs-column.-small-col-10-6 { - width: 60.0%; + width: 60.0%; } .rs-column.-small-col-10-7 { - width: 70%; + width: 70%; } .rs-column.-small-col-10-8 { - width: 80%; + width: 80%; } .rs-column.-small-col-10-9 { - width: 90%; + width: 90%; } .rs-column.-small-col-10-10 { - width: 100%; + width: 100%; } .rs-column.-small-col-11-1 { - width: 9.09091%; + width: 9.09091%; } .rs-column.-small-col-11-2 { - width: 18.18182%; + width: 18.18182%; } .rs-column.-small-col-11-3 { - width: 27.27273%; + width: 27.27273%; } .rs-column.-small-col-11-4 { - width: 36.36364%; + width: 36.36364%; } .rs-column.-small-col-11-5 { - width: 45.45455%; + width: 45.45455%; } .rs-column.-small-col-11-6 { - width: 54.54545%; + width: 54.54545%; } .rs-column.-small-col-11-7 { - width: 63.63636%; + width: 63.63636%; } .rs-column.-small-col-11-8 { - width: 72.72727%; + width: 72.72727%; } .rs-column.-small-col-11-9 { - width: 81.81818%; + width: 81.81818%; } .rs-column.-small-col-11-10 { - width: 90.90909%; + width: 90.90909%; } .rs-column.-small-col-11-11 { - width: 100%; + width: 100%; } .rs-column.-small-col-12-1 { - width: 8.33333%; + width: 8.33333%; } .rs-column.-small-col-12-2 { - width: 16.66667%; + width: 16.66667%; } .rs-column.-small-col-12-3 { - width: 25%; + width: 25%; } .rs-column.-small-col-12-4 { - width: 33.33333%; + width: 33.33333%; } .rs-column.-small-col-12-5 { - width: 41.66667%; + width: 41.66667%; } .rs-column.-small-col-12-6 { - width: 50%; + width: 50%; } .rs-column.-small-col-12-7 { - width: 58.33333%; + width: 58.33333%; } .rs-column.-small-col-12-8 { - width: 66.66667%; + width: 66.66667%; } .rs-column.-small-col-12-9 { - width: 75%; + width: 75%; } .rs-column.-small-col-12-10 { - width: 83.33333%; + width: 83.33333%; } .rs-column.-small-col-12-11 { - width: 91.66667%; + width: 91.66667%; } .rs-column.-small-col-12-12 { - width: 100%; + width: 100%; } } @media screen and (max-width: 399px) { .rs-column.-small-first { - clear: none; + clear: none; } .rs-column.-xsmall-first { - clear: left; + clear: left; } .rs-column.-xsmall-col-1-1 { - width: 100%; + width: 100%; } .rs-column.-xsmall-col-2-1 { - width: 50%; + width: 50%; } .rs-column.-xsmall-col-2-2 { - width: 100%; + width: 100%; } .rs-column.-xsmall-col-3-1 { - width: 33.33333%; + width: 33.33333%; } .rs-column.-xsmall-col-3-2 { - width: 66.66667%; + width: 66.66667%; } .rs-column.-xsmall-col-3-3 { - width: 100%; + width: 100%; } .rs-column.-xsmall-col-4-1 { - width: 25%; + width: 25%; } .rs-column.-xsmall-col-4-2 { - width: 50%; + width: 50%; } .rs-column.-xsmall-col-4-3 { - width: 75%; + width: 75%; } .rs-column.-xsmall-col-4-4 { - width: 100%; + width: 100%; } .rs-column.-xsmall-col-5-1 { - width: 20%; + width: 20%; } .rs-column.-xsmall-col-5-2 { - width: 40%; + width: 40%; } .rs-column.-xsmall-col-5-3 { - width: 60.0%; + width: 60.0%; } .rs-column.-xsmall-col-5-4 { - width: 80%; + width: 80%; } .rs-column.-xsmall-col-5-5 { - width: 100%; + width: 100%; } .rs-column.-xsmall-col-6-1 { - width: 16.66667%; + width: 16.66667%; } .rs-column.-xsmall-col-6-2 { - width: 33.33333%; + width: 33.33333%; } .rs-column.-xsmall-col-6-3 { - width: 50%; + width: 50%; } .rs-column.-xsmall-col-6-4 { - width: 66.66667%; + width: 66.66667%; } .rs-column.-xsmall-col-6-5 { - width: 83.33333%; + width: 83.33333%; } .rs-column.-xsmall-col-6-6 { - width: 100%; + width: 100%; } .rs-column.-xsmall-col-7-1 { - width: 14.28571%; + width: 14.28571%; } .rs-column.-xsmall-col-7-2 { - width: 28.57143%; + width: 28.57143%; } .rs-column.-xsmall-col-7-3 { - width: 42.85714%; + width: 42.85714%; } .rs-column.-xsmall-col-7-4 { - width: 57.14286%; + width: 57.14286%; } .rs-column.-xsmall-col-7-5 { - width: 71.42857%; + width: 71.42857%; } .rs-column.-xsmall-col-7-6 { - width: 85.71429%; + width: 85.71429%; } .rs-column.-xsmall-col-7-7 { - width: 100%; + width: 100%; } .rs-column.-xsmall-col-8-1 { - width: 12.5%; + width: 12.5%; } .rs-column.-xsmall-col-8-2 { - width: 25%; + width: 25%; } .rs-column.-xsmall-col-8-3 { - width: 37.5%; + width: 37.5%; } .rs-column.-xsmall-col-8-4 { - width: 50%; + width: 50%; } .rs-column.-xsmall-col-8-5 { - width: 62.5%; + width: 62.5%; } .rs-column.-xsmall-col-8-6 { - width: 75%; + width: 75%; } .rs-column.-xsmall-col-8-7 { - width: 87.5%; + width: 87.5%; } .rs-column.-xsmall-col-8-8 { - width: 100%; + width: 100%; } .rs-column.-xsmall-col-9-1 { - width: 11.11111%; + width: 11.11111%; } .rs-column.-xsmall-col-9-2 { - width: 22.22222%; + width: 22.22222%; } .rs-column.-xsmall-col-9-3 { - width: 33.33333%; + width: 33.33333%; } .rs-column.-xsmall-col-9-4 { - width: 44.44444%; + width: 44.44444%; } .rs-column.-xsmall-col-9-5 { - width: 55.55556%; + width: 55.55556%; } .rs-column.-xsmall-col-9-6 { - width: 66.66667%; + width: 66.66667%; } .rs-column.-xsmall-col-9-7 { - width: 77.77778%; + width: 77.77778%; } .rs-column.-xsmall-col-9-8 { - width: 88.88889%; + width: 88.88889%; } .rs-column.-xsmall-col-9-9 { - width: 100%; + width: 100%; } .rs-column.-xsmall-col-10-1 { - width: 10%; + width: 10%; } .rs-column.-xsmall-col-10-2 { - width: 20%; + width: 20%; } .rs-column.-xsmall-col-10-3 { - width: 30.0%; + width: 30.0%; } .rs-column.-xsmall-col-10-4 { - width: 40%; + width: 40%; } .rs-column.-xsmall-col-10-5 { - width: 50%; + width: 50%; } .rs-column.-xsmall-col-10-6 { - width: 60.0%; + width: 60.0%; } .rs-column.-xsmall-col-10-7 { - width: 70%; + width: 70%; } .rs-column.-xsmall-col-10-8 { - width: 80%; + width: 80%; } .rs-column.-xsmall-col-10-9 { - width: 90%; + width: 90%; } .rs-column.-xsmall-col-10-10 { - width: 100%; + width: 100%; } .rs-column.-xsmall-col-11-1 { - width: 9.09091%; + width: 9.09091%; } .rs-column.-xsmall-col-11-2 { - width: 18.18182%; + width: 18.18182%; } .rs-column.-xsmall-col-11-3 { - width: 27.27273%; + width: 27.27273%; } .rs-column.-xsmall-col-11-4 { - width: 36.36364%; + width: 36.36364%; } .rs-column.-xsmall-col-11-5 { - width: 45.45455%; + width: 45.45455%; } .rs-column.-xsmall-col-11-6 { - width: 54.54545%; + width: 54.54545%; } .rs-column.-xsmall-col-11-7 { - width: 63.63636%; + width: 63.63636%; } .rs-column.-xsmall-col-11-8 { - width: 72.72727%; + width: 72.72727%; } .rs-column.-xsmall-col-11-9 { - width: 81.81818%; + width: 81.81818%; } .rs-column.-xsmall-col-11-10 { - width: 90.90909%; + width: 90.90909%; } .rs-column.-xsmall-col-11-11 { - width: 100%; + width: 100%; } .rs-column.-xsmall-col-12-1 { - width: 8.33333%; + width: 8.33333%; } .rs-column.-xsmall-col-12-2 { - width: 16.66667%; + width: 16.66667%; } .rs-column.-xsmall-col-12-3 { - width: 25%; + width: 25%; } .rs-column.-xsmall-col-12-4 { - width: 33.33333%; + width: 33.33333%; } .rs-column.-xsmall-col-12-5 { - width: 41.66667%; + width: 41.66667%; } .rs-column.-xsmall-col-12-6 { - width: 50%; + width: 50%; } .rs-column.-xsmall-col-12-7 { - width: 58.33333%; + width: 58.33333%; } .rs-column.-xsmall-col-12-8 { - width: 66.66667%; + width: 66.66667%; } .rs-column.-xsmall-col-12-9 { - width: 75%; + width: 75%; } .rs-column.-xsmall-col-12-10 { - width: 83.33333%; + width: 83.33333%; } .rs-column.-xsmall-col-12-11 { - width: 91.66667%; + width: 91.66667%; } .rs-column.-xsmall-col-12-12 { - width: 100%; + width: 100%; } }