  /***
DNN overrides
****/
span.dnnFormMessage {
  display: block;
}
div.dnnFormGroup {
  background-color: inherit;
  width: 100%;
}
.dnnGrid {
  width: 100%;
}
.dnnGridHeader th {
  text-align: left;
}
.dnnFormItem input.rvd-form-number,
.dnnFormItem input[type="text"].rvd-form-number,
input.rvd-form-number,
input[type="text"].rvd-form-number,
.dnnFormItem input[type="number"] {
  width: 45%;
  max-width: 160px;
}
.dnnFormItem input[type="number"] {
  margin-bottom: 18px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid #c9c9c9;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  color: #333;
  font-size: 12px;
}
.dnnFormItem input.rvd-form-datetime,
.dnnFormItem input[type="text"].rvd-form-datetime,
input.rvd-form-datetime,
input[type="text"].rvd-form-datetime,
.dnnFormItem input[type="datetime"] {
  width: 45%;
  max-width: 220px;
}
.dnnFormItem span.rvd-form-datetime,
.dnnFormItem span.k-widget.k-combobox {
  margin-bottom: 12px;
}
/* DNN 7.1 default template doesn't shrink form and makes it hard to see where nested form begins and ends */
.dnnForm {
  max-width: 96%;
  margin-left: auto;
  margin-right: auto;
}
/* DNN 6.x uses position relative that causes the tab to overlay over the page */
.dnnForm .ui-tabs {
  position: inherit;
}
/* Make Kendo ComboBox look like DNN form */
.dnnFormItem input[type="text"].k-input {
  width: 100%;
  margin-bottom: 0;
  border: 0;
  box-shadow: none;
  line-height: normal;
}
div.RadComboBox {
  width: 100%;
}
.dnnForm .dnnFormItem > .RadComboBox_Default .rcbInputCell .rcbEmptyMessage {
  color: #666;
}
.dnnForm .dnnFormItem > .RadComboBox_Default {
  margin-bottom: 18px;
}
.dnnForm .dnnFormItem > .RadComboBox + a {
  vertical-align: top;
  margin-top: 10px;
}
.dnnForm .dnnFormItem > .RadComboBox_Default .rcbInput {
  padding: 6px !important;
}
.dnnForm .dnnFormItem > .RadComboBox_Default td.rcbArrowCellRight,
.dnnForm .dnnFormItem > .RadComboBox_Default td.rcbArrowCellLeft {
  background: white !important;
}
.dnnForm .dnnFormItem > .RadComboBox_Default td.rcbInputCellLeft,
.dnnForm .dnnFormItem > .RadComboBox_Default td.rcbInputCellRight {
  background: white !important;
}
.dnnForm .dnnFormItem > .dnnInputFileWrapper {
  margin-bottom: 18px;
}
.dnnFormItem .rvd-htmleditor {
  display: inline-block;
  margin: 0 -8px;
  width: 43%;
}
.TelerikModalOverlay {
  background-color: #000000 !important;
  filter: alpha(opacity=80) !important;
  opacity: 0.8 !important;
}
/* Make images responsive */
/*img
{
	width: auto;
	max-width: 100%;
}*/
/* Zoom image should not shrink */
.zoomWrapperImage img {
  max-height: none;
  max-width: none;
}
p.form-control-static {
  font-size: inherit;
}
/* DNN 7.1 default template uses inline-block, which doesn't push the content down when tabs are wrapped. We need to set height auto to fix it. */
ul.dnnAdminTabNav {
  height: auto;
}
/* DNN 7.1 default template uses a large padding on the tab causing the ugly wrap */
ul.dnnAdminTabNav li.ui-tabs-active a {
  margin-top: -2px;
  padding-bottom: 8px;
}
/* DNN 7.1 default template need larger padding between tab strip and tab panel */
.ui-tabs .ui-tabs-panel {
  padding-top: 10px;
}
/* Fix DNN bug DNN-26843 that injects jScrollPane causing scroll pane to render incorrectly */
.RadComboBoxDropDown .jspContainer {
  position: absolute;
}
/* Fix RadComboBox does not show vertical scroll when available selections exceed box size */
.RadComboBoxDropDown .rcbScroll {
  overflow-y: auto !important;
}
/* Fix DNN bug DNN-4983 adding extra padding to input button causing radsplitbar to be oversized */
input[type="button"].rspCollapseBarSpacer {
  min-width: 0;
  padding: 0 0;
}
/* Fix bootstrap forces box-sizing to border-box causing RadMenu multicolumn to render as single column. See http://www.telerik.com/forums/radmenu-with-repeatcolumns-renders-as-single-column-with-bootstrap */
ul.rmMultiColumn {
  box-sizing: content-box;
}
/* Remove rounded corners from kendo menu */
.k-widget.k-menu {
  border-radius: 0;
}
/* Allow Kendo UI treeview to display icons */
.glyphicon.k-sprite,
.fa.k-sprite,
.fas.k-sprite {
  font-size: 1em;
  line-height: 1em;
}
/* Fix kendo slider showing dots */
ul.k-slider-items li {
  list-style-type: none;
}
/* Fix kendo autocomplete input */
.k-autocomplete input.k-input {
  height: 100%;
}
/* Fix IE11 rendering vertical radslider text incorrectly. */
.RadSplitter .rspPaneTabText.rspRotatedTabText {
  -ms-transform: rotate(90deg);
  writing-mode: lr-tb;
}
.RadCalendar td.rcDisabled > a {
  cursor: default;
  visibility: hidden;
}
/* Fix default skin shows list style in RadWindow */
.RadWindow .rwControlButtons li {
  list-style-type: none;
}
/* Fix default DNN skin forces list style causing a dot to appear next to Bootstrap dropdowns */
ul.dropdown-menu li,
ul.nav li,
ul.pagination li {
  list-style-type: none;
}
/* Fix Websitescreative skin overrides LI element with padding causing multi-column Telerik RadMenu to show incorrectly */
ul.rmMultiColumn li.rmGroupColumn {
  padding-left: 0;
}
/* Fix bootstrap does not include some bottom margin when buttons are stacked together */
.btn-toolbar > .btn,
.btn-toolbar > .btn-group {
  margin-bottom: 5px;
}
/* Make form controls look like plain text when disabled */
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: transparent !important;
  border: 0 !important;
  font-size: 1em;
  box-shadow: none !important;
}
/* Hide arrow for select box when in plain text disabled mode */
select.form-control[disabled],
fieldset[disabled] select.form-control {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  text-indent: 0.01px !important;
  text-overflow: '' !important;
}
/* Show required field asterisk */
label.required:after {
  display: inline-block;
  padding: 0px 4px;
  background: transparent;
  content: '*';
  font-weight: bold;
  color: red;
}
/* Bootstrap-select creates a button with border radius inside input-group */
.input-group-btn .dropdown.bootstrap-select button {
  border-radius: 0;
}
/***
Common
****/
.rvdActions {
  clear: both;
  display: block;
  margin-bottom: 10px;
  margin-top: 10px;
  padding-top: 10px;
}
.rvdAddNewGridAction {
  background-image: url(/Icons/Sigma/Add_16x16_Standard.png);
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 16px;
  margin-left: 5px;
  margin-right: 5px;
  width: 16px;
}
ul.rvdBreadcrumb {
  display: inline;
  margin: 0 0;
}
.rvdBreadcrumb li {
  list-style: none;
  display: inline;
  font-size: inherit;
}
.rvdBreadcrumb li:before {
  content: " / ";
  padding-right: 3px;
}
.rvdBreadcrumb li:first-child:before {
  content: "";
  padding-right: 0;
}
.rvdBreadcrumb li:last-child a {
  pointer-events: none;
  text-decoration: none;
  color: inherit;
  cursor: default;
}
.rvdCopyGridAction {
  background-image: url(/Icons/Sigma/CopyFile_16x16_Standard.png);
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 16px;
  margin-left: 5px;
  margin-right: 5px;
  width: 16px;
}
.rvdDownGridAction {
  background-image: url(/Icons/Sigma/Dn_16x16_Standard.png);
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 16px;
  margin-left: 5px;
  margin-right: 5px;
  width: 16px;
}
.rvdDownloadGridAction {
  background-image: url(/Icons/Sigma/FileDownload_16x16_Gray.png);
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 16px;
  margin-left: 5px;
  margin-right: 5px;
  width: 16px;
}
.rvdEditGridAction {
  background-image: url(/Icons/Sigma/Edit_16x16_Standard.png);
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 16px;
  margin-left: 5px;
  margin-right: 5px;
  width: 16px;
}
.rvdFormCheckBoxes {
  display: block;
  float: left;
  width: auto;
}
.rvd-form-checkboxes {
  border: solid 10px transparent;
  max-height: 250px;
  overflow: auto;
}
.dnnFormItem > div.rvd-form-checkboxes {
  width: 42%;
}
.rvdFormCheckBoxes input[type=checkbox] {
  float: none;
}
.rvdFormCheckBoxes label {
  display: inline;
  float: none;
  font-weight: normal;
  margin: 0 10px 0 4px;
  padding-right: 0;
  text-align: left;
  width: auto;
}
.rvd-form-checklist .dnnCheckbox img {
  background: transparent url(../../Icons/Sigma/Delete_16X16_Standard.png) no-repeat;
}
.rvd-form-checklist .mark {
  background-color: transparent;
}
select.rvdFormListBox {
  height: 160px;
}
.rvdLinkAction {
  background-image: url(/Icons/Sigma/Edit_16x16_Standard.png);
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 16px;
  margin-left: 5px;
  margin-right: 5px;
  padding-left: 20px;
}
.rvdUpGridAction {
  background-image: url(/Icons/Sigma/Up_16x16_Standard.png);
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 16px;
  margin-left: 5px;
  margin-right: 5px;
  width: 16px;
}
.rvdFormMessage {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: table;
  padding-left: 5px;
  padding-right: 5px;
  width: 100%;
}
.rvdFormWarning {
  background-color: #FFFFCC;
}
.rvdFormSubContainer {
  display: inline-block;
  width: 50%;
}
.dnnFormItem > .rvdFormSubContainer {
  display: inline-block;
  width: 45%;
}
a.rvdModalCloseAction {
  background-image: url(/Images/Close-icn.png);
  background-position: left center;
  background-repeat: no-repeat;
  display: block;
  min-height: 20px;
  padding-left: 30px;
  float: right;
}
.rvdModalContainer {
  background-color: White;
  width: 500px;
  vertical-align: middle;
}
.rvdModalToolbar {
  background: #4E4E4E;
  background: -moz-linear-gradient(top, #4E4E4E 0%, #282828 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4E4E4E), color-stop(100%, #282828));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4E4E4E', endColorstr='#282828', GradientType=0);
  border-bottom: solid 1px #cccccc;
  padding-bottom: 5px;
  padding-top: 5px;
  width: 100%;
}
/* Shift start anchor vertically higher so it won't be covered by admin bar */
.rvdModuleStartAnchor {
  float: left;
  position: relative;
  top: -60px;
}
.rvdPager {
  border-top: solid 1px #cccccc;
  text-align: right;
}
.rvdSliderMaxValue {
  float: right;
}
.rvdSliderMinValue {
  float: left;
}
.rvdDeleteGridAction {
  background-image: url(/Icons/Sigma/Delete_16x16_Standard.png);
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 16px;
  margin-left: 5px;
  margin-right: 5px;
  width: 16px;
}
.dnnForm .dnnFormItem > .RadPicker_Default {
  margin-bottom: 18px;
}
.dnnForm .dnnFormItem > .RadPicker_Default.rvdDateTimeInput {
  display: inline-block;
  width: 47% !important;
  min-width: 0px;
}
.dnnFormItem input.rvdCharacterInput,
input.rvdCharacterInput {
  width: 20px !important;
  min-width: 0px;
}
.dnnFormItem input.rvdQuantityInput,
input.rvdQuantityInput {
  width: 70px !important;
  min-width: 0px;
}
.dnnFormItem select.rvdUnitInput,
select.rvdUnitInput {
  width: 125px !important;
  min-width: 0px;
  margin-left: 5px;
}
/* Split form items in 2 columns */
.rvdSplit2 > div.dnnFormGroup,
.rvdSplit2 > div.dnnFormItem {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  width: 49%;
}
/* Split form items in 3 columns */
.rvdSplit3 > div.dnnFormGroup,
.rvdSplit3 > div.dnnFormItem {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  width: 32%;
}
/* Split form items in 4 columns */
.rvdSplit4 > div.dnnFormGroup,
.rvdSplit4 > div.dnnFormItem {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  width: 24%;
}
.rvdUpdateGridAction {
  background: url(/Icons/Sigma/Refresh_16x16_Standard.png);
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 16px;
  margin-left: 5px;
  margin-right: 5px;
  width: 16px;
}
.rvd-loading,
.rvdUpdateProgressContainer {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.rvd-loading img,
.rvdUpdateProgress {
  left: 50%;
  position: fixed;
  top: 50%;
}
.rvdViewGridAction {
  background-image: url(/Icons/Sigma/View_16x16_Standard.png);
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 16px;
  margin-left: 5px;
  margin-right: 5px;
  width: 16px;
}
/* Add chevron indicators for Bootstrap page headers */
/* Rotate font icons when panel is collapsed to indicate state */
.collapsed em.glyphicon-chevron-down,
.collapsed em.fa-chevron-down {
  transform: rotate(-90deg);
}
.tab-pane {
  margin-bottom: 20px;
  margin-top: 20px;
}
/* Bootstrap 4 implementation in Bootstrap 3 */
.table-borderless tbody + tbody,
.table-borderless td,
.table-borderless th,
.table-borderless thead th {
  border: 0 !important;
}
.columns.columns-2 {
  -moz-column-count: 2;
  -webkit-column-count: 2;
  column-count: 2;
  max-width: none !important;
}
.columns.columns-3 {
  -moz-column-count: 3;
  -webkit-column-count: 3;
  column-count: 3;
  max-width: none !important;
}
.columns.columns-4 {
  -moz-column-count: 4;
  -webkit-column-count: 4;
  column-count: 4;
  max-width: none !important;
}
.bg-transparent {
  background-color: transparent !important;
}
.border-0 {
  border: 0 !important;
}
/* Bootstrap 3 adds unnecessary left padding when input is used with label according to Bootstrap 4 syntax */
.checkbox label,
.radio label {
  padding-left: 0 !important;
}
.checkbox,
.radio {
  padding-left: 1.25rem;
}
/* Bootstrap 4 no longer adds margin for buttons in a btn-toolbar */
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group,
.btn-toolbar > .dropdown {
  margin-left: 3px;
  margin-right: 3px;
}
/* Bootstrap 4 no longer supports btn-group-xs */
.btn-group-xs > .btn,
.btn-xs {
  padding: 0.25rem 0.4rem;
  font-size: 0.875rem;
  line-height: 0.5;
  border-radius: 0.2rem;
}
/* Bootstrap 4 no longer supports col-x size in table */
td.col-1,
th.col-1 {
  width: 8.33333%;
}
td.col-2,
th.col-2 {
  width: 16.66667%;
}
td.col-3,
th.col-3 {
  width: 25%;
}
td.col-4,
th.col-4 {
  width: 33.33333%;
}
td.col-5,
th.col-5 {
  width: 41.66667%;
}
td.col-6,
th.col-6 {
  width: 50%;
}
td.col-7,
th.col-7 {
  width: 58.33333%;
}
td.col-8,
th.col-8 {
  width: 66.66667%;
}
td.col-9,
th.col-9 {
  width: 75%;
}
td.col-10,
th.col-10 {
  width: 83.33333%;
}
td.col-11,
th.col-11 {
  width: 91.66667%;
}
td.col-12,
th.col-12 {
  width: 100%;
}
td.col-sm-1,
th.col-sm-1 {
  width: 8.33333%;
}
td.col-sm-2,
th.col-sm-2 {
  width: 16.66667%;
}
td.col-sm-3,
th.col-sm-3 {
  width: 25%;
}
td.col-sm-4,
th.col-sm-4 {
  width: 33.33333%;
}
td.col-sm-5,
th.col-sm-5 {
  width: 41.66667%;
}
td.col-sm-6,
th.col-sm-6 {
  width: 50%;
}
td.col-sm-7,
th.col-sm-7 {
  width: 58.33333%;
}
td.col-sm-8,
th.col-sm-8 {
  width: 66.66667%;
}
td.col-sm-9,
th.col-sm-9 {
  width: 75%;
}
td.col-sm-10,
th.col-sm-10 {
  width: 83.33333%;
}
td.col-sm-11,
th.col-sm-11 {
  width: 91.66667%;
}
td.col-sm-12,
th.col-sm-12 {
  width: 100%;
}
td.col-md-1,
th.col-md-1 {
  width: 8.33333%;
}
td.col-md-2,
th.col-md-2 {
  width: 16.66667%;
}
td.col-md-3,
th.col-md-3 {
  width: 25%;
}
td.col-md-4,
th.col-md-4 {
  width: 33.33333%;
}
td.col-md-5,
th.col-md-5 {
  width: 41.66667%;
}
td.col-md-6,
th.col-md-6 {
  width: 50%;
}
td.col-md-7,
th.col-md-7 {
  width: 58.33333%;
}
td.col-md-8,
th.col-md-8 {
  width: 66.66667%;
}
td.col-md-9,
th.col-md-9 {
  width: 75%;
}
td.col-md-10,
th.col-md-10 {
  width: 83.33333%;
}
td.col-md-11,
th.col-md-11 {
  width: 91.66667%;
}
td.col-md-12,
th.col-md-12 {
  width: 100%;
}
td.col-lg-1,
th.col-lg-1 {
  width: 8.33333%;
}
td.col-lg-2,
th.col-lg-2 {
  width: 16.66667%;
}
td.col-lg-3,
th.col-lg-3 {
  width: 25%;
}
td.col-lg-4,
th.col-lg-4 {
  width: 33.33333%;
}
td.col-lg-5,
th.col-lg-5 {
  width: 41.66667%;
}
td.col-lg-6,
th.col-lg-6 {
  width: 50%;
}
td.col-lg-7,
th.col-lg-7 {
  width: 58.33333%;
}
td.col-lg-8,
th.col-lg-8 {
  width: 66.66667%;
}
td.col-lg-9,
th.col-lg-9 {
  width: 75%;
}
td.col-lg-10,
th.col-lg-10 {
  width: 83.33333%;
}
td.col-lg-11,
th.col-lg-11 {
  width: 91.66667%;
}
td.col-lg-12,
th.col-lg-12 {
  width: 100%;
}
td.col-xl-1,
th.col-xl-1 {
  width: 8.33333%;
}
td.col-xl-2,
th.col-xl-2 {
  width: 16.66667%;
}
td.col-xl-3,
th.col-xl-3 {
  width: 25%;
}
td.col-xl-4,
th.col-xl-4 {
  width: 33.33333%;
}
td.col-xl-5,
th.col-xl-5 {
  width: 41.66667%;
}
td.col-xl-6,
th.col-xl-6 {
  width: 50%;
}
td.col-xl-7,
th.col-xl-7 {
  width: 58.33333%;
}
td.col-xl-8,
th.col-xl-8 {
  width: 66.66667%;
}
td.col-xl-9,
th.col-xl-9 {
  width: 75%;
}
td.col-xl-10,
th.col-xl-10 {
  width: 83.33333%;
}
td.col-xl-11,
th.col-xl-11 {
  width: 91.66667%;
}
td.col-xl-12,
th.col-xl-12 {
  width: 100%;
}
/* Make tabs into accordion panels for Bootstrap 4 and Bootstrap 3 */
@media (min-width: 768px) {
  .nav-tabs + .tab-content > .card {
    border: none;
  }
  .nav-tabs + .tab-content > .card .collapse {
    display: block !important;
  }
  .nav-tabs + .tab-content.panel-group .panel-heading + .panel-collapse > .list-group,
  .nav-tabs + .tab-content.panel-group .panel-heading + .panel-collapse > .panel-body {
    border-top: none;
  }
}
@media (max-width: 767px) {
  .nav-tabs + .tab-content > .tab-pane {
    display: block !important;
    opacity: 1;
  }
}
/* Nested table inherit stripes. Add class to allow unstriped */
.table-unstriped > tbody > tr,
.dnnGridPager tr {
  background-color: transparent !important;
}
/* Nested pager table inherits border */
.dnnGridPager td,
.dnnGridPager table td {
  border: none;
}
/* Bootstrap 4 doesn't add bottom space when buttons are stacked in mobile */
@media (max-width: 767px) {
  .btn {
    margin-bottom: 5px;
  }
}
/* Large desktops and laptops */
@media (min-width: 1200px) {
  .collapse-lg.show {
    display: block;
  }
  .collapse-lg {
    display: none;
  }
}
/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
  .collapse-md.show {
    display: block;
  }
  .collapse-md {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .collapse-sm.show {
    display: block;
  }
  .collapse-sm {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .collapse-xs.show {
    display: block;
  }
  .collapse-xs {
    display: none;
  }
  ul.columns.columns-2,
  ul.columns.columns-3,
  ul.columns.columns-4 {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }
}
/* Small devices */
@media (min-width: 768px) {
  .text-sm-left {
    text-align: center;
  }
  .text-sm-center {
    text-align: left;
  }
  .text-sm-right {
    text-align: right;
  }
  div.checkbox-sm-inline,
  div.radio-sm-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 400;
    vertical-align: middle;
    cursor: pointer;
  }
}
/***
Impersonator
****/
.dnnFormItem select.rvdipsntSearchTypeInput {
  vertical-align: top;
  width: 110px;
}
.dnnFormItem > .RadComboBox_Default.rvdipsntQueryInput {
  max-width: 340px;
}
.input-group select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group span.k-dropdown-wrap {
  border-radius: 0 0;
}
/***
Restore
****/
.rvdipsntRestoreContainer {
  background-color: #98B1CC;
  bottom: 0;
  position: fixed;
  margin: 0 auto;
  padding: 10px;
  right: 180px;
  z-index: 999999;
}
.rvdipsntIcon {
  padding-right: 4px;
}
